(jit-lock-force-redisplay): Rename from jit-lock-fontify-again.
[bpt/emacs.git] / lisp / ChangeLog
1 2006-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * jit-lock.el (jit-lock-force-redisplay): Rename from
4 jit-lock-fontify-again, and undo the mistaken change I've just done.
5
6 * jit-lock.el (jit-lock-fontify-now): Don't fontify the empty text.
7 (jit-lock-fontify-again): Don't refontify text that's not displayed.
8
9 2006-09-26 Kenichi Handa <handa@m17n.org>
10
11 * startup.el (display-splash-screen): Allow a prefix argument.
12
13 2006-09-25 Jason Rumney <jasonr@gnu.org>
14
15 * subr.el (shell-quote-argument): Use DOS logic for Windows
16 shells with DOS semantics.
17
18 2006-09-24 Chong Yidong <cyd@stupidchicken.com>
19
20 * simple.el (line-move-finish): Handle corner case for fields in
21 continued lines.
22 (line-move-1): Remove flawed test for that case.
23
24 2006-09-24 Ken Manheimer <ken.manheimer@gmail.com>
25
26 * icomplete.el (icomplete-simple-completing-p): Use the correct
27 name for the new variable, `icomplete-with-completion-tables'.
28 (file local variables): Remove superfluous setting.
29
30 2006-09-23 Jeff Miller <jmiller@cablespeed.com> (tiny change)
31
32 * calendar/appt.el (appt-check): Fix typo for appointments just
33 after midnight.
34
35 2006-09-23 Chong Yidong <cyd@stupidchicken.com>
36
37 * help.el (describe-key-briefly, describe-key): Don't expect an
38 extra up event if a down-event is generated by a popup menu.
39
40 2006-09-23 Michal Nazarewicz <mnazarewicz@gmail.com> (tiny change)
41
42 * textmodes/ispell.el (ispell-change-dictionary): Don't check the
43 local dictionary when changing the global dictionary.
44
45 2006-09-23 Ken Manheimer <ken.manheimer@gmail.com>
46
47 * icomplete.el (icomplete-with-completion-tables): List of
48 specialized completion tables with which icomplete should
49 operate. Include the new `internal-complete-buffer', so icomplete
50 works with interactive buffer-selection.
51 (icomplete-simple-completing-p): Add acceptance of specialized
52 completion tables listed in icomplete-with-completion-tables.
53
54 2006-09-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
55
56 * frame.el (focus-follows-mouse): Set default to nil on Mac.
57
58 * startup.el (command-line): Use `custom-reevaluate-setting' for
59 `focus-follows-mouse'.
60
61 2006-09-22 Richard Stallman <rms@gnu.org>
62
63 * cus-edit.el (custom-buffer-create-internal): In `emacs -q',
64 explain why Save is not available.
65
66 2006-09-22 Juanma Barranquero <lekktu@gmail.com>
67
68 * woman.el (woman0-so): Use `let*', not `let'.
69 (woman-horizontal-line): Remove unbalanced parenthesis.
70
71 2006-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
72
73 * woman.el: Make sure all the end-of-region markers we use have
74 a non-nil insertion-type.
75 (woman0-so): Move things around so we can use copy-marker.
76 (woman0-roff-buffer, woman2-process-escapes-to-eol, woman2-roff-buffer):
77 Adjust marker type.
78 (woman2-process-escapes): Check marker type.
79 (woman-horizontal-line): Dispense with the use of a marker.
80
81 2006-09-22 Jay Belanger <belanger@truman.edu>
82
83 * calc/calc-lang.el: Add Greek letters to math-variable-table
84 property of tex.
85
86 2006-09-22 Chong Yidong <cyd@stupidchicken.com>
87
88 * files.el (save-some-buffers-action-alist): Display diff in
89 view-mode.
90
91 2006-09-22 Masatake YAMATO <jet@gyve.org>
92
93 * add-log.el (add-log-current-defun): Use `forward-sexp'
94 instead of `forward-word' to pick c++::symbol.
95 Reported by Herbert Euler <herberteuler@hotmail.com>.
96
97 2006-09-22 Kenichi Handa <handa@m17n.org>
98
99 * bindings.el: Fix setting self-insert-command for multibyte
100 characters in global-map.
101
102 2006-09-21 David Kastrup <dak@gnu.org>
103
104 * mouse.el (mouse-posn-property): Fix typo for `event-start' in
105 doc string.
106
107 2006-09-21 Kim F. Storm <storm@cua.dk>
108
109 * emacs-lisp/cl.el (pushnew-internal): Remove defvar.
110 (pushnew): Fix last change.
111
112 2006-09-21 Kenichi Handa <handa@m17n.org>
113
114 * language/european.el ("Latin-1"): Add windows-1252 to
115 coding-priority.
116 ("German"): Likewise.
117
118 2006-09-21 Kim F. Storm <storm@cua.dk>
119
120 * emacs-lisp/cl-macs.el (member*): Use memql instead of complex code.
121 Suggested by Miles Bader.
122
123 * emacs-lisp/cl.el (pushnew): Rework 2006-09-10 change. Use memql
124 instead of add-to-list in the simple case.
125
126 2006-09-20 Kenichi Handa <handa@m17n.org>
127
128 * isearch.el (isearch-process-search-char): Cancel the previous
129 change.
130 (isearch-search-string): New function.
131 (isearch-search): Use isearch-search-string.
132 (isearch-lazy-highlight-search): Likewise.
133
134 2006-09-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
135
136 * lpr.el (lpr-page-header-switches): Insert `*' at beginning of comment
137 to become an option.
138
139 2006-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
140
141 * files.el (find-buffer-visiting): Don't get fooled by a nil inode.
142
143 2006-09-20 Kim F. Storm <storm@cua.dk>
144
145 * simple.el (line-move-partial): Call pos-visible-in-window-p with
146 position t instead of trying both window-end and window-end - 1.
147
148 2006-09-20 Carsten Dominik <dominik@science.uva.nl>
149
150 * textmodes/org.el (org-scan-tags): Find end of subtrees also in
151 hidden trees.
152
153 2006-09-20 David Kastrup <dak@gnu.org>
154
155 * mouse.el (mouse-posn-property): Improve doc string.
156 (mouse-on-link-p): Change buffers for function calls on links.
157
158 * menu-bar.el (clipboard-yank): Bomb out in interactive use if
159 buffer is read-only.
160
161 2006-09-20 Ken Manheimer <ken.manheimer@gmail.com>
162
163 * allout.el (allout-unprotected): Let inhibit-read-only only when
164 buffer-read-only isn't set.
165 (allout-annotate-hidden): Enable topic annotation during copies even
166 when the buffer is read-only, eg for topic copies. Ensure that the loop
167 advances, even when the span extends beyond the deletion region.
168 (allout-toggle-subtree-encryption): Use allout-structure-added-hook
169 rather than allout-exposure-changed-hook, as a stronger assertion.
170 (allout-keybindings-list): Add bindings for
171 allout-copy-line-as-kill and allout-copy-topic-as-kill.
172 (allout-copy-line-as-kill, allout-copy-topic-as-kill):
173 Copy wrappers for allout-kill-line and allout-kill-topic.
174 (allout-listify-exposed): Position correctly to accumulate lines.
175
176 2006-09-19 Chong Yidong <cyd@stupidchicken.com>
177
178 * simple.el (line-move-1): Escape field boundaries occurring
179 exactly at point. Update goal column if constrained to a field.
180 (line-move-finish): Escape field boundaries occurring exactly at point.
181
182 2006-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
183
184 * mouse.el (mouse-on-link-p): Tentatively fix last change.
185 (mouse-drag-vertical-line): Remove unused var `wconfig'.
186
187 2006-09-19 Kim F. Storm <storm@cua.dk>
188
189 * help.el (describe-key-briefly, describe-key): Simplify printing
190 of descriptions by using format and %S. Fix "is undefined"
191 messages to say "at that spot" for mouse events.
192
193 * simple.el (line-move-partial): Optimize. Try window-line-height
194 before posn-at-point to get vpos of current line.
195
196 2006-09-18 Michael Kifer <kifer@cs.stonybrook.edu>
197
198 * viper.el: Bump up version/date of update to reflect the substantial
199 changes done in August 2006.
200
201 * viper-cmd (viper-next-line-at-bol): Make sure button-at, push-button
202 are defined.
203
204 * ediff-util.el (ediff-add-to-history): New function.
205
206 * ediff.el: Use ediff-add-to-history instead of add-to-history.
207
208 2006-09-18 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
209
210 * textmodes/conf-mode.el (conf-space-mode): Doc fix.
211 Delete duplicate make-local-variable form.
212 (conf-space-keywords): Add autoload cookie.
213 Fix typo (`keywords', not `keyword').
214
215 2006-09-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
216
217 * cus-start.el (all): Rename x-gtk-show-chooser-help-text to
218 x-gtk-file-dialog-help-text. Rename x-use-old-gtk-file-dialog
219 to x-gtk-use-old-file-dialog
220
221 2006-09-18 Richard Stallman <rms@gnu.org>
222
223 * wid-edit.el (widget-button-click): Handle non-mouse-motion events
224 that might come in during mouse tracking.
225
226 2006-09-18 Kim F. Storm <storm@cua.dk>
227
228 * simple.el (line-move-partial): Rework 2006-09-15 change to use
229 new window-line-height function. Further optimize by not calling
230 pos-visible-in-window-p for window-end when window-line-height
231 returns useful information.
232
233 2006-09-16 Richard Stallman <rms@gnu.org>
234
235 * textmodes/conf-mode.el (conf-mode-map): Use conf-space-keywords cmd.
236 (conf-space-mode): Don't handle prefix arg.
237 Delete conf-space-keywords-override code.
238 Use add-hook.
239 (conf-space-keywords): New command.
240 (conf-space-mode-internal): Be careful with imenu-generic-expression.
241 Delete conf-space-keywords-override code.
242 (conf-space-keywords-alist): Doc fix.
243 (conf-space-font-lock-keywords): Doc fix.
244 (conf-space-keywords-override): Var deleted.
245
246 2006-09-16 Chong Yidong <cyd@stupidchicken.com>
247
248 * startup.el (fancy-splash-screens): Don't switch to the scratch
249 buffer; it may not be the next buffer.
250
251 2006-09-16 Romain Francoise <romain@orebokech.com>
252
253 * saveplace.el (load-save-place-alist-from-file): Use expanded name
254 in both messages.
255
256 2006-09-16 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se>
257
258 * progmodes/python.el (python-preoutput-filter):
259 Fix arg order to string-match.
260
261 2006-09-16 Richard Stallman <rms@gnu.org>
262
263 * obsolete/fast-lock.el (fast-lock-cache-data): Provide 2nd arg to
264 font-lock-compile-keywords.
265
266 * font-lock.el (font-lock-compile-keywords): Rename optional arg
267 to SYNTACTIC-KEYWORDS and reverse the sense. All callers changed.
268
269 2006-09-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
270
271 * cus-start.el (all): Add x-gtk-show-chooser-help-text.
272
273 * select.el (xselect-convert-to-string): If UTF8_STRING is requested
274 and the data doesn't look like UTF8, send STRING instead.
275
276 2006-09-16 Agustin Martin <agustin.martin@hispalinux.es>
277
278 * textmodes/flyspell.el (flyspell-check-region-doublons):
279 New function to detect duplicated words.
280 (flyspell-large-region): Use it.
281
282 2006-09-16 Chong Yidong <cyd@stupidchicken.com>
283
284 * simple.el (line-move-to-column): Revert 2006-08-03 change.
285
286 2006-09-16 Eli Zaretskii <eliz@gnu.org>
287
288 * help.el (describe-prefix-bindings): Use let, not let*.
289
290 2006-09-16 Ken Manheimer <ken.manheimer@gmail.com>
291
292 * allout.el (allout-regexp, allout-line-boundary-regexp)
293 (allout-bob-regexp): Correct grouping and boundaries to fix
294 backwards traversal.
295 (allout-depth-specific-regexp, allout-depth-one-regexp):
296 New versions that exploit \\{M\\} regexp syntax, to avoid geometric or
297 worse time in allout-ascend.
298 (allout-doublecheck-at-and-shallower): Identify depth threshold
299 below which topics are checked for and disqualified by containment
300 discontinuities.
301 (allout-hotspot-key-handler): Correctly handle multiple-key
302 strokes. Remove some unused variables.
303 (allout-mode-leaders): Clarify that mode-specific comment-start
304 will be used.
305 (set-allout-regexp): Correctly regexp-quote allout regexps to
306 properly accept alternative header-leads and primary bullets with
307 regexp-specific characters (eg, C "/*", mathematica "(*").
308 Include new regular expressions among those configured.
309 (allout-infer-header-lead-and-primary-bullet):
310 Rename allout-infer-header-lead.
311 (allout-recent-depth): Manifest as a variable as well as a function.
312 (allout-prefix-data): Simplify into an inline instead of a macro,
313 assuming current match data rather than being explicitly passed
314 it. Establish allout-recent-depth value as well as
315 allout-recent-prefix-beginning and allout-recent-prefix-end.
316 (allout-aberrant-container-p): True when an item's immediate
317 offspring discontinuously contained. Useful for disqualifying
318 unintended topic prefixes, likely at low depths.
319 (allout-goto-prefix-doublechecked): Elaborate version of
320 allout-goto-prefix which disqualifies aberrant pseudo-items.
321 (allout-pre-next-prefix): Layer on top of lower-level routines, to
322 get disqualification of aberrant containers.
323 (allout-end-of-prefix, allout-end-of-subtree): Disqualify aberrant
324 containers.
325 (allout-beginning-of-current-entry): Position at start of buffer
326 when in container (depth 0) entry.
327 (nullify-allout-prefix-data): Invalidate allout-recent-* prefix data.
328 (allout-current-bullet): Strip text properties.
329 (allout-get-prefix-bullet): Use right match groups.
330 (allout-beginning-of-line, allout-next-heading):
331 Disqualify aberrant containers.
332 (allout-previous-heading): Disqualify aberrant containers, and
333 change to regular (rather than inline) function, to allow
334 self-recursion.
335 (allout-get-invisibility-overlay): Increment so progress is made
336 when the first overlay is not the sought one.
337 (allout-end-of-prefix): Disqualify aberrant containers.
338 (allout-end-of-line): Cycle something like allout-beginning-of-line.
339 (allout-mode): Make allout-old-style-prefixes (ie, enabling use with
340 outline.el outlines) functional again. Change the primary bullet
341 along with the header-lead - level 1 new-style bullets now work.
342 Engage allout-before-change-handler in mainline emacs, not just
343 xemacs, to do undo handling.
344 (allout-before-change-handler): Expose undo changes occurring in
345 hidden regions. Use allout-get-invisibility-overlay instead of
346 reimplementing it inline.
347 (allout-chart-subtree): Use start rather than end of prefix in
348 charts. Use allout-recent-depth variable.
349 (allout-chart-siblings): Disqualify aberrant topics.
350 (allout-beginning-of-current-entry): Position correctly.
351 (allout-ascend): Use new allout-depth-specific-regexp and
352 allout-depth-one-regexp for linear instead of O(N^2) or worse
353 behavior.
354 (allout-ascend-to-depth): Depend on allout-ascend, rather than
355 reimplementing an algorithm.
356 (allout-up-current-level): Depend on allout-ascend, rather than
357 reimplementing an algorithm. Return to start-point if we fail.
358 (allout-descend-to-depth): Use allout-recent-depth variable
359 instead of function.
360 (allout-next-sibling): On traversal of numerous intervening
361 topics, resort to economical allout-next-sibling-leap.
362 (allout-next-sibling-leap): Specialized version of
363 allout-next-sibling that uses allout-ascend cleverly, to depend on
364 a regexp search to leap large numbers of contained topics, rather
365 than arbitrarily many one-by-one traversals.
366 (allout-next-visible-heading): Disqualify aberrant topics.
367 (allout-previous-visible-heading): Position consistently when
368 interactive.
369 (allout-forward-current-level): Base on allout-previous-sibling
370 rather than (differently) reimplmenting the algorithm. Remove some
371 unused variables.
372 (allout-solicit-alternate-bullet): Present default choice stripped
373 of text properties.
374 (allout-rebullet-heading): Use bullet stripped of text properties.
375 Register changes using allout-exposure-change-hook.
376 Disregard aberrant topics.
377 (allout-shift-in): With universal-argument, make topic a peer of
378 it's former offspring. Simplify the code by separating out
379 allout-shift-out functionality.
380 (allout-shift-out): With universal-argument, make offspring peers
381 of their former container, and its siblings. Implement the
382 functionality here, rather than inappropriately muddling the
383 implementation of allout-shift-in.
384 (allout-rebullet-topic): Respect additional argument for new
385 parent-child separation function.
386 (allout-yank-processing): Use allout-ascend directly.
387 (allout-show-entry): Disqualify aberrant topics.
388 (allout-show-children): Handle discontinuous children gracefully,
389 extending the depth being revealed to expose them and posting a
390 message indicating the situation.
391 (allout-show-to-offshoot): Remove obsolete and incorrect comment.
392 Leave cursor in correct position.
393 (allout-hide-current-subtree): Use allout-ascend directly.
394 Disqualify aberrant topics.
395 (allout-kill-line, allout-kill-topic): Preserve exposure layout in
396 a way that the yanks can restore it, as used to happen.
397 (allout-yank-processing): Restore exposure layout as recorded by
398 allout-kill-*, as used to happen.
399 (allout-annotate-hidden, allout-hide-by-annotation): New routines
400 for preseving and restoring exposure layout across kills.
401 (allout-toggle-subtree-encryption): Run allout-exposure-change-hook.
402 (allout-encrypt-string): Strip text properties.
403 Rearranged order and outline-headings for some of the
404 miscellaneous functions.
405 (allout-resolve-xref): No need to quote the error name in the
406 condition-case handler section.
407 (allout-flatten): Classic recursive (and recursively intensive,
408 without tail-recursion) list-flattener, needed by allout-shift-out
409 when confronted with discontinuous children.
410
411 2006-09-16 Jason Rumney <jasonr@gnu.org>
412
413 * dnd.el (dnd-open-remote-file-function): Use dnd-open-local-file
414 on ms-windows.
415 (dnd-open-unc-file): Remove.
416 (dnd-open-local-file): Mention in doc string that it also handles
417 remote files if the system natively supports unc file-names.
418
419 2006-09-15 Kim F. Storm <storm@cua.dk>
420
421 * help.el (describe-key): Handle C-h k in *Help* buffer; collect
422 all necessary information about the event before erasing *Help*.
423
424 * simple.el (line-move-partial): Use window-line-visiblity to
425 quickly check whether last line is partially visible, and only do
426 the hard (and slow) part in that case.
427
428 2006-09-15 Jay Belanger <belanger@truman.edu>
429
430 * COPYING: Replace "Library Public License" by "Lesser Public
431 License" throughout.
432
433 2006-09-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
434
435 * term/x-win.el (x-menu-bar-open): New function for F10.
436
437 2006-09-15 Chong Yidong <cyd@stupidchicken.com>
438
439 * progmodes/compile.el (compilation-error-regexp-alist-alist):
440 Disallow filenames containing " -" to avoid confusion with libtool
441 compilation messages. Suggested by Stefan Monnier.
442
443 2006-09-15 David Kastrup <dak@gnu.org>
444
445 * mouse-sel.el (mouse-sel-follow-link-p): Use event position
446 instead of buffer position for `mouse-on-link-p'.
447
448 * mouse.el (mouse-posn-property): New function looking up the
449 properties at a click position in overlays and text properties in
450 either buffer or strings.
451 (mouse-on-link-p): Use `mouse-posn-property' to streamline lookup
452 of both `follow-link' as well as `mouse-face' properties.
453 (mouse-drag-track): Check `mouse-on-link-p' on event position, not
454 buffer position.
455
456 * help.el (describe-key-briefly): When reading a down-event on
457 mode lines or scroll bar, swallow the following up event, too.
458 Use the new mouse sensitity of `key-binding' for lookup.
459 (describe-key): The same here.
460
461 2006-09-15 Juanma Barranquero <lekktu@gmail.com>
462
463 * play/life.el (life-patterns): Add a few more interesting patterns.
464 (life-setup): Force `show-trailing-whitespace' to nil.
465
466 2006-09-14 Richard Stallman <rms@gnu.org>
467
468 * startup.el (fancy-splash-text): Change text to improve alignment.
469 (fancy-splash-screens): Don't set non-standard tab width.
470 Bind cursor-type temporarily, and make it easy to patch to
471 preserve the splash buffer.
472 (normal-splash-screen, fancy-splash-tail): Spell out "Meta-x".
473 (fancy-splash-screens): Display echo-area message explicitly.
474 Don't set fancy-splash-help-echo.
475
476 * simple.el (line-number-mode): Group mode-line instead of
477 editing-basics.
478 (column-number-mode, size-indication-mode): Likewise.
479
480 * faces.el (mode-line-faces): Group mode-line instead of modeline.
481
482 * time.el (display-time): Group mode-line instead of modeline.
483
484 * cus-edit.el (mode-line): Rename from modeline. All uses changed.
485
486 2006-09-14 Chong Yidong <cyd@stupidchicken.com>
487
488 * startup.el (fancy-splash-text): Move editing instructions to
489 fancy-splash-head.
490 (fancy-splash-head): Issue editing instructions.
491 (fancy-splash-screens): Fixup whitespace.
492
493 2006-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
494
495 * bindings.el (mode-line-buffer-identification-keymap):
496 Remove duplicate line.
497
498 2006-09-14 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
499
500 * ido.el (ido-ignore-item-p): Allow any kind of functions in
501 ignore lists.
502
503 2006-09-14 Kim F. Storm <storm@cua.dk>
504
505 * jit-lock.el (jit-lock-fontify-again): New function.
506 (jit-lock-fontify-now): Use it instead of lambda form.
507
508 2006-09-13 Agustin Martin <agustin.martin@hispalinux.es>
509
510 * textmodes/flyspell.el (flyspell-word, flyspell-correct-word)
511 (flyspell-auto-correct-word): Make ispell-filter local to these
512 functions. Check that ispell-filter has new stuff before calling
513 ispell-parse-output.
514
515 2006-09-13 Kim F. Storm <storm@cua.dk>
516
517 * simple.el (line-move-partial): Optimize.
518
519 2006-09-13 Richard Stallman <rms@gnu.org>
520
521 * thingatpt.el (thing-at-point-bounds-of-url-at-point):
522 Delete spurious backquote.
523
524 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
525
526 * net/rcirc.el (rcirc-print): Fix last change.
527
528 2006-09-12 Jay Belanger <belanger@truman.edu>
529
530 * calc/calc.el (calc-dispatch): Remove unnecessary `sit-for'.
531
532 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
533
534 * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from
535 rcirc-show-maximum-output.
536 (rcirc-mode): Remove window-scroll-function hook.
537 (rcirc-scroll-to-bottom): Remove function.
538 (rcirc-print): Recenter so point stays at the bottom of the window
539 if point was already there.
540
541 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
542
543 * comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
544 not to "t".
545 * progmodes/compile.el (compilation-start): Likewise.
546 * progmodes/idlwave.el (idlwave-rescan-asynchronously):
547 Don't use expand-file-name on invocation-directory, since this
548 might mishandle special characters in invocation-directory.
549
550 2006-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
551
552 * pcvs-defs.el: Remove * in defcustom's docstrings.
553
554 2006-09-12 Nick Roberts <nickrob@snap.net.nz>
555
556 * progmodes/compile.el (compilation-directory-properties):
557 Doc fix for help-echo.
558
559 2006-09-12 Lars Hansen <larsh@soem.dk>
560
561 * desktop.el (desktop-read): Add comment.
562
563 2006-09-12 Kim F. Storm <storm@cua.dk>
564
565 * simple.el (next-error-highlight, next-error-highlight-no-select):
566 Fix spelling error.
567
568 * subr.el (sit-for): Rework to use input-pending-p and cond.
569 Return nil input is pending on entry also for SECONDS <= 0.
570 (while-no-input): Use input-pending-p instead of sit-for.
571
572 2006-09-11 Richard Stallman <rms@gnu.org>
573
574 * simple.el (next-error-highlight, next-error-highlight-no-select):
575 Fix custom type and doc strings.
576
577 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
578
579 * diff-mode.el (diff-apply-hunk-to-backup-file): New var.
580 (diff-apply-hunk): Use it to ask for confirmation.
581
582 2006-09-11 Reiner Steib <Reiner.Steib@gmx.de>
583
584 * emacs-lisp/cl.el (pushnew): Add missing `,'.
585
586 2006-09-11 David Kastrup <dak@gnu.org>
587
588 * help.el (string-key-binding, describe-key-briefly)
589 (describe-key): Remove `string-key-binding' and its callers since
590 `key-binding' already caters for the proper lookup now.
591
592 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
593
594 * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords): Newvar.
595 (cfengine-mode): Use it. Fix \ syntax to be like /.
596
597 * bindings.el (mode-line-buffer-identification-keymap):
598 Move initialization into declaration.
599
600 2006-09-10 Kim F. Storm <storm@cua.dk>
601
602 * ido.el (ido-edit-input, ido-complete, ido-take-first-match)
603 (ido-push-dir-first, ido-kill-buffer-at-head, ido-exhibit)
604 (ido-delete-file-at-head): Pass head of ido-matches through ido-name
605 in case of merged directories. Reported by Micha\e,Ak\e(Bl Cadilhac.
606
607 2006-09-10 Richard Stallman <rms@gnu.org>
608
609 * dired-aux.el: Handle errors in recursive copy usefully.
610 (dired-create-files-failures): New variable.
611 (dired-copy-file): Remove condition-case.
612 (dired-copy-file-recursive): Check for errors on all file
613 operations, and add them to dired-create-files-failures.
614 Check file file-date-erorr here too.
615 (dired-create-files): Check dired-create-files-failures
616 and report those errors too.
617
618 * emacs-lisp/cl.el (pushnew): Use add-to-list when convenient.
619
620 * subr.el (add-to-list): New argument COMPARE-FN.
621
622 2006-09-10 Reiner Steib <Reiner.Steib@gmx.de>
623
624 * filecache.el (file-cache-add-directory)
625 (file-cache-add-directory-list, file-cache-add-file)
626 (file-cache-add-directory-using-find)
627 (file-cache-add-directory-using-locate)
628 (file-cache-add-directory-recursively): Add autoloads.
629
630 2006-09-09 Richard Stallman <rms@gnu.org>
631
632 * textmodes/conf-mode.el (conf-space-mode):
633 Use hack-local-variables-hook instead of calling hack-local-variables.
634 (conf-space-keywords-override): New variable.
635 (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
636 (conf-space-mode): Always make conf-space-keywords and
637 conf-space-keywords-override local.
638 Call conf-space-mode-internal directly as well as via hook.
639
640 2006-09-09 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
641
642 * progmodes/python.el (python-font-lock-keywords): Add `self' and other
643 quasi-keywords.
644
645 2006-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
646
647 * progmodes/python.el: Quieten the compiler about hippie-expand vars.
648 (python-send-string): Be slightly more careful about adding \n.
649
650 * startup.el (normal-splash-screen): Don't display the buffer if we'll
651 kill it right away anyway.
652
653 2006-09-09 Eli Zaretskii <eliz@gnu.org>
654
655 * international/codepage.el (cp850-decode-table): Fix a few codes.
656 (cp858-decode-table): New variable.
657
658 2006-09-09 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
659
660 * net/ldap.el (ldap-search-internal): Doc fix.
661
662 2006-09-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
663
664 * play/life.el (life-display-generation): Test for input manually if
665 `sleeptime' is negative or null.
666
667 * lpr.el (lpr-page-header-switches): Page title switch is one of them.
668 (print-region-1): Substitute `%s' with the page title.
669
670 2006-09-09 Matt Hodges <MPHodges@member.fsf.org>
671
672 * locate.el (locate-current-search): New variable.
673 (locate): Set buffer local value. Use current buffer if it is
674 in Locate mode.
675 (locate-mode): Disable undo here.
676 (locate-do-setup): Use locate-current-filter from buffer to be killed.
677 (locate-update): Use locate-current-search and locate-current-filter.
678
679 2006-09-08 David Kastrup <dak@gnu.org>
680
681 * desktop.el (desktop-read): When loading a desktop, disable
682 saving it while the load progresses, and switch off a pending lazy
683 load by calling `desktop-lazy-abort'.
684
685 2006-08-27 Martin Rudalics <rudalics@gmx.at>
686
687 * window.el (mouse-autoselect-window-timer)
688 (mouse-autoselect-window-position)
689 (mouse-autoselect-window-window)
690 (mouse-autoselect-window-now): New vars.
691 (mouse-autoselect-window-cancel)
692 (mouse-autoselect-window-select)
693 (mouse-autoselect-window-start): New functions.
694 (handle-select-window): Call `mouse-autoselect-window-start' when
695 delayed window autoselection is enabled.
696
697 * cus-start.el (mouse-autoselect-window): Handle delayed window
698 autoselection.
699
700 * emacs-lisp/eldoc.el: Add `handle-select-window' to the set of
701 commands after which it is allowed to print in the echo area.
702
703 2006-09-08 Richard Stallman <rms@gnu.org>
704
705 * textmodes/fill.el (adaptive-fill-regexp): Don't match `(1)' or `1.'
706
707 * mail/rmail.el (rmail-get-new-mail): Say whether all msgs are spam.
708 (rmail-convert-to-babyl-format): Don't record undo, leave list empty.
709
710 * emacs-lisp/timer.el (timer-create, timer-activate): Doc fixes.
711 (cancel-timer-internal): Add doc string.
712 (cancel-function-timers): Doc fix.
713 (with-timeout-handler, timer-event-last*): Add doc strings.
714
715 * emacs-lisp/bindat.el (bindat-unpack): Doc fix.
716
717 * files.el (risky-local-variable-p): Match ...-bindat-spec.
718
719 * dired.el (dired-log-summary): Add doc string.
720
721 * cus-edit.el (custom-menu-create): Bind deactivate-mark here
722 (custom-group-menu-create): Not here.
723
724 2006-09-08 Carsten Dominik <dominik@science.uva.nl>
725
726 * textmodes/org.el (org-dblock-write:clocktable): Avoid infinite loop.
727
728 2006-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
729
730 * term/mac-win.el: (show-hide-font-panel): New HI command ID symbol.
731 (mac-apple-event-map): Define its handler.
732
733 2006-09-07 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
734
735 * net/ldap.el (ldap-search-internal): Handle `auth' key.
736
737 2006-09-07 Magnus Henoch <mange@freemail.hu>
738
739 * net/rcirc.el (rcirc-activity-string): Don't quote value in case
740 clause.
741
742 2006-09-07 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
743
744 * info.el (Info-index): Bind completion-ignore-case.
745
746 2006-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
747
748 * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
749 previous commit.
750 (inferior-prolog-guess-flavor): New fun left out of previous commit.
751 (prolog-consult-region-and-go): Don't hard code "*prolog*" and don't
752 burp in dedicated windows.
753 (inferior-prolog-self-insert-command): New command.
754 (inferior-prolog-mode-map): Use it.
755
756 2006-09-07 Reiner Steib <Reiner.Steib@gmx.de>
757
758 * international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
759
760 * international/code-pages.el: Add cp858.
761
762 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
763
764 * dnd.el: Fix bootstrapping.
765
766 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
767
768 * dnd.el (dnd-protocol-alist): Add what url-handler-mode can handle.
769 (dnd-open-remote-url): New function.
770 (dnd-open-remote-file-function): Set to dnd-open-remote-url if
771 not windows-nt.
772
773 2006-09-07 Jason Rumney <jasonr@gnu.org>
774
775 * dnd.el (dnd-open-remote-file-function): New variable.
776 (dnd-open-unc-file): New function.
777 (dnd-open-file): Call dnd-open-remote-file-function if set.
778
779 2006-09-06 Daiki Ueno <ueno@unixuser.org>
780
781 * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with
782 pgg-passphrase-coding-system rather than locale-coding-system.
783 * pgg-def.el (pgg-passphrase-coding-system): New user option.
784
785 2006-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
786
787 * progmodes/prolog.el: Remove * in docstrings.
788 (prolog-program-name): Add SWI prolog.
789 (prolog-mode-menu): New menu.
790 (prolog-mode): Set comment-add.
791 (prolog-indent-line): Simplify. Use indent-line-to.
792 (inferior-prolog-buffer): New var.
793 (inferior-prolog-run, inferior-prolog-process): New funs.
794 (run-prolog, switch-to-prolog): Rewrite, using them.
795 (prolog-consult-region): Use inferior-prolog-buffer.
796 (inferior-prolog-load-file): New function.
797 (prolog-mode-map): Add bindings for load-file and switch-to-prolog.
798
799 * textmodes/fill.el (fill-single-word-nobreak-p): Allow breaking before
800 last word, if it's not the end of the paragraph.
801
802 * files.el (abbreviate-file-name): Don't mistakenly match newlines in
803 file name.
804
805 2006-09-06 Ralf Angeli <angeli@caeruleus.net>
806
807 * frame.el (display-mm-dimensions-alist): New defcustom.
808 (display-mm-height, display-mm-width): Use it.
809
810 2006-09-06 Simon Josefsson <jas@extundo.com>
811
812 * mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
813
814 2006-09-06 Nick Roberts <nickrob@snap.net.nz>
815
816 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
817 (gdb-var-list-children-regexp-1): Tweak regexps to catch full
818 string values.
819
820 2006-09-06 Kim F. Storm <storm@cua.dk>
821
822 * simple.el (line-move-partial): New function to do vscrolling for
823 partially visible images / tall lines. Rewrite based on code
824 previously in line-move. Simplify backwards vscrolling.
825 (line-move): Use it. Simplify.
826
827 2006-09-05 Kim F. Storm <storm@cua.dk>
828
829 * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite.
830
831 2006-09-05 Chong Yidong <cyd@stupidchicken.com>
832
833 * progmodes/compile.el (compilation-error-regexp-alist-alist):
834 Process the `gcc-include' after the `gnu' rule.
835
836 2006-09-05 Kim F. Storm <storm@cua.dk>
837
838 * ido.el (ido-visit-buffer): Use buffer name if buffer arg is a buffer.
839
840 2006-09-05 Daiki Ueno <ueno@unixuser.org>
841
842 * pgg.el (pgg-clear-string): Alias to clear-string for backward
843 compatibility.
844
845 * pgg-gpg.el (pgg-gpg-process-region): Avoid display blinking with
846 inhibit-redisplay; encode passphrase with locale-coding-system.
847
848 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
849
850 * term/xterm.el (terminal-init-xterm): Add more C-M- bindings.
851
852 2006-09-05 Nick Roberts <nickrob@snap.net.nz>
853
854 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
855 (gdb-var-list-children-regexp): Make type field optional.
856
857 * progmodes/gud.el (gud-speedbar-buttons): Allow for no type
858 e.g public, protected in C++.
859
860 2006-09-04 John Paul Wallington <jpw@pobox.com>
861
862 * simple.el (completion-show-help): New defcustom.
863 (completion-setup-function): Heed it.
864
865 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
866
867 * term/xterm.el (terminal-init-xterm): Add C-M- bindings.
868
869 2006-09-04 Richard Stallman <rms@gnu.org>
870
871 * mail/rmail-spam-filter.el (rsf-scanning-messages-now): Doc fix.
872 (rsf-min-region-to-spam-list): Doc fix.
873 (rsf-add-content-type-field): Doc fix.
874
875 * simple.el (kill-region): Explicitly test there is a region.
876
877 2006-09-04 Chong Yidong <cyd@stupidchicken.com>
878
879 * mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
880 sendmail in several common directories.
881
882 * mail/sendmail.el (sendmail-program): Moved here from paths.el.
883
884 * paths.el (sendmail-program): Removed.
885
886 2006-09-04 Daiki Ueno <ueno@unixuser.org>
887
888 * pgg-gpg.el (pgg-gpg-process-region): Revert two patches from Satyaki
889 Das. http://article.gmane.org/gmane.emacs.gnus.general/49947
890 http://article.gmane.org/gmane.emacs.gnus.general/50457
891
892 2006-09-03 Chong Yidong <cyd@stupidchicken.com>
893
894 * cus-edit.el (custom-group-menu-create): Avoid deactivating the
895 mark after running the menu filter.
896
897 2006-09-03 Juri Linkov <juri@jurta.org>
898
899 * international/quail.el (quail-defrule-internal): Add a check
900 if a key is a vector.
901
902 2006-09-02 Juri Linkov <juri@jurta.org>
903
904 * man.el (Man-topic-history): New variable.
905 (man): Use it.
906
907 * woman.el (woman-topic-history): Change defvar to defvaralias
908 for symbol `Man-topic-history'.
909
910 * shell.el (shell-filter-ctrl-a-ctrl-b): Check if
911 `comint-last-output-start' is a marker by using `markerp' and
912 check if it has a position by using `marker-position', and use
913 this position for `goto-char'.
914
915 * international/quail.el (quail-defrule-internal): Add missing
916 `error' call for null key.
917
918 2006-09-02 Ryan Yeske <rcyeske@gmail.com>
919
920 * rcirc.el (rcirc-keywords): New variable.
921 (rcirc-bright-nicks, rcirc-dim-nicks): New variables.
922 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove
923 variables.
924 (rcirc-responses-no-activity): New function.
925 (rcirc-handler-generic): Check for responses in above.
926 (rcirc-process-command): Add ?: character to arguments of raw
927 server commands.
928 (rcirc-format-response-string): Use `rcirc-bright-nicks' and
929 `rcirc-dim-nicks'.
930 (rcirc-gray-toggle): Remove unused variable.
931 (rcirc-print): Remove some tracking logic, which is moved into
932 markup functions.
933 (rcirc-activity-types): Was `rcirc-activity-type', now a list of
934 types.
935 (rcirc-activity-string): Look for 'keyword in activity-types.
936 (rcirc-window-configuration-change): Don't erase overlay-arrow
937 unnecessarily.
938 (rcirc-add-or-remove): New function.
939 (rcirc-cmd-ignore): Use it.
940 (rcirc-message-leader): Remove unused function.
941 (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands.
942 (rcirc-add-face): New function.
943 (rcirc-facify): Use rcirc-add-face.
944 (rcirc-url-regexp): Add parens.
945 (rcirc-map-regexp): Remove function.
946 (rcirc-mangle-regexp): Remove function.
947 (rcirc-markup-text-functions): New variable.
948 (rcirc-markup-text): New function (replaces `rcirc-mangle-text').
949 (rcirc-markup-body-text, rcirc-markup-attributes)
950 (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords)
951 (rcirc-markup-bright-nicks): New markup handler functions.
952 (rcirc-nick-in-message-full-line): New face.
953 (rcirc-track-nick): Rename from `rcirc-mode-line-nick'.
954 (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces.
955
956 2006-09-02 Martin Rudalics <rudalics@gmx.at>
957
958 * cus-start.el (hscroll-margin, hscroll-step)
959 (mode-line-in-non-selected-windows, mouse-autoselect-window)
960 (x-use-underline-position-properties): Change version to "22.1"
961 since they will appear there for the first time.
962
963 2006-09-01 Chong Yidong <cyd@stupidchicken.com>
964
965 * imenu.el (imenu-update-menubar): Use buffer-chars-modified-tick.
966
967 2006-08-31 Richard Stallman <rms@gnu.org>
968
969 * cus-edit.el (custom-save-variables): Slight cleanup.
970 (Custom-no-edit): Renamed from custom-no-edit.
971 (Custom-newline): Renamed from custom-newline.
972 (custom-mode-map): Use new names.
973
974 * emacs-lisp/easy-mmode.el (define-minor-mode): Reference manual
975 about customization, rather than M-x customize, in the doc string
976 made for the defcustom.
977
978 * emacs-lisp/trace.el (trace-function-background): Doc fix.
979
980 2006-08-31 Romain Francoise <romain@orebokech.com>
981
982 * dired-x.el (dired-guess-shell-alist-default): Update.
983
984 2006-08-31 Michael Mauger <mmaug@yahoo.com>
985
986 * custom.el (custom-theme-set-variables): Autoload packages before
987 sorting the variables.
988
989 2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
990
991 * viper-cmd.el (viper-special-read-and-insert-char): Convert events to
992 chars if XEmacs.
993 (viper-after-change-undo-hook): Check if undo-in-progress is bound.
994
995 2006-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
996
997 * progmodes/python.el (python-eldoc-function): Re-enable quit while
998 waiting for process.
999
1000 2006-08-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1001
1002 * term/mac-win.el (mac-string-to-utxt): If adjustment for MacJapanese
1003 results in ASCII-only string, encode original one directly.
1004
1005 2006-08-29 Romain Francoise <romain@orebokech.com>
1006
1007 * startup.el (normal-splash-screen, fancy-splash-screens):
1008 Make buffer read-only and arrange to enter view mode if necessary.
1009
1010 2006-08-29 Chong Yidong <cyd@stupidchicken.com>
1011
1012 * hl-line.el (hl-line): New face.
1013 (hl-line-face): Use it.
1014
1015 * image-mode.el (image-mode): Fix last fix.
1016 Suggested by Kim F. Storm.
1017
1018 2006-08-29 Michael Albinus <michael.albinus@gmx.de>
1019
1020 Sync with Tramp 2.0.54.
1021
1022 * net/tramp.el (tramp-convert-file-attributes): Call `eql' instead
1023 of `=', because `tramp-get-remote-gid' might not always return an
1024 integer when expected.
1025 (tramp-register-file-name-handlers): `partial-completion-mode' is
1026 unknown to XEmacs.
1027 (tramp-time-diff): Don't use `floor', it might fail for large
1028 differences.
1029 (tramp-handle-make-auto-save-file-name): For Emacs 21, set
1030 `tramp-auto-save-directory' if unset in order to guarantee unique
1031 auto-save file names.
1032
1033 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
1034
1035 * image-mode.el (image-mode): Display image as text on a terminal.
1036
1037 2006-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1038
1039 * progmodes/python.el (python-send-command): Simplify.
1040 (run-python): Don't generate a new buffer unless `new' was specified.
1041 Make sure we send `import emacs' to the proper process.
1042
1043 * progmodes/python.el (python-send-command): Don't wait for the command
1044 to terminate. Don't fiddle with compilation-parsing-end.
1045
1046 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
1047
1048 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
1049 Insert commentary after first line summary.
1050
1051 * woman.el (woman-follow): New function, based on `man-follow'.
1052 (woman-mode-map): Use it.
1053
1054 * ibuffer.el (ibuffer-do-sort-by-recency): Perform full update
1055 since ibuffer-do-sort-by-recency does not define a sorter.
1056
1057 2006-08-28 Kim F. Storm <storm@cua.dk>
1058
1059 * find-dired.el (find-dired): Use shell-quote-argument to properly
1060 escape ( and ) args. Also use it on {} and ; args in default
1061 value of find-ls-option string.
1062 (find-grep-dired): Use shell-quote-argument on {} and ; args.
1063
1064 2006-08-27 Michael Olson <mwolson@gnu.org>
1065
1066 * emacs-lisp/tq.el: Small grammar fix in comments.
1067 (tq-enqueue): Check for existence of queue rather than the
1068 head queue item's question, which was a no-op.
1069 (tq-filter, tq-process-buffer): Make sure the process buffer
1070 exists before making it the current buffer.
1071
1072 2006-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1073
1074 * term/mac-win.el (mac-apple-event-map): Rename hicommand to hi-command.
1075 (mac-dnd-drop-data): Apply 2006-08-22 change for x-dnd-drop-data.
1076 (special-event-map): Apply 2006-08-16 change for x-win.el.
1077
1078 2006-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
1079
1080 * progmodes/python.el (python-send-receive): Wait in the
1081 process's buffer so as to check the right buffer-local variables.
1082
1083 2006-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
1084
1085 * emacs-lisp/checkdoc.el: Remove * in defcustoms.
1086 (defgroup checkdoc): Move to beginning.
1087
1088 * progmodes/python.el (python-preoutput-skip-next-prompt): New var.
1089 (python-preoutput-continuation): Remove.
1090 (python-preoutput-filter): Simplify correspondingly.
1091 Remove handling of _emacs_ok. Make sure we skip _emacs_out's prompts.
1092 Loop around to catch embedded _emacs_out output.
1093 (run-python): Send the import&print command on a single line.
1094 (python-send-command): Send command&print on a single line.
1095 (python-send-string): Only add double \n if needed.
1096 (python-send-receive): Loop until the result comes.
1097 (python-mode-running): Defvar it.
1098 (python-setup-brm): Remove unused var `menu'.
1099 Only bind py-mode-map and `features' around brm-init.
1100 (python-calculate-indentation): Remove unused var `point'.
1101 (python-beginning-of-defun): Remove unused var `def-line'.
1102
1103 2006-08-25 Richard Stallman <rms@gnu.org>
1104
1105 * kmacro.el (kmacro-repeat-on-last-key): Doc fix.
1106
1107 2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
1108
1109 * viper.el (viper-set-hooks): Use frame bindings for
1110 viper-vi-state-cursor-color.
1111 (viper-non-hook-settings): Don't set default
1112 mode-line-buffer-identification.
1113
1114 * viper-util.el (viper-set-cursor-color-according-to-state): New fun.
1115 (viper-set-cursor-color-according-to-state)
1116 (viper-get-saved-cursor-color-in-replace-mode)
1117 (viper-get-saved-cursor-color-in-insert-mode): Make conditional on
1118 viper-emacs-state-cursor-color.
1119
1120 * viper-cmd.el (viper-envelop-ESC-key): Bug fix.
1121 (viper-undo): Use point if undo-beg-posn is nil.
1122 (viper-insert-state-post-command-sentinel, viper-change-state-to-emacs)
1123 (viper-after-change-undo-hook): Don't use
1124 viper-emacs-state-cursor-color by default.
1125 (viper-undo): More sensible positioning after undo.
1126
1127 * viper-ex.el (ex-splice-args-in-1-letr-cmd): Get rid of caddr.
1128 (viper-emacs-state-cursor-color): Default to nil, since this feature
1129 doesn't work well yet.
1130
1131 * ediff-mult.el (ediff-intersect-directories)
1132 (ediff-get-directory-files-under-revision, ediff-dir-diff-copy-file):
1133 always expand filenames.
1134
1135 2006-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
1136
1137 * tumme.el: Remove * in defcustoms's docstrings.
1138
1139 2006-08-24 Chong Yidong <cyd@stupidchicken.com>
1140
1141 * emacs-lisp/timer.el (timer-set-idle-time, run-with-idle-timer):
1142 Accept internal time format for SECS arg.
1143 (timer-relative-time): Doc fix.
1144
1145 * jit-lock.el: "Stealth fontification by requeuing timers" patch,
1146 adapted from Martin Rudalics.
1147 (jit-lock-stealth-repeat-timer, jit-lock-stealth-buffers): New vars.
1148 (jit-lock-mode): Create jit-lock-stealth-repeat-timer.
1149 (jit-lock-stealth-fontify): Reschedule as a idle timer instead of
1150 using sit-for.
1151
1152 2006-08-24 Francesc Rocher <francesc.rocher@gmail.com>
1153
1154 * cus-start.el (all): Add `overline-margin' and
1155 `x-underline-at-descent-line'.
1156
1157 2006-08-24 Kim F. Storm <storm@cua.dk>
1158
1159 * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec'
1160 to mean "use find -exec"; nil now unambiguously means auto-detect.
1161 (grep-compute-defaults): Set grep-find-use-xargs to `exec' if not `gnu'.
1162 Use shell-quote-argument to build grep-find-command and
1163 grep-find-template.
1164 (rgrep): Use shell-quote-argument to properly quote arguments to find.
1165 Reported by Tom Seddon.
1166
1167 2006-08-23 Chong Yidong <cyd@stupidchicken.com>
1168
1169 * startup.el (fancy-splash-head): Give instructions for dismissing
1170 the splash screen for default startup too.
1171 (display-startup-echo-area-message, fancy-splash-screens)
1172 (use-fancy-splash-screens-p): New arg hide-on-input. If nil, show
1173 all splash text at once and keep the splash buffer around.
1174 (command-line-1): Give display-startup-echo-area-message a t arg.
1175
1176 2006-08-23 Carsten Dominik <dominik@science.uva.nl>
1177
1178 * textmodes/org.el (org-follow-gnus-link): Make sure the dedicated
1179 gnus frame is selected.
1180
1181 2006-08-23 Nick Roberts <nickrob@snap.net.nz>
1182
1183 * progmodes/gdb-ui.el (gdb-starting): Reset gdb-signalled to nil.
1184
1185 2006-08-22 Kim F. Storm <storm@cua.dk>
1186
1187 * ido.el (ido-set-matches-1): Fix full matching for subdirs.
1188 Add suffix matching for subdirs.
1189
1190 2006-08-22 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
1191
1192 * x-dnd.el (x-dnd-drop-data): Don't call goto-char if
1193 mouse-yank-at-point is non-nil.
1194
1195 2006-08-22 Nick Roberts <nickrob@snap.net.nz>
1196
1197 * progmodes/gdb-ui.el (gdb-frame-memory-buffer): Make frame
1198 a bit wider and remove fringes to fit initial output on line.
1199
1200 2006-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1201
1202 * frame.el (blink-cursor-end): Only ignore the error we care about.
1203 (blink-cursor-mode): Use blink-cursor-end to simplify the code.
1204
1205 2006-08-21 Richard Stallman <rms@gnu.org>
1206
1207 * whitespace.el (whitespace-cleanup): Doc fix.
1208
1209 2006-08-20 Ryan Yeske <rcyeske@gmail.com>
1210
1211 * net/rcirc.el (rcirc-show-maximum-output): New var.
1212 (rcirc-buffer-process): If no buffer argument is supplied, use
1213 current-buffer.
1214 (rcirc-complete-nick): Complete to the last completed nick first.
1215 (rcirc-mode): Preserve the value of `rcirc-urls' across
1216 connections. Setup scroll function.
1217 (rcirc-scroll-to-bottom): New function.
1218 (rcirc-print): Use nick syntax around regexp work.
1219 Notice dim-nicks speaking only if they say our nick.
1220 (rcirc-update-activity-string): Do not show the modeline indicator
1221 if there are no live rcirc processes.
1222 (rcirc-cmd-ignore): Ignore case.
1223 (rcirc-browse-url-at-point): Fix off-by-one error.
1224
1225 2006-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
1226
1227 * progmodes/python.el: Remove * in defcustom docstrings.
1228 (run-python, python-proc, python-try-complete): Use derived-mode-p.
1229 (python-mode): Set tab-width and indent-tabs-mode.
1230
1231 2006-08-20 Dave Love <fx@gnu.org>
1232
1233 * progmodes/python.el: Update to Dave Love's latest version.
1234 (python-font-lock-keywords, python-mode): Don't use
1235 font-lock-syntax-table, but match symbol elements explicitly instead.
1236 (python-mode-map): Add help, and a few more key bindings.
1237 (python-skip-comments/blanks): Move out of comments as well.
1238 (python-continuation-line-p): Behave better with unbalanced parens.
1239 (python-blank-line-p): New fun.
1240 (python-open-block-statement-p): Don't use a heuristic.
1241 (python-outdent-p): Better handle blocks-in-the-same-line.
1242 (python-calculate-indentation): Misc improvements.
1243 (python-comment-indent): Remove.
1244 (python-block-pairs): New var.
1245 (python-first-word): New fun.
1246 (python-indentation-levels): Handle more common cases.
1247 (python-indent-line-1): Add `leave' argument.
1248 (python-indent-region): New fun.
1249 (python-skip-out): New fun.
1250 (python-beginning-of-statement, python-end-of-statement): Use it.
1251 (python-next-statement): Return correct count even at eob.
1252 (python-end-of-block): Fix paren-typo.
1253 (python-imenu-create-index): Add module variables.
1254 (run-python): Add `new' arg.
1255 Check we're at a prompt before returning.
1256 (python-send-command): Move to end of buffer.
1257 Wait for prompt to return.
1258 (python-set-proc): New fun.
1259 (python-imports): New var.
1260 (python-describe-symbol): Use it. Adjust to new interface of `ehelp'.
1261 (python-eldoc-function): Try to move out of arg list.
1262 (python-outline-level): Offset by 1.
1263 (python-find-imports): New fun.
1264 (python-symbol-completions): Use python-imports.
1265 (python-module-path, ffap-alist): Add support for ffap.
1266 (python-skeletons, python-mode-abbrev-table, def-python-skeleton)
1267 (pythin-insert-*, python-default-template, python-expand-template):
1268 Add templates/skeletons.
1269 (python-setup-brm): Support for Bicycle Repair Man.
1270 (python-abbrev-syntax-table): New var.
1271 (python-abbrev-pc-hook, python-pea-hook): New funs.
1272
1273 2006-08-20 Chong Yidong <cyd@stupidchicken.com>
1274
1275 * frame.el (blink-cursor-start): Set timer first.
1276 (blink-cursor-end): Ignore timer cancelling errors.
1277 Suggested by Ken Manheimer.
1278
1279 2006-08-20 Juanma Barranquero <lekktu@gmail.com>
1280
1281 * newcomment.el (comment-box): Call `comment-normalize-vars'.
1282 Add autoload cookie.
1283
1284 2006-08-20 Richard Stallman <rms@gnu.org>
1285
1286 * simple.el (line-number-at-pos): Doc fix.
1287
1288 * emacs-lisp/timer.el (run-with-idle-timer): Pass t to
1289 timer-activate-when-idle, so timer can run before Emacs becomes
1290 non-idle again.
1291
1292 2006-08-18 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
1293
1294 * whitespace.el (whitespace-cleanup-internal): New optional arg
1295 REGION-ONLY. If it's non-nil, modify the message to the user
1296 accordingly.
1297 (whitespace-cleanup-region): Call whitespace-cleanup-internal with
1298 a non-nil argument.
1299
1300 2006-08-18 Gustav H\e,Ae\e(Bllberg <gustav@gmail.com> (tiny change)
1301
1302 * rect.el (spaces-string): Simplify and add doc string.
1303
1304 2006-08-17 Romain Francoise <romain@orebokech.com>
1305
1306 * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens.
1307
1308 2006-08-17 Richard Stallman <rms@gnu.org>
1309
1310 * compare-w.el (compare-windows): lambda's take an arg and pass
1311 it to compare-windows-skip-whitespace.
1312
1313 2006-08-17 Martin Rudalics <rudalics@gmx.at>
1314
1315 * jit-lock.el (jit-lock-fontify-now): Protect the modified status of
1316 the right buffer.
1317
1318 2006-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
1319
1320 * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
1321 removed files.
1322
1323 2006-08-17 Nick Roberts <nickrob@snap.net.nz>
1324
1325 * progmodes/gdb-ui.el (gdb-locals-watch-map)
1326 (gdb-locals-watch-map-1): Suppress keymap first.
1327 (gdb-edit-locals-map-1): New variable.
1328 (gdb-edit-locals-value): New function.
1329 (gdb-stack-list-locals-handler): Use them.
1330
1331 2006-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
1332
1333 * mouse.el (global-map): Allow yanking with mouse-2 at a spot whose
1334 cursor would normally be drawn in the fringe.
1335
1336 * font-lock.el (font-lock-extend-region-wholelines): Fix up typo.
1337 Reported by Martin Rudalics <rudalics@gmx.at>.
1338
1339 2006-08-16 Richard Stallman <rms@gnu.org>
1340
1341 * term/x-win.el (x-clipboard-yank): Specify * in interactive spec.
1342 (special-event-map): Process drag-n-drop events this way.
1343
1344 * simple.el (move-beginning-of-line): Test whether fields
1345 would prevent motion back to line's first visible character.
1346 If so, stop where the fields would stop the motion.
1347
1348 * newcomment.el (comment-indent): Fully update INDENT
1349 before checking to see if it will change the text.
1350
1351 * cus-edit.el (custom-newline): New function.
1352 (custom-mode-map): Bind newline to custom-newline.
1353
1354 * compare-w.el (compare-windows): Factor compare-ignore-whitespace
1355 into ignore-whitespace.
1356 Check each buffer for its skip-function.
1357 Handle compare-windows-skip-whitespace special-case test
1358 by returning t from default skip function.
1359
1360 2006-08-15 Carsten Dominik <dominik@science.uva.nl>
1361
1362 * textmodes/org.el (org-clock-special-range)
1363 (org-clock-update-time-maybe): New functions.
1364 (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
1365 not only a-z.
1366 (org-agenda-get-blocks): Allow multiple blocks per headline.
1367 (org-timestamp-change): Call `org-clock-update-time-maybe'.
1368 (org-export-html-title-format)
1369 (org-export-html-toplevel-hlevel): New options.
1370 (org-export-language-setup): Add support for Czech.
1371 (org-mode, org-insert-todo-heading, org-find-visible)
1372 (org-find-invisible, org-invisible-p, org-invisible-p2)
1373 (org-back-to-heading, org-on-heading-p, org-up-heading-all)
1374 (org-show-subtree, org-show-entry, org-make-options-regexp):
1375 Remove compatibility support for old outline-mode.
1376 (org-check-occur-regexp): Funtion removed.
1377 (org-on-heading-p, org-back-to-heading): Made defalias.
1378 (org-set-local): New defsubst.
1379 (org-set-regexps-and-options, org-mode)
1380 (org-set-font-lock-defaults, org-edit-agenda-file-list)
1381 (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
1382 (org-remember-apply-template, org-table-edit-field)
1383 (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
1384 (org-set-autofill-regexps): Use `org-set-local'.
1385 (org-table-eval-formula): Fix bug with parsing of display flags.
1386
1387 2006-08-15 Nick Roberts <nickrob@snap.net.nz>
1388
1389 * progmodes/gdb-ui.el (gdb-info-stack-custom): Indicate selected
1390 frame with fringe arrow. Suggested by Simon Marshall
1391 <simon.marshall@misys.com>.
1392 (gdb-stack-position): New variable.
1393 (gdb-starting, gdb-exited): Reset gdb-stack-position to nil.
1394 (gdb-frames-mode): Set gdb-stack-position to nil.
1395 Add to overlay-arrow-variable-list
1396 (gdb-reset): Delete gdb-stack-position from above list.
1397
1398 2006-08-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1399
1400 * term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
1401 read only.
1402
1403 2006-08-13 Romain Francoise <romain@orebokech.com>
1404
1405 * cus-theme.el (customize-create-theme)
1406 (custom-theme-visit-theme): End `y-or-n-p' prompt with a space.
1407
1408 * filesets.el (filesets-add-buffer): Ditto.
1409
1410 * pcvs.el (cvs-change-cvsroot): Ditto.
1411
1412 2006-08-13 Nick Roberts <nickrob@snap.net.nz>
1413
1414 * progmodes/gdb-ui.el (gdb-frame-separate-io-buffer)
1415 (gdb-use-separate-io-buffer, menu): Avoid using `inferior' in text.
1416 (gdb-memory-mode, gdb-locals-watch-map): Don't quote lambda
1417 expressions.
1418 (gdb-info-breakpoints-custom): Use gdb-breakpoint-regexp.
1419 Only search till end of line.
1420 Add face to function names in case of no filename.
1421 Add face to variable names of watchpoints.
1422
1423 2006-08-12 Robert Thorpe <rthorpe@realworldtech.com> (tiny change)
1424
1425 * cus-start.el <indent-tabs-mode>: Move to the `indent'
1426 customization group.
1427
1428 2006-08-12 Ken Manheimer <ken.manheimer@gmail.com>
1429
1430 * allout.el (allout-prior-bindings, allout-added-bindings):
1431 Remove, after long deprecation.
1432 (allout-beginning-of-line-cycles, allout-end-of-line-cycles):
1433 Add customization vars controlling allout-beginning-of-line and
1434 allout-end-of-line conveniences.
1435 (allout-header-prefix, allout-use-mode-specific-leader)
1436 (allout-use-mode-specific-leader, allout-mode-leaders):
1437 Revise docstrings.
1438 (allout-infer-header-lead): Change to be an alias for
1439 allout-infer-header-lead-and-primary-bullet.
1440 (allout-infer-header-lead-and-primary-bullet): New version of
1441 allout-infer-header-lead which assigns the primary bullet to the
1442 same as the header lead, when its being changed.
1443 (allout-infer-body-reindent): Apply regexp-quote instead of
1444 unconditionally prepending "\\", so that all literal
1445 allout-header-prefix and allout-primary-bullet strings are
1446 properly handled.
1447 (allout-add-resumptions): Add optional qualifier for extending or
1448 appending to existing values, rather than replacing them.
1449 (allout-view-change-hook): Clarify docstring.
1450 (allout-exposure-change-hook): Take explicit arguments, via
1451 run-hook-with-args.
1452 (allout-structure-added-hook)
1453 (allout-structure-deleted-hook)
1454 (allout-structure-shifted-hook): New hooks analogous to
1455 allout-exposure-change-hook for other kinds of structural outline
1456 edits.
1457 (allout-encryption-plaintext-sanitization-regexps): New encryption
1458 customization variable, by which cooperating modes can provde
1459 massage of the plaintext without actually being passed it.
1460 (allout-encryption-ciphertext-rejection-regexps)
1461 (allout-encryption-ciphertext-rejection-ceiling): New encryption
1462 customization variables, by which cooperating modes can prohibit
1463 rare but possible ciphertext patterns from fouling their
1464 operation, with actually being passed the ciphertext.
1465 (allout-mode): Run activation and deactivation hooks after the
1466 minor-mode variable has been toggled, to clarify the mode
1467 disposition. The new encryption ciphertext rejection variable is
1468 used to ensure that the ciphertext does not contain text that
1469 would be recognized as outline structural elements by allout.
1470 Substite allout-beginning-of-line and allout-end-of-line for
1471 conventionall beginning-of-line and end-of-line bindings.
1472 If allout-old-style-prefixes is non-nil, don't nullify it on mode
1473 activation!
1474 (allout-beginning-of-line): Respect `allout-beginning-of-line-cycles'.
1475 (allout-end-of-line): Respect `allout-end-of-line-cycles'.
1476 (allout-chart-subtree): Implement new mode, charting only the
1477 visible items in the subtree, when new 'visible' parameter is non-nil.
1478 (allout-end-of-subtree): Properly handle the last item in the buffer.
1479 (allout-pre-command-business, allout-command-counter):
1480 Increment an advertised counter so that cooperating enhancements can
1481 track revisions of items.
1482 (allout-open-topic): Run allout-structure-added-hook with suitable
1483 arguments.
1484 (allout-shift-in): Run allout-structure-shifted-hook with suitable
1485 arguments.
1486 (allout-shift-out): Fix doubling for negative args and ensure call
1487 of allout-structure-shifted-hook by solely using allout-shift-in.
1488 (allout-kill-line, allout-kill-topic):
1489 Run allout-structure-deleted-hook with suitable arguments.
1490 (allout-yank-processing): Run allout-structure-added-hook with
1491 proper arguments.
1492 (allout-yank): Enclose activity in allout-unprotected.
1493 (allout-flag-region): Run allout-exposure-change-hook with
1494 suitable arguments, instead of making the callee infer the arguments.
1495 (allout-encrypt-string):
1496 Support allout-encryption-plaintext-sanitization-regexps,
1497 allout-encryption-ciphertext-rejection-regexps, and
1498 allout-encryption-ciphertext-rejection-ceiling. Indicate correct
1499 en/de cryption mode in symmetric encryption failure message.
1500 (allout-obtain-passphrase): Use copy-sequence to get a distinct
1501 copy of the passphrase, and don't zero it or we'll corrupt the
1502 stashed copy.
1503 (allout-create-encryption-passphrase-verifier)
1504 (allout-verify-passphrase): Respect the new signature for
1505 allout-encrypt-string.
1506 (allout-get-configvar-values): Convenience for getting a
1507 configuration variable value and handling its absence gracefully.
1508
1509 2006-08-11 Romain Francoise <romain@orebokech.com>
1510
1511 * obsolete/zone-mode.el: Delete.
1512
1513 2006-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
1514
1515 * textmodes/dns-mode.el (dns-mode): Use before-save-hook.
1516
1517 2006-08-11 Thien-Thi Nguyen <ttn@gnu.org>
1518
1519 * emacs-lisp/bindat.el (bindat-ip-to-string):
1520 Use `format-network-address' if possible.
1521
1522 2006-08-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1523
1524 * x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom.
1525
1526 2006-08-10 Chong Yidong <cyd@stupidchicken.com>
1527
1528 * emacs-lisp/edebug.el (edebug-recursive-edit): Don't save and
1529 restore unread-command-events here.
1530 (edebug-display): Do it here, to detect sit-for interruptions.
1531
1532 2006-08-10 Romain Francoise <romain@orebokech.com>
1533
1534 * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'.
1535 (dns-mode-soa-auto-increment-serial): New user option.
1536 (dns-mode-soa-maybe-increment-serial): New function.
1537 (dns-mode): Add the latter to `write-contents-functions'.
1538
1539 * obsolete/zone-mode.el: Move to obsolete/ from net/.
1540 Delete autoload cookies.
1541
1542 2006-08-10 John Wiegley <johnw@newartisans.com>
1543
1544 * eshell/em-glob.el (eshell-glob-chars-list)
1545 (eshell-glob-translate-alist): Add support for [^g] in character globs.
1546
1547 2006-08-10 Richard Stallman <rms@gnu.org>
1548
1549 * facemenu.el (facemenu-add-face): Pass frame to facemenu-active-faces.
1550 (facemenu-set-face): Doc fix.
1551 (facemenu-listed-faces): Doc fix.
1552
1553 2006-08-09 Chong Yidong <cyd@stupidchicken.com>
1554
1555 * avoid.el (mouse-avoidance-animating-pointer): New var.
1556 (mouse-avoidance-nudge-mouse): Use it.
1557 (mouse-avoidance-banish): Rename from mouse-avoidance-banish-hook.
1558 (mouse-avoidance-exile): Rename from mouse-avoidance-exile-hook
1559 (mouse-avoidance-fancy): Rename from mouse-avoidance-fancy-hook.
1560 Don't activate if currently animating. All callers changed.
1561
1562 2006-08-09 John Wiegley <johnw@newartisans.com>
1563
1564 * calendar/timeclock.el (timeclock-use-elapsed): Added a new
1565 variable, which causes timeclock to report elapsed time worked,
1566 instead of just work remaining.
1567
1568 2006-08-09 Kenichi Handa <handa@m17n.org>
1569
1570 * international/latexenc.el (latexenc-find-file-coding-system):
1571 Fix for the case that the 2nd element of arg-list is a cons.
1572
1573 2006-08-08 Chong Yidong <cyd@stupidchicken.com>
1574
1575 * info.el (Info-fontify-node): Handle preceding `in' for note
1576 reference hiding rules.
1577
1578 2006-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1579
1580 * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't
1581 mistake a closing " for an opening one.
1582
1583 2006-08-07 Dan Nicolaescu <dann@ics.uci.edu>
1584
1585 * term/xterm.el (terminal-init-xterm): Add more key bindings.
1586
1587 2006-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
1588
1589 * complete.el (PC-do-completion): Filter out completions matching
1590 completion-ignored-extensions before checking whether there are
1591 multiple completions.
1592 Don't use `list' unnecessarily when building completion tables.
1593
1594 2006-08-06 Richard Stallman <rms@gnu.org>
1595
1596 * help.el (describe-mode): Make minor mode list more concise.
1597
1598 2006-08-05 Chong Yidong <cyd@stupidchicken.com>
1599
1600 * bindings.el: Give mode-line-format, mode-line-modes, and
1601 mode-line-position `standard-value' properties.
1602
1603 2006-08-05 Eli Zaretskii <eliz@gnu.org>
1604
1605 * buff-menu.el (list-buffers-noselect): For Info buffers, use
1606 "(file)node" instead of the file name.
1607
1608 2006-08-05 Richard Stallman <rms@gnu.org>
1609
1610 * faces.el (escape-glyph): Doc fix.
1611
1612 2006-08-04 Kenichi Handa <handa@m17n.org>
1613
1614 * international/mule-diag.el (describe-font): Improve docstring
1615 and error message. Use frame-parameter (not frame-parameters).
1616
1617 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
1618
1619 * progmodes/gud.el (gdb-script-font-lock-syntactic-keywords):
1620 Correctly mark the end-of-docstring char.
1621
1622 2006-08-03 Chong Yidong <cyd@stupidchicken.com>
1623
1624 * simple.el (line-move-to-column): Constrain move-to-column to
1625 current field.
1626
1627 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
1628
1629 * font-lock.el (font-lock-beg, font-lock-end)
1630 (font-lock-extend-region-functions): New vars.
1631 (font-lock-extend-region-multiline)
1632 (font-lock-extend-region-wholelines): New functions.
1633 (font-lock-default-fontify-region): Use them.
1634 (font-lock-extend-jit-lock-region-after-change): Only round up
1635 if font-lock-default-fontify-region will do it as well.
1636
1637 * font-lock.el (font-lock-extend-after-change-region-function):
1638 Rename from font-lock-extend-region-function.
1639 (font-lock-extend-region): Remove by inlining at call sites.
1640 (font-lock-after-change-function): Don't needlessly round up to a whole
1641 number of lines.
1642 (font-lock-extend-jit-lock-region-after-change): Be more careful about
1643 the boundary conditions and the interactions between the various ways
1644 to extend the region.
1645
1646 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1647
1648 * jit-lock.el (jit-lock-fontify-now): Preserve the buffer's
1649 modification status when forcing the second redisplay.
1650
1651 2006-08-03 Kim F. Storm <storm@cua.dk>
1652
1653 * edmacro.el (edmacro-fix-menu-commands): Ignore switch-frame.
1654
1655 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1656
1657 * pcvs-util.el (cvs-get-buffer-create): Obey `noreuse' even if `name'
1658 doesn't look like a file name.
1659
1660 * complete.el (PC-expand-many-files): Avoid signalling an error when
1661 the current directory doesn't exist. Reported by Micha\e,Ak\e(Bl Cadilhac.
1662
1663 2006-08-02 Andreas Schwab <schwab@suse.de>
1664
1665 * bindings.el (mode-line-format): Simplify reference to vc-mode.
1666
1667 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
1668
1669 * bindings.el (map): Make mode-line-buffer-identification-keymap
1670 before defining propertized-buffer-identification.
1671
1672 2006-08-01 Richard Stallman <rms@gnu.org>
1673
1674 * bindings.el (mode-line-format): Adjust spacing around vc-mode.
1675
1676 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
1677
1678 * progmodes/gdb-ui.el (gdb-find-source-frame): Make nil the
1679 default value.
1680 (gdb-find-source-frame): New function.
1681 (menu): Add to menu bar.
1682
1683 2006-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
1684
1685 * font-core.el (font-lock-extend-region-function)
1686 (font-lock-extend-region): Move to font-lock.el.
1687
1688 * font-lock.el (font-lock-extend-region-function)
1689 (font-lock-extend-region): Move from font-core.el. Simplify.
1690
1691 * jit-lock.el (jit-lock-fontify-now): Cause a second redisplay
1692 if needed.
1693 (jit-lock-start, jit-lock-end): New dynamic scoped vars.
1694 (jit-lock-after-change-extend-region-functions): New hook.
1695 (jit-lock-after-change): Use it instead of hard-coding font-lock code.
1696
1697 * font-lock.el (font-lock-extend-jit-lock-region-after-change): New fun.
1698 (font-lock-turn-on-thing-lock): Use it.
1699
1700 * longlines.el (longlines-show-region): Make it work on read-only
1701 buffers as well.
1702
1703 2006-08-01 Nick Roberts <nickrob@snap.net.nz>
1704
1705 * progmodes/gdb-ui.el (gdb-set-hollow): Check for gud-last-last-frame.
1706
1707 2006-07-31 Richard Stallman <rms@gnu.org>
1708
1709 * progmodes/vhdl-mode.el (vhdl-speedbar-display-directory)
1710 (vhdl-speedbar-display-projects): Update old obsolete
1711 speedbar variable names.
1712
1713 2006-07-31 Nick Roberts <nickrob@snap.net.nz>
1714
1715 * progmodes/gdb-ui.el (gdb-find-source-frame): New option.
1716 (gdb-stopped): Use it.
1717
1718 * t-mouse.el (t-mouse-mode): Use set-process-query-on-exit-flag.
1719
1720 2006-07-29 Chong Yidong <cyd@stupidchicken.com>
1721
1722 * loadhist.el (unload-feature): Handle new `(t . SYMBOL)' format
1723 for load-history elements.
1724
1725 2006-07-29 Eli Zaretskii <eliz@gnu.org>
1726
1727 * files.el (convert-standard-filename): For Cygwin, replace
1728 characters not allowed in Windows file names.
1729 (make-auto-save-file-name): Add Cygwin to the list of systems
1730 where the auto-save file name needs to be run through
1731 convert-standard-filename.
1732
1733 2006-07-29 Lennart Borgman <lennart.borgman.073@student.lu.se>
1734
1735 * window.el (bw-get-tree): Don't integerp subtree if it's nil.
1736
1737 2006-07-28 Richard Stallman <rms@gnu.org>
1738
1739 * bindings.el (mode-line-frame-identification)
1740 (propertized-buffer-identification): Centralize the code
1741 to initialize the variable.
1742
1743 * progmodes/grep.el (grep-default-command): Catch errors from
1744 wildcard-to-regexp.
1745
1746 2006-07-29 Kim F. Storm <storm@cua.dk>
1747
1748 * progmodes/grep.el (grep-tag-default): New function.
1749 (grep-default-command, grep-read-regexp): Use it.
1750 (grep-read-files): Use car of grep-files-history or grep-files-aliases
1751 as default if nothing else applies.
1752
1753 2006-07-28 Bill Atkins <atkinw@rpi.edu> (tiny change)
1754
1755 * wdired.el (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
1756 Throw error if buffer is not in Dired and Wdired mode, respectively.
1757
1758 2006-07-28 Chong Yidong <cyd@stupidchicken.com>
1759
1760 * cus-edit.el (custom-no-edit): Revert 2006-07-27 change, so that
1761 self-insert-command keys don't activate buttons.
1762 (custom-mode-map): Just don't bind "\C-m" to `custom-no-edit'.
1763
1764 2006-07-29 Nick Roberts <nickrob@snap.net.nz>
1765
1766 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Use different
1767 faces for enable character.
1768
1769 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
1770
1771 * Makefile.in (recompile): Update comment to reflect change
1772 on 2004-04-21.
1773
1774 2006-07-27 Richard Stallman <rms@gnu.org>
1775
1776 * cus-edit.el (customize-package-emacs-version-alist): Doc fix.
1777 (customize-package-emacs-version): Change msg when pkg has no entry.
1778 (custom-no-edit): On a button, do like widget-button-press.
1779
1780 2006-07-27 Dan Nicolaescu <dann@ics.uci.edu>
1781
1782 * term/xterm.el (terminal-init-xterm): Fix bindings for C-tab,
1783 S-tab and C-S-tab.
1784
1785 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
1786
1787 * progmodes/which-func.el (which-function): Fix documentation/
1788 comment typo.
1789
1790 2006-07-26 Richard Stallman <rms@gnu.org>
1791
1792 * textmodes/ispell.el (ispell-word): If we replace the word,
1793 move point to the end. Insert before deleting.
1794
1795 2006-07-26 Chong Yidong <cyd@stupidchicken.com>
1796
1797 * subr.el (sit-for): Use new SECONDS arg of read-event instead of
1798 a timer.
1799
1800 2006-07-26 Mathias Dahl <mathias.dahl@gmail.com>
1801
1802 * tumme.el (tumme-backward-image): Add prefix argument. Add error
1803 when at first image.
1804 (tumme-forward-image): Add prefix argument. Add error when at last
1805 image.
1806
1807 2006-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
1808
1809 * tabify.el (tabify-regexp): Use more specific regexps.
1810 (tabify): Avoid modifying the buffer unnecessarily.
1811
1812 2006-07-25 Mathias Dahl <mathias.dahl@gmail.com>
1813
1814 * tumme.el (tumme-track-original-file): Add `buffer-live-p' check.
1815 (tumme-format-properties-string): Handle empty `buf'.
1816 (tumme-get-comment): Change variable names inside `let'.
1817 Add missing `let' variable that cause font-lock problems.
1818 (tumme-write-comments): Change variable names inside `let'.
1819 Add missing `let' variable that cause font-lock problems.
1820 (tumme-forward-image): Rename from `tumme-forward-char'.
1821 (tumme-backward-image): Rename from `tumme-backward-char'.
1822
1823 2006-07-25 Masatake YAMATO <jet@gyve.org>
1824
1825 * progmodes/ld-script.el (ld-script-keywords)
1826 (ld-script-font-lock-keywords, ld-script-builtins): Update keywords
1827 and add comments.
1828
1829 2006-07-25 Nick Roberts <nickrob@snap.net.nz>
1830
1831 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
1832 (gdb-resync, gdb-prompt, gdb-starting, gdb-exited, gdb-stopped)
1833 (gdb-set-gud-minor-mode-existing-buffers-1): Use different faces
1834 for status indicator.
1835
1836 2006-07-24 Richard Stallman <rms@gnu.org>
1837
1838 * xml.el (xml-parse-file): Clean up, and use with-temp-buffer.
1839
1840 * subr.el (dolist, dotimes): Use interned symbols for locals.
1841 (--dotimes-limit--, --dolist-tail--): New defvars.
1842 (looking-back): Doc fix.
1843
1844 * replace.el (replace-match-string-symbols): Handle dotted lists.
1845
1846 2006-07-24 mathias <mathias@mattis>
1847
1848 * tumme.el (tumme-write-tags): Add.
1849 (tumme-write-comments): Add.
1850 (tumme-tag-files): Change to use `tumme-write-tags'.
1851 (tumme-tag-thumbnail): Change to use `tumme-write-tags'.
1852 (tumme-dired-comment-files): Change to use `tumme-write-comments'.
1853 (tumme-save-information-from-widgets): Change to use
1854 `tumme-write-comments' and `tumme-write-tags'.
1855 (tumme-comment-thumbnail): Change to use `tumme-write-comments'.
1856 (tumme-write-tag): Remove.
1857 (tumme-write-comment): Remove.
1858 (tumme-display-previous-thumbnail-original): Remove empty line.
1859 (tumme-widget-list): Add punctuation.
1860
1861 2006-07-24 mathias <mathias.dahl@gmail.com>
1862
1863 * tumme.el (tumme-line-up): Add an extra check for end of buffer.
1864
1865 2006-07-24 Daiki Ueno <ueno@unixuser.org>
1866
1867 * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
1868 letters from the end. Thanks to "David Smith" <davidsmith@acm.org>
1869 and andreas@altroot.de (Andreas V\e,Av\e(Bgele).
1870
1871 2006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
1872
1873 * mouse.el (mouse-on-link-p): Doc fix.
1874
1875 2006-07-23 Nick Roberts <nickrob@snap.net.nz>
1876
1877 * emacs-lisp/find-func.el (find-function-search-for-symbol):
1878 Handle "C-h f `".
1879
1880 2006-07-22 Dan Nicolaescu <dann@ics.uci.edu>
1881
1882 * ibuffer.el (ibuffer-formats): Use left alignment for the mode
1883 column.
1884
1885 2006-07-22 Matt Hodges <MPHodges@member.fsf.org>
1886
1887 * textmodes/table.el: Add move-beginning-of-line and
1888 move-end-of-line to Point Motion Only Group.
1889
1890 2006-07-22 Eric Hanchrow <offby1@blarg.net>
1891
1892 * progmodes/delphi.el (delphi-fill-comment): Use save-restriction.
1893
1894 2006-07-22 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
1895
1896 * startup.el (user-mail-address): Initialize from the `EMAIL'
1897 environment variable first. Document this.
1898 (command-line): Ditto.
1899
1900 2006-07-22 Nick Roberts <nickrob@snap.net.nz>
1901
1902 * help-mode.el (help-function-def, help-variable-def)
1903 (help-face-def): Print a message in the minibuffer.
1904
1905 2006-07-21 Dan Nicolaescu <dann@ics.uci.edu>
1906
1907 * term/xterm.el (terminal-init-xterm): Fix key bindings
1908 syntax. Bind S-return, C-M-., C-TAB, S-TAB and C-S-TAB.
1909
1910 2006-07-21 Eli Zaretskii <eliz@gnu.org>
1911
1912 * dos-w32.el (find-buffer-file-type-coding-system): Support calls
1913 where `(nth 1 command)' is a cons cell. Doc fix.
1914
1915 * textmodes/po.el (po-find-charset): Doc fix.
1916
1917 2006-07-21 Ken Manheimer <ken.manheimer@gmail.com>
1918
1919 * allout.el (allout-unprotected, allout-e-o-prefix-p)
1920 (allout-beginning-of-current-line, allout-end-of-current-line)
1921 (allout-next-visible-heading, allout-open-topic)
1922 (allout-kill-topic, allout-yank-processing, allout-resolve-xref)
1923 (allout-flag-current-subtree, allout-show-to-offshoot)
1924 (allout-hide-current-entry, allout-show-current-branches)
1925 (allout-hide-region-body, allout-old-expose-topic)
1926 (allout-listify-exposed, allout-latex-verbatim-quote-curr-line)
1927 (allout-mark-topic, allout-adjust-file-variable): Enclose scopes
1928 containing `beginning-of-line' and `end-of-line' with
1929 `inhibit-field-text-motion' t.
1930
1931 2006-07-21 Eli Zaretskii <eliz@gnu.org>
1932
1933 * frame.el (focus-follows-mouse): Document that it doesn't have
1934 any effect on MS-Windows.
1935
1936 2006-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
1937
1938 * progmodes/sh-script.el (sh-quoted-subshell): Further fix last change.
1939
1940 2006-07-20 Jay Belanger <belanger@truman.edu>
1941
1942 * calc.el (calc-previous-alg-entry): Remove variable.
1943
1944 * calc-aent.el (calc-alg-entry-history, calc-quick-calc-history):
1945 New variables.
1946 (calc-alg-entry): Use `calc-alg-entry-history'.
1947 (calc-do-quick-calc): Use `calc-quick-calc-history'.
1948 Remove reference to `calc-previous-alg-entry'.
1949 (calcAlg-edit, calcAlg-enter): Remove reference to
1950 `calc-previous-alg-entry'.
1951 (calcAlg-previous): Use `previous-history-element' instead of
1952 `calc-previous-alg-entry'.
1953 (calc-do-alg-entry): Use history when calling `read-from-minibuffer'.
1954 Change keybinding for `calcAlg-plus-minus', add keybindings for
1955 `previous-history-element' and `next-history-element'.
1956
1957 * calc-rewr.el (calc-match): Remove reference to
1958 `calc-previous-alg-entry'.
1959
1960 * calc-sel.el (calc-selection-history): New variable.
1961 (calc-enter-selection, calc-sel-mult-both-sides)
1962 (calc-sel-add-both-sides): Use `calc-selection-history'.
1963
1964 * calc-map.el (calc-get-operator-history): New variable.
1965 (calc-get-operator): Use `calc-get-operator-history'.
1966
1967 * calcalg3.el (calc-curve-fit-history): New variable.
1968 (calc-curve-fit): Use `calc-curve-fit-history'.
1969
1970 2006-07-20 Kenichi Handa <handa@m17n.org>
1971
1972 * international/mule-cmds.el (select-safe-coding-system): Fix the
1973 way of deciding eol-type of the coding system.
1974
1975 2006-07-20 Alan Mackenzie <acm@muc.de>
1976
1977 * progmodes/cc-langs.el (c-emacs-variable-inits): New variable.
1978 (c-lang-setvar): New macro.
1979 (c-make-init-lang-vars-fun): Use the initialization forms in
1980 c-emacs-variable-inits in addition to those in c-lang-variable-inits.
1981 (comment-start, comment-end, comment-start-skip): Change these from
1982 c-lang-defvar's to c-lang-setvar's.
1983
1984 * progmodes/cc-mode.el (c-make-emacs-variables-local): New macro,
1985 which calls make-local-variable on the elements of
1986 c-emacs-variable-inits.
1987 (c-init-language-vars-for): Call this new macro.
1988
1989 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1990
1991 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
1992 Try to rule out false positives due to time stamps.
1993 (compilation-mode-font-lock-keywords): Remove rules made redundant
1994 because of the above change. Add `segmentation fault' to the known and
1995 highlighted compilation termination messages.
1996
1997 2006-07-19 Kim F. Storm <storm@cua.dk>
1998
1999 * progmodes/grep.el (grep-find-ignored-directories):
2000 Add .svn and _darcs to list.
2001
2002 2006-07-19 Mathias Dahl <mathias.dahl@gmail.com>
2003
2004 * dired.el (dired-mode-map): Add key binding `C-te' for
2005 `tumme-dired-edit-comment-and-tags'.
2006
2007 * tumme.el (tumme-display-thumbnail-original-image): Make sure
2008 image display buffer is displayed before call to
2009 `tumme-display-image.
2010 (tumme-dired-display-image): Make sure image display buffer is
2011 displayed before call to `tumme-display-image.
2012 (tumme-mouse-display-image): Make sure image display buffer is
2013 displayed before call to `tumme-display-image.
2014 (tumme-widget-list): Add.
2015 (tumme-dired-edit-comment-and-tags): Add.
2016 (tumme-save-information-from-widgets): Add.
2017
2018 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
2019
2020 * progmodes/sh-script.el (sh-quoted-subshell): Fix last change.
2021
2022 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
2023
2024 * progmodes/sh-script.el (sh-font-lock-keywords-1):
2025 Revert inadvertently installed patch hunk.
2026
2027 * progmodes/compile.el (compilation-find-file): Handle the
2028 cases where the user selects a non-existent file.
2029
2030 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
2031
2032 * bindings.el (minibuffer-local-map): Rebind TAB so it inserts a \t.
2033
2034 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
2035
2036 * subr.el (sit-for): Just sleep-for if noninteractive.
2037
2038 2006-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
2039
2040 * emacs-lisp/autoload.el (make-autoload): Use new arg.
2041
2042 * custom.el (custom-autoload): Add `noset' argument.
2043 (custom-push-theme): Don't autoload the variable, let callers do it.
2044 (custom-theme-set-variables): Autoload the variable if necessary.
2045
2046 * cus-edit.el (custom-variable-state-set): If the variable was
2047 originally set outside custom, but to the same value as the default,
2048 consider it to be standard.
2049
2050 * Makefile.in (mh-loaddefs.el): Finish setting up the default empty
2051 file *before* telling Emacs to add the autoloads, in case it fails.
2052
2053 * progmodes/sh-script.el (sh-quoted-subshell): Don't match escaped `.
2054 Use `cond', push', and `dolist'.
2055
2056 2006-07-17 Richard Stallman <rms@gnu.org>
2057
2058 * image-mode.el (tar-superior-buffer, archive-superior-buffer):
2059 Add defvars to silence warnings.
2060
2061 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
2062
2063 * progmodes/compile.el (compilation-mode-font-lock-keywords):
2064 Don't highlight "Compiling file" messages as error.
2065
2066 * dired-aux.el (dired-compress-file): Confirm again if gzipped
2067 file already exists.
2068
2069 2006-07-16 Thien-Thi Nguyen <ttn@gnu.org>
2070
2071 * find-file.el (ff-special-constructs): Doc fix. Also, for C/C++
2072 entry, don't assign to free var; simply return the extracted filename.
2073 (ff-treat-as-special): Incorporate common preamble from callers.
2074 (ff-other-file-name, ff-find-the-other-file):
2075 Update call to ff-treat-as-special.
2076
2077 * progmodes/ada-mode.el (ada-mode): Rewrite ff-special-constructs init.
2078
2079 2006-07-16 Mathias Dahl <mathias.dahl@gmail.com>
2080
2081 * tumme.el (tumme-get-comment): Fix bug.
2082
2083 2006-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
2084
2085 * files.el: Remove spurious * in docstrings.
2086
2087 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
2088
2089 * allout.el (allout-run-unit-tests-on-load): Rectify docstring
2090 grammar.
2091 (allout-beginning-of-current-line): Beware beginning of buffer.
2092 Also, a comment is simplified.
2093 (allout-hotspot-key-handler): Only set allout-post-goto-bullet
2094 when appropriate. (This fix enables use for other than
2095 bullet-hotspot operation.)
2096 (allout-hide-current-subtree): While escalating to sibling-close,
2097 make sure to situate on a topic.
2098
2099 2006-07-14 Kim F. Storm <storm@cua.dk>
2100
2101 * emulation/cua-base.el (cua-delete-selection)
2102 (cua-toggle-set-mark): New defcustoms.
2103 (cua-rectangle-modifier-key): Add `alt' modifier.
2104 (cua-replace-region): Don't delete if cua-delete-selection is nil.
2105 (cua-set-mark): Don't clear mark if cua-toggle-set-mark is nil.
2106 Suggested by Klaus Zeitler <kzeitler@lucent.com>.
2107
2108 * emulation/cua-rect.el (cua-help-for-rectangle): Add `alt' modifier.
2109
2110 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
2111
2112 * allout.el: Require 'cl during byte-compilation/interactive load,
2113 for the `assert' macro.
2114 (allout-mode-deactivate-hook): New hook, run when allout mode
2115 deactivates.
2116 (allout-developer): New allout customization subgroup.
2117 (allout-run-unit-tests-on-load): New allout-developer
2118 customization variable, when true allout unit tests are run towards
2119 end of file load/eval.
2120 (allout-inhibit-auto-fill): Disable auto-fill activity even during
2121 auto-fill-mode.
2122 (allout-resumptions): Remove, to be replaced by...
2123 (allout-add-resumptions): Register variable settings to be
2124 reinstated by `allout-do-resumptions'. The settings are made
2125 buffer-local, but the locality/globality of the suspended setting
2126 is restored on resumption.
2127 (allout-do-resumptions): Reinstate all settings suspended using
2128 `allout-add-resumptions'.
2129 (allout-test-resumptions): Unit tests (and intermediate variables)
2130 for resumptions.
2131 (allout-tests-globally-unbound, allout-tests-globally-true)
2132 (allout-tests-locally-true): Intermediate variables for
2133 resumptions unit tests.
2134 (allout-overlay-preparations): Replaces `allout-set-overlay-category'.
2135 (allout-exposure-category): Replaces 'allout-overlay-category variable.
2136 (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions'
2137 instead of retired `allout-resumptions'. For hook functions, use
2138 `local' parameter so hook settings are created and removed as
2139 buffer-local settings. Revise (resumptions) setting
2140 auto-fill-function so it is set only if already active. (The
2141 related fill-function settings are all made in either case, so
2142 that activating auto-fill-mode activity will have the custom
2143 allout-mode behaviors (hanging indent on topics, if configured for it).
2144 Remove all allout-exposure-category overlays on mode deactivation.
2145 (allout-hotspot-key-handler): New function extracted from
2146 `allout-pre-command-business', so the functionality can be used
2147 for other purposes, eg as a binding in an overlay.
2148 (allout-pre-command-business): Use new `allout-hotspot-key-handler'.
2149 (allout-auto-fill): Respect new `allout-inhibit-auto-fill'
2150 customization variable.
2151 (allout-run-unit-tests): Run the (currently quite small)
2152 repertoire of unit tests. Called just before the provide iff user
2153 has customized `allout-run-unit-tests-on-load' non-nil.
2154
2155 2006-07-14 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
2156
2157 * emacs-lisp/authors.el (authors-aliases): Update.
2158
2159 2006-07-14 Nick Roberts <nickrob@snap.net.nz>
2160
2161 * progmodes/gdb-ui.el (gdb-display-buffer): Check for
2162 gdb-source-window. Add dedicated argument.
2163 (gdb-display-separate-io-buffer, gdb-append-to-inferior-io)
2164 (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
2165 (gdb-display-threads-buffer, gdb-display-memory-buffer)
2166 (gdb-display-locals-buffer): Use it.
2167
2168 * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
2169 Set gdb-source-window.
2170
2171 2006-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
2172
2173 * emacs-lisp/autoload.el (make-autoload): Remove special handling of
2174 minor modes, redundant with the custom-autoload line above.
2175
2176 2006-07-12 Chong Yidong <cyd@stupidchicken.com>
2177
2178 * longlines.el (longlines-post-command-function): Handle open-line too.
2179
2180 2006-07-12 Richard Stallman <rms@gnu.org>
2181
2182 * progmodes/grep.el (grep-last-buffer): Doc fix.
2183
2184 * info.el (Info-try-follow-nearest-node): Doc fix.
2185
2186 * emacs-lisp/edebug.el (edebug-instrument-function):
2187 Err if find-function-noselect gives no position.
2188
2189 * emacs-lisp/find-func.el (find-function-search-for-symbol):
2190 If can't find definition, return nil for position.
2191 (find-function-do-it): Handle new return value
2192 of find-definition-noselect.
2193 (find-definition-noselect, find-variable-noselect): Doc fix.
2194 (find-function-noselect): Doc fix.
2195
2196 * help-mode.el (help-variable-def): Handle find-variable-noselect
2197 returning no position.
2198 (help-function-def): Likewise for find-function-search-for-symbol.
2199 (help-face-def): Likewise.
2200
2201 * help-fns.el (describe-variable): Handle find-variable-noselect
2202 returning no position.
2203
2204 * files.el (locate-file-completion): Avoid duplicates in result.
2205
2206 * cus-edit.el (custom-no-edit): New command.
2207 (custom-mode-map): Remap to custom-no-edit instead of
2208 using suppress-keymap.
2209
2210 2006-07-12 Nick Roberts <nickrob@snap.net.nz>
2211
2212 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
2213 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
2214 (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
2215
2216 * thumbs.el (thumbs-call-convert): Use shell-command-switch.
2217
2218 2006-07-11 Kim F. Storm <storm@cua.dk>
2219
2220 * ido.el (ido-copy-current-file-name): Use buffer-name if
2221 buffer-file-name is nil.
2222
2223 2006-07-11 Chong Yidong <cyd@stupidchicken.com>
2224
2225 * simple.el (undo-ask-before-discard): Set to nil.
2226
2227 * vc.el (vc-exec-after): Don't delete process manually.
2228 (vc-print-log): Run log-view-mode in process sentinel inside
2229 inhibit-read-only. Don't shrink window due to timing issues.
2230
2231 * progmodes/ebrowse.el (ebrowse-display-member-buffer):
2232 Avoid using with-output-to-temp-buffer, which clobbers local vars.
2233
2234 2006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
2235
2236 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2237 Fix ambiguity introduced by last change.
2238 (compilation-find-file): Move save-excursion to where it may
2239 make sense. Fix a left over `find-file'.
2240
2241 2006-07-11 Robert J. Chassell <bob@rattlesnake.com>
2242
2243 * textmodes/texinfmt.el (texinfo-format-separate-node):
2244 Insert a string before point, which fits documentation, not after.
2245 (texinfo-multitable-item): In a multitable row, insert any
2246 additional needed @tabs and spaces.
2247
2248 2006-07-11 Nick Roberts <nickrob@snap.net.nz>
2249
2250 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
2251 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
2252 (tumme-set-exif-data, tumme-get-exif-data): Use call-process
2253 instead of shell-command.
2254 (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
2255 (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
2256 (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
2257 (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
2258 (tumme-thumbnail-set-image-description, tumme-gallery-generate)
2259 (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
2260
2261 2006-07-11 Kim F. Storm <storm@cua.dk>
2262
2263 * subr.el (sit-for): Doc fix. Specify normal arg list using fn-form.
2264 Remove special case for seconds < 0. Use (redisplay t) instead.
2265
2266 2006-07-10 Chong Yidong <cyd@stupidchicken.com>
2267
2268 * progmodes/cc-awk.el (c-awk-escaped-nls*): Use eval-and-compile to
2269 avoid compilation error.
2270
2271 * subr.el (sit-for): New function.
2272
2273 * play/hanoi.el (hanoi-sit-for): Check sit-for return value.
2274
2275 2006-07-10 Richard Stallman <rms@gnu.org>
2276
2277 * ldefs-boot.el (edebug): Update page.
2278
2279 2006-07-10 Kim F. Storm <storm@cua.dk>
2280
2281 * emacs-lisp/authors.el (authors-ignored-files): Ignore changes
2282 to FOR-RELEASE and TODO.
2283
2284 2006-07-10 Romain Francoise <romain@orebokech.com>
2285
2286 * emacs-lisp/authors.el (authors-aliases): Update.
2287
2288 2006-07-10 Alan Mackenzie <acm@muc.de>
2289
2290 * progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el:
2291 * cc-mode.el: Changes to eradicate eval-after-load.
2292
2293 2006-07-09 Chong Yidong <cyd@stupidchicken.com>
2294
2295 * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
2296 on non-char events.
2297
2298 2006-07-09 Romain Francoise <romain@orebokech.com>
2299
2300 * progmodes/compile.el (compilation-mode-font-lock-keywords):
2301 Don't highlight start/end markers as compilation messages.
2302
2303 * isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
2304 to t.
2305
2306 2006-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
2307
2308 * textmodes/fill.el (fill-region-as-paragraph): Refine last change.
2309
2310 2006-07-08 Richard Stallman <rms@gnu.org>
2311
2312 * term/x-win.el (x-handle-display): Add doc string.
2313
2314 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
2315
2316 * subr.el (def-edebug-spec): Move here.
2317 * emacs-lisp/edebug.el (def-edebug-spec): Move to subr.el.
2318
2319 * imenu.el (imenu-choose-buffer-index): Doc fix.
2320
2321 2006-07-08 Romain Francoise <romain@orebokech.com>
2322
2323 * term/x-win.el (x-display-name): Fix typo.
2324
2325 2006-07-08 Eli Zaretskii <eliz@gnu.org>
2326
2327 * hexl.el (hexl-find-file): Doc fix.
2328
2329 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
2330
2331 2006-07-07 Chong Yidong <cyd@stupidchicken.com>
2332
2333 * term/x-win.el (x-display-name): Doc fix.
2334
2335 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
2336
2337 * textmodes/fill.el (fill-delete-prefix): Don't ignore excessively
2338 long prefixes.
2339 (fill-region-as-paragraph): Don't round up to a whole line.
2340 (fill-comment-paragraph): Don't include the code-before-the-comment
2341 when calling fill-region-as-paragraph.
2342
2343 * international/mule.el (make-char): Remove redundancy.
2344
2345 * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile'
2346 property may contain an anonymous function rather than a symbol.
2347
2348 * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
2349
2350 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
2351 Use shy regexp. Fix incorrect backref to potentially unmatched group.
2352
2353 * dirtrack.el (dirtrack-default-directory-function): Remove.
2354 (dirtrack-directory-function): Use file-name-as-directory.
2355 (dirtrack-windows-directory-function): Simplify.
2356 (dirtrack-forward-slash, dirtrack-backward-slash)
2357 (dirtrack-replace-slash): Remove.
2358 (dirtrack-toggle): Adjust comint-preoutput-filter-functions as well.
2359 (dirtrack): Fix wrong parenthesizing; use match-string.
2360
2361 * progmodes/octave-inf.el: Remove spurious * in docstrings.
2362 (inferior-octave-mode): Only change the buffer-local value of
2363 comint-dynamic-complete-functions.
2364 (inferior-octave-mode-map, inferior-octave-mode-syntax-table):
2365 Move the initialization to the declaration.
2366 (inferior-octave-complete): Remove unused var `filter'.
2367
2368 * shell.el (shell-mode): Only change the buffer-local value of
2369 comint-dynamic-complete-functions.
2370
2371 2006-07-07 Carsten Dominik <dominik@science.uva.nl>
2372
2373 * textmodes/org.el (org-agenda-get-todos): Skip subtree also if
2374 entry is skipped because it has been scheduled.
2375 (org-prepare-agenda-buffers): Don't mark buffers as modified when
2376 changing `:org-archived' and `:org-comment' properties.
2377
2378 2006-07-06 Chong Yidong <cyd@stupidchicken.com>
2379
2380 * server.el (server-select-display): Don't make the temp frame
2381 minibuffer-only, in case it's not a temp frame.
2382 (server-process-filter): Don't delete the temp frame if it's the
2383 only one we have on that display.
2384
2385 * files.el (find-alternate-file): Doc fix.
2386
2387 2006-07-05 Richard Stallman <rms@gnu.org>
2388
2389 * files.el (abbreviate-file-name): Add save-match-data.
2390
2391 2006-07-03 Richard Stallman <rms@gnu.org>
2392
2393 * faces.el (read-face-name): Doc fix.
2394
2395 2006-07-05 Chong Yidong <cyd@stupidchicken.com>
2396
2397 * net/goto-addr.el (goto-address): Mark as safe for local evals.
2398
2399 2006-07-05 Andre Spiegel <spiegel@gnu.org>
2400
2401 * vc.el (vc-diff-internal): Fix prev change.
2402
2403 2006-07-05 Thien-Thi Nguyen <ttn@gnu.org>
2404
2405 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
2406 * play/dunnet.el (dun-load-d, dun-eval): Likewise.
2407
2408 2006-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
2409
2410 * thingatpt.el (symbol-at-point): Don't use `form-at-point' which
2411 fails if the symbol contains chars like ( or '.
2412 (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
2413 (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
2414 `short'.
2415
2416 2006-07-04 Kenichi Handa <handa@m17n.org>
2417
2418 * international/mule-cmds.el (set-language-info): If LANG-ENV is
2419 the current one, don't call set-language-environment, but call one
2420 of set-language-environment-XXX to make INFO effective now.
2421 (set-language-environment): Call set-language-environment-XXX
2422 functions instead of doing the various setups directly.
2423 (set-language-environment-coding-systems): Delete argument eol-type.
2424 (set-language-environment-input-method)
2425 (set-language-environment-nonascii-translation)
2426 (set-language-environment-charset)
2427 (set-language-environment-fontset)
2428 (set-language-environment-unibyte): New functions.
2429
2430 2006-07-03 Luc Teirlinck <teirllm@auburn.edu>
2431
2432 * locate.el (locate-update-when-revert): New option.
2433 (locate-update-path): New option (suggested by Michael Albinus).
2434 (locate-prompt-for-command): Whitespace change.
2435 (locate-update): No longer offer to update the locate database by
2436 default. Implement the two new options.
2437
2438 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
2439
2440 * tooltip.el: Move comment about track-mouse...
2441
2442 * progmodes/gud.el: ...to here.
2443
2444 2006-07-03 Chong Yidong <cyd@stupidchicken.com>
2445
2446 * facemenu.el (facemenu-listed-faces): New var.
2447 (facemenu-unlisted-faces): Variable deleted.
2448 (facemenu-add-new-face): Use facemenu-listed-faces.
2449
2450 * emulation/viper-init.el, calendar/calendar.el:
2451 * progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.
2452
2453 2006-07-03 Carsten Dominik <dominik@science.uva.nl>
2454
2455 * textmodes/org.el (org-mode): Remove no invalid settings for
2456 calc embedded mode.
2457 (org-mode-p): New defsubst.
2458 (org-save-all-org-buffers): New function.
2459 (org-first-headline-recenter): Enclose outline-regexp in group
2460 delimiters.
2461 (org-set-tags): Keep single space after stars.
2462
2463 2006-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
2464
2465 * window.el (set-window-text-height): Only set window-min-height to
2466 1 if that's the requested size.
2467
2468 * diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
2469 (diff-unified->context, diff-context->unified)
2470 (diff-reverse-direction): Make sure the end marker stays at the end.
2471 (diff-mode): Add the keymap table at the end of docstring.
2472 Use lexical-let rather than constructing a closure manually.
2473
2474 * files.el (find-file-noselect-1): Remove unused var assignment.
2475 (hack-local-variables-confirm): Print lists of strings as lists of
2476 strings rather than lists of symbols.
2477 (abbreviate-file-name, hack-local-variables-prop-line):
2478 Use match-string.
2479 (hack-one-local-variable): Move `make-local-variable' nearer its use.
2480 (recover-session-finish): Use line-end-position.
2481
2482 2006-07-02 Michael Albinus <michael.albinus@gmx.de>
2483
2484 * net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.
2485
2486 2006-07-02 Daniel Pfeiffer <occitan@esperanto.org>
2487
2488 * progmodes/make-mode.el (makefile-macroassign-regex):
2489 Accept preceding keyword.
2490 (makefile-gmake-statements): Reorganize, now that makepp has
2491 "override" and also handle forgotten "override define".
2492 (makefile-makepp-statements): Add new "global", "override export"
2493 and "override global".
2494
2495 2006-06-30 Juanma Barranquero <lekktu@gmail.com>
2496
2497 * progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
2498 (ada-compile-mouse-goto-error, ada-deactivate-properties)
2499 (ada-no-auto-case): Fix typos in docstrings.
2500
2501 2006-06-30 Nick Roberts <nickrob@snap.net.nz>
2502
2503 * info.el (Info-find-node-2): Search for makeinfo version more
2504 carefully.
2505
2506 2006-06-29 Carsten Dominik <dominik@science.uva.nl>
2507
2508 * textmodes/org.el (org-prepare-agenda-buffers):
2509 Use `invisible-OK' argument for `org-end-of-subtree'.
2510 (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
2511 (org-beginning-of-item): Fix bug in regular expression for white line.
2512 (org-export-as-html): Enforce space after bullet in plain list items.
2513 (org-set-autofill-regexps): Require space after plain list bullet
2514 for paragraph-start.
2515 (org-ts-regexp3): New constant.
2516 (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
2517 (org-timestamp-up-day, org-timestamp-down-day)
2518 (org-timestamp-change): Work with inactive timestamps.
2519 (org-ts-regexp1): Don't allow brackets in time stamps.
2520
2521 2006-06-29 Nick Roberts <nickrob@snap.net.nz>
2522
2523 * help-mode.el (help-xref-symbol-regexp): Add property as a keyword
2524 for ignoring links.
2525
2526 * faces.el (read-face-name): Use it.
2527
2528 2006-06-28 Juri Linkov <juri@jurta.org>
2529
2530 * buff-menu.el (list-buffers-noselect): Compare Info file
2531 with the string "dir" to detect Info directory.
2532
2533 * complete.el (partial-completion-mode): In lambda for
2534 `choose-completion-string-functions' use full function signature
2535 with 4 args, and move point to the end of the minibuffer only if arg
2536 `mini-p' is non-nil.
2537
2538 2006-06-28 John Paul Wallington <jpw@pobox.com>
2539
2540 * ibuffer.el (ibuffer-mode): Doc fix.
2541
2542 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
2543
2544 * textmodes/org.el (org-context): New contexts :item-bullet,
2545 :latex-fragment, :latex-preview.
2546 (org-overlays-at, org-overlay-start, org-overlay-end):
2547 New compatibility functions.
2548 (org-inside-LaTeX-fragment-p): More accurate matching, using the
2549 exact regexp that will be used during export.
2550 (org-latex-regexps): New variable.
2551 (org-cdlatex-mode): Improve advice for `texmathp'.
2552 (turn-on-org-cdlatex): New function.
2553
2554 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2555
2556 * term/mac-win.el (mac-handle-font-selection): Change keys of
2557 mac-atsu-font-table from strings to numbers.
2558 (mac-ts-caret-position): Use also when cursor-type is nil.
2559 (mac-ts-update-active-input-area): Add Mac OS Classic support.
2560 Relax condition for using overlay strings.
2561 Use mac-ts-caret-position face when cursor-type is nil.
2562
2563 2006-06-26 Kim F. Storm <storm@cua.dk>
2564
2565 * help.el (view-emacs-news): Declare `res' in the right let* form.
2566
2567 2006-06-25 Michael Albinus <michael.albinus@gmx.de>
2568
2569 * net/rcompile.el (remote-compile): Replace ange-ftp based
2570 implementation by Tramp functions.
2571 Suggested by Marc Abramowitz <msabramo@gmail.com>.
2572
2573 * net/tramp.el (tramp-unload-tramp): Provide a doc string.
2574
2575 2006-06-24 Yoshinori Koseki <kose@meadowy.org>
2576
2577 * international/fontset.el (setup-default-fontset): Fix a typo in
2578 the "Oriya-Akruti" registry name.
2579
2580 2006-06-23 Lars Hansen <larsh@soem.dk>
2581
2582 * desktop.el (desktop-full-file-name): New function.
2583 (desktop-kill, desktop-save, desktop-remove, desktop-read)
2584 (desktop-revert): Use it.
2585 (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
2586 (desktop-after-read-hook): Add option list-buffers.
2587 (desktop-locals-to-save): Add tab-width.
2588 (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
2589 Fix docstring.
2590
2591 2006-06-23 Carsten Dominik <dominik@science.uva.nl>
2592
2593 * textmodes/org.el (org-cdlatex-mode-map)
2594 (org-cdlatex-texmathp-advice-is-done): New variables.
2595 (org-cdlatex-mode): New minor mode.
2596 (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
2597 (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
2598 (org-export-with-archived-trees): New option.
2599 (org-open-file): Remove the call to `convert-standard-filename'.
2600 (org-archive-tag, org-agenda-skip-archived-trees)
2601 (org-cycle-open-archived-trees)
2602 (org-sparse-tree-open-archived-trees): New options.
2603 (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
2604 (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
2605 New functions.
2606 (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
2607 (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
2608 (org-mode-map): Add binding for `org-toggle-archive-tag'.
2609 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
2610 Call `org-prepare-agenda-buffers'.
2611 (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
2612 (org-file-apps, org-file-apps-defaults-gnu)
2613 (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
2614 Handle remote files by forcing them to be opened in Emacs.
2615
2616 2006-06-23 Andre Spiegel <spiegel@gnu.org>
2617
2618 * vc.el (vc-diff-knows-L): New variable.
2619 (vc-diff-internal): Use it to handle "diff" programs that don't
2620 understand -L. This works automatically, no user action is necessary.
2621
2622 2006-06-23 Daniel Brockman <daniel@brockman.se>
2623
2624 * net/rcirc.el (rcirc-default-user-full-name): Default to
2625 `rcirc-default-user-name' instead of `rcirc-user-name' (which no
2626 longer exists).
2627 (rcirc-process-list): Check `buffer-live-p' before attempting to
2628 switch to a buffer.
2629
2630 2006-06-23 Ryan Yeske <rcyeske@gmail.com>
2631
2632 * net/rcirc.el (rcirc-mode): Fix initialization of coding systems
2633 based on rcirc-coding-system-alist.
2634
2635 2006-06-23 Martin Rudalics <rudalics@gmx.at>
2636
2637 * cus-edit.el (customize-apropos): A better error message.
2638 (top level) <debug-ignored-errors>: Extend and update the list of
2639 ignored error messages.
2640
2641 2006-06-23 Michael Ernst <mernst@alum.mit.edu>
2642
2643 * complete.el (PC-do-completion): Retain capitalization of user
2644 input, when possible, even if completion-ignore-case is set.
2645
2646 2006-06-23 Eli Zaretskii <eliz@gnu.org>
2647
2648 * generic-x.el (bat-generic-mode): Support .cmd files.
2649
2650 * dos-w32.el (top level): Use find-file-not-found-functions
2651 instead of the obsolete find-file-not-found-hooks.
2652
2653 2006-06-22 Kim F. Storm <storm@cua.dk>
2654
2655 * progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
2656 to recognize mode name containing submodes, such as Grep/lw.
2657
2658 2006-06-21 Kim F. Storm <storm@cua.dk>
2659
2660 * simple.el (line-move-1): Check for move-end-of-line instead of
2661 end-of-line when setting temporary-goal-column.
2662
2663 2006-06-21 Miles Bader <miles@gnu.org>
2664
2665 * play/cookie1.el (cookie): Work properly when there's only one entry.
2666
2667 2006-06-21 Nick Roberts <nickrob@snap.net.nz>
2668
2669 * progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
2670 (gdb-frame-handler): Generalize frame regexp for templates.
2671
2672 2006-06-20 Glenn Morris <rgm@gnu.org>
2673
2674 * calendar/appt.el (appt-display-format): Default value must be
2675 one of the customize options.
2676
2677 2006-06-20 Dan Nicolaescu <dann@ics.uci.edu>
2678
2679 * term/xterm.el (terminal-init-xterm): Update key availability info.
2680 Bind C-return.
2681
2682 * term.el (term-delete-lines, term-insert-lines): Clarify comments.
2683
2684 2006-06-20 Chong Yidong <cyd@stupidchicken.com>
2685
2686 * files.el (hack-local-variables): Run `hack-local-variables-hook'
2687 whether or not a local variables list is defined.
2688
2689 * msb.el (msb): Move `sit-for' hack here to handle both
2690 "mouse-down and drag" and "mouse-up and select" situations.
2691 (mouse-select-buffer): Move `sit-for' hack to `msb'.
2692
2693 2006-06-20 Kenichi Handa <handa@m17n.org>
2694
2695 * international/characters.el (word-combining-categories):
2696 Add entries for 2-byte Han characters.
2697
2698 2006-06-19 Richard Stallman <rms@gnu.org>
2699
2700 * bindings.el (mode-line-format): Save some mode line space.
2701
2702 * files.el (find-file-noselect): Improve the question wording.
2703 (basic-save-buffer-2): Mask UMASK against 666.
2704
2705 * mouse.el (mouse-drag-vertical-line-rightward-window): New function.
2706 (mouse-drag-vertical-line): Call it.
2707
2708 * cus-edit.el (customize-option, customize-option-other-window):
2709 Error if SYMBOL is nil.
2710
2711 2006-06-19 Carsten Dominik <dominik@science.uva.nl>
2712
2713 * textmodes/org.el: Require noutline, also on XEmacs.
2714 (org-end-of-subtree): Return point.
2715 (org-dblock-start-re, org-dblock-end-re): New constants.
2716 (org-create-dblock, org-prepare-dblock, org-map-dblocks)
2717 (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
2718 (org-update-all-dblocks, org-find-dblock): New functions.
2719 (org-collect-clock-time-entries): New function.
2720 (org-html-handle-time-stamps): Never export CLOCK timeranges.
2721 (org-fixup-indentation): Modify to deal correctly with lines
2722 starting with TAB. Only one argument DIFF now.
2723 (org-demote, org-promote): Call `org-fixup-indentation' with just
2724 one argument, DIFF.
2725 (org-mode): Don't mark buffer as modified when aligning tables.
2726 (org-clock-sum): Don't mark buffer modified when adding time sum
2727 properties.
2728 (org-export-as-html): Add support for a link validation function.
2729 (org-archive-all-done): New function.
2730 (org-archive-subtree): New prefix argument. When set, archive all
2731 done subtrees in this buffer.
2732 (org-remove-clock-overlays)
2733 (org-remove-occur-highlights): Use `org-inhibit-highlight-removal'.
2734 (org-inhibit-highlight-removal): New variable, for dynamic scoping.
2735 (org-put-clock-overlay): Don't swallow last headline character
2736 when displaying overlay.
2737 (org-store-link): Link to `image-mode' with just the file name.
2738
2739 2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
2740
2741 * viper-cmd.el (viper-special-read-and-insert-char):
2742 Use read-key-sequence.
2743 (viper-after-change-undo-hook): Misc enhancements.
2744 (viper-after-change-undo-hook): New hook.
2745 (viper-undo): Use viper-after-change-undo-hook.
2746 (viper-add-newline-at-eob-if-necessary): Widen before making changes.
2747 (viper-next-line-at-bol): If point is on a widget or a button, simulate
2748 clicking on that widget/button.
2749
2750 * viper.el (viper-mode): Allow a separate cursor color in Emacs state.
2751
2752 * ediff-diff (ediff-test-patch-utility): Catch errors.
2753 (ediff-actual-diff-options, ediff-actual-diff3-options): New variables.
2754 (ediff-set-actual-diff-options): New function.
2755 (ediff-reset-diff-options, ediff-toggle-ignore-case):
2756 Use ediff-set-actual-diff-options.
2757 (ediff-extract-diffs): Catch errors.
2758 (ediff-whitespace): Add non-breakable space.
2759 (ediff-same-file-contents): Catch errors.
2760
2761 * ediff-mult.el (ediff-collect-custom-diffs):
2762 Save coding-system-for-read.
2763
2764 * ediff-vers.el (ediff-keep-tmp-versions): New variable.
2765 (ediff-vc-internal, ediff-vc-merge-internal):
2766 Use ediff-delete-version-file.
2767 (ediff-delete-version-file): New function.
2768
2769 * ediff-wind.el (ediff-control-frame-parameters): Set frame fringes.
2770
2771 * ediff.el (ediff-directories, ediff-directory-revisions)
2772 (ediff-merge-directories, ediff-merge-directories-with-ancestor)
2773 (ediff-directories-internal, ediff-merge-directory-revisions)
2774 (ediff-merge-directory-revisions-with-ancestor)
2775 (ediff-directories3): Use read-directory-name.
2776
2777 2006-06-18 Ralf Angeli <angeli@caeruleus.net>
2778
2779 * textmodes/tex-mode.el (tex-font-lock-match-suscript):
2780 Remove superfluous part of regexp for brace matching which is handled
2781 by `scan-lists' call.
2782
2783 2006-06-16 Richard Stallman <rms@gnu.org>
2784
2785 * obsolete/options.el (list-options): Put "obsolete" msg in buffer.
2786
2787 * files.el (basic-save-buffer-2): For a new precious file,
2788 use the default modes in the return value.
2789
2790 * facemenu.el (facemenu-color-alist): Doc fix.
2791
2792 * cus-edit.el (custom-guess-name-alist): Recognize `-flag'.
2793
2794 2006-06-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2795
2796 * cus-start.el (all): Add mac-ts-script-language-on-focus.
2797
2798 * term/mac-win.el (mac-text-encoding-ascii): New constant.
2799 (mac-utxt-to-string): Use it.
2800 (mac-ts-update-active-input-area): Use mac-ae-number.
2801
2802 2006-06-15 Dan Nicolaescu <dann@ics.uci.edu>
2803
2804 * term.el (term-handle-scroll, term-delete-lines)
2805 (term-insert-lines): Fix off by one errors.
2806
2807 2006-06-15 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
2808
2809 * net/tramp.el (tramp-touch): Use UTC to express time.
2810
2811 2006-06-15 Chong Yidong <cyd@stupidchicken.com>
2812
2813 * mail/sendmail.el (mail-send): Search explicitly for
2814 mail-header-separator when checking for corrupted header lines.
2815
2816 2006-06-15 Nick Roberts <nickrob@snap.net.nz>
2817
2818 * progmodes/gdb-ui.el (gdb-same-frame): New option.
2819 (gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
2820 (gdb-init-1): Initialise them.
2821 (gdb-starting): Reset gdb-printing
2822 (gdb-starting): Save value of gud-overlay-arrow-position.
2823 (gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
2824 (gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
2825 Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
2826 (gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
2827
2828 2006-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
2829
2830 * pcvs.el (cvs-retrieve-revision): Use decode-coding-inserted-region.
2831
2832 2006-06-13 Martin J. Reed <mjreed@essex.ac.uk> (tiny change)
2833
2834 * net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
2835 (ldap-search-internal): Keep error messages, and a regexp fix.
2836
2837 2006-06-12 Thien-Thi Nguyen <ttn@gnu.org>
2838
2839 * files.el (hack-local-variables-confirm):
2840 Display string value using its printed representation.
2841
2842 2006-06-11 Chong Yidong <cyd@stupidchicken.com>
2843
2844 * server.el (server-edit): No-op if no server buffers exist.
2845
2846 2006-06-11 Robert J. Chassell <bob@rattlesnake.com>
2847
2848 * textmodes/page-ext.el (pages-directory-for-addresses):
2849 Including `pages-directory-address-mode' in the function results
2850 in the message "Buffer in which pages were found is deleted".
2851
2852 2006-06-10 Carsten Dominik <dominik@science.uva.nl>
2853
2854 * textmodes/org.el (org-agenda-mode-map): Add bindings for
2855 clocking functions.
2856
2857 (org-agenda-clock-in, org-check-running-clock)
2858 (org-clock-out-if-current, org-remove-clock-overlays)
2859 (org-put-clock-overlay): New functions.
2860 (org-clock-marker, org-clock-file-total-minutes)
2861 (org-clock-overlays): New variables.
2862 (org-clock-display, org-clock-sum, org-clock-cancel)
2863 (org-clock-out, org-clock-in): New commands.
2864 (org-export): New function.
2865 (org-emph-re): New constant.
2866 (org-set-emph-re, org-do-emphasis-faces): New functions.
2867 (org-emphasis-regexp-components, org-emphasis-alist): New options.
2868 (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
2869 (org-export-html-convert-emphasize): Use the configurable emphasis.
2870 (org-cleaned-string-for-export): Make multiline emphasis visible
2871 to the exporter. New optional argument PARAMETERS.
2872 (org-export-as-html): Specify :emph-multiline parameter to
2873 `org-cleaned-string-for-export'.
2874
2875 2006-06-10 Richard Stallman <rms@gnu.org>
2876
2877 * help.el (help-for-help-internal): Clean up help text.
2878
2879 2006-06-10 Andreas Schwab <schwab@suse.de>
2880
2881 * language/ethio-util.el (ethio-fidel-to-java-buffer): Fix quoting
2882 in doc string.
2883
2884 * progmodes/cperl-mode.el (cperl-short-docs): Likewise.
2885
2886 2006-06-09 Karl Chen <quarl@cs.berkeley.edu>
2887
2888 * progmodes/make-mode.el (makefile-fill-paragraph): Don't remove
2889 spaces after the comment start.
2890
2891 2006-06-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
2892
2893 * play/pong.el (pong-init-buffer):
2894 Fill buffer with spaces instead of ^A.
2895
2896 * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
2897 launched asynchronously, delete its process instead of being cool.
2898 (ispell-async-processp): Check for `delete-process' existence
2899 instead of `kill-process' one for consistency.
2900
2901 2006-06-09 Nick Roberts <nickrob@snap.net.nz>
2902
2903 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers-1)
2904 (gdb-prompt, gdb-set-gud-minor-mode-existing-buffers): Show status
2905 in mode line at startup.
2906
2907 2006-06-08 Kim F. Storm <storm@cua.dk>
2908
2909 * ido.el (ido-take-first-match, ido-push-dir-first): New commands.
2910 (ido-init-completion-maps): Bind them to M-SPC and M-v.
2911 (ido-copy-current-file-name): Repeating C-w inserts whole file name.
2912 (ido-file-internal): Pass full file name to write-file.
2913 (ido-read-internal): Only pop stack elements automatically if they
2914 actually match an existing directory or file name.
2915
2916 2006-06-07 Kenichi Handa <handa@m17n.org>
2917
2918 * international/mule.el (find-auto-coding): Don't handle the short
2919 name `char-trans'.
2920
2921 * files.el (hack-local-variables-prop-line)
2922 (hack-local-variables): Cancel the previous change.
2923
2924 2006-06-06 Jesper Harder <harder@phys.au.dk>
2925
2926 * ediff-diff.el (ediff-test-utility): Protect against file-error.
2927
2928 2006-06-06 Chong Yidong <cyd@stupidchicken.com>
2929
2930 * diff-mode.el (diff-mode): Set buffer-read-only to t when
2931 diff-default-read-only is non-nil.
2932 (diff-hunk-kill, diff-file-kill, diff-split-hunk)
2933 (diff-refine-hunk): Set inhibit-read-only to t.
2934
2935 * diff.el (diff-sentinel, diff): Set inhibit-read-only to t when
2936 modifying the *Diff* buffer.
2937 (diff-process-filter): New filter function for diff process that
2938 sets inhibit-read-only to t when modifying the *Diff* buffer.
2939
2940 2006-06-06 Carsten Dominik <dominik@science.uva.nl>
2941
2942 * textmodes/org.el (org-archive-subtree): Use end-of-subtree as
2943 insertion point and control the number of empty lines.
2944 (org-paste-subtree): Limit the number of empty lines at the end of
2945 the inserted tree.
2946 (org-agenda): Use buffer name of current file for narrowing.
2947 (org-export-as-xml): Command removed.
2948 (org-export-xml-type): Option removed.
2949 (org-mode-map): Call `org-export-as-xoxo' directly.
2950 (org-get-indentation): New optional argument LINE.
2951 (org-fix-indentation, org-remove-tabs): New functions.
2952 (org-export-as-ascii, org-ascii-level-start): Determine and apply
2953 correct indentation for headlines that are converted it items.
2954 (org-skip-comments): Remove table lines that contain narrowing
2955 cookies but no other non-empty fields.
2956 (org-set-tags): Allow groups of mutually exclusive tags.
2957 (org-cmp-time): Sort 24:21 before items without time.
2958 (org-get-time-of-day): Fix the interpretation of 12pm and 12am.
2959 (org-open-at-point): Require double colon also for numbers.
2960
2961 2006-06-06 Kim F. Storm <storm@cua.dk>
2962
2963 * ido.el (ido-default-file-method, ido-default-buffer-method):
2964 Make choice values consistent with corresponding command names.
2965 (ido-visit-buffer): Update accordingly. Default to selected-window.
2966
2967 2006-06-06 Nick Roberts <nickrob@snap.net.nz>
2968
2969 * progmodes/gud.el (gud-running): Fix doc string.
2970 (gud-menu-map): Use :visible instead fo :enable for debugger test.
2971 (gud-tooltip-modes): Add python-mode.
2972 (gud-tooltip-print-command): Add pdb. Remove perldb.
2973
2974 2006-06-05 Eli Zaretskii <eliz@gnu.org>
2975
2976 * makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el):
2977 Quote $(EMACS).
2978
2979 2006-06-05 Richard Stallman <rms@gnu.org>
2980
2981 * faces.el (defined-colors): Doc fix.
2982
2983 2006-06-05 Thien-Thi Nguyen <ttn@gnu.org>
2984
2985 * vc.el (vc-process-filter): Inhibit undo info collection around
2986 call to insert.
2987 (vc-setup-buffer): Likewise for call to erase-buffer.
2988 (vc-do-command): Likewise for call to process-file.
2989
2990 2006-06-05 Nick Roberts <nickrob@snap.net.nz>
2991
2992 * progmodes/gud.el (gud-menu-map): Use a conditional help echo
2993 for gud-go.
2994 (gud-common-init): Other debuggers may trigger error.
2995
2996 2006-06-05 Kenichi Handa <handa@m17n.org>
2997
2998 * international/mule.el (find-auto-coding):
2999 Handle enable-character-translation in file header.
3000
3001 2006-06-04 Kim F. Storm <storm@cua.dk>
3002
3003 * emacs-lisp/authors.el (authors-aliases): Add mode aliases.
3004 (authors-fixed-entries): Fix spelling.
3005 (authors-canonical-file-name): Don't report error for wildcards.
3006
3007 * help.el (view-emacs-news): Rewrite to support new NEWS,
3008 NEWS.major, and NEWS.1-17 file naming. Add more intelligence,
3009 e.g. version 10 matches 1.10, and don't be confused by version 1.1
3010 being a prefix of 1.12 (etc). A numeric prefix arg also works.
3011
3012 2006-06-03 Vivek Dasmohapatra <vivek@etla.org>
3013
3014 * progmodes/sh-script.el (sh-quoted-exec): New face for quoted
3015 exec constructs like `foo bar`.
3016 (sh-quoted-subshell): New helper function to search for a possibly
3017 nested subshell (like `` or $()) within a "" quoted string.
3018 (sh-font-lock-keywords-var): Add sh-quoted-exec for Bash.
3019 (sh-apply-quoted-subshell): Flag quote characters inside a
3020 subshell, which is itself already in a quoted region, as
3021 punctuation, since this is the closest to what they actually are.
3022 (sh-font-lock-syntactic-keywords): Add sh-quoted-subshell and
3023 sh-apply-quoted-subshell.
3024 (sh-font-lock-syntactic-face-function): Apply the new face for
3025 text inside `` instead of the old font-lock-string-face.
3026
3027 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3028
3029 * term/mac-win.el (mac-ts-active-input-overlay): Add defvar.
3030 (mac-ae-number, mac-ae-frame, mac-ae-script-language)
3031 (mac-bytes-to-text-range, mac-ae-text-range-array)
3032 (mac-ts-update-active-input-buf, mac-split-string-by-property-change)
3033 (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area)
3034 (mac-ts-unicode-for-key-event): New functions.
3035 (mac-handle-toolbar-switch-mode): Use mac-ae-frame.
3036 (mac-handle-font-selection): Use mac-ae-number.
3037 (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno):
3038 New variables.
3039 (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text)
3040 (mac-ts-converted-text, mac-ts-selected-converted-text)
3041 (mac-ts-block-fill-text, mac-ts-outline-text)
3042 (mac-ts-selected-text, mac-ts-no-hilite): New faces.
3043 (mac-ts-hilite-style-faces): New constant.
3044 (mac-apple-event-map): Bind text input events.
3045 (mac-dispatch-apple-event): Use command-execute instead of
3046 call-interactively.
3047 (global-map): Don't bind mac-apple-event.
3048 (special-event-map): Bind mac-apple-event.
3049
3050 2006-06-02 Eli Zaretskii <eliz@gnu.org>
3051
3052 * makefile.w32-in (EMACS): Remove quotes from the Emacs executable
3053 file name.
3054 (emacs): Enclose the value of $(EMACS) in quotes.
3055
3056 2006-06-02 Juri Linkov <juri@jurta.org>
3057
3058 * international/mule.el (sgml-html-meta-auto-coding-function):
3059 Remove the condition `(search-forward "<html" size t)'.
3060 Replace `\"' with `[\"']?' in `re-search-forward'.
3061
3062 2006-06-02 Kenichi Handa <handa@m17n.org>
3063
3064 * files.el (hack-local-variables-prop-line): Ignore `char-trans'
3065 as well as `coding'.
3066 (hack-local-variables): Likewise.
3067
3068 * international/mule.el (enable-character-translation):
3069 Put permanent-local and safe-local-variable properties.
3070 (find-auto-coding): Handle char-trans: tag.
3071
3072 2006-06-02 Juri Linkov <juri@jurta.org>
3073
3074 * international/mule.el (sgml-html-meta-auto-coding-function):
3075 Limit the search by the end of the HTML header (if any).
3076
3077 2006-06-01 Richard Stallman <rms@gnu.org>
3078
3079 * subr.el (with-current-buffer): Doc fix.
3080
3081 2006-06-02 Masatake YAMATO <jet@gyve.org>
3082
3083 * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*):
3084 Almost rewrite. Underlines over all lines of gcov output are too
3085 uncomfortable to read. Suggested by Dan Nicolaescu.
3086
3087 2006-06-01 Luc Teirlinck <teirllm@auburn.edu>
3088
3089 * progmodes/inf-lisp.el (inferior-lisp-mode): Doc fixes.
3090
3091 * shell.el (shell-mode): Use shell-mode-map in docstring.
3092
3093 * comint.el (comint-send-input): Do not add help-echo and
3094 mouse-face to input if `comint-use-prompt-regexp' is non-nil.
3095
3096 2006-06-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3097
3098 * term/x-win.el: Change x-menu-bar-start to menu-bar-open.
3099
3100 2006-06-01 Nick Roberts <nickrob@snap.net.nz>
3101
3102 * progmodes/gdb-ui.el (gdb-look-up-stack): New variable.
3103 (gdb-stopped, gdb-info-stack-custom): If there is no source info
3104 look up the stack and pop up GUD buffer if necessary.
3105 (gdb-frames-select): Remove redundant call to gud-display-frame.
3106 (gdb-info-threads-custom): Keep point at start of buffer.
3107 (gdb-find-file-hook): Make it work for pre-GDB 6.4.
3108
3109 2006-05-31 Juri Linkov <juri@jurta.org>
3110
3111 * replace.el (query-replace-read-from, query-replace-read-to):
3112 Bind `history-add-new-input' to nil. Call `add-to-history'.
3113
3114 2006-05-31 Takaaki Ota <Takaaki.Ota@am.sony.com>
3115
3116 * textmodes/table.el: Convert all HTML tags to lower case for
3117 XHTML compatibility.
3118
3119 2006-05-31 Masatake YAMATO <jet@gyve.org>
3120
3121 * progmodes/compile.el:
3122 (compilation-error-regexp-alist-alist::gcov-called-line):
3123 Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
3124
3125 2006-05-31 Nick Roberts <nickrob@snap.net.nz>
3126
3127 * progmodes/gud.el (gud-query-cmdline, gud-common-init):
3128 Revert inadvertent changes made with last commit.
3129
3130 2006-05-30 Reiner Steib <Reiner.Steib@gmx.de>
3131
3132 * textmodes/flyspell.el (turn-on-flyspell, turn-off-flyspell):
3133 New functions.
3134
3135 * textmodes/text-mode.el (text-mode-hook): Use turn-on-flyspell.
3136
3137 2006-05-30 Carsten Dominik <dominik@science.uva.nl>
3138
3139 * textmodes/org.el (org-agenda-highlight-todo): Make sure regexp
3140 only matches in the right place.
3141 (org-upcoming-deadline): New face.
3142 (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
3143 (org-export-ascii-underline): Rename constant `org-ascii-underline'
3144 and make it an option.
3145 (org-export-ascii-bullets): New option.
3146 (org-export-as-html): Many changes to emit valid XHTML.
3147 (org-par-open): New variable.
3148 (org-open-par, org-close-par-maybe, org-close-li-maybe): New functions.
3149 (org-html-do-expand, org-section-number): Fix case in `replace-match'.
3150 (org-timeline): Pass `org-timeline-show-empty-dates' to
3151 `org-get-all-dates'. Interpret empty dates returned by
3152 `org-get-all-dates'.
3153 (org-get-all-dates): New argument EMPTY. Add dates without
3154 entries to the list, mark large ranges of empty dates.
3155 (org-point-in-group, org-context): New functions.
3156
3157 2006-05-30 Nick Roberts <nickrob@snap.net.nz>
3158
3159 * progmodes/gud.el (gud-stop-subjob): Make it work in all buffers.
3160
3161 * progmodes/gdb-ui.el: Move gdb-mouse-toggle-breakpoint-* to
3162 C-mouse-1. Move gdb-mouse-until to mouse-3, gdb-mouse-jump
3163 to C-mouse-3 (for 2 button mice).
3164 (gdb-send): Do the right thing for C-d.
3165
3166 * speedbar.el (speedbar-detach): Delete.
3167 (speedbar-easymenu-definition-trailer): Remove speedbar-detach as
3168 it breaks things.
3169 (speedbar-reconfigure-keymaps): Always add extra items to pop up menu.
3170
3171 2006-05-30 Daniel Pfeiffer <occitan@esperanto.org>
3172
3173 * files.el (auto-mode-alist): Add makepp suffix and optional mk on
3174 Makeppfile.
3175
3176 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3177 Add makepp diagnostic.
3178
3179 2006-05-29 Richard Stallman <rms@gnu.org>
3180
3181 * window.el (fit-window-to-buffer): Doc fix.
3182
3183 * help.el (temp-buffer-max-height): Doc fix.
3184
3185 * subr.el (with-current-buffer): Doc fix.
3186
3187 2006-05-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3188
3189 * term/x-win.el: Bind F10 to menu-bar-start if available.
3190
3191 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu>
3192
3193 * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace
3194 uses with a simple test.
3195 (term-set-escape-char, term-mode, term-check-kill-echo-list)
3196 (term-send-raw-string, term-send-raw, term-mouse-paste)
3197 (term-char-mode, term-line-mode, term-exec, term-sentinel)
3198 (term-handle-exit, term-read-input-ring)
3199 (term-previous-matching-input-string)
3200 (term-previous-matching-input-string-position)
3201 (term-previous-matching-input-from-input)
3202 (term-replace-by-expanded-history, term-send-input)
3203 (term-skip-prompt, term-bol, term-send-invisible)
3204 (term-kill-input, term-delchar-or-maybe-eof)
3205 (term-backward-matching-input, term-check-source)
3206 (term-proc-query, term-emulate-terminal)
3207 (term-handle-colors-array, term-process-pager, term-pager-line)
3208 (term-pager-bob, term-unwrap-line, term-word)
3209 (term-dynamic-complete-filename)
3210 (term-dynamic-complete-as-filename)
3211 (term-dynamic-simple-complete): Replace one arm ifs with whens or
3212 unlesses.
3213
3214 2006-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
3215
3216 * files.el (hack-one-local-variable-eval-safep): Don't burp if used
3217 during bootstrapping.
3218
3219 * emacs-lisp/ewoc.el (ewoc--current-dll): Remove.
3220 Basically undo the change of 2006-05-26: use extra arguments instead of
3221 dynamic scoping.
3222 (ewoc-locate): Remove unused var `footer'.
3223
3224 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3225
3226 * emacs-lisp/ewoc.el (ewoc--insert-new-node): Use ewoc--refresh-node.
3227
3228 * emacs-lisp/autoload.el (no-update-autoloads): Declare.
3229 (generate-file-autoloads): Obey it. Return whether autoloads were
3230 added at point or not.
3231 (update-file-autoloads): Use this new return value.
3232 Remove redundant test for the presence of an autoload cookie.
3233
3234 * emacs-lisp/autoload.el (autoload-find-file): New fun.
3235 This one calls hack-local-variables.
3236 (generate-file-autoloads, update-file-autoloads): Use it.
3237
3238 * textmodes/bibtex.el (bibtex-autokey-name-case-convert-function)
3239 (bibtex-sort-entry-class): Add safe-local-variable predicate.
3240 (bibtex-sort-entry-class-alist): Don't set the global value.
3241 (bibtex-init-sort-entry-class-alist): New fun.
3242 (bibtex-sort-buffer, bibtex-prepare-new-entry): Call it to compute
3243 bibtex-init-sort-entry-class-alist from the buffer-local value (if any)
3244 of bibtex-init-sort-entry-class.
3245
3246 2006-05-28 Richard Stallman <rms@gnu.org>
3247
3248 * subr.el (load-history-regexp): If FILE is relative, insist
3249 entire last name component must match it.
3250 (load-history-filename-element, load-history-regexp): Doc fixes.
3251
3252 2006-05-29 Kim F. Storm <storm@cua.dk>
3253
3254 * emacs-lisp/bindat.el (bindat-idx, bindat-raw): Rename dynamic vars
3255 `pos' and `raw-data' for clarity, as eval forms may access these.
3256
3257 2006-05-28 Kim F. Storm <storm@cua.dk>
3258
3259 * emacs-lisp/bindat.el (bindat--unpack-u8): Use aref also for strings.
3260
3261 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3262
3263 * progmodes/make-mode.el (makefile-browser-map)
3264 (makefile-mode-syntax-table): Move initialization inside declaration.
3265 (makefile-fill-paragraph): Use the default comment-filling code.
3266
3267 2006-05-28 Chong Yidong <cyd@stupidchicken.com>
3268
3269 * replace.el (query-replace-defaults): New variable.
3270 (query-replace-read-from): Use `query-replace-defaults' for
3271 default value, instead of history list.
3272 (query-replace-read-to): Update `query-replace-defaults'.
3273
3274 2006-05-27 Chong Yidong <cyd@stupidchicken.com>
3275
3276 * msb.el (mouse-select-buffer): Minor fix to make popup menu work
3277 with no X toolkit.
3278
3279 2006-05-28 Nick Roberts <nickrob@snap.net.nz>
3280
3281 * tumme.el (tumme-show-all-from-dir-max-files): Fix typo.
3282 (tumme-show-all-from-dir): Add autoload.
3283
3284 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
3285
3286 * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
3287 (tumme-remove-tag): Fix bug.
3288
3289 2006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
3290
3291 * emacs-lisp/ewoc.el (ewoc--create): No longer take HEADER and
3292 FOOTER args. Update unique caller.
3293 (ewoc-delete): Compute last node once before looping.
3294 (ewoc--node-branch): Merge into unique caller.
3295 (ewoc--node): Don't define constructor make-ewoc--node for this
3296 structure.
3297 (ewoc): Add member `hf-pp' to this structure.
3298 (ewoc--wrap): New func.
3299 (ewoc-create): Take additional arg NOSEP. If nil, wrap node and
3300 header/footer pretty-printers. Save header/footer pretty-printer.
3301 (ewoc-set-hf): Use ewoc's header/footer pretty-printer. *
3302
3303 * pcvs.el (cvs-make-cvs-buffer): Specify NOSEP to `ewoc-create'.
3304
3305 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
3306
3307 * dired.el (dired-mode-map): Change `tumme-tag-remove' to
3308 `tumme-delete-tag'. Rename `Remove Image Tag' to `Delete Image
3309 Tag'. Change "Compare directories..." to "Change Directories...".
3310 Move tumme commands to Operate, Regexp and Immediate menus.
3311 Change "Add Comment" to "Add Image Comment". Change "Add Image
3312 Tag" to "Add Image Tags".
3313
3314 * tumme.el (tumme-delete-tag): Rename from `tumme-tag-remove'.
3315 (tumme-setup-dired-keybindings): Change `tumme-add-remove' to
3316 `tumme-delete-tag'.
3317
3318 2006-05-26 Luc Teirlinck <teirllm@auburn.edu>
3319
3320 * shell.el (shell-mode): Call shell-dirtrack-mode after
3321 list-buffers-directory is made a local variable, to avoid setting
3322 the default value.
3323
3324 2006-05-26 Kevin Ryde <user42@zip.com.au>
3325
3326 * info.el (Info-index-next): Use where-is-internal to report
3327 actual binding of Info-index-next, rather than hard-coded `,'.
3328
3329 2006-05-26 Eli Zaretskii <eliz@gnu.org>
3330
3331 * menu-bar.el (menu-bar-apropos-menu): Move "Find Key in Manual"
3332 and "Find Command in Manual" to here.
3333
3334 * buff-menu.el (list-buffers-noselect): For Info buffers, use
3335 Info-current-file as the file name.
3336
3337 2006-05-26 Jonathan Yavner <jyavner@member.fsf.org>
3338
3339 * ses.el (defadvice undo-more): Delete this defadvice. The undo
3340 overrides will now be done a different way.
3341 (ses-set-parameter): Reapply this function for undo.
3342 (ses-set-header-row): Reconstruct header row during undo.
3343 (ses-widen): New function.
3344 (ses-goto-data, ses-reconstruct-all): Use new function.
3345 (ses-command-hook): Widen buffer during undo, before unupdating
3346 the cells.
3347 (ses-insert-row, ses-delete-row): Widen buffer during undo.
3348 (ses-load, ses-header-row): Permit empty (zero-row) spreadsheets.
3349 (ses-read-cell): Avoid stupid warning for RET RET on a cell whose
3350 formula hasn't been executed yet.
3351
3352 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
3353
3354 * comint.el (comint-kill-whole-line): Rename arg to count.
3355 Fix doc string.
3356
3357 2006-05-26 Chong Yidong <cyd@stupidchicken.com>
3358
3359 * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
3360 to copy-file.
3361
3362 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
3363
3364 * simple.el (toggle-truncate-lines): Make arg optional for
3365 backward compatibility.
3366
3367 2006-05-26 Thien-Thi Nguyen <ttn@gnu.org>
3368
3369 * emacs-lisp/ewoc.el (ewoc--current-dll): New var.
3370 (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take
3371 DLL arg. Instead, use ewoc--current-dll. Update all callers.
3372 (ewoc--set-buffer-bind-dll-let*): Bind ewoc--current-dll, not `dll'.
3373 (ewoc--adjust): Use ewoc--current-dll.
3374 (ewoc-next, ewoc-prev, ewoc-nth): Bind ewoc--current-dll.
3375
3376 2006-05-26 Carsten Dominik <dominik@science.uva.nl>
3377
3378 * textmodes/org.el (org-next-item, org-previous-item): Emit more
3379 compact error message.
3380 (org-tags-view): Refresh category table in each file.
3381 (org-table-justify-field-maybe): Remove superfluous arguments to
3382 `format'.
3383 (org-export-as-html): Insert "<p>" before postamble.
3384 (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill ring.
3385
3386 2006-05-26 Kenichi Handa <handa@m17n.org>
3387
3388 * textmodes/po.el (po-find-charset): Pay attention to the case
3389 FILENAME is a cons (NAME . BUFFER).
3390 (po-find-file-coding-system-guts): Likewise.
3391
3392 * arc-mode.el (archive-set-buffer-as-visiting-file):
3393 Call find-operation-coding-system with (FILENAME . BUFFER).
3394
3395 * tar-mode.el (tar-extract): Call find-operation-coding-system
3396 with (FILENAME . BUFFER).
3397
3398 * international/mule.el (decode-coding-inserted-region):
3399 Call find-operation-coding-system with (FILENAME . BUFFER).
3400
3401 2006-05-25 Chong Yidong <cyd@stupidchicken.com>
3402
3403 * image-mode.el (image-toggle-display): Use buffer contents to
3404 generate image for a remote file.
3405
3406 2006-05-25 Juri Linkov <juri@jurta.org>
3407
3408 * replace.el (query-replace-read-from, query-replace-read-to):
3409 Remove 8th arg KEEP-ALL in read-from-minibuffer.
3410
3411 2006-05-25 Rajesh Vaidheeswarran <rv@gnu.org>
3412
3413 * whitespace.el (whitespace-cleanup): Change to cleanup
3414 region if one is active.
3415 * whitespace.el (whitespace-cleanup-internal): New internal method.
3416
3417 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3418
3419 * dired.el (dired-mode-map): Add help-echo strings to tumme
3420 commands. Bind `tumme-dired-display-image' to C-t i.
3421
3422 * tumme.el (tumme-display-image): Change documentation string slightly.
3423 (tumme-dired-display-image): Add call to `display-buffer'.
3424
3425 2006-05-25 Thien-Thi Nguyen <ttn@gnu.org>
3426
3427 * emacs-lisp/bindat.el (bindat-unpack, bindat-pack):
3428 Signal error if RAW-DATA is a multibyte string.
3429
3430 2006-05-24 Richard Stallman <rms@gnu.org>
3431
3432 * subr.el (with-local-quit): When handling `quit' signal,
3433 make a chance for quit-flag to cause a quit.
3434
3435 * emacs-lisp/advice.el (ad-enable-advice, ad-activate)
3436 (ad-disable-advice): Add autoloads.
3437
3438 * subr.el (read-passwd): Copy PROMPT before changing its properties.
3439
3440 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3441
3442 * dired.el (dired-mode-map): Change menu items for tumme as per
3443 suggestions in emacs-devel.
3444
3445 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
3446
3447 * dired.el (dired-mode-map): Fix breakage.
3448
3449 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3450
3451 * tumme.el (tumme-display-dired-image): Rename to...
3452 (tumme-dired-display-image): ...this.
3453 (tumme-track-movement): Change default value to t.
3454 (tumme-display-thumbs): Add new optional parameter DO-NOT-POP,
3455 used from `tumme-next-line-and-display' and similar commands.
3456
3457 * dired.el (dired-mode-map): Add Thumbnail submenu under the
3458 Immediate menu. Add some tumme commands there.
3459
3460 2006-05-24 Luc Teirlinck <teirllm@auburn.edu>
3461
3462 * loadup.el ("jka-cmpr-hook"): Load it before it is needed.
3463
3464 2006-05-24 Chong Yidong <cyd@mit.edu>
3465
3466 * menu-bar.el, international/mule-cmds.el: Remove tooltips for
3467 menu entries that open submenus.
3468
3469 2006-05-24 Alan Mackenzie <acm@muc.de>
3470
3471 * startup.el (command-line): For names of preloaded files, don't
3472 append ".elc" (now done in Fload), and call file-truename on the
3473 lisp directory.
3474
3475 * subr.el (eval-after-load): Fix the doc-string. Allow FILE to
3476 match ANY loaded file with the right name, not just those in
3477 load-path. Put a regexp matching the file name into
3478 after-load-alist, rather than the name itself.
3479
3480 * subr.el: New functions load-history-regexp,
3481 load-history-filename-element, do-after-load-evaluation.
3482
3483 * international/mule.el (load-with-code-conversion): Do the
3484 eval-after-load stuff by calling do-after-load-evaluation.
3485
3486 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
3487
3488 * progmodes/gud.el (gud-sentinel): Condition on GUD buffer if it
3489 has not been killed.
3490
3491 2006-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3492
3493 * term/mac-win.el: Set idle timer to clean up expired Apple events.
3494 (mac-ae-get-url): Redispatch Apple event on unknown scheme.
3495 (mac-dispatch-apple-event): Resume Apple event if it is suspended.
3496 Optionally set error message in reply.
3497
3498 2006-05-24 Carsten Dominik <dominik@science.uva.nl>
3499
3500 * textmodes/org.el (org-open-at-point): Use renamed variable
3501 `org-confirm-shell-link-function'.
3502 (org-confirm-shell-link-function): Rename from
3503 `org-confirm-shell-links'.
3504 (org-export-directory): New function.
3505 (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
3506 (org-export-icalendar): Use `org-export-directory'.
3507 (org-indent-item): Keep cursor position.
3508 (org-link-file-path-type): New option.
3509 (org-export-as-html): Fix bug with plain lists starting in
3510 column 0.
3511 (org-export-as-html): Remove deadline formatting, this happens
3512 now already in `org-html-handle-time-stamps'.
3513 (org-export-html-style): Deadline class removed.
3514 (org-insert-labeled-timestamps-at-point): New option.
3515 (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
3516 of `hide-sublevels 1', in case the first headline is not level 1.
3517 (org-overview, org-content): New fuction.
3518 (org-cycle-global-status, org-cycle-subtree-status): Make these
3519 variables buffer-local.
3520 (org-global-cycle): New command.
3521 (org-shifttab): Use `org-global-cycle'.
3522 (org-insert-heading, org-insert-item): Go to end of new
3523 headline/item after creating it.
3524 (org-export-visible): Rename from `org-export-copy-visible'.
3525 Now creates a temporary org-file and applies an exporting command
3526 to it.
3527 (org-table-eval-formula): Support for lisp forms.
3528 (org-agenda-todo-ignore-scheduled): New option.
3529 (org-agenda-get-todos): Use new option
3530 `org-agenda-todo-ignore-scheduled'.
3531 (org-export-html-inline-images): New value `maybe'.
3532 (org-export-as-html): Inlining of images dependent on link description.
3533 (org-archive-subtree): Check for end-of-buffer before trying
3534 `kill-line'.
3535 (org-agenda-follow-mode): New option.
3536 (org-export-with-tags, org-export-with-timestamps): New options.
3537 (org-html-handle-time-stamps): New function.
3538 (org-keyword-time-regexp): New variable.
3539 (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
3540 (org-agenda-todo-list-sublevels): New option.
3541 (org-html-level-start): When TITLE is nil, just close all levels.
3542 (org-parse-key-lines, org-parse-export-options): Remove functions,
3543 replaced by `org-infile-export-plist'.
3544 (org-combine-plists, org-infile-export-plist)
3545 (org-default-export-plist): New functions.
3546 (org-export-html-preamble, org-export-html-postamble)
3547 (org-export-html-auto-preamble, org-export-html-auto-postamble):
3548 New variables.
3549 (org-export-publishing-directory): New option.
3550 (org-export-as-html, org-export-as-ascii): Use the new property
3551 lists for settings.
3552 (org-export-copy-visible, org-export-as-xoxo):
3553 Respect `org-export-publishing-directory'.
3554 (org-link-search, org-store-link, org-file-apps): Support for
3555 links to BibTeX database entries..
3556 (org-get-current-options, org-set-regexps-and-options):
3557 Implement logging as a startup option.
3558 (org-store-link): Make sure context string is never empty
3559 (org-insert-link): Use relative path when possible.
3560 (org-at-item-checklet-p): New function.
3561 (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
3562 (org-shiftmetaup, org-shiftmetadown, org-metaleft)
3563 (org-metaright, org-metaup, org-metadown, org-shiftup)
3564 (org-shiftdown, org-shiftright, org-shiftleft)
3565 (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
3566 Dispatch using `call-interactively'.
3567 (org-call-with-arg): New defsubst.
3568 (org-tag-alist, org-use-fast-tag-selection): New options.
3569 (org-complete): Use `org-tag-alist'.
3570 (org-fast-tag-insert, org-fast-tag-selection): New functions.
3571 (org-next-item, org-previous-item): New commands.
3572 (org-beginning-of-item, org-end-of-item): Add (interactive) to
3573 make command.
3574 (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
3575
3576 2006-05-23 Thien-Thi Nguyen <ttn@gnu.org>
3577
3578 * emacs-lisp/ewoc.el (ewoc-delete): New function.
3579 (ewoc-filter): Use `ewoc-delete'.
3580
3581 * emacs-lisp/bindat.el (bindat-pack): Doc fix.
3582
3583 2006-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
3584
3585 * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
3586 Signal more user-friendly error messages.
3587
3588 * complete.el (PC-do-completion): Undo the addition of implicit
3589 wildcards if they did not lead to finding any match.
3590 (read-file-name-internal): Don't add the final > if the completion is
3591 not finished.
3592
3593 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
3594
3595 * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
3596 Quote safe-local-variable predicate.
3597
3598 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
3599
3600 * emacs-lisp/ewoc.el (ewoc-set-data): New function.
3601
3602 2006-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3603
3604 * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
3605
3606 * progmodes/make-mode.el (makefile-special-targets-list)
3607 (makefile-macro-table, makefile-target-table): Mark as risky.
3608 (makefile-query-one-target-method): Make this the alias for the
3609 following variable.
3610 (makefile-query-one-target-method-function): Make this the real name.
3611
3612 * textmodes/artist.el (artist-text-renderer): Make this the alias
3613 for the following variable.
3614 (artist-text-renderer-function): Make this the real name.
3615
3616 * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
3617 the alias for the following variable.
3618 (flyspell-generic-check-word-predicate): Make this the real name.
3619
3620 * textmodes/ispell.el (ispell-format-word): Make this the alias
3621 for the following variable.
3622 (ispell-format-word-function): Make this the real name.
3623 (ispell-message-text-end): Mark as risky.
3624
3625 * skeleton.el (skeleton-transformation, skeleton-filter)
3626 (skeleton-pair-filter): Make these the aliases for the following
3627 variables.
3628 (skeleton-transformation-function, skeleton-filter-function)
3629 (skeleton-pair-filter-function): Make these the real names.
3630
3631 * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
3632 and skeleton-pair-filter-function.
3633
3634 * textmodes/sgml-mode.el (sgml-transformation): Make this the
3635 alias for the following variable.
3636 (sgml-transformation-function): Make this the real name.
3637 (sgml-tag-alist): Mark as risky.
3638
3639 2006-05-21 Richard Stallman <rms@gnu.org>
3640
3641 * simple.el (kill-region): Interactively, pass point, then mark.
3642
3643 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
3644
3645 * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie.
3646
3647 2006-05-21 Romain Francoise <romain@orebokech.com>
3648
3649 * dired-x.el (dired-mode-map): Don't bind M-g.
3650
3651 2006-05-20 Richard Stallman <rms@gnu.org>
3652
3653 * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
3654 (dired-goto-file): Doc fix.
3655
3656 2006-05-21 Kim F. Storm <storm@cua.dk>
3657
3658 * emulation/cua-base.el: Mention customizing cua-mode as alternative
3659 way to enable built-in cua-mode if user loads older CUA-mode package.
3660
3661 * ido.el (ido-read-file-name): Bind ido-show-dot-for-dired to nil
3662 if default-filename is specified.
3663
3664 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3665
3666 * menu-bar.el (menu-bar-manuals-menu) <info-apropos>: New menu item.
3667
3668 * info.el (info-apropos): Make sure current-file and current-node
3669 have non-nil values. Speed up by using add-to-list instead of
3670 manual consing.
3671
3672 2006-05-20 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
3673
3674 * progmodes/make-mode.el (makefile-mode): Doc fix.
3675
3676 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3677
3678 * dired-aux.el (dired-do-shell-command): Doc fix.
3679
3680 2006-05-20 Kevin Ryde <user42@zip.com.au>
3681
3682 * info-xref.el (info-xref-check-all-custom): Skip :tag part of
3683 ``(custom-manual :tag "Foo" "(foo)Node")''.
3684
3685 2006-05-20 Karl Chen <quarl@cs.berkeley.edu>
3686
3687 * progmodes/cc-vars.el (c-backslash-column): Mark as safe if its
3688 value is an integer.
3689
3690 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3691
3692 * mail/rmail.el (rmail-mime-charset-pattern): Add "?:" before
3693 "format".
3694 (rmail-convert-to-babyl-format): Undo the change from 2006-04-19.
3695
3696 2006-05-20 Martin Rudalics <rudalics@gmx.at>
3697
3698 * progmodes/hideif.el (show-ifdef-block): Fix bug where parts of
3699 a hidden block remained hidden if `hide-ifdef-lines' is non-nil.
3700
3701 2006-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
3702
3703 * progmodes/gud.el (gdb-script-font-lock-keywords): Use a stricter
3704 regexp for keywords.
3705
3706 2006-05-20 Masayuki FUJII <boochang@m4.kcn.ne.jp> (tiny change)
3707
3708 * dnd.el (dnd-get-local-file-name): Specify LITERAL in
3709 replace-regexp-in-string.
3710
3711 * term/w32-win.el (w32-drag-n-drop): Substitute '/' for '\',
3712 encode, and escape file name on conversion to URL.
3713
3714 2006-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3715
3716 * dnd.el (dnd-handle-one-url): Change 3rd arg ARG to URL.
3717 Don't unescape URL.
3718 (dnd-get-local-file-name): Unescape URL on conversion to file name.
3719
3720 * x-dnd.el (x-dnd-handle-file-name): Encode and escape file names
3721 on conversion to URLs.
3722
3723 * net/browse-url.el (browse-url-file-url): Encode file name on
3724 conversion to URL.
3725
3726 * term/mac-win.el (mac-ae-open-documents): Escape file name on
3727 conversion to URL.
3728
3729 2006-05-19 Eli Zaretskii <eliz@gnu.org>
3730
3731 * progmodes/cc-styles.el (c-style-alist): Doc fix.
3732
3733 2006-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3734
3735 * term/mac-win.el (mac-bytes-to-digits): Remove function.
3736 (mac-handle-toolbar-switch-mode): Use coercion instead of it.
3737
3738 2006-05-19 Glenn Morris <rgm@gnu.org>
3739
3740 * calendar/diary-lib.el (diary-bahai-date)
3741 (list-bahai-diary-entries, mark-bahai-diary-entries)
3742 (mark-bahai-calendar-date-pattern): Not interactive.
3743 (add-to-diary-list): New optional arg LITERAL. Doc fix.
3744 (diary-entries-list): Change format of 4th element in each entry.
3745 (diary-list-entries): Use add-to-diary-list.
3746 (diary-goto-entry): Handle the case where the buffer visiting the
3747 diary has been killed.
3748 (fancy-diary-display): Add 'locator to button rather than 'marker.
3749 Only generate temp-face when there are marks to apply.
3750 (list-sexp-diary-entries): Pass literal to add-to-diary-list.
3751 (diary-fancy-date-pattern): New variable.
3752 (diary-time-regexp): Doc fix.
3753 (diary-anniversary, diary-time): New faces.
3754 (fancy-diary-font-lock-keywords): Use diary-fancy-date-pattern and
3755 diary-time-regexp. Add font-lock-multiline property where needed.
3756 Use new faces diary-anniversary and diary-time.
3757 (diary-fancy-font-lock-fontify-region-function): New function, to
3758 handle multiline font-lock pattern in fancy diary.
3759 (fancy-diary-display-mode): Set font-lock-fontify-region-function.
3760 (diary-font-lock-keywords): Tweak time regexp. Use new face
3761 diary-time.
3762
3763 2006-05-19 Alexander Shopov <ash@contact.bg> (tiny change)
3764
3765 * international/code-pages.el (mik): Table corrected.
3766
3767 2006-05-18 Kim F. Storm <storm@cua.dk>
3768
3769 * progmodes/grep.el (grep-find): Don't check grep-find-command
3770 before running command (breaks non-interactive usage).
3771
3772 2006-05-18 Thien-Thi Nguyen <ttn@gnu.org>
3773
3774 * emacs-lisp/ewoc.el (ewoc--adjust): New func.
3775 (ewoc--insert-new-node): Don't insert trailing newline.
3776 Instead, adjust successor nodes's start markers.
3777 (ewoc--refresh-node): Delete all text from current node's start
3778 marker to the next one's; adjust successor nodes's start markers.
3779 (ewoc--create): Doc fixes.
3780 (ewoc--refresh): Don't insert newline.
3781 (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
3782 * pcvs.el (cvs-make-cvs-buffer):
3783 Specify extra newline for ewoc's header and footer.
3784 (cvs-update-header): Update initial header recognition.
3785 Append newline to final header and footer values.
3786 * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
3787
3788 2006-05-17 Richard Stallman <rms@gnu.org>
3789
3790 * files.el (file-name-extension): Doc fix.
3791
3792 2006-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3793
3794 * shell.el (shell-dirtrack-mode): Make it into a proper minor mode, so
3795 we can explicitly enable/disable rather than toggle.
3796 (shell-mode): Use it.
3797 (shell-cd): Don't try to reproduce what `cd' does.
3798
3799 2006-05-17 Kim F. Storm <storm@cua.dk>
3800
3801 * ido.el (ido-read-internal): Use only nondirectory part of
3802 default item.
3803
3804 2006-05-17 Thien-Thi Nguyen <ttn@gnu.org>
3805
3806 * emacs-lisp/ewoc.el (ewoc-data): Add docstring.
3807 (ewoc-nth): Doc fix.
3808
3809 (ewoc-map, ewoc-invalidate): Compute PP before looping.
3810
3811 2006-05-16 Eli Zaretskii <eliz@gnu.org>
3812
3813 * international/mule.el (auto-coding-alist): Add .lha to files
3814 read with no-conversion.
3815
3816 * files.el (auto-mode-alist): Add .lha files to archive file
3817 extensions.
3818
3819 * arc-mode.el (archive-arc-summarize, archive-lzh-summarize):
3820 Convert csize to integer when computing offsets within the
3821 compressed archive file.
3822
3823 2006-05-16 Kim F. Storm <storm@cua.dk>
3824
3825 * subr.el (add-to-history): Add KEEP-ALL arg and align functionality
3826 with read-from-minibuffer.
3827
3828 2006-05-16 Reiner Steib <Reiner.Steib@gmx.de>
3829
3830 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function.
3831 (byte-compile-warnings): Fix safe-local-variable property.
3832
3833 2006-05-16 Ken Manheimer <ken.manheimer@gmail.com>
3834
3835 * allout.el (allout-show-bodies, allout-old-style-prefixes)
3836 (allout-stylish-prefixes, allout-numbered-bullet)
3837 (allout-file-xref-bullet, allout-use-hanging-indents): Use simple
3838 predicates to qualify `safe-local-variable' property, when
3839 available, else use equivalent lambda.
3840 (allout-current-topic-collapsed-p): Do the right thing regarding
3841 trailing blank lines.
3842
3843 2006-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
3844
3845 * server.el (server-start): Only create a directory if needed.
3846 (server-edit, server-unload-hook): server-start => server-mode.
3847 (kill-emacs-hook): Cleanup upon exit.
3848
3849 2006-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
3850
3851 * hexl.el (hexlify-buffer): Encode process arguments manually.
3852
3853 2006-05-16 Nick Roberts <nickrob@snap.net.nz>
3854
3855 * progmodes/gud.el (gud-tooltip-tips): Add missing argument to
3856 call to gdb-tooltip-print.
3857
3858 2006-05-15 Romain Francoise <romain@orebokech.com>
3859
3860 * dired-x.el (dired-guess-shell-gnutar): On GNU and GNU/Linux
3861 systems, default to "tar" since those systems probably have GNU tar.
3862
3863 2006-05-14 Lars Hansen <larsh@soem.dk>
3864
3865 * desktop.el (desktop-missing-file-warning): Fix docstring.
3866 (desktop-restore-file-buffer): Correct question asked on missing file.
3867
3868 2006-05-14 Kim F. Storm <storm@cua.dk>
3869
3870 * progmodes/cc-subword.el (c-forward-subword, c-backward-subword):
3871 Add CUA move property.
3872
3873 2006-05-13 Chong Yidong <cyd@stupidchicken.com>
3874
3875 * custom.el (custom-push-theme): Load the variable before checking
3876 its `standard-value'.
3877
3878 2006-05-13 Lars Hansen <larsh@soem.dk>
3879
3880 * desktop.el (desktop-save): Use with-temp-buffer.
3881
3882 2006-05-12 Glenn Morris <rgm@gnu.org>
3883
3884 * calendar/cal-menu.el (calendar-mode-map, calendar-mouse-3-map):
3885 * calendar/calendar.el (calendar-mode-map):
3886 * calendar/diary-lib.el (include-other-diary-files,diary-mail-entries):
3887 * calendar/appt.el (appt-check, appt-make-list): Refer to
3888 diary-view-entries, diary-list-entries, diary-show-all-entries
3889 rather than obsolete aliases.
3890
3891 2006-05-12 Chong Yidong <cyd@stupidchicken.com>
3892
3893 * simple.el (line-move-finish): Avoid calling point motion hooks
3894 while processing intangibility.
3895
3896 2006-05-12 Dan Nicolaescu <dann@ics.uci.edu>
3897
3898 * term/xterm.el (terminal-init-xterm): Fix typo.
3899
3900 2006-05-12 Ken Manheimer <ken.manheimer@gmail.com>
3901
3902 * allout.el (allout-view-change-hook): Mark as being deprecated,
3903 to be replaced by `allout-exposure-change-hook'.
3904 (allout-exposure-change-hook): New, replacing
3905 `allout-view-change-hook'.
3906 (allout-flag-region): Run new hook `allout-exposure-change-hook',
3907 in addition to `allout-view-change-hook'.
3908 (allout-show-bodies, allout-old-style-prefixes)
3909 (allout-stylish-prefixes, allout-use-hanging-indents): Quote the
3910 lambda forms to prevent their showing up in variable help
3911 presentations as inscrutable byte-compiled code.
3912 (allout-numbered-bullet, allout-file-xref-bullet, allout-layout):
3913 Use string-or-null-p to qualify safe-local-variable values.
3914 (allout-reindent-bodies): Use memq to qualify matches against
3915 valid safe-local-variable values. Also, quote the lambda as above.
3916 (allout-use-mode-specific-leader): Add missing candidate-value
3917 symbols, use memq, and quote the lambda.
3918 (allout-overlay-interior-modification-handler): Remove unused
3919 variables `msg' and 'opened'.
3920 (allout-hidden-p): Constrain invisibility consideration to allout's
3921 invisibility spec, disregarding invisibility for other reasons.
3922
3923 2006-05-12 Reiner Steib <Reiner.Steib@gmx.de>
3924
3925 * files.el (version-control): Correct safe values.
3926
3927 2006-05-12 Thien-Thi Nguyen <ttn@gnu.org>
3928
3929 * emacs-lisp/ewoc.el (ewoc-refresh): Compute PP once before looping.
3930
3931 (ewoc--node-enter-before, ewoc--create-node): Delete funcs.
3932 (ewoc--insert-new-node): New func.
3933 Update callers of deleted funcs to use it, instead.
3934
3935 2006-05-11 Glenn Morris <rgm@gnu.org>
3936
3937 * calendar/calendar.el (diary-show-all-entries): Do not refer to
3938 obsolete alias `show-all-diary-entries'.
3939 (make-diary-entry): Not interactive.
3940 (cal-tex-cursor-month, cal-tex-cursor-month-landscape)
3941 (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
3942 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3943 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3944 (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
3945 (cal-tex-cursor-filofax-daily, cal-tex-cursor-year): Interactive.
3946
3947 2006-05-11 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
3948
3949 * calendar/calendar.el (calendar-french-date-string)
3950 (calendar-mayan-date-string, calendar-chinese-date-string)
3951 (calendar-astro-date-string, calendar-iso-date-string)
3952 (calendar-islamic-date-string, calendar-bahai-date-string)
3953 (calendar-hebrew-date-string, calendar-coptic-date-string)
3954 (calendar-ethiopic-date-string, calendar-persian-date-string):
3955 These functions are not interactive.
3956
3957 2006-05-11 Luc Teirlinck <teirllm@auburn.edu>
3958
3959 * files.el: Balance parentheses.
3960
3961 2006-05-11 Reiner Steib <Reiner.Steib@gmx.de>
3962
3963 * files.el, newcomment.el, outline.el, simple.el,
3964 emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
3965 progmodes/cc-vars.el, progmodes/compile.el:
3966 Move `safe-local-variable' declarations to the respective files.
3967
3968 * help-fns.el (describe-variable): Don't print safe-var if it is
3969 byte-code. Improve wording as suggested by Luc Teirlinck.
3970
3971 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
3972
3973 * progmodes/gdb-ui.el (gdb-reset): Update speedbar if necessary.
3974 (gdb-var-evaluate-expression-handler, gdb-var-update-handler):
3975 Use a token for pending-triggers to ensure gdb-var-update
3976 gets called once per user input again for pre-GDB 6.4.
3977 (gdb-var-delete): Match on more complex expressions.
3978 (gdb-var-list-children-handler, gdb-var-create-handler):
3979 Use a token for consistency.
3980
3981 2006-05-11 Carsten Dominik <dominik@science.uva.nl>
3982
3983 * textmodes/org.el (org-read-date, org-goto-calendar)
3984 (org-agenda-goto-calendar):
3985 Bind `view-calendar-holidays-initially' to nil.
3986
3987 2006-05-11 Thien-Thi Nguyen <ttn@gnu.org>
3988
3989 * emacs-lisp/ewoc.el (ewoc--refresh-node): No longer save-excursion.
3990 Update all callers to do it there, instead.
3991
3992 2006-05-10 Glenn Morris <rgm@gnu.org>
3993
3994 * calendar/calendar.el (calendar-basic-setup): Set day to 1 in
3995 prefix arg case, to avoid view-diary-entries-initially error.
3996 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
3997 (calendar-date-is-legal-p): Handle dates with no day part.
3998
3999 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
4000
4001 * comint.el (comint-insert-input): Just make it when
4002 comint-use-prompt regexp is nil (default) and with the mouse.
4003 (comint-copy-old-input): Reinstate from 2004-06-23.
4004 (comint-mode-map): Bind C-c C-m to it.
4005
4006 2006-05-10 J.D. Smith <jdsmith@as.arizona.edu>
4007
4008 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
4009 Remove spurious move to point-max (new comint behavior fixes).
4010
4011 * progmodes/idlwave.el (idlwave-push-mark): Removed obsolete
4012 compatibility function (Emacs 18/19).
4013 (idlwave-is-continuation-line): Always return point at start of
4014 previous non-blank continuation line.
4015 `keyword-parameters': Fix continued comment font-lock matcher.
4016 (idlwave-font-lock-fontify-region): Written, use as
4017 font-lock-fontify-region-function, to fix continued keyword
4018 fontification issues.
4019
4020 2006-05-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4021
4022 * term/mac-win.el (mac-font-panel-mode): Doc fix.
4023 (mac-service-selection, mac-service-open-file)
4024 (mac-service-open-selection, mac-service-mail-selection)
4025 (mac-service-mail-to, mac-service-insert-text): Rename from
4026 mac-services-*. All uses changed.
4027 (mac-apple-event-map): Rename event symbol `services' to `service'.
4028
4029 2006-05-10 Thien-Thi Nguyen <ttn@gnu.org>
4030
4031 * emacs-lisp/ewoc.el (ewoc--dll-create, ewoc--node-delete)
4032 (ewoc--node-enter-first, ewoc--node-enter-last)
4033 (ewoc--delete-node-internal): Merge funcs into unique callers.
4034
4035 2006-05-09 Chong Yidong <cyd@stupidchicken.com>
4036
4037 * emacs-lisp/crm.el (completing-read-multiple): Properly handle
4038 return value of read-from-minibuffer for empty input.
4039
4040 2006-05-09 Miles Bader <miles@gnu.org>
4041
4042 * comint.el (comint-insert-input): Remove redundant calls to setq
4043 and goto-char.
4044
4045 2006-05-10 Nick Roberts <nickrob@snap.net.nz>
4046
4047 * comint.el (comint-insert-input): Make it work when
4048 comint-use-prompt-regexp is t.
4049
4050 2006-05-10 Miles Bader <miles@gnu.org>
4051
4052 * subr.el (field-at-pos): New function.
4053
4054 * comint.el (comint-insert-input): Use it.
4055
4056 2006-05-09 Juri Linkov <juri@jurta.org>
4057
4058 * battery.el (battery-linux-proc-acpi): Also try
4059 `/proc/acpi/thermal_zone/THR2/temperature'.
4060
4061 * files.el <safe-local-variable>: Remove `eval' and `let' binding
4062 for now unused lambda `string-or-null'.
4063
4064 * add-log.el (change-log-default-name): Put `string-or-null-p'
4065 instead of lambda on `safe-local-variable' property.
4066
4067 * diff-mode.el (diff-context->unified): Use `region-beginning' and
4068 `region-end' instead of `mark' and `point'.
4069 (diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
4070 Operate on region in Transient Mark mode when the mark is active.
4071 Use `region-beginning' and `region-end' instead of `mark' and
4072 `point'.
4073 (diff-hunk-text, diff-goto-source): Doc fix.
4074
4075 * startup.el (fancy-splash-screens, normal-splash-screen): Use
4076 face `mode-line-buffer-id' for mode-line buffer face instead of
4077 hard-coded `(:weight bold)'.
4078
4079 * arc-mode.el (archive-set-buffer-as-visiting-file): Bind
4080 buffer-undo-list to t (undo-ask is reproducible by visiting
4081 nested archives).
4082
4083 2006-05-09 Kim F. Storm <storm@cua.dk>
4084
4085 * progmodes/grep.el (rgrep): Set default directory of *grep*
4086 buffer if we start M-x rgrep in the *grep* buffer and choose
4087 a different base directory.
4088
4089 2006-05-09 Michael Albinus <michael.albinus@gmx.de>
4090
4091 * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
4092 completion also when ido is loaded.
4093
4094 2006-05-09 Masatake YAMATO <jet@gyve.org>
4095
4096 * font-lock.el (cpp-font-lock-keywords-source-directives): Addded
4097 "warning" and "import".
4098 (cpp-font-lock-keywords): Added "warning".
4099
4100 2006-05-08 Dan Nicolaescu <dann@ics.uci.edu>
4101
4102 * term/xterm.el (terminal-init-xterm): Add more key bindings.
4103
4104 2006-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4105
4106 * mwheel.el (mwheel-scroll): Make sure that when scrolling multiple
4107 pages at a time, if we signal the end, we should indeed reach that end.
4108
4109 2006-05-08 David Reitter <david.reitter@gmail.com>
4110
4111 * emacs-lisp/easy-mmode.el (define-minor-mode): Only preserve messages
4112 output during execution of the body.
4113
4114 2006-05-08 Kim F. Storm <storm@cua.dk>
4115
4116 * progmodes/grep.el (lgrep, rgrep): Doc fixes.
4117
4118 2006-05-08 Thien-Thi Nguyen <ttn@gnu.org>
4119
4120 * emacs-lisp/ewoc.el (ewoc--set-buffer-bind-dll-let*):
4121 Use with-current-buffer.
4122
4123 2006-05-07 Kim F. Storm <storm@cua.dk>
4124
4125 * subr.el (add-to-history): Remove keep-dups arg.
4126
4127 * kmacro.el (kmacro-push-ring): Let-bind history-delete-duplicates
4128 to nil around call to add-to-history.
4129
4130 2006-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
4131
4132 * emacs-lisp/syntax.el (syntax-ppss): Flush the cache before rather
4133 than after a buffer modification.
4134
4135 2006-05-08 Nick Roberts <nickrob@snap.net.nz>
4136
4137 * progmodes/gdb-ui.el (gdb-var-create-handler): Move speedbar
4138 call to...
4139 (gud-watch): ...here so speedbar is raised for already watched
4140 expressions.
4141 (gdb-speedbar-refresh): Delete function.
4142 (gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
4143 Use speedbar-timer-fn instead of speedbar-refresh (reverting
4144 earlier change).
4145 (gdb-var-evaluate-expression-handler)
4146 (gdb-var-list-children-handler-1, gdb-var-update-handler-1): Use it.
4147
4148 * speedbar.el (speedbar-timer-fn): Remove save-window-excursion.
4149 Update localized contents for all buffers except ignored modes.
4150
4151 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4152
4153 * term/mac-win.el (mac-utxt-to-string): Use `eq' instead of `='.
4154 (mac-atsu-font-table, mac-font-panel-mode): Add defvars.
4155 (mac-bytes-to-digits, mac-handle-toolbar-switch-mode)
4156 (mac-handle-font-panel-closed, mac-handle-font-selection):
4157 New functions.
4158 (mac-font-panel-mode): New minor mode.
4159 (mac-apple-event-map): Add bindings for toolbar toggle button and
4160 font panel.
4161 (menu-bar-showhide-menu): Add mac-font-panel-mode.
4162
4163 2006-05-07 John Paul Wallington <jpw@pobox.com>
4164
4165 * ibuffer.el (ibuffer-compressed-file-name-regexp):
4166 Avoid `regexp-opt'; simplify regexp for readability.
4167
4168 2006-05-06 Eli Zaretskii <eliz@gnu.org>
4169
4170 * ldefs-boot.el (dired-do-redisplay, dired-maybe-insert-subdir):
4171 * files.el (buffer-stale-function):
4172 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
4173 * autorevert.el (global-auto-revert-non-file-buffers): Point Info
4174 links to the main manual, not to emacs-xtra.
4175
4176 2006-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4177
4178 * term/mac-win.el (mac-utxt-to-string): Don't make adjustment for
4179 MacJapanese if text is ASCII-only.
4180
4181 2006-05-06 Nick Roberts <nickrob@snap.net.nz>
4182
4183 * progmodes/gdb-ui.el (gdb-goto-breakpoint): Use or instead of
4184 unless so nil isn't returned.
4185 (gdb-setup-windows, gdb-restore-windows): Reset gdb-source-window.
4186
4187 2006-05-06 Kim F. Storm <storm@cua.dk>
4188
4189 * subr.el (add-to-history): New function.
4190
4191 * ediff.el (ediff-files, ediff-files3, ediff-merge-files)
4192 (ediff-merge-files-with-ancestor):
4193 * env.el (setenv):
4194 * isearch.el (isearch-update-ring):
4195 * server.el (server-visit-files):
4196 * progmodes/grep.el (lgrep, rgrep):
4197 * progmodes/vhdl-mode.el (vhdl-generate-makefile-1):
4198 * progmodes/xscheme.el (xscheme-insert-expression):
4199 Use add-to-history.
4200
4201 * kmacro.el (kmacro-push-ring): Use add-to-history.
4202 (kmacro-ring-length): Remove unused defun.
4203 (kmacro-start-macro): Use kmacro-push-ring.
4204
4205 2006-05-06 Thien-Thi Nguyen <ttn@gnu.org>
4206
4207 * emacs-lisp/ewoc.el (ewoc-create, ewoc-set-hf): Use `insert'
4208 directly instead of a lambda expression that calls it.
4209
4210 2006-05-06 Kim F. Storm <storm@cua.dk>
4211
4212 * avoid.el (mouse-avoidance-point-position): Use posn-at-point
4213 instead of compute-motion.
4214
4215 2006-05-05 Dan Nicolaescu <dann@ics.uci.edu>
4216
4217 * ibuffer.el (ibuffer-compressed-file-name-regexp): Undo previous
4218 change.
4219
4220 2006-05-05 Reiner Steib <Reiner.Steib@gmx.de>
4221
4222 * startup.el (command-line-1): Refer to "Pure Storage" on
4223 pure-space-overflow.
4224
4225 2006-05-05 Martin Rudalics <rudalics@gmx.at>
4226
4227 * emacs-lisp/re-builder.el (reb-update-overlays): Cycle through
4228 provided faces once they all have been used up.
4229
4230 2006-05-05 Eli Zaretskii <eliz@gnu.org>
4231
4232 * startup.el (normal-splash-screen, fancy-splash-screens-1): Add a
4233 reference to the Lisp manual to the warning about pure space
4234 overflow.
4235
4236 2006-05-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
4237
4238 * textmodes/ispell.el (ispell-buffer-local-dict): Add a `no-reload'
4239 argument to avoid the call to `ispell-internal-change-dictionary'
4240 when not needed.
4241 (ispell-change-dictionary): Use this argument and call
4242 `ispell-internal-change-dictionary' after the possible change
4243 to `ispell-local-dictionary'.
4244 (ispell-internal-change-dictionary): Check for a change in
4245 personal dictionary use too.
4246
4247 2006-05-05 Eli Zaretskii <eliz@gnu.org>
4248
4249 * startup.el (command-line): On MS-Windows, probe "~", not
4250 "~USER", for warning about non-existent home directory
4251
4252 * arc-mode.el (archive-l-e): New optional argument `float' means
4253 generate a float value.
4254 (archive-arc-summarize, archive-lzh-summarize)
4255 (archive-zip-summarize, archive-zoo-summarize): Invoke archive-l-e
4256 with 3rd argument non-nil when file's size is being computed.
4257 Format the file sizes with %8.0f instead of %8d.
4258
4259 2006-05-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4260
4261 * cus-start.el (all): Add mac-dnd-known-types.
4262
4263 * term/mac-win.el (mac-utxt-to-string, mac-string-to-utxt)
4264 (mac-TEXT-to-string, mac-string-to-TEXT, mac-furl-to-string)
4265 (mac-TIFF-to-string): New functions.
4266 (x-get-selection, x-selection-value)
4267 (mac-select-convert-to-string): Use them.
4268 (mac-text-encoding-mac-japanese-basic-variant): New constant.
4269 (mac-dnd-types-alist): New customization variable.
4270 (mac-dnd-handle-furl, mac-dnd-handle-hfs, mac-dnd-insert-utxt)
4271 (mac-dnd-insert-TEXT, mac-dnd-insert-TIFF, mac-dnd-drop-data)
4272 (mac-dnd-handle-drag-n-drop-event): New functions.
4273 (mac-drag-n-drop): Remove function.
4274 (global-map): Bind drag-n-drop and M-drag-n-drop to
4275 mac-dnd-handle-drag-n-drop-event.
4276
4277 2006-05-04 Karl Chen <quarl@NOSPAM.quarl.org>
4278
4279 * progmodes/perl-mode.el (perl-beginning-of-function):
4280 Skip anonymous subs.
4281
4282 2006-05-04 Dan Nicolaescu <dann@ics.uci.edu>
4283
4284 * ibuffer.el (ibuffer-compressed-file-name-regexp): Avoid loading
4285 regexp-opt at run time.
4286
4287 * term.el (term-handle-ansi-escape): Fix off by one error.
4288
4289 2006-05-04 Nick Roberts <nickrob@snap.net.nz>
4290
4291 * progmodes/gdb-ui.el (gdb-force-update): Delete variable...
4292 (gdb-init-1, gdb-post-prompt): ...and references to it.
4293 (gdb-frame-handler): Strip directory name from filename if present.
4294
4295 * progmodes/gud.el (gdb-force-update): Delete defvar
4296 (gud-speedbar-buttons): ...and references to it. Use window-start
4297 to try to keep positon in watch expression.
4298
4299 2006-05-03 Richard Stallman <rms@gnu.org>
4300
4301 * simple.el (next-history-element, previous-history-element): Doc fix.
4302
4303 * isearch.el (isearch-update-ring): Doc fix.
4304
4305 2006-05-03 Dan Nicolaescu <dann@ics.uci.edu>
4306
4307 * isearch.el (isearch-update-ring): Take history-delete-duplicates
4308 into consideration. Replace one arm ifs with whens.
4309
4310 2006-05-03 Nick Roberts <nickrob@snap.net.nz>
4311
4312 * progmodes/gdb-ui.el (gud-watch): Let user select an expression.
4313 (menu): Fix typo.
4314
4315 2006-05-02 Miles Bader <miles@gnu.org>
4316
4317 * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t.
4318
4319 2006-05-02 Jay Belanger <belanger@truman.edu>
4320
4321 * calc/calc-embed.el (calc-override-minor-modes-map)
4322 (calc-override-minor-modes): New variables.
4323 (calc-do-embedded): Make sure that Calc keystrokes aren't
4324 overwritten by minor modes.
4325
4326 2006-05-02 Chong Yidong <cyd@mit.edu>
4327
4328 * msb.el (msb): If EVENT is a down event, read and discard the up event.
4329
4330 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de>
4331
4332 * startup.el (command-line-1): Refer to Lisp manual when
4333 pure-space-overflow occurs.
4334
4335 * files.el (byte-compile-dynamic, byte-compile-dynamic-docstrings)
4336 (byte-compile-warnings, find-file-visit-truename, indent-tabs-mode)
4337 (left-margin, no-byte-compile, no-update-autoloads, truncate-lines)
4338 (version-control): Don't use `t' for safe-local-variable declarations.
4339
4340 2006-05-01 Richard Stallman <rms@gnu.org>
4341
4342 * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
4343 M-r, M-R, M-A, M-SPC or M-DEL.
4344 (diff-mode-map): diff-refine-hunk now on C-c C-w
4345 (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
4346
4347 * help-mode.el (help-mode): view-exit-action calls delete-window
4348 only when it is safe and possible.
4349
4350 * simple.el (undo-outer-limit-truncate): Put quotes around buffer name
4351 in messages.
4352
4353 * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes.
4354
4355 * tool-bar.el (tool-bar-setup): Put Help and Preferences items
4356 in the default tool-bar-map.
4357
4358 2006-05-01 Michael Albinus <michael.albinus@gmx.de>
4359
4360 * net/tramp.el (tramp-completion-file-name-handler-alist)
4361 (tramp-run-real-handler, tramp-completion-run-real-handler)
4362 (tramp-completion-handle-file-name-all-completions)
4363 (tramp-completion-handle-file-name-completion): Autoload them.
4364 (tramp-completion-handle-file-exists-p)
4365 (tramp-completion-handle-file-name-directory)
4366 (tramp-completion-handle-file-name-nondirectory)
4367 (tramp-completion-handle-expand-file-name): Remove them.
4368 (tramp-handle-file-name-directory): Return the real directory name.
4369 Returning "/" only doesn't need to be necessary any longer.
4370 (tramp-file-name-handler): Make special attention when in hostname
4371 completion mode.
4372 (tramp-completion-file-name-handler): Revert patch from 2006-04-28.
4373 (tramp-register-file-name-handlers):
4374 Register `tramp-completion-file-name-handler' only when
4375 `partial-completion-mode' is enabled.
4376 (tramp-completion-handle-file-name-all-completions):
4377 Delete directory part from results.
4378 (tramp-get-completion-methods, tramp-get-completion-user-host):
4379 Discard deleting "/", it doesn't work after the change of
4380 `tramp-handle-file-name-directory' above.
4381
4382 2006-05-01 Kim F. Storm <storm@cua.dk>
4383
4384 * progmodes/grep.el (grep-expand-template): Use save-match-data
4385 and symbol-value.
4386
4387 2006-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4388
4389 * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop):
4390 Use select-frame-set-input-focus instead of raise-frame.
4391 (global-map): Bind M-drag-n-drop to mac-drag-n-drop.
4392
4393 2006-05-01 Nick Roberts <nickrob@snap.net.nz>
4394
4395 * progmodes/gud.el (gud-def): Add %c case.
4396 (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily.
4397 (gud-format-command): Make match case sensitive. Match on %F.
4398
4399 2006-04-30 Glenn Morris <rgm@gnu.org>
4400
4401 * calendar/cal-tex.el (cal-tex-preamble-extra): New variable.
4402 (cal-tex-preamble): Use cal-tex-preamble-extra.
4403 (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather
4404 than alias `list-diary-entries'.
4405
4406 2006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
4407
4408 * help-fns.el (describe-variable): Add info about safe local variables.
4409
4410 2006-04-29 Richard Stallman <rms@gnu.org>
4411
4412 * bindings.el (mode-line-format): help-echo doc fixes.
4413
4414 * net/tramp.el (tramp-file-name-handler-alist): Delete
4415 expand-file-name and other operations that can cause spurious loading.
4416
4417 2006-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
4418
4419 * files.el (safe-local-variable-p): Remove support for the special
4420 value t.
4421
4422 * textmodes/paragraphs.el (sentence-end-without-space):
4423 Fix safety predicate.
4424 (sentence-end-double-space, sentence-end-without-period)
4425 (paragraph-ignore-fill-prefix):
4426 * textmodes/fill.el (colon-double-space):
4427 * abbrev.el (abbrev-mode): Tighten the safety predicate.
4428
4429 * subr.el (booleanp): New fun.
4430
4431 * textmodes/reftex-vars.el (reftex-guess-label-type):
4432 Tighten the safety predicate.
4433
4434 2006-04-28 Kim F. Storm <storm@cua.dk>
4435
4436 * progmodes/grep.el (defgroup grep): Doc fix.
4437 (grep-auto-highlight): Remove.
4438 (grep-template): New defcustom.
4439 (grep-find-template): Rename from grep-tree-template.
4440 (grep-files-aliases): Rename from grep-tree-files-aliases.
4441 Remove "all" alias, add "l" alias.
4442 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove.
4443 (grep-find-ignored-directories): New defcustom to replace
4444 grep-tree-ignore-CVS-directories, to facilitate ignoring
4445 subdirectories for multiple version control systems.
4446 (grep-mode-map): Add Recursive grep item to GREP menu.
4447 (grep-regexp-history, grep-files-history): New defvars.
4448 (grep-probe): New helper function.
4449 (grep-compute-defaults): Use it to simplify code.
4450 Adapt to name changes.
4451 Use `.' as base in grep-find-template rather than <D>.
4452 (grep): Remove superfluous highlight-regexp arg. Fix doc.
4453 Call grep-compute-defaults unconditionally.
4454 (grep-expand-keywords): New defconst.
4455 (grep-expand-template): Rename from grep-expand-command-macros.
4456 Simplify via grep-expand-keywords. Look at case-fold-search instead
4457 of grep-tree-ignore-case to add -i option.
4458 Bind case-fold-search to nil while matching keywords.
4459 (grep-tree-last-regexp, grep-tree-last-files): Remove.
4460 (grep-read-regexp, grep-read-files): New helper functions.
4461 (rgrep): Rename from grep-tree. Rework to use proper histories.
4462 Adapt to changes in defcustoms and functions above.
4463 (lgrep): New command, as grep, but using same interactive UI as rgrep.
4464
4465 2006-04-28 Michael Albinus <michael.albinus@gmx.de>
4466
4467 * net/tramp.el (tramp-completion-file-name-handler):
4468 Disable Tramp's functionality while loading Tramp itself.
4469 (tramp-register-file-name-handlers): That's a defsubst now.
4470 Code from `tramp-repair-jka-compr' moved here. Apply it via
4471 `after-init-hook'.
4472 (tramp-repair-jka-compr): Remove.
4473
4474 2006-04-27 Jay Belanger <belanger@truman.edu>
4475
4476 * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
4477 read expression when `math-read-big-expr' doesn't work.
4478
4479 2006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
4480
4481 * startup.el (command-line-1): Display warning when
4482 pure-space-overflow is non-nil.
4483
4484 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4485
4486 * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
4487 risky.
4488
4489 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4490
4491 * textmodes/bibtex.el (bibtex-url): New optional arg no-browse.
4492 Return the URL or nil if none can be generated.
4493
4494 2006-04-27 Nick Roberts <nickrob@snap.net.nz>
4495
4496 * progmodes/gud.el (gud-comint-buffer): Move forward to stop
4497 byte compiler warnings.
4498 (gud-basic-call, gud-find-expr): Let user select an expression
4499 for printing. Print expression as well as value in GUD buffer.
4500
4501 2006-04-17 Ken Manheimer <ken.manheimer@gmail.com>
4502
4503 * allout.el: Remove local autoload declaration for
4504 pgg-gpg-symmetric-key-p, since that's now done in pgg-gpg.el.
4505 (allout-show-bodies, allout-header-prefix, allout-primary-bullet)
4506 (allout-plain-bullets-string, allout-distinctive-bullets-string)
4507 (allout-use-mode-specific-leader, allout-old-style-prefixes)
4508 (allout-stylish-prefixes, allout-numbered-bullet)
4509 (allout-file-xref-bullet, allout-presentation-padding)
4510 (allout-use-hanging-indents, allout-reindent-bodies): Mark as
4511 safe-local-variable with suitable value spec, and add autoload
4512 cookie for loaddefs inclusion. We now use an explicit spec everywhere.
4513 (move-beginning-of-line, move-end-of-line): Repair so these compat
4514 functions now actually resituate the point, when appropriate.
4515
4516 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4517
4518 * progmodes/cc-subword.el (c-subword-mode-map): Use command remapping.
4519
4520 * add-log.el (add-log-iso8601-time-zone): Make parameter optional.
4521 (add-log-iso8601-time-string): Fix call to format-time-string.
4522
4523 2006-04-26 Kim F. Storm <storm@cua.dk>
4524
4525 * subr.el (posn-string, posn-image, posn-object): Doc fix.
4526
4527 2006-04-26 Masatake YAMATO <jet@gyve.org>
4528
4529 * progmodes/asm-mode.el (asm-mode, asm-mode-syntax-table):
4530 Add support for "//" style comments. Remove `b' flag
4531 from ?* in `asm-mode-syntax-table'.
4532
4533 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4534
4535 * follow.el: Use (featurep 'xemacs) everywhere.
4536 (follow-mode): Use define-minor-mode.
4537 (follow-mode-map): Move initialization into the declaration.
4538 Use command remapping.
4539 (follow-emacs-version-xemacs-p): Remove.
4540 (follow-submit-feedback): Remove.
4541
4542 * allout.el (allout-layout, allout-passphrase-verifier-string)
4543 (allout-passphrase-hint-string): Tighten up a bit the safety predicate.
4544
4545 * textmodes/reftex-vars.el (reftex-vref-is-default)
4546 (reftex-fref-is-default, reftex-guess-label-type):
4547 Tighten up a bit the safety predicate.
4548
4549 * textmodes/paragraphs.el (sentence-end-double-space)
4550 (sentence-end-without-period, sentence-end-without-space)
4551 (page-delimiter, paragraph-ignore-fill-prefix):
4552 Tighten up a bit the safety predicate.
4553
4554 * textmodes/fill.el (colon-double-space): Tighten up the safety pred.
4555
4556 * progmodes/python.el (python-continuation-line-p)
4557 (python-beginning-of-statement): syntax-ppss may return
4558 a negative depth.
4559 (python-mode): Don't forcefully enable font-lock.
4560
4561 * time-stamp.el (time-stamp-start, time-stamp-end)
4562 (time-stamp-inserts-lines): Tighten up a bit the safety predicate.
4563
4564 * add-log.el: Remove spurious * in docstrings.
4565 (add-log-time-zone-rule): Rename from change-log-time-zone-rule.
4566 (add-change-log-entry): Use it here, since it's not specific
4567 to iso8601.
4568 (add-log-iso8601-time-string): Don't use it here any more.
4569 (change-log-indent-text, change-log-indent): Rename from add-log-*.
4570
4571 * abbrev.el (abbrev-mode): Tighten up a bit the safety predicate.
4572
4573 2006-04-25 Ryan Yeske <rcyeske@gmail.com>
4574
4575 * net/rcirc.el (rcirc-print): Revert last change with ignored nicks.
4576 (rcirc-toggle-low-priority): Doc fix.
4577 (rcirc-handler-NOTICE): Remove beginning of line anchor in
4578 ChanServ regexp.
4579 (rcirc-startup-channels-alist): Connect to #rcirc by default, not
4580 #emacs.
4581 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Add variables.
4582 (rcirc-decode-coding-system): Use utf-8 as the default.
4583 (rcirc-multiline-minor-mode): Set the fill-column.
4584 (rcirc-format-response-string): Display bright and dim nicks.
4585 (rcirc-browse-url): Update interactive spec to fill ARG.
4586 (rcirc-bright-nick, rcirc-dim-nick): Add faces.
4587 (rcirc-print): Ignore dim-nick messages wrt modeline-activity.
4588
4589 2006-04-24 J.D. Smith <jdsmith@as.arizona.edu>
4590
4591 * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching
4592 case for @Article, etc.
4593
4594 2006-04-23 Michael Albinus <michael.albinus@gmx.de>
4595
4596 * net/tramp.el (tramp-register-file-name-handlers): New defun.
4597 Added with autoload cookie.
4598 (tramp-unload-file-name-handlers): Rename from
4599 `tramp-unload-file-name-handler-alist'.
4600
4601 2006-04-23 Romain Francoise <romain@orebokech.com>
4602
4603 * comint.el (comint-match-partial-filename): Doc fix.
4604
4605 2006-04-21 Glenn Morris <rgm@gnu.org>
4606
4607 * calendar/cal-menu.el (calendar-mode-map): Refer to
4608 `diary-view-entries' rather than alias `view-diary-entries'.
4609 * calendar/diary-lib.el (view-other-diary-entries): Ditto.
4610
4611 2006-04-21 Luc Teirlinck <teirllm@auburn.edu>
4612
4613 * progmodes/antlr-mode.el (antlr-default):
4614 * cus-edit.el (custom-documentation):
4615 * faces.el (scroll-bar, border, cursor, mouse): Avoid nil spec
4616 in defface.
4617
4618 2006-04-21 Kim F. Storm <storm@cua.dk>
4619
4620 * image.el (image-type): New defun split out of create-image.
4621 (create-image): Use it.
4622
4623 2006-04-21 Carsten Dominik <dominik@science.uva.nl>
4624
4625 * textmodes/org.el (org-mode-map): Catch conflict with old allout.el.
4626 (org-open-at-point): Remove the "...done" message to keep output
4627 in the echo area visible.
4628 (org-export-as-xoxo): Fix call to `indent-region'.
4629
4630 2006-04-21 Kevin Ryde <user42@zip.com.au>
4631
4632 * international/mule.el (keyboard-coding-system): defcustom
4633 info-link fixes: "Specify Coding" has been split, keyboard now in
4634 "Terminal Coding", and "Single-Byte Character Support" is now
4635 "Unibyte Mode".
4636
4637 2006-04-21 Nick Roberts <nickrob@snap.net.nz>
4638
4639 * progmodes/gdb-ui.el (gdb-data-list-register-values-handler):
4640 Use font-lock-warning-face for any errors e.g. no stack.
4641 (gdb-stack-list-locals-handler): Display any errors e.g. no stack.
4642
4643 2006-04-20 Dan Nicolaescu <dann@ics.uci.edu>
4644
4645 * progmodes/sh-script.el (sh-shell): Mark as safe.
4646
4647 * newcomment.el (comment-start, comment-start-skip)
4648 (comment-end-skip, comment-end): Mark as safe.
4649
4650 2006-04-20 Carsten Dominik <dominik@science.uva.nl>
4651
4652 * textmodes/org.el (org-deadline-announce): Face removed.
4653 (org-level-faces, org-n-levels): Convert to constant.
4654 (org-compatible-face): New function.
4655 (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
4656 (org-level-5, org-level-6, org-level-7, org-level-8)
4657 (org-special-keyword, org-warning, org-headline-done, org-link)
4658 (org-date, org-tag, org-todo, org-done, org-table, org-formula)
4659 (org-scheduled-today, org-scheduled-previously, org-time-grid):
4660 Face definition revised for better color tty support.
4661 (org-bold-re, org-italic-re, org-underline-re): New constants.
4662 (org-set-font-lock-defaults): Use the new constants.
4663 (org-agenda-highlight-todo): New function.
4664 (org-agenda-todo): Fix bug with point at end of line.
4665 (org-agenda-change-all-lines, org-finalize-agenda-entries):
4666 Fontify TODO keywords.
4667 (org-insert-link): Preserve relative path in ../ links.
4668 (org-export-as-html): Convert links pointing to .org files into
4669 links that will work beteen the exported HTML files.
4670 (org-todo-list): Fix bug when arg=0.
4671 (org-insert-heading): More fine-tuning.
4672
4673 2006-04-19 Romain Francoise <romain@orebokech.com>
4674
4675 * mail/rmail.el (rmail-convert-to-babyl-format): Use second group
4676 from `rmail-mime-charset-pattern'.
4677
4678 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
4679
4680 * progmodes/python.el (python-mode): Fix typo.
4681
4682 2006-04-18 J.D. Smith <jdsmith@as.arizona.edu>
4683
4684 * comint.el (comint-previous-input): Don't clobber input line
4685 when moving off either end of the input history ring.
4686 (comint-delete-input): New function, used by
4687 `comint-previous-input' and others.
4688 (comint-previous-matching-input):
4689 Use `coming-delete-input'. Save the partial input if leaving the
4690 edit line. Goto point-max before deleting input to avoid
4691 partial input fragments hanging around.
4692 (comint-restore-input): New function, used by `comint-previous-input'.
4693
4694 2006-04-18 Luc Teirlinck <teirllm@auburn.edu>
4695
4696 * imenu.el (imenu--index-alist): Balance parentheses.
4697
4698 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
4699
4700 * progmodes/python.el (python-mode): Add support for hs-minor-mode.
4701
4702 2006-04-19 Reiner Steib <Reiner.Steib@gmx.de>
4703
4704 * abbrev.el (read-abbrev-file): Use abbrev-file-name if optional
4705 file is nil.
4706
4707 2006-04-18 Richard Stallman <rms@gnu.org>
4708
4709 * tooltip.el (tooltip-mode, tooltip-use-echo-area): Doc fixes.
4710
4711 * imenu.el (imenu-create-index-function, imenu--index-alist)
4712 (imenu--last-menubar-index-alist, imenu--make-index-alist)
4713 (imenu-default-create-index-function, imenu--generic-function):
4714 Doc fixes.
4715
4716 * image-mode.el (image-toggle-display): Handle tar and arc subfiles.
4717
4718 * help-mode.el (help-mode): Set view-exit-action to delete window.
4719
4720 * env.el (setenv): Get rid of arg UNSET. Interactive unsetting
4721 now works by passing nil as arg.
4722
4723 * apropos.el (apropos-print): Don't do where-is on self-insert-command.
4724
4725 * abbrev.el (edit-abbrevs-redefine): Temporarily widen.
4726 (read-abbrev-file): Provide default when reading filename.
4727
4728 * files.el (enable-local-variables): Allow :all as value.
4729 (hack-local-variables): Implement that value.
4730 (safe-local-variable-values, safe-local-eval-forms)
4731 (enable-local-variables): Mark as risky.
4732 (find-file-visit-truename, kept-old-versions): Mark safe.
4733
4734 * time-stamp.el (time-stamp-format, time-stamp-line-limit)
4735 (time-stamp-start, time-stamp-end, time-stamp-inserts-lines)
4736 (time-stamp-count, time-stamp-pattern): Add safe-local-variable prop.
4737
4738 2006-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4739
4740 * progmodes/tcl.el (tcl-send-string, tcl-send-region):
4741 Use forward-line so as to get to BOL even in the presence of fields.
4742 (tcl-eval-region): Strip surrounding space to avoid multiple prompts
4743 in return.
4744 (inferior-tcl): Tell tclsh to work in interactive mode.
4745
4746 * complete.el (partial-completion-mode):
4747 Use 'choose-completion-string-functions to make sure that
4748 choose-completion fills the minibuffer properly.
4749
4750 * complete.el (PC-old-read-file-name-internal): Remove.
4751 (PC-read-include-file-name-internal): Remove. Turn it into an advice
4752 of read-file-name-internal.
4753 (partial-completion-mode): Enable/disable this advice.
4754
4755 2006-04-18 Juanma Barranquero <lekktu@gmail.com>
4756
4757 * net/tramp.el (tramp-completion-file-name-handler): Revert change
4758 of 2006-04-17.
4759
4760 2006-04-18 Carsten Dominik <dominik@science.uva.nl>
4761
4762 * textmodes/org.el (org-insert-heading): Insert heading before
4763 current if at beginning of line.
4764 (org-todo, org-date): New faces.
4765 (org-table-align): Make sure tooltip window contains full text.
4766 (org-no-properties): New defsubst.
4767 (org-set-font-lock-defaults): Use new faces.
4768
4769 2006-04-18 Nick Roberts <nickrob@snap.net.nz>
4770
4771 * progmodes/gud.el (gud-speedbar-item-info): Display frame address
4772 for root variables.
4773
4774 * progmodes/gdb-ui.el (gdb-pc-address): Rename from gdb-frame-address.
4775 (gdb-frame-address): Re-use to identify frame for watch expression.
4776 (gdb-var-list, gdb-var-create-handler): Add frame address for root
4777 variables.
4778 (gdb-init-1, gdb-source, gdb-post-prompt)
4779 (gdb-assembler-custom, gdb-invalidate-assembler): Use gdb-pc-address.
4780 (gdb-frame-handler): Get gdb-frame-address.
4781
4782 2006-04-17 Michael Albinus <michael.albinus@gmx.de>
4783
4784 Sync with Tramp 2.0.53.
4785
4786 * net/tramp.el (tramp-completion-mode): ?\t has event-modifier
4787 'control. Reported by Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>.
4788 (tramp-completion-file-name-handler): Add autoload cookie for
4789 adding to `file-name-handler-alist'.
4790
4791 * net/tramp-smb.el (tramp-smb-wait-for-output): Wait always for
4792 the prompt. If it returns earlier (when detecting an error
4793 message), the rest of the output will merge accidently with the
4794 output of the next command. Reported by M Jared Finder
4795 <jared@hpalace.com>.
4796
4797 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
4798 for `process-file', in order to let it work for older Emacsen too.
4799
4800 2006-04-17 Ralf Angeli <angeli@iwi.uni-sb.de>
4801
4802 * textmodes/tex-mode.el (tex-font-lock-match-suscript): New function.
4803 (tex-font-lock-keywords-3): Use it.
4804
4805 2006-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
4806
4807 * newcomment.el (comment-add): New function.
4808 (comment-region-default, comment-dwim): Use it.
4809
4810 2006-04-15 Michael Olson <mwolson@gnu.org>
4811
4812 * emacs-lisp/tq.el: Improve comments.
4813 (tq-queue-head-question): New accessor function.
4814 (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn):
4815 Update for modified queue structure.
4816 (tq-queue-add): Accept `question' argument.
4817 (tq-queue-pop): If a question is pending, send it.
4818 (tq-enqueue): Accept new optional argument `delay-question'.
4819 If this is non-nil, and at least one other question is pending a
4820 response, queue the question rather than sending it immediately.
4821
4822 2006-04-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4823
4824 * calendar/appt.el (appt-add): Check whether an appointment is
4825 already present in appt-time-msg-list. Simplify code.
4826
4827 2006-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4828
4829 * progmodes/cc-langs.el (c-mode-menu):
4830 Don't presume c-subword-mode is bound.
4831
4832 2006-04-13 Bill Wohler <wohler@newt.com>
4833
4834 * cus-edit.el (customize-package-emacs-version-alist): Update docstring.
4835 (customize-package-emacs-version): Use cdr instead of cadr now
4836 that alists use dotted pairs.
4837
4838 * custom.el (defcustom): Fix docstring for :package-version.
4839
4840 2006-04-13 Michael Albinus <michael.albinus@gmx.de>
4841
4842 * net/tramp.el (tramp-display-shell-command-buffer): New defvar.
4843 (tramp-handle-shell-command): Display output buffer only when
4844 `tramp-display-shell-command-buffer' is true.
4845 (tramp-handle-process-file): Set `tramp-display-shell-command-buffer'.
4846
4847 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4848
4849 * textmodes/org.el (org-set-autofill-regexps): Set only the local
4850 values of `adaptive-fill-regexp' and `adaptive-fill-function'.
4851
4852 2006-04-13 Romain Francoise <romain@orebokech.com>
4853
4854 * pcvs-parse.el (cvs-parse-table): Use `with-temp-buffer' to avoid
4855 leaving temporary .cvsignore buffers behind.
4856
4857 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4858
4859 * textmodes/org.el (org-set-regexps-and-options)
4860 (org-get-current-options): Better names for the startup folding
4861 options.
4862
4863 2006-04-13 Thien-Thi Nguyen <ttn@gnu.org>
4864
4865 * vc.el (vc-annotate): Arrange for point to end up at the same
4866 line number as in the original, but only when using a new buffer.
4867
4868 2006-04-12 Stuart Herring <herring@lanl.gov> (tiny change)
4869
4870 * files.el (hack-one-local-variable-eval-safep):
4871 Recognize `edebug-form-spec' for `put', but only if it passes
4872 `edebug-basic-spec'. Generalize `put' handling.
4873
4874 * emacs-lisp/edebug.el (edebug-basic-spec): New function for
4875 vetting file-local form specs.
4876
4877 * allout.el (allout-layout): Autoload its `safe-local-variable'
4878 property.
4879
4880 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4881
4882 * textmodes/org.el (org-ctrl-c-ctrl-c): Improve documentation string.
4883 (org-agenda-mouse-1-follows-link)
4884 (org-mouse-1-follows-link): New options.
4885 (org-format-agenda-item): Fix bug if TAGS is nil.
4886 (org-agenda-get-scheduled): Quote `priority' symbol in plist.
4887
4888 2006-04-13 Nick Roberts <nickrob@snap.net.nz>
4889
4890 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers):
4891 GDB 6.1+ gives full filename for "info sources" so use
4892 file-name-nondirectory.
4893
4894 2006-04-12 Romain Francoise <romain@orebokech.com>
4895
4896 * subr.el (read-passwd): Bind `message-log-max' to nil.
4897
4898 2006-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4899
4900 * progmodes/perl-mode.el (perl-indent-new-calculate):
4901 Recompute parse-start after jumping backward by a whole sexp.
4902
4903 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4904
4905 * vc.el (vc-ensure-vc-buffer): Only change current-buffer, not the
4906 window configuration.
4907 (vc-annotate-display-select): Select the buffer so that current-buffer
4908 (and selected-window) is the output buffer at the end of vc-annotate.
4909
4910 2006-04-11 J.D. Smith <jdsmith@as.arizona.edu>
4911
4912 * vc.el (vc-annotate-color-map): Add custom TTY color map for
4913 8-color terminals, to use all of the colors in a sensible order.
4914 256-color terminals work well with the standard map.
4915 (vc-annotate-lines): Only strip the first color character if it
4916 is "#", to allow for terminal-style named colors.
4917 (vc-annotate-warp-version): Pass buf to `goto-line' to ensure
4918 the correct buffer is scrolled.
4919
4920 2006-04-11 Richard Stallman <rms@gnu.org>
4921
4922 * emacs-lisp/bytecomp.el (byte-compile-file):
4923 Bind enable-local-variables to :safe, and make normal-mode obey it.
4924
4925 * files.el (enable-local-variables): Allow value :safe.
4926 (normal-mode): Doc fix.
4927 (hack-local-variables): Implement enable-local-variables = :safe.
4928 (hack-local-variables-confirm): Don't prevent quitting.
4929
4930 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4931
4932 * loadhist.el (unload-feature): A bit of sanity check of
4933 load-history entries. Cancel timer-vars before unbinding them.
4934
4935 * hexl.el (hexl-isearch-search-function): Fix regexp-building code to
4936 quote special chars, and make the trick work on the hex part of the
4937 buffer as well.
4938 (hexl-mode, hexl-save-buffer, hexl-mode-exit)
4939 (hexl-maybe-dehexlify-buffer): Use restore-buffer-modified-p.
4940
4941 * startup.el (normal-splash-screen): Fix last change so we don't wait
4942 2 minutes if we don't show the splash screen.
4943
4944 2006-04-11 Carsten Dominik <dominik@science.uva.nl>
4945
4946 * textmodes/org.el (org-export-plain-list-max-depth)
4947 (org-table-spaces-around-separators)
4948 (org-radio-targets, org-activate-camels)
4949 (org-table-spaces-around-invisible-separators): Options removed.
4950 (org-time-stamp-rounding-minutes, org-remember-templates)
4951 (org-ellipsis, org-activate-links, org-descriptive-links):
4952 New options.
4953 (org-remember-apply-template, org-current-time)
4954 (org-finish-edit-table-field)
4955 (org-link-unescape, org-link-escape)
4956 (org-string-width, org-table-clean-line, org-html-do-expand)
4957 (org-edit-agenda-file-list, org-store-new-agenda-file-list)
4958 (org-read-agenda-file-list): New functions.
4959 (org-table-edit-field)
4960 (org-table-create-or-convert-from-region): New commands
4961 (org-table-toggle-vline-visibility): Command removed.
4962 (org-table-convert-region): Made a command.
4963 (orgtbl-deleta-backward-char,orgtbl-delete-char): Remove commands.
4964 Replace with the normal org- functions.
4965 (org-self-insert-command): Don't trigger realign unnecessarily
4966 when blanking a field that is not full.
4967 (org-mode): `Set buffer-invisibility-spec' for links.
4968 (org-activate-links2): Hide link part and only show descriptive
4969 part of the link.
4970 (org-insert-link): Modify for new linking system.
4971 (org-store-link): Store description separately, for use by
4972 `org-insert-link'.
4973 (org-table-align): Use `org-string-width'.
4974 (defgroup): Completely new group structure for custom variables.
4975 (org-agenda-files): Option: Single file name allowed. Function:
4976 Optional argument unrestrited means ignore any restricitons.
4977 (org-install-agenda-files-menu): Find a buffer in Org-mode before
4978 trying to modify the menu. Use generalized access to
4979 `org-agenda-files.'
4980 (org-agenda-list, org-todo-list, org-cycle-agenda-files)
4981 (org-agenda-file-to-front, org-remove-file, org-diary)
4982 (org-tags-view, org-export-icalendar-all-agenda-files)
4983 (org-export-icalendar-combine-agenda-files): Use generalized
4984 access to `org-agenda-files'.
4985 (org-remember-handler): Correctly preserve heading if present.
4986 (org-table-insert-row, org-table-insert-hline): Deal with
4987 invisible characters.
4988
4989 2006-04-10 J.D. Smith <jdsmith@as.arizona.edu>
4990
4991 * vc.el (vc-annotate-display-mode): Made default 'fullscale.
4992 (vc-annotate-color-map): New 18 element constant
4993 value/saturation, rotating hue colormap, from red->blue.
4994 (vc-annotate-mode-menu): "Default" -> "By Color Map Range".
4995 (vc-annotate-display-select): Switch to annotate-mode elsewhere.
4996 (vc-annotate): To avoid killing the required local variables,
4997 set them before the end of `with-output-to-temp-buffer', and
4998 after first switching to annotate-mode.
4999 (vc-annotate-warp-version): Add buffer argument in goto-line to
5000 ensure annotation, not source, is scrolled.
5001
5002 2006-04-10 Bill Wohler <wohler@newt.com>
5003
5004 * custom.el (defcustom, custom-handle-keyword):
5005 Add :package-version keyword.
5006 (custom-add-package-version): New function. Sets value of new
5007 property 'custom-package-version from :package-version keyword.
5008 (defcustom): Create Common Keywords section in docstring.
5009 (defface, defgroup): Replace definitions of a select few keywords
5010 with a reference to the Common Keywords in defcustom.
5011 (defcustom, defface, defgroup): Replace reference to Customization
5012 chapter in manual with hyperlink.
5013
5014 * cus-edit.el (customize-package-emacs-version-alist):
5015 New variable.
5016 (customize-changed-options): Add check for custom-package-version.
5017 (customize-package-emacs-version): New function to look up Emacs
5018 version corresponding to the given package version.
5019
5020 * emacs-lisp/find-func.el (find-function-regexp): Allow dashes in
5021 defun name, in similar fashion to find-variable-regexp.
5022
5023 2006-04-10 Eli Zaretskii <eliz@gnu.org>
5024
5025 * international/mule-cmds.el (set-locale-environment): Fix last
5026 change for when the locale's preferences don't specify any encoding.
5027
5028 2006-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
5029
5030 * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
5031 so the defined var/fun doesn't need to be quoted.
5032
5033 2006-04-10 Richard Stallman <rms@gnu.org>
5034
5035 * finder.el (finder-mode-map): Add n and p bindings.
5036
5037 2006-04-10 Nick Roberts <nickrob@snap.net.nz>
5038
5039 * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
5040 (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
5041 (gdb-setup-windows): Put something in source window if we can't find
5042 the source file.
5043 (gdb-frame-handler): Make it work again with just assembly.
5044 (gdb-data-list-register-values-handler): Make it work when there is
5045 no stack.
5046
5047 2006-04-09 Richard Stallman <rms@gnu.org>
5048
5049 * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
5050 specs while looking for charset.
5051
5052 * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
5053
5054 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
5055 Make them faces.
5056 (lm-font-lock-keywords): Update appropriately.
5057
5058 2006-04-10 Kim F. Storm <storm@cua.dk>
5059
5060 * simple.el (filter-buffer-substring): Add NOPROPS arg, so
5061 it can also replace buffer-substring-no-properties.
5062
5063 * emulation/cua-base.el (cua-delete-region, cua-paste)
5064 (cua-repeat-replace-region): Use filter-buffer-substring.
5065
5066 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
5067 (cua-cut-region-to-global-mark): Likewise.
5068
5069 * emulation/cua-rect.el (cua--extract-rectangle)
5070 (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
5071
5072 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5073
5074 * textmodes/bibtex.el (bibtex-entry-update): New optional arg
5075 entry-type. Add field delimiters to numerical fields if they are
5076 not present.
5077
5078 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5079
5080 * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
5081 string-const to return value.
5082 (bibtex-remove-delimiters): Use it.
5083
5084 2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
5085
5086 * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
5087 cl-byte-compile-compiler-macro unless it exists.
5088
5089 2006-04-08 Eli Zaretskii <eliz@gnu.org>
5090
5091 * files.el (hack-local-variables-confirm) <offer-save>:
5092 Clarify message text. Suggested by Ralf Angeli.
5093
5094 2006-04-08 Michael Cadilhac <michael.cadilhac@lrde.org>
5095
5096 * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
5097 (delete-extract-rectangle-line): Use `filter-buffer-substring'
5098 instead of `buffer-substring' and `delete-region'. (Most of the
5099 code actually copied from `kill-region'.)
5100
5101 2006-04-08 Ryan Yeske <rcyeske@gmail.com>
5102
5103 * rcirc.el (rcirc-default-server): Rename from rcirc-server.
5104 (rcirc-default-port): Rename from rcirc-port.
5105 (rcirc-default-nick): Rename from rcirc-nick.
5106 (rcirc-default-user-name): Rename from rcirc-user-name.
5107 (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
5108 (rcirc-low-priority-flag): New variable.
5109 (rcirc-decode-coding-system): New defcustom.
5110 (rcirc-encode-coding-system): New defcustom.
5111 (rcirc-coding-system-alist): New defcustom.
5112 (rcirc-multiline-major-mode): New defcustom.
5113 (rcirc-nick): New internal variable.
5114 (rcirc-process): Remove variable.
5115 (rcirc-server-buffer): New variable.
5116 (rcirc): Update to use rcirc-default-* variables above.
5117 (rcirc-connect): Do not add window-configuration-hook-here.
5118 (rcirc-server): New internal variable.
5119 (rcirc-connect): Do not send keepalive pings if
5120 rcirc-keepalive-seconds is nil.
5121 (with-rcirc-server-buffer): New macro.
5122 (rcirc-send-string): Encode with rcirc-encode-coding-system.
5123 (rcirc-server-name): Rename from rcirc-server.
5124 (rcirc-buffer-process): New function.
5125 (rcirc-buffer-nick): New function.
5126 (rcirc-buffer-target): Remove function.
5127 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
5128 New commands.
5129 (rcirc-mode-map): Change binding of C-c C-l to
5130 rcirc-toggle-low-priority.
5131 (rcirc-mode): Initialize coding system based on
5132 rcirc-coding-system-alist. New change-major-mode-hook to part the
5133 channel on a mode change. Make kill-buffer-hook buffer-local.
5134 (rcirc-change-major-mode-hook): New function.
5135 (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
5136 (rcirc-last-post-time): New variable.
5137 (rcirc-process-message): Store the last time user posted a message
5138 to this target.
5139 (rcirc-multiline-minor-mode): New mode.
5140 (rcirc-multiline-minor-mode-map): New mode map.
5141 (rcirc-edit-multiline): Put multiline-edit buffer in
5142 rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
5143 (rcirc-print): Ignore any line starting with an ignored nick.
5144 (rcirc-print): Decode using rcirc-decode-coding-system.
5145 (rcirc-track-minor-mode): Update global-mode-string when disabling
5146 this mode.
5147 (minor-mode-alist): Add LowPri indicator.
5148 (rcirc-toggle-low-priority): New function.
5149 (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
5150 next lowpriority buffer with activity.
5151 (rcirc-record-activity): Sort buffers in rcirc-activity by the
5152 last time the user posted a message in to the target.
5153 (rcirc-update-activity-string): New formatting for low priority
5154 buffers.
5155 (rcirc-split-activity): New function.
5156 (rcirc-handler-PART, rcirc-handler-KICK)
5157 (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
5158 (rcirc-nick-away-alist): New variable.
5159 (rcirc-handler-301): New handler. Away messages are printed once
5160 per change.
5161
5162 2006-04-08 Eli Zaretskii <eliz@gnu.org>
5163
5164 * info.el (Info-follow-nearest-node): Doc fix.
5165
5166 * international/mule-cmds.el (set-locale-environment): Make sure
5167 the coding-system preferred by the locale's language has the same
5168 EOL conversion type as the original buffer-file-coding-system.
5169 (locale-language-names): Add a few MS Windows language codes.
5170
5171 2006-04-07 Richard Stallman <rms@gnu.org>
5172
5173 * simple.el (eval-expression): Doc fix.
5174
5175 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
5176 (eval-defun): Doc fixes.
5177
5178 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
5179
5180 * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
5181
5182 2006-04-07 Nick Roberts <nickrob@snap.net.nz>
5183
5184 * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
5185 GDB list command without argument for greater generality.
5186
5187 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
5188
5189 * subr.el (string-or-null-p): New function.
5190
5191 * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
5192
5193 * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
5194
5195 * files.el: Update comment about safe-local-variable declarations.
5196
5197 2006-04-06 J.D. Smith <jdsmith@as.arizona.edu>
5198
5199 * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
5200 See idlwave.org.
5201
5202 * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
5203 See idlwave.org. Includes code to obsolete idlw-rinfo.el.
5204
5205 * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
5206 See idlwave.org.
5207
5208 * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
5209 version 6.0 (minimal changes). See idlwave.org.
5210
5211 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
5212 6.0 (minimal changes). See idlwave.org.
5213
5214 * progmodes/idlw-rinfo.el: File obsoleted and removed.
5215
5216 2006-04-06 Romain Francoise <romain@orebokech.com>
5217
5218 * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
5219 symmetric encryption features and a new asynchronous interface to
5220 GnuPG. This new version is version 1.4, plus whitespace changes.
5221
5222 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
5223
5224 * files.el: Move some `safe-local-variable' declarations to the
5225 respective files.
5226
5227 * textmodes/ispell.el (ispell-check-comments)
5228 (ispell-local-dictionary): Mark as safe.
5229
5230 * abbrev.el (abbrev-mode): Mark as safe.
5231
5232 * add-log.el (change-log-default-name): Mark as safe.
5233
5234 * textmodes/reftex-vars.el (reftex-vref-is-default)
5235 (reftex-fref-is-default, reftex-level-indent)
5236 (reftex-guess-label-type): Mark as safe.
5237
5238 * textmodes/fill.el (colon-double-space): Mark as safe.
5239
5240 * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
5241 (sentence-end-double-space, sentence-end-without-period)
5242 (sentence-end-without-space, sentence-end, sentence-end-base)
5243 (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
5244
5245 2006-04-06 Kim F. Storm <storm@cua.dk>
5246
5247 * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
5248 the :set-after list.
5249 (ido-downcase-unc-hosts): New user option. Default on.
5250 (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
5251 when it is set, as regexps are now applied on the fly.
5252 (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
5253 Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
5254 on the fly, but only when ido-process-ignore-lists is set.
5255 Do case insensitive filtering if ido-downcase-unc-hosts is set.
5256 Only downcase names if ido-downcase-unc-hosts is set.
5257
5258 2006-04-06 Juanma Barranquero <lekktu@gmail.com>
5259
5260 * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
5261
5262 * woman.el (WoMan-xref-man-page): Fix call to `substring'.
5263
5264 2006-04-05 Kim F. Storm <storm@cua.dk>
5265
5266 * ido.el (ido-mode): Set after ido-unc-hosts and
5267 ido-ignore-unc-host-regexps.
5268 (ido-save-history): Save ido-unc-hosts-cache.
5269 (ido-load-history): Load ido-unc-hosts-cache.
5270 (ido-reread-directory): Refresh unc hosts cache in // dir.
5271
5272 * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
5273 to nil while displaying slash screen.
5274
5275 2006-04-05 Daiki Ueno <ueno@unixuser.org>
5276
5277 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
5278 Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
5279
5280 2006-04-05 Kenichi Handa <handa@m17n.org>
5281
5282 * international/characters.el: Setup cases of Latin, Greek, and
5283 Cyrillic characters in CJK charsets.
5284
5285 2006-03-29 Daiki Ueno <ueno@unixuser.org>
5286
5287 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
5288 default-enable-multibyte-characters. This reverts the change from
5289 revision 6.17 which is no longer necessary because the passphrase
5290 is sent separately now. GnuPG messages are unreadable under
5291 multibyte locales with default-enable-multibyte-characters set to nil.
5292
5293 2006-04-04 Andreas Schwab <schwab@suse.de>
5294
5295 * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
5296 and `byte-compile-warnings' as `safe-local-variable'.
5297
5298 2006-04-04 Dan Nicolaescu <dann@ics.uci.edu>
5299
5300 * man.el (Man-mode-map): Restore the \r binding.
5301 (Man-abstract-xref-man-page): If Man-target-string is a function,
5302 call it.
5303 (Man-highlight-references): Use Man-default-man-entry to get the
5304 target. Deal with xrefs too.
5305 (Man-highlight-references0): Don't call the target function.
5306
5307 * woman.el (WoMan-xref-man-page): Strip the section number, woman
5308 cannot deal with it.
5309
5310 2006-04-04 Daiki Ueno <ueno@unixuser.org>
5311
5312 * pgg-gpg.el: Clean up process buffers every time gpg processes
5313 complete.
5314
5315 2006-04-04 Kenichi Handa <handa@m17n.org>
5316
5317 * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
5318 here.
5319 (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
5320 Temporarily bind inhibit-field-text-motion to t.
5321
5322 2006-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5323
5324 * startup.el (normal-splash-screen): Only set mode-line-format in the
5325 splash buffer, so as not to interfere when debugging the code.
5326 Ignore errors when switching buffer.
5327
5328 2006-04-03 Romain Francoise <romain@orebokech.com>
5329
5330 * dired.el (dired-dnd-protocol-alist): Fix typo.
5331
5332 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
5333
5334 * savehist.el (savehist): Add :version.
5335 (savehist-ignored-variables): New variable.
5336 (savehist-minibuffer-hook): Don't save variables listed in
5337 `savehist-ignored-variables'.
5338
5339 * dired.el (dired-dnd-protocol-alist): Mention that change does
5340 only apply to new buffers in doc string.
5341
5342 2006-04-03 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
5343
5344 * recentf.el (recentf-open-files-item): Include newline in button
5345 field, so opening a file will work, when the point is at the end
5346 of the file name. Allow, for example, to [i]search a file by
5347 extension and just push RET to open it.
5348
5349 2006-04-03 Daiki Ueno <ueno@unixuser.org>
5350
5351 * pgg-gpg.el (pgg-gpg-process-filter)
5352 (pgg-gpg-wait-for-completion): Check if buffer is alive.
5353
5354 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
5355 lines, temporary fix.
5356
5357 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
5358
5359 * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
5360
5361 2006-04-02 Richard Stallman <rms@gnu.org>
5362
5363 * progmodes/compile.el (compilation-message-face): Make it defcustom.
5364
5365 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
5366
5367 * ibuf-macs.el (define-ibuffer-column): Add a new key:
5368 header-mouse-map.
5369
5370 * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
5371 (ibuffer-mode-header-map): New keymaps.
5372 (ibuffer-update-title-and-summary): Enable mouse face highlighting
5373 and keybindings for column headers.
5374 (name,size,mode) <define-ibuffer-column>: Add a header-mouse-map
5375 property.
5376
5377 2006-04-02 Drew Adams <drew.adams@oracle.com> (tiny change)
5378
5379 * speedbar.el (speedbar-after-create-hook): Doc fix.
5380
5381 2006-04-02 Michael Ernst <mernst@alum.mit.edu>
5382
5383 * shell.el (shell-directory-tracker)
5384 (shell-dynamic-complete-command): Doc fixes.
5385
5386 2006-04-01 Matt Hodges <MPHodges@member.fsf.org>
5387
5388 * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
5389 terminals.
5390
5391 2006-04-01 Kim F. Storm <storm@cua.dk>
5392
5393 * ido.el (ido-unc-hosts-cache): New defvar.
5394 (ido-unc-hosts): If value of defcustom is a function, call it to
5395 get list of UNC hosts. Add function-item choices to specify
5396 ido-unc-hosts-net-view or user function.
5397 (ido-ignore-unc-host-regexps): New defcustom.
5398 (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
5399 (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
5400 (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
5401
5402 2006-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
5403
5404 * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
5405 wwidth.
5406
5407 2006-03-31 Juanma Barranquero <lekktu@gmail.com>
5408
5409 * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
5410 (ido-max-work-file-list, ido-switch-buffer)
5411 (ido-read-file-name-as-directory-commands):
5412 Fix typos in docstrings.
5413
5414 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5415
5416 * term/mac-win.el (mac-system-coding-system): Define and use after
5417 Mac-specific coding systems are ready.
5418
5419 2006-03-27 Romain Francoise <romain@orebokech.com>
5420
5421 * net/rcirc.el (rcirc-connect): Add autoload cookie.
5422
5423 * ldefs-boot.el: Update.
5424
5425 2006-03-27 Daiki Ueno <ueno@unixuser.org>
5426
5427 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
5428 passphrases when it is not needed.
5429 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
5430 passphrase stuff from gpg, should only be necessary when you use
5431 gpg with a smartcard.
5432
5433 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
5434
5435 * comint.el (comint-dynamic-list-completions): Allow user to
5436 select *Completions* buffer.
5437
5438 2006-03-27 Carsten Dominik <dominik@science.uva.nl>
5439
5440 * textmodes/org.el (org-get-level-face): Fix bug with level counting.
5441
5442 2006-03-26 Andreas Schwab <schwab@suse.de>
5443
5444 * progmodes/gud.el (gdb): Only complain about multiple debugging
5445 when the gdb process is still running.
5446
5447 2006-03-25 Eli Zaretskii <eliz@gnu.org>
5448
5449 * mail/rmail.el (tool-bar-map): Defvar it.
5450 (rmail-tool-bar-map): Tool-bar buttons for Rmail.
5451 (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
5452
5453 2006-03-25 Sven Joachim <svenjoac@gmx.de> (tiny change)
5454
5455 * help.el (print-help-return-message): Suggest to use
5456 display-buffer instead of switch-to-buffer-other-window to restore
5457 the previous window without selecting it.
5458
5459 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5460
5461 * frame.el (select-frame-by-name): Call x-focus-frame also when
5462 window-system is mac.
5463
5464 * term/mac-win.el: Adjust Courier font specifications in
5465 x-fixed-font-alist.
5466 (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
5467 when directly encoding to UTF-16 in native byte order, no BOM.
5468
5469 2006-03-25 Kim F. Storm <storm@cua.dk>
5470
5471 * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
5472 (cua--init-keymaps): Use it instead of fixed C-return.
5473 (cua-mode): Set after it.
5474
5475 * emulation/cua-rect.el (cua--init-rectangles):
5476 Use cua-rectangle-mark-key instead of fixed C-return.
5477
5478 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
5479
5480 * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
5481 "run" in .gdbinit.
5482 (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
5483
5484 2006-03-24 Romain Francoise <romain@orebokech.com>
5485
5486 * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
5487 `display-buffer-other-frame'.
5488
5489 2006-03-24 Kim F. Storm <storm@cua.dk>
5490
5491 * apropos.el (apropos-synonyms): Add selection => region.
5492
5493 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
5494
5495 * progmodes/gdb-ui.el (gdb-var-create-regexp)
5496 (gdb-var-list-children-regexp, gdb-var-update-regexp)
5497 (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
5498 (gdb-data-list-register-values-regexp)
5499 (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
5500 Future proof against new fields being added to MI output.
5501 (gdb-send): Don't treat backslashes for program input as
5502 continuations.
5503 (gdb-assembler-handler): Don't use window-start for this handler.
5504 (gdb-frame-handler): Don't change to hollow arrow if overlay
5505 arrow doesn't move to new frame.
5506
5507 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
5508
5509 * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
5510 prevent compiler warnings.
5511 (gdb-stopped): Check for gud-last-last-frame (case: signal).
5512 (breakpoint-disabled): Make lighter for contrast with overlay arrow.
5513 (gdb-assembler-custom): Use hollow-right-triangle for assembler
5514 buffer too.
5515
5516 2006-03-23 Reiner Steib <reinersteib+gmane@imap.cc>
5517
5518 * pgg-gpg.el (pgg-gpg-update-agent): Check for
5519 make-network-process, so we can use the same code in Gnus v5-10
5520 too and have this file fully synchronized with that release.
5521
5522 2006-03-23 Romain Francoise <romain@orebokech.com>
5523
5524 * ibuf-ext.el (ibuffer-read-filter-group-name):
5525 Use `ibuffer-generate-filter-groups' to make completion list match
5526 the filter groups that are really displayed in the Ibuffer buffer.
5527 (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
5528
5529 2006-03-23 Kenichi Handa <handa@m17n.org>
5530
5531 * international/mule-cmds.el (sort-coding-systems): Describe that
5532 the argument is modified in docstring.
5533
5534 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
5535
5536 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
5537 (pgg-gpg-update-agent): New function.
5538 (pgg-gpg-use-agent-p): New function.
5539 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
5540 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
5541 (pgg-gpg-sign-region): Use it.
5542
5543 2006-03-21 Chong Yidong <cyd@stupidchicken.com>
5544
5545 * cus-edit.el (custom-face-set): Call custom-push-theme before
5546 face-spec set so that `changed' theme is correctly saved.
5547 (custom-face-reset-standard): Reset to recalculated face rather
5548 than defface spec.
5549
5550 * custom.el (custom-push-theme): Only save `changed' theme if the
5551 current face does not match the defface specs.
5552
5553 2006-03-21 Simon Josefsson <jas@extundo.com>
5554
5555 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
5556 <wilde@sha-bang.de>.
5557 (pgg-gpg-use-agent): New variable.
5558 (pgg-gpg-process-region): Use it.
5559 (pgg-gpg-encrypt-region): Likewise.
5560 (pgg-gpg-encrypt-symmetric-region): Likewise.
5561 (pgg-gpg-decrypt-region): Likewise.
5562 (pgg-gpg-sign-region): Likewise.
5563 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
5564
5565 2006-03-21 Carsten Dominik <dominik@science.uva.nl>
5566
5567 * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
5568 bracket links.
5569
5570 2006-03-21 Kim F. Storm <storm@cua.dk>
5571
5572 * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
5573 fringe-indicator-alist instead of modifying global value.
5574 (gdb-frame-handler): Likewise.
5575
5576 2006-03-21 Nick Roberts <nickrob@snap.net.nz>
5577
5578 * diff-mode.el (diff-function): Make it inherit from diff-header
5579 instead of diff-context.
5580
5581 * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
5582 bitmap.
5583 (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
5584 change names in macro above for consistency.
5585 (gdb-frame-handler): Use hollow-right-triangle for all selected
5586 frames which except the innermost (where execution has stopped).
5587 (gdb-reset): Reset buffer-local values of overlay-arrow.
5588
5589 2006-03-20 Richard Stallman <rms@gnu.org>
5590
5591 * simple.el (set-mark-command): Doc fix.
5592
5593 * files.el (display-buffer-other-frame): New command.
5594 (ctl-x-4-map): Bind C-x 5 C-o to it.
5595
5596 2006-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
5597
5598 * jit-lock.el (jit-lock-function): Check for the actual defer-timer
5599 rather than just defer-time, in case defer-time has been changed but
5600 the timer isn't running yet.
5601 (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
5602
5603 2006-03-19 Luc Teirlinck <teirllm@auburn.edu>
5604
5605 * help-mode.el (help-follow-symbol): New function.
5606 Essentially identical to the old `help-follow', but do not let
5607 `push-button' do the work when on an xref.
5608 (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
5609
5610 2006-03-19 Richard Stallman <rms@gnu.org>
5611
5612 * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
5613 preceded by the word `program'.
5614 (help-follow-mouse, help-follow): Throw error if not on xref.
5615 Delete no longer used args.
5616
5617 2006-03-20 Nick Roberts <nickrob@snap.net.nz>
5618
5619 * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
5620 annotation ensure gud-overlay-arrow-position is redisplayed.
5621
5622 2006-03-19 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5623
5624 * textmodes/bibtex.el (bibtex-include-OPTkey)
5625 (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
5626 (bibtex-autokey-name-case-convert)
5627 (bibtex-autokey-titleword-case-convert): Make these the aliases
5628 for the following two variables.
5629 (bibtex-autokey-name-case-convert-function)
5630 (bibtex-autokey-titleword-case-convert-function): Make these the
5631 real names.
5632 (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
5633 bibtex-font-lock-crossref sublists.
5634 (bibtex-mode): Revert 2005-12-30 change (which made
5635 completion-ignore-case buffer-local).
5636 (bibtex-url): Simplify.
5637
5638 2006-03-19 Kim F. Storm <storm@cua.dk>
5639
5640 * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
5641 cursor property value to 2 (to align with C level change).
5642
5643 2006-03-19 Bill Wohler <wohler@newt.com>
5644
5645 * image.el (image-load-path-for-library): Shorten first line in
5646 docstring.
5647
5648 2006-03-18 Richard Stallman <rms@gnu.org>
5649
5650 * mail/rmail.el (rmail-reply-regexp): Undo previous change.
5651
5652 2006-03-18 Ben North <ben@redfrontdoor.org> (tiny change)
5653
5654 * isearch.el (isearch-other-meta-char): Handle user bindings for
5655 shifted control characters.
5656
5657 2006-03-18 Agustin Martin <agustin.martin@hispalinux.es>
5658
5659 * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
5660 part that matches email addresses, file names, etc.
5661
5662 2006-03-18 Eli Zaretskii <eliz@gnu.org>
5663
5664 * term/w32-win.el (mouse-set-font):
5665 Mention w32-list-proportional-fonts in the doc string.
5666
5667 2006-03-18 Kim F. Storm <storm@cua.dk>
5668
5669 * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
5670 (ido-unc-hosts): New user option to explicitly define list of know
5671 UNC-style hosts for completion.
5672 (ido-cache-unc-host-shares-time): New user option.
5673 (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
5674 New helper functions for UNC file-name support.
5675 (ido-may-cache-directory): Check for UNC host. Simplify.
5676 (ido-wash-history): Clean out old UNC hosts.
5677 (ido-nonreadable-directory-p): UNC hosts are always readable.
5678 (ido-directory-too-big-p): UNC hosts are never too big.
5679 (ido-set-current-directory): Handle UNC root path.
5680 (ido-file-name-all-completions): Complete UNC host names from
5681 ido-unc-hosts list. Cache UNC host shares.
5682 (ido-make-file-list-1): Don't filter UNC root.
5683 (ido-exhibit): Check for // in root directory, and switch to UNC
5684 mode by setting ido-current-directory to //.
5685
5686 2006-03-17 Luc Teirlinck <teirllm@auburn.edu>
5687
5688 * cus-edit.el (customize-changed-options): Mention explicit
5689 version number as default in prompt.
5690
5691 2006-03-17 Bill Wohler <wohler@newt.com>
5692
5693 * image.el (image-load-path-for-library): Minor docstring fix.
5694
5695 2006-03-17 Carsten Dominik <dominik@science.uva.nl>
5696
5697 * textmodes/org.el (org-read-date): Include subgroup 5 into
5698 replacement text.
5699 (org-popup-calendar-for-date-prompt): Fix customization type.
5700
5701 2006-03-17 Nick Roberts <nickrob@snap.net.nz>
5702
5703 * progmodes/gdb-ui.el (gud-watch): Provide completion.
5704 (gdb-continuation): New variable.
5705 (gdb-send): Deal with continuation lines.
5706
5707 * progmodes/gud.el (gud-gdb-complete-command)
5708 (gud-gdb-run-command-fetch-lines): Adapt for use with watch
5709 expressions.
5710 (gud-tooltip-mode): Use buffer-local value.
5711
5712 2006-03-16 Kim F. Storm <storm@cua.dk>
5713
5714 * ido.el (ido-edit-input): Use selected match, if any.
5715
5716 2006-03-16 Bill Wohler <wohler@newt.com>
5717
5718 * image.el (image-load-path-for-library): Prefer user's images in
5719 image-load-path.
5720
5721 2006-03-16 Martin Rudalics <rudalics@gmx.at>
5722
5723 * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
5724 when checking for attempt to drag leftmost or rightmost scrollbar.
5725
5726 2006-03-16 Nick Roberts <nickrob@snap.net.nz>
5727
5728 * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
5729 (gdb-force-mode-line-update): New function.
5730 (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
5731 (gdb-exited): Use them.
5732 (gdb-signal): New function.
5733 (gdb-annotation-rules): Provide a rule for it.
5734
5735 2006-03-16 Kenichi Handa <handa@m17n.org>
5736
5737 * international/mule.el (auto-coding-regexp-alist): Add entries
5738 for Unicode BOM.
5739
5740 * sort.el (sort-build-lists): Temporarily bind
5741 inhibit-field-text-motion to t.
5742
5743 2006-03-15 Luc Teirlinck <teirllm@auburn.edu>
5744
5745 * locate.el (locate-command, locate-make-command-line)
5746 (locate-fcodes-file, locate-update-command)
5747 (locate-prompt-for-command, locate, locate-with-filter)
5748 (locate-get-file-positions): Doc fixes.
5749 (locate-buffer-name, locate-header-face): Remove leading `*' in
5750 defcustom.
5751 (locate-filter-output): Use `keep-lines' instead of its alias
5752 `delete-non-matching-lines'.
5753 (locate-get-filename, locate-get-dirname): Add introductory comment.
5754 (locate-find-directory-other-window): Give appropriate error
5755 message if used outside main listing.
5756
5757 2006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
5758
5759 * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
5760 the new extend-region feature.
5761 (font-lock-after-change-function): Update correspondingly.
5762 * jit-lock.el (jit-lock-after-change): Update correspondingly.
5763 * progmodes/grep.el (font-lock-lines-before): Don't disable.
5764
5765 2006-03-15 Bill Wohler <wohler@newt.com>
5766
5767 * image.el (image-load-path-for-library): Fix example by not
5768 recommending that one binds image-load-path. Just defvar it to
5769 placate compiler and only use it if previously defined.
5770
5771 2006-03-15 Carsten Dominik <dominik@science.uva.nl>
5772
5773 * textmodes/org.el (org-insert-centered): Use `string-width' to
5774 make underlining work for wide characters.
5775 (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
5776 TAB to `org-cycle', to make sure that no binding in
5777 `outline-mode-map' can supercede it.
5778
5779 2006-03-14 Ken Manheimer <ken.manheimer@gmail.com>
5780
5781 * allout.el: Increment version to 2.2.1 in file commentary.
5782
5783 (allout-version): Increment to 2.2.1.
5784
5785 (allout-default-layout): New customization variable, used when the
5786 file lacks a specific allout-layout. Uses allout-layout-type for
5787 recursively nested definition.
5788
5789 (allout-layout-type): Widget defining allout layouts, necessary for
5790 self-recursive definition.
5791
5792 (allout-mode): Incorporate allout-default-layout as fallback for
5793 allout-layout.
5794
5795 (allout-layout): Mark as 'safe-local-variable', and refer mention
5796 fallback to `allout-default-layout' in absence of a specified value.
5797 (allout-passphrase-verifier-string)
5798 (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
5799
5800 (allout-file-passphrase-verifier-string): Obsolete variable, removed.
5801
5802 (allout-get-encryption-passphrase-verifier): Use correct name of
5803 passphrase verifier in docstring.
5804
5805 2006-03-15 Nick Roberts <nickrob@snap.net.nz>
5806
5807 * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
5808 elements.
5809 (gdb-find-watch-expression): Make it work for arrays too.
5810 Follow change to gdb-var-list.
5811 (gud-watch): Allow the user to enter variable name with a prexix
5812 arg. Create keybindings.
5813 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
5814 (gdb-var-list-children-handler, gdb-var-update-handler)
5815 (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
5816 (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
5817 Follow change to gdb-var-list.
5818 (gdb-starting): Don't show the overlay arrows when program is running.
5819
5820 * progmodes/gud.el (gud-speedbar-buttons): Follow change to
5821 gdb-var-list.
5822
5823 2006-03-14 Bill Wohler <wohler@newt.com>
5824
5825 * image.el (image-load-path-for-library): Pass value of path
5826 rather than symbol. Always return list of directories.
5827 Guarantee that image directory comes first.
5828
5829 2006-03-14 Alan Mackenzie <acm@muc.de>
5830
5831 * font-core.el (font-lock-extend-region\(-function\)?.):
5832 New function/variable.
5833
5834 * font-lock.el (font-lock-after-change-function):
5835 Call font-lock-extend-region. Obey font-lock-lines-before.
5836 (font-lock-default-fontify-region): Remove reference to
5837 font-lock-lines-before.
5838
5839 * jit-lock.el (jit-lock-after-change):
5840 Call font-lock-extend-region. Obey font-lock-lines-before.
5841
5842 2006-03-14 David Ponce <david@dponce.com>
5843
5844 * tree-widget.el (tree-widget-themes-load-path)
5845 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
5846
5847 2006-03-13 Ryan Yeske <rcyeske@gmail.com>
5848
5849 * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
5850 (rcirc-print): Mark the start of text at the end of the prompt.
5851 (rcirc-track-minor-mode): Add autoload cookie.
5852 (rcirc-update-activity-string): Add space to front of mode-line
5853 indicator.
5854
5855 2006-03-13 Miles Bader <miles@gnu.org>
5856
5857 * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
5858 (rcirc-abbrev-nick): Remove function.
5859 (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
5860
5861 2006-03-13 David Ponce <david@dponce.com>
5862
5863 * tree-widget.el: Handle themes across all occurrences of the main
5864 themes sub-directory found in tree-widget-themes-load-path.
5865 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
5866 (tree-widget--locate-sub-directory): Return all occurrences.
5867 (tree-widget-themes-path): New function.
5868 Replace tree-widget-themes-directory, and return a list of directories.
5869 (tree-widget-set-parent-theme)
5870 (tree-widget-lookup-image): Use it.
5871
5872 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
5873
5874 * textmodes/org.el (org-link-search): Avoid self-matching of
5875 links, allow target text to be distributed over several lines.
5876 (org-search-not-link): New function.
5877 (org-set-regexps-and-options, org-get-current-options):
5878 New startup options.
5879 (org-export-as-html): Take odd-level setting from local variable.
5880 (org-fontify-emphasized-text): New option.
5881 (org-set-font-lock-defaults): Include emphasized text.
5882 (org-follow-mhe-link): Allow folder-only links, fix folder name.
5883 (org-font-lock): Customize group renamed from `org-faces'.
5884
5885 2006-03-13 John Paul Wallington <jpw@pobox.com>
5886
5887 * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
5888 keyword; require `ibuf-ext' feature. Thanks to Zhang Wei.
5889
5890 2006-03-12 Luc Teirlinck <teirllm@auburn.edu>
5891
5892 * cus-start.el (all): Delete :version keyword for members of the
5893 fringe group, since the entire group is new in 22.1.
5894
5895 2006-03-13 Nick Roberts <nickrob@snap.net.nz>
5896
5897 * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
5898 map if value is hexadecimal (an address).
5899 (gud-watch): Only search roots for existing watch expressions.
5900 (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
5901 prevent caching problems with speedbar-update-directory-contents.
5902
5903 2006-03-12 Juri Linkov <juri@jurta.org>
5904
5905 * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
5906 before comparing with `low' and `warn'.
5907
5908 * info.el (Info-dir-remove-duplicates): Move point to the
5909 beginning of the current line after deleting the entries from
5910 redundant heading. Use marker for `limit' and compare it with
5911 point before calling `re-search-forward'.
5912
5913 2006-03-11 Luc Teirlinck <teirllm@auburn.edu>
5914
5915 * simple.el (yank): Fix typo in docstring.
5916
5917 2006-03-11 Ryan Yeske <rcyeske@gmail.com>
5918
5919 * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
5920 messages, where "D" is the 6th character.
5921
5922 2006-03-11 Eli Zaretskii <eliz@gnu.org>
5923
5924 * simple.el (yank): Fix last change.
5925
5926 2006-03-11 David Ponce <david@dponce.com>
5927
5928 * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
5929 merging elements from the standard ispell-dictionary-alist.
5930 (ispell-aspell-add-aliases): Add aliases to the passed dictionary
5931 alist, and return the new alist.
5932
5933 2006-03-11 Richard Stallman <rms@gnu.org>
5934
5935 * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
5936
5937 * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
5938 the way it is implemented is too unclean.
5939
5940 * simple.el (kill-region, yank): Doc fix.
5941
5942 * battery.el (battery-echo-area-format): Doc fix.
5943 (battery-mode-line-format): Likewise.
5944 (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
5945 (battery-linux-proc-acpi): Ignore batteries that say "charged".
5946
5947 2006-03-11 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
5948
5949 * progmodes/octave-mod.el (octave-indent-for-comment):
5950 Behave according to do string.
5951
5952 2006-03-11 Agustin Martin <agustin.martin@hispalinux.es>
5953
5954 * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
5955 Be visible only if major mode is Mail Mode.
5956
5957 * textmodes/flyspell.el (flyspell-external-point-words)
5958 (flyspell-process-localwords): Fix last changes.
5959
5960 2006-03-11 Eli Zaretskii <eliz@gnu.org>
5961
5962 * calendar/holidays.el (list-holidays): Doc fix.
5963
5964 * international/mule.el (auto-coding-alist): Add .odt
5965 (OpenOffice's open document) files.
5966
5967 * files.el (auto-mode-alist): Add .odt (OpenOffice's open
5968 document) files. Mention in the doc string the need to sync with
5969 auto-coding-alist.
5970
5971 2006-03-10 Chong Yidong <cyd@stupidchicken.com>
5972
5973 * files.el (hack-local-variables-confirm): Don't prompt for ! if
5974 enable-local-variables is set to always query, or there is no
5975 savable variable.
5976
5977 2006-03-10 Bill Wohler <wohler@newt.com>
5978
5979 * image.el (image-load-path-for-library): Merge at least three
5980 functions from Gnus and MH-E into this one function that can now
5981 be shared.
5982
5983 2006-03-11 Nick Roberts <nickrob@snap.net.nz>
5984
5985 * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
5986 gdb-remove-mouse-face and remove help-echo too.
5987 (gdb-enqueue-input): Correct conditional clause.
5988
5989 2006-03-10 Glenn Morris <rgm@gnu.org>
5990
5991 * calendar/calendar.el (calendar-holidays): Doc fix.
5992 * calendar/holidays.el (list-holidays): Doc fix.
5993
5994 2006-03-10 Nick Roberts <nickrob@snap.net.nz>
5995
5996 * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
5997 it gets called in gdb-prompt anyway.
5998 (gdb-use-separate-io-buffer): Only restore window arrangement for
5999 gdb-many-windows.
6000 (gdb-enqueue-input): Make it harder to send GDB input when program
6001 is running.
6002 (gdb-buffer-list): New variable.
6003 (gdb-remove-mouse-face): New function.
6004 (gdb-starting): Use it when GDB input won't get sent.
6005
6006 2006-03-08 Juanma Barranquero <lekktu@gmail.com>
6007
6008 * help.el (view-lossage): Remove trailing whitespace before
6009 inserting "\n".
6010
6011 2006-03-07 Chong Yidong <cyd@stupidchicken.com>
6012
6013 * files.el (hack-local-variables-confirm):
6014 Set coding-system-for-read to nil before writing to .emacs.
6015
6016 * arc-mode.el (archive-extract): Check if an existing buffer name
6017 comes from a different archive.
6018
6019 * help.el (describe-key-briefly): If KEY is a down event, read and
6020 discard the up event.
6021
6022 2006-03-07 Nick Roberts <nickrob@snap.net.nz>
6023
6024 * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
6025 be edited and use font-lock-warning-face for any changes.
6026
6027 * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
6028 (gdb-edit-value): Use it to report any errors.
6029
6030 2006-03-07 Juanma Barranquero <lekktu@gmail.com>
6031
6032 * help.el (describe-key): Remove leftover test code.
6033
6034 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
6035
6036 * textmodes/org.el: Move defvars out of eval-when-compile.
6037 Use buffer-file-name variable.
6038 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
6039 arg `file'.
6040 (org-level-faces): Remove startup dependency.
6041 (org-cycle, org-map-tree, org-scan-tags)
6042 (org-remember-handler): Don't call `outline-level' directly.
6043 (org-mhe-search-all-folders): New option.
6044 (org-mhe-get-message-folder-from-index)
6045 (org-mhe-get-message-folder): Fix indexing search.
6046 (org-format-agenda-item): Handle nil TAGS argument.
6047 (org-cleaned-string-for-export, org-activate-target-links)
6048 (org-make-target-link-regexp): Deal with empty radio target list.
6049 (org-tag): New face.
6050 (org-get-level-face): New function.
6051 (org-set-font-lock-defaults): Simplify setup for headlines.
6052 (org-complete): Pass common substring to `display-completion-list'.
6053
6054 2006-03-06 David Ponce <david@dponce.com>
6055
6056 * tree-widget.el: Update Commentary header.
6057 (tree-widget-theme-name): Ignore parent themes.
6058 (tree-widget-set-parent-theme): New function.
6059 (tree-widget-set-theme): Use it.
6060 (tree-widget-set-image-properties): Move definition. Does nothing
6061 if image properties have already been set.
6062 (tree-widget-image-properties): Move definition. Receive an image
6063 name. Set the :pointer property.
6064 (tree-widget-lookup-image): Doc fix. Search in parent themes.
6065 Don't set the :pointer image property.
6066 (tree-widget-convert-widget): New function. Handle :dynargs
6067 compatibility here.
6068 (tree-widget): Use it to :convert-widget. Add the :expander-p
6069 predicate to control when the :expander function is entered.
6070 Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
6071 (tree-widget-value-create): Handle :expander-p. widget-apply
6072 :expander.
6073 (tree-widget-expander-p): New function. Default value of the
6074 :expander-p property.
6075
6076 2006-03-06 Chong Yidong <cyd@stupidchicken.com>
6077
6078 * help.el (describe-key): Properly handle the return value of
6079 read-key-sequence when grabbing an up-event. Cleanup mouse-1
6080 remaps. Handle string and vector `follow-link' values.
6081
6082 2006-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
6083
6084 * complete.el (PC-expand-many-files): Try be more careful when parsing
6085 the shell's output.
6086
6087 2006-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
6088
6089 * outline.el (hide-sublevels): Provide better interactive default.
6090
6091 2006-03-06 Kenichi Handa <handa@m17n.org>
6092
6093 * international/fontset.el (create-fontset-from-fontset-spec):
6094 Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
6095
6096 2006-03-05 Luc Teirlinck <teirllm@auburn.edu>
6097
6098 * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
6099 backslashes instead of one in regexp.
6100 (gud-tooltip-dereference): Add missing optional argument.
6101
6102 2006-03-04 John Paul Wallington <jpw@pobox.com>
6103
6104 * wdired.el (toplevel): Require `cl' at compile-time.
6105
6106 2006-03-04 Andreas Schwab <schwab@suse.de>
6107
6108 * server.el (server-process-filter): Handle errors during
6109 evaluation of the argument.
6110
6111 2006-03-03 John Paul Wallington <jpw@pobox.com>
6112
6113 * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
6114 escape parentheses at beginning of line.
6115 (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
6116 (t-mouse-mode): Remove period from end of error message.
6117
6118 2006-03-03 Agustin Martin <agustin.martin@hispalinux.es>
6119
6120 * textmodes/flyspell.el (flyspell-process-localwords):
6121 Be case-sensitive.
6122
6123 2006-03-03 Martin Rudalics <rudalics@gmx.at>
6124
6125 * cus-edit.el (custom-quote): Remove function, since it has been
6126 moved to custom.el.
6127
6128 * font-lock.el (lisp-font-lock-keywords-2)
6129 * emacs-lisp/rx.el (rx-check-any, rx-check-not)
6130 * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
6131 they have no special meaning.
6132
6133 * midnight.el (clean-buffer-list): Handle case where base-buffer of
6134 indirect buffer gets killed before indirect buffer. Use dolist.
6135
6136 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
6137
6138 * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
6139 value instead of a literal constant (1) on more pauses.
6140
6141 2006-03-03 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
6142
6143 * textmodes/flyspell.el (flyspell-external-point-words):
6144 Be case-sensitive.
6145
6146 2006-03-03 Ryan Yeske <rcyeske@gmail.com>
6147
6148 * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
6149 with "www".
6150
6151 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
6152
6153 * allout.el: Restablish intermediate missing comment header to
6154 preserve outline structure.
6155 (allout-beginning-of-current-entry): Skip invisible text.
6156 (allout-open-topic): Fix opening a topic at end-of-buffer.
6157 (allout-minor-mode): Move nearer to allout-mode function.
6158
6159 2006-03-02 Carsten Dominik <dominik@science.uva.nl>
6160
6161 * textmodes/org.el (org-paste-subtree): Remove (debug) form.
6162
6163 2006-03-02 Nick Roberts <nickrob@snap.net.nz>
6164
6165 * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
6166 is nil.
6167
6168 * progmodes/gud.el (gud-speedbar-menu-items):
6169 Use buffer-local-value and add missing :visible keyword.
6170
6171 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
6172
6173 2006-03-01 Carsten Dominik <dominik@science.uva.nl>
6174
6175 * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
6176 must be `follow-link'.
6177
6178 * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
6179
6180 * textmodes/org.el (org-export-as-html): Fix bugs in HTML
6181 formatting: No nested anchors.
6182 (org-all-targets): Fix bug with XEmacs compatibility.
6183 (org-read-date): Add (require 'parse-time).
6184 (org-set-tags): Fix bug with extra inserted space.
6185 (org-export-html-style): Define a style class for targets.
6186 (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
6187 (org-hide-leading-stars): New option.
6188 (org-hide): New face.
6189 (org-set-font-lock-defaults): Allow to hide leading stars.
6190 (org-get-legal-level, org-tr-level): New functions.
6191 (org-odd-levels-only): New option.
6192 (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
6193 (org-demote, org-promote): Deal with double-star levels.
6194 (org-convert-to-odd-levels): New command.
6195
6196 2006-03-01 Nick Roberts <nickrob@snap.net.nz>
6197
6198 * speedbar.el (speedbar-update-localized-contents): Try to
6199 preserve window-start.
6200 (speedbar-update-directory-contents): Try to preserve window-start
6201 and window-point.
6202 (speedbar-update-special-contents): Don't move back to start of window.
6203
6204 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
6205 gdb-speedbar-timer-fn. Use speedbar-refresh instead of
6206 speedbar-timer-fn.
6207 (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
6208 (gdb-speedbar-expand-node): Use speedbar-delete-subblock
6209 instead of gdb-speedbar-timer-fn.
6210
6211 2006-02-28 Jay Belanger <belanger@truman.edu>
6212
6213 * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
6214 (math-compose-expr): Use latex option when calling
6215 `math-compose-tex-matrix' for latex mode.
6216
6217 2006-02-28 Nick Roberts <nickrob@snap.net.nz>
6218
6219 * speedbar.el: Re-instate comments about developing for speedbar
6220 [this is what info and gdb-ui use even if better methods exist now].
6221
6222 * t-mouse.el: New file.
6223 (t-mouse-tty): Use with-temp-buffer. Add more terminal types.
6224 (t-mouse-lispy-buffer-posn-from-coords): Remove.
6225 (t-mouse-make-event-element): Use posn-at-x-y instead.
6226 (t-mouse-make-event): Deal with Fedora Core 3.
6227 (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
6228 (t-mouse-mouse-position-function): New function. Use it instead
6229 of advising mouse-position.
6230 (t-mouse-mode): New minor mode.
6231 (t-mouse-stop, t-mouse-run): Remove. Use t-mouse-mode instead.
6232
6233 2006-02-27 Glenn Morris <rgm@gnu.org>
6234
6235 * calendar/calendar.el (calendar-holidays): Doc fix.
6236
6237 2006-02-27 Nick Roberts <nickrob@snap.net.nz>
6238
6239 * progmodes/gdb-ui.el (gdb-source-window): New variable.
6240 Re-introduce the concept of a source window.
6241 (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
6242 consistency with get-buffer-create.
6243 (def-gdb-auto-update-handler, gdb-info-locals-handler)
6244 (gdb-data-list-register-values-handler)
6245 (gdb-stack-list-locals-handler): Try to preserve window-start as
6246 well as window-point.
6247 (gdb-display-source-buffer): New function (old concept).
6248 (gdb-goto-breakpoint): Use it.
6249
6250 * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
6251 for gdb-ui/gdb-mi (old concept).
6252
6253 2006-02-27 Carsten Dominik <dominik@science.uva.nl>
6254
6255 * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
6256 binding.
6257
6258 * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
6259
6260 * textmodes/reftex-sel.el (reftex-select-label-map)
6261 (reftex-select-bib-map): Add `follow-mouse' binding.
6262
6263 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
6264
6265 * jka-cmpr-hook.el (jka-compr-compression-info-list)
6266 (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
6267 Give :set functions to provide automatic updating.
6268 Update docstring. Give compiler defvars early in the file
6269 and move the defcustoms to a later spot where all called functions
6270 are defined.
6271 (jka-compr-file-name-handler-entry): Doc fix.
6272 (jka-compr-compression-info-list--internal)
6273 (jka-compr-mode-alist-additions--internal)
6274 (jka-compr-load-suffixes--internal): New variables.
6275 (jka-compr-install): Set the three above variables.
6276 Update `load-file-rep-suffixes' instead of `load-suffixes'.
6277 (jka-compr-update, jka-compr-set): New functions.
6278 (auto-compression-mode): Doc fix.
6279
6280 * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
6281 Update `load-file-rep-suffixes' instead of `load-suffixes'.
6282 Use jka-compr-compression-info-list--internal,
6283 jka-compr-mode-alist-additions--internal and
6284 jka-compr-load-suffixes--internal.
6285
6286 * files.el (load-library):
6287 * loadhist.el (file-loadhist-lookup):
6288 * startup.el (command-line):
6289 * subr.el (locate-library):
6290 * emacs-lisp/autoload.el (update-directory-autoloads):
6291 * emacs-lisp/find-func.el (find-library-suffixes):
6292 Use `get-load-suffixes' instead of `load-suffixes'.
6293
6294 * subr.el (locate-library):
6295 * emacs-lisp/find-func.el (find-library-name):
6296 Use `load-file-rep-suffixes' instead of '("").
6297
6298 2006-02-26 Kim F. Storm <storm@cua.dk>
6299
6300 * ido.el (ido-save-history, ido-load-history): Simplify.
6301 Don't use find-file-noselect to avoid interference from other modes.
6302
6303 2006-02-25 Thien-Thi Nguyen <ttn@gnu.org>
6304
6305 * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
6306 to use the default shell if filename is not available.
6307 Reported by Giorgos Keramidas.
6308
6309 2006-02-25 John Williams <jrw@pobox.com> (tiny change)
6310
6311 * progmodes/etags.el (tags-completion-table): Do completion from
6312 all the tables in the current list, as documented in the manual.
6313
6314 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6315
6316 * CC Mode Update to 5.31.3.
6317
6318 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6319
6320 * progmodes/cc-mode.el (c-postprocess-file-styles):
6321 Bind inhibit-read-only to t, around the call to
6322 c-remove-any-local-eval-or-mode-variables, so that it works on a
6323 RO file.
6324
6325 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6326
6327 * progmodes/cc-awk.el: Correct a typo.
6328
6329 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6330
6331 * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
6332 c-hungry-delete-backwards, at the request of RMS. Leave the old
6333 name as an alias.
6334
6335 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6336
6337 * progmodes/cc-mode.el: Correct a typo.
6338
6339 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6340
6341 * progmodes/cc-defs.el: Update the version number to 5.31.3.
6342
6343 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6344
6345 * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
6346 brace-else-brace (error due to mbeg, mend being undefined).
6347
6348 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6349
6350 * progmodes/cc-mode.el: File Local variables: Solve the problem
6351 where both `mode' and c-file-offsets are specified: `mode' will
6352 overwrite c-f-o's settings:
6353 (c-remove-any-local-eval-or-mode-variables): New function.
6354 (c-postprocess-file-styles): Call the above new function, within
6355 c-tentative-buffer-change, to splat `mode' and `eval' before the
6356 second hack-local-variables.
6357
6358 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6359
6360 * progmodes/cc-mode.el:
6361 [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
6362 (c-after-change): Protect the match data with save-match-data.
6363 It was getting corrupted by c-after-change-check-<>-operators.
6364
6365 * cc-defs.el: [Supersedes patch V1.38]:
6366 (top level): Check for a buggy font-lock-compile-keywords ONLY in
6367 XEmacs. GNU Emacs 22 now has a check which would throw an error here.
6368
6369 * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
6370 with save-match-data. It was being corrupted when Font Lock was
6371 not enabled.
6372
6373 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6374
6375 * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
6376 Mode and Subword Mode.
6377
6378 * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
6379 real labels ("case 1:" or "foo:") from non-labels ("public:").
6380 (c-forward-objc-directive): Replace c-forward-token-2 with crude
6381 coding; c-f-t-2 doesn't move over a token at EOB.
6382
6383 * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
6384
6385 * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
6386 (c-update-modeline): Concatenate the minor mode indicators
6387 directly onto mode-name, removing c-submode-indicators.
6388 Sometimes, c-s-i got separated from the mode name on the mode line.
6389
6390 * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
6391 (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
6392
6393 2006-02-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6394
6395 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
6396 error message when there's an evaluation error to show whether
6397 it's loaded from source or not.
6398 (c-filter-ops): Make it available at runtime too to work when
6399 `c-make-init-lang-vars-fun' needs to evaluate from source.
6400
6401 2006-02-24 Juanma Barranquero <lekktu@gmail.com>
6402
6403 * help.el (help): Revert last part of 2006-02-23 change (deletion
6404 of the `provide' call).
6405
6406 2006-02-23 Juri Linkov <juri@jurta.org>
6407
6408 * compare-w.el (compare-windows-highlight): Add new value
6409 `persistent' and change :type from `boolean' to `choice'.
6410 (compare-windows-overlays1, compare-windows-overlays2):
6411 New internal variables.
6412 (compare-windows-highlight): If compare-windows-highlight is
6413 `persistent', add current overlays to compare-windows-overlays[12]
6414 instead of adding compare-windows-dehighlight to pre-command-hook.
6415 (compare-windows-dehighlight): Delete all overlays from
6416 compare-windows-overlays[12].
6417
6418 * info.el (Info-search): Don't bind search-spaces-regexp to
6419 Info-search-whitespace-regexp in non-regexp isearch mode.
6420
6421 2006-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
6422
6423 * help.el (describe-mode): Pass `mode-name' to format-mode-line.
6424
6425 2006-02-23 Juanma Barranquero <lekktu@gmail.com>
6426
6427 * textmodes/org.el (org-xemacs-p)
6428 (org-export-html-show-new-buffer, org-table-may-need-update)
6429 (org-insert-item, org-mhe-get-message-real-folder)
6430 (org-mhe-get-message-folder-from-index)
6431 (org-mhe-get-message-folder, org-mhe-get-message-num)
6432 (org-mhe-get-header, org-make-org-heading-search-string)
6433 (org-make-org-heading-camel, org-table-sort-lines)
6434 (org-format-org-table-html, org-format-table-table-html):
6435 Fix typos in docstrings.
6436
6437 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
6438
6439 * textmodes/org.el (org-cleaned-string-for-export)
6440 (org-solidify-link-text): New function.
6441 (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
6442 XEmacs, just to silence the compiler.
6443 (org-export-as-ascii, org-export-as-html-and-open):
6444 Use `org-cleaned-string-for-export' and create internal links.
6445 (org-follow-mhe-link): Require mh-e, use folder.
6446
6447 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
6448
6449 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
6450
6451 * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
6452 gdb-debug-log-length.
6453 (gdb-debug-ring): Rename from gdb-debug-log-ring. Don't make
6454 it a real ring but...
6455 (gud-gdba-marker-filter): ...make it work like mark-ring.
6456 (gdb-enable-debug): Rename from gdb-enable-debug-log.
6457 (gdb-mouse-jump): New function. Add bindings.
6458
6459 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
6460
6461 * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
6462 (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
6463 (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
6464 (gdb-debug-log-length): Customize it's length.
6465 (gud-watch, gdb-var-create-handler): Display function::var format
6466 but don't use to create variable object.
6467 (gdb-var-create-handler): Use message-box in place of message.
6468 (gdb-stopped): Call gdb-exited if signalled.
6469
6470 2006-02-22 Carsten Dominik <dominik@science.uva.nl>
6471
6472 * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
6473
6474 * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
6475
6476 * textmodes/reftex.el (reftex-locate-file): Search all extensions
6477 if `reftex-try-all-extensions' is set.
6478
6479 * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
6480 fail silently when there is no valid argument at point.
6481 (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
6482 `fail-silently' argument. From a patch by David Reiter.
6483
6484 * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
6485 New commands.
6486 (org-mark-ring): New variable.
6487 (org-mark-ring-length): New option.
6488 (org-open-at-point, org-goto, org-open-file): Push old position
6489 onto the mark ring.
6490 (org-add-hook): New function.
6491 (org-export-table-remove-special-lines): New option.
6492 (org-skip-comments, org-format-org-table-html): Respect new
6493 option `org-export-table-remove-special-lines'.
6494 (org-open-file): Allow special command configuration for
6495 directory link.
6496 (org-file-apps): Fix bugs in customize type, added setting
6497 for directories.
6498 (org-activate-tags, org-format-agenda-item, org-complete)
6499 (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
6500 (org-get-tags, org-get-buffer-tags, org-open-at-point)
6501 (org-link-search, org-make-org-heading-search-string)
6502 (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
6503 (org-radio-targets, org-file-link-context-use-camel-case)
6504 (org-activate-camels): New options.
6505 (org-update-radio-target-regexp, org-all-targets)
6506 (org-make-target-link-regexp, org-activate-target-links):
6507 New functions.
6508 (org-make-org-heading-search-string): New function.
6509 (org-store-link, org-insert-link): Use new option
6510 `org-file-link-context-use-camel-case'.
6511 (org-activate-camels): Use new option `org-activate-camels'.
6512 (org-link-regexp): Add mhe prefix.
6513 (org-open-at-point, org-store-link): Support for mhe links.
6514 (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
6515 (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
6516 (org-mhe-get-header, org-follow-mhe-link): New functions.
6517 (org-remove-angle-brackets, org-add-angle-brackets):
6518 New functions.
6519 (org-bracket-link-regexp): New constant.
6520 (org-read-date): Fix bug that was rejecting all typed dates.
6521 (org-link-search): Make hierarchy above visible after a match.
6522 (org-follow-bbdb-link): Inhibit electric mode for BBDB.
6523 (org-store-link): Fix bug with link creation when cursor is in
6524 an empty line.
6525 (org-open-at-point): Fix bug with matching a link.
6526 Fixed buggy argument sequence in call to `org-view-tags'.
6527 (org-compile-prefix-format): Set `org-prefix-has-tag'.
6528 (org-prefix-has-tag): New variable.
6529 (org-format-agenda-item): Remove tags from headline
6530 if appropriate.
6531 (org-agenda-remove-tags-when-in-prefix): New option.
6532
6533 2006-02-21 Michael Kifer <kifer@cs.stonybrook.edu>
6534
6535 * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
6536 Fix the regular expressions.
6537
6538 2006-02-21 Richard M. Stallman <rms@gnu.org>
6539
6540 * progmodes/sh-script.el (sh-mode): Set shell type based on file name
6541 if there's no other specific basis.
6542
6543 * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
6544 as variables at all.
6545 (unsafep-variable): Rename arg; doc fix.
6546
6547 * abbrevlist.el (list-one-abbrev-table): Add autoload.
6548
6549 * calendar/appt.el (diary-selective-display): Add defvar.
6550
6551 * sort.el (sort-columns): Use Posix arg syntax for `sort'.
6552
6553 * isearch.el (search-whitespace-regexp): Fix custom type.
6554
6555 * help.el (describe-key-briefly): Compute interactive args
6556 in same was as before previous change.
6557
6558 * files.el (enable-local-variables): Doc fix.
6559
6560 2006-02-21 Kim F. Storm <storm@cua.dk>
6561
6562 * fringe.el: Cleanup as file is now pre-loaded.
6563 (fringe-bitmaps): Initialize unconditionally.
6564 (fringe-mode, set-fringe-style): Remove autoload cookies.
6565
6566 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
6567
6568 * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
6569 `horizontal-bar'.
6570 (fringe-cursor-alist): Use `horizontal-bar'.
6571
6572 2006-02-20 Kim F. Storm <storm@cua.dk>
6573
6574 * fringe.el (fringe-bitmaps): Update to new bitmap names.
6575 (fringe-indicator-alist, fringe-cursor-alist): Initialize.
6576
6577 * loadup.el: Load "fringe" on window systems.
6578
6579 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
6580
6581 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
6582 out of scope components.
6583
6584 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
6585 default.
6586
6587 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
6588
6589 * custom.el (customize-mark-to-save, customize-mark-as-set):
6590 Load the symbol first.
6591
6592 2006-02-20 Juanma Barranquero <lekktu@gmail.com>
6593
6594 * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
6595 strech spec so it doesn't display as "^J" on the header line
6596 when `Buffer-menu-use-header-line' is t.
6597
6598 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
6599
6600 * speedbar.el (speedbar-make-button): Keep text properties
6601 of string arguments if desired.
6602
6603 * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
6604 expessions.
6605
6606 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
6607 of speedbar.
6608
6609 2006-02-19 Ryan Yeske <rcyeske@gmail.com>
6610
6611 * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
6612 to value of `read-file-name-completion-ignore-case'.
6613
6614 2006-02-19 Chong Yidong <cyd@stupidchicken.com>
6615
6616 * custom.el (customize-mark-as-set): Push to `user' theme.
6617
6618 * cus-edit.el (custom-save-variables): Allow unthemed values.
6619 (customize-set-variable): Push setting to `user' theme.
6620
6621 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
6622
6623 * progmodes/gud.el: Don't require font-lock as it's now
6624 automatically loaded.
6625 (gud-speedbar-buttons): Replace gdb-var-changed with
6626 gdb-force-update.
6627
6628 * progmodes/gdb-ui.el (gdb-force-update): Rename from
6629 gdb-var-changed.
6630 (gdb-post-prompt): Use it.
6631 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
6632 (gdb-var-update-handler, gdb-var-delete)
6633 (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
6634 (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
6635 gdb-force-update in gdb-post-prompt.
6636 (gdb-reset): Clear watch expressions from speedbar when quitting.
6637
6638 2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
6639
6640 * viper-cmd.el (viper-insert-state-post-command-sentinel)
6641 (viper-change-state-to-vi, viper-change-state-to-emacs):
6642 Make aware of cursor coloring in the Emacs state.
6643 (viper-special-read-and-insert-char): Use read-char-exclusive.
6644 (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
6645
6646 * viper-init.el (viper-emacs-state-cursor-color): New variable.
6647
6648 * viper-util.el (viper-save-cursor-color)
6649 (viper-get-saved-cursor-color-in-replace-mode)
6650 (viper-get-saved-cursor-color-in-insert-mode)
6651 (viper-restore-cursor-color): Make aware of the cursor color in Emacs
6652 state.
6653 (viper-get-saved-cursor-color-in-emacs-mode): New function.
6654
6655 * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
6656 (ediff-ignore-case-option3, ediff-actual-diff-options)
6657 (ediff-actual-diff3-options): New variables to control case sensitivity.
6658 (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
6659 (ediff-setup-diff-regions3): Make aware of case-sensitivity.
6660 (ediff-toggle-ignore-case): New function.
6661 (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
6662
6663 * ediff-help.el (ediff-long-help-message-narrow2)
6664 (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
6665 (ediff-long-help-message-word-mode): Add ignore-case command.
6666 (ediff-help-for-quick-help): Add ignore-case command.
6667
6668 * ediff-merg.el: Move provide to the end.
6669
6670 * ediff-ptch.el: Move provide to the end.
6671
6672 * ediff-wind.el: Move provide to the end.
6673
6674 * ediff-mult.el: Move provide to the end.
6675 (ediff-set-meta-overlay): Enable follow-link.
6676
6677 * ediff.el: Move provide to the end.
6678 Break recursive load cycle in eval-when-compile.
6679 (ediff-patch-buffer): Better heuristics.
6680
6681 * ediff-util.el: Move provide to the end.
6682 Break recursive load cycle in eval-when-compile.
6683 (ediff-setup-keymap): Add binding for #c. Replace some defsubsts with
6684 defuns.
6685 (ediff-submit-report): Pass the values of ediff-diff3-program,
6686 ediff-diff3-options.
6687
6688 2006-02-19 Juanma Barranquero <lekktu@gmail.com>
6689
6690 * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
6691 the opening bracket of the following bracketing pairs: {}, [], (), <>,
6692 `' (for example, in the docstring of `windmove-default-keybindings').
6693
6694 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
6695
6696 * progmodes/gud.el (gud-speedbar-buttons): Update properly for
6697 shadow face. Don't provide binding to edit variable when it is
6698 out of scope.
6699
6700 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
6701 (gdb-var-update-handler): Detect out of scope variables with pre
6702 GDB 6.4 too.
6703 (gdb-post-prompt): Revert change from 2006-02-17 (force update).
6704 Reset status of variable objects to nil in update handlers.
6705 (gdb-var-update-handler-1): Detect when a variable object comes
6706 in scope. setcar on var changes gdb-var-list directly.
6707
6708 2006-02-17 Juri Linkov <juri@jurta.org>
6709
6710 * ffap.el (ffap) <defface>: Add explicit face declaration.
6711 (ffap-highlight): Use face `ffap' directly instead of checking
6712 for its existence.
6713
6714 * icomplete.el (icomplete-get-keys): Use `t' for the second arg
6715 `visible-ok' of `other-buffer' to find the right original buffer.
6716
6717 * info.el (Info-search): Skip `Local Variables' node.
6718
6719 2006-02-17 Juri Linkov <juri@jurta.org>
6720
6721 * info.el (Info-find-file): Check for symbols `apropos', `history',
6722 `toc' in the input filename, and return these symbols as is.
6723 (Info-find-node-2): Set Info-current-file to symbols `apropos',
6724 `history', `toc' instead of strings.
6725 (Info-set-mode-line): For non-string Info-current-file use the
6726 symbol's name inside **.
6727 (Info-isearch-push-state): Add quote before Info-current-file and
6728 Info-current-node.
6729 (Info-isearch-pop-state): Use `equal' instead of `string='.
6730 (Info-extract-pointer, Info-following-node-name): Use
6731 `match-string-no-properties' instead of `match-string'.
6732 (Info-up): Check `old-file' for `stringp'.
6733 (Info-history): Use `equal' instead of `string-equal'.
6734 Check `file' for `stringp'.
6735 (Info-history): Use symbol `history' instead of string as first arg
6736 of `Info-find-node'.
6737 (Info-toc): Check `Info-current-file' for `stringp'. Use symbol
6738 `toc' instead of string.
6739 (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
6740 instead of `buffer-substring', and `match-string-no-properties'
6741 instead of `match-string'.
6742 (Info-index-nodes): Check for symbols `apropos', `history', `toc'
6743 instead of strings.
6744 (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
6745 Use symbol `apropos' instead of string.
6746 (Info-copy-current-node-name): Check `Info-current-file' for
6747 `stringp' and construct a command with `Info-find-node' from it.
6748 (Info-fontify-node): Use `match-string-no-properties' instead of
6749 `match-string' and check file names for `stringp'.
6750 (Info-desktop-buffer-misc-data): Check for symbols `apropos',
6751 `history', `toc' instead of strings.
6752
6753 2006-02-17 Chong Yidong <cyd@stupidchicken.com>
6754
6755 * files.el: Rearrange functions and variables in the file local
6756 variables section.
6757
6758 2006-02-17 Reiner Steib <Reiner.Steib@gmx.de>
6759
6760 * files.el: Add truncate-lines, ispell-check-comments and
6761 ispell-local-dictionary as safe local variables.
6762
6763 2006-02-18 Nick Roberts <nickrob@snap.net.nz>
6764
6765 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
6766 out of scope variables.
6767 (gud-speedbar-buttons): Use unless.
6768
6769 * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
6770 (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
6771 (gdb-show-changed-values): Also use for out of scope variables.
6772 (gdb-var-update-handler-1): Note if variable goes out of scope.
6773
6774 2006-02-17 Ryan Yeske <rcyeske@gmail.com>
6775
6776 * net/rcirc.el (rcirc-connect): Make all arguments optional, and
6777 default to global variable values for unsupplied args.
6778 (rcirc-get-buffer-create): Fix bug with setting the target.
6779 (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
6780 test for rcirc-always-use-server-buffer-flag here.
6781 (rcirc-response-formats): Add %N, which is a facified nick. %n
6782 uses the default face. Change the ACTION format string. If the
6783 "nick" is the server, don't print anything for that field.
6784 Comment fixes.
6785 (rcirc-target-buffer): Don't test
6786 rcirc-always-use-server-buffer-flag here.
6787 (rcirc-print): Squeeze extra spaces out of the text before message.
6788 (rcirc-put-nick-channel): Strip potential "@" char from nick
6789 before adding them to nick table.
6790 (rcirc-url-regexp): Improve to match address like "foo.com".
6791
6792 2006-02-17 Eli Zaretskii <eliz@gnu.org>
6793
6794 * allout.el (allout-hidden-p): Move this defsubst before
6795 allout-overlay-interior-modification-handler, where it is first
6796 used.
6797
6798 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
6799
6800 * allout.el: Use allout invisible-text overlays instead of
6801 selective display for concealed text. Also, lots of general
6802 cleanup, and improved compatibility code.
6803
6804 (allout-version) Incremented, corrected, revised, and refined
6805 module commentary.
6806
6807 (provide 'allout): Moved to the bottom, added a require of overlay.
6808
6809 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
6810 `except-current'.
6811 (allout-write-file-hook-handler): Minimize delay.
6812 (count-trailing-whitespace-region): New function so
6813 auto-encryption of current topic can resituate cursor exactly.
6814 PGP/GPG encryption trims trailing whitespace from lines, which
6815 must be accounted for across encryption then decryption.
6816
6817 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
6818 just plain "\C-c", to avoid intruding on user's keybinding space.
6819
6820 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
6821 parameter, so user request to provide a new password is done.
6822
6823 (allout-outside-normal-auto-fill-function, allout-auto-fill):
6824 Refined mechanism for auto-filling behavior while in allout mode.
6825
6826 (allout-mode): Explicitly specify the mode map in the docstring.
6827 Clarify provision for various write-file hook var names.
6828 Adjusted for invisible-text overlays instead of selective-display.
6829
6830 (allout-depth): Really return 0 if not within any topic. This
6831 rectifies `allout-beginning-of-level' and sequence numbering
6832 errors that occur when cutting and pasting numbered topics.
6833 Changed from a in-line subst to a regular function, as well.
6834
6835 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
6836
6837 (allout-end-of-subtree, allout-end-of-subtree)
6838 (allout-end-of-entry, allout-end-of-current-heading)
6839 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
6840 (allout-show-children, allout-show-to-offshoot)
6841 (allout-hide-current-entry, allout-show-current-entry): Rectified
6842 handling of trailing blank lines between items.
6843
6844 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
6845 (allout-current-depth, allout-unprotected, allout-hidden-p)
6846 (allout-on-current-heading-p, allout-listify-exposed)
6847 (allout-chart-subtree, allout-goto-prefix)
6848 (allout-back-to-current-heading, allout-get-body-text)
6849 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
6850 (allout-hide-region-body, allout-toggle-subtree-encryption)
6851 (allout-encrypt-string, allout-encrypted-key-info)
6852 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
6853 (allout-file-vars-section-data): Adjusted for use with
6854 invisible-text overlays instead of selective-display.
6855
6856 (allout-kill-line, allout-kill-topic, allout-yank-processing):
6857 Reworked for use with invisible text overlays.
6858
6859 (allout-current-topic-collapsed-p): New function.
6860
6861 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
6862 to know when to close the containing topic.
6863
6864 (allout-pre-command-business, allout-post-command-business):
6865 Simplify undo-batching and dynamic isearch exposure.
6866
6867 (allout-set-overlay-category): New for invisible-text overlays.
6868 Sets properties of allout-overlay-category, used by
6869 allout-flag-region to set invisible-text overlay properties.
6870 (allout-get-invisibility-overlay): Get the first qualifying
6871 invisibility overlay, so we can find the extent of it.
6872 (allout-back-to-visible-text): Get to just before the beginnining
6873 of the current invisibility overlay, if any.
6874
6875 (allout-overlay-insert-in-front-handler)
6876 (allout-overlay-interior-modification-handler)
6877 (allout-before-change-handler, allout-isearch-end-handler): New
6878 functions to handle extraordinary actions affecting concealed
6879 text.
6880
6881 (allout-flag-region): Use overlays instead of selective-display
6882 for invisible text - by inheritence from the properties of
6883 allout-overlay-category in mainline Emacs, and applied
6884 property-by-property in XEmacs, some recent versions of which
6885 don't inherit the properties from the category. Provisions to
6886 respond to concealed-text edits simplified drastically.
6887
6888 (allout-isearch-rectification, allout-isearch-was-font-lock)
6889 (allout-isearch-expose, allout-enwrap-isearch)
6890 (allout-isearch-abort, allout-pre-was-isearching)
6891 (allout-isearch-prior-pos, allout-isearch-did-quit)
6892 (allout-isearch-dynamic-expose)
6893 (allout-hide-current-entry-completely): Functions deleted.
6894
6895 (allout-undo-aggregation): Explicit undo aggregation no longer
6896 necessary due to transition away from selective-display.
6897
6898 (set-allout-regexp, allout-up-current-level)
6899 (allout-next-visible-heading, allout-forward-current-level)
6900 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
6901 (allout-kill-line, allout-yank-processing, allout-show-children)
6902 (allout-expose-topic, allout-old-expose-topic)
6903 (allout-listify-exposed, allout-insert-latex-header)
6904 (allout-toggle-subtree-encryption, allout-encrypt-string)
6905 (remove-from-invisibility-spec, allout-hide-current-subtree):
6906 Ditched unused variables.
6907
6908 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
6909
6910 * textmodes/ispell.el (ispell-change-dictionary): Call
6911 ispell-buffer-local-dict instead of
6912 ispell-accept-buffer-local-defs.
6913 (ispell-local-dictionary-alist): Accept as valid any coding-system
6914 supported by Emacs.
6915 (ispell-dictionary-alist-3): Esperanto dictionary's coding system
6916 changed to iso-8859-3.
6917
6918 2006-02-17 Nick Roberts <nickrob@snap.net.nz>
6919
6920 * speedbar.el (speedbar-frame-width): Make an inline function
6921 instead of a macro. Use frame-width.
6922 (speedbar-try-completion, speedbar-update-contents)
6923 (speedbar-timer-fn): Use consp.
6924 (speedbar-update-localized-contents): Try to preserve point.
6925
6926 * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
6927 (menu): Re-order menu items.
6928 (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
6929 field.
6930 (gdb-var-update-handler-1): Use it for GDB 6.4+.
6931 (gdb-post-prompt): Speed things by not forcing update.
6932
6933 2006-02-16 Chong Yidong <cyd@stupidchicken.com>
6934
6935 * wid-edit.el (widget-button-click): For mouse-1, cancel button
6936 press and perform default action if we get a mouse movement event.
6937
6938 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
6939
6940 * calendar/icalendar.el (icalendar--get-event-property)
6941 (icalendar--get-event-property-attributes): Fix typos in
6942 docstrings.
6943
6944 * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
6945 docstring.
6946
6947 2006-02-15 Juanma Barranquero <lekktu@gmail.com>
6948
6949 * bs.el (bs-mode): Use `buffer-disable-undo'.
6950 (bs--get-file-name): Simplify.
6951 (bs-show-in-buffer): Mark the buffer as not modified.
6952
6953 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
6954
6955 * wid-edit.el (widget-keymap): Bind down-mouse-1 to
6956 widget-button-click.
6957
6958 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
6959 (custom-mode): Update docstring.
6960
6961 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
6962 binding.
6963
6964 * files.el (hack-local-variables-confirm): Allow scrolling if the
6965 file variable list is too long. Kill temp buffer after use.
6966
6967 2006-02-15 Nick Roberts <nickrob@snap.net.nz>
6968
6969 * progmodes/gud.el (gdb): Improve doc string.
6970 (gdb-script-font-lock-keywords): Expand allowed character set.
6971
6972 * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
6973 (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
6974 (gdb-separate-io-interrupt, gdb-separate-io-quit)
6975 (gdb-separate-io-stop, gdb-separate-io-eof):
6976 Rename from gdb-inferior-* to gdb-separate-*.
6977 (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
6978
6979 2006-02-14 Jay Belanger <belanger@truman.edu>
6980
6981 * calc/calc-arith.el (math-check-known-scalarp): Make sure
6982 expression is a symbol before checking that it is bound.
6983
6984 * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
6985 test to see if equation can be solved.
6986
6987 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
6988
6989 * wid-edit.el (widget-button-click): Use :pressed-face property
6990 for overlay face, if it exists.
6991
6992 * cus-edit.el (custom-manual, custom-add-see-also)
6993 (custom-add-parent-links, custom-group-link): Add :pressed-face
6994 property to links.
6995
6996 * files.el (hack-local-variables): Remove ignored variables before
6997 checking if any variables need setting.
6998
6999 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7000
7001 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
7002
7003 2006-02-14 Juanma Barranquero <lekktu@gmail.com>
7004
7005 * help.el (where-is): Fix message for remapped commands.
7006
7007 * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
7008 Fix typos in docstrings.
7009
7010 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
7011
7012 * files.el (safe-local-variable-values): New option.
7013 (hack-local-variables-prop-line): Return a list of variable-value
7014 pairs if MODE-ONLY is non-nil.
7015 (hack-local-variables): Construct list of variable-value pairs,
7016 and apply or reject them in one go. Ask for confirmation if
7017 variables are not known safe.
7018 (hack-local-variables-confirm): Complete rewrite. Support
7019 `safe-local-variable-values'.
7020 (enable-local-variables): Update docstring to reflect new
7021 behavior.
7022 (ignored-local-variables): Ignore ignored-local-variables and
7023 safe-local-variable-values.
7024 (safe-local-variable-p): New function.
7025 (risky-local-variable-p): `safe-local-variable' property check
7026 moved to safe-local-variable-p.
7027 (hack-one-local-variable): Checks moved to hack-local-variables.
7028
7029 (byte-compile-dynamic, c-basic-offset, c-file-style)
7030 (c-indent-level, comment-column, fill-column, fill-prefix)
7031 (indent-tabs-mode, kept-new-versions, no-byte-compile)
7032 (no-update-autoloads, outline-regexp, page-delimiter)
7033 (paragraph-start, paragraph-separate, sentence-end)
7034 (sentence-end-double-space tab-width, version-control):
7035 Add `safe-local-variable' property.
7036
7037 * find-lisp.el: Delete nonexistent `autocompile' file variable.
7038
7039 * icomplete.el, play/landmark.el: Change nonexistent
7040 `outline-layout' file variable to `allout-layout'.
7041
7042 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
7043
7044 * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
7045 (gdb-get-changed-registers): Test value of gud-minor-mode relative
7046 to gud-comint-buffer.
7047 (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
7048 gdb-ui.el for gdb-mi.el.
7049 (gdb-post-prompt, gdb-get-changed-registers): Move test for
7050 registers buffer to gdb-get-changed-registers.
7051 (gdb-breakpoint-regexp): New regexp. Allow toggling and
7052 deletion of catchpoints (throw and catch).
7053 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
7054 (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
7055 (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
7056 (gdb-var-list-children-1, gdb-info-breakpoints-custom)
7057 (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
7058
7059 2006-02-13 Jay Belanger <belanger@truman.edu>
7060
7061 * calc/calc-arith.el (math-check-known-matrixp): Make sure
7062 expression is a symbol before checking that it is bound.
7063
7064 2006-02-13 Richard M. Stallman <rms@gnu.org>
7065
7066 * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
7067 for the minibuffer too, but not if resize-mini-windows will interfere.
7068
7069 * help.el (describe-key-briefly, describe-key): Do all arg-reading
7070 inside `interactive' spec.
7071 (describe-key-briefly-internal, describe-key-internal):
7072 Functions merged back into their callers.
7073
7074 2006-02-13 Martin Rudalics <rudalics@gmx.at>
7075
7076 * info.el (info-xref-visited): Inherit from info-xref too.
7077 (Info-set-mode-line): Replace occurrences of `%' by `%%'
7078 when propertizing Info-current-file and Info-current-node.
7079
7080 2006-02-13 Juri Linkov <juri@jurta.org>
7081
7082 * tumme.el (tumme-thumbnail-storage): Fix docstring.
7083 (tumme-thumb-name): Fix per-directory format.
7084
7085 2006-02-13 Juanma Barranquero <lekktu@gmail.com>
7086
7087 * subr.el (substitute-key-definition): Doc fix (hide internal arg).
7088
7089 2006-02-12 Miles Bader <miles@gnu.org>
7090
7091 * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
7092
7093 2006-02-13 Mathias Dahl <mathias.dahl@gmail.com>
7094
7095 * tumme.el: Remove history section. If someone needs the it, it
7096 can always be found in CVS.
7097
7098 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
7099
7100 * tumme.el (tumme-thumbnail-storage): Update docstring. Add info
7101 about the Thumbnail Managing Standard option.
7102
7103 2006-02-12 Richard M. Stallman <rms@gnu.org>
7104
7105 * subr.el (substitute-key-definition): Doc fix.
7106
7107 * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
7108
7109 * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
7110
7111 * info.el (Info-mode): Doc fix.
7112
7113 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
7114
7115 2006-02-12 Michael Albinus <michael.albinus@gmx.de>
7116
7117 * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
7118 because on Solaris a POSIX compatible "id" is needed. Reported by
7119 Magnus Henoch <mange@freemail.hu>.
7120
7121 2006-02-12 Juri Linkov <juri@jurta.org>
7122
7123 * tumme.el: Remove todo item about Thumbnail Managing Standard.
7124 (tumme) <defgroup>: Change :group to `multimedia'.
7125 (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
7126 Managing Standard.
7127 (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
7128 Fix dostring.
7129 (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
7130 and %y. Fix docstring.
7131 (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
7132 (tumme-cmd-create-standard-thumbnail-command): New user options.
7133 (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
7134 is `standard'. Fix docstring.
7135 (tumme-thumb-width, tumme-thumb-height): New user options.
7136 (tumme-external-viewer): Try to find various viewers.
7137 (tumme-get-thumbnail-image): Use `create-image' instead of
7138 constructing the `image' structure.
7139 (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
7140 `standard'.
7141 (tumme-thumb-name): Add file name generation for standard storage.
7142 Simplify code for other storages.
7143 (tumme-thumb-name): Use width %w and height %h instead of size %s.
7144 Add modification time %m and thumbnail-nq8 %q.
7145 Use `tumme-cmd-create-standard-thumbnail-command' if
7146 tumme-thumbnail-storage is `standard'.
7147 (tumme-dired-insert-marked-thumbs): New autoload command.
7148 (tumme-dired-after-readin-hook): New function.
7149 (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
7150 `tumme-thumb-size'.
7151 (tumme-display-image): Replace size-x %x and size-y %y with
7152 width %w and height %h.
7153
7154 * dired.el (dired-mode-map): Bind `\C-t\C-t' to
7155 `tumme-dired-insert-marked-thumbs'.
7156
7157 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
7158
7159 * tumme.el (tumme-write-tag): Fix small bug (file name did not
7160 include path).
7161 (tumme-mark-tagged-files): Fix bug in regexp used to find rows
7162 matching tag.
7163
7164 2006-02-12 Miles Bader <miles@gnu.org>
7165
7166 * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
7167 New variables.
7168 (rcirc-abbrev-nick): New function.
7169 (rcirc-format-response-string): Rewrite to use the formats in
7170 `rcirc-response-formats' and expand escape sequences therein.
7171 A text-property `rcirc-text' is added over the actual response
7172 text to make easy to find inside the returned string.
7173 (rcirc-print): When filling, just look for the `rcirc-text'
7174 text-property to find the appropriate fill prefix, instead of
7175 using hardwired patterns.
7176
7177 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
7178
7179 * tumme.el: Enhance some docstrings. Add todo item about Thumbnail
7180 Managing Standard.
7181
7182 2006-02-11 Kim F. Storm <storm@cua.dk>
7183
7184 * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
7185 Don't use insert-buffer; do insert-buffer-substring directly.
7186 (ido-file-internal): Set mark for ido-insert-file. Use insert-file-1.
7187
7188 2006-02-11 Martin Rudalics <rudalics@gmx.at>
7189
7190 * files.el (revert-buffer, recover-file): Replace buffer-read-only
7191 with inhibit-read-only. Suggested by Stefan Monnier.
7192 (revert-buffer): Let insert-file-contents discard
7193 buffer-undo-list. Simplify code.
7194 (find-file, find-file-existing, revert-buffer): Doc-string fixes.
7195
7196 2006-02-11 Eli Zaretskii <eliz@gnu.org>
7197
7198 * menu-bar.el (menu-bar-select-yank): Add a doc string.
7199
7200 * help.el (describe-key-briefly): Now a wrapper for
7201 describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons
7202 to t. Populate yank-menu if empty.
7203 (describe-key-briefly-internal): Renamed from describe-key-briefly.
7204 (describe-key): Now a wrapper for describe-key-internal. Bind
7205 enable-disabled-menus-and-buttons to t. Populate yank-menu if empty.
7206 (describe-key-internal): Renamed from describe-key.
7207
7208 2006-02-11 Milan Zamazal <pdm@zamazal.org>
7209
7210 * progmodes/glasses.el (glasses-separator): Doc fix.
7211 (glasses-original-separator): New defcustom.
7212 (glasses-make-readable, glasses-convert-to-unreadable): Use it.
7213
7214 2006-02-11 Martin Rudalics <rudalics@gmx.at>
7215
7216 * mwheel.el (mouse-wheel-up-event): Doc fix.
7217
7218 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
7219
7220 * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
7221 (tumme-dir): New function. Copied from thumbs.el.
7222
7223 2006-02-10 Juanma Barranquero <lekktu@gmail.com>
7224
7225 * desktop.el (desktop-outvar): Fix typo.
7226 (desktop-save-buffer-p): Doc fix.
7227
7228 * subr.el (substitute-key-definition): Fix typo.
7229
7230 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7231
7232 * frame.el (select-frame-set-input-focus): Call x-focus-frame also
7233 when window-system is mac.
7234
7235 * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
7236
7237 2006-02-10 Kim F. Storm <storm@cua.dk>
7238
7239 * subr.el (substitute-key-definition-key): Pass t for NOERROR to
7240 indirect-function instead of using condition-case.
7241
7242 2006-02-10 Mathias Dahl <mathias.dahl@gmail.com>
7243
7244 * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
7245 less `colloquial'...
7246
7247 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com>
7248
7249 * tumme.el: Add a couple of todo items.
7250
7251 2006-02-09 Lars Hansen <larsh@soem.dk>
7252
7253 * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
7254 (highlight-changes-mode): Don't change desktop-locals-to-save.
7255
7256 2006-02-09 Chong Yidong <cyd@stupidchicken.com>
7257
7258 * image-mode.el (image-toggle-display): Clear image cache if using
7259 filename.
7260
7261 2006-02-09 Masatake YAMATO <jet@gyve.org>
7262
7263 * dired-x.el (dired-guess-shell-alist-default): Add .man as
7264 a `dired-man' target.
7265
7266 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
7267 boundary of symbols.
7268
7269 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
7270
7271 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
7272
7273 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
7274
7275 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
7276 `mapcar'; return nil.
7277
7278 2006-02-08 Chong Yidong <cyd@stupidchicken.com>
7279
7280 * mouse.el (mouse-drag-track): Don't change window if we rebind to
7281 some other event.
7282
7283 2006-02-08 Ryan Yeske <rcyeske@gmail.com>
7284
7285 * net/rcirc.el (rcirc-startup-channels-alist):
7286 Add irc.freenode.net and #emacs as defaults.
7287 (rcirc-ignore-all-activity-flag): Remove variable.
7288 (rcirc-authinfo): New variable.
7289 (rcirc-authinfo-filename): Remove variable.
7290 (rcirc-always-use-server-buffer-flag): New flag.
7291 (rcirc): M-x rcirc will automatically connect without prompting.
7292 C-u M-x rcirc will prompt. Use rcirc-connect to create a
7293 connection in lisp.
7294 (rcirc-process-server-response-1): Remove everything but the nick
7295 portion of the sender so it doesn't need to be done everywhere
7296 else. Update related code.
7297 (global-map): Remove global keybindings.
7298 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
7299 (rcirc-send-input): Split into several functions.
7300 (rcirc-process-input-line, rcirc-process-message)
7301 (rcirc-process-command): New functions.
7302 (rcirc-target-buffer): New function to determine where to route
7303 messages.
7304 (rcirc-user-nick): Save match data.
7305 (rcirc-toggle-ignore-buffer-activity)
7306 (rcirc-update-activity-string): Remove global ignore functionality,
7307 which can be done now by toggling rcirc-track-minor-mode.
7308 (rcirc-track-minor-mode-map): New keymap.
7309 (rcirc-track-minor-mode): New minor-mode.
7310 (ignore): Make the ignore output nicer. Always print it when
7311 adding or removing nicks.
7312 (rcirc-url-regexp): Improve.
7313 (rcirc-mangle-text): Remove properties before using text in the
7314 modeline.
7315 (rcirc-authenticate): Authentication data comes from
7316 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
7317 (rcirc-server-prefix): Inherit from rcirc-server.
7318
7319 2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
7320
7321 * Makefile.in (compile): Append "|| true" to the end of the `find'
7322 command, like compile-always does.
7323
7324 2006-02-08 Sam Steingold <sds@gnu.org>
7325
7326 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
7327 output from a dead connection.
7328
7329 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
7330
7331 * dired.el (dired-mode-map): Add more bindings for tumme.
7332
7333 2006-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
7334
7335 * wdired.el (wdired-mode-map): Use remap.
7336 (wdired-get-filename): Massage.
7337 (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
7338 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
7339 `keymap' property rather than `local-map'.
7340
7341 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
7342
7343 * tumme.el (tumme-get-thumbnail-image): New utility function.
7344 Suggested by from Chong Yidong.
7345 (tumme-dired-with-window-configuration): Rename from
7346 `tumme-dired'. Add code to save window configuration.
7347 (tumme-restore-window-configuration): New command to restore the
7348 window configuration that `tumme-dired-with-window-configuration'
7349 saves before it changes the window configuration.
7350 (tumme-show-all-from-dir): New command to display thumbnails for
7351 all files in a directory entered by the user, like M-x thumbs.
7352 (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
7353 have been created.
7354 (tumme-display-thumbnail-original-image): Call `display-buffer'.
7355 (obsolete-tumme-display-thumbnail-original-image-and-buffer):
7356 Remove obsolete test function.
7357
7358 2006-02-07 Juanma Barranquero <lekktu@gmail.com>
7359
7360 * vc.el (small-temporary-file-directory): Remove defvar; there's
7361 a defcustom for it in files.el.
7362
7363 * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
7364 Fix typo in message.
7365 (tumme-gallery-generate): Fix typo in `error' message.
7366 (tumme-display-window-height-correction)
7367 (tumme-display-window-width-correction, tumme-line-up-dynamic)
7368 (tumme-line-up-interactive): Dox fixes.
7369 (tumme-cmd-rotate-original-options, tumme-display-properties-format)
7370 (tumme-restore-window-configuration, tumme-format-properties-string)
7371 (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
7372 Fix typos in docstrings.
7373
7374 2006-02-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
7375
7376 * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
7377
7378 2006-02-07 Nick Roberts <nickrob@snap.net.nz>
7379
7380 * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
7381 User should use hook if desired.
7382
7383 * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
7384 buffer if necessary.
7385 (gdb-delete-frame-or-window): New function.
7386 (gdb-breakpoints-mode-map): Bind "q" to it.
7387
7388 2006-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
7389
7390 * textmodes/nroff-mode.el: Clean up name space.
7391 (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
7392 (nroff-mode): Obey the global setting of nroff-electric-mode.
7393 (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
7394
7395 * calendar/calendar.el (calendar-increment-month): Typo in last change.
7396
7397 2006-02-06 Thien-Thi Nguyen <ttn@gnu.org>
7398
7399 * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
7400
7401 2006-02-06 Lars Hansen <larsh@soem.dk>
7402
7403 * generic-x.el (etc-fstab-generic-mode): Add file system types
7404 cifs and usbdevfs. Allow special chars in file names.
7405
7406 2006-02-05 Jay Belanger <belanger@truman.edu>
7407
7408 Update copyright notices of the files in lisp/calc.
7409
7410 2006-02-05 Romain Francoise <romain@orebokech.com>
7411
7412 Update copyright notices of all files in the lisp/play directory.
7413
7414 2006-02-04 Luc Teirlinck <teirllm@auburn.edu>
7415
7416 * ldefs-boot.el: Regenerate.
7417
7418 * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
7419
7420 2006-02-05 Kim F. Storm <storm@cua.dk>
7421
7422 * files.el (magic-mode-regexp-match-limit): New defvar.
7423 (set-auto-mode): Use it to limit magic-mode-alist matching.
7424
7425 2006-02-04 Kevin Rodgers <ihs_4664@yahoo.com>
7426
7427 * simple.el (display-message-or-buffer): Compare the number of
7428 characters to the frame width when determining whether a 1-line
7429 message string will fit in the echo area. Count screen lines
7430 instead of buffer lines when determining whether a multi-line
7431 message will fit in the echo area/minibuffer window.
7432
7433 2006-02-04 Eli Zaretskii <eliz@gnu.org>
7434
7435 * info.el (Info-index, Info-mode): Improve the description of the
7436 `i' command.
7437
7438 * ldefs-boot.el: Regenerate.
7439
7440 2006-02-03 Werner Lemberg <wl@gnu.org>
7441
7442 * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
7443 greedy to find the closing bracket in \*[...] and similar
7444 expressions. This is a first rough fix -- many additional
7445 refinements are necessary to make nroff mode really usable with groff.
7446
7447 2006-02-03 Jens Petersen <petersen@redhat.com> (tiny change)
7448
7449 * international/mule-cmds.el (set-locale-environment):
7450 Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
7451 libX11.
7452
7453 2006-02-03 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
7454
7455 * arc-mode.el (archive-maybe-copy): Fix the way directories in the
7456 archive are created in archive-tmpdir.
7457
7458 2006-02-02 John Paul Wallington <jpw@pobox.com>
7459
7460 * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
7461 (ibuffer-fontification-alist): Use it.
7462 (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
7463 to "* z" and the Ibuffer Mark menu.
7464
7465 * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
7466
7467 2006-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
7468
7469 * textmodes/table.el (*table--cell-describe-mode)
7470 (*table--cell-describe-bindings): Undo last change since
7471 print-help-return-message is not obsoleted by anything at all.
7472
7473 2006-02-02 Luc Teirlinck <teirllm@auburn.edu>
7474
7475 * emulation/cua-base.el (cua-mode): Doc fix.
7476
7477 2006-02-02 Juanma Barranquero <lekktu@gmail.com>
7478
7479 * dframe.el (dframe-handle-make-frame-visible)
7480 (dframe-handle-iconify-frame, dframe-get-focus)
7481 (dframe-select-attached-frame, dframe-power-click)
7482 (dframe-frame-mode): Fix typos in docstrings.
7483
7484 * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
7485 (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
7486 Fix typos in docstrings.
7487
7488 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
7489 (hi-lock-face-buffer, hi-lock-font-lock-hook)
7490 (hi-lock-archaic-interface-message-used)
7491 (hi-lock-file-patterns-range): Fix typos in docstrings.
7492
7493 * savehist.el (savehist-loaded, savehist-load, savehist-install)
7494 (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
7495
7496 * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
7497 Fix typo in docstring.
7498
7499 * net/newsticker.el (newsticker--decode-iso8601-date)
7500 (newsticker--set-customvar, newsticker--buffer-insert-item)
7501 (newsticker--do-run-auto-mark-filter)
7502 (newsticker--parse-generic-feed): Doc fixes.
7503 (newsticker--retrieval-timer-list, newsticker-url-list)
7504 (newsticker-hide-immortal-items-in-echo-area)
7505 (newsticker-hide-obsolete-items-in-echo-area)
7506 (newsticker-new-item-face, newsticker--enclosure)
7507 (newsticker-buffer-update, newsticker-w3m-show-inline-images)
7508 (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
7509 (newsticker--parse-generic-feed, newsticker--cache-contains)
7510 (newsticker--stat-num-items, newsticker-download-enclosures):
7511 Fix typos in docstrings.
7512
7513 * net/rcirc.el (rcirc-debug): Doc fix.
7514 (rcirc-fill-column, rcirc-receive-message-hooks)
7515 (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
7516 (rcirc-mode, rcirc-generate-new-buffer-name)
7517 (rcirc-startup-channels, rcirc-ignore-update-automatic)
7518 (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
7519 Fix typos in docstrings.
7520 (rcirc-print): "?\ " -> "?\s".
7521 (rcirc-cmd-join): Improve argument/docstring consistency.
7522
7523 2006-02-01 Mark A. Hershberger <mah@everybody.org>
7524
7525 * xml.el (xml-parse-region): Move save-excursion and set-buffer up
7526 before narrow-to-region.
7527
7528 2006-02-01 Richard M. Stallman <rms@gnu.org>
7529
7530 * simple.el (move-beginning-of-line): Scan properly for invis change.
7531
7532 * replace.el (multi-occur-in-matching-buffers): Fix prev change.
7533
7534 2006-02-01 Michael Albinus <michael.albinus@gmx.de>
7535
7536 * net/tramp.el (tramp-convert-file-attributes): Set file's gid
7537 change bit only when id-format is 'integer. Reported by Matt
7538 Hodges <M.P.Hodges@rl.ac.uk>.
7539
7540 2006-02-01 Juanma Barranquero <lekktu@gmail.com>
7541
7542 * hilit-chg.el (highlight-changes-initial-state)
7543 (highlight-changes-global-initial-state): Doc fixes.
7544 (highlight-changes-global-modes, global-highlight-changes):
7545 Fix typos in docstrings.
7546
7547 2006-02-01 Kim F. Storm <storm@cua.dk>
7548
7549 * emulation/cua-base.el (cua-mode): Mention that CUA enables
7550 transient-mark-mode in doc string.
7551
7552 2006-01-31 Richard M. Stallman <rms@gnu.org>
7553
7554 * replace.el (multi-occur): Doc fix.
7555 (multi-occur-in-matching-buffers): Rename from
7556 multi-occur-by-filename-regexp. Prefix arg says match
7557 buffer names instead of file names.
7558
7559 2006-01-31 Juanma Barranquero <lekktu@gmail.com>
7560
7561 * bs.el: Allow non-default values of `bs-header-lines-length'.
7562 (bs--running-in-xemacs): Remove (not needed anymore).
7563 (bs--set-window-height): Simplify by using `fit-window-to-buffer'
7564 instead of `shrink-window', thus avoiding having to compute the
7565 height of the window.
7566 (bs--up): Wrap around even when there's no header.
7567 (bs--down): Use `forward-line' instead of `next-line'.
7568
7569 2006-01-30 Chong Yidong <cyd@stupidchicken.com>
7570
7571 * image-mode.el (image-toggle-display): Use file name if possible,
7572 instead of unnecessarily allocating a (possibly huge) lisp string.
7573
7574 2006-01-30 John Paul Wallington <jpw@pobox.com>
7575
7576 * subr.el (toplevel): Define `cl-assertion-failed' condition here
7577 because the `assert' macro signals it at runtime.
7578
7579 * emacs-lisp/cl.el (toplevel): Remove definition of
7580 `cl-assertion-failed' condition.
7581
7582 2006-01-30 Nick Roberts <nickrob@snap.net.nz>
7583
7584 * thumbs.el (thumbs-marked-list): Make buffer-local and
7585 permanent-local.
7586 (thumbs-insert-thumb): Make help-echo non-sticky.
7587 (thumbs-file-alist): Use eolp as check for (non)-image.
7588
7589 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
7590
7591 * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
7592 (ediff-before-session-group-setup-hooks)
7593 (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
7594 Fix typos in docstrings.
7595
7596 * window.el (bw-dir, bw-eqdir, balance-windows)
7597 (split-window-keep-point): Fix typos in docstrings.
7598
7599 * textmodes/org.el (org-allow-space-in-links, org-closed-string)
7600 (org-quote-string, org-calendar-to-agenda-key)
7601 (org-agenda-sorting-strategy, org-agenda-use-time-grid)
7602 (org-show-following-heading, org-tags-column)
7603 (org-use-tag-inheritance, org, org-allow-space-in-links)
7604 (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
7605 (org-enable-table-editor, org-calc-default-modes)
7606 (org-table-allow-automatic-line-recalculation)
7607 (org-export-html-style, org-export-with-fixed-width)
7608 (org-export-with-sub-superscripts, org-special-keyword)
7609 (org-formula, org-time-grid, org-table-may-need-update)
7610 (org-mode, org-goto-ret, org-goto-left, org-goto-right)
7611 (org-goto-quit, org-get-indentation, org-end-of-item)
7612 (org-move-item-down, org-move-item-up)
7613 (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
7614 (org-remove-occur-highlights, org-read-date, org-goto-calendar)
7615 (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
7616 (org-agenda-log-mode, org-agenda-toggle-diary)
7617 (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
7618 (org-agenda-file-to-end, org-agenda-no-heading-message)
7619 (org-agenda-get-closed, org-format-agenda-item)
7620 (org-cmp-priority, org-cmp-category, org-cmp-time)
7621 (org-agenda-change-all-lines, org-agenda-diary-entry)
7622 (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
7623 (org-link-search, org-camel-to-words, org-open-file)
7624 (org-remember-handler, org-table-convert-region)
7625 (org-table-move-row-down, org-table-move-row-up)
7626 (org-table-copy-region, org-table-wrap-region)
7627 (org-table-toggle-vline-visibility)
7628 (org-table-get-vertical-vector, org-table-modify-formulas)
7629 (org-table-get-specials, org-recalc-commands)
7630 (org-table-rotate-recalc-marks, org-table-eval-formula)
7631 (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
7632 (org-level-color-stars-only, org-insert-heading):
7633 Fix typos in docstrings.
7634 (last-arg): Add defvar.
7635
7636 * makefile.w32-in (WINS): Add erc.
7637 (MH_E_SRC): Update (copied from lisp/Makefile.in).
7638
7639 2006-01-29 Bill Wohler <wohler@newt.com>
7640
7641 * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
7642 mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
7643 mh-tool-bar.el, mh-xface.el. Remove mh-customize.el, mh-init.el.
7644 (mh-autoloads): Don't use comments on otherwise empty lines.
7645
7646 2006-01-29 Edward O'Connor <ted@oconnor.cx>
7647
7648 * emulation/viper.el (viper-major-mode-modifier-list): Add
7649 insert-state and vi-state entries for erc-mode.
7650 (viper-go-away, viper-set-hooks): Add and remove
7651 viper-comint-mode-hook from erc-mode-hook as appropriate.
7652
7653 * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
7654
7655 2006-01-29 Juanma Barranquero <lekktu@gmail.com>
7656
7657 * bs.el (bs--format-aux): Implement `middle' alignment as
7658 described in the docstring for `bs-attributes-list'.
7659 (bs--get-name): Simplify. Don't pad the buffer name.
7660
7661 2006-01-27 Agustin Martin <agustin.martin@hispalinux.es>
7662
7663 * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
7664 English aspell dictionary is installed, use the first entry of
7665 ispell-dictionary-alist-1.
7666
7667 2006-01-27 Kevin Rodgers <ihs_4664@yahoo.com>
7668
7669 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
7670 Doc fix.
7671
7672 2006-01-27 Michael Albinus <michael.albinus@gmx.de>
7673
7674 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
7675 for `process-file', in order to let it work for older Emacsen too.
7676
7677 2006-01-27 Eli Zaretskii <eliz@gnu.org>
7678
7679 * international/latexenc.el: Add a suitable `coding:' tag.
7680 (latexenc-find-file-coding-system): Undo last change.
7681
7682 2006-01-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
7683
7684 * international/latexenc.el (latexenc-find-file-coding-system):
7685 Make sure latexenc-main-file is a regular file and is readable.
7686
7687 2006-01-27 Andre Spiegel <spiegel@gnu.org>
7688
7689 * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
7690 Pass FILE to vc-user-login-name.
7691
7692 * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
7693
7694 2006-01-27 Nick Roberts <nickrob@snap.net.nz>
7695
7696 * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
7697 there are no more images to display.
7698 (thumbs-mark, thumbs-unmark): Revert change so that they move to
7699 the next image.
7700
7701 2006-01-26 Richard M. Stallman <rms@gnu.org>
7702
7703 * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
7704
7705 * wid-edit.el (advertised-widget-backward): New alias.
7706 (widget-keymap): Use advertised-widget-backward for S-TAB.
7707
7708 * tumme.el: Correct the keywords.
7709 (tumme-dir-max-size): Use defvar.
7710 (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
7711
7712 * simple.el (move-beginning-of-line): Take account of fields.
7713 (clone-indirect-buffer-other-window): Take args like
7714 clone-indirect-buffer, and work like it.
7715
7716 * help-fns.el (describe-function): Don't pass `nil' as default.
7717
7718 * files.el (risky-local-variable-p): Follow var aliases.
7719
7720 * subr.el (lazy-completion-table): Doc fix.
7721
7722 * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
7723 global binding of `line'.
7724
7725 2006-01-25 Andre Spiegel <spiegel@gnu.org>
7726
7727 * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
7728 Tramp.
7729
7730 * vc.el (vc-default-dired-state-info): Pass FILE to
7731 vc-user-login-name.
7732 (vc-default-update-changelog): Don't use vc-user-login-name, we
7733 don't need it here.
7734
7735 * net/tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
7736 no longer necessary.
7737
7738 2006-01-25 Kenichi Handa <handa@m17n.org>
7739
7740 * international/mule.el (decode-char): Avoid the overhead of
7741 calling utf-lookup-subst-table-for-decode if
7742 utf-translate-cjk-mode is nil.
7743 (encode-char): Avoid the overhead of calling
7744 utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
7745 nil.
7746
7747 2006-01-22 Kenichi Handa <handa@m17n.org>
7748
7749 * international/mule.el (make-subsidiary-coding-system): Reset
7750 `coding-system-define-form' property of subsidiaries to nil.
7751 Avoid duplicated entry in coding-system-alist.
7752 (make-coding-system): Avoid duplicated entry in
7753 coding-system-alist.
7754 (define-coding-system-alias): Likewise.
7755
7756 2006-01-24 Luc Teirlinck <teirllm@auburn.edu>
7757
7758 * completion.el: Minor fixes in introductory comment.
7759 (completion-def-wrapper): Fix alist.
7760
7761 2006-01-25 Nick Roberts <nickrob@snap.net.nz>
7762
7763 * thumbs.el (thumbs-new-image-size): New function.
7764 (thumbs-increment-image-size-element)
7765 (thumbs-decrement-image-size-element, thumbs-increment-image-size)
7766 (thumbs-decrement-image-size): Delete.
7767 (thumbs-resize-image-1): Rename from thumbs-resize-image. Keep old
7768 temp files and use to resize.
7769 (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
7770 Use increment argument to enlarge/shrink. Preserve point.
7771 (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
7772 (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
7773 (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
7774 (thumbs-mark, thumbs-unmark): Preserve point.
7775 (thumbs-modify-image): Keep old temp files and use to modify.
7776 Cleanup old temp files at load time. Preserve point.
7777 (thumbs-view-image-mode-map): Use new command names.
7778
7779 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
7780
7781 * log-view.el (log-view-minor-wrap): First rev is the one at point.
7782
7783 * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
7784 the nastiest part of the cyclic dependency.
7785 (cal-menu-update): Use dotimes and calendar-increment-month.
7786
7787 * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
7788 (calendar-week-start-day): Add an :initializer.
7789 (calendar-mode-map): Use suppress-keymap, and command remapping.
7790 (describe-calendar-mode): Setup xref-stack info for the back button.
7791 (calendar-star-date): Insert before delete.
7792 (calendar-set-mode-line): Add file-modified info if applicable.
7793 (calendar-increment-month): New function.
7794
7795 2006-01-24 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
7796
7797 * font-lock.el (lisp-font-lock-keywords-2):
7798 Recognize "& keywords" only at word boundaries.
7799
7800 2006-01-24 Nick Roberts <nickrob@snap.net.nz>
7801
7802 * thumbs.el (thumbs-extra-images): New variable. Make it buffer-local
7803 and permanent-local.
7804 (thumbs-max-image-number): New variable.
7805 (thumbs-do-thumbs-insertion): Use them.
7806 (thumbs-per-line): Change default to 4.
7807 (thumbs-marked-list): Rename from thumbs-markedL.
7808 (thumbs-cleanup-thumbsdir, thumbs-delete-images)
7809 (thumbs-rename-images): Use -list instead of L for internal variables.
7810 (thumbs-call-convert): Use call-process instead of shell-command.
7811 (thumbs-insert-thumb): Add filename as help-echo to each image.
7812 (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
7813 Give dir to thumbs-show-thumbs-list.
7814 (thumbs-show-thumbs-list): Set default-directory to that of images.
7815 (thumbs-dired-show): Rename from thumbs-dired-show-all.
7816 (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
7817 (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
7818 (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
7819
7820 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
7821
7822 * ses.el (ses-read-cell): Provide a default value.
7823
7824 2006-01-23 Juanma Barranquero <lekktu@gmail.com>
7825
7826 * term/w32-win.el (image-library-alist): Add additional names for
7827 GIF library.
7828
7829 2006-01-23 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
7830
7831 * international/latexenc.el (latexenc-find-file-coding-system):
7832 Add file-regular-p check.
7833
7834 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
7835
7836 * simple.el (clone-buffer): Don't show the new buffer in the same
7837 window.
7838
7839 2006-01-23 Juri Linkov <juri@jurta.org>
7840
7841 * faces.el (link, link-visited): New faces based on default values
7842 of `info-xref' and `info-xref-visited'.
7843
7844 * info.el (info-xref): Inherit from `link'.
7845 (info-xref-visited): Inherit from `link-visited'.
7846
7847 * cus-edit.el (custom-buffer-create-internal): Use widget type
7848 `custom-manual' instead of `info-link' and don't set properties
7849 `button-face' and `mouse-face' explicitly.
7850 (custom-browse-group-tag, custom-browse-variable-tag)
7851 (custom-browse-face-tag): Inherit from widget class
7852 `custom-group-link' instead of `push-button'.
7853 (custom-button-unraised): Inherit from `underline' face.
7854 (custom-link): Inherit from `link' face. Fix doc and group.
7855 (custom-add-parent-links, custom-group-value-create): Don't set
7856 properties `button-face' and `mouse-face' explicitly for
7857 `custom-group-link' widget.
7858 (custom-group-link): Add properties `button-face' and `mouse-face'
7859 to widget definition.
7860 (custom-field-keymap): New variable. Put `custom-field-keymap' to
7861 editable-field's :keymap property.
7862 (custom-mode): Fix docstring: substitute keybindings for
7863 `widget-forward' and `widget-backward' from `widget-keymap',
7864 `widget-complete' from `custom-field-keymap', replace old
7865 `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
7866
7867 * desktop.el (desktop-load-file): Check for `fboundp' before
7868 calling `symbol-function'.
7869
7870 * simple.el (clone-buffer, clone-indirect-buffer)
7871 (clone-indirect-buffer-other-window): Use `read-buffer' instead of
7872 `read-string'. Fix prompts.
7873
7874 * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
7875
7876 2006-01-23 Nick Roberts <nickrob@snap.net.nz>
7877
7878 * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
7879
7880 2006-01-22 Luc Teirlinck <teirllm@auburn.edu>
7881
7882 * startup.el (inhibit-splash-screen, initial-scratch-message):
7883 Doc fixes.
7884
7885 2006-01-22 Michael Albinus <michael.albinus@gmx.de>
7886
7887 Sync with Tramp 2.0.52.
7888
7889 * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
7890 net/tramp-vc.el: Add code for unloading Tramp. See comment before
7891 `tramp-unload-tramp' for checklist.
7892
7893 * net/tramp.el: Require `timer-funcs' instead of `timer' if in
7894 XEmacs. Contributed by Steve Youngs <steve@sxemacs.org>.
7895 (tramp-unload-file-name-handler-alist)
7896 (tramp-unload-tramp): New defuns.
7897 (tramp-advice-PC-expand-many-files): New defadvice.
7898 (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
7899 removed.
7900 (tramp-handle-expand-file-name): Remove double slash.
7901 (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
7902 It doesn't matter, because it will be converted later on.
7903 (tramp-handle-file-ownership-preserved-p): Rewritten. The old
7904 implementation was just heuristic.
7905 (tramp-post-connection): Set uid and gid properties.
7906 (tramp-convert-file-attributes): Set file's gid change bit.
7907 (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
7908 (tramp-handle-expand-file-name): Use "~root" for tilde expansion
7909 in case of su(do)? methods. The home directory of the local user
7910 will be taken else.
7911 (tramp-open-connection-telnet)
7912 (tramp-open-connection-rsh, tramp-open-connection-su)
7913 (tramp-open-connection-multi): Set PS1 to "$ ". Otherwise, a
7914 local shell prompt could hurt. Reported by Romain Francoise
7915 <romain@orebokech.com>.
7916 (tramp-let-maybe): Add `edebug-form-spec' property.
7917 (tramp-handle-expand-file-name): Bind `default-directory' locally
7918 to "/" in order to avoid problems with UNC shares or Cygwin
7919 mounts.
7920 (tramp-md5-function): Fix typo in error message.
7921
7922 * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
7923
7924 * net/tramp-util.el (top): Apply `ignore' instead of `identity'
7925 for byte-compiler pacification.
7926
7927 2006-01-22 Andre Spiegel <spiegel@gnu.org>
7928
7929 * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
7930 ID-FORMAT `string'. This allows us to get rid of
7931 `vc-user-login-name UID'.
7932
7933 * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
7934
7935 2006-01-22 John Paul Wallington <jpw@pobox.com>
7936
7937 * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
7938
7939 2006-01-21 Martin Rudalics <rudalics@gmx.at>
7940
7941 * emacs-lisp/find-func.el (find-definition-noselect)
7942 (find-variable-noselect): Search variables in C source code too.
7943 (find-function-C-source, find-function-noselect, find-function)
7944 (find-function-other-frame, find-variable-noselect, find-variable)
7945 (find-variable-other-frame, find-variable-at-point):
7946 Fix docstrings.
7947
7948 2006-01-21 Francesco Potorti` <pot@gnu.org>
7949
7950 * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
7951
7952 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es>
7953
7954 * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
7955 Default to disabling the "Save affix" question.
7956
7957 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change)
7958
7959 * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
7960 the first arg to run-python.
7961
7962 2006-01-21 Eli Zaretskii <eliz@gnu.org>
7963
7964 * startup.el (command-line-1): Handle --no-desktop if desktop.el
7965 is not loaded.
7966
7967 2006-01-20 Jay Belanger <belanger@truman.edu>
7968
7969 * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
7970 limit is 0.
7971
7972 * calc/calc-arith.el (math-add-symb-fancy): Check the length of
7973 the correct variable.
7974
7975 2006-01-20 Carsten Dominik <dominik@science.uva.nl>
7976
7977 * textmodes/org.el (org-open-at-point): Fixed bug with matching a
7978 link. Fixed buggy argument sequence in call to `org-view-tags'.
7979 (org-compile-prefix-format): Set `org-prefix-has-tag'.
7980 (org-prefix-has-tag): New variable.
7981 (org-format-agenda-item): Remove tags from headline if
7982 appropriate.
7983 (org-agenda-remove-tags-when-in-prefix): New option.
7984 (org-get-tags-at): New function.
7985
7986 2006-01-20 Nick Roberts <nickrob@snap.net.nz>
7987
7988 * thumbs.el (thumbs-buffer): New variable. Make it buffer local.
7989 (thumbs-find-image): Move image name and number from buffer name
7990 to mode name. Set thumbs-buffer. Preserve point so that large
7991 images remain visible.
7992 (thumbs-file-alist): Construct list in thumbs-buffer and reverse
7993 order.
7994 (thumbs-show-image-num): Get image from thumbs-file-alist. Set
7995 mode name.
7996 (thumbs-next-image, thumbs-previous-image): Make them work.
7997
7998 2006-01-19 Luc Teirlinck <teirllm@auburn.edu>
7999
8000 * cus-edit.el (custom-buffer-create-internal): State in the text above
8001 the whole buffer buttons that they do not operate on hidden items.
8002 (custom-face-menu): Use `custom-face-save' instead of
8003 `custom-face-save-command'.
8004 (custom-face-save-command): Make it an alias for `custom-face-save'
8005 and declare it obsolete.
8006 (custom-face-save): Doc fix.
8007
8008 * dired.el (dired-no-confirm): Add quote.
8009 (dired-subdir-alist-pre-R): Add quote in
8010 `make-variable-buffer-local' form and remove unbalanced parenthesis.
8011
8012 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
8013
8014 * textmodes/table.el (table-mode-indicator): Typo in last change.
8015
8016 2006-01-19 Richard M. Stallman <rms@gnu.org>
8017
8018 * outline.el (hide-leaves): Don't call outline-end-of-heading.
8019 Fixes bug reported in Nov 2005.
8020
8021 * isearch.el (isearch-forward): Doc fix.
8022
8023 * dired.el (dired-move-to-filename-regexp): Define as alias.
8024 (dired-no-confirm): Use defcustom.
8025 (dired-subdir-alist-pre-R): Put defvar at top level.
8026
8027 * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
8028
8029 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
8030 Mark as risky.
8031
8032 * simple.el (set-mark-command): Doc fix.
8033 (clone-indirect-buffer-other-window):
8034 Read arg like clone-indirect-buffer.
8035 (move-beginning-of-line): Skip invisible newlines.
8036
8037 2006-01-19 Masatake YAMATO <jet@gyve.org>
8038
8039 * progmodes/cpp.el (cpp-edit-load): Make the order of
8040 listed conditions in a base C code buffer and its associate
8041 CPP Edit buffer the same.
8042
8043 2006-01-19 Kenichi Handa <handa@m17n.org>
8044
8045 * mail/rmail.el (rmail-enable-mime): Docstring fixed.
8046 (rmail-mime-feature): Likewise.
8047 (rmail-require-mime-maybe): Use display-warning to show a warning
8048 message.
8049
8050 * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
8051 (find-auto-coding): Use auto-coding-regexp-alist-lookup.
8052
8053 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
8054
8055 * array.el: Move defvars out of eval-when-compile.
8056 (array-make-template): Replace undeclared global var with a local one.
8057 (array-mode): Inline initialization functions.
8058 (array-init-local-variables, array-init-max-row)
8059 (array-init-max-column, array-init-columns-per-line)
8060 (array-init-field-width, array-init-rows-numbered)
8061 (array-init-line-length, array-init-lines-per-row): Remove.
8062
8063 * play/doctor.el: Move defvars out of eval-when-compile. Use dolist.
8064 (doc-mode-map): Define explicitly.
8065 (doctor-txtype): Use mapc.
8066
8067 * textmodes/table.el: Move defvars out of eval-when-compile.
8068 Remove harmful code meant to avoid byte-compiler warnings.
8069 (table-fixed-mode-indicator): Remove. Use a more complex mode-line
8070 specification that checks table-fixed-width-mode directly.
8071 (table-recognize-region, table-recognize-cell):
8072 Use restore-buffer-modified-p.
8073 (table-fixed-width-mode): Remove code that refreshes
8074 table-fixed-mode-indicator.
8075 (*table--cell-describe-bindings, *table--cell-describe-mode):
8076 Avoid obsolete name print-help-return-message.
8077 (table--test-cell-list): Don't use replace-regexp from elisp.
8078 (table--point-entered-cell-function, table--point-left-cell-function):
8079 Don't set table-fixed-mode-indicator, use force-mode-line-update.
8080
8081 * textmodes/org.el: Move defvars out of eval-when-compile. Move code
8082 that was after the end of file. Use buffer-file-name variable.
8083 (org-timestamp-change): Use with-current-buffer.
8084 (org-todo-list): Don't unnecessarily define a new buffer-local var.
8085 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
8086 `file'.
8087
8088 * progmodes/fortran.el: Move defvars out of eval-when-compile.
8089 (fortran-break-line): Remove unused var `opoint'.
8090 (fortran-abbrev-start): Obey help-event-list.
8091
8092 2006-01-18 Jesper Harder <harder@phys.au.dk>
8093
8094 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
8095
8096 2006-01-18 Masatake YAMATO <jet@gyve.org>
8097
8098 * progmodes/make-mode.el (makefile-imake-mode): New mode
8099 derived from makefile-mode.
8100 (makefile-imake-mode-syntax-table): New syntax table
8101 derived from makefile-mode-syntax-table.
8102 (makefile-mode): Write about makefile-imake-mode in doc string.
8103 (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
8104 (makefile-imake-font-lock-keywords): New font lock keywords.
8105
8106 * files.el (auto-mode-alist): Add Imakefile.
8107
8108 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es>
8109
8110 * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
8111 loading the file rather than when turning on flyspell-mode.
8112
8113 2006-01-16 Luc Teirlinck <teirllm@auburn.edu>
8114
8115 * cus-edit.el (customize-rogue): Minor doc fix.
8116
8117 2006-01-17 Juri Linkov <juri@jurta.org>
8118
8119 * dired-aux.el (dired-diff): Use dired-dwim-target-directory
8120 instead of the file at the mark as default if the file at the mark
8121 is the same as the file at point or if dired-dwim-target-directory
8122 is not the same as the current directory and the mark is not active.
8123
8124 * log-view.el (log-view-minor-wrap): Use the same logic to get
8125 revisions as `log-view-diff'.
8126
8127 * info.el (Info-revert-find-node): Check for Info-current-file
8128 before preserving new-history.
8129
8130 * man.el (Man-heading-regexp): Add `/'.
8131
8132 * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
8133 (html-mode): Set `sentence-end-base' instead of `sentence-end'.
8134
8135 2006-01-16 Juri Linkov <juri@jurta.org>
8136
8137 * faces.el (mode-line-faces): New defgroup.
8138 (mode-line-highlight): Move definition after new defgroup.
8139 (mode-line, mode-line-inactive, mode-line-highlight):
8140 Replace :group `modeline' with `mode-line-faces'.
8141 (mode-line-buffer-id): New face.
8142 (modeline-buffer-id): New face alias.
8143 (vertical-border): Remove :group `modeline'.
8144
8145 * bindings.el (propertized-buffer-identification): Use face
8146 `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
8147 (mode-line-next-buffer, mode-line-previous-buffer): New functions.
8148 (mode-line-buffer-identification-keymap): For mouse-1 replace
8149 `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
8150 Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
8151 mouse-3.
8152
8153 * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
8154 Buffer-menu-buffer. Doc fix.
8155 (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
8156 (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
8157 `Buffer-menu-buffer'.
8158
8159 * info.el (Info-mode-line-node-keymap): New defvar.
8160 (Info-set-mode-line): Use `stringp' to check Info-current-file.
8161 Propertize Info-current-node with `mode-line-buffer-id' and
8162 `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
8163
8164 * time.el (display-time-mail-face): Replace :group `faces' with
8165 `mode-line-faces'.
8166
8167 2006-01-16 Kenichi Handa <handa@m17n.org>
8168
8169 * international/code-pages.el: Add autoload cookies for cp125[0345678].
8170
8171 * language/european.el (cp1252): New alias for windows-1252.
8172
8173 * international/mule.el (autoload-coding-system): Prepare for EOL
8174 variants.
8175
8176 2006-01-15 Dan Nicolaescu <dann@ics.uci.edu>
8177
8178 * term.el (term-raw-map): Add mapping for insert.
8179 (term-send-insert): New.
8180 (term-mode): Make variables local here instead of doing it in
8181 `term-emulate-terminal'.
8182 (term-emulate-terminal): Delete incorrect optimization for cr+lf.
8183 Scroll reverse needs to take into account the scroll region.
8184 Saving and restoring the cursor should save the color attributes too.
8185 (term-reset-terminal): Reset the scroll region.
8186 (term-handle-ansi-escape): Cursor up and down should take into
8187 account the scroll region.
8188 (term-set-scroll-region): Rename from `term-scroll-region'.
8189 Move to 0,0 after setting the region.
8190 (term-handle-scroll): Handle scroll up.
8191 (term-down): Fix off by one error.
8192 (term-delete-lines): Do not delete outside the scroll region.
8193 (term-insert-lines): Take into account the scroll region.
8194
8195 2006-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
8196
8197 * textmodes/ispell.el (ispell-internal-change-dictionary)
8198 (ispell-change-dictionary): Undo most of last change of 2006-01-13.
8199 (start, end): Move declaration outside of eval-when-compile.
8200
8201 * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
8202 (flyspell-mode-on): Use it.
8203
8204 * textmodes/ispell.el (ispell-kill-ispell): Run new hook
8205 ispell-kill-ispell-hook.
8206
8207 2006-01-14 Luc Teirlinck <teirllm@auburn.edu>
8208
8209 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
8210 (Custom-reset-saved): Do not ask for confirmation in single option
8211 buffers.
8212
8213 2006-01-13 Richard M. Stallman <rms@gnu.org>
8214
8215 * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
8216
8217 2006-01-13 Romain Francoise <romain@orebokech.com>
8218
8219 * add-log.el (add-change-log-entry, change-log-merge):
8220 Conditionally use `hard-newline'.
8221
8222 2006-01-13 Martin Rudalics <rudalics@gmx.at>
8223
8224 * wid-edit.el (widget-field-end): If the overlay is no longer
8225 associated with a buffer, behave as if the overlay didn't exist.
8226
8227 * cus-edit.el (custom-add-see-also, custom-add-parent-links):
8228 Make sure the links use the `custom-link' face.
8229
8230 2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
8231
8232 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
8233 (ld-script-mode): Don't set indent-line-function since we don't
8234 have one.
8235
8236 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
8237
8238 * textmodes/org.el (org-open-file): Use mailcap for selecting an
8239 application.
8240 (org-file-apps-defaults-gnu): Use mailcap as the default for
8241 selecting an application on a UNIX system.
8242 (org-agenda-show-tags): New command.
8243 (org-table-insert-hline): Keep cursor in current table line.
8244 (org-table-convert): Offset effect of modifying
8245 `org-table-insert-hline'.
8246 (org-format-agenda-item): New optional argument TAG.
8247 (org-compile-prefix-format): Handle %T format for the tag.
8248 (org-expand-wide-chars): New function.
8249 (org-table-insert-row, org-table-insert-hline):
8250 Use `org-expand-wide-chars'.
8251 (org-open-file): Fix bug in program launch.
8252 (org-get-time-of-day): Fix bug with times before 1am.
8253 (org-agenda-menu): Add tags commands.
8254
8255 2006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
8256
8257 * textmodes/ispell.el (ispell-init-process): Include the used
8258 dictionary in ispell process start message.
8259 (ispell-internal-change-dictionary): When flyspell-mode is active
8260 and dictionary is changed, make sure ispell process is restarted
8261 and flyspell word cache cleared out for the current buffer.
8262 (ispell-change-dictionary): Make sure flyspell word cache is
8263 cleared out in all buffers with active flyspell mode when
8264 dictionary is globally changed.
8265 Call ispell-internal-change-dictionary after dictionary change.
8266
8267 2006-01-13 Eli Zaretskii <eliz@gnu.org>
8268
8269 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
8270
8271 * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
8272 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
8273 years. Fix small differences wrt Makefile.in.
8274 (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
8275 Makefile.in does.
8276
8277 2006-01-12 Bill Wohler <wohler@newt.com>
8278
8279 * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
8280 mh-search.el.
8281
8282 2006-01-12 Masatake YAMATO <jet@gyve.org>
8283
8284 * progmodes/ld-script.el: Update copyright year.
8285
8286 2006-01-12 Chong Yidong <cyd@stupidchicken.com>
8287
8288 * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
8289 Don't add widget if setting undefined.
8290
8291 2006-01-12 John Paul Wallington <jpw@pobox.com>
8292
8293 * help-fns.el (describe-variable): Remove newlines from void
8294 variable output.
8295
8296 2006-01-13 Nick Roberts <nickrob@snap.net.nz>
8297
8298 * wdired.el (wdired-mode-map): Add help echo for
8299 wdired-abort-changes.
8300
8301 * man.el (Man-file-name-regexp): Adjust for a list of files.
8302
8303 2006-01-12 Masatake YAMATO <jet@gyve.org>
8304
8305 * progmodes/ld-script.el (auto-mode-alist): Support
8306 suffix conventions used in netbsd and eCos.
8307
8308 2006-01-11 Luc Teirlinck <teirllm@auburn.edu>
8309
8310 * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
8311 (custom-variable-menu, custom-face-menu, custom-group-menu)
8312 (Custom-mode-menu): Change names of menu items. (As discussed on
8313 emacs-devel.)
8314 (custom-face-menu): Add "Undo Edits" item.
8315
8316 * startup.el (init-file-user): defcustom -> defvar.
8317
8318 * tooltip.el (tooltip-mode): Doc fix.
8319
8320 2006-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
8321
8322 * reveal.el (reveal-post-command): window-buffer signals an error on
8323 dead windows rather than returning nil.
8324 (reveal-open-new-overlays): An overlay might die while we open others.
8325
8326 2006-01-11 Bill Wohler <wohler@newt.com>
8327
8328 * cus-dep.el (generated-custom-dependencies-file): Fix typo and
8329 phrasing in docstring.
8330
8331 * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
8332 can give some systems gas. Add new file mh-buffers.el.
8333
8334 2006-01-06 Masatake YAMATO <jet@gyve.org>
8335
8336 * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
8337 C preprocessor forward ported from GNU Emacs 21.2.
8338
8339 * progmodes/asm-mode.el (asm-font-lock-keywords):
8340 Use `cpp-font-lock-keywords'.
8341
8342 * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
8343
8344 * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
8345 of $ for "\\.ld[s]?".
8346
8347 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
8348
8349 * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
8350 (tcl-indent-line): Return `noindent' if inside a string.
8351
8352 * progmodes/flymake.el (flymake-split-string): Remove more than one
8353 empty string at beg/end of the result.
8354 (flymake-find-buildfile, flymake-find-possible-master-files):
8355 Use expand-file-name.
8356 (flymake-fix-file-name): Don't replace \ with / and don't remove ./
8357 since expand-file-name does it for us. Use directory-file-name.
8358 (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
8359 (flymake-ler-get-type, flymake-ler-get-text)
8360 (flymake-ler-make-ler): Remove. Replace by defstruct. Update callers.
8361 (flymake-current-line-no): Remove spurious interactive spec.
8362 (flymake-delete-temp-directory): Remove unused var `slash-pos'.
8363 (flymake-check-include): Remove arg inc-path merged into inc-name.
8364 (flymake-check-patch-master-file-buffer): Fit in 80 columns.
8365 Arg regexp-list replaced by a simple regexp.
8366 (flymake-master-make-header-init, flymake-master-tex-init):
8367 Correspondingly replace regexp-list with a regexp. Fix regexp.
8368
8369 2006-01-10 Simon Josefsson <jas@extundo.com>
8370
8371 * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
8372 describing AUTH PLAIN fix.
8373
8374 2006-01-10 Thien-Thi Nguyen <ttn@gnu.org>
8375
8376 * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
8377 (report-emacs-bug): Don't record initial prompt text.
8378 Instead, add text properties to prompting text.
8379 (report-emacs-bug-hook): Delete prompting text.
8380
8381 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
8382
8383 * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
8384 `dirs'. Adjust callers.
8385
8386 2006-01-09 John Paul Wallington <jpw@gnu.org>
8387
8388 * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
8389
8390 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
8391
8392 * reveal.el (reveal-open-new-overlays): New extracted fun.
8393 (reveal-close-old-overlays): Idem. Check overlays's liveness before
8394 using them. Simplify the code.
8395 (reveal-post-command): Use them. Fix up obsolete windows in
8396 reveal-open-spots.
8397
8398 * progmodes/flymake.el: Use `require' rather than autoload for
8399 XEmacs's overlays.
8400 (flymake-get-common-file-prefix, flymake-build-relative-filename):
8401 Delete. Use file-relative-name instead.
8402 (flymake-get-syntax-check-program-args, flymake-perl-init):
8403 Simplify the resulting code.
8404
8405 * log-view.el (log-view-file-re, log-view-message-re): Add support
8406 for DaRCS output.
8407
8408 2006-01-09 Alex Schroeder <alex@gnu.org>
8409
8410 * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
8411 identifiers sometimes added in square brackets at the beginning of
8412 subject lines.
8413
8414 2006-01-07 Richard M. Stallman <rms@gnu.org>
8415
8416 * cus-edit.el (Custom-set, Custom-save): Doc fix.
8417 (Custom-reset-current, Custom-reset-saved): Change question text.
8418 (Custom-reset-standard): Likewise.
8419 (custom-variable-reset-saved): Doc fix.
8420
8421 2006-01-07 Eli Zaretskii <eliz@gnu.org>
8422
8423 * startup.el (init-file-user): Doc fix.
8424
8425 2006-01-07 Alex Schroeder <alex@gnu.org>
8426
8427 * mail/rmail.el (rmail-current-subject): New function.
8428 (rmail-current-subject-regexp): New function.
8429 (rmail-next-same-subject): Use it.
8430
8431 * mail/rmailsum.el (rmail-summary-by-topic):
8432 Use rmail-current-subject and rmail-current-subject-regexp.
8433 (rmail-summary-next-same-subject): Ditto.
8434
8435 * net/rcirc.el (rcirc-send-input): No longer check whether the
8436 process is open, since not all commands need an open process.
8437 (rcirc-send-string): Check whether the process is open before
8438 sending anything.
8439 (rcirc-ignore-list): New option.
8440 (rcirc-ignore-list-automatic): New variable.
8441 (rcirc-print): Take rcirc-ignore-list into account.
8442 (rcirc-cmd-ignore): New command.
8443 (rcirc-ignore-update-automatic): New function.
8444 (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
8445 list if ignored nicks.
8446 (rcirc-handler-NICK): Ditto, and also ignore the new nick.
8447
8448 2006-01-06 David Reitter <david.reitter@gmail.com>
8449
8450 * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
8451 reflect the address to which the report will be sent.
8452
8453 2006-01-06 Eli Zaretskii <eliz@gnu.org>
8454
8455 * progmodes/ld-script.el (auto-mode-alist): Recognize linker
8456 scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
8457
8458 2006-01-01 Michael Ernst <mernst@alum.mit.edu> (tiny changes)
8459
8460 * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
8461
8462 * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
8463 the doc string: "functoin" => "function".
8464 * ldefs-boot.el: Likewise.
8465
8466 * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
8467 message text: "Duplicat" => "Duplicate".
8468
8469 2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
8470
8471 * files.el (basic-save-buffer-2): If backing-up failed, reset
8472 buffer-backed-up to nil.
8473
8474 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
8475
8476 * progmodes/gud.el (gdb-script-skip-to-head)
8477 (gdb-script-calculate-indentation): Indent for breakpoint command
8478 lists also.
8479
8480 2006-01-05 Bill Wohler <wohler@newt.com>
8481
8482 * Makefile.in (compile-always): Add mh-autoloads dependency.
8483 (bootstrap): Remove mh-autoloads dependency, as compile dependency
8484 provides it.
8485 (updates): Remove mh-autoloads dependency, since it probably has
8486 already run recently (via recompile).
8487
8488 2006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
8489
8490 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
8491 argument `force' to disable the flyspell-last-buffer optimization.
8492 (flyspell-mode-on): Use it.
8493
8494 * progmodes/flymake.el (flymake-get-cleanup-function): Default to
8495 flymake-simple-cleanup.
8496 (flymake-allowed-file-name-masks): Use this new default.
8497 All the functions are now called in the right buffer rather than
8498 passing the buffer as argument.
8499 (flymake-process-sentinel): Switch to buffer before calling cleanup.
8500 (flymake-parse-err-lines): Remove redundant buffer arg.
8501 (flymake-get-program-dir): Comment out unused function.
8502 (flymake-start-syntax-check, flymake-start-syntax-check-process):
8503 Remove redundant buffer argument.
8504 (flymake-get-real-file-name, flymake-simple-java-cleanup)
8505 (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
8506
8507 2006-01-05 Richard M. Stallman <rms@gnu.org>
8508
8509 * info.el (Info-find-node): Don't record previous node if have none.
8510 (info): Go to directory only if history is empty.
8511
8512 * simple.el (mark): Doc fix.
8513
8514 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8515
8516 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
8517 already of desired type.
8518 (mac-ae-list): Coerce parameter to "list" type.
8519 (mac-dispatch-apple-event): Replace cadr part of event with a
8520 dummy position so that event-start returns it.
8521
8522 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
8523
8524 * textmodes/org.el (org-end-of-subtree): New function.
8525 (org-cycle, org-subtree-end-visible-p, org-scan-tags):
8526 Use `org-end-of-subtree'.
8527 (org-agenda, org-agenda-convert-date): Protect calls to
8528 `fit-window-to-buffer'.
8529 (org-tags-view): Force matching of sublevels when doing a
8530 todo-only search. Define the correct redo command, including the
8531 arguments.
8532 (org-agenda-redo): Display message.
8533 (org-check-for-org-mode): New function.
8534 (org-agenda-type): New variable.
8535 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
8536 Set `org-agenda-type'.
8537 (org-agenda-check-type): New function.
8538 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
8539 (org-agenda-week-view, org-agenda-day-view)
8540 (org-agenda-next-date-line, org-agenda-previous-date-line)
8541 (org-agenda-log-mode, org-agenda-toggle-diary)
8542 (org-agenda-toggle-time-grid, org-agenda-date-later)
8543 (org-agenda-date-prompt, org-agenda-diary-entry)
8544 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
8545 (org-agenda-convert-date, org-agenda-menu):
8546 Use `org-agenda-check-type'.
8547 (org-make-overlay, org-delete-overlay)
8548 (org-detatch-overlay, org-move-overlay, org-overlay-put):
8549 New compatibility functions.
8550 (org-calendar-select-mouse): New command.
8551
8552 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
8553
8554 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
8555 (Custom-reset-standard): Fix y-or-n-p messages.
8556 (custom-link): New face for links.
8557 (custom-buffer-create-internal, custom-manual): Use it.
8558 (custom-face-save): Push to theme-face before setting face spec.
8559
8560 * wid-edit.el (widget-default-mouse-face-get): New function.
8561 (widget-specify-button): Handle mouse-face like button-face.
8562
8563 * custom.el (load-theme): Clear old theme settings if reloading.
8564
8565 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
8566
8567 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
8568 "Erase Customization" button back to same position it occupies in
8569 the individual State menus.
8570
8571 2006-01-04 Kim F. Storm <storm@cua.dk>
8572
8573 * wid-edit.el (key-sequence): Rework widget to read key binding
8574 using `kbd' syntax. Use C-q to insert literal key, event, or code.
8575 (widget-key-sequence-default-value): Default value for empty sequence.
8576 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
8577 (widget-key-sequence-read-event): New command for C-q.
8578 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
8579 (widget-key-sequence-value-to-external): New functions.
8580
8581 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
8582
8583 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
8584 Use expand-file-name.
8585 (flymake-delete-temp-directory): Use expand-file-name,
8586 file-name-directory, and directory-file-name.
8587 (flymake-strrchr): Delete.
8588 (flymake-start-syntax-check): Don't pass the redundant buffer argument
8589 to the init-f function.
8590 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
8591 (flymake-init-find-buildfile-dir)
8592 (flymake-init-create-temp-source-and-master-buffer-copy)
8593 (flymake-simple-make-init-impl, flymake-simple-make-init)
8594 (flymake-master-make-init, flymake-master-make-header-init)
8595 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
8596 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
8597 (flymake-xml-init): Remove corresponding redundant buffer argument.
8598 (flymake-allowed-file-name-masks): Remove last elems that are equal to
8599 the default anyway. Clean up regexps.
8600
8601 * progmodes/flymake.el (flymake-temp-source-file-name)
8602 (flymake-master-file-name, flymake-temp-master-file-name)
8603 (flymake-base-dir): New buffer-local vars.
8604 (flymake-buffer-data, flymake-get-buffer-value)
8605 (flymake-set-buffer-value): Replace those hash-tables by the new
8606 buffer-local vars. Update callers.
8607
8608 * progmodes/flymake.el (flymake-check-start-time)
8609 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
8610 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
8611 Move definition, so we can remove redundant earlier declaration.
8612 (flymake-replace-regexp-in-string, flymake-split-string)
8613 (flymake-get-temp-dir): Use defalias.
8614 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
8615 (flymake-xemacs-window-edges): Remove unused function.
8616 (flymake-get-point-pixel-pos): Move.
8617 (flymake-pid-to-names, flymake-reg-names)
8618 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
8619 Replace by a simple list flymake-processes and by process-buffer.
8620 Update callers. Other than simplify the code, it uses buffers rather
8621 than buffer-names so it doesn't get confused by uniquify.
8622 (flymake-buffer-data): The global value should just be nil.
8623
8624 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
8625 Optimize the body of a defalias like any other code.
8626
8627 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
8628 Make sure we've setup font-lock's vars. It may influence which
8629 function we then call.
8630 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
8631 here since it's too late anyway.
8632
8633 2006-01-03 Romain Francoise <romain@orebokech.com>
8634
8635 * startup.el (fancy-splash-tail, normal-splash-screen):
8636 Update copyright year.
8637
8638 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
8639
8640 * mouse.el (mouse-drag-track): Rename, from
8641 `mouse-drag-region-1'. Includes optional argument required to
8642 enable post-drag event processing (e.g. delete region keys).
8643 Can be used without this argument to track a mouse region and operate
8644 on it as soon as the drag completes.
8645 (mouse-drag-region): Use `mouse-drag-track'.
8646
8647 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
8648
8649 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
8650 Move to `custom-buffer' group.
8651
8652 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
8653 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
8654 (custom-theme-insert-face-marker, custom-theme-variable-menu)
8655 (custom-theme-face-menu): New variables.
8656 (custom-theme-add-variable, custom-theme-variable-action)
8657 (custom-variable-reset-theme, custom-theme-delete-variable)
8658 (custom-face-reset-theme, custom-theme-face-action)
8659 (custom-theme-delete-face, custom-theme-merge-theme)
8660 (custom-theme-add-face, custom-theme-visit-theme): New functions.
8661
8662 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
8663
8664 * custom.el: Move Custom Themes commentary to start of theme code.
8665 (custom-known-themes): Rename `standard' theme to `changed'.
8666 (custom-push-theme): Caller no longer specifies what theme to use
8667 when doing `reset'---the setting is simply removed from the theme.
8668 Delete MODE from `theme-value' and `theme-settings' properties.
8669 (custom-declare-theme): Ignore &rest args since we don't use them.
8670
8671 (custom-loaded-themes): Delete variable.
8672 (custom-theme-load-themes, custom-theme-loaded-p)
8673 (custom-theme-value): Delete functions.
8674
8675 (custom-declare-theme): Signal error on invalid theme names.
8676 (provide-theme): custom-loaded-themes was deleted.
8677 (load-theme): Load the file unconditionally.
8678 (enable-theme): Call `load-theme' if theme is undefined.
8679 (custom-enabled-themes): Only update value for successful loads.
8680 (disable-theme): Complete from enabled themes when interactive.
8681 (custom-variable-theme-value): Calculate theme value directly.
8682
8683 (custom-theme-reset-variables, custom-reset-variables): Mark as
8684 XEmacs compatibility functions. We don't actually use these.
8685
8686 * cus-edit.el (custom-variable-state-set):
8687 Use custom-variable-theme-value instead of custom-theme-value.
8688 (custom-face-state-set): Rename `standard' theme to `changed'.
8689 (custom-save-variables, custom-save-faces): Delete unneeded
8690 references to custom-reset-variables.
8691 (custom-save-resets): Delete function.
8692 (custom-save-variables, custom-save-faces): MODE argument deleted.
8693 (custom-save-variables, custom-save-faces): Ignore theme values.
8694
8695 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
8696 compatibility function.
8697
8698 2006-01-01 Richard M. Stallman <rms@gnu.org>
8699
8700 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
8701 (Custom-reset-current, Custom-reset-saved): Likewise.
8702 (Custom-reset-standard): Show message if aborted.
8703 (custom-mode): Doc fix, describing those commands.
8704
8705 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
8706 put on event-kind property.
8707
8708 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
8709
8710 * custom.el (provide-theme): Ban `user' theme name.
8711 (custom-enabling-themes): New variable.
8712 (enable-theme): Don't enable user if custom-enabling-themes is t.
8713 (custom-enabled-themes): Make it a defcustom.
8714 (custom-theme-recalc-face): No-op if face is undefined.
8715
8716 * cus-edit.el (custom-button-mouse): New variable.
8717 (custom-button-mouse): New face.
8718 (custom-raised-buttons, custom-mode): Use it.
8719
8720 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
8721
8722 2005-12-31 Eli Zaretskii <eliz@gnu.org>
8723
8724 * progmodes/gud.el (gud-display-line): Support hl-line in the
8725 source buffer.
8726
8727 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
8728
8729 * mouse.el (mouse-drag-window-above): Verify that the found window
8730 overlaps with the given window in the horizontal dimension.
8731
8732 2005-12-31 Eli Zaretskii <eliz@gnu.org>
8733
8734 * Makefile.in (cvs-update): New target.
8735
8736 * makefile.w32-in (cvs-update): Ditto.
8737
8738 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
8739
8740 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
8741 (custom-new-theme-mode-map): New variable.
8742
8743 2005-12-30 Richard M. Stallman <rms@gnu.org>
8744
8745 * custom.el (custom-load-themes): Function deleted.
8746
8747 * cus-edit.el (custom-save-loaded-themes): Function deleted.
8748 (custom-save-variables): Don't delete or add custom-load-themes call.
8749
8750 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
8751
8752 * cus-start.el: Add `visible-cursor'.
8753
8754 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
8755 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
8756 (flymake-process-filter): Switch to buffer before calling it instead.
8757 (flymake-post-syntax-check, flymake-highlight-err-lines)
8758 (flymake-delete-own-overlays, flymake-parse-err-lines)
8759 (flymake-start-syntax-check, flymake-start-syntax-check-process)
8760 (flymake-count-lines, flymake-parse-residual):
8761 Remove constant buffer argument.
8762 (flymake-start-syntax-check-for-current-buffer): Remove.
8763 Update callers to use flymake-start-syntax-check instead.
8764 (flymake-display-err-menu-for-current-line):
8765 Remove unused var `mouse-pos'.
8766 (flymake-restore-formatting): Comment out unused function.
8767 (flymake-report-status, flymake-report-fatal-status): Remove buffer
8768 argument, use current-buffer instead. Update callers.
8769
8770 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8771
8772 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
8773 buffer-local because choose-completion-delete-max-match requires
8774 that we set completion-ignore-case (i.e., binding via let is not
8775 sufficient).
8776 (bibtex-complete): Always set completion-ignore-case and
8777 choose-completion-string-functions. The latter is needed because
8778 choose-completion-string-functions keeps its value if we quit the
8779 *Completions* buffer without requesting a completion.
8780
8781 2005-12-30 Andreas Schwab <schwab@suse.de>
8782
8783 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
8784
8785 2005-12-30 Eli Zaretskii <eliz@gnu.org>
8786
8787 * jit-lock.el (jit-lock-chunk-size): Doc fix.
8788
8789 2005-12-30 Juri Linkov <juri@jurta.org>
8790
8791 * locate.el (locate-fcodes-file, locate-header-face)
8792 * progmodes/delphi.el (delphi-other-face)
8793 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
8794
8795 * paren.el (show-paren-match, show-paren-mismatch): Use existing
8796 group `paren-showing-faces'.
8797
8798 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
8799 (goto-address): Fix docstring.
8800
8801 * net/webjump.el (webjump-sample-sites): Update URLs.
8802
8803 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
8804
8805 * subr.el (cancel-change-group): Add listp around pending-undo-list.
8806
8807 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
8808
8809 * font-lock.el (font-lock-compile-keywords): Signal an error when
8810 font-lock-set-defaults hasn't been called.
8811
8812 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
8813
8814 * subr.el (noreturn, 1value): Doc fixes.
8815
8816 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8817
8818 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
8819 that assoc-string returns nil.
8820
8821 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8822
8823 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
8824 (bibtex-entry-type-str, bibtex-empty-field-re)
8825 (bibtex-search-backward-string, bibtex-preamble-prefix)
8826 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
8827 (bibtex-any-valid-entry-type): New variable.
8828 (bibtex-parse-field-name): Simplify.
8829 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
8830 (bibtex-preamble-prefix): Include left delimiter.
8831 (bibtex-search-forward-field, bibtex-search-backward-field):
8832 Allow unbounded search past entry boundaries (required by bibtex-pop).
8833 (bibtex-text-in-field-bounds): Use push.
8834 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
8835 (bibtex-parse-preamble, bibtex-valid-entry)
8836 (bibtex-beginning-first-field): New functions.
8837 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
8838 (bibtex-map-entries): Fix docstring.
8839 (bibtex-flash-head): New arg prompt. Simplify.
8840 (bibtex-enclosing-field): Include code of bibtex-inside-field.
8841 (bibtex-insert-kill): Simplify. Always insert text past the
8842 current field or entry.
8843 (bibtex-format-entry): Use bibtex-parse-field.
8844 (bibtex-pop): Use bibtex-beginning-of-entry and
8845 bibtex-end-of-entry to initiate the search. Insert empty field if
8846 we found ourselves.
8847 (bibtex-print-help-message): New args field and comma.
8848 Handle entry keys.
8849 (bibtex-make-field): Use bibtex-beginning-of-entry.
8850 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
8851 invalid entry.
8852 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
8853 Handle preambles. Simplify code for thorough test.
8854 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
8855 New arg comma. Handle entry heads.
8856 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
8857 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
8858 New arg comma.
8859 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
8860 (bibtex-fill-field): Simplify.
8861 (bibtex-fill-entry): Use bibtex-beginning-first-field and
8862 bibtex-parse-field.
8863 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
8864 (bibtex-complete): Use bibtex-parse-preamble.
8865
8866 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
8867
8868 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
8869 Display name of expression instead of convenience variable.
8870 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
8871
8872 * progmodes/gud.el (gud-tooltip-dereference): Rename from
8873 toggle-gud-tooltip-dereference.
8874 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
8875 (gud-tooltip-tips): ...here when dereferencing.
8876
8877 2005-12-28 Bill Wohler <wohler@newt.com>
8878
8879 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
8880
8881 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
8882
8883 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
8884 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
8885 (vc-annotate-display-autoscale): Adjust call.
8886 (vc-annotate-display-default): Adjust call. Make arg compulsory.
8887 Fix interactive spec.
8888 (vc-annotate-time-span): Remove.
8889 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
8890 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
8891 (vc-annotate-display-select): Use new name.
8892
8893 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
8894 (vc-annotate-mode-menu): Remove left-over redundant declaration.
8895 Correct the construction of span entries. Simplify.
8896 (vc-annotate-display-select): Fix the nil case.
8897 (vc-annotate): Remove obsolete (and now broken) code.
8898 (vc-annotate-extract-revision-at-line): Remove obsolete code.
8899 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
8900
8901 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
8902
8903 * subr.el (lazy-completion-table): Correct typo in docstring.
8904
8905 * startup.el (command-line): Use `custom-reevaluate-setting' for
8906 `send-mail-function'.
8907
8908 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
8909
8910 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
8911
8912 * mail/smtpmail.el (smtpmail-try-auth-methods):
8913 Send credentials together with "AUTH PLAIN" command.
8914
8915 2005-12-27 Richard M. Stallman <rms@gnu.org>
8916
8917 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
8918 mouse-2, go back to previously selected window, so it's selected
8919 when mouse-2 command runs.
8920
8921 2005-12-27 Juri Linkov <juri@jurta.org>
8922
8923 * descr-text.el (describe-text-sexp): Use square brackets for
8924 button [Show] to distinguish it from the property value `show'.
8925 (describe-property-list): Use `insert-text-button' with
8926 `help-face' type instead of putting face in quotes, because button
8927 is not created automatically for a list of faces.
8928 (describe-text-properties-1): Put button-type value in quotes to
8929 distinguish from plain text "button".
8930 (describe-char): Display code point values in hex. Don't use
8931 `symbol-name' for `current-input-method' because it is a string.
8932 Use `insert-text-button' with `help-face' type instead of putting
8933 hardcoded face in quotes, because button is not created automatically.
8934
8935 2005-12-27 Richard M. Stallman <rms@gnu.org>
8936
8937 * progmodes/glasses.el (glasses-face): More specific custom type.
8938
8939 * files.el (set-visited-file-name): Doc fix.
8940
8941 * textmodes/flyspell.el (flyspell-external-point-words):
8942 Use local var buffer-scan-pos to advance scan for next misspelling.
8943 Advance it only after we find the misspelling.
8944
8945 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
8946
8947 * textmodes/flyspell.el (flyspell-external-point-words):
8948 New criteria for finding the misspelling in the buffer.
8949
8950 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
8951
8952 * help-mode.el (help-insert-string): Set help-xref-stack-item
8953 rather than call help-setup-xref.
8954
8955 * descr-text.el (describe-char): Revert previous changes for
8956 optional buffer argument.
8957
8958 2005-12-27 Juri Linkov <juri@jurta.org>
8959
8960 * help-mode.el (help-insert-string): New function. Save buffer
8961 contents in cases where it is impossible to recompute the old contents.
8962
8963 * descr-text.el (describe-char): Set help-xref-stack-item
8964 explicitly after buffer has been generated.
8965
8966 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8967
8968 * cus-start.el (all): Add x-gtk-show-hidden-files.
8969
8970 2005-12-26 Richard M. Stallman <rms@gnu.org>
8971
8972 * replace.el (perform-replace): Calculate match-again
8973 before skipping read-only matches.
8974
8975 * paren.el (paren-showing-faces): New group.
8976 (show-paren-match, show-paren-mismatch): Move to that group.
8977
8978 * button.el (button): Put into group `basic-faces'.
8979
8980 * progmodes/make-mode.el: Remove faces from group `faces'.
8981
8982 * apropos.el (apropos, apropos-value): Doc fix.
8983 (apropos-documentation): Doc fix.
8984
8985 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
8986
8987 * subr.el (lazy-completion-table): Remove argument `args'.
8988
8989 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
8990 Don't use the `args' argument of lazy-completion-table.
8991
8992 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
8993
8994 * descr-text.el (describe-char): Add optional argument for buffer.
8995 Set buffer appropriately. Call help-setup-xref.
8996 Suggested by Stefan Monnier.
8997
8998 2005-12-26 Juri Linkov <juri@jurta.org>
8999
9000 * descr-text.el: Require `help-fns' at runtime. Don't require
9001 `button' for byte compilation.
9002 (describe-text-widget): Add `help-echo' for first button.
9003 Use `help-info' for second.
9004 (describe-property-list): Use `help-argument-name' instead of `italic'.
9005 (describe-text-category): Add prompt to interactive spec.
9006 Call `help-setup-xref'.
9007 (describe-char): Use `help-character-set'. Add `help-echo' for
9008 code point. Use `help-input-method'. Remove superfluous insert.
9009
9010 2005-12-25 Richard M. Stallman <rms@gnu.org>
9011
9012 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
9013 at point, in case of narrowing.
9014
9015 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
9016
9017 * locate.el (locate-header-face): Allow nil in type.
9018
9019 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
9020
9021 2005-12-25 Romain Francoise <romain@orebokech.com>
9022
9023 * battery.el (battery-linux-proc-acpi): Also try
9024 `/proc/acpi/thermal_zone/THM0/temperature'.
9025
9026 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
9027
9028 * custom.el (custom-push-theme): Fix docstring.
9029
9030 * cus-edit.el (custom-variable-set, custom-variable-save)
9031 (custom-variable-save): Custom-quote widget values.
9032 (customize-save-variable): Fix custom-push-theme call.
9033
9034 2005-12-24 Eli Zaretskii <eliz@gnu.org>
9035
9036 * w32-fns.el (w32-batch-update-autoloads): New function.
9037
9038 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
9039 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
9040 from the command line.
9041
9042 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
9043
9044 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
9045 reset means to remove setting from theme entirely. Don't keep
9046 expanding theme-settings list; delete old entries if necessary.
9047
9048 * cus-edit.el (custom-buffer-create-internal): Move "Erase
9049 customization" button one line up.
9050 (custom-themed): New face.
9051 (custom-magic-alist): New value, THEMED, for theme settings.
9052 (custom-variable-state-set, custom-face-state-set):
9053 Check theme-value instead of saved-value.
9054 (custom-variable-reset-standard, custom-face-reset-standard):
9055 Remove theme setting entirely. Recalculate new values.
9056 (custom-variable-set, custom-variable-set)
9057 (custom-variable-reset-saved, custom-variable-reset-backup)
9058 (custom-face-set, custom-face-reset-saved): Update `user' theme.
9059 (custom-variable-save): Fix typos.
9060
9061 2005-12-23 Juri Linkov <juri@jurta.org>
9062
9063 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
9064 Add autoload cookies.
9065 (edebug-outside-d-c-i-n-s-w): New variable.
9066 (edebug-display, edebug-outside-excursion): Use it to save the
9067 original value of default-cursor-in-non-selected-windows.
9068 Set default-cursor-in-non-selected-windows to t while Edebug
9069 is active.
9070 (edebug-mode, edebug-eval-mode): Doc fix.
9071
9072 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
9073 with `buffer-substring-no-properties' to remove common substring
9074 highlighting.
9075
9076 * info.el (info-other-window, info): Rename function argument
9077 `file' to `file-or-node'.
9078 (Info-complete-menu-item): Use local variable `complete-nodes' to
9079 keep the global value of `Info-complete-nodes' unchanged for
9080 subsequent completions.
9081 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
9082
9083 * simple.el (get-next-valid-buffer, last-buffer)
9084 (next-error-buffer-p, next-error-find-buffer)
9085 (minibuffer-history-sexp-flag): Doc fix.
9086
9087 * savehist.el (savehist-mode-hook): Add `:group'.
9088
9089 * log-view.el: Call autoload for vc-find-version.
9090 (log-view-current-file): Adjust subgroup numbers.
9091 (log-view-current-tag): Add `length'.
9092
9093 2005-12-23 Richard M. Stallman <rms@gnu.org>
9094
9095 * vc.el (vc-annotate-car-last-cons): Defn moved up.
9096
9097 2005-12-23 Juri Linkov <juri@jurta.org>
9098
9099 * hi-lock.el (hi-lock-archaic-interface-message-used)
9100 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
9101 (hi-lock-mode): Display "Hi" in the mode line only when
9102 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
9103 (hi-lock-write-interactive-patterns):
9104 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
9105 (hi-lock-set-pattern, hi-lock-set-file-patterns)
9106 (hi-lock-font-lock-hook): Set 3rd arg `how' of
9107 font-lock-add-keywords to t.
9108
9109 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
9110
9111 * hi-lock.el (hi-lock-highlight-range): New variable.
9112 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
9113 only if font-lock-fontified is non-nil. Remove overlays.
9114 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
9115 font-lock-fontified is non-nil, otherwise use overlays (instead of
9116 text properties).
9117 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
9118 New variables.
9119 (hi-lock-string-serialize) New function.
9120
9121 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9122
9123 * menu-bar.el (menu-find-file-existing): New function.
9124 (menu-bar-file-menu): Use menu-find-file-existing for Open.
9125
9126 * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
9127
9128 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
9129
9130 * vc.el: Remove unnecessary leading * in docstrings.
9131 (vc-annotate-mode-map): Move initialization into declaration.
9132 (vc-static-header-alist): Nitpick on the regexp.
9133 (vc-default-init-version): New fun.
9134 (vc-register): Use it.
9135 (vc-insert-headers): Use dolist.
9136 (vc-annotate-get-backend): Remove unused function.
9137 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
9138 (vc-annotate-mode): Remove corresponding call.
9139 (vc-annotate-car-last-cons): Simplify.
9140 (vc-annotate-buffers): Remove var.
9141 (vc-annotate-backend): Make it buffer-local.
9142 (vc-annotate): Move the interaction to the interactive spec.
9143 Add a `buf' argument.
9144 (vc-annotate-warp-version): Use this new `buf' argument to avoid
9145 killing&creating a vc-annotate buffer, which is very disruptive when
9146 the buffers are shown in dedicated frames.
9147
9148 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
9149
9150 * descr-text.el: Add FSF as maintainer.
9151 (describe-text-mode, describe-text-mode-map)
9152 (describe-text-mode-hook, describe-text-done): Delete. Use normal
9153 help-mode.
9154 (describe-text-widget, describe-text-sexp)
9155 (describe-property-list, describe-text-category)
9156 (describe-text-properties, describe-text-properties-1)
9157 (describe-char): Use help buttons instead of widgets.
9158 (describe-char-unicodedata-file): Make URL link in doc string.
9159
9160 2005-12-22 Richard M. Stallman <rms@gnu.org>
9161
9162 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
9163 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
9164 Don't include buttons that write a file when there's no file.
9165 (custom-variable-menu, custom-face-menu, custom-group-menu):
9166 Don't include commands that write a file when there's no file.
9167 (customize-browse): Reword the top-of-buffer help intro.
9168 (custom-buffer-create-internal): Fix previous change.
9169 (customize-changed-options-previous-release): Prev release is 21.1.
9170 (customize-changed-options): Doc fix.
9171 (customize-changed): New alias.
9172 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
9173 Say "standard values".
9174 (Custom-reset-standard): Doc fix.
9175 (custom-face-reset-standard): Doc fix.
9176
9177 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
9178
9179 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
9180 even if font-lock-mode is non-nil since it may be t without having
9181 turned on font-lock-mode-internal.
9182 (font-lock-choose-keywords): Minor optimization.
9183 (font-lock-add-keywords, font-lock-remove-keywords)
9184 (font-lock-set-defaults): Don't call make-local-variable on a variable
9185 that we know to already be local.
9186
9187 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
9188
9189 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
9190 messages if in the minibuffer.
9191
9192 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
9193
9194 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
9195 (tex-mode-flyspell-verify, flyspell-get-word)
9196 (flyspell-external-point-words): Don't use point-min/max uselessly.
9197
9198 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
9199 by Kevin Rodgers. Instead, just hide the completions buffer if we
9200 don't need to show it.
9201
9202 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
9203
9204 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
9205
9206 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
9207
9208 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
9209 delete-windows-on with an inexistent buffer.
9210
9211 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
9212
9213 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
9214 Delete defcustom variable :tag names.
9215
9216 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
9217
9218 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
9219 (log-view-font-lock-keywords): Ajust subgroup numbers.
9220 (log-view-current-tag): Don't hard code the number of subgroups.
9221
9222 2005-12-20 Juri Linkov <juri@jurta.org>
9223
9224 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
9225 (tooltip-x-offset, tooltip-y-offset): Doc fix.
9226
9227 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
9228 (menu-bar-non-minibuffer-window-p): Instead of checking
9229 display-multi-frame-p, use selected-frame when menu-updating-frame
9230 is nil.
9231
9232 2005-12-20 Stuart Herring <herring@lanl.gov> (tiny change)
9233
9234 * align.el (align-rules-list): Use [ \t] instead of \s-
9235 for column separators in text mode.
9236
9237 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
9238
9239 * help-mode.el (help-customize-variable, help-customize-face):
9240 Don't pop help-xref-stack as help-follow no longer pushes
9241 anything on to it.
9242
9243 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
9244
9245 * textmodes/org.el (org-agenda-custom-commands): New option.
9246 (org-agenda): Offer custom commands on splash screen.
9247 (org-make-tags-matcher): Parser for Boolean logic added.
9248 (org-agenda-set-tags): New command.
9249 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
9250 (org-set-tags): Efficiency improvements.
9251 (org-auto-align-tags): New option.
9252 (org-todo, org-demote, org-promote): Realign tags.
9253 (org-tags-completion-function): Use also "&" and "|" as separators.
9254 (org-org-menu): Agenda commands simplified.
9255
9256 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
9257
9258 * cus-edit.el (customize-apropos, customize-apropos-options):
9259 Docstring changes.
9260
9261 * font-lock.el (font-lock): Add tags to the links in the defgroup.
9262
9263 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
9264
9265 * longlines.el (longlines-mode): Wrap while widened.
9266 (longlines-decode-region, longlines-encode-region): Compute max
9267 just once.
9268
9269 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9270
9271 * cus-edit.el (mac): New group.
9272
9273 * cus-start.el (all): Add user options in macterm.c. Add test for
9274 Mac-related built-ins. Fix test for GTK-related built-ins.
9275
9276 * term/mac-win.el (mac-handle-language-change)
9277 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
9278 (mac-services-open-selection, mac-services-mail-selection)
9279 (mac-services-mail-to, mac-services-insert-text)
9280 (mac-dispatch-apple-event): Add docstrings.
9281 (x-get-selection, mac-select-convert-to-string): Select coding
9282 system from `utf-16be' and `utf-16le' using `byteorder'.
9283
9284 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
9285
9286 * subr.el (lazy-completion-table): Don't be fooled if the var holds
9287 a "list" (lambda ...) rather than a real completion list.
9288
9289 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
9290 lexical-let when encountering ((lambda (...) ...) ...).
9291
9292 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
9293
9294 * progmodes/sh-script.el (sh-mode):
9295 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
9296 * textmodes/picture.el (picture-mode): Update docstrings.
9297
9298 2005-12-17 Eli Zaretskii <eliz@gnu.org>
9299
9300 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
9301 commands enclosed in $(ARGQUOTE)s should not be split between two
9302 lines, as that will break with GNU Make >3.80, when sh.exe is used
9303 and arg quoting is with '..'.
9304 (autoloads): Don't break the quoted --eval expression between
9305 several lines.
9306
9307 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
9308
9309 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
9310 Capture error from printing circular structures.
9311
9312 2005-12-17 Martin Rudalics <rudalics@gmx.at>
9313
9314 * wid-edit.el (widget-checkbox-action): Clear undo info.
9315
9316 2005-12-16 Bill Wohler <wohler@newt.com>
9317
9318 * menu-bar.el (kill-this-buffer): Set a good example by using menu
9319 bar, not menubar in comment.
9320
9321 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
9322
9323 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
9324 After-change-functions should not clobber the match data.
9325
9326 2005-12-16 Juri Linkov <juri@jurta.org>
9327
9328 * simple.el (choose-completion): Use `buffer-substring-no-properties'
9329 instead of `buffer-substring'.
9330 (completion-common-substring): Doc fix.
9331 (completion-setup-function): Use minibuffer-completion-contents
9332 instead of minibuffer-contents. Don't set common-string-length
9333 initially. Remove special handling of partial-completion-mode.
9334 Move computation of completion-base-size into one cond.
9335 Call completion-base-size-function in mainbuf. In computation of
9336 completion-base-size for file name completion don't move point to
9337 the end of the minibuffer. Move computation of common-string-length
9338 into one cond. Start putting faces only when common-string-length>=0.
9339 Add condition to put completions-common-part when
9340 common-string-length>0.
9341
9342 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
9343 place point at the first different character in the minibuffer
9344 even if this position is at the beginning of the minibuffer.
9345
9346 * info.el (Info-read-node-name-1): In completion-base-size-function's
9347 lambda return 1 if common-substring or minibuffer-completion-contents
9348 starts with (, and 0 otherwise.
9349
9350 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
9351 Use `crm-current-element' for second arg of `display-completion-list'.
9352
9353 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
9354
9355 * files.el (set-auto-mode): Look for an interpreter specified on
9356 the first line also if search for mode specification succeeded,
9357 but the mode is not known.
9358
9359 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
9360
9361 * textmodes/org.el (org-tags-match-list-sublevels): New option.
9362 (org-open-at-point): Implement tag searches as links.
9363 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
9364 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
9365 (org-tags-sparse-tree, org-tags-view, org-set-tags)
9366 (org-agenda-dispatch): New commands.
9367 (org-use-tag-inheritance, org-tags-column): New options.
9368 (org-tab-follows-link, org-return-follows-link): New options.
9369 (org-tags): New customize group.
9370 (org-start-icalendar-file): Get local time zone.
9371 (org-tags-completion-function): New function.
9372 (org-set-font-lock-defaults): Make sure links will also be
9373 highlighted inside headlines.
9374
9375 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
9376
9377 * term.el (term-emulate-terminal):
9378 Let term-handle-ansi-terminal-messages override what Bash says about
9379 its current directory.
9380
9381 2005-12-16 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
9382
9383 * bindings.el (last-buffer): Move to simple.el.
9384 * simple.el (last-buffer): Move here.
9385 (get-next-valid-buffer): New function.
9386 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
9387 (prev-buffer): Ditto. Rename to `previous-buffer'.
9388
9389 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
9390 * bindings.el (global-map): Ditto.
9391
9392 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
9393
9394 * cus-edit.el: Introductory comment change.
9395 (custom-magic-alist): Change message string for the `rogue' state.
9396
9397 2005-12-15 Richard M. Stallman <rms@gnu.org>
9398
9399 * tooltip.el: Delete defcustom variable :tag names.
9400
9401 * complete.el (partial-completion-mode): Doc fix.
9402
9403 * textmodes/flyspell.el (flyspell-external-point-words):
9404 Use save-excursion to ensure we don't move backward in the
9405 search loop, not even one character.
9406 (flyspell-delete-all-overlays): Use remove-overlays directly.
9407
9408 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
9409 (ispell-start-process): Set that variable.
9410 Clear ispell-buffer-local-name.
9411 (ispell-internal-change-dictionary):
9412 Set ispell-current-dictionary after killing process.
9413 (ispell-buffer-local-dict):
9414 Don't set spell-personal-dictionary after killing process.
9415 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
9416 (ispell-tex-skip-alists, ispell-html-skip-alists)
9417 (ispell-skip-region-alist): Mark as risky.
9418
9419 * net/newsticker.el (newsticker--retrieval-timer-list)
9420 (newsticker--display-timer, newsticker-running-p)
9421 (newsticker-ticker-running-p): Definitions moved up.
9422
9423 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
9424
9425 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
9426
9427 2005-12-15 David Ponce <david@dponce.com>
9428
9429 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
9430 (recentf-edit-list, recentf-open-files): Signal an error when
9431 there is no recent file.
9432
9433 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
9434
9435 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
9436 read-only except for texinfo-format-region evaluation.
9437
9438 2005-12-14 Richard M. Stallman <rms@gnu.org>
9439
9440 * vc.el (vc-default-previous-version, vc-default-next-version)
9441 (vc-do-command): Doc fixes.
9442
9443 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9444
9445 * textmodes/bibtex.el (bibtex-expand-strings)
9446 (bibtex-autokey-expand-string, bibtex-name-part)
9447 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
9448 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
9449 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
9450 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
9451 (bibtex-entry-postfix, bibtex-known-entry-type-re)
9452 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
9453 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
9454 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
9455 (bibtex-beginning-of-last-entry): Remove.
9456 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
9457 message if comma is missing but buffer is read-only.
9458 (bibtex-parse-field-text): Handle whitespaces at the end of field
9459 text. Return 3-element list with beginning and end of field text
9460 and end of field.
9461 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
9462 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
9463 (bibtex-search-forward-field, bibtex-search-backward-field):
9464 Search always delimited by limits of entry. Use more efficient
9465 search algorithms.
9466 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
9467 bibtex-end-of-name-in-field.
9468 (bibtex-text-in-field-bounds): Handle BibTeX strings when
9469 extracting the content of a field.
9470 (bibtex-text-in-field): Use search limits.
9471 (bibtex-parse-string-prefix): Handle empty string keys based on
9472 bibtex-string-empty-key.
9473 (bibtex-parse-string): Fix docstring.
9474 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
9475 (bibtex-preamble-prefix, bibtex-strings): New functions.
9476 (bibtex-skip-to-valid-entry): Include preceding whitespace in
9477 BibTeX entries (consistent with other BibTeX functions).
9478 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
9479 (bibtex-search-entry): Fix docstring. Simplify.
9480 (bibtex-flash-head, bibtex-complete-string-cleanup)
9481 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
9482 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
9483 (bibtex-parse-entry): New optional arg content.
9484 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
9485 Use bibtex-text-in-field-bounds.
9486 (bibtex-print-help-message): Handle BibTeX strings and preambles.
9487 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
9488 bibtex-parse-string-postfix.
9489 (bibtex-find-text-internal): New function.
9490 (bibtex-remove-delimiters): Use it.
9491 (bibtex-find-text): Use it. New optional arg help.
9492 (bibtex-complete): Handle BibTeX string and preamble entries.
9493 (bibtex-Preamble): Fix order of closing delimiters.
9494
9495 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
9496
9497 * vc.el (vc-default-revert): New fun.
9498
9499 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
9500
9501 2005-12-14 Romain Francoise <romain@orebokech.com>
9502
9503 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
9504 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
9505 (font-lock-remove-keywords): Likewise.
9506
9507 2005-12-14 Juri Linkov <juri@jurta.org>
9508
9509 * log-view.el (log-view-diff): Doc fix.
9510
9511 * isearch.el (isearch-query-replace): Use (mark) instead of
9512 isearch-opoint if mark is active in transient-mark-mode.
9513
9514 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
9515
9516 * isearch.el (isearch-query-replace): Check for isearch-other-end.
9517
9518 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
9519
9520 * progmodes/cpp.el (cpp-face): New widget.
9521 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
9522
9523 2005-12-14 Juri Linkov <juri@jurta.org>
9524
9525 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
9526 around `erase-buffer' and `insert'.
9527
9528 * descr-text.el (describe-text-properties): Replace buffer name
9529 "*Help-2*" with "*Help*<2>".
9530 (describe-char): Add functions print-help-return-message,
9531 toggle-read-only. Use help-setup-xref with nil to not store
9532 describe-char in help-xref-stack. Use help-make-xrefs to
9533 make [back] button.
9534
9535 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
9536
9537 * wdired.el (wdired-old-point): New internal variable.
9538 (wdired-change-to-wdired-mode): Set it buffer-locally.
9539 (wdired-abort-changes): Restore point after aborting changes.
9540
9541 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
9542
9543 * vc.el (vc-do-command): Add a new value t for okstatus.
9544
9545 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
9546 frame in case of errors.
9547
9548 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9549
9550 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
9551 so it comes after "On the Left" in the menu.
9552
9553 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
9554
9555 * cus-edit.el (customize-apropos, customize-apropos-options)
9556 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
9557
9558 2005-12-12 Bill Wohler <wohler@newt.com>
9559
9560 * vc-svn.el (vc-svn-registered): Fix problem of visiting
9561 non-writable Subversion-controlled files by saving window
9562 configuration before calling vc-do-command. vc-do-command calls
9563 pop-to-buffer on error which is unexpected during registration.
9564
9565 2005-12-12 Jay Belanger <belanger@truman.edu>
9566
9567 * calc/README: Update the summary of changes.
9568
9569 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
9570
9571 * descr-text.el (describe-char): Rework last fix to solve the problem
9572 is the same way it's solved for everything else in that function
9573 (i.e. by extracting the info before setting up the *Help* buffer).
9574
9575 2005-12-12 Kim F. Storm <storm@cua.dk>
9576
9577 * subr.el (version-regexp-alist): Allow space as separator before
9578 non-numeric part, e.g. "1.0 alpha".
9579 (version-to-list): Interpret .X.Y version as 0.X.Y version.
9580
9581 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
9582
9583 * textmodes/org.el (org-agenda, org-timeline, org-todo):
9584 Implement Logging and the keep-modes setting.
9585 (org-get-category): Make sure a string is returned.
9586 (org-log-done): New function.
9587 (org-log-done, org-closed-string): New options.
9588
9589 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9590
9591 * tooltip.el (tooltip-y-offset): Change default to 20.
9592
9593 2005-12-12 Richard M. Stallman <rms@gnu.org>
9594
9595 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
9596
9597 * frame.el (display-hourglass): Doc fix.
9598
9599 * help.el (help-for-help-internal): Simplify entry for `a'.
9600
9601 * info.el (Info-on-current-buffer): Doc fix.
9602 (info-insert-file-contents): Don't test (featurep 'jka-compr).
9603
9604 * startup.el (inhibit-splash-screen): Make this the real name.
9605 (inhibit-startup-message): Make this the alias.
9606 (command-line): Find only simple.el, and use its directory
9607 to fill in other preloaded files' names.
9608 (command-line): Deactivate the mark if deactivate-mark is set.
9609
9610 * international/mule.el (load-with-code-conversion):
9611 Bind deactivate-mark.
9612
9613 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
9614
9615 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
9616
9617 * cus-edit.el (customize-apropos): Avoid listing an option more
9618 than once under different aliases. No longer list user options
9619 that are not defined with defcustom (unless a prefix arg is given).
9620 Doc fix.
9621 (customize-apropos-options): Doc fix.
9622
9623 2005-12-11 Juri Linkov <juri@jurta.org>
9624
9625 * frame.el (set-background-color, set-foreground-color)
9626 (set-cursor-color, set-mouse-color, set-border-color):
9627 Add explicit prompts to read colors by `facemenu-read-color'.
9628 (show-trailing-whitespace, blink-cursor-delay)
9629 (blink-cursor-interval, display-hourglass, hourglass-delay):
9630 Remove tags.
9631 (display-hourglass, hourglass-delay): Doc fix.
9632 (cursor-in-non-selected-windows): Capitalize words in tag.
9633
9634 * faces.el (frame-background-mode): Replace `choice-item' keywords
9635 with `const' to not make [default] button. Change default value tag
9636 from `default' to `automatic'. Doc fix.
9637 (trailing-whitespace) <defface>: Change group `whitespace' to
9638 `whitespace-faces'.
9639
9640 2005-12-11 Richard M. Stallman <rms@gnu.org>
9641
9642 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
9643
9644 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9645
9646 * term/mac-win.el: Create keymap for mac-apple-event-map.
9647
9648 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
9649
9650 * tooltip.el (tooltip-mode): Move to start of file so that it
9651 appears at top of customize buffer.
9652
9653 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
9654 Add the gud groupname.
9655 (gud-tooltip-mode): Add the tooltip groupname.
9656 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
9657 avoid conflict with tooltip-use-echo-area.
9658
9659 2005-12-10 Romain Francoise <romain@orebokech.com>
9660
9661 * help.el (help-for-help-internal): Add `r' in doc string.
9662
9663 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
9664
9665 * align.el (align-regexp, align-highlight-rule):
9666 Use region-beginning and region-end instead of point and mark, so that
9667 repetition (with `repeat-complex-command') recomputes the region
9668 bounds.
9669
9670 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
9671
9672 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
9673 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
9674 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
9675 (balance-windows): Rewrite using the above new functions.
9676
9677 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
9678
9679 * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
9680 react if global-hi-lock-mode seems intended.
9681 (global-hi-lock-mode) Renamed from hi-lock-mode.
9682 (hi-lock-archaic-interface-message-used)
9683 (hi-lock-archaic-interface-deduce): New variables.
9684 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
9685 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
9686 (hi-lock-find-patterns, hi-lock-font-lock-hook):
9687 Replace hi-lock-buffer-mode with hi-lock-mode.
9688
9689 2005-12-10 Kevin Rodgers <ihs_4664@yahoo.com>
9690
9691 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
9692 completion list, even after a partial completion has been
9693 inserted in the current buffer. If there are more than 1
9694 completion, redisplay the *Completions* buffer; if the
9695 completion is unique, delete the *Completions* window.
9696
9697 2005-12-10 Eli Zaretskii <eliz@gnu.org>
9698
9699 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
9700 strings and long subject lines that were broken into multiple
9701 lines at arbitrary places. Handle subjects that have "Re: " in
9702 the middle.
9703
9704 2005-12-10 John W. Eaton <jwe@octave.org>
9705
9706 * emacs/octave-mod.el (octave-electric-space): Don't indent
9707 comments or strings if octave-auto-indent is nil.
9708
9709 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9710
9711 * term/mac-win.el: Require url when compiling.
9712 Call mac-process-deferred-apple-events after loading init files.
9713 (mac-apple-event-map): New defvar. Define event handlers in it.
9714 (core-event, internet-event): New Apple event class symbols.
9715 (open-application, reopen-application, open-documents)
9716 (print-documents, open-contents, quit-application)
9717 (application-died, show-preferences, autosave-now, get-url):
9718 New Apple event ID symbols.
9719 (about): New HICommand ID symbol.
9720 (mac-event-spec, mac-event-ae): New macros.
9721 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
9722 (mac-ae-selection-range, mac-ae-text-for-search)
9723 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
9724 (mac-application-menu-map): Remove keymap. Handlers for HICommand
9725 and Services menu events are now defined in mac-apple-event-map.
9726 (mac-drag-n-drop): Remove selection range handling.
9727
9728 2005-12-10 Kenichi Handa <handa@m17n.org>
9729
9730 * simple.el (zap-to-char):
9731 * isearch.el (isearch-process-search-char): Translate CHAR by
9732 translation-table-for-input.
9733
9734 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
9735
9736 * foldout.el (foldout-exit-fold): Properly hide subtree.
9737
9738 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
9739
9740 * files.el (save-buffer):
9741 * international/ucs-tables.el (ucs-set-table-for-input):
9742 * mail/mail-extr.el (mail-extract-address-components):
9743 * mail/sendmail.el (mail-mode): Reformat doc string.
9744
9745 2005-12-09 Juri Linkov <juri@jurta.org>
9746
9747 * isearch.el (isearch-highlight): Change main overlay priority
9748 from 1 to 1001. Simplify.
9749 (isearch-lazy-highlight-update): Change lazy overlay priority
9750 from 0 to 1000.
9751
9752 * replace.el (replace-highlight): Change overlay priority from
9753 1 to 1001.
9754
9755 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
9756 Change overlay priority from 1 to 1001. Reuse existing overlay.
9757
9758 * compare-w.el (compare-windows-highlight): Change overlay
9759 priority from 1 to 1000.
9760
9761 * menu-bar.el (menu-bar-edit-menu): Add listp around
9762 pending-undo-list to disable menu item "undo" when pending
9763 undo list is empty.
9764
9765 * locate.el (locate): Disable undo in *Locate* buffer.
9766
9767 2005-12-09 Kim F. Storm <storm@cua.dk>
9768
9769 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
9770
9771 2005-12-09 David Ponce <david@dponce.com>
9772
9773 * recentf.el: Improvement of the menu code.
9774 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
9775 instead of menu hook.
9776 (recentf-show-menu, recentf-hide-menu): New functions.
9777 (recentf-menu-customization-changed, recentf-mode): Use them.
9778 (recentf-menu-action, recentf-max-menu-items)
9779 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
9780 (recentf-arrange-by-rule-others)
9781 (recentf-arrange-by-rules-min-items)
9782 (recentf-arrange-by-rule-subfilter) : Don't use
9783 `recentf-menu-customization-changed'.
9784 (recentf-arrange-rules): Likewise. Accept functions to compute
9785 sub-menu titles.
9786 (recentf-menu-filter): Likewise. Doc fix.
9787 (recentf-menu-value-shortcut): Doc fix.
9788 (recentf-dump-variable): Quote atom value.
9789 (recentf-make-menu-items): Update to use it as a menu filter.
9790 (recentf-match-rule): New function.
9791 (recentf-arrange-by-rule): Use it.
9792 (recentf-indirect-mode-rule): New function.
9793 (recentf-build-mode-rules): Use it.
9794 (recentf-dir-rule): New function.
9795 (recentf-arrange-by-dir): Use it.
9796 (recentf-filter-changer-current): Rename from
9797 `recentf-filter-changer-state'. All references updated.
9798 (recentf-filter-changer-alist): Update filter names.
9799 (recentf-filter-changer-select): New function.
9800 (recentf-filter-changer): Use it. Make a sub-menu from filters
9801 available in `recentf-filter-changer-alist'.
9802 (recentf-data-cache, recentf-clear-data)
9803 (recentf-update-menu): Remove. All references updated.
9804 (recentf-match-rule-p, recentf-build-dir-rules)
9805 (recentf-filter-changer-goto-next)
9806 (recentf-filter-changer-get-current)
9807 (recentf-filter-changer-get-next): Remove.
9808
9809 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
9810
9811 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
9812 buffer "Reset" button to "Reset to Current" for consistency with
9813 the State buttons.
9814
9815 2005-12-08 John Paul Wallington <jpw@pobox.com>
9816
9817 * ibuf-ext.el (define-ibuffer-filter filename):
9818 If `dired-directory' is a list then really use its car.
9819
9820 2005-12-08 Kim F. Storm <storm@cua.dk>
9821
9822 * emulation/cua-rect.el (cua--rectangle-aux-replace):
9823 Fix indention of text on right side of replaced rectangle.
9824
9825 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
9826
9827 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
9828 No need to check gud-comint-buffer is bound.
9829 (gdb): Prevent multiple debugging when first session uses gdba.
9830
9831 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9832
9833 CC Mode update to 5.31.
9834
9835 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
9836 Emacsen which lack `define-minor-mode'. (Currently Emacs <21.
9837 We might do this function properly in the future).
9838
9839 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
9840 New macros c-sentence-end and c-default-value-sentence end, to cope
9841 with Emacs 22's new function `sentence-end'.
9842
9843 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9844
9845 * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
9846 compat issue using `c-put-overlay' and `c-delete-overlay'.
9847
9848 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
9849 New compat macros to handle overlays/extents.
9850
9851 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9852
9853 * progmodes/cc-fix.el: Add definitions of the macros push and pop
9854 (for GNU Emacs 20.4)
9855
9856 * progmodes/cc-defs.el:
9857 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
9858
9859 * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
9860 highlighting mechanism so it will work in XEmacs too.
9861
9862 * progmodes/cc-defs.el: Insert c-int-to-char.
9863
9864 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
9865 call to the new macro c-int-to-char. This solves XEmacs's
9866 regarding characters as different from integers.
9867
9868 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9869
9870 * progmodes/cc-fonts.el (c-make-syntactic-matcher):
9871 New internal helper.
9872
9873 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
9874 construct to make the indirect face lookup work in XEmacs.
9875
9876 (c-cpp-matchers): Append the negation char face to the existing
9877 fontification, so that the cpp face doesn't disappear.
9878 Use `c-make-syntactic-matcher' to avoid negation chars in comments
9879 and strings.
9880
9881 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
9882 to map to `font-lock-negation-char-face' in emacsen where it exists.
9883
9884 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9885
9886 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
9887
9888 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
9889 Rename "c-subword-move-mode" as "c-subword-mode".
9890
9891 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
9892 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
9893
9894 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9895
9896 * progmodes/cc-mode.el: Added autoload directive for
9897 `c-subword-move-mode' for use in older emacsen.
9898
9899 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9900
9901 * progmodes/cc-mode.el:
9902 (i) Insert a binding for C-c C-backspace into
9903 c-bind-special-erase-keys which works in TTYs.
9904 (ii) Make sure that when file styles are used, any explicitly
9905 given style variables take priority over those in the style.
9906 Do this by calling `hack-local-variables' a second time.
9907
9908 * progmodes/cc-vars.el: Add language specific customization
9909 widgets for AWK to c-doc-comment-style, c-require-final-newline
9910 and c-default-style. Add a defcustom for awk-mode-hook.
9911 Give c-syntactic-element and c-syntactic-context doc-strings by
9912 directly setting their `variable-documentation' propery.
9913 This allows Emacs 22.1 to read these with C-h v.
9914
9915 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
9916
9917 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9918
9919 * progmodes/cc-fonts.el, cc-vars.el
9920 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
9921 (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
9922 Masatake YAMATO.
9923
9924 (c-doc-comment-style): Made GtkDoc default in C mode.
9925
9926 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
9927 and C-c C-<delete>.
9928
9929 (c-bind-special-erase-keys): New function for use on
9930 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
9931
9932 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
9933 <delete> key behavior in XEmacs according to `delete-forward-p'.
9934 C.f. `c-electric-delete'.
9935
9936 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9937
9938 * progmodes/cc-mode.el: Give c-hungry-backspace and
9939 c-hungry-delete-forward permanent key bindings.
9940
9941 * progmodes/cc-cmds.el (c-electric-semi&comma):
9942 Bind c-syntactic-context for calls to "criteria functions", for
9943 consistency with other calls to user functions.
9944
9945 * progmodes/cc-cmds.el (c-indent-command): Expunge use of
9946 `current-prefix-arg', since this might be the prefix arg to a
9947 command which calls c-indent-command as a function. Change the
9948 interactive spec from "p" to "P".
9949
9950 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
9951 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
9952 was difficult to understand.
9953
9954 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9955
9956 * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
9957 first char of an identifier.
9958
9959 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
9960 +" syntax in C++.
9961
9962 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9963
9964 * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
9965 auto-fill doesn't split a c-comment's last word from a hanging
9966 "*/" when a space is typed between them after fill-column.
9967
9968 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
9969
9970 * progmodes/cc-styles.el (c-set-style)
9971 (c-setup-paragraph-variables): Abort the command if we're not in a
9972 CC Mode buffer.
9973
9974 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
9975 with blank comment-prefix, and a blank line as the comment's
9976 second line.
9977
9978 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9979
9980 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
9981 Incorporate the patterns added in the Emacs development branch
9982 for the new Emacs 22 face `font-lock-negation-char-face'.
9983
9984 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
9985 of "red" since it stands out better in xterms and DOS terminals.
9986
9987 * progmodes/cc-engine.el (c-literal-faces):
9988 Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
9989
9990 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9991
9992 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
9993 forcibly enable c-electric-flag.
9994
9995 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
9996 `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
9997 after the comment-prefix of a C-style comment will close that comment.
9998
9999 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10000
10001 * progmodes/cc-fonts.el (c-basic-matchers-before)
10002 (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
10003 in Pike.
10004
10005 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
10006 digraphs.
10007
10008 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
10009 (c-cpp-message-directives, c-cpp-include-directives)
10010 (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
10011 (c-cpp-expr-directives): Introduce new language constants to
10012 control cpp syntax in a cleaner way.
10013
10014 (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
10015
10016 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
10017
10018 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
10019 (c-multiline-string-start-char): New language constants and
10020 variables to specify how newlines in string literals work.
10021
10022 (c-font-lock-invalid-string): Use them.
10023
10024 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
10025 unbalanced close brace is entered. Optimization by avoiding going
10026 back over arbitrarily large blocks. Removed hints that this
10027 function only would be relevant/useful in AWK.
10028
10029 (c-electric-brace): Indent syntactically after the cleanups since
10030 lineup functions might do it differently then.
10031
10032 * progmodes/cc-engine.el, cc-langs.el
10033 (c-opt-op-identifier-prefix): New language constant and variable.
10034
10035 (c-just-after-func-arglist-p, c-after-special-operator-id)
10036 (c-search-decl-header-end, c-inside-bracelist-p): Use it.
10037
10038 * progmodes/cc-align.el, cc-engine.el
10039 (c-after-special-operator-id): New helper to handle C++ operator
10040 identifiers.
10041
10042 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
10043 (c-guess-basic-syntax): Handle C++ operator identifiers in
10044 declarations.
10045
10046 * progmodes/cc-langs.el (c-assignment-operators): Add the
10047 trigraph version of ^= too.
10048
10049 * progmodes/cc-langs.el (c-assignment-operators): Add the
10050 trigraph version of |= in C++.
10051
10052 * progmodes/cc-fonts.el (c-font-lock-declarators):
10053 Handle `c-decl-hangon-kwds' after the identifier name.
10054
10055 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
10056 whether an arglist is "nonempty", ignore a comment after the open
10057 paren if it isn't followed by a non-comment token on the same line.
10058
10059 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
10060 Enable heuristics below the point to cope with classes inside special
10061 brace lists in Pike.
10062
10063 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10064
10065 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
10066
10067 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10068
10069 * progmodes/cc-guess.el (cc-guess-install): New function to
10070 install an already guessed style in another buffer.
10071
10072 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
10073 sets `inhibit-read-only' - `c-save-buffer-state' should be used
10074 anyway if the change always is undone.
10075
10076 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10077
10078 Implement togglable electricity:
10079
10080 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
10081 saying when it should be used.
10082
10083 * progmodes/cc-engine.el: Add the new buffer-local variable,
10084 c-electric-flag.
10085
10086 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
10087 c-toggle-auto-newline.
10088
10089 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
10090 c-toggle-auto-newline. Remove the binding for
10091 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
10092 c-toggle-electric-state.
10093
10094 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
10095
10096 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
10097 c-\(forward\|backward\)-subword.
10098 (c-update-modeline): Add the new modeline flag `l' for
10099 `c-electric-flag'. Make the auto-newline flag `a' dependent on `l'.
10100 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
10101 Make the old name an alias of the new name.
10102 (c-toggle-electric-state): New function.
10103 (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
10104 Adapt these functions to do electric things only when
10105 c-electric-flag is non-nil.
10106 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
10107 new functions from c-electric-brace.
10108 (c-point-syntax): Add a check for "virtual semicolons" in AWK
10109 mode, so that the tentative extra newline doesn't change the
10110 syntax of the following brace.
10111 (c-electric-brace): Restructure by extracting the above functions.
10112 Tidy up the coding somewhat.
10113 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
10114 restructure a bit.
10115
10116 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10117
10118 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
10119 anchor position(s) using faces. Thanks to Masatake YAMATO for the idea.
10120
10121 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
10122 (c-submode-indicators): Change name from `c-auto-hungry-string'
10123 since it's now used to track another submode.
10124
10125 (c-update-modeline): Convert to function and extended to check
10126 `c-subword-move-mode'.
10127
10128 (c-forward-into-nomenclature, c-backward-into-nomenclature):
10129 Convert to compat aliases for `c-forward-subword' and
10130 `c-backward-subword'.
10131
10132 * progmodes/cc-subword.el: New functions and minor mode to handle
10133 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
10134
10135 (c-forward-subword, c-backward-subword, c-mark-subword)
10136 (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
10137 (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
10138 Functions corresponding to the standard word handling functions.
10139
10140 (c-subword-move-mode): Minor mode that replaces all the standard
10141 word handling functions with their subword equivalences.
10142
10143 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10144
10145 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
10146 entry for one-liner-defun.
10147
10148 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
10149 name in its def-edebug-spec.
10150
10151 * progmodes/cc-cmds.el (c-electric-brace): Make the
10152 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
10153 compacts space before a comment, if this will make things fit on
10154 one line.
10155
10156 Introduce an "awk" style, mainly for auto-newline and clean-ups.
10157
10158 * progmodes/cc-align.el: New function c-snug-1line-defun-close
10159
10160 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
10161 clean-up one-liner-defun.
10162
10163 * progmodes/cc-styles.el: Add the new "awk" style.
10164
10165 * progmodes/cc-vars.el: Add description of one-liner-defun to
10166 c-cleanup-list's doc-string. New user options,
10167 c-max-one-liner-length. In c-default-style, set the default style
10168 for AWK to "awk".
10169
10170 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10171
10172 * progmodes/cc-engine.el (c-forward-label): Fix fontification of
10173 macros inside labels.
10174
10175 * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
10176 `c-at-statement-start-p' and `c-at-expression-start-p'.
10177
10178 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
10179 error if the mark isn't set.
10180
10181 * progmodes/cc-engine.el (c-guess-continued-construct)
10182 (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
10183 accurately detect functions inside functions.
10184
10185 * progmodes/cc-engine.el (c-at-expression-start-p): New function
10186 like `c-at-statement-start-p' that additionally recognizes commas
10187 and expression parentheses as delimiters.
10188
10189 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
10190 to avoid heuristics that doesn't work for unclosed blocks.
10191 (c-at-statement-start-p): New function.
10192
10193 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
10194 Objective-C directives, e.g. directives spanning lines should work
10195 reasonably well now.
10196
10197 (c-put-c-type-property, c-clear-c-type-property): New helpers.
10198
10199 (c-forward-objc-directive): New function to move over any ObjC
10200 directive.
10201
10202 (c-just-after-func-arglist-p, c-guess-basic-syntax)
10203 (c-basic-matchers-before): Use it.
10204
10205 (c-font-lock-objc-iip-decl): Remove.
10206
10207 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
10208 in the template arglist recognition.
10209
10210 * progmodes/cc-styles.el (c-style-alist): Fix several
10211 inconsistencies in the Whitesmith style.
10212
10213 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
10214 New lineup function to get lines after Whitesmith style blocks
10215 correctly indented.
10216
10217 (c-lineup-whitesmith-in-block): Back out the compensation for
10218 opening parens since it's done using `add' lists in the style
10219 definition instead. Don't use the anchor position since it varies
10220 too much between the syntactic symbols. :P
10221
10222 * progmodes/cc-vars.el (c-valid-offset): Update.
10223
10224 * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
10225 lists where the offsets are combined according to several
10226 different methods: `first', `min', `max', and `add'.
10227 Report offset evaluation errors with `c-benign-error' so that some kind
10228 of reindentation still is done.
10229
10230 * progmodes/cc-engine.el (c-guess-basic-syntax):
10231 Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
10232 `arglist-close'.
10233
10234 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
10235 situations for `arglist-cont-nonempty' and `arglist-close'.
10236
10237 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
10238
10239 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
10240 cc-bytecomp-boundp' in a number of places.
10241
10242 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
10243 macro related issue.
10244
10245 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10246
10247 * progmodes/cc-awk.el: Change the terminology of regexps: A char
10248 list is now [asdf], a char class [:alpha:].
10249 Include code for char classes.
10250 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
10251 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
10252
10253 Remove (nearly all of) the cruft associated with AWK Mode's former
10254 concept of "virtual semicolons":
10255
10256 Adapt c-beginning-of-statement, c-end-of-statement (together with
10257 subfunctions) to use the new notion of "virtual semicolon" in
10258 place of the old awkward special handling for AWK. There remains
10259 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
10260 * progmodes/cc-cmds.el:
10261 (c-ascertain-adjacent-literal): In the backwards direction, now
10262 recognises AWK regexp delimiters as string delimiters.
10263 (c-after-statement-terminator-p): Adapt for virtual semicolons;
10264 check more rigorously for "end of macro".
10265 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
10266 virtual semicolons;
10267 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
10268 out the code for forward movement into ...
10269 (c-end-of-statement): Now contains the code for forward movement,
10270 adapted for virtual semicolons.
10271
10272 * progmodes/cc-engine.el:
10273 (c-ws*-string-limit-regexp): New regexp.
10274 (c-forward-single-comment, c-backward-single-comment): Comment out
10275 the (now redundant) "special" AWK stuff.
10276
10277 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
10278 c-string-par-start, c-string-par-separate to be more like Text
10279 Mode than Fundamental Mode.
10280
10281 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10282
10283 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
10284 to the fontified region so that fontification doesn't occur
10285 outside it (could happen e.g. when fontifying a line with an
10286 unfinished declaration).
10287
10288 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10289
10290 * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
10291 start of the file. ^L now separate sections of the file.
10292 (c-awk-non-eol-esc-pair-re, c-awk-blank-or-comment-line-re)
10293 (c-awk-one-line-possibly-open-string-re)
10294 (c-awk-regexp-one-line-possibly-open-char-class-re)
10295 (c-awk-one-line-possibly-open-regexp-re)
10296 (c-awk-one-line-non-syn-ws*-re): New defonsts.
10297 (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
10298
10299 Amend the concept of "virtual semicolons" (in the indentation
10300 engine) for languages like AWK, such that they are now
10301 conceptually attached to end of the last token of a statement, not
10302 the end of the line. (In AWK Mode, however, the pertinent text
10303 property is still physically set on the EOL.) Remove the specific
10304 tests for awk-mode, thus facilitating the introduction of other
10305 language modes where EOLs can end statements.
10306 (Note: The funtionality in cc-cmds.el, specifically
10307 c-beginning/end-of-statement has yet to be amended.)
10308
10309 * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
10310 New macros.
10311
10312 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
10313 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
10314 c-vsemi-status-unknown-p-fn (in a new page).
10315
10316 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
10317 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
10318 numerous awkward forms like
10319 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
10320 with (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
10321 variable before-ws-ip, the place just after char-before-ip appears.
10322
10323 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
10324 a comment.
10325
10326 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10327
10328 * progmodes/cc-cmds.el (c-electric-brace): Clean up using
10329 `c-tentative-buffer-changes'.
10330
10331 * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
10332 convert to macro to choose between Emacs and XEmacs at compile time.
10333
10334 (c-set-region-active): New set counterpart to `c-region-is-active-p'.
10335
10336 (c-tentative-buffer-changes): New macro to handle temporary buffer
10337 changes in a convenient way.
10338
10339 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
10340 for `c-tentative-buffer-changes'.
10341
10342 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
10343 the checks for paren sexps between the point and the keyword, to
10344 avoid some false alarms.
10345
10346 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
10347 Fixed a situation where an error could be thrown for unbalanced
10348 parens. Changed to make use of c-keyword-member' to avoid some
10349 repeated regexp matches.
10350
10351 (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
10352 These language variable are no longer necessary.
10353
10354 (c-block-stmt-kwds): New language constant used by
10355 c-looking-at-inexpr-block'.
10356
10357 (c-guess-basic-syntax): Remove an optional check that looked at
10358 the existence of the now removed language variables.
10359
10360 * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
10361 (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
10362 object instantiation expressions as declarations in some contexts.
10363 This bug only affected languages where the declarator can't be
10364 enclosed in parentheses.
10365
10366 * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
10367 insert newlines before and after substatement braces.
10368
10369 * progmodes/cc-engine.el: Improved the heuristics for recognizing
10370 function declaration headers and the handling of C++ style member
10371 init lists.
10372
10373 (c-just-after-func-arglist-p): Rewritten to use
10374 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
10375
10376 (c-beginning-of-member-init-list): Remove since it isn't used anymore.
10377
10378 (c-guess-basic-syntax): Adapt case 5B for the new
10379 `c-just-after-func-arglist-p'. Merge cases 5B.1 and 5B.3.
10380 Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
10381 covers all cases now).
10382
10383 * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
10384
10385 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10386
10387 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
10388 c-string-par-start/separate c-sentence-end-with-esc-eol,
10389 initialised in c-setup-paragraph-variables, used in string
10390 scanning subroutines of c-beginning-of-statement.
10391
10392 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
10393 which precedes the newly inserted `{'.
10394
10395 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10396
10397 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
10398 function for declaration level blocks. It should now cope with
10399 templates better and also be a lot more comprehensible.
10400
10401 (c-looking-at-decl-block): The new function.
10402
10403 (c-search-uplist-for-classkey): The old one. It's now a wrapper
10404 for compatibility.
10405
10406 (c-add-class-syntax, c-guess-continued-construct)
10407 (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
10408
10409 (c-decl-block-key): Change to tell apart ambiguous and
10410 unambiguous keywords. Pike specials are now handled directly in
10411 the code instead.
10412
10413 (c-block-prefix-disallowed-chars, c-block-prefix-charset):
10414 New language constants and variables to make the backward skip in
10415 `c-looking-at-decl-block' as tight as possible.
10416
10417 (c-nonsymbol-token-char-list): New language constant.
10418
10419 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
10420 find balanced template arglists backwards.
10421
10422 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
10423 making char classes for `c-syntactic-skip-backward'.
10424
10425 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
10426 16D - can't be a class-close at that point.
10427
10428 * progmodes/cc-engine.el (c-guess-basic-syntax)
10429 (c-add-class-syntax): Don't narrow out the enclosing declaration
10430 level. This makes everything a lot easier, and it was actually
10431 only four small places that needed it to work. Some places that
10432 previously did `widen' are removed now, which has the effect that
10433 `c-guess-basic-syntax' never will look at things outside the
10434 current narrowment now. The anchor position for `topmost-intro'
10435 is affected by this, but it was so bogus it was basically useless
10436 before, and now it's equally bogus but in a slightly different way.
10437
10438 (c-narrow-out-enclosing-class): Gone.
10439
10440 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
10441 the narrowed region.
10442
10443 (c-least-enclosing-brace): Remove silly optional argument.
10444
10445 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
10446 the point could be left directly after an open paren when finding
10447 the beginning of the first decl in the block.
10448
10449 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
10450 Specify which submatch to use.
10451
10452 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
10453
10454 (c-decl-start-re): No longer any need for special treatment of
10455 ObjC due to the above.
10456
10457 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
10458 presumably follows C in that regard.
10459
10460 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
10461 New language constants to specify operator tokens inside
10462 identifiers in a more high level way.
10463
10464 (c-opt-identifier-prefix-key): New internal language constant.
10465
10466 (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
10467 (c-identifier-start, c-identifier-key): Now completely calculated
10468 from other constants.
10469
10470 (c-identifier-last-sym-match): Decommission since it's no longer used.
10471
10472 (c-operators): Use `c-identifier-ops'. Document `postfix-if-paren'.
10473
10474 * progmodes/cc-engine.el (c-forward-name): Remove the
10475 optimization when c-identifier-key is equal to c-symbol-key since
10476 it doesn't work in byte compiled files. Don't record empty
10477 regions as identifiers.
10478
10479 * progmodes/cc-langs.el (c-filter-ops): New helper function to
10480 simplify access to `c-operators' and its likes.
10481
10482 (c-operator-list, c-all-op-syntax-tokens)
10483 (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
10484 (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
10485 (c-primary-expr-regexp, c-cast-parens): Use it.
10486
10487 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
10488 an explicit language in functions.
10489
10490 * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
10491 variant of adornment.
10492
10493 * progmodes/cc-langs.el (c-any-class-key): Remove unused language
10494 variable.
10495
10496 (c-type-decl-prefix-key): Remove some now unnecessary cruft from
10497 the Pike value.
10498
10499 * progmodes/cc-engine.el (c-on-identifier)
10500 (c-simple-skip-symbol-backward): Small fix for handling "-"
10501 correctly in `skip-chars-backward'. Affected the operator lfun
10502 syntax in Pike.
10503
10504 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
10505 diagnostic message about precompiled language vars not being used.
10506
10507 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
10508 "__attribute__" is followed by a parenthesis.
10509
10510 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
10511 (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
10512 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
10513
10514 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
10515 Internal cleanups to properly detect the declared identifiers in
10516 various declarations.
10517
10518 (c-decl-start-kwds): New language constant to recognize
10519 declarations that can start anywhere. Used for class declarations
10520 in Pike.
10521
10522 (c-specifier-key, c-not-decl-init-keywords)
10523 (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
10524 (c-find-decl-spots): Implement `c-decl-start-kwds'.
10525
10526 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
10527 (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
10528 handling of the compiler specific extension keywords into a new
10529 language constant `c-decl-hangon-kwds' that defines keyword
10530 clauses to be ignored in declarations.
10531
10532 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
10533 past unrecognized tokens when handling `c-colon-type-list-kwds'.
10534 Necessary to stop at the declared identifier in e.g. IDL valuetype
10535 declarations.
10536
10537 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
10538 (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
10539 (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
10540 (c-forward-decl-or-cast-1): Recognize the declared identifier in
10541 class and enum declarations as such and not as part of the type.
10542
10543 (c-forward-decl-or-cast-1, c-forward-label): Relax the
10544 interpretation of PRECEDING-TOKEN-END when there's no preceding token.
10545
10546 (c-forward-decl-or-cast-1): Don't disregard sure signs of
10547 declarations when there's some syntax error later on.
10548
10549 (c-complex-decl-matchers): Did away with a reference to
10550 `c-specifier-key'.
10551
10552 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
10553 value - this variable is always dynamically bound.
10554
10555 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
10556 * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
10557 * cc-cmds.el, cc-defs.el: Change the policy for marking up
10558 functions that might do hidden buffer changes: All such internal
10559 functions are now marked instead of those that don't.
10560
10561 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
10562 (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
10563 (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
10564 (c-literal-type): Allow these functions to make hidden buffer changes,
10565 so that they are free to use text property caching later on.
10566
10567 (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
10568 (c-electric-brace, c-electric-slash, c-electric-star)
10569 (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
10570 (c-electric-paren, c-electric-continued-statement, c-indent-command)
10571 (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
10572 (c-context-line-break): Add `c-save-buffer-state' calls to comply
10573 with the changed semantics of the functions above.
10574
10575 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
10576 when macros occur in obscure places. Optimized the sexp movement
10577 a bit.
10578
10579 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10580
10581 Enhancements for c-beginning-of-statement to work in AWK Mode:
10582
10583 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
10584 (completed statement) with `}' (statement completed by closing
10585 brace or semicolon) and `$' (statement completed by EOL).
10586
10587 (c-awk-virtual-semicolon-ends-prev-line-p)
10588 (c-awk-virtual-semicolon-ends-line-p)
10589 (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
10590 (c-awk-at-statement-end-p): New functions.
10591
10592 * progmodes/cc-cmds.el: Simplify the structure of functions
10593 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
10594 two functions and c-beginning-of-statement to handle AWK Mode.
10595
10596 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
10597 c-backward-single-comment for AWK mode. Attempt to clarify their
10598 doc-strings.
10599
10600 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
10601
10602 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10603
10604 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
10605 label handling. Labels are now recognized in a uniform and more
10606 robust way, regardless of context. Text properties are put on all
10607 labels to recognize the following declarations better.
10608 Multiword labels are handled both in indentation and fontification for
10609 the benefit of language extensions like Qt. For consistency, keywords
10610 in labels are now fontified with the label face instead.
10611 That also applies to "case" and "default".
10612
10613 (c-beginning-of-statement-1): Fix some bugs in the label
10614 handling. Disregard `c-nonlabel-token-key' in labels that begin
10615 with `c-label-kwds'.
10616
10617 (c-find-decl-spots): Support that the callback adds more
10618 `c-decl-end' spots to find.
10619
10620 (c-forward-decl-or-cast-1): Don't treat a list of plain
10621 identifiers followed by a colon as a declaration.
10622
10623 (c-forward-label): New function to recognize labels.
10624
10625 (c-guess-basic-syntax): Replace uses of `c-label-key' with
10626 `c-forward-label'. Moved the label recognition cases (14 and 15)
10627 earlier since they aren't so context sensitive now. Handle labels
10628 on the top level gracefully. Moved access label recognition to
10629 the generic label case (CASE 15) - removed CASE 5E.
10630
10631 (c-font-lock-declarations): Add recognition of labels in the
10632 same round since we need to handle labels in parallell with other
10633 declarations to recognize both accurately. It should also improve
10634 speed.
10635
10636 (c-simple-decl-matchers, c-basic-matchers-after):
10637 Move `c-font-lock-labels' so that it only is used on decoration level 2
10638 since `c-font-lock-declarations' handles it otherwise.
10639
10640 (c-complex-decl-matchers): Remove the simplistic recognition of
10641 access labels.
10642
10643 (c-decl-prefix-re): Remove the kludges that was necessary to cope
10644 with labels earlier.
10645
10646 (c-decl-start-re): New language variable to make
10647 `c-font-lock-declarations' stop for the special protection labels
10648 in Objective-C that start with `@'.
10649
10650 (c-label-key): Remove since it's no longer used.
10651
10652 (c-recognize-colon-labels, c-label-prefix-re): New language
10653 constants to support recognition of generic colon-terminated labels.
10654
10655 (c-type-decl-end-used): `c-decl-end' is now used whenever there
10656 are colon terminated labels.
10657
10658 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
10659 first argument starts with a special brace list.
10660
10661 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
10662 (c-font-lock-declarations): Break out the declaration and cast
10663 recognition from `c-font-lock-declarations' to a new function, so
10664 that it can be used in the indentation engine.
10665
10666 * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
10667 up to the start of the literal. Fixed bug with the point on the
10668 wrong side of the search limit that could happen when the start
10669 position is inside a literal.
10670
10671 * progmodes/cc-engine.el (c-parse-state)
10672 (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
10673 so that it's kept a little bit back to increase the hit rate.
10674
10675 (c-parse-state): Change the macro handling and fixed some
10676 glitches. Macro context is checked more often than necessary now,
10677 but otoh less garbage conses are generated.
10678
10679 * progmodes/cc-engine.el (c-parse-state)
10680 (c-invalidate-state-cache): Cache the last position where
10681 `c-state-cache' applies. This can speed up refontification quite
10682 a bit in blocks where there are many non-brace parens before the point.
10683
10684 (c-state-cache-end): New variable for this.
10685
10686 (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
10687 cache variable.
10688
10689 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
10690 get close initial continue positions when the start position is
10691 inside a literal or macro. Do not call the callback for spots
10692 before the start position (which can happen e.g. for `c-decl-end'
10693 spots inside comments). Optimize better in special cases when the
10694 region is a single line inside a literal or macro (typically when
10695 the current line is refontified).
10696
10697 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
10698 to `c-add-stmt-syntax' - there's no need to explicitly whack off
10699 entries from the paren state.
10700
10701 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
10702 special case for "else if" clauses.
10703
10704 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
10705 (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
10706
10707 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
10708 New language variable to recognize the gcc extension with statement
10709 blocks inside expressions.
10710
10711 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
10712 it somewhat more comprehensible. The argument AT-BLOCK-START is
10713 no longer used and hence removed.
10714
10715 (c-guess-continued-construct, c-guess-basic-syntax): Update calls
10716 to `c-add-stmt-syntax'.
10717
10718 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
10719 Use `c-beginning-of-statement-1' instead of duplicating parts of it.
10720 This fixes bogus label recognition.
10721
10722 * progmodes/cc-engine.el (c-add-type, c-check-type)
10723 (c-forward-name, c-forward-type): Improve storage of template
10724 types in `c-found-types' so that they can be recognized better.
10725
10726 (c-syntactic-content): Add option to skip past nested parens.
10727
10728 * progmodes/cc-engine.el (c-forward-name):
10729 Set `c-last-identifier-range' all the time. It's less work that way.
10730 Handle that there might not be an identifier to store in
10731 `c-last-identifier-range'.
10732
10733 (c-forward-type): Handle that `c-last-identifier-range' might be
10734 nil from `c-forward-name'.
10735
10736 * progmodes/cc-defs.el (c-safe-scan-lists)
10737 (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
10738
10739 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
10740 to work even if the form fails.
10741
10742 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
10743 down in a large file in one go.
10744
10745 (c-get-fallback-start-pos): New helper function for `c-parse-state'.
10746
10747 * progmodes/cc-align.el (c-lineup-assignments): New lineup
10748 function which is like `c-lineup-math' but returns nil instead of
10749 `c-basic-offset' when it doesn't match.
10750
10751 (c-lineup-math): Change to use `c-lineup-assignments'.
10752
10753 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10754
10755 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
10756 c-beginning-of-statement. New subfunctions
10757 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
10758
10759 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10760
10761 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
10762 hardcoded char classes whereever possible. Changed a couple of
10763 places to use skip by syntax instead of skip by char class.
10764
10765 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
10766 Fix a bug in the regexp that caused extreme backtracking.
10767
10768 * progmodes/cc-langs.el (c-block-comment-starter)
10769 (c-block-comment-ender): New language constants to specify in a
10770 single place how block comments look.
10771
10772 (c-comment-start-regexp, c-block-comment-start-regexp)
10773 (comment-start, comment-end, comment-start-skip)
10774 (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
10775 (c-syntactic-ws, c-nonempty-syntactic-ws)
10776 (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
10777 `c-line-comment-starter', `c-block-comment-starter' and
10778 `c-block-comment-ender'.
10779
10780 (c-block-comment-regexp, c-unterminated-block-comment-regexp):
10781 New language constants to break up things a bit.
10782
10783 (c-simple-ws): New language constant for simple whitespace.
10784
10785 * progmodes/cc-defs.el (c-concat-separated): New convenience function.
10786
10787 * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
10788 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
10789 newlines. Allow and ignore nil elements in the list.
10790
10791 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10792
10793 * progmodes/cc-cmds.el: Comment out a (n almost certainly
10794 superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
10795
10796 * progmodes/cc-cmds.el: Tidy up the comments in
10797 c-beginning-of-statement and subfunctions.
10798
10799 * progmodes/cc-awk.el: Replace calls to put-text-property to the
10800 more flexible c-put-char-property and c-clear-char-properties.
10801 Add the author's email address.
10802
10803 * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
10804
10805 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
10806 closing "*/" of a block comment.
10807
10808 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
10809 subfunctions) so that it works at BOB and EOB.
10810
10811 * progmodes/cc-cmds.el, cc-vars.el: More updating of
10812 c-beginning-of-statement, including new variable
10813 c-block-comment-start-regexp.
10814
10815 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10816
10817 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
10818 symbols from `*-font-lock-extra-types' so that there's no need to
10819 use `regexp-opt' on those lists.
10820
10821 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
10822 `c-type-modifier-kwds' is empty.
10823
10824 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
10825 there are several strings on the same line.
10826
10827 * progmodes/cc-engine.el (c-literal-limits): Remove the
10828 compatibility function for older emacsen. `c-literal-limits-fast'
10829 has now taken the place of this function.
10830
10831 * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
10832 with older emacsen: We now require `pps-extended-state'.
10833
10834 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10835
10836 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
10837 which obviates the need to hack sentence-end. This now handles
10838 escaped newlines in strings correctly. Correct minor bugs in
10839 c-move-over-sentence and in c-beginning-of-statement.
10840
10841 * progmodes/cc-cmds.el (c-beginning-of-statement (and
10842 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
10843 that movement over macros and code are rigorously separated from
10844 eachother. Correct a few incidental bugs.
10845
10846 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
10847 Improve its doc-string. Improve the handling of certain specific cases.
10848
10849 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10850
10851 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
10852 (c-guess-basic-syntax): Change the way class-level labels are
10853 recognized; they can now contain essentially any symbols.
10854
10855 (c-opt-extra-label-key): New language variable to cope with the
10856 special protection label syntax in Objective-C.
10857
10858 (c-opt-access-key): Remove; this is now handled better by
10859 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
10860
10861 (c-complex-decl-matchers): Update to handle that
10862 `c-opt-access-key' no longer exists.
10863
10864 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
10865 improved label recognition in `c-beginning-of-statement-1'.
10866
10867 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
10868 Recognize bitfields better.
10869
10870 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
10871 Remove some cruft and fixed a bug that could cause it to go to a
10872 position further down.
10873
10874 * progmodes/cc-langs.el, cc-engine.el
10875 (c-beginning-of-statement-1): Improve detection of labels in
10876 declaration contexts.
10877
10878 (c-beginning-of-decl-1): Use it.
10879
10880 (c-nonlabel-token-key): New language constant and variable needed
10881 by `c-beginning-of-statement-1'.
10882
10883 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
10884 manifested itself due to the correction in `c-forward-sexp'.
10885
10886 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
10887 Make these behave as documented when used at the buffer limits.
10888
10889 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
10890 (c-type-decl-end-used): Made this a language variable.
10891
10892 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
10893 correctly when `combine-after-change-calls' is used together with
10894 temporary narrowings.
10895
10896 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10897 Report labels correctly when the start point is immediately after the
10898 colon.
10899
10900 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
10901 Remove since it isn't used anymore.
10902
10903 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
10904 bracket arglists such as template parens in C++.
10905
10906 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
10907 in the last check-in. Some optimization.
10908
10909 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
10910 where it could stop at the same level in a preceding sexp when
10911 PAREN-LEVEL is set.
10912
10913 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
10914 text property lookup only when it's needed.
10915
10916 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
10917 Change the policy for paren marked angle brackets to be more
10918 persistent; once marked they remain marked even when they're found
10919 to be unbalanced in the searched region. This should keep the
10920 paren syntax around even when individual lines are refontified in
10921 multiline template arglists.
10922
10923 (c-parse-and-markup-<>-arglists): New dynamically bound variable
10924 to control markup so that incorrect angle bracket arglists aren't
10925 marked in contexts where the correct value for
10926 `c-disallow-comma-in-<>-arglists' isn't known.
10927
10928 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
10929 argument has become `c-parse-and-markup-<>-arglists'.
10930
10931 (c-remove-<>-arglist-properties): Remove - no longer used.
10932
10933 (c-after-change-check-<>-operators): New function used on
10934 `after-change-functions' to avoid that "<" and ">" characters that
10935 are part of longer operators have paren syntax.
10936
10937 (c-<>-multichar-token-regexp): New language variable used by
10938 `c-after-change-check-<>-operators'.
10939
10940 (c-after-change): Call `c-after-change-check-<>-operators'.
10941
10942 (c-font-lock-<>-arglists): Use the context properties set by
10943 `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
10944 correctly to avoid doing invalid markup.
10945
10946 (c-font-lock-declarations): Remove code that undoes the invalid
10947 markup done by `c-font-lock-<>-arglists'.
10948
10949 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
10950 after `c-font-lock-declarations'.
10951
10952 * progmodes/cc-engine.el (c-syntactic-skip-backward):
10953 Add paren-level feature.
10954
10955 (c-guess-basic-syntax): Improve the anchor position for
10956 `template-args-cont' in nested template arglists. There's still
10957 much to be desired in this area, though.
10958
10959 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10960
10961 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
10962 Make the "Text Filling and Line Breaking" commands work for AWK buffers.
10963
10964 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10965
10966 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
10967 Removed; (c-major-mode-is 'awk-mode) can be used instead now.
10968
10969 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
10970 it doesn't work no longer are supported.
10971
10972 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
10973 * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
10974 requires support for the syntax-table' text property, which rules
10975 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
10976 cruft associated with those versions.
10977
10978 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
10979 for the `syntax-table' text property, which rules out Emacs 19 and
10980 XEmacs < 21.4. Removed various compatibility cruft associated
10981 with those versions.
10982
10983 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
10984 support for the `syntax-table' text property.
10985
10986 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
10987 variable and use an extra quoted face name instead. All the
10988 emacsen flavors handle that correctly.
10989
10990 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
10991 (c-font-lock-declarators, c-font-lock-declarations)
10992 (c-complex-decl-matchers, c-basic-matchers-after): Use a text
10993 property to mark the items in in declarator lists to handle
10994 refontification inside multiline declarations better.
10995
10996 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
10997 construct like "a * b = c;" as a declaration.
10998
10999 2005-12-08 Kim F. Storm <storm@cua.dk>
11000
11001 * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
11002 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
11003 select either meta, hyper, or super modifier for rectangle commands.
11004 (cua--rectangle-modifier-key): New defvar.
11005 (cua--M/H-key): Use it. Remove special case for `space'.
11006 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
11007 on X, to meta otherwise. Always bind C-return to toggle
11008 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
11009
11010 * emulation/cua-rect.el (cua-help-for-rectangle):
11011 Use cua--rectangle-modifier-key. Handle super modifier too.
11012 (cua--init-rectangles): Always bind C-return to toggle rectangle.
11013 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
11014
11015 * ido.el: Move Acknowledgements and History after Commentary.
11016 Minor changes to Commentary.
11017
11018 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
11019 keymap if cua--prefix-override-timer is `shift'.
11020 (cua--shift-control-prefix): New function; emulate "type prefix
11021 key twice" functionality to handle shifted prefix key override.
11022 (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
11023 New commands.
11024 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
11025
11026 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
11027
11028 * textmodes/org.el (org-insert-heading): Try to do items before
11029 headings.
11030 (org-agenda-mode): Quote `org-agenda-mode-hook'.
11031 (org-insert-item): New function.
11032 (org-renumber-ordered-list): Don't skip to higher level lists.
11033
11034 2005-12-08 Juri Linkov <juri@jurta.org>
11035
11036 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
11037
11038 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
11039
11040 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
11041
11042 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
11043 the constructed function name fun-1.
11044
11045 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
11046 because such links don't lead to parent documentation.
11047
11048 2005-12-08 Kenichi Handa <handa@m17n.org>
11049
11050 * descr-text.el (describe-char): Use *Help-2* buffer if the
11051 current buffer is *Help*. Call describe-text-properties while
11052 setting the original buffer.
11053
11054 2005-12-07 Bill Wohler <wohler@newt.com>
11055
11056 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
11057 and causes problems with non-MH users (such as Gnus users).
11058
11059 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
11060
11061 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
11062 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
11063 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
11064 command "info sources". Move calls to GDB command "list".
11065 (gdb-find-file-hook): Just use gdb-source-file-list.
11066 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
11067 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
11068 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
11069 (gdb-data-list-register-values-handler): Use correct trigger name.
11070
11071 2005-12-07 Kim F. Storm <storm@cua.dk>
11072
11073 * ido.el (ido-completion-map): Rename from ido-mode-map.
11074 (ido-common-completion-map, ido-file-completion-map)
11075 (ido-file-dir-completion-map, ido-buffer-completion-map):
11076 Rename from ido-mode-....-map.
11077 (ido-init-completion-maps): Rename from ido-init-mode-maps.
11078 (ido-setup-completion-map): Rename from ido-define-mode-map.
11079 (ido-read-internal): Bind minibuffer-local-filename-completion-map
11080 to ido-completion-map.
11081
11082 2005-12-07 Kenichi Handa <handa@m17n.org>
11083
11084 * international/mule-cmds.el
11085 (set-display-table-and-terminal-coding-system): If the coding
11086 system specified in `unibyte-display' property is different from
11087 the arg coding-system, don't setup standard-display-table.
11088
11089 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
11090
11091 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
11092 that comments end at \n, regardless of selective-display.
11093
11094 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
11095
11096 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
11097 (gdb-version): New variables.
11098 (gdb-source-file-list, gdb-register-names)
11099 (gdb-changed-registers): New variables for use with GDB 6.4+.
11100 (gdb-ann3): Replace with...
11101 (gdb-init-1, gdb-init-2): ...two new functions.
11102 (gdba, gdb-prompt): Call gdb-init-1.
11103 (gdb-get-version): New function. Call gdb-init-2 from here.
11104 (gud-watch): Make it work with mouse events too.
11105 (gdb-post-prompt): Don't add to queue until GDB version is known.
11106 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
11107 (gdb-locals-mode): Use gdb-version.
11108 (gdb-memory-format-map, gdb-memory-unit-map)
11109 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
11110 (gdb-locals-font-lock-keywords-1)
11111 (gdb-locals-font-lock-keywords-2): New variables.
11112 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
11113 (gdb-set-gud-minor-mode-existing-buffers-1)
11114 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
11115 (gdb-var-update-1, gdb-var-update-handler-1)
11116 (gdb-data-list-register-values-handler)
11117 (gdb-data-list-register-values-custom)
11118 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
11119 (gdb-stack-list-locals-handler, gdb-get-register-names):
11120 New functions for use with GDB 6.4+.
11121 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
11122 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
11123 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
11124 (gdb-stack-list-locals-regexp)
11125 (gdb-data-list-register-names-regexp): New regexps for use with
11126 GDB 6.4+.
11127
11128 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
11129
11130 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
11131
11132 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
11133
11134 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
11135 prompts work for AUTH PLAIN. Also reported by Steve Allan
11136 <seallan@verizon.net>.
11137
11138 2005-12-06 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
11139
11140 * frame.el (set-frame-parameter): Add doc string.
11141
11142 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
11143
11144 * textmodes/org.el (org-occur-highlights): New variable.
11145 (org-highlight-new-match, org-remove-occur-highlights): New functions.
11146 (org-highlight-sparse-tree-matches): New option.
11147 (org-do-occur): New function.
11148 (org-get-heading): Make it work also at beginning of line.
11149 (org-category-table): New variable.
11150 (org-get-category-table, org-get-category)
11151 (org-camel-to-words, org-link-search): New functions.
11152 (org-select-this-todo-keyword): New variable.
11153 (org-todo-list): New command.
11154 (org-shiftright, org-shiftleft): New commands.
11155 (org-agenda-todo): Add prefix argument.
11156 (org-show-hierarchy-above): New option.
11157 (org-show-todo-tree): Numerical prefix creates tree for specific
11158 TODO keyword.
11159 (org-outline-level): New function, to assign a level to plain
11160 lists items.
11161 (org-cycle-include-plain-lists): New option.
11162 (org-mode): Use `org-outline-level' as value of `outline-level'.
11163 (org-cycle): Temporarily switch `outline-regexp' if
11164 `org-cycle-include-plain-lists' is non-nil.
11165 (org-start-icalendar-file): Fix format bug.
11166 (org-agenda-get-day-entries): Create category table.
11167 (org-agenda-get-todos, org-agenda-get-timestamps)
11168 (org-agenda-get-deadlines, org-agenda-get-scheduled)
11169 (org-agenda-get-blocks): Use `org-get-category'.
11170 (org-context-in-file-links): Rename from
11171 `org-line-numbers-in-file-links'.
11172
11173 2005-12-06 Romain Francoise <romain@orebokech.com>
11174
11175 * window.el (balance-windows): Delete extraneous third arg in call
11176 to `enlarge-window'.
11177
11178 2005-12-06 Kenichi Handa <handa@m17n.org>
11179
11180 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
11181
11182 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
11183
11184 * progmodes/gdb-ui.el (gdb-var-create-handler)
11185 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
11186 (gdb-var-list-children-handler, gdb-var-update-handler):
11187 Current buffer is already gdb-partial-output-buffer, don't
11188 make it current again.
11189
11190 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
11191
11192 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
11193 (list-buffers-noselect): Use it.
11194
11195 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
11196
11197 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
11198 (mail-yank-ignored-headers): Use regexp-opt.
11199 (mail-mode-map): Move initialization into declaration.
11200 (mail-sent-via): Remove unused shadowed var `to-line'.
11201 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
11202 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
11203 (mail-do-fcc): Use dolist and push.
11204 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
11205 (mail-yank-ignored-headers): Don't autoload.
11206
11207 2005-12-05 Kenichi Handa <handa@m17n.org>
11208
11209 * international/mule-cmds.el (set-language-info-internal): New fun.
11210 (set-language-info): Call set-language-info-internal to update
11211 language-info-alist. If LANG-ENV is the current one, call
11212 set-language-environment to make INFO effective now.
11213 (set-language-info-alist): Likewise.
11214 (locale-language-names): With locale "en", use English
11215 lang. env. but set the default codings to iso-8859-1.
11216
11217 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
11218
11219 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
11220 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
11221 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
11222 for plain strings.
11223 (gdb-frames-mode): Remove redundant call to font-lock-mode.
11224 (gdb-all-registers): Rename from toggle-gdb-all-registers.
11225 Create registers buffer if necessary. Echo new state in minibuffer.
11226 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
11227
11228 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
11229
11230 * info.el (Info-fontify-node): Match external links using
11231 non-directory part of filename.
11232
11233 2005-12-04 Juri Linkov <juri@jurta.org>
11234
11235 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
11236 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
11237 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
11238 because there is no customization option for it.
11239
11240 * font-lock.el (lisp-font-lock-keywords-1):
11241 Add define-global-minor-mode.
11242
11243 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
11244
11245 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
11246 properties on the constructed variable names.
11247
11248 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11249 Put `definition-name' properties on the constructed function names
11250 next-sym and prev-sym.
11251
11252 * emacs-lisp/find-func.el (find-function-regexp):
11253 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
11254 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
11255 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
11256 and easy-menu-define.
11257
11258 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
11259 easy-mmode-define-global-mode and define-global-minor-mode.
11260 (lisp-imenu-generic-expression): Add define-global-minor-mode.
11261
11262 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
11263 instead of easy-mmode-define-global-mode.
11264
11265 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
11266 Use define-minor-mode instead of easy-mmode-define-minor-mode.
11267
11268 * cus-edit.el (customize-group, customize-group-other-window):
11269 Filter out autoloaded options from the group completion list by
11270 using heuristics that autoloaded groups don't have `custom-autoload'
11271 property on their symbols (they have only `custom-loads').
11272
11273 * simple.el (completion-setup-function): Put completions-common-part
11274 face on complete completion string too (i.e. completion string
11275 without completions-first-difference face).
11276
11277 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
11278
11279 2005-12-03 Eli Zaretskii <eliz@gnu.org>
11280
11281 * view.el (view-mode): Doc fix.
11282
11283 * disp-table.el (standard-display-european): Add to the warning
11284 message a reference to the doc string.
11285
11286 * play/yow.el (apropos-zippy): Call print-help-return-message,
11287 similar to other Help and Apropos commands.
11288
11289 * help.el (print-help-return-message): If pop-up-frames is
11290 non-nil, set up help-return-method to delete the help window and,
11291 possibly, its frame as well, and don't display message about
11292 scrolling the help window. Doc fix.
11293 (help-return-method): Doc fix.
11294
11295 2005-12-03 Martin Rudalics <rudalics@gmx.at>
11296
11297 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
11298 whereby names of length one or names starting with a
11299 symbol-constituent character would not be returned.
11300
11301 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
11302
11303 * subr.el (atomic-change-group): Add edebug and indentation spec.
11304
11305 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
11306
11307 * completion.el (save-completions-file-name): Fix typo in last change.
11308
11309 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11310
11311 * info.el: Move back/forward history to the beginning of the tool bar.
11312
11313 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
11314
11315 * allout.el (eval-when-compile): Remove unnecessary load of cl.
11316 Add fset of allout-real-isearch-abort during compile to fix
11317 byte-compilation warnings.
11318 (allout-mode-p): Move definition of this macro above all uses, or
11319 byte compilation in barren emacs (eg, during emacs build) will
11320 lack the definition.
11321 (allout-mode): Move this variable above any uses, or byte
11322 compilation will fail.
11323 (allout-resolve-xref): Remove use of personal file-reference function.
11324 (allout-toggle-current-subtree-encryption): Do the current (ie,
11325 visible containing) topic, rather than nearest around point. Doc fix.
11326 (allout-toggle-subtree-encryption): New function, workhorse that
11327 works on nearest topic containing point.
11328 (allout-encrypt-string): Signal requirement for newer version of pgg.
11329 (allout-resumptions): Doc fix.
11330
11331 2005-12-02 Eli Zaretskii <eliz@gnu.org>
11332
11333 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
11334
11335 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
11336
11337 * textmodes/flyspell.el (flyspell-external-point-words):
11338 Consider a misspelling as found in the string search if: (a) misspelling
11339 and found string lengths match, or (b) misspelling is found as
11340 element in a boundary-chars separated longer string, or (c)
11341 ispell-program-name is really ispell and misspelling is found as
11342 part of a TeX string. After successful match move beginning of
11343 search region to end of match. Warn about not found misspellings
11344 once the process is done.
11345 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
11346
11347 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
11348
11349 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
11350 tool bar (removed inadvertently).
11351
11352 2005-12-02 Juri Linkov <juri@jurta.org>
11353
11354 * log-view.el (log-view-diff): Clarify doc string.
11355
11356 2005-12-01 Bill Wohler <wohler@newt.com>
11357
11358 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
11359 triggers lm-verify errors.
11360
11361 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
11362
11363 * simple.el (transient-mark-mode, line-number-mode)
11364 (column-number-mode, size-indication-mode): Remove `:require nil'.
11365
11366 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
11367
11368 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
11369 in the margin also.
11370 (gdb-breakpoints-mode-map): Use D instead of d for
11371 gdb-delete-breakpoint.
11372 (gdb-get-frame-number): Require a number to match on.
11373 (gdb-threads-mode-map): Add follow-link binding.
11374
11375 2005-11-30 Jason Rumney <jasonr@gnu.org>
11376
11377 * isearch.el (isearch-mode-map): Avoid exiting search on
11378 language-change event.
11379
11380 2005-11-30 Romain Francoise <romain@orebokech.com>
11381
11382 * speedbar.el (speedbar-default-position): New defcustom.
11383 (speedbar-frame-reposition-smartly): Use it.
11384
11385 * dframe.el (dframe-reposition-frame-emacs): Fix position
11386 computation for `left' location.
11387 Update copyright year.
11388
11389 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
11390
11391 * help.el (help-map): Move initialization into declaration.
11392
11393 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
11394
11395 * help-fns.el (help-argument-name): Don't autoload.
11396 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
11397 to be re-loaded when customizing the `help' group.
11398
11399 2005-11-30 John Paul Wallington <jpw@gnu.org>
11400
11401 * help-fns.el (describe-function-1): Fill arglist output.
11402
11403 2005-11-30 Kim F. Storm <storm@cua.dk>
11404
11405 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
11406 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
11407 after revert-buffer (or anything else which kills all local variables).
11408
11409 * apropos.el (apropos-parse-pattern): Doc fix.
11410 Set apropos-regexp directly, rather than expecting callers to do so.
11411 (apropos-command, apropos, apropos-value, apropos-documentation):
11412 Simplify calls to apropos-parse-pattern.
11413
11414 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
11415
11416 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
11417 (hi-lock-face-phrase-buffer): Use hi-yellow face.
11418 (hi-lock-write-interactive-patterns): Use comment-region.
11419
11420 * longlines.el (longlines-mode): Add mail-setup-hook.
11421
11422 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
11423
11424 * simple.el (sendmail-user-agent-compose, next-line):
11425 Conditionally use hard-newline.
11426
11427 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
11428
11429 * international/latexenc.el (latex-inputenc-coding-alist):
11430 Reword doc string.
11431
11432 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
11433
11434 * help.el (describe-key-briefly, describe-key): Recognize default
11435 bindings.
11436
11437 2005-11-29 Romain Francoise <romain@orebokech.com>
11438
11439 * view.el (view-inhibit-help-message): New defcustom.
11440 (view-mode-enter): Use it.
11441
11442 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
11443
11444 * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
11445 Preserve user position.
11446
11447 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
11448
11449 * font-lock.el: Throw error if facemenu is not loaded to prevent
11450 accidental change of loading order in loadup.el. (Suggested by RMS.)
11451
11452 * loadup.el: Add comment explaining why facemenu must be loaded
11453 before font-lock.
11454
11455 2005-11-28 Jay Belanger <belanger@truman.edu>
11456
11457 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
11458 (calc-dispatch-map): Add more keys for `calc-same-interface'.
11459
11460 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
11461
11462 * calc/calc-embed.el (calc-do-embedded): Update help message.
11463
11464 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
11465
11466 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
11467
11468 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
11469
11470 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
11471 called-interactively-p.
11472 (elp-profilable-p): Rename from elp-not-profilable-p.
11473 Invert result and take into account macros and autoloaded functions.
11474 (elp-instrument-function): Update call.
11475 (elp-instrument-package): Update call. Add completion.
11476 (elp-pack-number): Use match-string.
11477 (elp-results-jump-to-definition-by-mouse): Merge into
11478 elp-results-jump-to-definition and then remove.
11479 (elp-output-insert-symname): Make help echo text single-line.
11480
11481 * replace.el (query-replace-map): Move initialization into declaration.
11482 (occur-engine): Use with-current-buffer.
11483 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
11484 (occur-mode-mouse-goto): Replace with an alias.
11485
11486 2005-11-28 Juri Linkov <juri@jurta.org>
11487
11488 * simple.el (quoted-insert): Let-bind input-method-function to nil.
11489
11490 * term/w32-win.el: Bind [S-tab] to [backtab].
11491
11492 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
11493 `Info-find-file' to t.
11494
11495 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
11496 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
11497 and same-window-regexps.
11498 (occur-next-error): Don't move point for arg 0.
11499
11500 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
11501
11502 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
11503
11504 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
11505
11506 * log-edit.el (log-edit-changelog-use-first): New var.
11507 (log-edit-changelog-ours-p): Use it.
11508 (log-edit-insert-changelog): Set it with new arg `use-first'.
11509 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
11510 (log-edit-hook): Add them to the list of suggested options.
11511
11512 * textmodes/flyspell.el (flyspell-last-buffer): New var.
11513 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
11514 redundant work.
11515 (flyspell-mode-on): Use add-hook for after-change-functions.
11516 (flyspell-mode-off): Use remove-hook for after-change-functions.
11517 (flyspell-changes): Make it buffer-local.
11518 (flyspell-after-change-function): Make it non-interactive. Use push.
11519 (flyspell-post-command-hook): Check input-pending-p while processing
11520 the potentially long list of buffer changes.
11521
11522 2005-11-28 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
11523
11524 * buff-menu.el (list-buffers-noselect): Display the selected
11525 frame's buffer list, not the global one.
11526
11527 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
11528
11529 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
11530 that (list last-input-event) works as in interactive spec.
11531
11532 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11533
11534 * loadup.el ("facemenu"): Load facemenu before font-lock, because
11535 `facemenu-keymap' needs to be defined when font-lock is loaded.
11536 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
11537
11538 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
11539
11540 * completion.el: Remove useless leading * in defcustom docstrings.
11541 (save-completions-file-name): Use ~/.emacs.d if available.
11542 (completion-standard-syntax-table): Rename from
11543 cmpl-standard-syntax-table and fold initialization into declaration,
11544 thus removing cmpl-make-standard-completion-syntax-table.
11545 (completion-lisp-syntax-table, completion-c-syntax-table)
11546 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
11547 (cmpl-saved-syntax, cmpl-saved-point): Remove.
11548 (symbol-under-point, symbol-before-point)
11549 (symbol-under-or-before-point, symbol-before-point-for-complete)
11550 (add-completions-from-c-buffer): Use with-syntax-table.
11551 (make-completion): Don't return a list of completion entries.
11552 Update callers.
11553 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
11554 (completion-initialize): Rename from initialize-completions.
11555 (completion-find-file-hook): Rename from cmpl-find-file-hook.
11556 (kill-emacs-save-completions): Collect stats here.
11557 (save-completions-to-file, load-completions-from-file):
11558 Use with-current-buffer.
11559 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
11560 into a function. Move all calls to toplevel.
11561 (completion-lisp-mode-hook): New fun.
11562 (completion-c-mode-hook, completion-setup-fortran-mode):
11563 Set the syntax-table here. Use local-set-key.
11564 (completion-saved-bindings): New var.
11565 (dynamic-completion-mode): Make it into a proper minor mode.
11566 (load-completions-from-file): Remove unused var `num-uses'.
11567
11568 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
11569 constructor if it is explicitly overridden.
11570
11571 * complete.el (PC-completion-as-file-name-predicate):
11572 Use minibuffer-completing-file-name.
11573 (partial-completion-mode): Use find-file-not-found-functions.
11574 (PC-lisp-complete-symbol): Use with-syntax-table.
11575 (PC-look-for-include-file): Remove dead setq.
11576 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
11577 (PC-complete): Use with-current-buffer.
11578
11579 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
11580 escape single quotes.
11581
11582 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11583
11584 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
11585 of `if' whose condition always returned nil. Doc fix.
11586
11587 * buff-menu.el (Buffer-menu-revert-function): Make the selected
11588 window's buffer the current buffer around the call to
11589 `list-buffers-noselect'. This is necessary to mark that buffer
11590 with a `.' in the Buffer Menu when called from Lisp, for instance
11591 by Auto Revert Mode.
11592
11593 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
11594
11595 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
11596 attaching to it.
11597 (gdb-pre-prompt): Make sure gdb-error is reset.
11598
11599 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
11600 with a child process, detect it.
11601 (gud-speedbar-buttons): Match regexp more carefully.
11602
11603 2005-11-27 Richard M. Stallman <rms@gnu.org>
11604
11605 * mouse.el (mouse-drag-move-window-bottom):
11606 Use adjust-window-trailing-edge.
11607
11608 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11609
11610 * simple.el (blink-matching-open): Ignore
11611 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
11612 (blink-matching-paren-on-screen): Update docstring.
11613
11614 * paren.el (show-paren-mode): No longer change
11615 `blink-matching-paren-on-screen'.
11616
11617 2005-11-27 John Paul Wallington <jpw@pobox.com>
11618
11619 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
11620 (gdb-threads-select, gdb-edit-register-value):
11621 Use `posn-set-point' instead of `mouse-set-point' because the
11622 latter is not fbound when configured without X.
11623
11624 2005-11-27 Kim F. Storm <storm@cua.dk>
11625
11626 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
11627 existing face when partially highlighting a TAB in a rectangle.
11628
11629 2005-11-26 Kim F. Storm <storm@cua.dk>
11630
11631 * ido.el (ido-mode-map): Doc fix.
11632 (ido-mode-common-map, ido-mode-file-map)
11633 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
11634 (ido-define-mode-map): Rewrite. Select one of the new maps as
11635 parent for ido-mode-map instead of building from scratch.
11636 (ido-init-mode-maps): New defun to initialize new maps.
11637 (ido-mode): Call it.
11638 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
11639 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
11640
11641 2005-11-26 John Paul Wallington <jpw@pobox.com>
11642
11643 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
11644 `mouse-set-point' because the latter is not fbound when configured
11645 without X.
11646
11647 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
11648
11649 * files.el (file-relative-name): Doc fix.
11650
11651 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
11652
11653 * progmodes/octave-inf.el (inferior-octave-startup): Force a
11654 non-empty string for secondary prompt PS2.
11655
11656 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
11657
11658 * progmodes/compile.el (compilation-setup): Fix last change.
11659
11660 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
11661
11662 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
11663 (gdb-mouse-toggle-breakpoint-margin)
11664 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
11665 Add gdb-server-prefix to keep out of command history.
11666 (gdb-edit-register-value): New function.
11667 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
11668 (gdb-info-registers-custom): Use above map.
11669
11670 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
11671
11672 * custom.el (enable-theme): Signal error if argument is not a
11673 theme. Don't recalculate a face if it's not loaded yet.
11674
11675 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
11676 the `user' theme is in effect.
11677
11678 * info.el (Info-on-current-buffer): Record actual filename in
11679 Info-current-file, instead of t, or a fake filename if a non-file
11680 buffer. Make autoload.
11681 (Info-find-node, Info-revert-find-node): No need to check for
11682 Info-current-file nil.
11683 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
11684 Info-current-file is now never `t'.
11685 (Info-fontify-node): Many simplifications due to Info-current-file
11686 always being valid. Use Info-find-file to find node filename.
11687
11688 2005-11-25 David Kastrup <dak@gnu.org>
11689
11690 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
11691 new character, then delete" in order to preserve markers.
11692
11693 2005-11-25 David Ponce <david@dponce.com>
11694
11695 * recentf.el (recentf-arrange-by-rule): Handle a special
11696 `auto-mode-alist'-like "strip suffix" rule.
11697 (recentf-build-mode-rules): Handle second level auto-mode entries.
11698
11699 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
11700
11701 * viper-keym.el (viper-ESC-key): Use different values in terminal and
11702 window modes.
11703
11704 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
11705 jde-javadoc-checker-report-mode.
11706
11707 * ediff-wind (ediff-make-wide-display): Slight simplification.
11708
11709 * ediff.el (ediff-date): Change the date of last update.
11710
11711 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
11712
11713 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
11714 Use define-minor-mode, and make it a local mode. Turn on font-lock.
11715 (hi-lock-mode): New global minor mode.
11716 (turn-on-hi-lock-if-enabled): New function.
11717 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
11718 Change arguments to regexp and face instead of a font-lock pattern.
11719 Directly set face property, instead of refontifying.
11720 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
11721 (hi-lock-find-patterns): Use line-number-at-pos.
11722
11723 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
11724 arguments for hi-lock-set-pattern.
11725 (hi-lock-unface-buffer, hi-lock-set-file-patterns):
11726 Call font-lock-fontify-buffer.
11727 (hi-lock-find-file-hook, hi-lock-current-line)
11728 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
11729
11730 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
11731 turned off.
11732
11733 * progmodes/compile.el (compilation-setup): Don't fiddle with
11734 font-lock-defaults.
11735
11736 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
11737
11738 * progmodes/gdb-ui.el (gdb-var-create-handler)
11739 (gdb-var-list-children-handler): Find values for all variable
11740 objects. gud-speedbar-buttons decides whether to display them.
11741
11742 2005-11-24 Romain Francoise <romain@orebokech.com>
11743
11744 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
11745 buffer name with a space.
11746
11747 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
11748
11749 * textmodes/org.el (org-export-plain-list-max-depth): Rename from
11750 `org-export-local-list-max-depth'. Change default value to 3.
11751 (org-auto-renumber-ordered-lists)
11752 (org-plain-list-ordered-item-terminator): New options.
11753 (org-at-item-p, org-beginning-of-item, org-end-of-item)
11754 (org-get-indentation, org-get-string-indentation)
11755 (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
11756 New functions.
11757 (org-move-item-down, org-move-item-up): New commands.
11758 (org-export-as-html): New classes for CSS support. Bug fix in
11759 regular expression detecting fixed-width regions. Respect
11760 `org-local-list-ordered-item-terminator'.
11761 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
11762 also a list item.
11763 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
11764 New item moving functions.
11765
11766 2005-11-24 Juri Linkov <juri@jurta.org>
11767
11768 * isearch.el (isearch-repeat): With empty search ring set
11769 `isearch-error' to the error string instead of signaling error
11770 with the function `error'.
11771
11772 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11773
11774 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
11775
11776 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
11777
11778 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
11779 and variable.
11780 (gdb-var-create-handler, gdb-var-list-children-handler):
11781 Don't match on "char **...".
11782 (gdb-var-update-handler): Find values for all variable objects.
11783 (gdb-info-frames-custom): Identify frames by leading "#".
11784
11785 * progmodes/gud.el (gud-speedbar-menu-items): Add
11786 gdb-speedbar-auto-raise as radio button.
11787 (gud-speedbar-buttons): Raise speedbar if requested.
11788 Don't match on "char **...".
11789 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
11790 Make it editable.
11791
11792 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
11793
11794 * info.el (Info-fontify-node): Handle the case where
11795 Info-current-file is t.
11796
11797 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
11798
11799 * simple.el (blink-matching-open): Fix off-by-one in last change.
11800
11801 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11802
11803 * term/mac-win.el: Don't change default directory.
11804
11805 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
11806
11807 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
11808 buffers correctly. (It used to throw an error in such buffers.)
11809 Make it ask for confirmation in group buffers and other Custom
11810 buffers containing more than one customization item.
11811
11812 2005-11-22 John Paul Wallington <jpw@gnu.org>
11813
11814 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
11815 property on mail and url overlays.
11816 (goto-address-at-point): Use `posn-set-point' instead of
11817 `mouse-set-point' because the latter is not fbound when configured
11818 without X.
11819
11820 2005-11-22 Lars Hansen <larsh@soem.dk>
11821
11822 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
11823 (ls-lisp-classify, ls-lisp-format): Delete call to
11824 ls-lisp-parse-symlink.
11825 (ls-lisp-handle-switches): Handle symlinks to directories as
11826 directories when ls-lisp-dirs-first in non-nil.
11827
11828 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
11829
11830 * startup.el (command-line): Make sure that loaddefs.el is handled
11831 correctly in load-history.
11832
11833 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
11834
11835 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
11836 (gdb-struct-string, gdb-array-string): New constants.
11837 (gdb-info-locals-handler): Use them.
11838 (gdb-reset): Reset gdb-var-list to nil.
11839
11840 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
11841
11842 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
11843 in patterns.
11844
11845 2005-11-21 Juri Linkov <juri@jurta.org>
11846
11847 * custom.el (defcustom): Update link types in docstring.
11848
11849 2005-11-20 Martin Rudalics <rudalics@gmx.at>
11850
11851 * custom.el (defgroup): Add doc-string-elt info.
11852
11853 * widget.el (define-widget): Don't use declare for the doc-string-elt.
11854
11855 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
11856
11857 * newcomment.el (comment-enter-backward): Fix last fix.
11858
11859 * simple.el (blink-matching-open):
11860 * paren.el (show-paren-function): Allow new paren-class info.
11861
11862 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
11863
11864 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
11865 handled automagically.
11866
11867 2005-11-20 Andreas Schwab <schwab@suse.de>
11868
11869 * descr-text.el (describe-char): When copying overlays put them
11870 over the full char description instead of just the first character
11871 of it.
11872
11873 2005-11-20 Juri Linkov <juri@jurta.org>
11874
11875 * simple.el (what-cursor-position):
11876 * descr-text.el (describe-char): Use Lisp-readable syntax
11877 for octal and hex. Reorder decimal, octal and hex values.
11878 Remove excess whitespace in the output. Use `=' in `column='
11879 like in `point=' and `Hscroll='.
11880
11881 * international/mule-cmds.el (encoded-string-description):
11882 Use Lisp-readable syntax for hex.
11883
11884 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11885
11886 * newcomment.el (comment-enter-backward): Handle the case where the
11887 comment is closed by EOB.
11888
11889 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
11890
11891 * longlines.el (longlines-before-revert-hook)
11892 (longlines-after-revert-hook): New functions.
11893 (longlines-mode): Turn off longlines temporarily when reverting.
11894 Add a message-setup-hook.
11895 (longlines-decode-buffer): New function.
11896 (longlines-wrap-line): Preserve marker positions.
11897
11898 2005-11-19 Andreas Schwab <schwab@suse.de>
11899
11900 * emacs-lisp/shadow.el: Handle compressed files.
11901
11902 2005-11-19 Romain Francoise <romain@orebokech.com>
11903
11904 * net/browse-url.el (browse-url-default-browser): Signal an error
11905 if no usable browser can be found, rather than try to load w3.
11906
11907 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
11908
11909 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
11910 replacing existing properties.
11911 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
11912 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
11913 tty specs.
11914 (rcirc-server-prefix, rcirc-server): New faces.
11915 (rcirc-url-regexp): Generate with rx macro.
11916 (rcirc-last-server-message-time): New variable.
11917 (rcirc-filter): Record time of last message.
11918 (rcirc-keepalive): Kill processes that did not send a message
11919 since the last ping.
11920 (rcirc-mode): Give rcirc-topic a local binding here.
11921
11922 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org>
11923
11924 * subr.el (read-passwd): Fontify the prompt as we do with other
11925 prompts.
11926
11927 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
11928
11929 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
11930 binding buffer-read-only to nil.
11931
11932 2005-11-19 Eli Zaretskii <eliz@gnu.org>
11933
11934 * complete.el (partial-completion-mode):
11935 Mention completion-auto-help in the doc string.
11936
11937 * man.el (Man-highlight-references): Doc fix. Reformat code in a
11938 more Lisp-ish way.
11939
11940 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
11941
11942 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
11943 digits, not 8, to avoid misalignment for files larger than 100MB.
11944
11945 2005-11-19 Eli Zaretskii <eliz@gnu.org>
11946
11947 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
11948 Mention "keyboard shortcuts" in the help text.
11949
11950 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11951
11952 * startup.el (fancy-splash-default-action): Discard only
11953 mouse-down and succeeding mouse-up events in the splash screen
11954 window so that drag-n-drop event can be processed.
11955
11956 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
11957
11958 * longlines.el (longlines-mode): Add hacks for mail-mode and
11959 message-mode.
11960
11961 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
11962
11963 * textmodes/org.el (org-table-sort-lines): New command.
11964 (org-tbl-menu): Add entry for `org-table-sort-lines'.
11965 (org-add-file): Command removed, use `org-agenda-file-to-front'
11966 instead.
11967 (org-export-icalendar): Use `org-icalendar-combined-name'.
11968 (org-cycle-agenda-files, org-agenda-file-to-end)
11969 (org-agenda-file-to-front): New commands.
11970 (org-table-tab-jumps-over-hlines, org-export-html-style):
11971 New options.
11972 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
11973 (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
11974 New functions.
11975 (org-fill-paragraph): Call `org-table-align' in tables.
11976 (org-mode): Call `org-set-autofill-regexps'.
11977 (org-export-as-html): Support for local handformatted lists.
11978 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
11979 (org-export-local-list-max-depth): New option.
11980 (org-html-expand): Use `org-html-protect'.
11981
11982 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
11983
11984 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
11985 to "p".
11986 (gdb): Move definition of gud-pp to...
11987
11988 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
11989 speedbar.
11990 (gdb-find-watch-expression): New function.
11991
11992 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
11993
11994 * faces.el (face-attribute, set-face-attribute): Mention existence
11995 of `:ignore-defface' setting in docstring.
11996
11997 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
11998
11999 * simple.el (completion-setup-function): Fix last change.
12000
12001 2005-11-17 John Paul Wallington <jpw@pobox.com>
12002
12003 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
12004 Use `posn-set-point' instead of `mouse-set-point' because the
12005 latter is not fbound when configured without X.
12006
12007 * comint.el (comint-insert-input): Likewise.
12008
12009 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
12010
12011 * simple.el (hard-newline): New variable.
12012 (sendmail-user-agent-compose, next-line): Use it.
12013
12014 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
12015 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
12016 (mail-mail-reply-to, mail-mail-followup-to)
12017 (mail-position-on-field, mail-signature, mail-yank-original)
12018 (mail-attach-file): Likewise.
12019
12020 * mail/mailheader.el (mail-header-format)
12021 (mail-header-format-function): Likewise.
12022
12023 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
12024
12025 2005-11-17 Juri Linkov <juri@jurta.org>
12026
12027 * font-lock.el (font-lock-faces): Rename this defgroup from
12028 `font-lock-highlighting-faces'.
12029 (font-lock-comment-face, font-lock-comment-delimiter-face)
12030 (font-lock-string-face, font-lock-doc-face)
12031 (font-lock-keyword-face, font-lock-builtin-face)
12032 (font-lock-function-name-face, font-lock-variable-name-face)
12033 (font-lock-type-face, font-lock-constant-face)
12034 (font-lock-warning-face, font-lock-negation-char-face)
12035 (font-lock-preprocessor-face)
12036 (font-lock-regexp-grouping-backslash)
12037 (font-lock-regexp-grouping-construct): Rename :group from
12038 `font-lock-highlighting-faces' to `font-lock-faces'.
12039
12040 * cus-edit.el (lisp, c, tex):
12041 * progmodes/ada-mode.el (ada):
12042 * progmodes/asm-mode.el (asm):
12043 * progmodes/cperl-mode.el (cperl-faces):
12044 * progmodes/cpp.el (cpp):
12045 * progmodes/dcl-mode.el (dcl):
12046 * progmodes/f90.el (f90):
12047 * progmodes/fortran.el (fortran):
12048 * progmodes/icon.el (icon):
12049 * progmodes/idlwave.el (idlwave-misc):
12050 * progmodes/m4-mode.el (m4):
12051 * progmodes/make-mode.el (makefile):
12052 * progmodes/meta-mode.el (meta-font):
12053 * progmodes/modula2.el (modula2):
12054 * progmodes/octave-mod.el (octave):
12055 * progmodes/pascal.el (pascal):
12056 * progmodes/perl-mode.el (perl):
12057 * progmodes/prolog.el (prolog):
12058 * progmodes/ps-mode.el (PostScript-edit):
12059 * progmodes/scheme.el (scheme):
12060 * progmodes/sh-script.el (sh-script):
12061 * progmodes/simula.el (simula):
12062 * progmodes/tcl.el (tcl):
12063 * textmodes/nroff-mode.el (nroff):
12064 * textmodes/reftex-vars.el (reftex-fontification-configurations):
12065 * textmodes/sgml-mode.el (sgml):
12066 * textmodes/texinfo.el (texinfo):
12067 Add :link (custom-group-link font-lock-faces) to defgroup.
12068
12069 * hi-lock.el (hi-lock): Rename this defgroup from
12070 `hi-lock-interactive-text-highlighting'. Change parent group from
12071 `faces' to `font-lock'. Add link to the manual.
12072 (hi-lock-mode, hi-lock-file-patterns-range)
12073 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
12074 `hi-lock-interactive-text-highlighting' to `hi-lock'.
12075 (hi-lock-faces): Add :group `faces'.
12076
12077 * cus-edit.el (custom-variable-prompt): Clarify the code.
12078
12079 * faces.el (face-read-string): Set the default value arg of
12080 completing-read.
12081
12082 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
12083
12084 * rfn-eshadow.el (file-name-shadow-properties)
12085 (file-name-shadow-tty-properties, file-name-shadow-mode):
12086 Remove autoloads, because the file is now preloaded.
12087
12088 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12089
12090 * printing.el (easy-menu-intern): Don't define.
12091 (pr-get-symbol): Use easy-menu-intern only if defined.
12092
12093 * simple.el (blink-matching-open): Simplify a bit.
12094 (completion-setup-function): Fix the case of partial-completion-mode
12095 when the minibuffer's contents start with "-".
12096 Obey completion-base-size-function even when
12097 minibuffer-completing-file-name is non-nil.
12098
12099 2005-11-16 Richard M. Stallman <rms@gnu.org>
12100
12101 * net/eudcb-ph.el (eudc-ph-open-session):
12102 Use set-process-query-on-exit-flag.
12103
12104 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
12105
12106 * international/ucs-tables.el (ucs-set-table-for-input):
12107 Use make-local-variable, not make-variable-buffer-local.
12108
12109 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
12110 Improve warning message text.
12111
12112 * savehist.el (savehist-save-hook): Add :group.
12113
12114 * menu-bar.el (menu-bar-help-menu):
12115 Rename Find Extra Packages to External Packages.
12116
12117 * cus-edit.el (Custom-reset-standard): Verify that
12118 :custom-standard-value prop exists before calling it.
12119
12120 * apropos.el (apropos-calc-scores): Use apropos-pattern.
12121
12122 2005-11-16 Martin Rudalics <rudalics@gmx.at>
12123
12124 * wid-edit.el (color): Enclose %t in %{...%}.
12125
12126 * cus-edit.el (face): Enclose %t in %{...%}.
12127
12128 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
12129
12130 * savehist.el (savehist-mode-hook): Re-add the var.
12131 (savehist-mode): Use it.
12132
12133 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12134
12135 * textmodes/flyspell.el: Fix commenting convention.
12136 Remove unnecessary leading * in custom docstrings.
12137 (flyspell-emacs): Remove unused var.
12138 (flyspell-delete-region-overlays): Use remove-overlays.
12139 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
12140 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
12141 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
12142 (flyspell-debug-signal-word-checked): Use with-current-buffer.
12143 (make-flyspell-overlay): Don't locally reuse a global name.
12144 (flyspell-highlight-incorrect-region)
12145 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
12146 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
12147 (flyspell-notify-misspell): Remove unused args `start' and `end'.
12148 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
12149 Wrap calls to accept-process-output inside with-local-quit since it's
12150 often called from a post-command-hook.
12151 (flyspell-correct-word, flyspell-auto-correct-word):
12152 Use ispell-send-string.
12153 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
12154
12155 * calendar/diary-lib.el (diary-list-entries): Also hide the
12156 terminating newline.
12157
12158 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
12159
12160 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
12161 window-system, to allow fonts on tty.
12162
12163 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
12164
12165 * progmodes/gud.el (gud-speedbar-item-info): New function.
12166 (gud-install-speedbar-variables): Use it to display data type
12167 of watch expression as a tooltip in speedbar.
12168
12169 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
12170
12171 * font-core.el (global-font-lock-mode): Add :version keyword,
12172 because default was changed.
12173
12174 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
12175
12176 * startup.el (command-line): Use `custom-reevaluate-setting' for
12177 `file-name-shadow-mode'.
12178
12179 * loadup.el: Preload rfn-eshadow.
12180
12181 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
12182 Add :version keyword.
12183 (file-name-shadow-properties, file-name-shadow-tty-properties)
12184 (file-name-shadow): Add :version keyword.
12185
12186 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
12187 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
12188 in the custom-group property of the symbol frames and the fringe
12189 group got no link to its parent group frames.
12190 Doc fix.
12191
12192 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
12193
12194 * progmodes/gud.el (gud-stop-subjob): New function.
12195 (gud-menu-map, gud-tool-bar-map): Use it.
12196
12197 2005-11-16 Kim F. Storm <storm@cua.dk>
12198
12199 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
12200 than kill it.
12201 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
12202 to a more useful/logical place.
12203
12204 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
12205
12206 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
12207 go buttons complementary.
12208
12209 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
12210
12211 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
12212 (rfn-eshadow-sifn-equal): New function.
12213 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
12214
12215 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
12216
12217 * viper-utils.el (viper-non-word-characters-reformed-vi):
12218 Quote `-' in string.
12219
12220 * viper.el (viper-emacs-state-mode-list): Ensure that
12221 rcirc-mode buffers come up in Emacs state.
12222
12223 * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
12224 operation.
12225
12226 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
12227
12228 * term.el (term-termcap-format): Fix typos.
12229 (term-down): Fix the negative argument case.
12230
12231 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
12232
12233 * progmodes/gdb-ui.el: Remove face-alias left over from change on
12234 2005-08-15.
12235 (gdb-ann3): New command gud-go.
12236 (menu): Accomodate gdb-mi.el.
12237 (gdb-assembler-custom): Make buffer of selected window current
12238 so that set-window-point works.
12239
12240 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
12241 buttons and include new ones.
12242
12243 2005-11-16 Kim F. Storm <storm@cua.dk>
12244
12245 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
12246 (gud-menu-map): Use it.
12247
12248 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
12249
12250 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
12251 that works correctly for Custom and that does not override a user
12252 who disables it.
12253
12254 * help-mode.el (help-make-xrefs, help-xref-on-pp)
12255 (help-xref-interned, help-follow): Make hyperlinks for variables
12256 that are unbound, but have a non-nil variable-documentation property.
12257
12258 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
12259 mode hook. (It conflicted with defcustoms for some mode hooks.)
12260 Use the `variable-documentation' property to give the mode hook a
12261 docstring and expand that docstring.
12262
12263 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
12264
12265 * savehist.el (savehist-mode): Don't bother with
12266 `custom-set-minor-mode'.
12267 (savehist-coding-system): Check XEmacs version.
12268 (history-length): Declare also at run time.
12269 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
12270 Don't set the customize state.
12271 (savehist-minibuffer-hook): Special case for when
12272 minibuffer-history-variable is equal to t.
12273
12274 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
12275
12276 * files.el (write-file): Refresh VC status.
12277
12278 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
12279 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
12280 than fundamental-mode to see if the mode was set.
12281
12282 2005-11-14 Romain Francoise <romain@orebokech.com>
12283
12284 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
12285 dummy function in `eval-when-compile' to avoid compiler warning.
12286 Require `man' at compile time.
12287
12288 2005-11-14 Jay Belanger <belanger@truman.edu>
12289
12290 * calc-alg.el (calcFunc-write-out-power): Rename it to
12291 calcFunc-powerexpand.
12292 (math-write-out-power): Rename it to math-powerexpand; have it
12293 handle negative exponents.
12294 (calc-writeoutpower): Rename it to calc-powerexpand.
12295
12296 * calc-ext.el: Change calcFunc-writeoutpower and
12297 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
12298 autoloads.
12299 Add calcFunc-ldiv to autoloads.
12300
12301 * calc-arith.el (calcFunc-ldiv): New function.
12302
12303 * calc.el (calc-left-divide): New function.
12304
12305 2005-11-14 Juri Linkov <juri@jurta.org>
12306
12307 * cus-edit.el (custom-variable-prompt): Set the default value arg
12308 of completing-read.
12309
12310 * cus-dep.el (custom-make-dependencies): Reverse the list of
12311 found dependencies.
12312
12313 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
12314
12315 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
12316 Highlighting" entry, it is on by default now.
12317 (menu-bar-options-save): Do not save global-font-lock-mode.
12318
12319 2005-11-13 Richard M. Stallman <rms@gnu.org>
12320
12321 * textmodes/flyspell.el (flyspell-large-region):
12322 Call flyspell-accept-buffer-local-defs.
12323
12324 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
12325
12326 * textmodes/flyspell.el (flyspell-notify-misspell):
12327 Fix misspelling of "Misspelling".
12328 (flyspell-process-localwords): New function.
12329 (flyspell-large-region): Call flyspell-process-localwords and
12330 flyspell-delete-region-overlays.
12331 (flyspell-delete-region-overlays): New function.
12332 (flyspell-delete-all-overlays): Call that.
12333
12334 2005-11-13 Richard M. Stallman <rms@gnu.org>
12335
12336 * help.el (help-for-help-internal): Improve doc of C-h a.
12337 (describe-key): Improve prompt; doc fix.
12338
12339 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
12340
12341 * vc-svn.el (vc-svn-registered): Catch all errors.
12342
12343 * cus-dep.el (custom-make-dependencies): Typo.
12344
12345 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
12346
12347 * net/tramp-util.el (top): Fix compilation warning.
12348
12349 2005-11-13 Kim F. Storm <storm@cua.dk>
12350
12351 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
12352
12353 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
12354
12355 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
12356 (gud-speedbar-buttons): Match on "const char *" too.
12357
12358 * progmodes/gdb-ui.el (gdb-var-create-handler)
12359 (gdb-var-list-children-handler): Match on "const char *" too.
12360 (gdb-var-evaluate-expression-handler): Match on empty string.
12361 (gdb-var-update-handler): Only call
12362 gdb-var-evaluate-expression-handler when required.
12363
12364 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
12365
12366 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
12367 selected window. This still doesn't work for speedbar.
12368 (gud-speedbar-buttons): Handle string expressions properly.
12369
12370 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
12371 (gdb-var-create-handler): Handle string expressions properly.
12372 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
12373 Handle string expressions properly. Move "type" field into regexp.
12374
12375 2005-11-12 Karl Fogel <kfogel@red-bean.com>
12376
12377 * bookmark.el (bookmark-maybe-message): New function to reduce
12378 code duplication: invokes `message' iff baud-rate is high enough.
12379 (bookmark-write-file): Use above instead of an inline conditional.
12380 (bookmark-load): Same.
12381
12382 2005-11-12 Karl Fogel <kfogel@red-bean.com>
12383
12384 * bookmark.el (bookmark-write-file): Don't visit the destination
12385 file, just write the data to it using write-region. This is
12386 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
12387 change to avoid visiting the file in the first place.
12388
12389 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
12390
12391 * hi-lock.el (hi-lock-mode): Set the default value of
12392 font-lock-defaults.
12393
12394 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
12395
12396 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
12397 arg to `file-attributes'.
12398 (find-lisp-format): The UID and GID can now be strings.
12399
12400 2005-11-12 Kim F. Storm <storm@cua.dk>
12401
12402 * help.el (help-map): Bind C-h d to apropos-documentation.
12403
12404 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
12405 when point is at end-of-buffer.
12406
12407 * apropos.el (apropos-match-face): Doc fix.
12408 (apropos-sort-by-scores): Add new choice `verbose'.
12409 (apropos-documentation-sort-by-scores): New defcustom.
12410 (apropos-pattern): Now contains the pattern entered by the user.
12411 (apropos-pattern-quoted): New defvar.
12412 (apropos-regexp): New defvar, containing the regexp corresponding
12413 to apropos-pattern.
12414 (apropos-all-words-regexp): Rename from apropos-all-regexp.
12415 (apropos-read-pattern): New defun. Use it to read pattern arg in
12416 interactive calls; returns list of words for a word list, and
12417 string for a regexp.
12418 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
12419 parses a list of words or regexp as returned by apropos-read-pattern.
12420 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
12421 (apropos-score-doc): Return a very high score if the string
12422 entered by the user matches literally.
12423 (apropos-variable): Doc fix. Use apropos-read-pattern.
12424 (apropos-command): Doc fix. Use apropos-read-pattern and
12425 apropos-parse-pattern. Call apropos-print with nosubst=t.
12426 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
12427 apropos-parse-pattern.
12428 (apropos-documentation): Doc fix. Use apropos-read-pattern and
12429 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
12430 apropos-documentation-sort-by-scores. Call apropos-print with
12431 nosubst=t.
12432 (apropos-documentation-internal): Pass doc string through
12433 substitute-key-definition before adding text properties.
12434 Highlight substring matching literal user input if possible.
12435 (apropos-documentation-check-doc-file): Remove locals beg and end.
12436 Fix calculation of score (as added twice). Pass doc string through
12437 substitute-key-definition before adding text properties.
12438 (apropos-documentation-check-elc-file): Pass doc string through
12439 substitute-key-definition before adding text properties.
12440 Highlight substring matching literal user input if possible.
12441 (apropos-print): Add new arg NOSUBST; if set, command and variable
12442 doc strings have already been passed through substitute-key-definition.
12443 Add code to handle apropos-accumulator items without score element
12444 for backwards compatibility (e.g. with woman package).
12445 Only show scores if apropos-sort-by-scores is `verbose'.
12446
12447 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
12448
12449 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
12450 Add jka-compr-load-suffixes to load-suffixes.
12451
12452 * jka-compr.el: Require jka-cmpr-hook.
12453 (jka-compr-info-compress-message, jka-compr-info-compress-program)
12454 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
12455 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
12456 (jka-compr-info-can-append, jka-compr-info-strip-extension)
12457 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
12458 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
12459 (jka-compr-uninstall): Remove entries from
12460 jka-compr-added-to-file-coding-system-alist after they are used.
12461 (jka-compr-error): Remove unused var `curbuf'.
12462 (jka-compr-file-local-copy): Remove unused var `notfound'.
12463
12464 2005-11-10 Romain Francoise <romain@orebokech.com>
12465
12466 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
12467
12468 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
12469
12470 * progmodes/gud.el (gud-menu-map): Move parentheses.
12471 (gdb): New command gud-pv.
12472
12473 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
12474
12475 * tar-mode.el: Remove spurious or unnecessary leading stars
12476 in docstrings.
12477 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
12478 (tar-parse-octal-integer-safe): Use mapc.
12479 (tar-header-block-summarize): Remove unused var `ck'.
12480 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
12481 cleared before. Obey default-enable-multibyte-characters.
12482 Use mapconcat. Simplify setting of tar-header-offset.
12483 (tar-mode-map): Move initialization inside delcaration.
12484 (tar-flag-deleted): Use `abs'.
12485 (tar-expunge-internal): Remove unused var `line'.
12486 (tar-expunge-internal): Don't hardcode point-min==1.
12487 (tar-expunge): Widen while doing set-buffer-multibyte.
12488 (tar-rename-entry): Use file-name-coding-system.
12489 (tar-alter-one-field): Don't hardcode point-min==1.
12490 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
12491 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
12492
12493 2005-11-10 Masatake YAMATO <jet@gyve.org>
12494
12495 * add-log.el (add-log-current-defun): Handle class::method
12496 notation of c++. Fix incorrect comment.
12497
12498 2005-11-10 Alan Mackenzie <acm@muc.de>
12499
12500 * help-fns.el (describe-variable): Make C-h v work when a variable
12501 has variable documentation yet is unbound.
12502
12503 2005-11-10 Masatake YAMATO <jet@gyve.org>
12504
12505 * man.el (Man-highlight-references): Set an empty
12506 string to `Man-arguments' if it is nil.
12507 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
12508
12509 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
12510
12511 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
12512 commenting conventions.
12513
12514 * cus-dep.el (custom-make-dependencies): Simplify.
12515 Better follow the commenting conventions.
12516
12517 2005-11-09 Richard M. Stallman <rms@gnu.org>
12518
12519 * apropos.el (apropos-pattern): Rename from apropos-regexp.
12520 (apropos-orig-pattern): Rename from apropos-orig-regexp.
12521 All uses changed.
12522 (apropos-rewrite-regexp): Doc fix.
12523 (apropos-variable, apropos-command, apropos, apropos-value):
12524 Change prompt; carry through the argument renaming.
12525
12526 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
12527
12528 * find-lisp.el: Require dired.
12529 (find-lisp-find-dired-internal): Do not call
12530 `abbreviate-file-name' on DIR.
12531
12532 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
12533
12534 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
12535
12536 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
12537
12538 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
12539 when using the speedbar.
12540 (gdb): New command gud-pp.
12541 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
12542
12543 2005-11-09 Juri Linkov <juri@jurta.org>
12544
12545 * replace.el (occur-excluded-properties): New defcustom.
12546 (occur-1, occur-engine, occur-accumulate-lines): Use it.
12547
12548 2005-11-08 Jay Belanger <belanger@truman.edu>
12549
12550 * calc/calc-units.el (math-convert-units): Replace any composite
12551 unit by its definition.
12552
12553 2005-11-08 Lars Hansen <larsh@soem.dk>
12554
12555 * emacs-lisp/autoload.el (update-directory-autoloads):
12556 Add obsolete function alias.
12557
12558 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
12559
12560 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
12561 comment-indent-function.
12562 (lisp-comment-indent): Replace by an alias for comment-indent-default.
12563
12564 * reveal.el (reveal-post-command): Rework the handling of
12565 reveal-open-spots, so as to be more reliable. There were several
12566 tricky corner cases where an open spot might be lost, or where
12567 a closed spot might end up on the list of open spots.
12568 Only reveal text that's ellipsised.
12569
12570 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
12571
12572 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
12573
12574 2005-11-07 John Paul Wallington <jpw@gnu.org>
12575
12576 * ibuffer.el (ibuffer): Search iconified frames too when
12577 getting Ibuffer buffer's window.
12578
12579 2005-11-06 Richard M. Stallman <rms@gnu.org>
12580
12581 * progmodes/compile.el (compilation-internal-error-properties):
12582 save-excursion around the computation of MARKER.
12583
12584 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
12585
12586 * textmodes/flyspell.el (flyspell-external-point-words):
12587 flyspell-get-word returns a list, not just a string.
12588
12589 2005-11-06 John Paul Wallington <jpw@pobox.com>
12590
12591 * ibuffer.el (ibuffer): Search all visible frames when getting
12592 Ibuffer buffer's window.
12593
12594 2005-11-07 Masatake YAMATO <jet@gyve.org>
12595
12596 * man.el (Man-reference-regexp): Accept spaces between
12597 `Man-name-regexp' and `Man-section-regexp'.
12598 (Man-apropos-regexp): New variable.
12599 (Man-abstract-xref-man-page): Use value for `Man-target-string'
12600 if available.
12601 (Man-highlight-references, Man-highlight-references0):
12602 Handle the case when `Man-arguments' includes "-k".
12603 (Man-highlight-references0): Rename the argument `TARGET-POS' to
12604 `TARGET'. `TARGET' can be a number, function or nil.
12605
12606 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
12607
12608 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
12609 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
12610 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
12611 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
12612 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
12613 (gdb-send-item): Use buffer-local-value and simplify.
12614
12615 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
12616
12617 * startup.el (command-line): Use `custom-reevaluate-setting' for
12618 `global-font-lock-mode'.
12619
12620 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
12621 by default, except in batch mode or when the -D option is given.
12622
12623 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
12624 specified keyword args on to `define-minor-mode'. Update docstring.
12625
12626 2005-11-05 Romain Francoise <romain@orebokech.com>
12627
12628 * replace.el (occur-engine): Add marker at end of line, too.
12629
12630 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
12631
12632 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12633 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
12634 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
12635 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
12636 argument to all these routines, so the passphrase can be managed
12637 externally and passed in to the system.
12638 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12639 pgg-add-passphrase-to-cache function.
12640
12641 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12642 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
12643 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
12644 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
12645 argument to all these routines, so the passphrase can be managed
12646 externally and passed in to the system.
12647 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
12648 function.
12649
12650 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
12651
12652 * font-lock.el: Don't deal with font-lock-face-attributes here,
12653 move the code ...
12654
12655 * startup.el (command-line): ... here. Use face-spec-set instead
12656 of custom-declare-face.
12657
12658 * faces.el (face-spec-set): Reset the face if spec is not nil.
12659
12660 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
12661
12662 * newcomment.el (comment-region-internal): Box more tightly in the
12663 common case where there's no TAB in the boxed text.
12664
12665 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12666
12667 * info.el (info-tool-bar-map): Use images prev-node, next-node and
12668 up-node.
12669
12670 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
12671
12672 * newsticker.el: Commentary updated. Code formatting changed.
12673 (newsticker-version): Change to "1.9".
12674 (newsticker, newsticker-feed): Doc fix.
12675 (newsticker-url-list): Doc fix. Add option "Weekly".
12676 (newsticker-retrieval-interval): Add option "Weekly".
12677 (newsticker-headline-processing): Doc fix.
12678 (newsticker-auto-mark-filter): Remove.
12679 (newsticker-auto-mark-filter-list): New.
12680 (newsticker-layout, newsticker-sort-method): Doc fix.
12681 (newsticker-hide-old-items-in-newsticker-buffer)
12682 (newsticker-heading-format, newsticker-item-format)
12683 (newsticker-desc-format): Doc fix.
12684 (newsticker-show-all-rss-elements): Remove.
12685 (newsticker-show-all-news-elements): New.
12686 (newsticker-faces, newsticker-ticker): Doc fix.
12687 (remove-from-invisibility-spec): Code formatting.
12688 (newsticker--process-ids): New.
12689 (newsticker-mode): Doc fix.
12690 (newsticker-mode): Change mode-line-format.
12691 (newsticker-start): Remove debug output.
12692 (newsticker-start-ticker): Doc fix. Add autoload cookie.
12693 (newsticker-w3m-show-inline-images): Code formatting.
12694 (newsticker-next-item): Call `force-mode-line-update'.
12695 (newsticker-previous-item): Call `force-mode-line-update'.
12696 (newsticker-next-feed): Call `force-mode-line-update'.
12697 (newsticker-previous-feed): Call `force-mode-line-update'.
12698 (newsticker-mark-all-items-at-point-as-read): Code formatting.
12699 (newsticker-show-old-items): Do not show descs.
12700 (newsticker-hide-entry): Hide too much.
12701 (newsticker-hide-entry, newsticker-show-entry)
12702 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
12703 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
12704 (newsticker-toggle-auto-narrow-to-item): Code formatting.
12705 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
12706 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
12707 (newsticker-get-news): Call `force-mode-line-update'.
12708 Collect process ids.
12709 (newsticker--sentinel): Change coding system handling.
12710 Move image retrieval to new functions newsticker--get-logo-url-*.
12711 Move feed parsing to new functions newsticker--parse-*.
12712 Update list of process ids.
12713 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
12714 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
12715 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
12716 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
12717 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
12718 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
12719 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
12720 (newsticker--decode-coding-string): Remove.
12721 (newsticker--decode-numeric-entities): Check input. Format code.
12722 (newsticker--remove-whitespace): Check input.
12723 (newsticker--do-forget-preformatted): Doc fix.
12724 (newsticker--decode-rfc822-date): Allow for missing time.
12725 (newsticker--update-process-ids): New.
12726 (newsticker--image-sentinel): Change comment.
12727 (newsticker--image-read): Change error message.
12728 (newsticker--imenu-goto): Doc fix. Show headline title.
12729 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
12730 (newsticker--buffer-do-insert-text): Clean whitespace in
12731 html-rendered headline title. Code formatting.
12732 Call `newsticker--buffer-print-extra-elements'.
12733 (newsticker--buffer-print-extra-element): Remove.
12734 (newsticker--buffer-print-extra-elements): New.
12735 (newsticker--buffer-do-print-extra-element): New.
12736 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
12737 large sizes.
12738 (newsticker--run-auto-mark-filter)
12739 (newsticker--do-run-auto-mark-filter):
12740 Use `newsticker-auto-mark-filter-list'.
12741
12742 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
12743
12744 * net/rcirc.el: Use split-string OMIT-NULLS argument.
12745 (rcirc-print): Force redisplay before running hooks. Do long
12746 buffer truncation after making new text read-only. Deal with nil
12747 text when decoding strings. If TARGET is nil, use either the
12748 currently selected buffer, if it is an rcirc buffer and of the
12749 same process or the process buffer.
12750 (rcirc-mode): Remove header-line. Recompute short buffer names.
12751 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
12752 (rcirc-short-buffer-name): Add variable.
12753 (rcirc-kill-buffer-hook): Recompute short buffer names.
12754 Remove nick from private channel.
12755 (rcirc-send-input): Send command text to current-buffer.
12756 Don't clear overlay arrow here.
12757 (rcirc-short-buffer-name): Return a short buffer name.
12758 (rcirc-update-short-buffer-names, rcirc-abbreviate)
12759 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
12760 buffer-name abbreviations.
12761 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
12762 Do not touch nick-table when killing a parted channel.
12763 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
12764 Clear arrow from current buffer if it is now hidden.
12765 (rcirc-current-buffer): Add variable.
12766 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
12767 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
12768 Remove -face from names.
12769 (rcirc-update-activity-string): Print "DND" when globally ignoring
12770 activity.
12771 (rcirc-ignore-buffer-activity-flag): Rename from
12772 rcirc-ignore-channel-activity.
12773 (rcirc-ignore-all-activity-flag): Doc fix.
12774 (rcirc-channels): Remove variable.
12775 (rcirc-kill-buffer-hook):
12776 (rcirc-get-buffer-create): Add nick to private channel.
12777 (rcirc-multiline-edit-submit): Remove tabs.
12778 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
12779 folded.
12780 (rcirc-remove-nick-channel): Bug fix.
12781 (rcirc-toggle-ignore-buffer-activity): Rename from
12782 rcirc-toggle-ignore-channel-activity.
12783 (rcirc-record-activity): Add buffers to the front of the list.
12784 (rcirc-update-activity): Remove killed buffers from list.
12785 (rcirc-process-server-response-1): Remove last argument if it is
12786 null before calling handler.
12787 (rcirc): Add "rcirc" defcustom prefix.
12788 (rcirc-prompt): Simplify default prompt.
12789 Use custom-initialize-default.
12790 (rcirc-private-chats): Remove variable.
12791 (rcirc-prompt): Change initialization.
12792 (rcirc-version): Remove function.
12793 (rcirc-id-string): Add constant.
12794 (rcirc-last-buffer): Remove variable.
12795 (rcirc-buffer-alist): Add variable.
12796 (rcirc-connect): Update variable setup.
12797 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
12798 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
12799 default.
12800 (rcirc-handler-generic): Trigger activity.
12801 (rcirc-send-message): Create the buffor of the target.
12802 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
12803 (rcirc-get-buffer): Just return nil if there is no matching buffer.
12804 (rcirc-multiline-edit-cancel): Remove function.
12805 (rcirc-set-last-buffer): Remove function.
12806 (rcirc-get-any-buffer): Add function.
12807 (rcirc-join-channels): Don't print /join text.
12808 (rcirc-toggle-ignore-channel-activity): Add and update echo area
12809 messages.
12810 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
12811 (rcirc-handler-NOTICE): Recognize CTCP responses.
12812 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
12813 constructing TOPIC string for buffers we are not JOINed.
12814 (rcirc-handler-CTCP-response): Add handler.
12815 (rcirc-multiline-edit-submit): Restore the window-configuration
12816 before adjusting point.
12817 (rcirc): Add customization group.
12818 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
12819 (rcirc-user-full-name, rcirc-startup-channels-alist)
12820 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
12821 (rcirc-ignore-all-activity-flag, rcirc-time-format)
12822 (rcirc-input-ring-size, rcirc-read-only-flag)
12823 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
12824 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
12825 Change defvar to defcustom.
12826 (rcirc-update-prompt): Add optional ALL arg, which will update
12827 prompts in all rcirc buffers. Regexp quote replacement text.
12828 (rcirc-fill-column): Accept frame-width as a value.
12829 (rcirc-set-changed): Add function.
12830 (rcirc-next-active-buffer): Write more meaningful messages.
12831 (rcirc-faces): Add customization group.
12832 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
12833 (rcirc-nick-in-message-face, rcirc-prompt-face)
12834 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
12835 (with-rcirc-process-buffer): Move before first usage.
12836 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
12837 (rcirc-debug-flag): Rename from `rcirc-log-p'.
12838 (rcirc-debug): Rename from `rcirc-log'.
12839 (rcirc-format-response-string): Do not print `-' chars for a
12840 NOTICE with no sender. Simplify output of server responses.
12841
12842 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
12843
12844 (rcirc-browse-url-map, rcirc-browse-url-at-point)
12845 (rcirc-browse-url-at-mouse, rcirc-mangle-text):
12846 Make urls mouse and RET clickable.
12847
12848 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
12849
12850 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
12851
12852 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
12853
12854 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12855 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
12856 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
12857 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
12858 argument to all these routines, so the passphrase can be managed
12859 externally and passed in to the system.
12860 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12861 pgg-add-passphrase-to-cache function.
12862
12863 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12864 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
12865 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
12866 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
12867 argument to all these routines, so the passphrase can be managed
12868 externally and passed in to the system.
12869 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
12870 function.
12871
12872 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
12873
12874 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
12875 from goto-address-url-regexp.
12876
12877 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
12878
12879 * textmodes/org.el (org-read-date, org-goto-calendar)
12880 (org-recenter-calendar, org-agenda-goto-calendar):
12881 Temporarily clear `calendar-move-hook'.
12882
12883 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
12884
12885 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
12886 merging.
12887
12888 * ediff-util.el (ediff-previous-difference): Don't skip regions that
12889 have merge clashes.
12890
12891 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12892
12893 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
12894 Undo previous change.
12895
12896 * startup.el (command-line): Use `custom-reevaluate-setting' for
12897 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
12898 tty-register-default-colors on Mac.
12899
12900 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
12901
12902 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
12903 (gdb-buffer-type): Make it automatically buffer local...
12904 (gdb-get-create-buffer): ...and set it accordingly.
12905 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
12906 actually work.
12907
12908 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
12909
12910 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
12911 not red.
12912
12913 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
12914
12915 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
12916 case GUD buffer is not visible.
12917 (gdb-goto-breakpoint): Try to force display in source buffer.
12918 (gdb-frame-gdb-buffer): Copy other similar functions.
12919 (gdb-restore-windows): Don't display source if not asked for.
12920 (gdb-assembler-buffer-name): Don't capitalise.
12921
12922 2005-11-03 Richard M. Stallman <rms@gnu.org>
12923
12924 * wid-edit.el (key-sequence): New widget type.
12925
12926 * simple.el (set-mark-command-repeat-pop): New variable.
12927 (set-mark-command): Only interpret plan C-@ after a pop as a pop
12928 if set-mark-command-repeat-pop is true.
12929
12930 * info.el (Info-fontify-node): Don't display extra "see" if there
12931 already is one here.
12932
12933 * mouse.el: Fix special handling of DEL after dragging a region:
12934 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
12935 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
12936
12937 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
12938
12939 * textmodes/ispell.el (ispell-command-loop): Change `i' description
12940 not to assume it pertains to an affix.
12941
12942 * textmodes/flyspell.el (flyspell-post-command-hook):
12943 Bind deactivate-mark to prevent deactivation.
12944
12945 2005-11-03 Lars Hansen <larsh@soem.dk>
12946
12947 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
12948 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
12949 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
12950
12951 2005-11-03 Romain Francoise <romain@orebokech.com>
12952
12953 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
12954 Update copyright years.
12955
12956 2005-11-03 Sam Steingold <sds@gnu.org>
12957
12958 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
12959 Use system-type instead of window-system because window-system is not
12960 correctly defined during loadup.
12961
12962 2005-11-02 Mark A. Hershberger <mah@everybody.org>
12963
12964 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
12965 (xml-parse-tag): Join strings separated by a comment properly.
12966
12967 2005-11-02 Andreas Schwab <schwab@suse.de>
12968
12969 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
12970
12971 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
12972
12973 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
12974 (byte-optimize-pure-func): Quote the eval'd value.
12975
12976 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
12977 Rename from perl-font-lock-syntactic-face-function.
12978 Change the calling convention so it can be used as a font-lock MATCHER.
12979 Do the parse-partial-sexp loop outselves.
12980 (perl-font-lock-syntactic-keywords): Use it.
12981 (perl-mode): Don't set font-lock-syntactic-face-function any more.
12982
12983 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
12984
12985 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
12986 disassembly buffer too.
12987 (gdb-exited): Remove overlay arrows when execution has finished.
12988 (gdb-info-frames-custom, gdb-info-threads-custom)
12989 (gdb-info-registers-custom): Don't add inappropriate text
12990 properties if inferior is not active.
12991
12992 2005-11-02 Glenn Morris <rgm@gnu.org>
12993
12994 * progmodes/fortran.el (fortran-blink-match):
12995 Use `blink-matching-delay'.
12996
12997 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
12998
12999 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
13000
13001 2005-11-02 Lars Hansen <larsh@soem.dk>
13002
13003 * net/tramp.el (tramp-action-out-of-band): Handle scp message
13004 "Permission denied".
13005
13006 2005-11-01 Richard M. Stallman <rms@gnu.org>
13007
13008 * textmodes/flyspell.el (flyspell-external-point-words):
13009 Pass nil to flyspell-get-word.
13010
13011 2005-11-02 Kim F. Storm <storm@cua.dk>
13012
13013 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
13014 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
13015
13016 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
13017
13018 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
13019 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
13020 (calendar-mouse-print-dates): Add optional `event' argument.
13021 Update interactive-spec.
13022 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
13023 Use `calendar-event-to-date' instead of `event'.
13024
13025 2005-11-02 Masatake YAMATO <jet@gyve.org>
13026
13027 * progmodes/ld-script.el (ld-script-builtins):
13028 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
13029 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
13030 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
13031
13032 2005-11-01 Romain Francoise <romain@orebokech.com>
13033
13034 * vc-sccs.el: Update copyright year.
13035 * ezimage.el: Likewise.
13036
13037 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
13038
13039 * info.el (Info-fontify-node): Use `string-width' for fontifying
13040 underlined titles.
13041
13042 2005-11-01 Juri Linkov <juri@jurta.org>
13043
13044 * info.el (Info-fontify-node): Downcase node header keywords Node,
13045 Prev, Next, Up before comparison.
13046 (Info-history): Insert absolute directory name, and put invisible
13047 property on it.
13048
13049 2005-11-01 Juri Linkov <juri@jurta.org>
13050
13051 * info.el (Info-file-supports-index-cookies): New variable.
13052 (Info-find-node-2): Check makeinfo version for index cookie support.
13053 (Info-index-nodes): Search for nodes with index cookies only when
13054 Info-file-supports-index-cookies is t. Otherwise, search nodes
13055 with "Index" in the node name.
13056 (Info-index-node): Search index cookie in the current node only when
13057 Info-file-supports-index-cookies is t. Otherwise, check the word
13058 "Index" in the node name.
13059 (Info-find-emacs-command-nodes): Remove code that searches nodes
13060 with "Index" node name in the top menu.
13061
13062 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
13063
13064 * progmodes/scheme.el (scheme-mode-variables): Use the default
13065 comment-indent-function.
13066
13067 * faces.el (face-attribute): Handle the case where a face inherits from
13068 a non-existent face.
13069
13070 * simple.el (eval-expression-print-format): Use lisp-readable syntax
13071 for octal and hexa output, and merge the char into the paren.
13072 (kill-new): Use push.
13073 (copy-to-buffer): Use with-current-buffer.
13074 (completion-setup-function): Move code in loop to remove redundancy.
13075 (minibuffer-local-must-match-map): Don't add bindings that duplicate
13076 those inherited from minibuffer-local-completion-map.
13077
13078 * savehist.el (savehist-mode) <defcustom>:
13079 Use custom-set-minor-mode if available.
13080 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
13081 and emit a message if applicable.
13082
13083 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
13084
13085 * savehist.el: Sync up to version 19.
13086 (savehist-mode): New minor mode.
13087 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
13088 (savehist-length): Remove (use history-length instead).
13089 (savehist-file-modes): Rename from savehist-modes.
13090 (savehist-save-hook, savehist-loaded): New vars.
13091 (savehist-load): Use savehist-mode. Try to smooth up transition from
13092 old format to new format.
13093 (savehist-install): Allow savehist-autosave-interval to be nil.
13094 (savehist-save): Run the new hook. Be more careful to only trim the
13095 history variables.
13096 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
13097 (savehist-printable): Print into a buffer rather than char-by-char.
13098
13099 2005-11-01 John Wiegley <johnw@newartisans.com>
13100
13101 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
13102 toggle-ignore keybinding (C-a). The author said it had been
13103 disabled much earlier due to a possible incompatibility, but after
13104 many months of usage I have encountered no problems (and it is a
13105 rather useful option, especially for switching to " *temp*").
13106
13107 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
13108 support for OS/X's AddressBook, by calling out to the open source
13109 program "contacts" (installable through Fink).
13110
13111 * net/eudc.el (eudc-expand-inline): If the
13112 `eudc-multiple-match-handling-method' is set to `all', delete the
13113 query string before inserting the query result.
13114
13115 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
13116 flag, to prevent Eshell from using the system ls when
13117 `eshell-ls-insert-directory' is in used.
13118 (eshell-ls-insert-directory): Disable font-lock in directory
13119 buffer so that Eshell's own fontification is seen. This broke
13120 recently due to changes in font-lock, so this goes back to version
13121 21 behavior.
13122
13123 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
13124
13125 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
13126 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
13127 (gdb-many-windows): Doc fix.
13128
13129 2005-10-31 Romain Francoise <romain@orebokech.com>
13130
13131 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
13132
13133 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
13134
13135 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
13136 that global-font-lock-mode can be enabled by default.
13137
13138 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
13139 (font-lock-add-keywords, font-lock-remove-keywords)
13140 (font-lock-fontify-buffer): Remove autoload cookies.
13141
13142 * jit-lock.el (jit-lock-register): Likewise.
13143
13144 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
13145
13146 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
13147
13148 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
13149 intact if there is no gud-comint-buffer.
13150
13151 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
13152
13153 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
13154 old prompt comint-prompt-read-only is t and GDB commands are
13155 issued from tool bar etc.
13156
13157 2005-10-31 Masatake YAMATO <jet@gyve.org>
13158
13159 * vc.el (vc-directory-exclusion-list): Add "{arch}".
13160
13161 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
13162
13163 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
13164 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
13165
13166 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
13167
13168 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
13169 starting at beginning of line. Fontification is messed up when
13170 `open-paren-in-column-0-is-defun-start' set to t.
13171 Reported by John Paul Wallington <jpw@pobox.com>.
13172
13173 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
13174
13175 * comint.el (comint-send-input): Call `comint-update-fence' when
13176 `comint-process-echoes' and `comint-prompt-read-only' are both
13177 non-nil, to avoid leftover read-only newline.
13178
13179 2005-10-30 Richard M. Stallman <rms@gnu.org>
13180
13181 * textmodes/flyspell.el (flyspell-external-point-words):
13182 Detect when WORD can't be checked properly because
13183 flyspell-get-word finds just part of it, and move on.
13184
13185 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
13186 boundarychar for Polish.
13187 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
13188 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
13189
13190 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
13191
13192 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
13193 (gdb-registers-font-lock-keywords): Delete.
13194 (gdb-registers-mode): Don't fontify.
13195 (gdb-info-registers-custom): Use text properties instead as, in
13196 future, changed register values will use font-lock-warning-face.
13197 (gdb-local-font-lock-keywords): Rename to...
13198 (gdb-locals-font-lock-keywords): ...for consistency.
13199
13200 2005-10-30 Andre Spiegel <spiegel@gnu.org>
13201
13202 * vc.el (vc-switch-backend): Better error message if the buffer is
13203 not visiting a file under version control.
13204
13205 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
13206
13207 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
13208
13209 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
13210 ~/.emacs.d/.emacs.
13211
13212 2005-10-29 Richard M. Stallman <rms@gnu.org>
13213
13214 * replace.el (occur-mode-mouse-goto): Always go to other window.
13215 (occur-mode-goto-occurrence): Always switch in same window.
13216
13217 * simple.el (undo): Display message at end, not at start.
13218
13219 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
13220 New arg REUSE-CELL.
13221 (cancel-timer-internal): New function.
13222 (timer-event-handler): Use cancel-timer-internal,
13223 and pass the cell it returns to timer-activate...
13224
13225 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
13226 (jit-lock-deferred-fontify, jit-lock-context-fontify)
13227 (jit-lock-after-change): Test memory-full.
13228
13229 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
13230
13231 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
13232 part of the decoded armor to find the key-identifier.
13233 (pgg-gpg-lookup-key-owner): New function to return the
13234 human-readable identifier of a key owner.
13235 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
13236 key itself.
13237 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
13238 the key value) if we have a key and can match it against a secret
13239 key. Also, added a note pointing out fact that the prompt only
13240 indicates the first matching key.
13241
13242 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
13243 pgg-decrypt-region.
13244 (pgg-pending-timers): A new hash for tracking the passphrase cache
13245 timers, so that new ones supercede old ones.
13246 (pgg-add-passphrase-to-cache): Rename from
13247 `pgg-add-passphrase-cache' to reduce confusion (all callers
13248 changed). Modified to cancel old timers when new ones are added.
13249 (pgg-remove-passphrase-from-cache): Rename from
13250 `pgg-remove-passphrase-cache' to reduce confusion (all callers
13251 changed). Modified to cancel old timers when their keys are
13252 removed from the cache.
13253 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
13254 XEmacs, an indirection to delete-itimer.
13255 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
13256 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
13257 users can only check cache without risk of prompting. Correct bug in
13258 notruncate behavior.
13259 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
13260 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
13261 Add informative docstrings.
13262 (pgg-decrypt): Convey provided passphrase in subordinate call to
13263 pgg-decrypt-region.
13264
13265 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
13266 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
13267 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
13268 `passphrase' argument, so the passphrase can be managed externally
13269 and then passed in to the system.
13270
13271 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
13272 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
13273 so the passphrase cache can be used reliably with identifiers
13274 besides a pgp packet's key id.
13275
13276 * pgg-gpg.el (pgg-pgp-encrypt-region)
13277 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
13278 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
13279 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
13280 argument to all these routines, so the passphrase can be managed
13281 externally and passed in to the system.
13282
13283 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
13284 `notruncate' argument, so the passphrase cache can be used
13285 reliably with identifiers besides a pgp packet's key id.
13286
13287 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
13288
13289 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13290 symmetric encryption.
13291 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13292 encrypted session key.
13293 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13294 message ask for the passphrase in a proper way.
13295
13296 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13297 New user commands for symmetric encryption.
13298
13299 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
13300
13301 * textmodes/conf-mode.el (conf-assignment-sign)
13302 (conf-assignment-regexp): Fix docstrings.
13303 (conf-mode-initialize): New function.
13304 (conf-mode): Remove optional args. Use delay-mode-hooks to
13305 recognize recursive calls.
13306 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
13307 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
13308 (conf-xdefaults-mode): Use define-derived-mode and
13309 conf-mode-initialize.
13310
13311 2005-10-29 Romain Francoise <romain@orebokech.com>
13312
13313 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
13314
13315 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
13316
13317 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
13318 part of the decoded armor to find the key-identifier.
13319 (pgg-gpg-lookup-key-owner): New function to return the
13320 human-readable identifier of a key owner.
13321 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
13322 key itself.
13323 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
13324 the key value) if we have a key and can match it against a secret
13325 key. Also, added a note pointing out fact that the prompt only
13326 indicates the first matching key.
13327
13328 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
13329 pgg-decrypt-region.
13330 (pgg-pending-timers): A new hash for tracking the passphrase cache
13331 timers, so that new ones supercede old ones.
13332 (pgg-add-passphrase-to-cache): Rename from
13333 `pgg-add-passphrase-cache' to reduce confusion (all callers
13334 changed). Modified to cancel old timers when new ones are added.
13335 (pgg-remove-passphrase-from-cache): Rename from
13336 `pgg-remove-passphrase-cache' to reduce confusion (all callers
13337 changed). Modified to cancel old timers when their keys are
13338 removed from the cache.
13339 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
13340 XEmacs, an indirection to delete-itimer.
13341 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
13342 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
13343 users can only check cache without risk of prompting. Correct bug in
13344 notruncate behavior.
13345 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
13346 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
13347 Add informative docstrings.
13348 (pgg-decrypt): Convey provided passphrase in subordinate call to
13349 pgg-decrypt-region.
13350
13351 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
13352
13353 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
13354 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
13355 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
13356 `passphrase' argument, so the passphrase can be managed externally
13357 and then passed in to the system.
13358
13359 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
13360 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
13361 so the passphrase cache can be used reliably with identifiers
13362 besides a pgp packet's key id.
13363
13364 * pgg-gpg.el (pgg-pgp-encrypt-region)
13365 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
13366 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
13367 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
13368 argument to all these routines, so the passphrase can be managed
13369 externally and passed in to the system.
13370
13371 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
13372 `notruncate' argument, so the passphrase cache can be used
13373 reliably with identifiers besides a pgp packet's key id.
13374
13375 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
13376
13377 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13378 symmetric encryption.
13379 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13380 encrypted session key.
13381 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13382 message ask for the passphrase in a proper way.
13383
13384 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13385 New user commands for symmetric encryption.
13386
13387 2005-10-28 Bill Wohler <wohler@newt.com>
13388
13389 * help-mode.el (help-url): New button type. Calls browse-url.
13390 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
13391 Similar to Info nodes: URL `url'.
13392 (help-make-xrefs): Create help-url buttons for
13393 help-xref-url-regexp matches.
13394
13395 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
13396
13397 * tool-bar.el (tool-bar-add-item-from-menu)
13398 (tool-bar-local-item-from-menu): Fix doc strings.
13399
13400 2005-10-28 Romain Francoise <romain@orebokech.com>
13401
13402 * ldefs-boot.el: Update.
13403
13404 * subr.el (locate-library): Move from help-fns.el.
13405 * help-fns.el (locate-library): Move to subr.el.
13406
13407 2005-10-28 Richard M. Stallman <rms@gnu.org>
13408
13409 * net/tramp.el (tramp-completion-mode): defvar moved up.
13410
13411 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
13412
13413 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
13414
13415 * files.el (find-file-noselect): Use %d to format large file size.
13416
13417 * bindings.el (mode-line-format): Add %e.
13418
13419 * loadup.el ("facemenu"): Load unconditionally.
13420 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
13421 ("x-dnd"): Load, when appropriate.
13422
13423 * startup.el (command-line): Call before-init-hook earlier.
13424 Warn about some bad characters in -u user name.
13425
13426 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
13427 (flyspell-external-point-words): Error if misspelled word is not found.
13428 Set flyspell-large-region-beg at end of word.
13429
13430 2005-10-28 Andreas Schwab <schwab@suse.de>
13431
13432 * view.el (View-revert-buffer-scroll-page-forward):
13433 Use view-page-size-default.
13434
13435 2005-10-28 Juri Linkov <juri@jurta.org>
13436
13437 * international/quail.el (quail-get-current-str): Translate last
13438 raw character for deterministic input methods.
13439
13440 2005-10-27 Jay Belanger <belanger@truman.edu>
13441
13442 * calc/calc-ext.el: Add functions to autoloads.
13443 (math-identity-matrix-p, math-ident-row-p): New functions.
13444
13445 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
13446 multiplication by an identity matrix; don't turn multiplication by
13447 an inverse matrix into division.
13448 (math-div-symbol-fancy): Replace division by matrices with
13449 multiplication by inverse.
13450
13451 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
13452
13453 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
13454 (calc-writeoutpower): New functions.
13455
13456 2005-10-27 Romain Francoise <romain@orebokech.com>
13457
13458 * replace.el (occur-engine): Include colon in mouse-face highlight.
13459
13460 * dired-x.el: Change Maintainer field.
13461
13462 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
13463
13464 * longlines.el (longlines-mode): Bind after-change-functions to
13465 nil during initial decoding and final encoding.
13466
13467 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
13468
13469 * term.el (term-emulate-terminal, term-handle-colors-array)
13470 (term-handle-ansi-escape): Specify the terminfo capabilities
13471 implemented.
13472
13473 2005-10-26 Richard M. Stallman <rms@gnu.org>
13474
13475 * info.el (Info-fontify-node): Fix detection of sentence-break
13476 before *Note.
13477
13478 2005-10-26 Romain Francoise <romain@orebokech.com>
13479
13480 * smerge-mode.el: Add `tools' to file keywords.
13481
13482 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
13483
13484 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
13485 when the fringe is not available.
13486
13487 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
13488 (def-gdb-auto-update-trigger): Simplify construction.
13489 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
13490 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
13491 defined explicitly.
13492 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
13493 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
13494 defined explicitly.
13495 (gdb-info-locals-custom): Remove as it's a no-op.
13496
13497 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
13498
13499 * longlines.el (longlines-mode): Remove narrowing before
13500 performing the initial decoding or final encoding.
13501
13502 2005-10-25 Romain Francoise <romain@orebokech.com>
13503
13504 * emacs-lisp/find-func.el (find-library-name): Also strip
13505 extension if library name ends in .el, to take advantage of
13506 `find-library-suffixes'.
13507
13508 2005-10-25 Richard M. Stallman <rms@gnu.org>
13509
13510 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
13511
13512 2005-10-25 Juri Linkov <juri@jurta.org>
13513
13514 * textmodes/texinfo.el (texinfo-mode): Change charset of one
13515 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
13516
13517 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13518
13519 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
13520 (blackbox-redefine-key): Add argument `map'.
13521
13522 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
13523 regions when moving the jit-lock-context-unfontify-pos boundary.
13524
13525 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
13526
13527 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
13528
13529 2005-10-25 Masatake YAMATO <jet@gyve.org>
13530
13531 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
13532
13533 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
13534
13535 * play/blackbox.el (blackbox-redefine-key): New function.
13536 (blackbox-mode-map): Use it to remap existing bindings for cursor
13537 motion instead of binding literal keys.
13538
13539 2005-10-25 Glenn Morris <rgm@gnu.org>
13540
13541 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
13542 diary does not end in a newline. Do not assume a blank line at
13543 the start of the diary file.
13544
13545 2005-10-25 Kenichi Handa <handa@m17n.org>
13546
13547 * international/quail.el (quail-translate-key): If the input
13548 method is deterministic and failed to handle the last key, restart
13549 the key handling loop from an appropriate key.
13550
13551 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
13552
13553 * vc.el (vc-dired-mode): Extend comment for binding of
13554 `directory-listing-before-filename-regexp'.
13555
13556 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13557
13558 * textmodes/texinfo.el (texinfo-mode):
13559 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
13560 not to unnecessarily expose emacs-mule's internal char codes.
13561
13562 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
13563
13564 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
13565 Display hand pointer and help-echo on disabled icon too.
13566 (gdb-mouse-until): New function.
13567 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
13568
13569 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
13570
13571 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
13572 with 2005-10-23 change to doctor.el.
13573
13574 * finder.el (finder-mode-map): Add follow-link binding.
13575
13576 2005-10-25 Kim F. Storm <storm@cua.dk>
13577
13578 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
13579 to gdb-mouse-toggle-breakpoint-fringe.
13580 (gdb-mouse-toggle-breakpoint-margin): Rename from
13581 gdb-mouse-toggle-breakpoint. Fix doc.
13582 (gdb-mouse-toggle-breakpoint-fringe): New defun.
13583 (gdb-put-string): Add optional SPROPS arg. Add props to string.
13584 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
13585 string properties also for fringe breakpoint bitmaps.
13586
13587 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
13588
13589 * textmodes/org.el (org-start-icalendar-file): Fix format form.
13590
13591 2005-10-25 Masatake YAMATO <jet@gyve.org>
13592
13593 * simple.el (completion-common-substring):
13594 Use `completion-common-substring' prior to `completion-base-size'.
13595
13596 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
13597
13598 * savehist.el: Require CL while compiling.
13599 (savehist-history-variables): Remove.
13600 (savehist-save-minibuffer-history, savehist-additional-variables)
13601 (savehist-minibuffer-history-variables): New vars.
13602 (savehist-save): Use them.
13603 (savehist-uninstall, savehist-minibuffer-hook): New funs.
13604 (savehist-install): New fun, extracted from savehist-load.
13605 (savehist-load): Use them.
13606
13607 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13608
13609 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
13610 a dummy doc-string-elt property.
13611 (defalias, defvaralias, define-category): Add a docstring property.
13612
13613 * image.el (defimage):
13614 * widget.el (define-widget):
13615 * custom.el (defface, defcustom): Add `doc-string' declaration.
13616
13617 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
13618 (defadvice): Add `doc-string' declaration.
13619
13620 * emacs-lisp/byte-run.el (macro-declaration-function):
13621 Handle `doc-string' declarations.
13622 (define-obsolete-function-alias, define-obsolete-variable-alias):
13623 Add `doc-string' declaration.
13624
13625 2005-10-24 Kenichi Handa <handa@m17n.org>
13626
13627 * international/utf-7.el (utf-7): Add autoload cookie.
13628
13629 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
13630
13631 2005-10-24 Eli Zaretskii <eliz@gnu.org>
13632
13633 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
13634 list of directories passed to batch-update-autoloads. Add "." to
13635 the list of the echoed directories.
13636
13637 * pgg-def.el:
13638 * pgg-gpg.el:
13639 * pgg-parse.el:
13640 * pgg-pgp.el:
13641 * pgg-pgp5.el:
13642 * pgg.el: Moved here from the gnus subdirectory.
13643
13644 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
13645
13646 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
13647 in case comint-prompt-read-only is set to t.
13648
13649 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
13650 in case comint-prompt-read-only is set to t.
13651
13652 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
13653
13654 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
13655 Now a string.
13656 (icalendar-import-format): Handle CLASS, STATUS, URL.
13657 Rename `subject' to `summary'.
13658 (icalendar-import-format-summary): Rename from
13659 `icalendar-import-format-subject'.
13660 (icalendar-import-format-url, icalendar-import-format-status)
13661 (icalendar-import-format-class): New variables.
13662 (icalendar--rris): Take variable argument list.
13663 (icalendar--datestring-to-isodate): Remove unnecessary
13664 calendar-style check when converting dates with explicit month names.
13665 (icalendar-export-region): Change return type of conversion
13666 subroutines. Bury current buffer unless error occurred.
13667 (icalendar--convert-to-ical)
13668 (icalendar--parse-summary-and-rest): New functions.
13669 (icalendar--convert-ordinary-to-ical)
13670 (icalendar--convert-weekly-to-ical)
13671 (icalendar--convert-yearly-to-ical)
13672 (icalendar--convert-block-to-ical)
13673 (icalendar--convert-cyclic-to-ical)
13674 (icalendar--convert-anniversary-to-ical): Change return type.
13675 Strip trailing blanks from subject.
13676 (icalendar--convert-sexp-to-ical): Change return type.
13677 Strip trailing blanks from subject. Handle simple sexp
13678 entries as generated by icalendar.el.
13679 (icalendar--convert-float-to-ical)
13680 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
13681 (icalendar-import-file): Doc fix.
13682 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
13683 Correct call to icalendar--rris.
13684 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
13685 `summary'.
13686 (icalendar--add-diary-entry): Rename `subject' to `summary'.
13687
13688 2005-10-24 Romain Francoise <romain@orebokech.com>
13689
13690 * server.el (server-sentinel): Set query-on-exit flag to nil on
13691 new client processes (it isn't inherited from the server process).
13692
13693 * replace.el (occur-engine): Rearrange text properties.
13694
13695 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
13696
13697 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
13698 case-fold-search is nil.
13699 (debug-help-follow): Use help-xref-interned directly.
13700
13701 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
13702
13703 * thumbs.el (thumbs-image-type): Add .pbm.
13704
13705 2005-10-23 Richard M. Stallman <rms@gnu.org>
13706
13707 * faces.el (inhibit-face-set-after-frame-default): New variable.
13708 (set-face-attribute): Bind it.
13709 (face-set-after-frame-default): Test it.
13710
13711 * help-fns.el (describe-simplify-lib-file-name): New function.
13712 (describe-function-1, describe-variable): Use it.
13713
13714 * faces.el (describe-face): Use describe-simplify-lib-file-name.
13715
13716 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
13717 Eliminate nil as possible value.
13718 (tooltip-hide-delay): Reduce internal-border-width.
13719
13720 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
13721 (menu-bar-file-menu) <new-file>: Likewise.
13722
13723 * simple.el (line-move-finish): Ignore fields computing LINE-END.
13724
13725 * international/mule.el (load-with-code-conversion):
13726 Pass full file name to `eval-buffer' unless preloading.
13727
13728 * textmodes/flyspell.el (flyspell-large-region):
13729 Call ispell-check-version.
13730
13731 * textmodes/ispell.el (ispell-local-dictionary-overridden):
13732 Fix the make-variable-buffer-local call that was supposed
13733 to be for this variable.
13734 (ispell-aspell-supports-utf8): Doc fix.
13735 (ispell-find-aspell-dictionaries): Preserve elements of
13736 ispell-dictionary-alist for dictionaries that aspell doesn't report.
13737 (ispell-aspell-find-dictionary): Return nil on error.
13738
13739 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
13740 (doctor-symptoms): Likewise.
13741
13742 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
13743
13744 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
13745
13746 * cus-edit.el (custom-button, custom-button-pressed): New vars.
13747 (custom-raised-buttons): Add :set spec.
13748 (custom-button-unraised, custom-button-pressed-unraised):
13749 New faces, so that custom-raised-buttons actually does something.
13750 (custom-mode): Use custom-button and custom-button-pressed.
13751
13752 * wid-edit.el (widget-specify-button): Don't ignore
13753 widget-mouse-face on graphic terminals.
13754 (widget-move-and-invoke): Cleanup.
13755
13756 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
13757
13758 * whitespace.el (whitespace-cleanup): Doc fix.
13759
13760 2005-10-23 Romain Francoise <romain@orebokech.com>
13761
13762 * emulation/viper.el (viper-set-hooks): Quote forms passed to
13763 `eval-after-load' to avoid evaluating their result.
13764
13765 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
13766
13767 * files.el (directory-listing-before-filename-regexp):
13768 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
13769
13770 * dired.el (dired-move-to-filename-regexp): Remove.
13771 All occurences replaced by `directory-listing-before-filename-regexp'.
13772
13773 * dired-x.el, locate.el, vc.el:
13774 Replace `dired-move-to-filename-regexp' by
13775 `directory-listing-before-filename-regexp'. In vc.el it is
13776 overwritten locally; maybe this can be handled in files.el too.
13777
13778 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
13779 replaced by `directory-listing-before-filename-regexp'.
13780
13781 2005-10-23 Andreas Schwab <schwab@suse.de>
13782
13783 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
13784 and eval-next-after-load.
13785
13786 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
13787
13788 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
13789 exist, create it.
13790
13791 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
13792
13793 * allout.el: Remove autoloads for mailcrypt and crypt++.
13794 Require pgg, pgg-gpg during compilation.
13795 (allout-version): Increment version number to 2.1, and use a literal
13796 rather than RCS Id.
13797 (allout-default-encryption-scheme): Remove.
13798 (allout-passphrase-verifier-handling)
13799 (allout-passphrase-verifier-string)
13800 (allout-file-passphrase-verifier-string)
13801 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
13802 (allout-passphrase-hint-handling): Rename and simplify.
13803 (allout-init): Use `find-file-hook' if available, otherwise
13804 `find-file-hooks'.
13805 (allout-mode): Use `write-file-functions' if available, otherwise
13806 `local-write-file-hooks' and, instead of making auto-save-hook
13807 buffer local, make the write-file-hook activity contingent to
13808 allout-mode.
13809 (allout-mode): Use key-binding substitution in the docstring.
13810 (allout-kill-line): Spell-out kill ring data structure mutation
13811 instead of using byte-compiler-complaint-provoking `pop'.
13812 (allout-insert-listified): Use `insert' rather than `insert-string'
13813 (allout-toggle-current-subtree-encryption): Update docstring, adjust
13814 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
13815 (allout-encrypt-string): Totally revamped vis new underlying
13816 encryption facilities.
13817 (allout-mc-activate-passwd): Remove.
13818 (allout-obtain-passphrase): New, more or less replaces
13819 allout-mc-activate-passwd.
13820 (allout-encrypted-key-info): More or less replaces
13821 allout-encrypted-text-type.
13822 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
13823 (my-mark-marker): Use `(featurep 'xemacs)'.
13824
13825 2005-10-23 Lars Hansen <larsh@soem.dk>
13826
13827 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
13828 (byte-compile-file-form-defmumble, byte-compile-defun)
13829 (byte-compile-defmacro): Use it.
13830 (byte-compile-form): Don't call byte-compile-set-symbol-position
13831 when a byte-compile handler is called.
13832
13833 2005-10-22 Romain Francoise <romain@orebokech.com>
13834
13835 * savehist.el (savehist-history-variables): Add `grep-find-history'.
13836
13837 * subr.el (eval-after-load): Convert library name to an absolute
13838 file name using locate-library, since load-history no longer has
13839 library names in it.
13840
13841 2005-10-22 Richard M. Stallman <rms@gnu.org>
13842
13843 * files.el (make-temp-file): Move from subr.el.
13844 * subr.el (make-temp-file): Move to files.el.
13845
13846 * window.el (get-buffer-window-list): Move from subr.el.
13847 * subr.el (get-buffer-window-list): Move to window.el.
13848
13849 * image.el (image-load-path): Use eval-at-startup to initialize.
13850
13851 * subr.el (eval-at-startup): New macro.
13852
13853 * subr.el: Much rearrangement of functions and division
13854 into pages. No code changes.
13855
13856 2005-10-22 Kenichi Handa <handa@m17n.org>
13857
13858 * tar-mode.el (tar-extract): Be sure to call
13859 find-operation-coding-system if set-auto-coding doesn't find a
13860 coding system.
13861
13862 2005-10-22 Kim F. Storm <storm@cua.dk>
13863
13864 * image.el (image-type-header-regexps): Rename from image-type-regexps.
13865 Change users.
13866 (image-type-file-name-regexps): New defconst.
13867 (image-type-from-data): Simplify loop.
13868 (image-type-from-buffer): New defun.
13869 (image-type-from-file-header): Use it instead of image-type-from-data.
13870 Use image-search-load-path instead of only looking in data-directory.
13871 (image-type-from-file-name): New defun.
13872 (image-search-load-path): Change `pathname' to `filename'.
13873 Make PATH arg optional, default to image-load-path.
13874
13875 2005-10-21 Richard M. Stallman <rms@gnu.org>
13876
13877 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
13878
13879 * textmodes/paragraphs.el (sentence-end-base): New variable.
13880 (sentence-end): Use sentence-end-base.
13881
13882 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
13883
13884 * font-lock.el (font-lock-default-fontify-region): Check the multiline
13885 property independently from the font-lock-multiline variable.
13886
13887 2005-10-21 Richard M. Stallman <rms@gnu.org>
13888
13889 * emacs-lisp/find-func.el (find-library-name): Doc fix.
13890
13891 * startup.el (command-line): Convert library names
13892 in `load-history' to absolute file names.
13893
13894 * subr.el (symbol-file): Doc fix.
13895
13896 * loadhist.el (file-loadhist-lookup): Call locate-library
13897 instead of find-library-name. Don't try converting
13898 abs file names to library names, since load-history no longer
13899 has library names in it.
13900 (file-dependents, file-provides, file-requires): Doc fixes.
13901
13902 2005-10-21 Juri Linkov <juri@jurta.org>
13903
13904 * progmodes/etags.el (tags-table-mode): New function.
13905 (tags-verify-table): Replace initialize-new-tags-table with
13906 tags-table-mode.
13907
13908 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
13909 default value.
13910 (desktop-modes-not-to-save): Add tags-table-mode to the
13911 default value.
13912
13913 * info.el (Info-index-next): Add total number of index
13914 alternatives to the message.
13915
13916 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
13917 backward only space (instead of space and period) before looking
13918 at sentence end.
13919
13920 * simple.el (set-variable): Use user-variable-p instead of symbolp.
13921 Add the old variable value as 4th default-value arg of read-string.
13922
13923 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13924
13925 * cus-face.el (custom-declare-face): Make face from X resources
13926 also on Mac.
13927
13928 * disp-table.el (standard-display-g1, standard-display-graphic):
13929 Refuse to use string glyphs also on Mac.
13930 (standard-display-european): Don't set terminal coding system also
13931 on Mac.
13932
13933 * frame.el (display-screens): Use x-display-screens also on Mac.
13934
13935 2005-10-21 Romain Francoise <romain@orebokech.com>
13936
13937 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
13938
13939 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
13940
13941 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
13942 and $? into sexps.
13943
13944 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
13945 warning face on open-paren-in-column-0.
13946
13947 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
13948 boundary case. Fix typo.
13949 Suggested by Martin Rudalics <rudalics@gmx.at>.
13950
13951 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
13952
13953 * textmodes/org.el (org-combined-agenda-icalendar-file)
13954 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
13955 (org-export-icalendar-this-file)
13956 (org-export-icalendar-all-agenda-files)
13957 (org-export-icalendar-combine-agenda-files): New commands.
13958 (org-export-icalendar, org-print-icalendar-entries)
13959 (org-start-icalendar-file, org-finish-icalendar-file)
13960 (org-ical-ts-to-string): New functions.
13961 (org-read-date, org-goto-calendar)
13962 (org-agenda-goto-calendar): Inhibit displaying diary entries by
13963 call to `calendar'.
13964 (orgtbl-setup): Remove the :keys arguments from the menu description.
13965 (org-after-save-iCalendar-file-hook): New variable.
13966
13967 2005-10-21 Kenichi Handa <handa@m17n.org>
13968
13969 * language/vietnamese.el (tcvn-5712): Make it an alias of
13970 vietnamese-tcvn coding-system.
13971
13972 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
13973
13974 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
13975 group id is given.
13976
13977 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
13978
13979 * progmodes/sh-script.el (sh-escaped-line-re): New var.
13980 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
13981 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
13982 whose line is either continued or ends with a comment.
13983
13984 2005-10-20 Romain Francoise <romain@orebokech.com>
13985
13986 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
13987
13988 * replace.el (occur-engine): Add follow-link property.
13989
13990 * font-core.el (font-lock-mode): Doc fix.
13991
13992 2005-10-20 Richard M. Stallman <rms@gnu.org>
13993
13994 * net/rcirc.el: New file.
13995
13996 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
13997
13998 * term.el (term-term-name): Initialize to "eterm-color".
13999
14000 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
14001
14002 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
14003 for encryption functionality.
14004 Move allout customization subgroup from `editing' to `outlines' group.
14005 Fix commentary keywords to legitimate ones.
14006 Update author info (using my current email address, obscurified).
14007 (allout-encrypt-string, allout-encryption-produce-work-buffer)
14008 (allout-encrypted-topic-p, allout-encrypted-text-type)
14009 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
14010 (allout-situate-encryption-key-verifier)
14011 (allout-get-encryption-key-verifier, allout-verify-key)
14012 (allout-next-topic-pending-encryption)
14013 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
14014 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
14015 (outline-key-verifier-handling, outline-key-hint-handling)
14016 (outline-encrypt-unencrypted-on-saves): New defcustoms.
14017 (allout-file-key-verifier-string, allout-encryption-scheme)
14018 (allout-key-verifier-string, allout-key-hint-string)
14019 (allout-after-save-decrypt): New variables.
14020 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
14021 (allout-after-saves-handler): New hook functions.
14022 (allout-post-command-business): Do allout-after-save-decrypt.
14023 (allout-enable-file-variable-adjustment): Custom var to enable
14024 mechanism for adding and adjusting settings of Emacs file variables.
14025 (allout-adjust-file-variable, allout-file-vars-section-data):
14026 New functions, implement the mechanism.
14027 (outlineify-sticky): Use the file vars mechanism.
14028 (allout-inhibit-protection, allout-during-write-cue)
14029 (allout-override-protect, allout-before-change-protect): Remove.
14030 (allout-flag-region, allout-open-topic): Adjust read-only text.
14031 (allout-open-line-not-read-only): Add to facilitate read-only
14032 text based protection.
14033 (allout-kill-line): Revise to adjust read-only text, clue the
14034 user about the inhibition.
14035 (allout-unprotected): Use unwind-protect.
14036 (allout-shift-in, allout-shift-out): Disallow manually shifting a
14037 topic deeper than the offspring depth of the previous topic -
14038 avoiding confusing "containment discontinuities".
14039 (allout-reindent-bodies): Fix retention of body relative hanging
14040 indent during promotion of collapsed bodies.
14041 (allout-open-topic): Make it easy to open new topic with same
14042 bullet as current topic - topic creation functions provided with
14043 any universal argument provokes now prompt for bullet, defaulting
14044 to the bullet of the previous topic.
14045 (allout-plain-bullets-string, allout-distinctive-bullets-string):
14046 Plain bullet alternates `.' period and `,' comma only. All other
14047 bullets are relegated to special status (but customizable).
14048 (allout-end-of-entry): Rename from allout-end-of-current-entry
14049 since it actually operates w.r.t. most immediately containing
14050 entry, visible or not.
14051 (allout-hide-current-entry, allout-show-current-entry): Use the
14052 revised version.
14053 (allout-old-expose-topic): Solidify deprecation.
14054 (allout-end-of-subtree): Add so we can span concealed as well
14055 as visible topics.
14056 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
14057 (allout-end-of-current-heading): Tweak to just respect the first line.
14058 (allout-get-body-text): Add.
14059 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
14060 when invoked interactively.
14061 (allout-up-current-level): Use `interactive-p'.
14062 (allout-mode, allout-init): Miscellaneous docstring and
14063 operational refinements, as well as hookups of new encryption stuff.
14064 (allout-beginning-of-current-entry): Now works as advertised.
14065 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
14066 (allout-isearch-rectification): Refine condition for isearching.
14067 (allout-isearch-abort, allout-enwrap-isearch)
14068 (allout-flag-region, my-region-active-p): Relocate some macros.
14069 (allout-title): Fallback title is (buffer-name), not
14070 non-existing (current-buffer-name).
14071 (subst-char-in-string): Define if absent (for some XEmacs versions).
14072
14073 2005-10-20 Jari Aalto <jari.aalto@cante.net>
14074
14075 * mail/sendmail.el (mail-setup-hook, mail-aliases)
14076 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
14077 (mail-citation-prefix-regexp, mail-signature-file)
14078 (mail-default-headers, mail-bury-selects-summary)
14079 (mail-send-nonascii): Add autoload cookies.
14080
14081 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
14082
14083 * frame.el (blink-cursor-mode): Add `mac' to the list of
14084 window-system's that support blinking cursor.
14085
14086 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
14087
14088 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
14089
14090 2005-10-20 Eli Zaretskii <eliz@gnu.org>
14091
14092 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
14093 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
14094 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
14095
14096 2005-10-20 Kim F. Storm <storm@cua.dk>
14097
14098 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
14099 (ido-set-current-directory): Don't add / after final @.
14100 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
14101 Explicitly handle ange-ftp completion oddities.
14102 (ido-make-file-list): Don't rotate list at tramp root to avoid
14103 triggering tramp file handler for expand-file-name via get-file-buffer.
14104
14105 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
14106
14107 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
14108
14109 2005-10-19 Jay Belanger <belanger@truman.edu>
14110
14111 * calc/calc-units.el (math-standard-units): Add units, adjust
14112 symbols and update values.
14113 (math-unit-prefixes): Add more prefixes.
14114
14115 2005-10-19 Romain Francoise <romain@orebokech.com>
14116
14117 * bookmark.el (bookmark-menu-heading): New face.
14118 (bookmark-bmenu-list): Use it.
14119 Don't fiddle with `baud-rate' at top-level.
14120
14121 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
14122
14123 * image.el (create-image, find-image): Mention max-image-size in
14124 docstring.
14125
14126 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
14127
14128 * savehist.el (savehist-load): Revert to checking XEmacs.
14129
14130 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
14131 Various docstring and line-width fixups.
14132 (conf-mode): Use cond.
14133 Set font-lock-defaults. Don't set comment-use-syntax.
14134
14135 2005-10-18 David Ponce <david@dponce.com>
14136
14137 * tree-widget.el (tree-widget-button-click): New function.
14138 (tree-widget-button-keymap): Use it.
14139
14140 2005-10-18 Romain Francoise <romain@orebokech.com>
14141
14142 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
14143 (bookmark-bmenu-hide-filenames): Add follow-link property.
14144 Improve help-echo text.
14145
14146 * ffap.el (find-file-at-point): Doc fix.
14147
14148 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14149
14150 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
14151
14152 2005-10-18 Masatake YAMATO <jet@gyve.org>
14153
14154 Install to the CVS repository what I forgot to install in my
14155 2005-10-16 changes.
14156
14157 * progmodes/python.el (python-complete-symbol): Pass the common
14158 prefix substring of completion to `display-completion-list'.
14159
14160 * textmodes/org.el (org-complete): Ditto.
14161
14162 2005-10-18 Masatake YAMATO <jet@gyve.org>
14163
14164 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
14165
14166 * woman.el (WoMan-xref-man-page): New button type derived
14167 from `Man-abstract-xref-man-page'.
14168 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
14169
14170 * man.el (Man-abstract-xref-man-page): New button type.
14171 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
14172 (Man-highlight-references): Add new optional argument `xref-man-type'.
14173
14174 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
14175
14176 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
14177
14178 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
14179
14180 * cus-edit.el (Custom-move-and-invoke): Delete.
14181 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
14182
14183 * wid-edit.el (widget-move-and-invoke): New function, from
14184 Custom-move-and-invoke.
14185
14186 2005-10-17 Bill Wohler <wohler@newt.com>
14187
14188 Move all remaining images from lisp/toolbar to etc/images, move
14189 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
14190 the low resolution images in their own directory (low-color).
14191
14192 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
14193 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
14194 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
14195 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
14196 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
14197 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
14198 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
14199
14200 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
14201 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
14202 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
14203 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
14204 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
14205 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
14206 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
14207 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
14208 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
14209 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
14210 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
14211 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
14212 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
14213 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
14214 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
14215
14216 To conform with convention, replace the underscore (_) in the
14217 following image names with dash (-) or (/) as appropriate.
14218
14219 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
14220 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
14221 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
14222 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
14223 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
14224 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
14225 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
14226 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
14227 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
14228 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
14229 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
14230 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
14231 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
14232 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
14233 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
14234
14235 * info.el (info-tool-bar-map): Replace underscores in image names
14236 with dashes.
14237
14238 * makefile.w32-in (WINS): Remove toolbar.
14239
14240 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
14241
14242 * tool-bar.el: Move to lisp from toolbar. Now that
14243 toolbar is empty, it should be deleted when folks run "cvs up -P".
14244
14245 2005-10-18 Jay Belanger <belanger@truman.edu>
14246
14247 * calc/calc-store.el (calc-store-into): Get the proper variable name
14248 to display in message.
14249
14250 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
14251
14252 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
14253 expressions display in speedbar for all buffers when debugging.
14254 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
14255
14256 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
14257 (speedbar-insert-button, speedbar-make-button):
14258 Use add-text-properties.
14259 (speedbar-update-localized-contents)
14260 (speedbar-update-directory-contents)
14261 (speedbar-update-special-contents): Use dolist.
14262 (speedbar-buffer-easymenu-definition): Add a menu separator.
14263
14264 2005-10-17 Jason Rumney <jasonr@gnu.org>
14265
14266 * makefile.w32-in: Use $(lisp) consistently.
14267 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
14268 for shell specific generation of mh-autoloads.
14269
14270 2005-10-17 Richard M. Stallman <rms@gnu.org>
14271
14272 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
14273
14274 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
14275
14276 * jit-lock.el (jit-lock-fontify-now):
14277 Move jit-lock-context-unfontify-pos to avoid wasted work.
14278
14279 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
14280
14281 * net/tramp.el (tramp-completion-mode): New defvar. Used in
14282 `tramp-completion-mode' for checking if we are in completion mode.
14283 (tramp-completion-handle-file-name-all-completions): Reorder code
14284 in order to complete for file names only in case there are no
14285 method/user/host completions. This is necessary for cooperation
14286 with ido. Reported by Kim F. Storm <storm@cua.dk>.
14287
14288 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
14289
14290 * longlines.el (longlines-search-forward)
14291 (longlines-search-backward): Match any number of spaces.
14292
14293 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
14294
14295 * diff-mode.el (diff-mode): Doc fix.
14296
14297 2005-10-16 David Reitter <david.reitter@gmail.com>
14298
14299 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
14300 as default on darwin and windows systems.
14301
14302 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
14303
14304 * arc-mode.el (archive-zip-extract): Doc fix.
14305
14306 2005-10-16 Romain Francoise <romain@orebokech.com>
14307
14308 * mouse.el (mouse-1-click-follows-link): Doc fix.
14309
14310 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
14311
14312 * savehist.el: Don't require CL at runtime.
14313 (savehist-xemacs): Remove.
14314 (savehist-coding-system): Use utf-8 if present, regardless of religion.
14315 (savehist-no-conversion): Use (featurep 'xemacs).
14316 (savehist-load): Check existence of start-itimer rather than XEmacs.
14317 Use an idle timer.
14318 (savehist-process-for-saving): Replace use of CL funs `subseq' and
14319 `delete-if-not'.
14320
14321 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
14322
14323 * savehist.el: Newer version.
14324 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
14325 (savehist-last-checksum, savehist-no-conversion): New vars.
14326 (savehist-autosave, savehist-process-for-saving, savehist-printable):
14327 New functions.
14328 (savehist-load, savehist-save): Use them.
14329 (savehist-delimit): Remove.
14330
14331 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
14332
14333 * progmodes/compile.el (compilation-goto-locus): Display the
14334 compilation buffer first and the source buffer second, in case they're
14335 in overlapping frames. Don't raise the compilation frame if it was the
14336 selected window upon entry. Pass the `other-window' arg to
14337 pop-to-buffer.
14338
14339 * info.el (Info-fontify-node): Use dolist.
14340 Change add-text-properties to put-text-property.
14341
14342 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14343
14344 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
14345 bound of search.
14346
14347 2005-10-16 Masatake YAMATO <jet@gyve.org>
14348
14349 * dabbrev.el (dabbrev-completion): Pass the common
14350 prefix substring of completion to `display-completion-list'.
14351
14352 * filecache.el (file-cache-minibuffer-complete)
14353 (file-cache-complete): Ditto.
14354
14355 * tempo.el (tempo-display-completions): Ditto.
14356
14357 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
14358
14359 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
14360
14361 * eshell/em-hist.el (eshell-list-history): Ditto.
14362
14363 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
14364
14365 * mail/mailalias.el (mail-complete): Ditto.
14366
14367 * progmodes/etags.el (complete-tag): Ditto.
14368
14369 * progmodes/make-mode.el (makefile-complete): Ditto.
14370
14371 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
14372
14373 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
14374
14375 * progmodes/pascal.el (pascal-complete-word)
14376 (pascal-show-completions): Ditto.
14377
14378 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
14379
14380 * simple.el (completion-common-substring): New variable.
14381 (completion-setup-function): Use `completion-common-substring'
14382 to put faces.
14383
14384 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14385
14386 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
14387 (x-get-selection, mac-select-convert-to-string): Convert from/to
14388 UTF-16 clipboard data as in native byte order, no BOM.
14389
14390 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
14391
14392 * progmodes/gud.el (gud-tool-bar-map): Rename the images
14393 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
14394 (gud-sentinel): Use speedbar-frame to check for speedbar.
14395
14396 2005-10-15 Richard M. Stallman <rms@gnu.org>
14397
14398 * savehist.el: New file.
14399
14400 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
14401
14402 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
14403 Fix bug in \bf fontification.
14404
14405 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
14406
14407 * pcvs.el (cvs-edit-log-files): New var.
14408 (cvs-mode-edit-log): New arg `file'.
14409 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
14410 Instead force the use of the original file and nothing else.
14411 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
14412 the cvs-minor-wrap-function is set.
14413 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
14414
14415 2005-10-14 Bill Wohler <wohler@newt.com>
14416
14417 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
14418 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
14419 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
14420 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
14421 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
14422 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
14423 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
14424 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
14425 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
14426 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
14427 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
14428 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
14429 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
14430 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
14431 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
14432
14433 * progmodes/gud.el (gud-tool-bar-map): Rename the images
14434 appropriately (for example, gud-break to gud/break).
14435
14436 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
14437
14438 * longlines.el (longlinges-search-function)
14439 (longlines-search-forward, longlines-search-backward): New functions.
14440 (longlines-mode): Set isearch-search-fun-function to
14441 longlinges-search-function.
14442
14443 * mouse.el (mouse-drag-region-1): Handle the case where a
14444 double-click event is bound to an arbitrary function.
14445
14446 2005-10-14 David Ponce <david@dponce.com>
14447
14448 * recentf.el (recentf-track-opened-file)
14449 (recentf-track-closed-file, recentf-update-menu)
14450 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
14451 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
14452 mouse-1-click-follows-link.
14453
14454 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14455
14456 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
14457 Gnome file-manager.png. Suggested by
14458 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
14459
14460 * toolbar/README: Add diropen.xpm.
14461
14462 2005-10-13 Bill Wohler <wohler@newt.com>
14463
14464 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
14465 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
14466
14467 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
14468
14469 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
14470 Don't waste the byte-compiler's time on constant data.
14471
14472 2005-10-13 Kenichi Handa <handa@m17n.org>
14473
14474 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
14475 byte with `escape-glyph' face.
14476
14477 * international/fontset.el (ccl-encode-unicode-font):
14478 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
14479 Handle the case that ucs-mule-to-mule-unicode translates a character to
14480 ASCII (usually for IPA characters).
14481
14482 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14483
14484 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
14485 Don't hide the underline of titles if font-lock-mode is disabled.
14486
14487 2005-10-12 Bill Wohler <wohler@newt.com>
14488
14489 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
14490 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
14491 files in MH-E-SRC have been updated.
14492 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
14493
14494 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14495
14496 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
14497 (mixal-mode-syntax-table): Add \n as end-comment.
14498 (mixal-operation-codes-alist): Immediately initialize to full value.
14499 (mixal-add-operation-code): Remove.
14500 (mixal-describe-operation-code): Make the arg non-optional.
14501 Use the interactive spec instead.
14502 Use mixal-operation-codes-alist rather than mixal-operation-codes.
14503 (mixal-font-lock-keywords): Don't highlight comments here any more.
14504 (mixal-font-lock-syntactic-keywords): New var.
14505 (mixal-mode): Use it. Fix comment-start-skip.
14506
14507 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14508
14509 * startup.el (command-line-x-option-alist): -nb => -nbi
14510
14511 2005-10-12 Kim F. Storm <storm@cua.dk>
14512
14513 * startup.el (fancy-splash-default-action): Discard mouse click in
14514 the splash screen window, as it has no sensible meaning in the
14515 next window to be selected. Fixes error reported by Jan D.
14516
14517 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
14518
14519 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
14520
14521 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14522
14523 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
14524 Try to fix up minor layout issues like indentation, line break, etc...
14525 (mixal-mode-syntax-table): Don't try to specify comment syntax,
14526 because it doesn't work.
14527 (mixal-operation-codes): Add some more codes.
14528 (mixal-font-lock-keywords): Process comments here.
14529 (mixal-mode): mixasm no longer needs -g option.
14530
14531 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
14532
14533 * progmodes/sh-script.el (sh-tmp-file):
14534 Use mktemp -t. Finish support for es and rc shells.
14535
14536 2005-10-11 Jay Belanger <belanger@truman.edu>
14537
14538 * calc/calcalg2.el (calc-integral): With an argument, compute the
14539 definite integral.
14540
14541 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
14542
14543 * mouse.el (mouse-drag-region-1): Don't try to catch a
14544 double-click when doing follow-link (it's overridden anyway).
14545
14546 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
14547
14548 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
14549 (autoload-print-form-outbuf): Add docstring.
14550
14551 2005-10-11 Juri Linkov <juri@jurta.org>
14552
14553 * info.el (Info-mode-menu): Delete menu item "Edit".
14554 (Info-mode): Delete description of Info-edit from docstring,
14555 and rearrange descriptions of Info commands in the order
14556 they are documented in the Info manual.
14557
14558 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14559
14560 * calendar/appt.el (appt-check): Use diary-selective-display var.
14561
14562 2005-10-10 Richard M. Stallman <rms@gnu.org>
14563
14564 * net/newsticker.el (newsticker-start, newsticker-show-news):
14565 Add autoload cookies.
14566
14567 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
14568
14569 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
14570
14571 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
14572
14573 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
14574
14575 2005-10-10 Jay Belanger <belanger@truman.edu>
14576
14577 * calc/calc-arith.el (math-check-known-scalarp)
14578 (math-check-known-matrixp): Check the values of arguments that are
14579 variables.
14580 (math-check-known-square-matrixp): New function.
14581 (math-known-square-matrixp): Use math-check-known-square-matrixp.
14582 (math-super-types): Add sqmatrix type.
14583
14584 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
14585 mode name `square' to `sqmatrix'.
14586
14587 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
14588 mode name `square' to `sqmatrix'.
14589
14590 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
14591
14592 * progmodes/etags.el (select-tags-table-mode): Don't use
14593 selective-display.
14594 (tags-select-tags-table): Pass `button' to the action function.
14595 (select-tags-table): Place the side-info on button properties rather
14596 than in hidden text. Abbreviate file names.
14597 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
14598 (select-tags-table-select): Add `button' argument.
14599 Get side-info from the button property rather than from hidden text.
14600
14601 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
14602
14603 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
14604 (gud-speedbar-buttons): Preserve point if possible.
14605 (gud-sentinel): Restore previous speedbar display type.
14606
14607 * progmodes/gdb-ui.el (gdba): Improve diagram.
14608 (def-gdb-auto-update-handler, gdb-info-locals-handler)
14609 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
14610 Call get-buffer-window once.
14611
14612 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
14613
14614 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
14615 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
14616 (pascal-indent-command): Remove unused var `ind'.
14617 (pascal-indent-case): Remove unused var `oldpos'.
14618 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
14619 since it's now used as a proper minor mode map.
14620 (pascal-outline): Rename to pascal-outline-mode.
14621 (pascal-outline-mode): Use define-minor-mode.
14622 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
14623 selective-display.
14624
14625 2005-10-10 Andreas Schwab <schwab@suse.de>
14626
14627 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
14628 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
14629
14630 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
14631 outside source directory.
14632
14633 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
14634
14635 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
14636 C-x' as a prefix.
14637 (orgtbl-mode-map): Full keymap instead of sparse, because all
14638 `self-insert-command' keys are redefined in this map.
14639 (org-export-as-html): Specify charset for HTML file, by taking it
14640 from the coding system.
14641
14642 2005-10-10 Kenichi Handa <handa@m17n.org>
14643
14644 * textmodes/flyspell.el (flyspell-check-word-p):
14645 If unread-command-events is non-empty, don't call sit-for.
14646
14647 2005-10-09 Richard M. Stallman <rms@gnu.org>
14648
14649 * font-lock.el (font-lock-syntactic-keywords)
14650 (font-lock-keywords): Doc fixes.
14651
14652 * textmodes/flyspell.el (flyspell-external-point-words):
14653 Simplify logic, and don't try to check for consecutive appearances
14654 of one incorrect word.
14655
14656 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
14657
14658 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
14659 separator.
14660
14661 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
14662 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
14663 (gud-expansion-speedbar-buttons): New function.
14664 (gud-speedbar-buttons): Check for gud-comint-buffer.
14665
14666 2005-10-09 Bill Wohler <wohler@newt.com>
14667
14668 * Makefile.in (updates): Add mh-loaddefs dependency.
14669
14670 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
14671
14672 * speedbar.el (speedbar-file-key-map): Fix typo.
14673
14674 2005-10-09 Daniel Brockman <daniel@brockman.se>
14675
14676 * cus-start.el (line-spacing): Add custom spec.
14677
14678 2005-10-09 Romain Francoise <romain@orebokech.com>
14679
14680 * textmodes/ispell.el (ispell-check-version): Fix last change.
14681
14682 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14683
14684 * term/x-win.el: Remove -i, --icon-type from comment.
14685
14686 * startup.el (command-line-x-option-alist): Remove options -i,
14687 -itype, --icon-type, added -nb, --no-bitmap-icon
14688
14689 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
14690
14691 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
14692 instead of :active.
14693
14694 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
14695
14696 * textmodes/ispell.el (ispell-check-version):
14697 Ignore hyphen, and all that follows, in aspell's version text.
14698
14699 2005-10-08 Jay Belanger <belanger@truman.edu>
14700
14701 * calc/calc-arith.el (math-known-square-matrixp): New function.
14702 (math-pow-fancy): Check for matrices before distributing exponent
14703 across products.
14704
14705 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
14706 fullscreen keypad. Suggested by Luc Teirlinck.
14707 (calc-keypad-show-input): Add space for formatting.
14708
14709 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
14710 Add square matrix option.
14711
14712 * calc/calc-poly.el (math-expand-term): Check for matrices instead
14713 of checking calc-matrix-mode when deciding how to expand.
14714
14715 * calc/calc.el (calc-set-mode-line): Add square matrix option.
14716
14717 2005-10-08 Lars Hansen <larsh@soem.dk>
14718
14719 * net/tramp.el (tramp-perl-directory-files-and-attributes):
14720 Add error handling.
14721 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
14722
14723 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
14724
14725 Sync with Tramp 2.0.51.
14726
14727 * net/tramp.el (tramp-handle-set-visited-file-modtime)
14728 (tramp-handle-insert-file-contents, tramp-handle-write-region):
14729 Insert special handling for `last-coding-system-used', again
14730 it still seems to be necessary (unlike stated before).
14731 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
14732 (tramp-password-prompt-regexp): There might be other words before
14733 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
14734 (tramp-chunksize): Improve docstring.
14735 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
14736 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
14737 Christian Joergensen <bugs@razor.dk>.
14738
14739 2005-10-07 Glenn Morris <rgm@gnu.org>
14740
14741 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
14742 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
14743 precision'.
14744
14745 2005-10-07 Romain Francoise <romain@orebokech.com>
14746
14747 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
14748 (ibuffer-do-shell-command-pipe-replace)
14749 (ibuffer-do-shell-command-file, ibuffer-do-eval)
14750 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
14751 (ibuffer-do-revert, ibuffer-do-replace-regexp)
14752 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
14753 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
14754 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
14755 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
14756 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
14757 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
14758 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
14759 Autoload file sans suffix.
14760
14761 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
14762
14763 2005-10-07 David Ponce <david@dponce.com>
14764
14765 * recentf.el (recentf-menu-open-all-flag): New option.
14766 (recentf-digit-shortcut-command-name): New function.
14767 (recentf--shortcuts-keymap): New variable.
14768 (recentf-menu-shortcuts): New variable.
14769 (recentf-make-menu-items): Initialize it. Replace the "More..."
14770 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
14771 (recentf-menu-value-shortcut): New function.
14772 (recentf-make-menu-item): Use it. No more in-lined.
14773 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
14774 (recentf-open-most-recent-file): Rename from
14775 `recentf-open-file-with-key'. Don't depend on key binding.
14776 (recentf-mode-map): New variable.
14777 (recentf-mode): Use it.
14778
14779 2005-10-06 Bill Wohler <wohler@newt.com>
14780
14781 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
14782
14783 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
14784 (MH-E-SRC): New. Used by mh-autoloads.
14785 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
14786 files in MH-E-SRC have been updated.
14787 (compile, recompile, bootstrap): Depend on mh-autoloads.
14788
14789 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
14790
14791 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
14792 gud-break and gud-remove icons when the fringe is not available.
14793
14794 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
14795 Typo.
14796
14797 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
14798
14799 * play/zone.el (zone): Wrap body with save-window-excursion.
14800
14801 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
14802
14803 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
14804 Use the new `list-only' arg to diary-list-entries.
14805
14806 * calendar/diary-lib.el: Use overlays rather than selective-display.
14807 (diary-selective-display): New var.
14808 (diary-header-line-format): Use it.
14809 (diary-list-entries): Add argument `list-only'.
14810 Put the buffer in diary-mode. Don't add \^M at beg and end.
14811 Replace \^M by invisible overlays.
14812 (diary-unhide-everything): Replace \^M by invisible overlays.
14813 (print-diary-entries): Look for overlays rather than \^M.
14814 Add a space to the temp buffer name.
14815 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
14816 Put the buffer in diary-mode.
14817 (list-sexp-diary-entries): Replace \^M by invisible overlays.
14818 (diary-anniversary): Make the year arg optional.
14819 (diary-time-regexp): New const.
14820 (diary-font-lock-keywords): Use it to accept a few more time formats.
14821
14822 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
14823
14824 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
14825
14826 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
14827 Fix bug introduced 2005-07-03: Use (car (last ...))
14828 to faithfully reproduce replaced artist-last.
14829 (artist-set-arrow-points-for-poly): Likewise.
14830 Suggested by Johan Bockg\e,Ae\e(Brd.
14831
14832 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
14833
14834 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
14835 * wid-edit.el (widget):
14836 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
14837 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
14838
14839 2005-10-06 Kenichi Handa <handa@m17n.org>
14840
14841 * international/mule-cmds.el (set-language-environment):
14842 Fix setting up of case-table for unibyte mode.
14843
14844 * simple.el (what-cursor-position): If the character is displayed
14845 by some `display' text property, show that. Don't use
14846 single-key-description for eight-bit characters in multibyte mode.
14847
14848 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
14849
14850 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
14851 (gdb-ann3): Set it.
14852 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
14853 (gdb-info-frames-custom): Use inverse-video for first five
14854 characters of selected frame only.
14855 (gdb-get-frame-number): Select frame even when point is on frame
14856 number.
14857
14858 2005-10-06 Masatake YAMATO <jet@gyve.org>
14859
14860 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
14861 Put `font-lock-function-name-face'.
14862 (gdb-info-frames-custom): Put `font-lock-function-name-face'
14863 and `font-lock-variable-name-face'
14864 (gdb-registers-font-lock-keywords): New font lock keywords definition.
14865 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
14866 (gdb-memory-font-lock-keywords): New font lock keywords definition.
14867 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
14868 (gdb-local-font-lock-keywords): New font lock keywords definition.
14869 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
14870 (gdb-threads-font-lock-keywords): New font lock keywords definition.
14871 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
14872
14873 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
14874
14875 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
14876 (ediff-merge-region-is-non-clash-to-skip): Previously called
14877 ediff-merge-region-is-non-clash.
14878
14879 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
14880 Use insert-buffer-substring.
14881
14882 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
14883 selecting files to patch. Also bug fixes.
14884
14885 * ediff-util.el (ediff-setup): Bug fix.
14886 (ediff-next-difference): Never skip clashes that differ in white
14887 space only.
14888
14889 * ediff-wind.el (ediff-setup-control-frame)
14890 (ediff-destroy-control-frame): Check the menubar feature.
14891
14892 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
14893 (viper-refresh-mode-line): Use make-local-variable to localize
14894 some vars instead of make-variable-buffer-local. Suggested by
14895 Stefan Monnier.
14896
14897 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
14898 (viper-restore-cursor-type, viper-set-insert-cursor-type):
14899 Use make-local-variable instead of make-variable-buffer-local.
14900 Suggested by Stefan Monnier.
14901
14902 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
14903 (viper-comint-mode-hook): Use make-local-variable on
14904 require-final-newline.
14905 (viper-non-hook-settings): Don't use make-variable-buffer-local.
14906
14907 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14908
14909 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
14910 also the second char of a comment-start sequence.
14911 (scheme-sexp-comment-syntax-table): New var.
14912 (lambda, define): Set their scheme-doc-string-elt property.
14913 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
14914 Use lisp-font-lock-syntactic-face-function now that it properly
14915 handles |...| symbols.
14916 (scheme-mode-variables): Set lisp-doc-string-elt-property,
14917 parse-sexp-lookup-properties and font-lock-extra-managed-props.
14918
14919 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
14920 bit from # to |.
14921 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
14922
14923 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
14924 (lisp-doc-string-elt-property): New var.
14925 (lisp-font-lock-syntactic-face-function): Use it.
14926 Rewrite to recognize docstrings even for forms not at toplevel.
14927
14928 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
14929 annotation on the | part of #| rather than on the # part.
14930 (scheme-font-lock-syntactic-face-function): New function, to
14931 distinguish strings from |...| symbols.
14932 (scheme-mode-variables): Use it. Also fix up the font-lock-time
14933 syntax-table so that #|...|# is properly highlighted.
14934
14935 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
14936 Don't mark as docstring the 3rd elem of an unknown toplevel form.
14937
14938 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
14939
14940 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
14941 and C-e.
14942
14943 * emacs-lisp/eldoc.el: Move comments into docstrings.
14944 (eldoc-message-commands): Initialize in its declaration.
14945 Add move-beginning-of-line and move-end-of-line.
14946 (eldoc-add-command, eldoc-add-command-completions)
14947 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
14948
14949 * outline.el (outline-mark-subtree): Activate the mark.
14950
14951 * calendar/appt.el (appt-time-regexp): New var.
14952 (appt-add, appt-make-list): Use it.
14953 (appt-convert-time): Clean up.
14954
14955 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
14956 Don't set any syntax-table property here.
14957 (tex-font-lock-verb): New function. Do it here.
14958 (tex-font-lock-syntactic-keywords): Use it.
14959
14960 2005-10-04 Richard M. Stallman <rms@gnu.org>
14961
14962 * wid-edit.el (widget-file-complete): Get the widget start point
14963 the right way. Default directory to `/' if file has none.
14964
14965 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
14966
14967 * textmodes/flyspell.el (flyspell-mode-on):
14968 Call ispell-maybe-find-aspell-dictionaries.
14969
14970 * textmodes/ispell.el (ispell-word, ispell-region):
14971 Call ispell-maybe-find-aspell-dictionaries.
14972 (ispell-accept-buffer-local-defs):
14973 Don't call ispell-maybe-find-aspell-dictionaries
14974
14975 2005-10-04 Richard M. Stallman <rms@gnu.org>
14976
14977 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
14978
14979 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
14980
14981 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
14982 instead of `fboundp' in order to allow for anonymous functions.
14983
14984 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
14985
14986 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
14987 case the user clicks on the link while another window is selected.
14988 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
14989
14990 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
14991 functionality.
14992 (dframe-help-echo): Save point in case mouse tracking is off.
14993
14994 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
14995
14996 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
14997
14998 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14999
15000 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
15001 not change the global value of those vars.
15002
15003 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
15004 make-local-variable which we do not need any more.
15005
15006 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
15007
15008 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
15009 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
15010 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
15011 (speedbar-path-line): Define obsolete aliases.
15012 (speedbar-line-directory): Doc fix.
15013
15014 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
15015 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
15016 instead of speedbar-line-path.
15017
15018 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15019
15020 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
15021 to nil if dropping on a window. Handle dropping on a minibuffer window
15022 like dropping on a non-window part of Emacs.
15023
15024 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
15025
15026 * net/ange-ftp.el: Use with-current-buffer.
15027 (ange-ftp-insert-directory): Do not follow symlinks any more.
15028
15029 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
15030 Remove interactive spec.
15031
15032 2005-10-03 Kim F. Storm <storm@cua.dk>
15033
15034 * ido.el (ido-mode): Use custom-initialize-set.
15035
15036 2005-10-02 Richard M. Stallman <rms@gnu.org>
15037
15038 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
15039 Use insert-buffer-substring.
15040
15041 * net/tramp.el: Pacify byte compiler warnings in pacification code.
15042 (tramp-handle-file-local-copy): Use insert-buffer-substring.
15043
15044 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
15045
15046 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
15047 in last change.
15048 (ange-ftp-insert-directory): Fix up the search for the case where
15049 `file' is absolute.
15050
15051 2005-10-02 Romain Francoise <romain@orebokech.com>
15052
15053 * progmodes/compile.el (compile-goto-error): Delete extra paren.
15054
15055 2005-10-02 Andreas Schwab <schwab@suse.de>
15056
15057 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
15058 directory component in the session info.
15059
15060 2005-10-01 Richard M. Stallman <rms@gnu.org>
15061
15062 * comint.el (comint-redirect-subvert-readonly): Doc fix.
15063
15064 * simple.el (next-error-internal): New function.
15065
15066 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
15067 (compilation-start): Pass new arg to compilation-buffer-name.
15068 (compile-goto-error): Use next-error-internal.
15069
15070 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
15071
15072 * speedbar.el: Remove RCS tag.
15073 (speedbar-check-read-only): Handle non-existent files.
15074
15075 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
15076
15077 * info.el (Info-speedbar-hierarchy-buttons)
15078 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
15079
15080 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15081
15082 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
15083 Do not match newline.
15084 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
15085 (bibtex-summary): Remove unnecessary save-excursion.
15086 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
15087
15088 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15089
15090 * term/mac-win.el: Add charset info for "iso10646-1".
15091 Modify default fontset to use ATSUI-compatible fonts for some charsets
15092 if available.
15093
15094 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
15095
15096 * speedbar.el: Re-apply arch tag.
15097 (speedbar-version): Rename to version 1.0. Suggested by Eric
15098 M. Ludlam.
15099 Reapply two changes from Emacs CVS' version of speedbar lost
15100 during the merge:
15101 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
15102 (speedbar-frame-parameters): Improve customize type.
15103
15104 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
15105
15106 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
15107 (ange-ftp-file-directory-p): Fix the symlink case.
15108 (ange-ftp-insert-directory): When listing a single file, get a list of
15109 the parent buffer and extract the relevant line. Inspired from a patch
15110 by Katsumi Yamaoka <yamaoka@jpl.org>.
15111 (ange-ftp-file-name-sans-versions): Simplify.
15112
15113 2005-09-30 Bill Wohler <wohler@newt.com>
15114
15115 Move MH-E image files from toolbar and mail directories into
15116 etc/images.
15117
15118 * mail/reply2.*: Move to etc/images/mail/reply*.
15119
15120 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
15121 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
15122 etc/images.
15123
15124 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
15125 * toolbar/reply*: Move to etc/images/mail.
15126
15127 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
15128
15129 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
15130
15131 * speedbar.el: New version 1.0pre3.
15132
15133 Frame management code (including timer, and mouse click specifics)
15134 moved to dframe.el:
15135 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
15136 (speedbar-timer): Removed. Use dframe-timer.
15137 (speedbar-close-frame): Removed. Use dframe-close-frame.
15138 (speedbar-activity-change-focus-flag): Removed. Use
15139 dframe-activity-change-focus-flag.
15140 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
15141 dframe-update-speed.
15142
15143 (speedbar-current-frame): New macro. Use this instead of the
15144 variable speedbar-frame.
15145
15146 (speedbar-use-images, speedbar-expand-image-button-alist)
15147 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
15148
15149 (speedbar-find-image-on-load-path): Removed. Replaced by
15150 defezimage in ezimage.el.
15151 (speedbar-expand-image-button-alist): Removed. Replaced by
15152 ezimage-expand-image-button-alist in ezimage.el.
15153
15154 (speedbar-ignored-directory-regexp)
15155 (speedbar-add-ignored-directory-regexp)
15156 (speedbar-ignored-directory-expressions)
15157 (speedbar-line-directory, speedbar-buffers-line-directory)
15158 (speedbar-directory-line, speedbar-buffers-line-directory):
15159 Renamed, replacing `path' with `directory'.
15160
15161 (speedbar-create-directory, speedbar-expand-line-descendants)
15162 (speedbar-toggle-line-expansion)
15163 (speedbar-contract-line-descendants): New commands.
15164
15165 (speedbar-query-confirmation-method, speedbar-select-frame-method)
15166 (speedbar-use-tool-tips-flag): New options.
15167
15168 (speedbar-check-read-only, speedbar-require-version)
15169 (speedbar-insert-separator, speedbar-buffers-tail-notes)
15170 (speedbar-handle-delete-frame, speedbar-try-completion)
15171 (speedbar-update-localized-contents): New functions.
15172
15173 (speedbar-incompatible-version, speedbar-ro-to-do-point)
15174 (speedbar-object-read-only-indicator): New variables.
15175
15176 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
15177 New hooks.
15178
15179 (speedbar-separator-face): New face.
15180
15181 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
15182 (speedbar-ignored-modes): Add fundamental-mode.
15183 (speedbar-directory-unshown-regexp): Add . directories.
15184
15185 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
15186 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
15187 `]' for full expand/close.
15188 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
15189
15190 (speedbar-check-vc): Support hidden files.
15191 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
15192 (speedbar-this-file-in-vc): Use vc-state if available. If VC
15193 state is nil, it is not checked out.
15194
15195 (speedbar-line-text, speedbar-line-token): Support expand buttons
15196 with no text.
15197 (speedbar-refresh): Universal argument acts as power-click.
15198 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
15199 that buffer to get variable values.
15200
15201 And many other bugfixes.
15202
15203 * dframe.el, ezimage.el, sb-image.el: New files.
15204
15205 * sb-*.xpm: Remove files. New image files installed into
15206 etc/images/ezimage.
15207
15208 2005-09-30 Kenichi Handa <handa@m17n.org>
15209
15210 * ps-mule.el (ps-mule-show-warning): If a character is in
15211 ps-print-translation-table, don't treat it as non-printable.
15212
15213 2005-09-30 David Ponce <david@dponce.com>
15214
15215 * tree-widget.el (tree-widget-themes-load-path): New variable.
15216 (tree-widget-themes-directory): Doc fix.
15217 (tree-widget-image-formats) [Emacs]: Doc fix.
15218 (tree-widget--locate-sub-directory): New function.
15219 (tree-widget-themes-directory): Use it.
15220
15221 * recentf.el (recentf-filename-handlers): Rename from
15222 `recentf-filename-handler'. Allow a list of functions.
15223 (recentf-menu-items-for-commands): Fix :help strings.
15224 (recentf-apply-filename-handlers): New function.
15225 (recentf-expand-file-name): Use it.
15226 (recentf-cleanup): Remove duplicates too.
15227
15228 2005-09-29 Juri Linkov <juri@jurta.org>
15229
15230 * faces.el: Rearrange face definitions to be in the same order as
15231 their face descriptions in "(emacs)Standard Faces".
15232
15233 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
15234
15235 * tooltip.el (tooltip): Add group `basic-faces'.
15236
15237 * buff-menu.el (Buffer-menu-buffer): Remove group
15238 `font-lock-highlighting-faces'.
15239
15240 * progmodes/compile.el (compilation-error, compilation-warning)
15241 (compilation-info, compilation-line-number, compilation-column-number):
15242 Change group from `font-lock-highlighting-faces' to `compilation'.
15243
15244 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
15245 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
15246 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
15247 (vhdl-font-lock-reserved-words-face)
15248 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
15249 `font-lock-highlighting-faces'.
15250
15251 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
15252
15253 2005-09-28 Kim F. Storm <storm@cua.dk>
15254
15255 * emulation/cua-base.el: Set CUA move property on additional commands:
15256 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
15257 forward-sexp, backward-sexp, forward-list, backward-list.
15258
15259 2005-09-28 Romain Francoise <romain@orebokech.com>
15260
15261 * comint.el (comint-show-output): Really set point at the
15262 beginning of the output when not using `comint-use-prompt-regexp'.
15263
15264 2005-09-27 Jay Belanger <belanger@truman.edu>
15265
15266 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
15267 in TeX mode.
15268
15269 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
15270
15271 * textmodes/org.el (org-table-sum): Fix format string.
15272
15273 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
15274 Quote face names.
15275
15276 2005-09-26 Romain Francoise <romain@orebokech.com>
15277
15278 * isearch.el (isearch-forward-regexp): Close doc string.
15279
15280 2005-09-25 Richard M. Stallman <rms@gnu.org>
15281
15282 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
15283
15284 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
15285
15286 * progmodes/compile.el (compilation-error-properties):
15287 When getting the file from the previous error message,
15288 correctly decode the new data format.
15289
15290 * progmodes/cc-cmds.el (c-electric-paren):
15291 Call old-blink-paren only for close-paren.
15292
15293 2005-09-24 Andreas Schwab <schwab@suse.de>
15294
15295 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
15296 condition.
15297
15298 2005-09-25 Romain Francoise <romain@orebokech.com>
15299
15300 * dired-aux.el (dired-copy-file-recursive):
15301 * dired.el (dired-delete-file):
15302 * ediff-mult.el (ediff-dir-diff-copy-file):
15303 * ediff-util.el (ediff-test-save-region):
15304 * forms.el (forms-mode):
15305 * ido.el (ido-file-internal, ido-delete-file-at-head):
15306 * log-edit.el (log-edit-done):
15307 * ses.el (ses-yank-resize):
15308 * play/gomoku.el (gomoku-human-plays, gomoku)
15309 (gomoku-human-resigns, gomoku-prompt-for-other-game)
15310 (gomoku-offer-a-draw):
15311 * play/landmark.el (lm-human-resigns, lm):
15312 * net/eudcb-ldap.el (eudc-ldap-check-base):
15313 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
15314 * progmodes/ebrowse.el (ebrowse-find-pattern):
15315 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
15316 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
15317 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
15318
15319 * vc.el (vc-delete-file):
15320 * play/gomoku.el (gomoku-terminate-game, gomoku)
15321 (gomoku-prompt-for-move, gomoku-human-takes-back):
15322 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
15323 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
15324
15325 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
15326
15327 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
15328 color rxvt terminals by using the code xterm.el used to use before
15329 2005-04-09 in order to match the colors used by rxvt.
15330
15331 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
15332
15333 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
15334 colors rxvt-unicode terminals by using the same code as xterm.el.
15335
15336 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
15337
15338 * textmodes/tex-mode.el (tex-font-lock-append-prop)
15339 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
15340 new symbol used for the tex-verbatim face.
15341
15342 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
15343
15344 * woman.el (woman-file-name):
15345 * wid-edit.el (widget-file-prompt-value)
15346 (widget-coding-system-prompt-value):
15347 * w32-fns.el (set-w32-system-coding-system):
15348 * vc.el (vc-version-diff, vc-annotate):
15349 * textmodes/reftex-auc.el (reftex-arg-cite)
15350 (reftex-arg-index-tag):
15351 * textmodes/refer.el (refer-get-bib-files):
15352 * textmodes/artist.el (artist-figlet-choose-font):
15353 * terminal.el (terminal-emulator):
15354 * replace.el (occur-read-primary-args):
15355 * rect.el (string-rectangle, string-insert-rectangle):
15356 * ps-print.el (ps-print-preprint):
15357 * progmodes/pascal.el (pascal-goto-defun):
15358 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
15359 * progmodes/compile.el (compilation-find-file):
15360 * printing.el (pr-interactive-n-up):
15361 * play/animate.el (animate-birthday-present):
15362 * net/rcompile.el (remote-compile):
15363 * man.el (man, Man-goto-section, Man-follow-manual-reference):
15364 * mail/rmailsum.el (rmail-summary-search-backward)
15365 (rmail-summary-search):
15366 * mail/rmailout.el (rmail-output-read-rmail-file-name)
15367 (rmail-output-read-file-name):
15368 * mail/rmail.el (rmail-search, rmail-search-backwards):
15369 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
15370 * locate.el (locate):
15371 * international/quail.el (quail-show-keyboard-layout):
15372 * international/mule.el (set-buffer-file-coding-system)
15373 (revert-buffer-with-coding-system, set-file-name-coding-system)
15374 (set-terminal-coding-system, set-keyboard-coding-system)
15375 (set-next-selection-coding-system):
15376 * international/mule-diag.el (describe-coding-system)
15377 (describe-font, describe-fontset):
15378 * international/mule-cmds.el (universal-coding-system-argument)
15379 (search-unencodable-char, describe-input-method)
15380 (set-language-environment, describe-language-environment):
15381 * international/codepage.el (codepage-setup):
15382 * international/code-pages.el (codepage-setup):
15383 * info.el (Info-search, Info-follow-reference)
15384 (Info-search-backward):
15385 * emacs-lisp/advice.el (ad-read-advised-function)
15386 (ad-read-advice-class, ad-clear-cache, ad-activate)
15387 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
15388 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
15389 (ad-read-regexp):
15390 * ediff-util.el (ediff-toggle-regexp-match):
15391 * ediff-ptch.el (ediff-prompt-for-patch-file):
15392 * dired-aux.el (dired-diff):
15393 * diff.el (diff):
15394 * cus-edit.el (custom-variable-prompt):
15395 * calendar/timeclock.el (timeclock-ask-for-project):
15396 * calc/calcalg3.el (calc-get-fit-variables):
15397 * calc/calc-store.el (calc-edit-variable)
15398 (calc-permanent-variable):
15399 * vc-mcvs.el (vc-mcvs-register):
15400 * shadowfile.el (shadow-define-literal-group):
15401 * woman.el (woman-file-name):
15402 * vc.el (vc-version-diff, vc-merge):
15403 * textmodes/reftex-index.el (reftex-index-complete-tag):
15404 * format.el (format-decode-buffer, format-decode-region):
15405 * emulation/viper-cmd.el (viper-read-string-with-history):
15406 * emacs-lisp/debug.el (cancel-debug-on-entry):
15407 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
15408 * ediff.el (ediff-merge-revisions)
15409 (ediff-merge-revisions-with-ancestor, ediff-revision):
15410 * completion.el (interactive-completion-string-reader):
15411 * calc/calc-prog.el (calc-user-define-formula):
15412 Follow convention for reading with the minibuffer.
15413
15414 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
15415
15416 * progmodes/python.el (python-describe-symbol): Add globals() and
15417 locals() to the arguments of emacs.ehelp.
15418
15419 2005-09-24 Magnus Henoch <mange@freemail.hu>
15420
15421 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
15422 New function, code extracted from ispell-valid-dictionary-list.
15423 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
15424 Call it.
15425
15426 2005-09-24 Eli Zaretskii <eliz@gnu.org>
15427
15428 * subr.el (version-regexp-alist): Extend valid syntax for version
15429 strings: allow any of the characters -,_,+ to separate the
15430 alpha/beta/rc part from the version part. Doc fix.
15431 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
15432
15433 2005-09-23 David Reitter <david.reitter@gmail.com>
15434
15435 * mail/mailclient.el: New file.
15436
15437 2005-09-23 Richard M. Stallman <rms@gnu.org>
15438
15439 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
15440 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
15441 Doc fixes.
15442
15443 * progmodes/cc-mode.el (c-font-lock-init):
15444 Specify font-lock-lines-before.
15445
15446 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
15447
15448 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
15449 whole conflict.
15450
15451 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
15452
15453 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
15454 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
15455 of `remap' feature when available. Additional key bindings for
15456 better tty support.
15457 (org-mode-restart, org-force-self-insert): New commands.
15458 (org-time-stamp-inactive): New command.
15459 (org-remap): New function.
15460 (org-table-auto-blank-field, org-level-color-stars-only): New options.
15461 (org-enable-fixed-width-editor): Move to `org-structure'
15462 customization group.
15463 (org-self-insert-command, orgtbl-self-insert-command): Modify to
15464 blank field after field motion commands.
15465
15466 2005-09-23 Kenichi Handa <handa@m17n.org>
15467
15468 * international/mule-cmds.el (set-language-environment):
15469 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
15470 have to call utf-translate-cjk-load-tables.
15471
15472 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
15473
15474 * mouse.el (mouse-move-drag-overlay): Fix last change.
15475
15476 2005-09-22 David Ponce <david@dponce.com>
15477
15478 * tree-widget.el (tree-widget-value-create): Fix previous change.
15479
15480 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
15481
15482 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
15483
15484 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
15485
15486 * mouse.el (mouse-move-drag-overlay): New function.
15487 (mouse-drag-region-1): Use it.
15488 Try to simplify a bit the state handling. Handle clicks on links
15489 inside intangible areas.
15490 (mouse-save-then-kill): Minor simplification.
15491 (mouse-secondary-overlay): Make it always non-nil instead of
15492 recreating it each time.
15493 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
15494 (mouse-kill-secondary, mouse-secondary-save-then-kill):
15495 Simplify accordingly.
15496
15497 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
15498
15499 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
15500
15501 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
15502
15503 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
15504 (ediff-file-name-sans-prefix): Treat nil as an empty string.
15505 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
15506 to patch.
15507
15508 * ediff-util.el: Use insert-buffer-substring.
15509
15510 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
15511
15512 * emulation/viper-cmd.el (viper-change-state): Don't move over the
15513 field boundaries in the minibuffer.
15514 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
15515 (viper-minibuffer-post-command-hook): New hook.
15516 (viper-line): Don't move cursor at bolp.
15517
15518 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
15519
15520 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
15521 avoid compiler warnings.
15522
15523 * emulation/viper-macs.el (ex-map): Better messages.
15524
15525 * emulation/viper-utils.el (viper-beginning-of-field): New function.
15526
15527 * emulation/viper.el: Replace make-variable-buffer-local with
15528 viper-make-variable-buffer-local everywhere, to avoid warnings.
15529
15530 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15531
15532 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
15533 Delete unused var `old-selected-window'.
15534 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
15535 (mouse-drag-secondary): Delete unused var `start-frame'.
15536
15537 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
15538
15539 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
15540
15541 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15542
15543 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
15544 Re-indent within 80 columns. Use inhibit-read-only.
15545
15546 2005-09-19 Romain Francoise <romain@orebokech.com>
15547
15548 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
15549
15550 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15551
15552 * font-lock.el (font-lock-default-fontify-region): Don't add a line
15553 unconditionally, since the after-change-function already did it.
15554
15555 2005-09-19 Miles Bader <miles@gnu.org>
15556
15557 * net/newsticker.el: Get rid of CVS keyword.
15558
15559 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
15560
15561 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
15562 The prompt is formatted later.
15563
15564 2005-09-19 David Ponce <david@dponce.com>
15565
15566 * tree-widget.el (tree-widget-value-create): Save the converted
15567 tree :node widget.
15568
15569 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
15570
15571 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
15572 variable `message'.
15573
15574 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
15575
15576 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
15577 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
15578 <slawomir.nowaczyk.847@student.lu.se>.
15579
15580 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
15581
15582 * image.el (image-load-path): Use symbol `data-directory' instead
15583 of its value, for backward compatibility with packages that bind
15584 it during `find-image'. Suggested by Katsumi Yamaoka.
15585 (image-search-load-path): Handle symbols whose values are strings.
15586
15587 2005-09-18 Romain Francoise <romain@orebokech.com>
15588
15589 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
15590 with-current-buffer form in save-excursion.
15591
15592 2005-09-18 Deepak Goel <deego@gnufans.org>
15593
15594 * apropos.el (apropos-command): Fix `message' call: first arg
15595 should be a format spec. In this and all other cases that appear
15596 below and elsewhere in the source code, I made a change only when
15597 two conditions were satisfied: [1] I can think of a possibility
15598 that the arguments would cause an error, for example, the code in
15599 question relies on external variables such as filenames. [2] I
15600 was sure that the arg to `message' could not have been nil in the code.
15601
15602 * textmodes/tildify.el (tildify-region): Ditto.
15603
15604 * textmodes/reftex-index.el (reftex-index-change-entry)
15605 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
15606 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
15607 * textmodes/org.el (org-complete, org-deadline, org-schedule)
15608 (org-priority, org-table-sum):
15609 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
15610 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
15611 (flyspell-word, flyspell-display-next-corrections):
15612 * textmodes/bibtex.el (bibtex-print-help-message):
15613 * textmodes/artist.el (artist-key-set-point-poly):
15614 * term/mac-win.el (mac-services-insert-text):
15615 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
15616 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
15617 (vhdl-port-paste-testbench, vhdl-compose-new-component)
15618 (vhdl-compose-configuration):
15619 * progmodes/sh-script.el (sh-blink, sh-show-indent)
15620 (sh-set-indent, sh-learn-line-indent):
15621 * progmodes/ps-mode.el (ps-mode-target-column):
15622 * progmodes/idlwave.el (idlwave-make-tags)
15623 (idlwave-scan-library-catalogs):
15624 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
15625 * progmodes/gud.el (gud-jdb-analyze-source):
15626 * progmodes/flymake.el (flymake-log):
15627 * progmodes/ebnf2ps.el (ebnf-generate-region):
15628 * progmodes/cmacexp.el (c-macro-expansion):
15629 * progmodes/ada-xref.el (ada-treat-cmd-string):
15630 * progmodes/ada-mode.el (ada-create-case-exception-substring)
15631 (ada-justified-indent-current, ada-batch-reformat):
15632 * play/zone.el (zone):
15633 * play/landmark.el (lm-move):
15634 * play/decipher.el (decipher-show-alphabet):
15635 * net/newsticker.el (newsticker--display-jump)
15636 (newsticker--display-scroll):
15637 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
15638 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
15639 * mail/feedmail.el (feedmail-dump-message-to-queue):
15640 * eshell/esh-proc.el (eshell-remove-process-entry):
15641 * emulation/ws-mode.el (ws-last-error):
15642 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
15643 (viper-record-kbd-macro):
15644 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
15645 * emacs-lisp/lisp-mnt.el (lm-report-bug):
15646 * emacs-lisp/find-func.el (find-function-noselect):
15647 * calendar/timeclock.el (timeclock-status-string)
15648 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
15649 (timeclock-when-to-leave-string):
15650 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
15651 * calc/calc-units.el (calc-enter-units-table):
15652 * calc/calc-mode.el (calc-mode-record-mode):
15653 * woman.el (woman-mini-help):
15654 * wdired.el (wdired-change-to-wdired-mode):
15655 * vc.el (vc-retrieve-snapshot):
15656 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
15657 * startup.el (display-startup-echo-area-message):
15658 * simple.el (set-goal-column):
15659 * ses.el (ses-command-hook, ses-recalculate-cell):
15660 * server.el (server-process-filter):
15661 * printing.el (pr-interface-txt-print, pr-interface-printify)
15662 (pr-interface-ps):
15663 * pcvs.el (cvs-help):
15664 * log-edit.el (log-edit, log-edit-mode-help):
15665 * iswitchb.el (iswitchb-possible-new-buffer):
15666 * isearch.el (isearch-edit-string):
15667 * image-mode.el (image-mode, image-minor-mode):
15668 * ibuf-macs.el (define-ibuffer-filter):
15669 * hi-lock.el (hi-lock-find-patterns):
15670 * files.el (toggle-read-only):
15671 * ediff-util.el (ediff-copy-diff)
15672 (ediff-write-merge-buffer-and-maybe-kill):
15673 * echistory.el (Electric-history-undefined):
15674 * dnd.el (dnd-insert-text):
15675 * dired-aux.el (dired-query):
15676 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
15677 * bookmark.el (bookmark-bmenu-locate):
15678 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
15679 Fix `message' calls to ensure first arg is a format string.
15680 The change was made only when these two conditions were satisfied:
15681 [1] when there is a possibility that the arguments would cause an error
15682 for example, if the code in question relies on external variables
15683 such as filenames, and
15684 [2] if the arg to `message' could not have been nil in the code.
15685
15686 * pcomplete.el (pcomplete--help): Fix `message' format spec.
15687 Not having a %s would be weird, though not technically wrong.
15688
15689 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15690
15691 * term/mac-win.el (mac-add-charset-info): Doc fix.
15692
15693 2005-09-17 Romain Francoise <romain@orebokech.com>
15694
15695 * shell.el (shell-resync-dirs): Handle echoing processes more
15696 reliably. Don't insert resync command if `comint-process-echoes'
15697 is non-nil.
15698
15699 2005-09-17 Magnus Henoch <mange@freemail.hu>
15700
15701 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
15702 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
15703 aspell versions >= 0.60.
15704 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
15705 only if ispell-aspell-supports-utf8 is non-nil.
15706
15707 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
15708
15709 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
15710 buffer-local value to lisp-indent-function.
15711
15712 2005-09-17 Milan Zamazal <pdm@zamazal.org>
15713
15714 * progmodes/glasses.el (glasses-make-readable): If
15715 glasses-separator differs from underscore, put appropriate
15716 overlays over underscore characters.
15717 (glasses-convert-to-unreadable): If glasses-separator differs from
15718 underscore, try to convert glasses-separator characters to
15719 underscores.
15720
15721 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15722
15723 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
15724 Use with-syntax-table and dolist.
15725
15726 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
15727
15728 * textmodes/reftex-auc.el:
15729 * textmodes/reftex-cite.el:
15730 * textmodes/reftex-dcr.el:
15731 * textmodes/reftex-global.el:
15732 * textmodes/reftex-parse.el:
15733 * textmodes/reftex-ref.el:
15734 * textmodes/reftex-sel.el:
15735 * textmodes/reftex-toc.el:
15736 * textmodes/reftex-vars.el:
15737 * textmodes/reftex.el: Small changes to remove compiler warnings.
15738
15739 * textmodes/reftex-index.el: Likewise.
15740 (reftex-query-index-phrase): More efficient use of markers.
15741
15742 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
15743
15744 * image.el (image-load-path): New variable.
15745 (image-search-load-path): New function.
15746 (find-image): Search for images in `image-load-path'.
15747
15748 2005-09-15 Richard M. Stallman <rms@gnu.org>
15749
15750 * follow.el: Change Maintainer field.
15751
15752 2005-09-15 David Ponce <david@dponce.com>
15753
15754 * recentf.el (recentf-save-file-modes): New option.
15755 (recentf-save-list): Use it.
15756
15757 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
15758
15759 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
15760 (mode-line-mule-info, mode-line-modified): Move bindings from
15761 mouse-3 to mouse-1.
15762
15763 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
15764
15765 * simple.el (sendmail-user-agent-compose): Revert last change.
15766
15767 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
15768
15769 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
15770 Use with-current-buffer.
15771 (ange-ftp-gwp-start): Remove unused var `gw-user'.
15772 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
15773 (ange-ftp-insert-directory): Remove unused var `short'.
15774 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
15775
15776 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
15777 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
15778
15779 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
15780 (check-calendar-holidays, diary-list-entries): Autoload.
15781 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
15782 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
15783
15784 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
15785 which mistakenly removed a call to display-buffer.
15786
15787 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
15788
15789 * obsolete/iso-insert.el: Move to obsolete/ from international/.
15790
15791 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
15792
15793 * progmodes/hideshow.el
15794 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
15795 (hs-allow-nesting): New user var.
15796 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
15797 (hs-hide-block-at-point): When nesting allowed,
15798 if there is already an overlay in place, delete it.
15799 (hs-safety-is-job-n): Delete func; remove call sites.
15800 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
15801 (hs-overlay-at): New func.
15802 (hs-already-hidden-p, hs-show-block): Use it.
15803 (hs-hide-all): Don't pre-clean if nesting allowed.
15804 (hs-show-all): Temporarily disallow
15805 nesting around call to `hs-discard-overlays'.
15806
15807 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
15808
15809 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
15810 Delete unused local var.
15811
15812 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
15813
15814 * help-fns.el (describe-categories): "?\ " -> "?\s".
15815 (help-do-arg-highlight): Recognize also ARG-n, as in
15816 `move-to-left-margin' (ARG+n is already recognized). Simplify.
15817
15818 * international/codepage.el (dos-unsupported-char-glyph):
15819 * net/newsticker.el (tool-bar-map, w3-mode-map)
15820 (w3m-minor-mode-map):
15821 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
15822 (ent-alist):
15823 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
15824
15825 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
15826
15827 * custom.el (custom-push-theme): Handle the case where a symbol is
15828 bound but face properties have not yet been assigned.
15829
15830 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
15831 Fix behavior if noerase is `t' and there is no mail buffer.
15832
15833 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
15834 if `continue' is nil, rather than signal an error.
15835
15836 2005-09-12 Richard M. Stallman <rms@gnu.org>
15837
15838 * font-lock.el (font-lock-keywords): Add autoload.
15839
15840 * help-fns.el (describe-variable): Rearrange to put source link
15841 in a predictable place.
15842
15843 * net/newsticker.el: New file.
15844
15845 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15846
15847 * calendar/calendar.el (calendar-for-loop): Add edebug info.
15848 (calendar-basic-setup): Use the new nil arg.
15849 (number-of-diary-entries): Move to diary-lib.el.
15850
15851 * calendar/diary-lib.el: Use with-current-buffer, match-string.
15852 (diary-list-entries): Use with-syntax-table and dolist.
15853 Rename from list-diary-entries.
15854 Use number-of-diary-entries if `number' is nil.
15855 (diary, diary-view-entries): Use this new name and new nil arg value.
15856 (number-of-diary-entries): Move from calendar.el.
15857 (diary-unhide-everything): New function.
15858 (include-other-diary-files, fancy-diary-display)
15859 (diary-show-all-entries, make-diary-entry): Use it.
15860 (diary-mail-entries): Use buffer-string.
15861 (mark-diary-entries): Fix long standing paren typo.
15862 (diary-sexp-entry): Use count-lines.
15863 (make-diary-entry): Avoid `previous-line'.
15864 (diary-mode-map): New var.
15865 (diary-mode): Redraw cal after saving. Setup header-line.
15866 (fancy-diary-display-mode): Use local-set-key.
15867
15868 * startup.el (command-line): Try calling various terminal-init-foo-bar
15869 functions by stripping hyphenated suffixes from $TERM.
15870
15871 * files.el (normal-mode): Check boundness of font-lock-keywords.
15872
15873 2005-09-12 Richard M. Stallman <rms@gnu.org>
15874
15875 * progmodes/compile.el: Don't decide a file's directory
15876 until the user actually tries to go there.
15877 (compilation-next-error-function):
15878 Pass compilation-find-file the directory from the file-struct.
15879 (compilation-internal-error-properties): Separate local FILE-STRUCT
15880 from FILE. Doc the args better. Rename arg FMT to FMTS.
15881 (compilation-find-file): Arg DIR renamed to DIRECTORY.
15882 Expand it, and if nil, use default-directory.
15883 (compilation-get-file-structure): Don't mix specified directory
15884 with default directory. Put specified directory into
15885 file-struct. Don't make the file name absolute.
15886
15887 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
15888 (compile-command): Add autoload.
15889 (compilation-disable-input): Add autoload.
15890
15891 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
15892
15893 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
15894 strings of the variables it can override.
15895 (time-stamp): New (as yet undocumented) time-stamp-format escapes
15896 %Q and %q, for fully-qualified domain name and unqualified host name.
15897
15898 2005-09-11 Kim F. Storm <storm@cua.dk>
15899
15900 * emacs-lisp/authors.el (authors-aliases): Update list.
15901 (authors-fixed-entries): Update mldrag.el entry.
15902
15903 2005-09-10 Alan Mackenzie <acm@muc.de>
15904
15905 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
15906 from the region narrowed to.
15907
15908 2005-09-10 Magnus Henoch <mange@freemail.hu>
15909
15910 * textmodes/ispell.el (ispell-check-version): Signal an error if
15911 aspell version is less than 0.60.
15912
15913 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
15914
15915 * progmodes/octave-inf.el (inferior-octave-startup):
15916 Resync current dir at the end.
15917
15918 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
15919
15920 * woman.el (woman-topic-at-point-default):
15921 Rename to woman-use-topic-at-point-default.
15922 (woman-topic-at-point): Rename to woman-use-topic-at-point.
15923 (woman-file-name): Reflect renames above. Automatically use the
15924 word at point as topic if woman-use-topic-at-point is non-nil.
15925 Otherwise offer it as default but don't insert it in the
15926 minibuffer. Also use `test-completion' instead of `assoc' as
15927 suggested by Stefan Monnier.
15928
15929 2005-09-10 Andre Spiegel <spiegel@gnu.org>
15930
15931 * vc.el (vc-directory, vc-update-change-log): Throw an error on
15932 the attempt to do it over Tramp. This is not yet supported.
15933
15934 2005-09-10 Eli Zaretskii <eliz@gnu.org>
15935
15936 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
15937 (menu-bar-non-minibuffer-window-p): New functions.
15938 ("Split Window", "Save As..."): Use them.
15939 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
15940 ("Print Buffer", "Truncate Long Lines in this Buffer"):
15941 Use menu-bar-menu-frame-live-and-visible-p.
15942 ("Save Buffer", "Insert File", "Open Directory...")
15943 ("Open File...", "Visit New File..."):
15944 Use menu-bar-non-minibuffer-window-p.
15945 (kill-this-buffer-enabled-p, dired <menu-enable>):
15946 Use menu-bar-non-minibuffer-window-p.
15947
15948 2005-09-09 Eli Zaretskii <eliz@gnu.org>
15949
15950 * cus-start.el (all): Don't complain about fringe-related
15951 built-ins if fringes are not supported. Ditto about
15952 selection-related built-ins. Fix the test for GTK-related built-ins.
15953
15954 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
15955 ("Postscript Print Buffer", "Print Region", "Save As...")
15956 ("Save", "Insert File...", "Open Directory...")
15957 ("Open File...", "Visit New File..."")
15958 ("Truncate Long Lines in this Buffer"): Don't look at
15959 menu-updating-frame if this display does not support multiple frames.
15960
15961 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
15962
15963 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
15964
15965 2005-09-09 Emilio Lopes <eclig@gmx.net>
15966
15967 * woman.el: Format- and whitespace-related changes.
15968
15969 2005-09-09 Eli Zaretskii <eliz@gnu.org>
15970
15971 * woman.el: Fix my email address.
15972
15973 2005-09-08 Richard M. Stallman <rms@gnu.org>
15974
15975 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
15976 (sh-mode): Locally set skeleton-pair-default-alist.
15977
15978 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
15979
15980 * progmodes/flymake.el: Require `compile' unconditionally.
15981
15982 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
15983
15984 * woman.el (woman-file-name): Provide a default, not initial input.
15985
15986 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
15987
15988 * font-lock.el (font-lock-support-mode): Doc fix.
15989
15990 * descr-text.el (describe-property-list): Handle non-symbol prop names.
15991
15992 2005-09-08 Richard M. Stallman <rms@gnu.org>
15993
15994 * simple.el (blink-matching-open): Get rid of text props from
15995 the string shown in echo area. Don't permanently set point.
15996 Some rearrangements.
15997
15998 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
15999
16000 * recentf.el (recentf-filename-handler): Add custom choice
16001 `abbreviate-file-name'.
16002
16003 * msb.el (msb--very-many-menus): Fix typo.
16004
16005 * disp-table.el (standard-display-european): Don't set
16006 enable-multibyte-characters to nil.
16007
16008 2005-09-08 David Ponce <david@dponce.com>
16009
16010 * recentf.el (recentf-show-file-shortcuts-flag): New option.
16011 (recentf-expand-file-name): Doc fix.
16012 (recentf-dialog-mode-map): Define digit shortcuts.
16013 (recentf--files-with-key): New variable.
16014 (recentf-show-digit-shortcut-filter): New function.
16015 (recentf-open-files-items): New function.
16016 (recentf-open-files): Use it.
16017 (recentf-open-file-with-key): New command.
16018
16019 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
16020
16021 * buff-menu.el (Buffer-menu-sort-by-column): New function.
16022 Suggested by Kim F. Storm.
16023 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
16024 (Buffer-menu-make-sort-button): Use global keymap.
16025
16026 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
16027
16028 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
16029 (Man-getpage-in-background-advice): Remove defadvice; it isn't
16030 necessary any longer with the remapped command.
16031 (Man-bgproc-sentinel-advice): Remove defadvice which counts
16032 formatting time only.
16033
16034 * net/tramp.el (tramp-action-password)
16035 (tramp-multi-action-password): Compile the password prompt from
16036 `method', `user' and `host'. Sometimes it isn't obvious which
16037 password to enter, for example with remote files offered by
16038 recentf.el, or with multiple steps. Suggested by Robert Marshall
16039 <robert@chezmarshall.freeserve.co.uk>.
16040
16041 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
16042
16043 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
16044 Fix regexp for when "s///" is at the beginning of line.
16045
16046 2005-09-07 Jay Belanger <belanger@truman.edu>
16047
16048 * calc/calc-poly.el (math-expand-term): Multiply out any powers
16049 when in matrix mode.
16050
16051 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
16052
16053 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
16054 non-anonymous functions.
16055
16056 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
16057
16058 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
16059 when using a header line. Otherwise, use mouse-1-click-follows-link.
16060
16061 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
16062 can't be moved; don't signal an error.
16063
16064 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
16065
16066 * cus-theme.el (custom-theme-write-faces): Save the current face
16067 spec, not the defface spec.
16068
16069 * custom.el (custom-known-themes): Clarify meaning of "standard".
16070 (custom-push-theme): Save old values in the standard theme.
16071 (disable-theme): Correct typo.
16072 (custom-face-theme-value) Deleted unused function.
16073 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
16074
16075 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
16076
16077 * progmodes/compile.el (compilation-goto-locus): Take into account
16078 iconified frames when determining whether the buffer is
16079 already visible.
16080 Don't reset window height if the window already existed.
16081
16082 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
16083
16084 * custom.el (load-theme): Rename from require-theme.
16085 Add interactive spec.
16086 (enable-theme): Rename from custom-enable-theme.
16087 Add interactive spec.
16088 (disable-theme): Rename from custom-disable-theme.
16089 Add interactive spec.
16090 (custom-make-theme-feature): Doc fix.
16091 (custom-theme-directory): Doc fix.
16092 (provide-theme): Call enable-theme.
16093
16094 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
16095
16096 * obsolete/lazy-lock.el (lazy-lock-mode):
16097 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
16098 font-lock-mode if it's off. Print a warning instead.
16099
16100 * progmodes/compile.el (compilation-start): Ignore errors if the
16101 process died before we get to send-eof.
16102
16103 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
16104 Undo last change. Enclosing the result in quotes broke things on Unix
16105 since tex-send-command passes it through shell-quote-argument.
16106 (tex-send-command): Pass `file' through convert-standard-filename
16107 when possible.
16108 (tex-uptodate-p): Handle the case where TeX hasn't put additional
16109 info in a transcript.
16110
16111 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
16112
16113 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
16114 fix compilation warning. Reorder the key definitions to group
16115 together keys emitted by the current version of xterm.
16116
16117 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
16118 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
16119 Reorder predicates to correct min-color usage.
16120
16121 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
16122
16123 * longlines.el (longlines-mode): Inhibit read-only when encoding.
16124 Kill local variables when longlines-mode is turned off.
16125
16126 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
16127
16128 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
16129
16130 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
16131
16132 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
16133
16134 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
16135 (font-lock-lines-before): Change default to being inactive.
16136 (font-lock-default-fontify-region): Obey font-lock-lines-before.
16137 (font-lock-after-change-function): Don't handle f-l-lines-before here.
16138
16139 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
16140
16141 * net/tramp.el (tramp-handle-make-auto-save-file-name):
16142 Deactivate temporarily advice if active (not needed for Emacs 22,
16143 but for backwards compatibility).
16144 (tramp-exists-file-name-handler): Rewrite. First implementation
16145 was too simple.
16146 (tramp-advice-make-auto-save-file-name):
16147 Call `tramp-handle-make-auto-save-file-name' (again, just for
16148 backwards compatibility).
16149
16150 2005-08-31 Reto Zimmermann <reto@gnu.org>
16151
16152 * progmodes/vhdl-mode.el
16153 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
16154 (vhdl-end-p): Fix indentation bug "else" after "-- when".
16155 (vhdl-set-default-project): New function (easier setting of default).
16156 (vhdl-port-copy): Handle extended identifiers for generics.
16157 (vhdl-compiler-alist): Better description for error message regexp.
16158 (vhdl-make): Query for target, use previous as default.
16159 (vhdl-port-copy): Fix port copy for port names starting with "signal".
16160 (vhdl-font-lock-keywords-2): Fix fontification for record
16161 el. assign.
16162 (vhdl-speedbar-make-subpack-line): Add package body link.
16163 (vhdl-generate-makefile-1): Not include itself as dependency.
16164 (vhdl-font-lock-init): Highlight c-preprocessor directives.
16165 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
16166 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
16167 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
16168 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
16169 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
16170 (vhdl-import-project): Add string argument for `error'.
16171 (vhdl-compose-configuration)
16172 (vhdl-compose-configuration-architecture): Add configuration
16173 declaration generation.
16174 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
16175 (vhdl-trailer-re): Add "record" keyword (better indentation).
16176 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
16177 "[^ \t-\"]+".
16178 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
16179 (vhdl-testbench-entity-file-name)
16180 (vhdl-testbench-architecture-file-name): Allow separate
16181 customization of testbench file names.
16182 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
16183 (vhdl-get-visible-signals): Allow newline within alias declaration.
16184 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
16185 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
16186 (member-ignore-case): Alias for missing function in XEmacs.
16187 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
16188 (vhdl-update-sensitivity-list): Ignore case on read signals.
16189 (vhdl-replace-string): Adjust case only for file names.
16190 (vhdl-update-sensitivity-list): Fix search for read signals.
16191 (vhdl-update-sensitivity-list): Exclude formal parameters.
16192 (vhdl-get-visible-signals): Include aliases of signals.
16193 (vhdl-get-visible-signals): Fix signal name searching.
16194 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
16195 (vhdl-fixup-whitespace-region): Fix for character
16196 literals (e.g. `:').
16197
16198 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
16199
16200 * ansi-color.el (comint-last-output-start):
16201 * bs.el (font-lock-verbose):
16202 * diff-mode.el (add-log-buffer-file-name-function):
16203 * dired-x.el (vm-folder-directory):
16204 * faces.el (help-xref-stack-item):
16205 * files.el (font-lock-keywords):
16206 * find-lisp.el (dired-buffers, dired-subdir-alist):
16207 * ido.el (cua-inhibit-cua-keys):
16208 * log-view.el (cvs-minor-wrap-function):
16209 * outline.el (font-lock-warning-face):
16210 * simple.el (compilation-current-error):
16211 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
16212 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
16213 * tooltip.el (comint-prompt-regexp):
16214 * w32-fns.el (explicit-shell-file-name):
16215 * term/mac-win.el (mac-charset-info-alist)
16216 (mac-services-selection, mac-system-script-code):
16217 * term/tty-colors.el (msdos-color-values):
16218 * term/w32-win.el (xlfd-regexp-registry-subnum):
16219 * term/x-win.el (x-keysym-table, x-selection-timeout)
16220 (x-session-id, x-session-previous-id):
16221 * textmodes/ispell.el (mail-yank-prefix):
16222 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
16223 * textmodes/org.el (calc-embedded-close-formula)
16224 (calc-embedded-open-formula)
16225 (font-lock-unfontify-region-function):
16226 * textmodes/reftex-global.el (isearch-next-buffer-function)
16227 (TeX-master):
16228 * textmodes/reftex.el (font-lock-keywords):
16229 * textmodes/tex-mode.el (font-lock-comment-face)
16230 (font-lock-doc-face):
16231 * textmodes/texinfo.el (outline-heading-alist):
16232 Add defvars.
16233
16234 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
16235 (artist-spray-chars, artist-mode-init, artist-replace-string)
16236 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
16237 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
16238 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
16239
16240 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
16241 (conf-align-assignments): "?\ " -> "?\s".
16242
16243 * textmodes/reftex-index.el (TeX-master): Add defvar.
16244 (reftex-index-phrases-marker): Move up defvar.
16245
16246 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
16247 (reftex-toc-include-labels-indicator)
16248 (reftex-toc-include-index-indicator)
16249 (reftex-toc-max-level-indicator): Move up declarations.
16250
16251 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
16252 of args to `tramp-run-real-handler', even if it's empty in this case.
16253
16254 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16255
16256 * dired.el (dired-move-to-filename-regexp): Add date format for
16257 Mac OS X 10.3 in East Asian locales.
16258
16259 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
16260
16261 * files.el (make-auto-save-file-name): Add file name handler call
16262 if applicable.
16263
16264 * net/tramp.el (tramp-file-name-handler-alist)
16265 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
16266 (tramp-handle-make-auto-save-file-name): Rename from
16267 `tramp-make-auto-save-file-name'.
16268 (tramp-exists-file-name-handler): New defun.
16269 (tramp-advice-make-auto-save-file-name): Make defadvice only when
16270 `make-auto-save-file-name' is not a magic file name operation.
16271
16272 2005-08-30 Richard M. Stallman <rms@gnu.org>
16273
16274 * files.el (risky-local-variable-p):
16275 Match `-predicates' and `-commands.
16276
16277 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
16278 (custom-save-all): Visit the file if necessary;
16279 kill the buffer if we created it.
16280 (custom-save-delete): Don't visit file or kill buffer here.
16281
16282 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
16283
16284 * textmodes/org.el (org-special-keyword): New face.
16285 (org-table-copy-down, org-table-eval-formula)
16286 (org-table-recalculate, org-init-section-numbers):
16287 Use `string-to-number' instead of `string-to-int'.
16288 (org-get-location): Use `insert-buffer-substring' instead of
16289 `insert-buffer'.
16290 (org-modify-diary-entry-string): New function.
16291 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
16292 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
16293 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
16294 active region.
16295 (org-export-as-html): Handle QUOTE keyword.
16296 (org-quote-string): New option.
16297 (org-bookmark-jump-unhide): New function, used for
16298 `bookmark-after-jump-hook'.
16299 (org-diary-default-entry): Apply only when not called through
16300 `org-agenda'.
16301
16302 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
16303
16304 * net/eudc.el (mode-popup-menu):
16305 * play/handwrite.el (ps-printer-name, ps-lpr-command):
16306 * progmodes/ada-mode.el (compile-auto-highlight)
16307 (skeleton-further-elements):
16308 * progmodes/autoconf.el (font-lock-syntactic-keywords):
16309 * progmodes/cmacexp.el (msdos-shells):
16310 * progmodes/compile.el (font-lock-extra-managed-props)
16311 (font-lock-keywords, font-lock-maximum-size)
16312 (font-lock-support-mode):
16313 * progmodes/grep.el (font-lock-lines-before):
16314 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
16315 * progmodes/mixal-mode.el (compile-command):
16316 * progmodes/perl-mode.el (font-lock-comment-face)
16317 (font-lock-doc-face, font-lock-string-face):
16318 * progmodes/prolog.el (comint-prompt-regexp):
16319 * progmodes/sh-script.el (font-lock-comment-face)
16320 (font-lock-set-defaults, font-lock-string-face):
16321 * progmodes/sql.el (font-lock-keyword-face)
16322 (font-lock-set-defaults, font-lock-string-face):
16323 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
16324 (itimer-version, lazy-lock-defer-contextually)
16325 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
16326 Add defvars.
16327
16328 * progmodes/cperl-mode.el (cperl-electric-lbrace)
16329 (cperl-electric-keyword, cperl-electric-pod)
16330 (cperl-electric-backspace, cperl-forward-re)
16331 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
16332 (vc-rcs-header, vc-sccs-header): Add defvars.
16333
16334 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
16335 (font-lock-syntactic-keywords, gud-find-expr-function):
16336 Add defvars.
16337
16338 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
16339 (gdb-frame-parameters): Declare before use.
16340
16341 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
16342 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
16343 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
16344 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
16345
16346 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
16347 (idlwave-help-with-source): Use `insert-buffer-substring', not
16348 `insert-buffer'.
16349
16350 2005-08-29 Juri Linkov <juri@jurta.org>
16351
16352 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
16353 Put outline-back-to-heading function call inside save-excursion.
16354
16355 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
16356
16357 * man.el (Man-init-defvars, Man-translate-references)
16358 (Man-support-local-filenames, Man-highlight-references):
16359 * progmodes/sql.el (sql-interactive-mode):
16360 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
16361
16362 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
16363 (compilation-mode-font-lock-keywords): Add defvars.
16364 (checkdoc-interactive-loop): "?\ " -> "?\s".
16365
16366 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
16367 (font-lock-doc-face, font-lock-string-face)
16368 (font-lock-keywords-case-fold-search): Add defvars.
16369 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
16370
16371 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
16372 Don't pass X and Y (they are ignored anyway).
16373 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
16374 (mouse-delete-window): Make arguments optional.
16375
16376 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
16377 (caesar-translate-table, minor-modes, news-buffer-save)
16378 (news-group-name, news-minor-modes): Add defvars.
16379
16380 * emacs-lisp/lselect.el (mouse-highlight-priority)
16381 (x-lost-selection-functions, zmacs-regions):
16382 * emacs-lisp/pp.el (font-lock-verbose):
16383 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
16384 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
16385 (ses-mode-map):
16386 * emacs-lisp/tcover-unsafep.el (safe-functions):
16387 * international/mule-cmds.el (mac-system-coding-system)
16388 (mac-system-locale):
16389 * language/ethio-util.el (rmail-current-message)
16390 (rmail-message-vector):
16391 * language/thai-util.el (thai-auto-composition-mode):
16392 * mail/metamail.el (rmail-current-message, rmail-message-vector):
16393 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
16394 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
16395 (vm-primary-inbox, vm-spool-files):
16396 * mail/rmail.el (deleted-head, font-lock-fontified)
16397 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
16398 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
16399 (total-messages):
16400 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
16401 (rmail-summary-mode-map):
16402 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
16403 (rmail-last-label, rmail-last-multi-labels)
16404 (rmail-summary-vector, rmail-total-messages):
16405 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
16406 * mail/rmailsum.el (msgnum):
16407 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
16408 (rmail-current-message):
16409 * obsolete/fast-lock.el (font-lock-face-list):
16410 * obsolete/rnewspost.el (mail-reply-buffer):
16411 * obsolete/scribe.el (compile-command):
16412 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
16413
16414 2005-08-28 John Paul Wallington <jpw@gnu.org>
16415
16416 * ibuf-ext.el (ibuffer-auto-update-changed):
16417 Use `frame-or-buffer-changed-p' to check whether we need to update.
16418 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
16419 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
16420 as a `frame-or-buffer-changed-p' state vector instead.
16421
16422 2005-08-27 Romain Francoise <romain@orebokech.com>
16423
16424 * textmodes/makeinfo.el (makeinfo-compile):
16425 Use `compilation-start'. Set `next-error-function' according to
16426 `disable-errors'.
16427 (makeinfo-next-error): New function.
16428 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
16429 (makeinfo-buffer): Likewise.
16430
16431 * progmodes/compile.el (compilation-start): Add autoload cookie.
16432
16433 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
16434 * textmodes/sgml-mode.el: Likewise.
16435 * progmodes/python.el: Likewise.
16436
16437 2005-08-27 Eli Zaretskii <eliz@gnu.org>
16438
16439 * simple.el (blink-matching-paren-distance): Document the meaning
16440 of nil value, and allow to customize to nil.
16441
16442 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
16443 command.com, not command.exe.
16444
16445 2005-08-26 John Wiegley <johnw@newartisans.com>
16446
16447 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
16448 code around a bit so that an extraneous nil argument is not added
16449 to a command when no args are given.
16450
16451 * eshell/esh-arg.el (eshell-parse-double-quote): If a
16452 double-quoted argument resolves to nil, return it as an empty
16453 string rather than as nil. This made it impossible to pass "" to
16454 a shell script as a null string argument.
16455
16456 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
16457
16458 * outline.el (outline-invent-heading): New fun.
16459 (outline-promote, outline-demote): Use it.
16460 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
16461 (outline-end-of-subtree): Remove unused var `opoint'.
16462
16463 2005-08-26 David Reitter <david.reitter@gmail.com>
16464
16465 * menu-bar.el (truncate-lines, write-file, print-buffer)
16466 (ps-print-buffer-faces, ps-print-buffer, split-window):
16467 Disable menu items when the frame they refer to is invisible, or when
16468 they refer to a buffer and the minibuffer is selected.
16469
16470 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
16471
16472 * progmodes/flymake.el (flymake-highlight-err-lines):
16473 Use save-excursion around flymake-highlight-line to preserve point.
16474
16475 2005-08-26 Eli Zaretskii <eliz@gnu.org>
16476
16477 * progmodes/octave-mod.el: Change Author and Maintainer address.
16478 (octave-maintainer-address): Change Kurt's email address.
16479 * progmodes/octave-inf.el: Change Author and Maintainer address.
16480 * progmodes/octave-hlp.el: Change Author and Maintainer address.
16481
16482 2005-08-26 Kim F. Storm <storm@cua.dk>
16483
16484 * subr.el (version-list-<, version-list-<=, version-list-=):
16485 Rename from integer-list-*.
16486 (version-list-not-zero): Likewise. Fix while loop.
16487 (version=): Use version-list-= instead of string-equal.
16488
16489 2005-08-26 Richard M. Stallman <rms@gnu.org>
16490
16491 * outline.el (outline-promote): Try shortening the heading.
16492 As last resort, read the heading to use.
16493 (outline-demote): As last resort, read the heading to use.
16494
16495 2005-08-26 Romain Francoise <romain@orebokech.com>
16496
16497 * progmodes/compile.el (compilation-start): Doc fix.
16498
16499 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
16500 (antlr-font-lock-additional-keywords): Fix reference to
16501 `antlr-font-lock-literal-regexp' erroneously changed during the
16502 mass face rename.
16503 (antlr-run-tool): Use `compilation-start'.
16504
16505 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
16506 instead of the obsolete `compile-internal'.
16507
16508 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
16509
16510 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
16511 (number, original-date):
16512 * calendar/cal-china.el (date):
16513 * calendar/cal-coptic.el (date):
16514 * calendar/cal-french.el (date):
16515 * calendar/cal-hebrew.el (date, entry, number, original-date):
16516 * calendar/cal-islam.el (date, number, original-date):
16517 * calendar/cal-iso.el (date):
16518 * calendar/cal-julian.el (date):
16519 * calendar/cal-mayan.el (date):
16520 * calendar/cal-menu.el (date, event):
16521 * calendar/cal-persia.el (date):
16522 * calendar/lunar.el (date):
16523 * calendar/solar.el (date): Add defvars.
16524
16525 * emerge.el:
16526 * ibuffer.el:
16527 * info-xref.el:
16528 * obsolete/bg-mouse.el:
16529 * obsolete/sun-curs.el:
16530 * obsolete/swedish.el: Move the `defvar's to the top level.
16531
16532 * smerge-mode.el (smerge-refined-change): Add :group.
16533
16534 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
16535
16536 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
16537 (smerge-keep-n): Remove props.
16538 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
16539 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
16540 now that it's done in smerge-keep-n.
16541 (smerge-refined-change): New face.
16542 (smerge-refine-chopup-region, smerge-refine-highlight-change)
16543 (smerge-refine): New funs.
16544 (smerge-basic-map): Bind smerge-refine.
16545
16546 2005-08-25 Juri Linkov <juri@jurta.org>
16547
16548 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
16549 compilation-process-setup-function and compilation-disable-input
16550 in grep-mode instead of let-bindings in grep.
16551
16552 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
16553 Delete "Automatic File De/compression" (auto-compression-mode).
16554
16555 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
16556
16557 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
16558 Silence warning about non-existent variable.
16559
16560 2005-08-25 Richard M. Stallman <rms@gnu.org>
16561
16562 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
16563 Rename "Describe Key" to "Describe Key or Mouse Operation".
16564
16565 * mail/mailalias.el (build-mail-aliases): Delete comments
16566 from the contents before processing them.
16567
16568 * isearch.el (isearch-edit-string): Erase the Search prompt
16569 if user enters an empty string and there is no default.
16570
16571 * comint.el (comint-file-name-prefix): Add autoload.
16572
16573 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
16574
16575 * subr.el (play-sound): Rearrange to avoid warning.
16576
16577 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
16578
16579 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
16580 New hook.
16581 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
16582
16583 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
16584
16585 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
16586
16587 * custom.el (custom-theme-set-variables): Sort minor modes last.
16588
16589 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16590
16591 * subr.el (version-separator, version-regexp-alist): New vars used by
16592 version comparison funs.
16593 (integer-list-<, integer-list-=, integer-list-<=)
16594 (integer-list-not-zero): New funs for integer list comparison.
16595 (version-to-list, version=, version<, version<=): New funs for version
16596 comparison.
16597
16598 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
16599
16600 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
16601 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
16602 time to silence the byte-compiler.
16603
16604 * ibuffer.el (ibuffer-compile-make-eliding-form)
16605 (ibuffer-check-formats): Use `with-no-warnings' to hide references
16606 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
16607 so it's silly to get warnings for it).
16608 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
16609 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
16610 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
16611 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
16612 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
16613 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
16614 Defvar at compile time.
16615 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
16616 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
16617 Declare them before use.
16618
16619 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
16620 (info-xref-good, info-xref-bad): Defvar at compile time.
16621
16622 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
16623 Use `let*' instead of `let'.
16624
16625 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
16626 (*mouse-y*, menu, char): Defvar at compile time.
16627 (sc::menu): Declare it before use.
16628 (sc::pack-one-line): Use `let', not `let*'.
16629
16630 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
16631 (mail-send-hook): Defvar at compile time.
16632
16633 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
16634 Defvar at compile time.
16635
16636 * term/sun-mouse.el (current-global-mousemap)
16637 (current-local-mousemap): Declare them before use.
16638
16639 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
16640
16641 * bookmark.el (bookmark-after-jump-hook): New hook.
16642 (bookmark-jump): Run `bookmark-after-jump-hook'.
16643
16644 2005-08-23 Juri Linkov <juri@jurta.org>
16645
16646 * faces.el (minibuffer-prompt): Doc fix.
16647
16648 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
16649
16650 * progmodes/xscheme.el: Trivial changes to silence warnings.
16651 (xscheme-previous-mode, xscheme-previous-process-state):
16652 Add defvars.
16653 (xscheme-last-input-end, xscheme-process-command-line)
16654 (xscheme-process-name, xscheme-buffer-name)
16655 (xscheme-expressions-ring-max, xscheme-expressions-ring)
16656 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
16657 (xscheme-control-g-synchronization-p)
16658 (xscheme-control-g-disabled-p, xscheme-string-receiver)
16659 (default-xscheme-runlight, xscheme-runlight)
16660 (xscheme-runlight-string, xscheme-process-filter-state)
16661 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
16662 Move to beginning of file.
16663 (scheme-interaction-mode-commands-alist)
16664 (scheme-interaction-mode-map, scheme-debugger-mode-map):
16665 Declare them before use. Note: the initialization code for the
16666 variables has not been moved because it uses functions that reference
16667 the variables.
16668 (xscheme-control-g-message-string, xscheme-process-filter-alist)
16669 (xscheme-prompt-for-expression-map): Declare them before use.
16670 (scheme-debugger-mode-commands): "?\ " -> "?\s".
16671
16672 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
16673
16674 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
16675
16676 2005-08-22 Juri Linkov <juri@jurta.org>
16677
16678 * faces.el (set-face-underline): Delete this duplicate function
16679 and make an obsolete alias to set-face-underline-p.
16680 (set-face-underline-p): Use docstring of set-face-underline.
16681 (describe-face): Create hyperlink to parent face.
16682
16683 * info.el (Info-insert-dir): Use save-excursion around
16684 insert-buffer-substring.
16685 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
16686 (Info-escape-percent): Delete function.
16687 (Info-fontify-node): Replace Info-escape-percent by
16688 replace-regexp-in-string with REP arg set to lambda that
16689 duplicates `%' and preserves text properties.
16690
16691 * progmodes/compile.el (compilation-disable-input): Doc fix.
16692 (define-compilation-mode): Doc fix and refill.
16693 (kill-compilation): Use `mode-name' in the error message.
16694 (compilation-find-file): Use `compilation-error' in the
16695 read-file-name's prompt.
16696
16697 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
16698
16699 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
16700 (smerge-auto-leave): Make undo re-enable the mode.
16701 (debug-ignored-errors): Add the user-error of impossible resolution.
16702 (smerge-resolve): Move things around a bit, in preparation for later.
16703 (smerge-diff): Don't fail if the buffer has no associated file.
16704 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
16705 (smerge-conflict-overlay): New function.
16706 (smerge-match-conflict): Don't add text properties here.
16707 (smerge-find-conflict): Instead, add an overlay here.
16708 Also check for the case where we're inside a conflict already, so as to
16709 obviate the need for font-lock-multiline, which is unbearably slow with
16710 large conflicts and ciomplex font-lock patterns.
16711 (smerge-remove-props): Remove overlay rather than text-properties.
16712 (smerge-mode): Don't set font-lock-multiline.
16713 Remove overlays when turned off.
16714
16715 2005-08-21 Kim F. Storm <storm@cua.dk>
16716
16717 * ido.el (ido-ignore-item-p): Use save-match-data.
16718 Bind case-fold-search to ido-case-fold locally.
16719
16720 2005-08-20 Richard M. Stallman <rms@gnu.org>
16721
16722 * files.el (normal-mode): If font lock is on, turn it off and on.
16723
16724 * subr.el (replace-regexp-in-string): Doc fix.
16725
16726 * startup.el (command-line-1): Don't suppress startup screen
16727 due to existing processes.
16728
16729 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
16730
16731 * progmodes/compile.el (compilation-disable-input): Default to nil.
16732
16733 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
16734
16735 * progmodes/compile.el (compilation-disable-input): New defcustom.
16736 (compilation-start): If compilation-disable-input is non-nil, send
16737 EOF to the compilation process.
16738
16739 2005-08-20 Eli Zaretskii <eliz@gnu.org>
16740
16741 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
16742 Run the argument of tex-shell-cd-command through
16743 convert-standard-filename, to get the correct style of slashes on
16744 Windows, and enclose the result in quotes, in case the file name
16745 includes whitespace or other special characters.
16746
16747 2005-08-19 Andreas Schwab <schwab@suse.de>
16748
16749 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
16750 process.
16751
16752 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
16753
16754 * cus-start.el (minibuffer-prompt-properties): Correct typo.
16755
16756 2005-08-18 Kim F. Storm <storm@cua.dk>
16757
16758 * scroll-lock.el: Fix errors due to incorrect line wrapping.
16759
16760 2005-08-18 Richard M. Stallman <rms@gnu.org>
16761
16762 * scroll-lock.el: New file.
16763
16764 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
16765
16766 * dired.el (dired-move-to-end-of-filename):
16767 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
16768
16769 2005-08-18 Kim F. Storm <storm@cua.dk>
16770
16771 * ido.el (ido-everywhere): Fix defcustom :set function to disable
16772 rather than toggle mode when custom value is nil.
16773 (ido-everywhere): Fix defun doc string.
16774
16775 2005-08-17 Richard M. Stallman <rms@gnu.org>
16776
16777 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
16778 as tag instead of "Inviolable".
16779
16780 2005-08-17 Kim F. Storm <storm@cua.dk>
16781
16782 * windmove.el (windmove-coordinates-of-position): Remove.
16783 (windmove-coordinates-of-window-position): Remove.
16784 (windmove-reference-loc): Use posn-at-point instead.
16785
16786 * subr.el (insert-for-yank-1): Doc fix.
16787
16788 * ido.el (ido-enter-matching-directory): Rename from
16789 ido-enter-single-matching-directory. Change `slash' choice to
16790 `only'. Add `first' choice.
16791 (ido-exhibit): Adapt to above changes.
16792
16793 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
16794
16795 * Makefile.in: Expand comment about building loaddefs.el.
16796
16797 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
16798
16799 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
16800 Comment use of defadvice.
16801
16802 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
16803
16804 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
16805
16806 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
16807 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
16808 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
16809 * progmodes/idlw-shell.el, progmodes/ld-script.el,
16810 * progmodes/which-func.el, ruler-mode.el, strokes.el,
16811 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
16812 for backward compatibility for faces that did not appear in the
16813 previous Emacs release.
16814
16815 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
16816
16817 2005-08-15 Kim F. Storm <storm@cua.dk>
16818
16819 * emulation/cua-base.el (cua-delete-region): Return t if
16820 deleted region was non-empty.
16821 (cua-replace-region): Inhibit overwrite-mode for
16822 self-insert-command if replaced region was non-empty.
16823 (cua--explicit-region-start, cua--status-string): Make them
16824 buffer-local at top-level...
16825 (cua-mode): ...rather than when mode is enabled.
16826
16827 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
16828
16829 * progmodes/vhdl-mode.el (vhdl-emacs-21):
16830 Set t for Emacs 21, 22, and so on.
16831
16832 2005-08-15 David Ponce <david@dponce.com>
16833
16834 * tree-widget.el: Update Commentary header.
16835 (tree-widget-theme): Doc fix.
16836 (tree-widget-space-width): New option.
16837 (tree-widget-image-properties): Look up in the default theme too.
16838 (tree-widget--cursors): Only for images with arrow pointer shape.
16839 (tree-widget-lookup-image): Pointer shape is hand by default.
16840 (tree-widget-icon): Rename generic icon widget from
16841 `tree-widget-control'.
16842 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
16843 derive from `tree-widget-icon'.
16844 (tree-widget-handle): Improve default look and feel of the text
16845 representation.
16846 (tree-widget): Rename :*-control properties to :*-icon properties.
16847 Add :action and :help-echo properties.
16848 (tree-widget-after-toggle-functions): Move.
16849 (tree-widget-close-node, tree-widget-open-node): Remove.
16850 (tree-widget-before-create-icon-functions): New hook.
16851 (tree-widget-value-create): Update to allow customization of icons
16852 and nodes at run-time via that new hook.
16853 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
16854 (tree-widget-icon-action, tree-widget-icon-help-echo)
16855 (tree-widget-action, tree-widget-help-echo): New functions.
16856
16857 2005-08-15 Kim F. Storm <storm@cua.dk>
16858
16859 * ido.el (ido-buffer-internal): Use with-no-warnings.
16860 (ido-make-merged-file-list): Use while-no-input.
16861
16862 2005-08-15 Richard M. Stallman <rms@gnu.org>
16863
16864 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
16865 (flyspell-large-region): Fix doc and custom type.
16866
16867 2005-08-14 Richard M. Stallman <rms@gnu.org>
16868
16869 * files.el (interpreter-mode-alist): Doc fix.
16870
16871 * mail/rmail.el (rmail-nonignored-headers): New variable.
16872 (rmail-clear-headers): Use it.
16873 (rmail-reply): Better handling of mail-followup-to header.
16874
16875 * progmodes/sh-script.el (sh-font-lock-keywords-var):
16876 Rename variable from sh-font-lock-keywords. In the `shell' entry,
16877 don't try to refer to executable-font-lock-keywords.
16878 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
16879 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
16880 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
16881 (sh-mode): Set comment-start-skip, local-abbrev-table,
16882 imenu-case-fold-search.
16883 (sh-set-shell): Don't set them here.
16884 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
16885 Don't cache the results in the original alist; don't ever modify
16886 that alist.
16887
16888 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
16889
16890 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
16891 empty.
16892
16893 2005-08-15 Andreas Schwab <schwab@suse.de>
16894
16895 * desktop.el: Put autoload cookie at risky-local-variable declarations.
16896
16897 * dired.el, info.el, mail/rmail.el: Revert last change.
16898
16899 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
16900
16901 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
16902 modification in `eval-after-load' form.
16903 * info.el: Likewise.
16904 * mail/rmail.el: Likewise.
16905
16906 2005-08-14 Juri Linkov <juri@jurta.org>
16907
16908 * progmodes/compile.el (compilation-mode-font-lock-keywords):
16909 Remove highlighting of "Compilation started". Highlight only
16910 the word "finished" in "Compilation finished". Add highlighting
16911 of "interrupt", "killed", "terminated" and the exit code.
16912 (compilation-start): Add newline after header. Use exactly the
16913 same time stamp format as the finishing message.
16914 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
16915
16916 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
16917 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
16918 Add highlighting of "interrupt", "killed", "terminated".
16919
16920 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
16921 enabled and the current command is self-insert-command, call it
16922 explicitly with overwrite-mode bound to nil, to not allow it
16923 to delete the character after the selected region.
16924
16925 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
16926
16927 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
16928 move-end-of-line, end-of-line, and beginning-of-line to the list
16929 of commands after which the echo area is updated.
16930
16931 2005-08-12 Eli Zaretskii <eliz@gnu.org>
16932
16933 * cus-edit.el (custom-save-all, custom-save-delete):
16934 Bind recentf-exclude to exclude custom-file.
16935
16936 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
16937
16938 * mail/rmailsum.el (rmail-summary-end-of-message): New command
16939 to go to the bottom of the mail message. Added to
16940 `rmail-summary-mode-map' with key "/".
16941 (rmail-summary-show-message): New (internal) function for use by
16942 both `rmail-summary-beginning/end-of-message'.
16943 (rmail-summary-beginning-of-message): Change to use
16944 rmail-summary-show-message.
16945
16946 * mail/rmail.el (rmail-end-of-message): New command to go to the
16947 end of the current message. Added to `rmail-mode-map' with key "/".
16948 (rmail-beginning-of-message): Fix to work as documented.
16949 (rmail-mode): Change documentation.
16950
16951 * progmodes/compile.el (compilation-start): Add the line
16952 "Compilation started" with compilation start time.
16953 (compilation-mode-font-lock-keywords): Add `started' to keywords.
16954
16955 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
16956
16957 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
16958 of menu items.
16959
16960 2005-08-11 Richard M. Stallman <rms@gnu.org>
16961
16962 * simple.el (pop-global-mark): Reverse test of widen-automatically.
16963
16964 * battery.el (battery-status-function): Don't use ignore-errors.
16965
16966 2005-08-11 Lute Kamstra <lute@gnu.org>
16967
16968 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
16969 define-obsolete-variable-alias.
16970
16971 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
16972
16973 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
16974 (ange-ftp-send-cmd): Revert last change, and expand
16975 the comment explaining the problem.
16976
16977 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
16978
16979 * ldefs-boot.el: Update.
16980
16981 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
16982 item to "Time, Load and Mail". Change help echo text.
16983
16984 * time.el (display-time-use-mail-icon, display-time-format)
16985 (display-time-string-forms): Shorten first line of docstrings.
16986
16987 2005-08-10 Lars Hansen <larsh@soem.dk>
16988
16989 * desktop.el (desktop-buffer-mode-handlers):
16990 Make non-customizable. Add autoload cookie. Change initial value to
16991 nil; add elements in respective modules instead. Fix doc string.
16992 (desktop-load-file): New function.
16993 (desktop-minor-mode-handlers): New autoloaded variable.
16994 (desktop-create-buffer): Call minor mode handlers.
16995 Use desktop-load-file to load major and minor mode modules prior to
16996 checking for a handler.
16997 (desktop-save): Don't add nil to desktop-minor-modes for minor
16998 modes with nil function in desktop-minor-mode-table. Don't delete
16999 desktop file before rewriting it.
17000 (desktop-locals-to-save): Add autoload cookie. Don't make
17001 automatically buffer-local. Add variables column-number-mode,
17002 size-indication-mode, indent-tabs-mode,
17003 indicate-buffer-boundaries, indicate-empty-lines and
17004 show-trailing-whitespace.
17005 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
17006 regexps. Don't use desktop-clear-preserve-buffers-regexp.
17007 (desktop-clear-preserve-buffers-regexp): Delete.
17008 (desktop-clear-preserve-buffers): Update initial value and docstring.
17009 (desktop-save-buffer): Fix doc string.
17010
17011 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
17012 (hilit-chg-desktop-restore): New function.
17013 (highlight-changes-mode): Add highlight-changes-mode to
17014 desktop-locals-to-save.
17015
17016 * dired.el: Add handler to desktop-buffer-mode-handlers.
17017 (dired-restore-desktop-buffer): Remove autoload cookie.
17018 (dired-mode): Add autoload cookie.
17019
17020 * info.el: Add handler to desktop-buffer-mode-handlers.
17021 (Info-restore-desktop-buffer): Remove autoload cookie.
17022 (Info-mode): Add autoload cookie.
17023
17024 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
17025 (mh-restore-desktop-buffer): Remove autoload cookie.
17026 (mh-folder-mode): Add autoload cookie.
17027
17028 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
17029 (rmail-restore-desktop-buffer): Remove autoload cookie.
17030
17031 2005-08-11 Masatake YAMATO <jet@gyve.org>
17032
17033 * hexl.el (hexl-address-region):
17034 (hexl-ascii-region, hexl-font-lock-keywords):
17035 (hexl-highlight-line-range): Use the term "region"
17036 instead of "area" for consistency with the other symbols
17037 defined in hexl.el.
17038
17039 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
17040
17041 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
17042 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
17043 out by Juri Linkov). Add `display-battery-mode'.
17044
17045 2005-08-09 Juri Linkov <juri@jurta.org>
17046
17047 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17048 Remove `-text' from face variable names.
17049 (compilation-error-file-name, compilation-warning-file-name)
17050 (compilation-info-file-name): Delete faces.
17051 (compilation-line-number, compilation-column-number):
17052 Remove face underlining.
17053 (compilation-message-face): Set to `underline' value by default.
17054 (compilation-error-face, compilation-warning-face)
17055 (compilation-info-face): Remove `-file-name' from face names.
17056 (compilation-error-text-face, compilation-warning-text-face)
17057 (compilation-info-text-face): Delete face variables.
17058 (compilation-text-face): Delete function.
17059
17060 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
17061 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
17062 (grep-error-face): Set to `compilation-error' instead of
17063 `compilation-error-face' (which is redefined to `grep-hit-face' in
17064 grep buffers).
17065 (grep-mode-font-lock-keywords): Remove `-text' from face variable
17066 names. Use `grep-error-face' instead of `compilation-error-text-face'.
17067
17068 * dired-aux.el (dired-do-query-replace-regexp):
17069 Use `query-replace-read-args'.
17070
17071 * replace.el (query-replace-read-from, query-replace-read-to)
17072 (query-replace-read-args): Rename arg `string' to `prompt'.
17073
17074 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
17075
17076 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
17077
17078 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
17079 uploading files.
17080 (ange-ftp-canonize-filename): Handle file names beginning with ~
17081 correctly.
17082
17083 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
17084
17085 * textmodes/fill.el (canonically-space-region)
17086 (fill-context-prefix, fill-french-nobreak-p)
17087 (fill-delete-newlines, fill-comment-paragraph)
17088 (justify-current-line): "?\ " -> "?\s".
17089
17090 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
17091
17092 * textmodes/fill.el (fill-nonuniform-paragraphs):
17093 Improve argument/docstring consistency.
17094
17095 2005-08-09 Richard M. Stallman <rms@gnu.org>
17096
17097 * textmodes/ispell.el (ispell-word): More fboundp checks.
17098
17099 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
17100 (find-file-noselect-1): Call it here, only if RAWFILE.
17101 (normal-mode): Always set some major mode.
17102 (save-some-buffers-action-alist): Change some explanation strings.
17103 (file-name-non-special): In the `quote' method, use unwind-protect.
17104
17105 2005-08-09 Magnus Henoch <mange@freemail.hu>
17106
17107 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
17108 (ispell-have-aspell-dictionaries): New variable.
17109 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
17110 (ispell-get-aspell-config-value): New function.
17111 (ispell-aspell-find-dictionary): New function.
17112 (ispell-aspell-add-aliases): New function.
17113 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
17114 appropriate. Don't look for ispell dictionaries if we use aspell.
17115 (ispell-menu-map): Don't build a submenu of dictionaries.
17116
17117 2005-08-09 Richard M. Stallman <rms@gnu.org>
17118
17119 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
17120 (sql-read-passwd): Use read-passwd.
17121
17122 * progmodes/idlw-toolbar.el (idlwave-toolbar)
17123 (idlwave-toolbar-is-possible): Add defvars.
17124
17125 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
17126 Avoid warnings.
17127
17128 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
17129 (idlwave-system-class-info, idlwave-executive-commands-alist):
17130 Use defvar.
17131
17132 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
17133
17134 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
17135 Avoid warnings.
17136
17137 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
17138 and content-type: headers.
17139
17140 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
17141
17142 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
17143 and rename some of them to be more self-explanatory.
17144
17145 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
17146
17147 * startup.el (command-line-1): Implement -scriptload.
17148
17149 * replace.el (occur-engine): Initial *Occur* output not undoable.
17150
17151 * menu-bar.el (menu-bar-file-menu): Rename some menu items
17152 and improve help strings.
17153
17154 * isearch.el (isearch-repeat): When changing direction,
17155 mark search successful.
17156
17157 * ediff-init.el: Use (featurep 'xemacs).
17158
17159 * comint.el (send-invisible): Identify buffer, if not selected.
17160
17161 * align.el: Delete autoload for c-guess-basic-syntax.
17162
17163 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
17164
17165 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
17166 Improve argument/docstring consistency. Doc fixes.
17167 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
17168 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
17169 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
17170 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
17171 (r2bv-organization, r2bv-pages, r2bv-primary-author)
17172 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
17173 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
17174 Defvar at compile time.
17175
17176 2005-08-09 Juri Linkov <juri@jurta.org>
17177
17178 * info.el: Replace `info' with upper-case `Info' where appropriate.
17179 (info-title-1, info-title-2, info-title-3, info-title-4)
17180 (info-menu-header): Move up face definitions.
17181 (info-menu-star): Rename from `info-menu-5'.
17182 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
17183 (Info-fontify-visited-nodes): Fix docstring.
17184 (Info-hide-note-references): Fix docstring.
17185 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
17186 menu items in the same way as on cross-references.
17187 (info-apropos): Fix sorting order and formatting to be like in the
17188 stand-alone Info browser. Display error messages for 1 sec.
17189 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
17190 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
17191 from the menu bar.
17192 (Info-insert-dir): Restore point after calling
17193 `insert-buffer-substring'.
17194
17195 2005-08-08 Richard M. Stallman <rms@gnu.org>
17196
17197 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
17198 (recompute-lucid-menubar): Add defvars.
17199
17200 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
17201
17202 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
17203
17204 * net/net-utils.el (run-dig): Rename from `dig'.
17205
17206 * play/gametree.el (gametree-mode): Use make-local-variable,
17207 not make-variable-buffer-local.
17208
17209 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
17210
17211 * ansi-color.el (ansi-color-make-extent)
17212 (ansi-color-set-extent-face): Use fboundp, not functionp.
17213
17214 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
17215 not make-variable-buffer-local.
17216
17217 * bookmark.el (Info-current-file): Add defvar.
17218 (bookmark-jump-noselect): Use with-no-warnings.
17219
17220 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
17221
17222 * ebuff-menu.el (Helper-return-blurb): Add defvar.
17223
17224 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
17225
17226 * find-file.el (ada-procedure-start-regexp)
17227 (ada-package-start-regexp): Add defvars.
17228
17229 * info.el (Info-insert-dir): Use insert-buffer-substring.
17230
17231 * xml.el (xml-att-def-re): Add defvar.
17232
17233 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
17234 calling convention.
17235
17236 * subr.el (while-no-input): Return t if there is input.
17237
17238 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
17239
17240 * cus-start.el (all): Add `overflow-newline-into-fringe'.
17241
17242 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
17243
17244 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
17245 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
17246
17247 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
17248
17249 * cmuscheme.el (scheme-start-file): Replace reference to
17250 `user-emacs-directory' by "~/.emacs.d/".
17251
17252 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
17253
17254 * info.el (Info-dir-remove-duplicates): Avoid case folding
17255 in loop; instead, keep downcased strings for comparison.
17256 Suggested by Helmut Eller.
17257
17258 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
17259
17260 Sync with Tramp 2.0.50.
17261
17262 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
17263 XEmacs case; not necessary anymore.
17264 (tramp-user-regexp): Allow "@" as part of user name.
17265 (tramp-handle-set-visited-file-modtime)
17266 (tramp-handle-insert-file-contents)
17267 (tramp-handle-write-region): No special handling for
17268 `last-coding-system-used, because this is done in
17269 `tramp-accept-process-output' now.
17270 (tramp-accept-process-output): New defun.
17271 (tramp-process-one-action, tramp-process-one-multi-action)
17272 (tramp-wait-for-regexp, tramp-wait-for-output)
17273 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
17274 Howells <dhowells@redhat.com>.
17275 (clear-visited-file-modtime): Defadvice removed. The check for
17276 unset buffer's modtime does not need to be based on
17277 `tramp-buffer-file-attributes'. Suggested by RMS.
17278 (tramp-message): Insert "\n" if not being at beginning of line.
17279 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
17280 sequence with same logic.
17281 (tramp-completion-handle-expand-file-name): Discard call of
17282 `tramp-drop-volume-letter'. It is not necessary, and there have
17283 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
17284 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
17285 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
17286 should always be visible.
17287 (tramp-handle-insert-directory, tramp-setup-complete)
17288 (tramp-set-process-query-on-exit-flag)
17289 (tramp-append-tramp-buffers): Pacify byte-compiler.
17290 (tramp-bug): Delete non-existing variables from list.
17291 Apply `tramp-load-report-modules' as pre-hook.
17292 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
17293 `shell-prompt-pattern' because of non-7bit characters.
17294 Reported by Sebastian Luque <sluque@mun.ca>.
17295 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
17296 (tramp-match-string-list): Remove function.
17297 (tramp-wait-for-regexp): Remove call of that function.
17298 Suggested by Kim F. Storm <storm@cua.dk>.
17299 (tramp-set-auto-save-file-modes): Use octal integer code #o600
17300 instead of octal character code ?\600. The latter resulted in a
17301 syntax error with XEmacs.
17302
17303 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
17304 XEmacs case; not necessary anymore.
17305 (tramp-smb-handle-write-region): No special handling for
17306 `last-coding-system-used, because this is done in
17307 `tramp-accept-process-output' now.
17308 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
17309
17310 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
17311
17312 * wid-edit.el (widget-choice-value-create):
17313 Unconditionally respect user choice. Set :explicit-choice back to nil
17314 when no longer needed.
17315 (widget-choice-action): Unconditionally respect user choice.
17316 Eliminate :explicit-choice-value.
17317
17318 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
17319
17320 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
17321 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
17322 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
17323 running new function `toggle-indicate-empty-lines'.
17324 Rename "Customize" item to "Customize fringe".
17325 Rename "Indicators" item to "Buffer boundaries" and change help echo.
17326 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
17327 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
17328 Delete "Empty lines only" item.
17329 (menu-bar-showhide-fringe-ind-customize): New function.
17330 (menu-bar-showhide-fringe-ind-mixed)
17331 (menu-bar-showhide-fringe-ind-box)
17332 (menu-bar-showhide-fringe-ind-right)
17333 (menu-bar-showhide-fringe-ind-left)
17334 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
17335 instead of `fringe-indicators'.
17336
17337 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
17338
17339 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
17340 Change the date of last update.
17341
17342 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
17343
17344 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
17345 (viper-exec-yank, viper-put-back): Don't display modification msg
17346 if in the minibuffer.
17347
17348 * viper-init.el (viper-replace-overlay-cursor-color)
17349 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
17350 Make variables frame local.
17351
17352 * viper-util.el (viper-append-filter-alist): Use append instead of
17353 nconc.
17354
17355 * viper.el (viper-vi-state-mode-list)
17356 (viper-emacs-state-mode-list): Move help-mode and
17357 completion-list-mode from the first list to the second.
17358 (viper-mode): Docstring.
17359 (viper-go-away, viper-non-hook-settings): Don't localize
17360 minor-mode-alist in newer Emacsen. Add advice to
17361 set-cursor-color. Don't bind "\C-c\\".
17362
17363 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
17364
17365 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
17366 (scheme-macro-expand-command): New user options.
17367 (scheme-trace-procedure, scheme-expand-current-form): New commands.
17368 (scheme-form-at-point, scheme-start-file)
17369 (scheme-interactively-start-process): New functions.
17370 (scheme-get-process): New function, extracted from `scheme-proc'.
17371 (run-scheme): Call `scheme-start-file' to get start file, and pass
17372 it to `make-comint'.
17373 (switch-to-scheme, scheme-proc):
17374 Call `scheme-interactively-start-process' if no Scheme buffer/process
17375 is available.
17376
17377 2005-08-06 Juri Linkov <juri@jurta.org>
17378
17379 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17380 Use `compilation-text-face', `compilation-info-text-face' and
17381 `compilation-error-text-face' instead of `font-lock-keyword-face'.
17382 (compilation-error): New face.
17383 (compilation-error-file-name): Inherit from
17384 `compilation-error' instead of `font-lock-warning-face'.
17385 (compilation-warning-file-name): Inherit from
17386 `compilation-warning' instead of `font-lock-warning-face'.
17387 (compilation-info, compilation-error-file-name)
17388 (compilation-warning-file-name, compilation-info-file-name)
17389 (compilation-line-number, compilation-column-number): Doc fix.
17390 (compilation-error-text-face, compilation-warning-text-face)
17391 (compilation-info-text-face): New face variables.
17392 (compilation-line-face, compilation-column-face)
17393 (compilation-enter-directory-face)
17394 (compilation-leave-directory-face): Doc fix.
17395 (compilation-text-face): New function.
17396
17397 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
17398 instead of 1 to display binary file names as info file links.
17399 (grep-error-face): Use `compilation-error-face' instead of
17400 `font-lock-keyword-face'.
17401 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
17402 and `compilation-warning-text-face' instead of
17403 `font-lock-keyword-face'. Use `compilation-error-text-face'
17404 instead of `grep-error-face'.
17405
17406 2005-08-05 Kenichi Handa <handa@m17n.org>
17407
17408 * international/code-pages.el: Add autoload cookies for all coding
17409 systems.
17410
17411 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
17412
17413 * cus-start.el (all): Put undo.c where it alphabetically belongs.
17414
17415 2005-08-04 Juri Linkov <juri@jurta.org>
17416
17417 * progmodes/compile.el (compilation-mode-map):
17418 * progmodes/grep.el (grep-mode-map):
17419 Bind TAB to `compilation-next-error' and [backtab] to
17420 `compilation-previous-error'.
17421
17422 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
17423 matching line numbers, column numbers and their ranges with regexp
17424 matching only line numbers.
17425 (grep-context-face): New face variable.
17426 (grep-mode-font-lock-keywords): Use it.
17427
17428 * faces.el (read-face-name): Delete duplicate faces.
17429
17430 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
17431
17432 * thumbs.el (thumbs-find-image): Don't make variables
17433 automatically buffer local.
17434 (thumbs-current-tmp-filename, thumbs-current-image-filename)
17435 (thumbs-image-num): Make automatically buffer local.
17436 (thumbs-show-thumbs-list): Use `make-local-variable', not
17437 `make-variable-buffer-local'.
17438 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
17439
17440 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
17441 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
17442 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
17443 (bother, bye, canyou, chatlst, continue, deathlst, describe)
17444 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
17445 (feelings-about, foullst, found, hello, history, howareyoulst)
17446 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
17447 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
17448 (neglst, obj, object, owner, please, problems, qlist)
17449 (random-adjective, relation, remlst, repetitive-shortness)
17450 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
17451 (shortlst, something, sportslst, stallmanlst, states, subj)
17452 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
17453 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
17454 Defvar at compile time.
17455
17456 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
17457 not `make-variable-buffer-local'.
17458
17459 2005-08-02 Kim F. Storm <storm@cua.dk>
17460
17461 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
17462 rectangle overlay in selected window.
17463
17464 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
17465
17466 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
17467 instead of display group. Make `indicate-buffer-boundaries'
17468 customizable through Custom.
17469
17470 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
17471
17472 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
17473 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
17474 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
17475 (gdb-put-string): Fix typos in docstrings.
17476
17477 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
17478
17479 Update copyright notices of files in progmodes directory for
17480 release of Emacs 22.1.
17481
17482 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
17483
17484 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
17485 Don't barf if the GUD buffer has been killed.
17486
17487 2005-08-01 Kim F. Storm <storm@cua.dk>
17488
17489 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
17490
17491 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
17492
17493 * simple.el (next-error-follow-minor-mode):
17494 make-variable-buffer-local -> make-local-variable.
17495
17496 * emacs-lisp/cl-extra.el: Require CL also when compiling.
17497
17498 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
17499 (byte-compile-form-make-variable-buffer-local): New functions to warn
17500 about misuses of make-variable-buffer-local where make-local-variable
17501 was meant.
17502
17503 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
17504
17505 * bs.el (bs-attributes-list): Doc fix.
17506 (bs): Update url-link.
17507
17508 * desktop.el (desktop-save-buffer): Fix typos in docstring.
17509 (desktop-load-default): Simplify.
17510
17511 * ibuffer.el (ibuffer-columnize-and-insert-list)
17512 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
17513 (ibuffer-unmark-all, ibuffer-toggle-marks)
17514 (ibuffer-unmark-forward, ibuffer-unmark-backward)
17515 (ibuffer-compile-make-format-form, ibuffer-format-column)
17516 (ibuffer-current-buffers-with-marks)
17517 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
17518 (ibuffer): Doc fix.
17519 (ibuffer-mode): Fix typo in docstring.
17520 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
17521 with `define-obsolete-variable-alias'.
17522 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
17523
17524 2005-07-29 Kenichi Handa <handa@m17n.org>
17525
17526 * international/mule-cmds.el (select-message-coding-system):
17527 Be sure to use LF for end-of-line. If no coding system is decided,
17528 return iso-8859-1-unix.
17529
17530 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
17531
17532 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
17533 (ange-ftp-pending-error-line): New vars.
17534 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
17535 to handle the non-fatal no-route-to-host messages.
17536 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
17537
17538 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
17539
17540 * isearch.el (isearch-mode-map, isearch-other-meta-char)
17541 (isearch-quote-char, isearch-printing-char)
17542 (isearch-text-char-description): "?\ " -> "?\s".
17543 (isearch-lazy-highlight-cleanup)
17544 (isearch-lazy-highlight-initial-delay)
17545 (isearch-lazy-highlight-interval)
17546 (isearch-lazy-highlight-max-at-a-time)
17547 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
17548 Declare with define-obsolete-*-alias macros.
17549 (isearch-forward): Fix typo in docstring.
17550 (search-invisible, search-ring-yank-pointer)
17551 (regexp-search-ring-yank-pointer): Doc fixes.
17552
17553 * recentf.el (recentf-menu-append-commands-p): Declare with
17554 `define-obsolete-variable-alias'.
17555 (recentf-max-saved-items, recentf-menu-filter)
17556 (recentf-arrange-by-rule-subfilter): Doc fixes.
17557 (recentf-menu-append-commands-flag)
17558 (recentf-initialize-file-name-history, recentf-expand-file-name)
17559 (recentf-clear-data): Fix typos in docstrings.
17560
17561 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
17562
17563 * progmodes/gdb-ui.el: Smarten comments.
17564 (gdb-info-breakpoints-custom): Use nowarn when finding file.
17565
17566 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
17567
17568 * term/apollo.el (terminal-init-apollo): New function containing
17569 all former top level forms in the file.
17570 * term/bobcat.el (terminal-init-bobcat):
17571 * term/cygwin.el (terminal-init-cygwin):
17572 * term/iris-ansi.el (terminal-init-iris-ansi):
17573 * term/linux.el (terminal-init-linux):
17574 * term/news.el (terminal-init-news):
17575 * term/rxvt.el (terminal-init-rxvt):
17576 * term/sun.el (terminal-init-sun):
17577 * term/tvi970.el (terminal-init-tvi970):
17578 * term/vt100.el (terminal-init-vt100):
17579 * term/vt102.el (terminal-init-vt102):
17580 * term/vt125.el (terminal-init-vt125):
17581 * term/vt200.el (terminal-init-vt200):
17582 * term/vt201.el (terminal-init-vt201):
17583 * term/vt220.el (terminal-init-vt220):
17584 * term/vt240.el (terminal-init-vt240):
17585 * term/vt300.el (terminal-init-vt300):
17586 * term/vt320.el (terminal-init-vt320):
17587 * term/vt400.el (terminal-init-vt400):
17588 * term/vt420.el (terminal-init-vt420):
17589 * term/wyse50.el (terminal-init-wyse50):
17590 * term/xterm.el (terminal-init-xterm): Likewise.
17591
17592 * term/README: Describe the terminal-init-* functionality.
17593
17594 * startup.el (command-line): After loading the terminal initialization
17595 file call the corresponding terminal initialization function.
17596
17597 2005-07-27 Kenichi Handa <handa@m17n.org>
17598
17599 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
17600 negative.
17601
17602 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
17603 (ps-mule-composition-prologue): Fix for the case that
17604 RelativeCompose is false.
17605
17606 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
17607
17608 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
17609
17610 * descr-text.el (describe-char): Handle the case where the list of
17611 chars is displayed in a separate frame.
17612 Be a bit more discriminating when looking for the char.
17613
17614 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
17615
17616 * bookmark.el (bookmark-automatically-show-annotations)
17617 (bookmark-read-annotation-text-func): Doc fixes.
17618 (bookmark-save): Improve argument/docstring consistency.
17619 (bookmark-get-bookmark, bookmark-get-bookmark-record)
17620 (bookmark-alist-from-buffer)
17621 (bookmark-upgrade-file-format-from-0)
17622 (bookmark-grok-file-format-version)
17623 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
17624 (bookmark-read-annotation-mode)
17625 (bookmark-insert-current-bookmark, bookmark-jump)
17626 (bookmark-exit-hook): Fix typos in docstrings.
17627 (bookmark-exit-hooks): Define as obsolete alias.
17628 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
17629 not `bookmark-exit-hooks'. Fix docstring.
17630 (bookmark-bmenu-select): "?\ " -> "?\s".
17631
17632 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
17633
17634 * startup.el (command-line): Fix typo.
17635
17636 2005-07-24 Richard M. Stallman <rms@gnu.org>
17637
17638 * tooltip.el (tooltip-mode): Test emacs-basic-display,
17639 not emacs-quick-startup.
17640
17641 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
17642
17643 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
17644 (reb-next-match, reb-show-subexp): Use `with-selected-window'
17645 instead of `reb-with-current-window'.
17646 (reb-prev-match): Likewise. Also, don't move left if the search
17647 was unsuccessful.
17648 (reb-initialize-buffer): New function.
17649 (re-builder, reb-change-syntax): Use it.
17650
17651 * man.el (Man-goto-page): Make second argument NOERROR optional.
17652
17653 2005-07-23 Richard M. Stallman <rms@gnu.org>
17654
17655 * man.el (Man-bgproc-sentinel): Check here for failure to find
17656 any man page in the output, and report the error here.
17657 (Man-arguments): Make it permanent local.
17658 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
17659 (Man-mode): Pass t for NOERROR.
17660
17661 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
17662 (grep-mode-font-lock-keywords):
17663 Don't use compilation-...-face for messages that are not file names.
17664
17665 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17666 Don't use compilation-...-face for messages that are not file names.
17667
17668 2005-07-22 Juri Linkov <juri@jurta.org>
17669
17670 * startup.el (normal-splash-screen): Update menu name.
17671
17672 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
17673
17674 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
17675
17676 * term/xterm.el: Load term/rxvt if the terminal is actually an
17677 rxvt terminal.
17678 (xterm-rxvt-set-background-mode): Remove, not used anymore.
17679
17680 * term/rxvt.el (function-key-map): Use substitute-key-definition
17681 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
17682
17683 * term/cygwin.el: New file.
17684
17685 2005-07-22 Kim F. Storm <storm@cua.dk>
17686
17687 * image-file.el (insert-image-file, image-file-yank-handler):
17688 Fix last change to maintain a (unique) yank-handler on yanked images.
17689
17690 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
17691
17692 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
17693 of the file size (as in "177B" for 177 bytes). This happens with
17694 "ls -lh" on FreeBSD.
17695
17696 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
17697
17698 * hilit-chg.el (highlight-changes-global-initial-state)
17699 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
17700 (hilit-chg-fixup, highlight-changes-mode):
17701 Fix typos in docstrings.
17702 (highlight-changes-global-modes, highlight-changes-rotate-faces):
17703 Doc fixes.
17704
17705 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
17706
17707 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
17708 mode function using `eval-after-load'.
17709
17710 2005-07-21 Kim F. Storm <storm@cua.dk>
17711
17712 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
17713 included when reporting an emacs crash, and tell about the DEBUG file.
17714
17715 * image-file.el (insert-image-file): Add yank-handler.
17716 (image-file-yank-handler): Yank handler to make unique copies of
17717 images when they are yanked into a buffer next to each other.
17718
17719 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
17720
17721 * comint.el (comint-use-prompt-regexp, comint-send-input)
17722 (comint-source-default, comint-extract-string)
17723 (comint-get-source, comint-word, comint-completion)
17724 (comint-source, comint-prompt-read-only, comint-update-fence):
17725 Fix typos in docstrings.
17726 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
17727 Declare with define-obsolete-*-alias macros.
17728 (comint-previous-matching-input-from-input)
17729 (comint-next-matching-input-from-input)
17730 (comint-previous-matching-input, comint-next-matching-input)
17731 (comint-forward-matching-input):
17732 Improve argument/docstring consistency.
17733
17734 * desktop.el (desktop-clear-preserve-buffers-regexp):
17735 Also preserve the *server* buffer.
17736
17737 * simple.el (clone-indirect-buffer): Doc fix.
17738 (fixup-whitespace, just-one-space)
17739 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
17740 (next-error, next-error-highlight)
17741 (next-error-highlight-no-select, next-error-last-buffer)
17742 (next-error-buffer-p, next-error-find-buffer, next-error)
17743 (previous-error, next-error-no-select, previous-error-no-select)
17744 (open-line, split-line, minibuffer-prompt-width, kill-new)
17745 (binary-overwrite-mode): Fix typos in docstrings.
17746 (set-fill-column): Fix typo in message.
17747
17748 * skeleton.el (skeleton-proxy-new): Doc fix.
17749
17750 * strokes.el (strokes-load-hook): Doc fix.
17751 (strokes-grid-resolution, strokes-get-grid-position)
17752 (strokes-renormalize-to-grid, strokes-read-stroke)
17753 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
17754 (strokes-global-map): Fix typos in docstrings.
17755 (strokes-help): Doc fix. Fix help message and pass it through
17756 `substitute-command-keys'.
17757
17758 * tempo.el (tempo-insert-prompt, tempo-interactive)
17759 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
17760 (tempo-insert-string-functions, tempo-local-tags)
17761 (tempo-define-template, tempo-insert-template)
17762 (tempo-insert-prompt-compat, tempo-is-user-element)
17763 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
17764 Fix typos in docstrings.
17765
17766 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
17767 (vcursor-key-bindings, vcursor-use-vcursor-map)
17768 (vcursor-find-window, vcursor-scroll-down)
17769 (vcursor-disable, vcursor-beginning-of-buffer)
17770 (vcursor-end-of-buffer): Fix typos in docstrings.
17771 (vcursor-relative-move, vcursor-get-char-count):
17772 Improve argument/docstring consistency.
17773
17774 * version.el: "?\ " -> "?\s".
17775
17776 * wid-edit.el (widget-default-create, widget-after-change)
17777 (widget-default-format-handler, widget-checklist-add-item)
17778 (widget-radio-add-item, widget-choose, widget-specify-secret)
17779 (widget-field-value-create, widget-field-value-get)
17780 (widget-editable-list-format-handler)
17781 (widget-editable-list-entry-create, widget-group-value-create)
17782 (widget-documentation-link-add)
17783 (widget-documentation-string-value-create): "?\ " -> "?\s".
17784 (widget-convert-text): Doc fix.
17785 (widget-narrow-to-field, widget-field-find)
17786 (widget-url-link-action, widget-emacs-library-link-action)
17787 (widget-color-notify): Fix typos in docstrings.
17788
17789 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
17790 (x-select-text, set-w32-system-coding-system)
17791 (w32-add-charset-info): Fix typos in docstrings.
17792
17793 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
17794 (cua-enable-cua-keys, cua-use-hyper-key)
17795 (cua-virtual-rectangle-edges): Fix typos in docstrings.
17796 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
17797
17798 * net/tramp.el (tramp-handle-load): Fix typo in error message.
17799
17800 * emacs-lisp/re-builder.el (regexp-builder): Declare with
17801 `defalias' instead of faking it.
17802
17803 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
17804 (eshell-ls-missing, eshell-ls-dired-initial-args)
17805 (eshell-ls-use-in-dired): Fix typos in docstrings.
17806
17807 2005-07-20 Kim F. Storm <storm@cua.dk>
17808
17809 * emulation/cua-base.el (cua-mode): Improve doc string.
17810
17811 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
17812
17813 * abbrev.el (expand-region-abbrevs): Doc fix.
17814 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
17815 Improve argument/docstring consistency.
17816
17817 * arc-mode.el (archive-get-descr, archive-alternate-display):
17818 Doc fixes.
17819 (archive-l-e): Improve argument/docstring consistency.
17820 (archive-tmpdir, archive-unixdate, archive-unixtime)
17821 (archive-chmod-entry): Fix typos in docstrings.
17822 (archive-unflag, archive-unflag-backwards)
17823 (archive-unmark-all-files): "?\ " -> "?\s".
17824
17825 * buff-menu.el (Buffer-menu-unmark): Doc fix.
17826 (Buffer-menu-not-modified, Buffer-menu-execute)
17827 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
17828 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
17829
17830 * composite.el (compose-string, encode-composition-rule)
17831 (compose-last-chars): Fix typos in docstrings.
17832
17833 * desktop.el (desktop-enable, desktop-basefilename):
17834 Declare with `define-obsolete-variable-alias'.
17835 (desktop-internal-v2s): Don't quote keywords.
17836 (desktop-clear): "?\ " -> "?\s".
17837
17838 * dired.el (dired-align-file, dired-flag-backup-files)
17839 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
17840 (dired-listing-switches, dired-ls-F-marks-symlinks)
17841 (dired-dwim-target, dired-load-hook, dired-mode-hook)
17842 (dired-directory, dired-faces, dired, dired-revert)
17843 (dired-mode, dired-summary, dired-view-file)
17844 (dired-copy-filename-as-kill, dired-delete-file)
17845 (dired-no-confirm, dired-unmark-all-marks)
17846 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
17847 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
17848 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
17849 Fix typos in message strings.
17850
17851 * dired-x.el (virtual-dired): Declare with `defalias'.
17852 (dired-mark-unmarked-files, dired-local-variables-file)
17853 (dired-omit-here-always): Doc fix.
17854 (dired-omit-mode, dired-find-subdir)
17855 (dired-enable-local-variables, dired-clean-up-buffers-too)
17856 (dired-extra-startup, dired-mark-extension, dired-jump)
17857 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
17858 (dired-smart-shell-command, dired-guess-shell-alist-user)
17859 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
17860 (dired-x-bind-find-file, dired-x-submit-report):
17861 Fix typos in docstrings.
17862 (dired-mark-unmarked-files): "?\ " -> "?\s".
17863
17864 * dirtrack.el (dirtrack-list): Fix typos in docstring.
17865
17866 * faces.el (describe-face): "?\ " -> "?\s".
17867 (read-all-face-attributes, read-face-font, modify-face)
17868 (face-attr-construct, italic): Fix typos in docstrings.
17869 (frame-update-face-colors): Declare with
17870 `define-obsolete-function-alias'.
17871
17872 * files.el (find-file-noselect, recode-file-name): Doc fixes.
17873 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
17874 (magic-mode-alist, buffer-file-numbers-unique)
17875 (write-file-functions, get-free-disk-space):
17876 Fix typos in docstrings.
17877 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
17878 (write-contents-hooks, write-file-hooks):
17879 Declare with `define-obsolete-variable-alias'.
17880
17881 * forms-d2.el (arch-rj): Fix typo in docstrings.
17882 (arch-tocol): Likewise. "?\ " -> "?\s".
17883
17884 * frame.el (set-frame-font, cursor-in-non-selected-windows):
17885 Fix typo in docstring.
17886 (set-screen-width, set-screen-height): Delete redundant info in
17887 doctrings.
17888 (new-frame, screen-height, screen-width): Declare with
17889 `define-obsolete-function-alias'.
17890 (delete-frame-hook, blink-cursor): Declare with
17891 `define-obsolete-variable-alias'.
17892
17893 * paths.el (prune-directory-list): Fix typos in docstring.
17894
17895 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
17896 (cvs-prefix-get): Fix typos in docstrings.
17897
17898 * ps-print.el (ps-extend-face-list, ps-extend-face)
17899 (ps-print-background-image): Fix typos in docstrings.
17900 (ps-default-fg, ps-default-bg): Doc fixes.
17901
17902 * s-region.el (s-region-bind): Doc fix.
17903 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
17904
17905 * textmodes/org.el (org-table-formula-substitute-names)
17906 (org-table-get-vertical-vector): Doc fixes.
17907 (org-table-recalculate): Remove unused argument to `message'.
17908
17909 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
17910
17911 * textmodes/org.el (org-table-column-names)
17912 (org-table-column-name-regexp)
17913 (org-table-named-field-locations): New variables.
17914 (org-archive-subtree): Protect `this-command' when calling
17915 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
17916 the kill buffer.
17917 (org-complete): Remove fixed-formula completion.
17918 (org-edit-formulas-map): New variable.
17919 (org-table-edit-formulas): New command.
17920 (org-finish-edit-formulas, org-abort-edit-formulas)
17921 (org-show-variable, org-table-get-vertical-vector): New functions.
17922 (org-table-maybe-eval-formula): Handle `:=' fields.
17923 (org-table-get-stored-formulas, org-table-store-formulas)
17924 (org-table-get-formula, org-table-modify-formulas)
17925 (org-table-replace-in-formulas): Handle named field formulas.
17926 (org-table-get-specials): Store locations of named fields.
17927
17928 2005-07-19 Juri Linkov <juri@jurta.org>
17929
17930 * progmodes/grep.el (grep-regexp-alist)
17931 (grep-mode-font-lock-keywords, grep-process-setup):
17932 Use default GNU grep match color "01;31m" instead of "01;41m".
17933 (grep-regexp-alist, grep-mode-font-lock-keywords):
17934 Use `\\[[0-9]*m' instead of `\\[00m'.
17935 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
17936 sgr_start where its handling is more important. Use the real
17937 length of sgr_start instead of constant 8.
17938 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
17939 specially. Delete all remaining escape sequences.
17940 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
17941 (grep-regexp-alist): Make hyperlink only for binary file name
17942 instead of the whole line.
17943 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
17944 (grep-mode): Add autoload.
17945
17946 * emacs-lisp/find-func.el (find-function-regexp):
17947 Add `define-compilation-mode'.
17948
17949 2005-07-19 Juri Linkov <juri@jurta.org>
17950
17951 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
17952 (compare-windows-sync-string-size, compare-windows-recenter)
17953 (compare-windows-highlight, compare-windows): Add version 22.1.
17954 (compare-windows) <defface>: Inherit from lazy-highlight instead
17955 of duplicating its default value.
17956
17957 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
17958 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
17959
17960 * descr-text.el (describe-char): Create link buttons for `charset'
17961 and `code point'. Add the current input method name with a link
17962 button to `to input' field. Print face names of display table
17963 characters in `The display table entry is displayed by' section
17964 instead of printing face-id in the `display' field.
17965 Guess hardcoded faces and create a link button for them.
17966 Skip empty fields when calculating max-width.
17967 Treat `widget-create' specially while inserting strings from the
17968 collected field list.
17969 (describe-char-after): Made obsolete in version 22.1, not 21.5.
17970
17971 * diff-mode.el (diff-file-header): Change foreground color from
17972 yellow to green on light backgrounds.
17973 (diff-context): Inherit from `shadow' only for color/grayscale
17974 with more than 88 colors.
17975 (diff-indicator-removed, diff-indicator-added)
17976 (diff-indicator-changed): New faces.
17977 (diff-font-lock-keywords): Use new faces. Regroup rules.
17978 Add "^---$" for `normal' diff format. Fontify `#' lines with
17979 font-lock-comment-delimiter-face and font-lock-comment-face.
17980 Add `#' to ^[^...] in the rule for `diff-context-face'.
17981
17982 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
17983 a button-like box. Inherit from `highlight' on low colors.
17984 (shadow): Use shades of gray only for color/grayscale with
17985 more than 88 colors. Use green for light backgrounds with
17986 8 colors, and yellow for dark backgrounds with 8 colors.
17987
17988 * font-lock.el (font-lock-regexp-grouping-backslash):
17989 Don't inherit from escape-glyph (use bold for all cases).
17990
17991 * info.el (info-xref-visited): Use light foreground color `violet'
17992 for dark backgrounds instead of dark color `magenta3'.
17993 (info-title-1): Use `yellow' color for dark backgrounds.
17994
17995 * isearch.el (isearch): Use not-too-dark magenta3 instead of
17996 too-light magenta2.
17997
17998 * replace.el (match): Use slightly more light RoyalBlue3 instead
17999 of dark RoyalBlue4.
18000
18001 * wid-edit.el (widget-inactive): Inherit from `shadow'.
18002
18003 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
18004
18005 * novice.el (disabled-command-hook): Declare it with
18006 `define-obsolete-variable-alias'.
18007
18008 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
18009 (desktop-buffer-misc-functions, desktop-buffer-handlers)
18010 (desktop-load-default): Add release to obsolescence info.
18011 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
18012 (desktop-append-buffer-args, desktop-read):
18013 Fix typos in docstrings.
18014 (desktop-kill): Fix typo in message.
18015 (desktop-save): Doc fix.
18016
18017 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
18018
18019 * viper-cmd.el (viper-escape-to-state): Bug fix.
18020 (viper-envelop-ESC-key): Change the definition of fast
18021 keysequence so it'll work with keyboard macros.
18022
18023 * ediff.el (ediff-patch-buffer): Change the docstring.
18024
18025 2005-07-19 Kenichi Handa <handa@m17n.org>
18026
18027 * international/mule-cmds.el (select-safe-coding-system): Try to
18028 use an auto-coding (if any) before anything else. If the found
18029 auto-coding is invalid, show a warning message.
18030
18031 * international/mule.el (find-auto-coding): New function created
18032 by modifying the body of set-auto-coding.
18033 (set-auto-coding): Use find-auto-coding to find a coding.
18034
18035 2005-07-18 Richard M. Stallman <rms@gnu.org>
18036
18037 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
18038 not isearch-mode-end-hook-error.
18039 (allout-before-change-protect): Fix error message.
18040
18041 2005-07-18 Juri Linkov <juri@jurta.org>
18042
18043 * allout.el (allout-mode):
18044 * calculator.el (calculator-copy):
18045 * custom.el (custom-known-themes):
18046 * dired.el (dired-desktop-buffer-misc-data)
18047 (dired-restore-desktop-buffer):
18048 * dired-x.el (dired-omit-marker-char):
18049 * files.el (basic-save-buffer):
18050 * font-core.el (font-lock-mode):
18051 * calendar/calendar.el (calendar-goto-hebrew-date)
18052 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
18053 (calendar-goto-persian-date):
18054 * language/ethio-util.el (ethio-sera-to-fidel-region):
18055 * textmodes/picture.el (picture-mode):
18056 Delete duplicate duplicate words.
18057
18058 2005-07-18 Juri Linkov <juri@jurta.org>
18059
18060 * isearch.el (isearch-mode-map): Remove key bindings for regexp
18061 chars * ? } |.
18062 (isearch-fallback): Don't call `isearch-process-search-char'.
18063 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
18064 (isearch-process-search-char): Call `isearch-fallback' for regexp
18065 chars * ? } |.
18066 (isearch-return-char): Make obsolete with `make-obsolete' instead
18067 of simply documenting it as obsolete in the docstring.
18068 (isearch-fallback): Refill docstring.
18069
18070 * international/isearch-x.el
18071 (isearch-process-search-multibyte-characters): Remove unneeded
18072 `concat'. Add intermediate values to `junk-hist' instead of
18073 `minibuffer-history'. Test the length of `str'.
18074
18075 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
18076
18077 * allout.el (allout-resolve-xref): Fix typos in error strings.
18078 (allout-before-change-protect): Remove unneeded `concat'.
18079
18080 * array.el (array-mode, array-reconfigure-rows)
18081 (untabify-backward): Fix typos in docstrings.
18082 (array-reconfigure-rows): Use `insert-buffer-substring', not
18083 `insert-buffer'.
18084
18085 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
18086 * progmodes/ada-mode.el (ada-make-body):
18087 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
18088
18089 * dired.el (dired-log):
18090 * tar-mode.el (tar-subfile-save-buffer):
18091 * play/zone.el (zone-pgm-stress-destress):
18092 Use `insert-buffer-substring', not `insert-buffer'.
18093
18094 2005-07-17 Simon Josefsson <jas@extundo.com>
18095
18096 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
18097
18098 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
18099
18100 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
18101 Add plain auth method.
18102 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
18103
18104 2005-07-17 Kim F. Storm <storm@cua.dk>
18105
18106 * ido.el (dired-other-window): Add ido property.
18107
18108 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
18109
18110 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
18111 Fix typo in docstring.
18112 (byte-compile-interactive-only-functions): Add `insert-buffer' and
18113 `insert-file-literally'.
18114
18115 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
18116 info and delete redundant message. Doc fix.
18117 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
18118 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
18119
18120 2005-07-16 Richard M. Stallman <rms@gnu.org>
18121
18122 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
18123 (byte-compile-and): Use byte-compile-and-recursion.
18124 (byte-compile-or-recursion): New function.
18125 (byte-compile-or): Use that.
18126 (byte-compile-if): Guard the else-clause too.
18127 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
18128
18129 * isearch.el (isearch-mode-end-hook-quit): New variable.
18130 (isearch-done): Bind it.
18131 (isearch-mode-end-hook): Doc fix.
18132
18133 * allout.el (allout-isearch-did-quit): Variable deleted.
18134 (allout-real-isearch-abort): Function name no longer used.
18135 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
18136 (allout-isearch-rectification): isearch-mode always exists.
18137 Don't set allout-isearch-did-quit.
18138 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
18139 allout-isearch-did-quit.
18140 (allout-enwrap-isearch): Just add the hook.
18141 (allout-isearch-abort): Function deleted.
18142 (allout-pre-command-business): Avoid warning.
18143
18144 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
18145 Correctly avoid warnings.
18146 (pascal-outline): Likewise.
18147
18148 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
18149
18150 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
18151
18152 * play/tetris.el (tetris-mode): Avoid warning.
18153
18154 * play/snake.el (snake-mode): Avoid warning.
18155
18156 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
18157 (gamegrid-set-display-table): Avoid warning.
18158 (gamegrid-set-timer): Likewise.
18159 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
18160 (gamegrid-add-score-with-update-game-score-1): Take FILE
18161 as argument.
18162 (gamegrid-add-score-with-update-game-score): Pass that argument.
18163 Rename have-shared-game-dir to gamegrid-shared-game-dir.
18164
18165 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
18166
18167 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
18168 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
18169
18170 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
18171 and insert-file.
18172
18173 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
18174 (sc-ask): Avoid warnings.
18175
18176 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
18177 (eshell-hist-initialize): Use that var the natural way.
18178
18179 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
18180
18181 * emacs-lisp/re-builder.el (reb-cook-regexp):
18182 Avoid warning calling lre-compile-string.
18183 (reb-color-display-p): Avoid warning.
18184
18185 * calculator.el (calculator-last-input): Guard uses
18186 of event-key and key-press-event-p.
18187 (event-key, key-press-event-p): Delete definitions.
18188
18189 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
18190 (find-gc-source-directory, find-gc-subrs-callers)
18191 (find-gc-noreturn-list, find-gc-source-files)
18192 (find-gc-subrs-called): Vars renamed and defvar'd.
18193
18194 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
18195 (checkdoc-overlay-put, checkdoc-delete-overlay)
18196 (checkdoc-overlay-start, checkdoc-overlay-end)
18197 (checkdoc-mode-line-update, checkdoc-char=):
18198 Define such that compiler knows they are defined.
18199 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
18200 (checkdoc-read-event): Delete. Use read-event directly.
18201
18202 * whitespace.el (whitespace-make-overlay)
18203 (whitespace-overlay-put, whitespace-delete-overlay)
18204 (whitespace-overlay-start, whitespace-overlay-end):
18205 Define such that compiler knows they are defined.
18206 (whitespace): Move conditional inside.
18207
18208 * tempo.el (tempo-insert-template): Suppress warning.
18209
18210 * ediff-diff.el (longlines-mode): Add defvar.
18211
18212 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
18213
18214 * server.el: Bind "C-x #" in a way that works even if C-x is
18215 redefined to a command key, not a prefix key.
18216
18217 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
18218
18219 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
18220 cl-make-type-test till execution time.
18221
18222 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
18223
18224 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
18225 arg ARG and use it.
18226
18227 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
18228
18229 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
18230
18231 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
18232
18233 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
18234 a defcustom with two :set or :type keywords.
18235
18236 2005-07-15 Richard M. Stallman <rms@gnu.org>
18237
18238 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
18239 Don't give ^M comment-end syntax.
18240
18241 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
18242
18243 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
18244 Don't consider gdbmi (gdb-mi.el has its own update functions).
18245 (gdb-var-delete): Make it work for gdbmi as well.
18246 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
18247
18248 * progmodes/gud.el (etags, sdb): Only require etags when needed.
18249 (gud-speedbar-menu-items): Correct logic for enabling items.
18250
18251 2005-07-15 Kim F. Storm <storm@cua.dk>
18252
18253 * ido.el: Fix commentary.
18254 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
18255 Use with-no-warnings around ffap-guesser.
18256 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
18257 Let bind minibuffer-completing-file-name to t.
18258
18259 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
18260
18261 * startup.el (site-run-file, keyboard-type): Doc fixes.
18262 (command-line): Check for "--basic-display" argument; also for
18263 "--quick", not "--bare-bones" (which was renamed).
18264 (fancy-splash-text): Add missing item "Getting New Versions".
18265 (normal-splash-screen): Fix typos and improve consistency with
18266 `fancy-splash-text'. Update copyright year.
18267
18268 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
18269 valid binding for `help-char'.
18270
18271 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
18272
18273 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
18274
18275 * term.el (term-mode): Disable cua-mode for term buffers.
18276
18277 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
18278
18279 * add-log.el (add-log-mailing-address, change-log-merge):
18280 Doc fixes.
18281 (change-log-get-method-definition): Fix typo in docstring.
18282
18283 2005-07-14 Kim F. Storm <storm@cua.dk>
18284
18285 * emulation/cua-base.el:
18286 (cua--pre-command-handler-1, cua--pre-command-handler)
18287 (cua--post-command-handler-1, cua--post-command-handler):
18288 Split in two. Check (buffer local) value of cua-mode.
18289 (cua-selection-mode): New command.
18290
18291 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
18292
18293 * custom.el (custom-initialize-safe-set)
18294 (custom-initialize-safe-default): Doc fixes.
18295
18296 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
18297 and simplify :init-value again.
18298
18299 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
18300 and simplify :init-value again. Delete autoload.
18301
18302 * startup.el (command-line): Use `custom-reevaluate-setting' again
18303 for tooltip-mode.
18304
18305 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
18306 a defcustom with two :initialize keywords.
18307
18308 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
18309
18310 * allout.el (my-mark-marker, allout-isearch-prior-pos)
18311 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
18312 (allout-post-command-business, allout-flag-region)
18313 (isearch-reenable-font-lock, allout-yank)
18314 (allout-insert-latex-header, allout-insert-latex-trailer)
18315 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
18316 (allout-latex-verb-quote): Fix typos in docstrings.
18317 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
18318 (allout-unprotected, allout-prefix-data):
18319 Improve argument/docstring consistency.
18320 (allout-chart-subtree): Fix argument spec.
18321 (allout-open-topic): Rename `use_sib_bullet' argument to
18322 `use-sib-bullet'. Doc fix.
18323
18324 * whitespace.el (whitespace-check-buffer-leading)
18325 (whitespace-check-buffer-trailing)
18326 (whitespace-check-buffer-indent)
18327 (whitespace-check-buffer-spacetab)
18328 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
18329 (whitespace-check-leading-whitespace)
18330 (whitespace-check-trailing-whitespace)
18331 (whitespace-check-spacetab-whitespace)
18332 (whitespace-check-indent-whitespace)
18333 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
18334 (whitespace-modes): Fix typos in docstrings.
18335 (defgroup, defcustom): Doc fixes.
18336
18337 * winner.el (winner-mode, winner-boring-buffers)
18338 (winner-pending-undo-ring): Doc fixes.
18339 (winner-ring): Remove unneeded `progn'.
18340 (winner-equal): `defsubst' it.
18341 (winner-redo): Fix message.
18342
18343 2005-07-13 Kim F. Storm <storm@cua.dk>
18344
18345 * simple.el (line-move-1): Always use vertical-motion to
18346 do the last (or only) line move to ensure some movement.
18347 Undo 2005-06-23 change--don't check for overlays.
18348
18349 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18350
18351 * term/mac-win.el (ccl-encode-mac-roman-font)
18352 (ccl-encode-mac-centraleurroman-font)
18353 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
18354 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
18355 Change charset-id boundary of dimension to ?\xef.
18356 (mac-char-fontspec-list): New constant.
18357 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
18358 argument. Nil uses itself as family in font-spec. Previous
18359 behavior for nil is now provided by non-nil non-string argument.
18360 All callers changed. Add font-specs for Mac fonts to
18361 "fontset-default" unless iso8859-1 fonts are installed.
18362
18363 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
18364
18365 * progmodes/sh-script.el (sh-get-indent-info): Only indent
18366 a continuation line if the \ is preceded by SPC or TAB.
18367 (sh-get-indent-info): Simplify.
18368 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
18369 Use with-current-buffer.
18370
18371 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
18372 when the matched text is empty.
18373
18374 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
18375
18376 * startup.el (command-line): Revert to previous handling of
18377 tooltip-mode. Explain in comment why the complexity is needed.
18378
18379 * tooltip.el (tooltip-mode): Revert to previous implementation of
18380 its defcustom.
18381
18382 * frame.el (blink-cursor-mode): Revert to previous implementation
18383 of its defcustom. Update comment.
18384
18385 2005-07-12 Lars Hansen <larsh@soem.dk>
18386
18387 * desktop.el: Update e-mail address.
18388
18389 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18390
18391 * term/mac-win.el (mac-services-mail-selection)
18392 (mac-services-mail-to): New functions.
18393 (mac-application-menu-map): Bind them.
18394
18395 2005-07-12 wulei <milton@wulei.net> (tiny change)
18396
18397 * progmodes/gdb-ui.el: Add note about buffering with Windows.
18398
18399 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
18400
18401 * custom.el (custom-reevaluate-setting): Doc fix.
18402
18403 2005-07-11 Jay Belanger <belanger@truman.edu>
18404
18405 * calc/calc.el (calc-embedded-announce-formula-alist)
18406 (calc-embedded-open-close-plain-alist)
18407 (calc-embedded-open-close-mode-alist): Add checks for additional
18408 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
18409
18410 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
18411
18412 * custom.el (custom-enable-theme): Don't add theme to
18413 `custom-enabled-themes' with `push' because there is no
18414 setf-method for `delq'.
18415
18416 2005-07-11 Richard M. Stallman <rms@gnu.org>
18417
18418 * custom.el (custom-declare-variable): Doc fix.
18419
18420 * dired-aux.el (dired-compare-directories): Remove "." and ".."
18421 from the alists.
18422
18423 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
18424 Do nothing if edebug-active.
18425
18426 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
18427 (edebug-display): Do it here instead.
18428
18429 2005-07-10 Richard M. Stallman <rms@gnu.org>
18430
18431 * cus-face.el (custom-theme-set-faces): Make it work.
18432 (custom-reset-faces): Doc fix.
18433 (custom-theme-reset-internal-face, custom-theme-face-value):
18434 Functions deleted.
18435
18436 * custom.el (custom-push-theme): Maintain list of the settings
18437 of a given theme in its theme-settings property.
18438 Maintain position of old settings in the theme-value
18439 or theme-face property.
18440 (custom-enabled-themes): New variable.
18441 (custom-theme-enabled-p): New function.
18442 (provide-theme): Update custom-enabled-themes.
18443 Disable and reenable the `user' theme.
18444 (require-theme): Doc fix.
18445 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
18446 (custom-theme-value, custom-theme-variable-value): Likewise.
18447 (custom-theme-reset-internal): Likewise.
18448 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
18449 (custom-enable-theme, custom-disable-theme): New functions.
18450 (custom-variable-theme-value, custom-face-theme-value): Likewise.
18451 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
18452 (custom-theme-reset-variables): Simplify.
18453 (deftheme, custom-declare-theme, custom-make-theme-feature):
18454 Definitions moved.
18455
18456 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
18457
18458 * longlines.el (longlines-show-region)
18459 (longlines-unshow-hard-newlines): Recognize hard newlines by
18460 non-nil hard property, instead of t.
18461
18462 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
18463
18464 * viper-cmd.el (viper--key-maps): New variable.
18465 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
18466 emulation-mode-map-alists.
18467 (viper-envelop-ESC-key): Use viper-subseq.
18468 (viper-search-forward/backward/next): Disable debug-on-error.
18469
18470 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
18471 (viper-ESC-key): New defcustoms.
18472
18473 * viper-macs.el (ex-map-read-args): Use viper-subseq.
18474
18475 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
18476 (viper-subseq): Copy of subseq from cl.el.
18477
18478 * viper.el (viper-go-away, viper-set-hooks): Use
18479 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
18480
18481 * viper-mous.el (viper-current-frame-saved): Use defvar.
18482
18483 * viper-init.el: Get rid of -face in face names.
18484
18485 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
18486 Make it work with longlines mode
18487
18488 * ediff-mult.el (ediff-meta-mode-hook): New variable.
18489
18490 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
18491
18492 * ediff-init.el: Get rid of -face in face names.
18493
18494 2005-07-10 Richard M. Stallman <rms@gnu.org>
18495
18496 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
18497 and with-timeout-unsuspend.
18498
18499 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
18500 and with-timeout-unsuspend.
18501
18502 * emacs-lisp/timer.el (with-timeout-timers): New variable.
18503 (with-timeout): Bind that variable to record timers.
18504 (with-timeout-suspend, with-timeout-unsuspend): New functions.
18505
18506 * emacs-lisp/debug.el (debug-help-follow): New function.
18507 (debugger-mode-map): Use that instead of help-follow.
18508 (debugger-setup-buffer): Use eval-buffer-list
18509 to handle eval-buffer frames.
18510
18511 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
18512
18513 * timezone.el (timezone-parse-date): Change first regexp
18514 so it will not mistakenly match dates with no time zone.
18515
18516 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
18517
18518 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
18519
18520 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
18521
18522 * custom.el (custom-initialize-safe-set)
18523 (custom-initialize-safe-default): New functions.
18524
18525 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
18526 and simplify :init-value.
18527
18528 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
18529 and simplify :init-value. Delete obsolete comment.
18530
18531 * startup.el (command-line): Use `custom-reevaluate-setting' to
18532 handle `tooltip-mode'. Delete obsolete comment.
18533
18534 * files.el (set-visited-file-name): Avoid calling
18535 `file-name-nondirectory' with a nil argument.
18536
18537 2005-07-09 Richard M. Stallman <rms@gnu.org>
18538
18539 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
18540 was called with nil for the buffer, handle the read position right.
18541 Handle read position for eval-region, too.
18542
18543 2005-07-09 Juri Linkov <juri@jurta.org>
18544
18545 * fringe.el (fringe-mode): Add period in docstring.
18546 (fringe-query-style): Build prompt depending on `all-frames' arg.
18547
18548 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
18549 to not create links to unrelated functions in the Help buffer.
18550
18551 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
18552 Doc fix.
18553
18554 * simple.el (next-error-hook): New variable.
18555 (next-error): Use it. Doc fix.
18556
18557 * textmodes/ispell.el (ispell-command-loop): Add current
18558 dictionary name and program name to mode-line-format.
18559 (ispell-region, ispell-process-line): Add current dictionary name
18560 and program name to messages.
18561
18562 2005-07-08 Jay Belanger <belanger@truman.edu>
18563
18564 * calc/calc.el (calc-embedded-announce-formula-alist)
18565 (calc-embedded-open-close-formula-alist)
18566 (calc-embedded-open-close-word-alist)
18567 (calc-embedded-open-close-plain-alist)
18568 (calc-embedded-open-close-new-formula-alist)
18569 (calc-embedded-open-close-mode-alist)
18570 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
18571 (calc-embedded-mode-hook): New variables.
18572
18573 * calc/calc-embed.el (calc-embedded-firsttime)
18574 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
18575 New variables.
18576 (calc-do-embedded): Use calc-embedded-firsttime,
18577 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
18578 determine whether or not to run hooks.
18579 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
18580 calc-embedded-firsttime-formula appropriately.
18581 Set calc-embedded delimiter variables according to mode.
18582
18583 2005-07-08 Richard M. Stallman <rms@gnu.org>
18584
18585 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
18586 Check for "emacs", etc., as entire symbol, not just as word.
18587 (checkdoc-file-comments-engine): Use regexp-quote on FN.
18588
18589 * files.el (set-visited-file-name): Report the error
18590 for "empty filename" earlier.
18591 (kill-some-buffers): Ignore buffers already dead.
18592
18593 * fringe.el (fringe-mode): Doc fix.
18594
18595 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
18596 Check for (featurep 'xemacs) and turn off warnings in what it guards.
18597 Use unwind-protect to ensure byte-compile-unresolved-functions
18598 is updated.
18599
18600 * whitespace.el (whitespace-buffer-leading-cleanup):
18601 Simplify w/ skip-chars-forward.
18602 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
18603
18604 * mail/rmail.el (rmail-only-expunge): Fix paren error.
18605 Unconditionally try to leave point at the same old place.
18606
18607 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
18608
18609 * comint.el (comint-postoutput-scroll-to-bottom)
18610 (comint-show-maximum-output): Take scroll-margin into consideration.
18611
18612 2005-07-08 Kim F. Storm <storm@cua.dk>
18613
18614 * ido.el (ido-use-filename-at-point): New choice `guess'.
18615 (ido-file-internal): Try ffap-guesser if selected.
18616
18617 * ido.el (ido-before-fallback-functions): New hook.
18618 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
18619 (ido-read-file-name): Run it.
18620
18621 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
18622
18623 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
18624 strings rather than a list of symbols to the completion function.
18625
18626 2005-07-07 Jay Belanger <belanger@truman.edu>
18627
18628 * calc/calc-units.el (math-apply-units): Change the places in
18629 which units are simplified.
18630
18631 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
18632
18633 * cus-edit.el (customize-option, customize-option-other-window):
18634 Make them handle aliases.
18635
18636 * custom.el (custom-variable-p): Make it recursively follow
18637 aliases. Mention that in the docstring.
18638
18639 2005-07-07 Richard M. Stallman <rms@gnu.org>
18640
18641 * cus-start.el (exec-path): Use `directory' instead of `file'.
18642 Fix tag for nil.
18643
18644 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
18645
18646 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
18647 when called non-interactively. Doc fix.
18648
18649 2005-07-07 Lute Kamstra <lute@gnu.org>
18650
18651 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
18652 new address as well.
18653
18654 2005-07-07 Kenichi Handa <handa@m17n.org>
18655
18656 * international/mule.el (make-coding-system):
18657 Describe `ascii-incompatible' property in the docstring.
18658 (set-file-name-coding-system): Signal an error if coding-system is
18659 ascii-incompatible.
18660 (set-keyboard-coding-system): Likewise.
18661
18662 * international/mule-cmds.el (set-default-coding-systems):
18663 Don't set default-file-name-coding-system and
18664 default-keyboard-coding-system if coding-system is ASCII-incompatible.
18665
18666 * international/utf-16.el: Declare that all UTF-16-based coding
18667 systems are ASCII-incompatible.
18668
18669 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
18670
18671 * progmodes/gud.el: Require font-lock for displaying errors.
18672 Used by gdb-ui.el.
18673
18674 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
18675
18676 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
18677 values for the pattern lists which are `read'able but not
18678 `append'able (like symbols).
18679
18680 2005-07-06 Richard M. Stallman <rms@gnu.org>
18681
18682 * progmodes/flymake.el (flymake-float-time): Instead of
18683 with-no-warnings, test for xemacs.
18684 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
18685 to avoid warning.
18686
18687 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
18688
18689 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
18690
18691 2005-07-05 Lute Kamstra <lute@gnu.org>
18692
18693 * battery.el: Add support for Darwin (with much debugging help
18694 from Samuel Lauber <sam124@operamail.com>).
18695 (battery-status-function, battery-echo-area-format)
18696 (battery-mode-line-format): Add support for pmset on Darwin.
18697 (battery-load-low, battery-load-critical): New user options.
18698 (battery-pmset): New function.
18699
18700 2005-07-05 Lute Kamstra <lute@gnu.org>
18701
18702 Update FSF's address in GPL notices.
18703
18704 * textmodes/page-ext.el: Update FSF's address.
18705
18706 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
18707
18708 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
18709 filling from using prefix when filling a single-line docstring.
18710
18711 * progmodes/flymake.el: Remove useless eval-when-compile.
18712
18713 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
18714
18715 2005-07-04 Richard M. Stallman <rms@gnu.org>
18716
18717 * textmodes/org.el (org-file-apps-defaults-gnu):
18718 Rename from org-file-apps-defaults-linux.
18719 (org-default-apps): Don't test system-type for `linux'.
18720 (org-file-apps): Doc fix.
18721
18722 2005-07-04 David Ponce <david@dponce.com>
18723
18724 * tree-widget.el: Improve header Commentary section.
18725 (tree-widget) [defgroup]
18726 (tree-widget-image-enable, tree-widget-themes-directory)
18727 (tree-widget-theme, tree-widget-image-properties-emacs)
18728 (tree-widget-image-properties-xemacs, tree-widget-create-image)
18729 (tree-widget-image-formats, tree-widget-control)
18730 (tree-widget-empty-control, tree-widget-leaf-control
18731 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
18732 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
18733 (tree-widget-keep, tree-widget-after-toggle-functions)
18734 (tree-widget-open-node, tree-widget-close-node): Doc fix.
18735 (tree-widget-open-control, tree-widget-close-control): Fix doc and
18736 :help-echo message.
18737 (tree-widget-set-theme): Doc fix. Use `string-equal'.
18738 (tree-widget-image-properties): Doc fix. Clearer implementation.
18739 (tree-widget--cursors): New constant.
18740 (tree-widget-lookup-image): New function split from
18741 `tree-widget-find-image'. Clearer implementation.
18742 (tree-widget-find-image): Use it.
18743 (tree-widget-button-keymap): Use `set-keymap-parent'.
18744 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
18745 Define the sub-widgets here.
18746 (tree-widget-node): Check that :node is not a tree-widget.
18747 (tree-widget-get-super, tree-widget-open-control)
18748 (tree-widget-close-control, tree-widget-empty-control)
18749 (tree-widget-leaf-control, tree-widget-guide)
18750 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
18751 (tree-widget-no-handle, tree-widget-value-delete)
18752 (tree-widget-map): Remove.
18753 (tree-widget-children-value-save): Doc fix. Simplified.
18754 (tree-widget-value-create): Update according to previous changes.
18755
18756 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
18757
18758 * textmodes/org.el: Leading space replaced by TABS.
18759 (org-recalc-marks, org-table-rotate-recalc-marks)
18760 (org-table-get-specials): Treat "^" and "_" marks.
18761 (org-table-justify-field-maybe): Optional argument NEW.
18762 (org-table-eval-formula): Parsing of the format simplified.
18763 New modes C,I. Honor the %= parameter in the current table.
18764 Avoid unnecessary re-align by using the NEW argument to
18765 `org-table-justify-field-maybe'.
18766 (org-calc-default-modes): Default for date-format mimicks org-mode.
18767 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
18768
18769 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
18770
18771 * cus-face.el (custom-theme-set-faces): Make it handle face
18772 aliases whose alias declarations are pre- or autoloaded.
18773
18774 2005-07-04 Juri Linkov <juri@jurta.org>
18775
18776 * faces.el (read-face-name): Put the code for getting a face name
18777 from the buffer before adding the faces from the `face' property.
18778 Use `completing-read-multiple' instead of `completing-read'.
18779 Require `crm'. Add default value and post-process the returned
18780 list of faces.
18781
18782 * emacs-lisp/crm.el (crm-find-current-element)
18783 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
18784
18785 * emacs-lisp/lisp-mode.el (eval-defun-1):
18786 * emacs-lisp/edebug.el (edebug-eval-defun):
18787 Remove unnecessary quotes.
18788
18789 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
18790
18791 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
18792 (prolog-indent-level): Fix typo in docstring.
18793
18794 * info.el (Info-history, Info-history-forward)
18795 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
18796
18797 * add-log.el (add-change-log-entry):
18798 * comint.el (comint-dynamic-list-input-ring)
18799 (comint-dynamic-list-completions):
18800 * dabbrev.el (dabbrev-expand):
18801 * delim-col.el (delimit-columns-rectangle-line):
18802 * diff-mode.el (diff-context->unified, diff-reverse-direction)
18803 (diff-unified->context):
18804 * ediff-init.el (ediff-abbrev-jobname):
18805 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
18806 (ediff-replace-session-activity-marker-in-meta-buffer):
18807 * info.el (Info-summary):
18808 * lpr.el (printify-region):
18809 * printing.el (pr-create-interface):
18810 * ps-print.el (ps-print-quote):
18811 * ses.el (ses-column-widths, ses-print-cell)
18812 (ses-adjust-print-width, ses-center):
18813 * shell.el (shell-file-name-quote-list):
18814 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
18815 (strokes-fill-current-buffer-with-whitespace)
18816 (strokes-xpm-for-stroke, strokes-list-strokes)
18817 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
18818 * term.el (term-dynamic-list-input-ring)
18819 (term-dynamic-list-completions):
18820 * calc/calc.el (math-format-stack-value):
18821 * emacs-lisp/edebug.el (edebug-display-freq-count):
18822 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
18823 (delphi-new-comment-line):
18824 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
18825 * progmodes/executable.el (executable-set-magic):
18826 * progmodes/python.el (inferior-python-mode):
18827 * progmodes/scheme.el (scheme-mode-syntax-table):
18828 * progmodes/sh-script.el (sh-maybe-here-document):
18829 * progmodes/sql.el (sql-copy-column):
18830 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
18831 * textmodes/bibtex.el (bibtex-mode):
18832 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
18833 (sgml-auto-attributes):
18834 * textmodes/table.el (table-insert, table-shorten-cell)
18835 (table--generate-source-scan-lines, table-delete-row)
18836 (*table--cell-delete-char, table--spacify-frame)
18837 (table--horizontally-shift-above-and-below)
18838 (table--cell-insert-char, table--cell-blank-str)
18839 (table--fill-region-strictly):
18840 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
18841 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
18842
18843 * add-log.el (change-log):
18844 * apropos.el (apropos):
18845 * comint.el (comint-completion, comint-source):
18846 * dabbrev.el (dabbrev):
18847 * delim-col.el (columns):
18848 * diff-mode.el (diff-mode):
18849 * ediff.el (ediff):
18850 * ediff-diff.el (ediff-diff):
18851 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
18852 * ediff-mult.el (ediff-mult):
18853 * ediff-ptch.el (ediff-ptch):
18854 * ediff-wind.el (ediff-window):
18855 * facemenu.el (facemenu):
18856 * indent.el (indent):
18857 * info.el (info):
18858 * jka-cmpr-hook.el (compression, jka-compr):
18859 * lpr.el (lpr):
18860 * outline.el (outlines):
18861 * pcmpl-cvs.el (pcmpl-cvs):
18862 * pcmpl-rpm.el (pcmpl-rpm):
18863 * printing.el (printing):
18864 * ps-print.el (postscript, ps-print, ps-print-horizontal)
18865 (ps-print-vertical, ps-print-headers, ps-print-font)
18866 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
18867 (ps-print-background, ps-print-printer, ps-print-page)
18868 (ps-print-miscellany):
18869 * ses.el (ses):
18870 * shell.el (shell, shell-directories, shell-faces):
18871 * startup.el (initialization):
18872 * strokes.el (strokes):
18873 * term.el (term):
18874 * uniquify.el (uniquify):
18875 * w32-vars.el (w32):
18876 * calc/calc.el (calc):
18877 * emacs-lisp/bytecomp.el (bytecomp):
18878 * emacs-lisp/cl-indent.el (lisp-indent):
18879 * emacs-lisp/edebug.el (edebug):
18880 * emacs-lisp/elp.el (elp):
18881 * emacs-lisp/testcover.el (testcover):
18882 * emacs-lisp/trace.el (trace):
18883 * emulation/viper-ex.el (viper-ex):
18884 * emulation/viper-mous.el (viper-mouse):
18885 * mail/mailalias.el (mailalias):
18886 * mail/supercite.el (supercite, supercite-frames)
18887 (supercite-attr, supercite-cite, supercite-hooks):
18888 * net/rcompile.el (remote-compile):
18889 * net/rlogin.el (rlogin):
18890 * obsolete/ooutline.el (outlines):
18891 * progmodes/delphi.el (delphi):
18892 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
18893 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
18894 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
18895 (ebnf-optimization):
18896 * progmodes/etags.el (etags):
18897 * progmodes/executable.el (executable):
18898 * progmodes/idlwave.el (idlwave):
18899 * progmodes/pascal.el (pascal):
18900 * progmodes/prolog.el (prolog):
18901 * progmodes/python.el (python):
18902 * progmodes/scheme.el (scheme):
18903 * progmodes/sh-script.el (sh, sh-script):
18904 * progmodes/sql.el (SQL):
18905 * progmodes/tcl.el (tcl):
18906 * textmodes/bibtex.el (bibtex, bibtex-autokey):
18907 * textmodes/enriched.el (enriched):
18908 * textmodes/makeinfo.el (makeinfo):
18909 * textmodes/sgml-mode.el (sgml):
18910 * textmodes/table.el (table-hooks):
18911 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
18912 * textmodes/texinfo.el (texinfo):
18913 * textmodes/two-column.el (two-column):
18914 Finish `defgroup' description with period.
18915
18916 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
18917 * eshell/esh-var.el (eshell-var):
18918 * progmodes/vhdl-mode.el (vhdl-testbench):
18919 * textmodes/org.el (org): Fix typos in docstrings.
18920
18921 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
18922 consistency.
18923
18924 * progmodes/flymake.el (flymake-find-file): Remove.
18925 (flymake-float-time): Use `with-no-warnings'.
18926 (flymake-check-start-time, flymake-check-was-interrupted)
18927 (flymake-err-info, flymake-is-running, flymake-last-change-time)
18928 (flymake-new-err-info): `defvar' at compile time.
18929
18930 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
18931
18932 * replace.el (occur-hook): Doc fix.
18933 (occur-1): Don't call `occur-hook' if there are no matches.
18934
18935 2005-07-03 Richard M. Stallman <rms@gnu.org>
18936
18937 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
18938 global-map, save the same map.
18939 (global-map): Don't alter it at top level.
18940 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
18941 Then alter it here instead.
18942 (tpu-edt-off): Set global-map to the saved one.
18943
18944 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
18945 All references simplified.
18946 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
18947 (zmacs-regions): Add defvar.
18948 (repeat-complex-command-map): Everything about that deleted.
18949
18950 * textmodes/artist.el (artist-key-is-drawing)
18951 (artist-key-endpoint1, artist-key-poly-point-list)
18952 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
18953 (artist-key-compl-table, artist-rb-save-data)
18954 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
18955 Don't put them in eval-when-compile.
18956 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
18957
18958 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
18959 Use with-no-warnings.
18960
18961 * net/browse-url.el (dos-windows-version): Add defvar.
18962
18963 * mail/supercite.el (filladapt-prefix-table): Add defvar.
18964
18965 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
18966 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
18967 (rmail-new-summary-line-count): Rename from new-summary-line-count.
18968 Add defvar.
18969 (rmail-summary-beginning-of-message): Use with-no-warnings.
18970 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
18971
18972 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
18973 Use with-no-warnings.
18974
18975 * emulation/vi.el (vi-mark-region): Use c-mark-function.
18976 (c-mark-function): Add point-moving-unit property.
18977 (vi-goto-line): Use with-no-warnings.
18978
18979 * emulation/edt.el (edt-last-copied-word): Add defvar.
18980 (zmacs-region-stays): Likewise.
18981 (edt-mark-section-wisely): Use c-mark-function for C.
18982 Use makr-defun for Fortran.
18983 (time-string): defvar deleted.
18984 (edt-display-the-time): Don't set time-string.
18985
18986 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
18987
18988 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
18989 Don't warn when name is not constant
18990 or for defining the group `emacs'.
18991
18992 * tooltip.el (gud-tooltip-mode): Add defvar.
18993
18994 * startup.el (default-frame-background-mode): Add defvar.
18995
18996 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
18997
18998 * info.el (tool-bar-map): Add defvar.
18999
19000 * dired.el (dnd-protocol-alist): Add defvar.
19001
19002 * dired-aux.el (dired-query): Display question with answer, when
19003 the user answers.
19004
19005 * custom.el (custom-add-option): Doc fix.
19006
19007 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
19008
19009 2005-07-03 Eli Zaretskii <eliz@gnu.org>
19010
19011 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
19012 bogus name from the last change.
19013
19014 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
19015
19016 * custom.el (custom-declare-variable): Fix typos in comment.
19017 (custom-known-themes): Doc fix.
19018 (custom-theme-directory): New defcustom.
19019 (require-theme): Make it check `custom-theme-directory'.
19020
19021 * cus-theme.el (custom-new-theme-mode): New function.
19022 (custom-theme-name, custom-theme-variables, custom-theme-faces)
19023 (custom-theme-description): Add compiler defvars.
19024 (customize-create-theme): Add doc to the "*New Custom Theme*"
19025 buffer. Use `custom-new-theme-mode'.
19026 (custom-theme-write): Put the created buffer in emacs-lisp-mode
19027 and save it to the `custom-theme-directory'. Make this the
19028 default directory of the buffer.
19029
19030 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
19031
19032 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
19033 Fix unbalanced parentheses.
19034
19035 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
19036
19037 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
19038 into flymake-mode and delegate to flymake-mode.
19039
19040 * find-file.el (ff-which-function-are-we-in): Clean up.
19041
19042 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
19043
19044 * replace.el (occur-rename-buffer): Fix docstring.
19045
19046 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
19047 (edt-last-copied-word, edt-learn-macro-count)
19048 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
19049 (edt-rect-start-point, edt-user-global-map, rect-start-point)
19050 (time-string, zmacs-region-stays):
19051 * emulation/edt-mapper.el (edt-save-function-key-map)
19052 (EDT-key-name): `defvar' to silence the byte-compiler.
19053
19054 2005-07-02 Martin Rudalics <rudalics@gmx.at>
19055
19056 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
19057 font-lock-regexp-backslash. Doc fix.
19058 (font-lock-regexp-backslash-grouping-construct): Rename from
19059 font-lock-regexp-backslash-construct. Doc fix.
19060 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
19061 grouping constructs.
19062
19063 2005-07-02 Eli Zaretskii <eliz@gnu.org>
19064
19065 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
19066 updating all the prerequisites.
19067
19068 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
19069
19070 * textmodes/org.el (org-agenda-start-on-weekday)
19071 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
19072 (org-agenda-use-time-grid, org-archive-location)
19073 (org-allow-space-in-links, org-usenet-links-prefer-google)
19074 (org-enable-table-editor, org-export-default-language)
19075 (org-export-html-show-new-buffer, org-fill-paragraph)
19076 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
19077 (org-goto-quit, org-occur, org-eval-in-calendar)
19078 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
19079 (org-agenda-diary-entry, org-remember-help)
19080 (org-table-convert-region, org-at-table-p)
19081 (org-table-move-row-down, org-table-move-row-up)
19082 (org-table-copy-region, org-table-toggle-vline-visibility)
19083 (org-table-get-stored-formulas, org-table-get-specials)
19084 (org-recalc-commands, org-table-eval-formula)
19085 (org-table-formula-substitute-names, orgtbl-make-binding)
19086 (org-format-org-table-html, org-format-table-table-html)
19087 (org-format-table-table-html-using-table-generate-source)
19088 (org-customize): Fix typos in docstrings.
19089 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
19090 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
19091 (org-back-to-heading): Doc fixes.
19092 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
19093 (org-agenda-change-all-lines, org-get-header):
19094 Improve argument/docstring consistency.
19095 (orgtbl-error): Fix error message.
19096
19097 * progmodes/flymake.el (flymake-find-possible-master-files)
19098 (flymake-master-file-compare, flymake-get-line-err-count)
19099 (flymake-highlight-line, flymake-gui-warnings-enabled):
19100 Fix typos in docstrings.
19101 (flymake-parse-line, flymake-get-project-include-dirs-function)
19102 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
19103 Doc fixes.
19104 (flymake-get-project-include-dirs-function)
19105 (flymake-make-err-menu-data):
19106 Improve argument/docstring consistency.
19107
19108 2005-07-01 Lute Kamstra <lute@gnu.org>
19109
19110 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
19111 Catch errors with ignore-errors. Use temporary buffer.
19112 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
19113
19114 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
19115 background color faces.
19116 (facemenu-set-foreground, facemenu-set-background):
19117 Use facemenu-set-face-from-menu.
19118 (facemenu-set-face-from-menu): Treat face names that start with
19119 "fg:" or "bg:" as special.
19120 (facemenu-add-new-color): Don't create faces. Simplify.
19121
19122 2005-06-30 Richard M. Stallman <rms@gnu.org>
19123
19124 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
19125 (crm-find-current-element): Likewise.
19126
19127 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
19128
19129 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
19130
19131 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
19132
19133 * arc-mode.el (archive-extract): Make it work as a mouse binding.
19134 (archive-mouse-extract): Make it an obsolete alias.
19135 (archive-mode-map): Don't use archive-mouse-extract any more.
19136 (archive-mode, archive-extract): write-contents-hooks ->
19137 write-contents-functions.
19138 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
19139 first arg.
19140 (archive-rename-entry): Update the call.
19141 (archive-zip-summarize): Remove unused var `method'.
19142 (archive-lzh-summarize): Remove unused var `creator'.
19143
19144 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
19145 dedicated frame upon exit.
19146
19147 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
19148 (archive-zip-extract, archive-zip-expunge)
19149 (archive-zip-update, archive-zip-update-case): Use executable-find.
19150 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
19151 Use restore-buffer-modified-p.
19152 (archive-extract, archive-add-new-member, archive-write-file-member):
19153 Use with-current-buffer.
19154 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
19155
19156 2005-06-30 Andreas Schwab <schwab@suse.de>
19157
19158 * progmodes/gud.el (gud-filter): Remove unneeded progn.
19159
19160 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
19161
19162 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
19163
19164 2005-06-30 Juri Linkov <juri@jurta.org>
19165
19166 * faces.el (vertical-border): Inherit from mode-line-inactive
19167 only on tty.
19168
19169 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
19170
19171 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
19172 example, -NLINES in the `occur' docstring).
19173
19174 * replace.el (occur-1): When no matches are found, do not set the
19175 `buffer-read-only' and modified flags for the occur buffer,
19176 because it is deleted.
19177
19178 * emulation/cua-base.el (cua-check-pending-input)
19179 (cua-repeat-replace-region, cua-mode, cua-debug)
19180 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
19181 Fix typos in docstrings.
19182
19183 * emulation/cua-gmrk.el (cua-toggle-global-mark)
19184 (cua-cut-region-to-global-mark)
19185 (cua--cut-rectangle-to-global-mark):
19186 Remove period from end of messages.
19187
19188 * emulation/cua-rect.el (cua-do-rectangle-padding):
19189 Remove period from end of messages.
19190 (cua--rectangle-seq-format): Fix typo in docstring.
19191 (cua-sequence-rectangle, cua-fill-char-rectangle):
19192 Improve argument/docstring consistency.
19193
19194 2005-06-29 Juri Linkov <juri@jurta.org>
19195
19196 * faces.el (default-frame-background-mode): New internal variable.
19197 (frame-set-background-mode): Use it.
19198
19199 * startup.el (normal-top-level): Set default-frame-background-mode
19200 instead of frame-background-mode. Before setting it, test for its
19201 nil value. Remove tests for frame-background-mode and frame
19202 parameter `reverse'. Add test for "unspecified-fg".
19203
19204 * term/xterm.el (xterm-rxvt-set-background-mode):
19205 * term/rxvt.el (rxvt-set-background-mode):
19206 Set default-frame-background-mode instead of frame-background-mode.
19207
19208 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
19209
19210 * simple.el (set-variable): Warn about obsolete user variables.
19211
19212 * imenu.el (imenu--completion-buffer):
19213 * mouse.el (mouse-buffer-menu-alist):
19214 * msb.el (msb-invisible-buffer-p):
19215 * calendar/diary-lib.el (diary-header-line-format):
19216 * emacs-lisp/pp.el (pp-buffer):
19217 * progmodes/cperl-mode.el (cperl-do-auto-fill):
19218 * textmodes/picture.el (picture-replace-match):
19219 Change space constants followed by a sexp to "?\s ".
19220
19221 * play/decipher.el (decipher-loop-with-breaks):
19222 * textmodes/texinfo.el (texinfo-insert-@item): Change space
19223 constants "protected" from end of line by a comment to "?\s".
19224
19225 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
19226
19227 * font-lock.el (save-buffer-state): Use `declare'.
19228
19229 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
19230 reset the syntax-table to cperl-mode-syntax-table.
19231 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
19232 "foo_print_bar" is not matched as a reserved keyword.
19233
19234 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
19235
19236 * textmodes/org.el (orgtbl-setup): New function, for delayed
19237 setup for the orgtbl commands.
19238 (org-calc-default-modes): New option.
19239 (orgtbl-make-binding): Use `defun' to get better help display.
19240 (org-diary): Call `org-compile-prefix-format'.
19241 (org-table-formula-substitute-names): New function.
19242 (org-agenda-day-view, org-agenda-week-view): New commands.
19243 (org-agenda-toggle-week-view): Command removed.
19244 (org-tbl-menu): Split off from org-org-menu.
19245 (org-mode): Move removal of outline-mode menus to here.
19246 (org-table-formula-debug): New option.
19247 (org-table-insert-row): Keep first field if just "#" or "*".
19248 (org-mode): Paragraph regexps fixed.
19249 (org-table-recalculate-regexp): New constant.
19250 (org-table-justify-field-maybe): Avoid replace if not necessary.
19251 (org-copy-special, org-cut-special): Use `call-interactively'.
19252 (org-table-copy-region): Take region from `interactive' call.
19253 (org-trim): Return string even if no match.
19254 (org-formula): New face.
19255 (org-set-font-lock-defaults): No longer highlight "FIXME".
19256 But highlight formula-related fields in table.
19257 (org-table-p): Use regexp, not fontification.
19258 (org-table-align): Handle white space at end of line.
19259 (org-table-formula-evaluate-inline): New option.
19260 (org-mode): Auto-wrapping in comment lines turned off.
19261 (org-table-copy-down): Evaluate only in copied field, not in
19262 destination.
19263 (org-table-current-formula): Variable removed.
19264 (org-table-store-formulas, org-table-get-stored-formulas)
19265 (org-table-modify-formulas, org-table-replace-in-formulas)
19266 (org-table-maybe-eval-formula): New functions.
19267 (org-table-get-formula): Modify to use stored formulas.
19268 (org-table-insert-column, org-table-delete-column)
19269 (org-table-move-column): Call `org-table-modify-formulas'.
19270 (org-complete): Add completion for keyword formulas.
19271 (orgtbl-mode): Pull orgtbl-mode-map to start of
19272 minor-mode-map-alist.
19273
19274 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
19275
19276 * progmodes/python.el (python-check): Require `compile' before
19277 modifying its variables.
19278
19279 * newcomment.el (comment-indent-default): Don't get fooled by an early
19280 end of buffer.
19281
19282 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19283
19284 * ps-print.el (ps-print-version): Fix version number.
19285
19286 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
19287
19288 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
19289
19290 2005-06-28 Richard M. Stallman <rms@gnu.org>
19291
19292 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
19293 (flyspell-local-mouse-map): Declaration deleted.
19294 (flyspell-mouse-map): Bind only mouse-2.
19295 (flyspell-mode-map): Don't test flyspell-use-local-map.
19296 (flyspell-overlay-keymap-property-name): Var deleted.
19297 (flyspell-mode-on): Don't make local bindings for
19298 flyspell-mouse-map and flyspell-mode-map.
19299 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
19300
19301 * textmodes/ispell.el (ispell-word): Do not ignore short words.
19302
19303 * progmodes/compile.el (compilation-next-error-function):
19304 Don't switch buffers; operate on the current buffer.
19305
19306 * progmodes/compile.el (compilation-error-file-name)
19307 (compilation-warning-file-name, compilation-info-file-name)
19308 (compilation-line-number, compilation-column-number): New faces.
19309 (compilation-error-face, compilation-warning-face)
19310 (compilation-info-face, compilation-line-face)
19311 (compilation-column-face): Use them.
19312
19313 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
19314
19315 * comint.el (comint-password-prompt-regexp): Accept ", try again".
19316
19317 * bindings.el (global-map): Bind insertchar and its variants.
19318
19319 2005-06-27 Richard M. Stallman <rms@gnu.org>
19320
19321 * textmodes/artist.el (artist-text-overwrite)
19322 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
19323
19324 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19325
19326 * ps-print.el: It was not working the page selection for printing.
19327 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
19328 (ps-print-version): New version 6.6.7.
19329 (ps-end-sheet): New fun.
19330 (ps-header-sheet, ps-end-job): Call it.
19331
19332 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
19333
19334 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
19335
19336 2005-06-27 Lute Kamstra <lute@gnu.org>
19337
19338 * facemenu.el (facemenu-unlisted-faces): Add foreground and
19339 background color faces.
19340 (facemenu-get-face): Delete function.
19341 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
19342 (facemenu-add-new-color): Make second argument mandatory.
19343 Create the appropriate face and return it. Simplify.
19344 (facemenu-set-foreground, facemenu-set-background): Don't check if
19345 color is defined. Use return value of facemenu-add-new-color.
19346
19347 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
19348
19349 * progmodes/gud.el (gud-filter): Add missing argument to
19350 with-selected-window.
19351
19352 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
19353
19354 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
19355 a :require to the defcustom.
19356
19357 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
19358 defcustoms corresponding to minor modes.
19359
19360 2005-06-26 David Ponce <david@dponce.com>
19361
19362 * recentf.el: Require tree-widget instead of wid-edit.
19363 (recentf-filename-handler): Fix widget :type.
19364 (recentf-cancel-dialog, recentf-open-more-files)
19365 (recentf-open-files-action): Doc fix.
19366 (recentf-dialog-goto-first): New function.
19367 (recentf-dialog-mode-map): Set parent keymap first.
19368 (recentf-dialog-mode): Define with define-derived-mode.
19369 Don't display continuation lines in dialogs.
19370 (recentf-edit-list): Rename from recentf-edit-selected-items.
19371 (recentf-edit-list-select): Rename from recentf-edit-list-action.
19372 Simplify.
19373 (recentf-edit-list-validate): New function.
19374 (recentf-edit-list): Update accordingly.
19375 (recentf-open-files-item-shift): Remove.
19376 (recentf-open-files-item): Convert menu elements into tree and
19377 link widgets. Don't create the widgets.
19378 (recentf-open-files): Update accordingly.
19379 (recentf-save-list): Untabify.
19380
19381 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
19382
19383 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
19384 (keep-lines): Add INTERACTIVE arg. Never delete lines only
19385 partially contained in the active region. Do not take active
19386 region into account when called from Lisp, unless INTERACTIVE arg
19387 is non-nil. Use `forward-line' instead of `beginning-of-line' to
19388 avoid trouble with fields. Make marker point nowhere when no
19389 longer used. Always return nil. Doc fix.
19390 (flush-lines): Add INTERACTIVE arg. Do not take active region
19391 into account when called from Lisp, unless INTERACTIVE arg is
19392 non-nil. Use `forward-line' instead of `beginning-of-line' to
19393 avoid trouble with fields. Make marker point nowhere when no
19394 longer used. Always return nil. Doc fix.
19395 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
19396 interchangeable. Do not take active region into account when
19397 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
19398 message in echo area when called from Lisp, unless INTERACTIVE arg
19399 is non-nil. Avoid saying "1 occurrences". Do not use markers.
19400 Return the number of matches. Doc fix.
19401 (occur): Doc fix.
19402 (perform-replace): Make comment follow double space convention for
19403 the sake of `outline-minor-mode'.
19404
19405 * faces.el (facep): Doc fix.
19406
19407 2005-06-25 Richard M. Stallman <rms@gnu.org>
19408
19409 * facemenu.el (facemenu-enable-faces-p): New function.
19410 (facemenu-background-menu, facemenu-foreground-menu)
19411 (facemenu-face-menu): Add menu-enable property.
19412
19413 * jka-compr.el (jka-compr-insert-file-contents):
19414 Special handling if cannot find the uncompression program.
19415
19416 * cus-face.el (custom-face-attributes): Add autoload.
19417
19418 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
19419 Bind comment-indent-function locally.
19420
19421 * window.el (save-selected-window): Use save-current-buffer.
19422
19423 * subr.el (with-selected-window): Use save-current-buffer.
19424
19425 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
19426 and with-current-buffer.
19427
19428 2005-06-24 Richard M. Stallman <rms@gnu.org>
19429
19430 * simple.el (line-move-1): Fix previous change.
19431
19432 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
19433
19434 * replace.el (occur-1): Set `buffer-read-only' and the
19435 buffer-modified flag before running `occur-hook' to protect
19436 against unintentional buffer switches that can lead to data loss.
19437
19438 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
19439
19440 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
19441 (gud-gdb-marker-filter): Use font-lock-warning-face for any
19442 initial error.
19443
19444 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
19445 after fresh input.
19446 (gdb-var-create-handler): Put name of expression in quotes.
19447
19448 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
19449
19450 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
19451 elements of RING in order, and without bogus nil elements.
19452
19453 2005-06-23 Richard M. Stallman <rms@gnu.org>
19454
19455 * simple.el (set-variable): Args renamed; doc fix.
19456 (line-move-1): When there are overlays around, use vertical-motion.
19457
19458 * faces.el (escape-glyph): Use brown against light background.
19459 (nobreak-space): Rename from no-break-space.
19460 Fix previous change.
19461
19462 * dired-aux.el (dired-do-copy): Fix arg prompt.
19463
19464 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
19465
19466 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
19467
19468 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
19469 rather than "Distributor".
19470
19471 2005-06-23 Lute Kamstra <lute@gnu.org>
19472
19473 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
19474 (debug-on-entry): Use it. New interactive declaration that uses
19475 function-called-at-point.
19476
19477 2005-06-23 Kim F. Storm <storm@cua.dk>
19478
19479 * subr.el (save-match-data): Add comment about using evaporate arg
19480 to set-match-data.
19481
19482 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
19483
19484 * cus-edit.el (customize-face)
19485 (customize-face-other-window): Handle face aliases.
19486
19487 * faces.el (face-documentation, set-face-attribute)
19488 (face-spec-set): Handle face aliases.
19489
19490 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
19491
19492 * help-mode.el (help-make-xrefs): If a symbol representing a face
19493 name is not followed by the word "face", it could still be a
19494 function or variable name, so don't bypass other checks.
19495
19496 2005-06-22 Juri Linkov <juri@jurta.org>
19497
19498 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
19499 Replace aliased functions with calls where second arg `inherit' is t.
19500
19501 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
19502
19503 * progmodes/gdb-ui.el (gdb-error): New variable.
19504 (gdb-error): New function.
19505 (gdb-annotation-rules): Act on error-begin and error annotations.
19506 (gdb-concat-output): Use font-lock-warning-face for errors.
19507
19508 2005-06-22 Miles Bader <miles@gnu.org>
19509
19510 * bindings.el (propertized-buffer-identification): Use renamed
19511 `Buffer-menu-buffer' face.
19512
19513 * faces.el (vertical-border): Rename from `vertical-divider'.
19514 (escape-glyph): Change dark-background color back to `cyan'.
19515
19516 2005-06-21 Juri Linkov <juri@jurta.org>
19517
19518 * faces.el (face-user-default-spec): Try getting `customized-face'
19519 prior to `saved-face'.
19520 (frame-background-mode): Refill docstring.
19521
19522 * emacs-lisp/lisp-mode.el (eval-defun-1):
19523 * emacs-lisp/edebug.el (edebug-eval-defun):
19524 Set `saved-face' temporarily to nil before calling form.
19525 Set `customized-face' to the new spec after that.
19526
19527 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
19528
19529 * subr.el (1value, lambda, key-substitution-in-progress):
19530 Doc fixes.
19531
19532 * autoinsert.el (auto-insert-alist):
19533 * ses.el (ses-call-printer):
19534 * subr.el (noreturn):
19535 * emacs-lisp/lisp.el (check-parens):
19536 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
19537 * net/browse-url.el (browse-url-mosaic):
19538 * progmodes/cc-defs.el (c-safe-scan-lists):
19539 * progmodes/ebnf-abn.el (ebnf-abn-lex):
19540 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
19541 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
19542 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
19543 * progmodes/ebnf-iso.el (ebnf-iso-lex):
19544 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
19545
19546 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
19547
19548 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
19549
19550 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
19551
19552 * calendar/appt.el (appt-make-list): Activate the package, if
19553 not already active (for backwards compatibility).
19554
19555 2005-06-20 Kim F. Storm <storm@cua.dk>
19556
19557 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
19558
19559 2005-06-20 Miles Bader <miles@gnu.org>
19560
19561 * faces.el (vertical-divider): New face.
19562
19563 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
19564
19565 * simple.el (kill-whole-line): Doc fix.
19566 (next-error-buffer-p, next-error-find-buffer)
19567 (clone-indirect-buffer): Fix typos in docstrings.
19568 (comment-line-break-function): Doc fix: don't say variable
19569 is automatically buffer-local (it isn't).
19570
19571 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
19572
19573 * net/tramp-ftp.el (top):
19574 * net/tramp-smb.el (top):
19575 * net/tramp-util.el (top):
19576 * net/tramp-uu.el (top):
19577 * net/tramp-vc.el (top):
19578 * net/tramp.el (top): Revert copyright years back to original
19579 ones. Tramp has a life outside GNU Emacs.
19580
19581 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
19582
19583 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
19584
19585 2005-06-18 Juri Linkov <juri@jurta.org>
19586
19587 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
19588 end of first regexp to limit the match to the position between
19589 line number and source line with same separator character as used
19590 between file name and line number. In the second regexp limit
19591 mouse-face area to file name and line number by adding new group
19592 for them and referring it in HYPERLINK arg.
19593 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
19594 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
19595 previous line where grep markers may be already removed.
19596
19597 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
19598
19599 * progmodes/ps-mode.el: Update version and maintainer's email address.
19600
19601 2005-06-18 Steve Youngs <steve@xemacs.org>
19602
19603 * net/browse-url.el (browse-url-browser-function)
19604 (browse-url-default-browser): Add firefox.
19605 (browse-url-firefox-program, browse-url-firefox-arguments)
19606 (browse-url-firefox-startup-arguments)
19607 (browse-url-firefox-new-window-is-tab): New defcustoms.
19608 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
19609
19610 2005-06-17 Richard M. Stallman <rms@gnu.org>
19611
19612 * startup.el (command-line): Warn if specified user name has
19613 no home directory.
19614
19615 * term.el (term-get-old-input, term-input-filter, term-input-sender)
19616 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
19617
19618 * longlines.el (longlines-mode, longlines-show-hard-newlines):
19619 Doc fixes.
19620
19621 * faces.el (underline): Try bold if terminal doesn't support underline.
19622
19623 * mail/sendmail.el (mail-setup-with-from): New variable.
19624 (mail-insert-from-field): New function.
19625 (sendmail-send-it): Call it.
19626 (mail-setup): Optionally call it here.
19627
19628 * term/linux.el: Call tty-no-underline.
19629
19630 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
19631
19632 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
19633
19634 2005-06-17 Miles Bader <miles@gnu.org>
19635
19636 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
19637 (ediff-current-diff-C, ediff-current-diff-Ancestor)
19638 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
19639 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
19640 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
19641 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
19642 Remove "-face" suffix from face names.
19643 (ediff-current-diff-face-A, ediff-current-diff-face-B)
19644 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
19645 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
19646 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
19647 (ediff-even-diff-face-A, ediff-even-diff-face-B)
19648 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
19649 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
19650 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
19651 New backward-compatibility aliases for renamed faces.
19652 (ediff-current-diff-face-A, ediff-current-diff-face-B)
19653 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
19654 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
19655 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
19656 (ediff-even-diff-face-A, ediff-even-diff-face-B)
19657 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
19658 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
19659 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
19660 Use renamed ediff faces.
19661
19662 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
19663 Remove "-face" suffix from face names.
19664 (eshell-test-ok-face, eshell-test-failed-face):
19665 New backward-compatibility aliases for renamed faces.
19666 (eshell-run-test): Use renamed eshell-test faces.
19667
19668 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
19669 face name.
19670 (eshell-prompt-face): New backward-compatibility alias for renamed
19671 face.
19672 (eshell-emit-prompt): Use renamed eshell-prompt face.
19673
19674 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
19675 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
19676 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
19677 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
19678 Remove "-face" suffix from face names.
19679 (eshell-ls-directory-face, eshell-ls-symlink-face)
19680 (eshell-ls-executable-face, eshell-ls-readonly-face)
19681 (eshell-ls-unreadable-face, eshell-ls-special-face)
19682 (eshell-ls-missing-face, eshell-ls-archive-face)
19683 (eshell-ls-backup-face, eshell-ls-product-face)
19684 (eshell-ls-clutter-face):
19685 New backward-compatibility aliases for renamed faces.
19686 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
19687
19688 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
19689 Remove "-face" suffix from face name.
19690 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
19691 instead of literal face.
19692
19693 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
19694
19695 * emacs-lisp/warnings.el (display-warning, lwarn)
19696 (warning-minimum-log-level): Doc fixes.
19697 (warning-minimum-level, warning-minimum-log-level):
19698 Add :debug to :type choices.
19699
19700 * progmodes/ada-mode.el (ada-format-paramlist)
19701 (ada-get-indent-case, ada-check-matching-start)
19702 (ada-check-defun-name, ada-goto-matching-decl-start)
19703 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
19704 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
19705 (ada-make-subprogram-body): Follow error conventions.
19706 (ada-case-exception-file, ada-indent-comment-as-code)
19707 (ada-indent-handle-comment-special, ada-indent-renames)
19708 (ada-indent-return, ada-search-directories-internal)
19709 (ada-tab-policy, ada-case-exception-substring)
19710 (ada-other-file-alist, ada-matching-start-re)
19711 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
19712 (ada-imenu-generic-expression, ada-compile-goto-error)
19713 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
19714 (ada-popup-menu, ada-add-extensions, ada-mode)
19715 (ada-region-selected, ada-create-case-exception)
19716 (ada-create-case-exception-substring, ada-after-keyword-p)
19717 (ada-activate-keys-for-case, ada-adjust-case-region)
19718 (ada-adjust-case-buffer, ada-format-paramlist)
19719 (ada-scan-paramlist, ada-insert-paramlist)
19720 (ada-indent-newline-indent)
19721 (ada-indent-newline-indent-conditional)
19722 (ada-justified-indent-current, ada-goto-previous-word)
19723 (ada-indent-current, ada-get-indent-open-paren)
19724 (ada-get-indent-paramlist, ada-get-indent-end)
19725 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
19726 (ada-get-indent-block-start, ada-get-indent-subprog)
19727 (ada-get-indent-noindent, ada-get-indent-label)
19728 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
19729 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
19730 (ada-goto-stmt-end, ada-goto-next-word)
19731 (ada-check-matching-start, ada-check-defun-name)
19732 (ada-goto-matching-decl-start, ada-goto-matching-start)
19733 (ada-goto-matching-end, ada-search-ignore-string-comment)
19734 (ada-in-decl-p, ada-looking-at-semi-or)
19735 (ada-looking-at-semi-private, ada-in-paramlist-p)
19736 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
19737 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
19738 (ada-next-procedure, ada-previous-procedure, ada-next-package)
19739 (ada-previous-package, ada-create-menu)
19740 (ada-fill-comment-paragraph-justify)
19741 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
19742 (ada-other-file-name, ada-last-which-function-line)
19743 (ada-last-which-function-subprog, ada-which-function)
19744 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
19745 (ada-gen-treat-proc, ada-check-emacs-version)
19746 (ada-continuation-indent, ada-align-region-separate):
19747 Fix typos in docstrings.
19748 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
19749
19750 2005-06-16 Lute Kamstra <lute@gnu.org>
19751
19752 * simple.el (fundamental-mode): Run after-change-major-mode-hook
19753 conditionally.
19754
19755 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
19756
19757 * comint.el (comint-replace-by-expanded-filename)
19758 (comint-prompt-regexp, comint-delimiter-argument-list)
19759 (comint-preinput-scroll-to-bottom):
19760 * info.el (Info-hide-cookies-node):
19761 * ls-lisp.el (ls-lisp-classify):
19762 * find-file.el (ff-search-directories, ff-special-constructs)
19763 (ff-find-other-file):
19764 * font-lock.el (font-lock-keywords):
19765 * shell.el (shell-prompt-pattern)
19766 (shell-dynamic-complete-functions, shell-mode)
19767 (shell-delimiter-argument-list):
19768 * term.el (term-replace-by-expanded-filename)
19769 (term-prompt-regexp, term-delimiter-argument-list):
19770 * woman.el (woman-ignore, woman0-if):
19771 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
19772 * emacs-lisp/elint.el (elint-init-env):
19773 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
19774 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
19775 * language/ethio-util.el (ethio-tilde-escape)
19776 (ethio-use-three-dot-question):
19777 * net/zone-mode.el (zone-mode-load-time-setup):
19778 * progmodes/cc-align.el (c-lineup-argcont):
19779 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
19780 * progmodes/cperl-mode.el (cperl-set-style-back):
19781 * progmodes/inf-lisp.el (inferior-lisp-prompt):
19782 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
19783 Fix spellings in docstrings.
19784
19785 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
19786 * progmodes/modula2.el (m2-for): Fix spellings.
19787
19788 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
19789
19790 * simple.el (undo-more): Don't use `format' on `error' arguments.
19791 Improve argument/docstring consistency.
19792 (pending-undo-list): Doc fix.
19793
19794 * smerge-mode.el (smerge-ensure-match):
19795 * emulation/vip.el (vip-ex):
19796 * net/zone-mode.el (zone-mode-update-serial):
19797 * progmodes/idlwave.el (idlwave-complete):
19798 * progmodes/vhdl-mode.el (vhdl-visit-file)
19799 (vhdl-compose-wire-components):
19800 Don't use `format' on `error' arguments.
19801
19802 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
19803 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
19804 (tooltip-help-tips): Fix typos in docstrings.
19805
19806 2005-06-16 David Ponce <david@dponce.com>
19807
19808 * tree-widget.el (tree-widget-value-create): Simplify last change.
19809
19810 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
19811
19812 * ido.el (ido-incomplete-regexp): New variable.
19813 (ido-set-matches-1): Handle invalid-regexp error and set
19814 ido-incomplete-regexp.
19815 (ido-incomplete-regexp): New face.
19816 (ido-completions): Use it.
19817 (ido-complete, ido-exit-minibuffer, ido-completions):
19818 Handle incomplete regexps.
19819 (ido-completions): Add check for complete match when entering a regexp.
19820
19821 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19822
19823 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
19824
19825 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
19826
19827 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
19828 by field delimiters.
19829
19830 2005-06-15 David Ponce <david@dponce.com>
19831
19832 * tree-widget.el: eval-and-compile inlined functions so they will
19833 be available at run-time too.
19834 (tree-widget-super-format-handler)
19835 (tree-widget-format-handler): Remove.
19836 (tree-widget-value-create): Handle the :indent property.
19837
19838 2005-06-15 Miles Bader <miles@gnu.org>
19839
19840 * progmodes/which-func.el (which-func): Only inherit
19841 `font-lock-function-name-face' when that makes sense against the
19842 default mode-line face, otherwise set the face color explicitly.
19843
19844 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
19845 faces instead of (non-existent) variables.
19846
19847 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
19848
19849 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
19850 (iswitchb-get-matched-buffers): Likewise. Simplify.
19851
19852 2005-06-14 Miles Bader <miles@gnu.org>
19853
19854 * progmodes/ld-script.el (ld-script-location-counter):
19855 Remove "-face" suffix from face name.
19856 (ld-script-location-counter-face):
19857 New backward-compatibility alias for renamed face.
19858 (ld-script-location-counter-face): Use renamed face.
19859
19860 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
19861 (cperl-hash): Remove "-face" suffix from face names.
19862 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
19863 New backward-compatibility aliases for renamed faces.
19864 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
19865 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
19866
19867 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
19868 name.
19869 (which-func-face): New backward-compatibility alias for renamed face.
19870 (which-func-format): Use renamed which-func face.
19871
19872 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
19873 (vhdl-function, vhdl-directive, vhdl-reserved-word)
19874 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
19875 names.
19876 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
19877 (vhdl-speedbar-configuration, vhdl-speedbar-package)
19878 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
19879 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
19880 (vhdl-speedbar-architecture-selected)
19881 (vhdl-speedbar-configuration-selected)
19882 (vhdl-speedbar-package-selected)
19883 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
19884 names.
19885 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
19886 Use renamed faces.
19887 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
19888 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
19889 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
19890 Use renamed faces.
19891 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
19892 names.
19893 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
19894 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
19895 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
19896 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
19897 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
19898 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
19899
19900 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
19901 face name.
19902 (sh-heredoc-face): New backward-compatibility alias for renamed face.
19903 (sh-heredoc-face): Use renamed sh-heredoc face.
19904
19905 * progmodes/idlw-help.el (idlwave-help-link):
19906 Remove "-face" suffix from face name.
19907 (idlwave-help-link-face):
19908 New backward-compatibility alias for renamed face.
19909 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
19910
19911 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
19912 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
19913 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
19914 New backward-compatibility aliases for renamed faces.
19915 (idlwave-shell-disabled-breakpoint-face)
19916 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
19917
19918 * progmodes/flymake.el (flymake-errline, flymake-warnline):
19919 Remove "-face" suffix from face names.
19920 (flymake-errline-face, flymake-warnline-face):
19921 New backward-compatibility aliases for renamed faces.
19922 (flymake-highlight-line): Use renamed flymake faces.
19923
19924 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
19925 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
19926 (ebrowse-member-class, ebrowse-progress):
19927 Remove "-face" suffix from face names.
19928 (ebrowse-tree-mark-face, ebrowse-root-class-face)
19929 (ebrowse-file-name-face, ebrowse-default-face)
19930 (ebrowse-member-attribute-face, ebrowse-member-class-face)
19931 (ebrowse-progress-face):
19932 New backward-compatibility aliases for renamed faces.
19933 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
19934 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
19935 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
19936 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
19937
19938 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
19939 antlr-syntax)
19940 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
19941 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
19942 names.
19943 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
19944 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
19945 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
19946 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
19947 backward-compatibility aliases for renamed faces.
19948 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
19949 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
19950 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
19951 remove "font-lock-". Use renamed antlr-mode faces.
19952 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
19953 literal face-names with face variable references.
19954
19955 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
19956 face name.
19957 (Buffer-menu-buffer-face): New backward-compatibility alias for
19958 renamed face.
19959 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
19960
19961 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
19962
19963 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
19964 Eliminate "-face" suffix.
19965 (makefile-targets): Inherit from font-lock-function-name-face and
19966 eliminate "-face" suffix.
19967 (makefile-shell): Remove attributes and eliminate "-face" suffix.
19968 (makefile-*-font-lock-keywords): Append makefile-targets in rule
19969 actions, instead of prepending, to make it less visible.
19970 (makefile-previous-dependency, makefile-match-dependency):
19971 Don't match a target on a continuation line.
19972
19973 * files.el (auto-mode-alist): Put Makefile in gmake mode.
19974
19975 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
19976
19977 * progmodes/gdb-ui.el (menu): Re-order menu items.
19978 (gdb-tooltip-print): Respect tooltip-use-echo-area.
19979
19980 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
19981 Define in tooltip.el.
19982 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
19983 (gud-tooltip-tips): Respect tooltip-use-echo-area and
19984 gud-tooltip-echo-area.
19985
19986 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
19987 backward compatibility and make obsolete.
19988 (tooltip-help-tips): Use tooltip-use-echo-area.
19989 (tooltip-show-help-function): Rename to...
19990 (tooltip-show-help): ...this, because it is a function.
19991 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
19992
19993 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
19994
19995 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
19996 (edebug-print-length, edebug-print-level, edebug-print-circle)
19997 (edebug-modify-breakpoint, edebug-eval-last-sexp)
19998 (edebug-eval-print-last-sexp): Doc fixes.
19999
20000 2005-06-14 Kim F. Storm <storm@cua.dk>
20001
20002 * ido.el (ido-mode): Make a new keymap every time we enable ido,
20003 as the coverage buffer/file/both may change.
20004
20005 2005-06-14 Lute Kamstra <lute@gnu.org>
20006
20007 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
20008 and run-mode-hooks. Simplify.
20009
20010 * mail/rmailedit.el (rmail-edit-mode):
20011 * progmodes/octave-inf.el (inferior-octave-mode):
20012 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
20013
20014 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
20015 and run-mode-hooks.
20016 (recentf-edit-list, recentf-open-files): Don't call
20017 kill-all-local-variables directly.
20018
20019 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
20020
20021 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
20022
20023 * emacs-lisp/byte-run.el (make-obsolete)
20024 (define-obsolete-function-alias): Rename arguments FUNCTION and
20025 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
20026 (make-obsolete-variable, define-obsolete-variable-alias):
20027 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
20028 respectively.
20029
20030 * isearchb.el (isearchb-activate):
20031 * pcvs.el (cvs-mode):
20032 * ses.el (ses-load):
20033 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
20034 * net/tramp.el (tramp-find-file-exists-command)
20035 (tramp-find-shell):
20036 * progmodes/ada-mode.el (ada-create-case-exception)
20037 (ada-create-case-exception-substring, ada-make-subprogram-body):
20038 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
20039 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
20040 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
20041 * textmodes/org.el (org-promote, org-evaluate-time-range)
20042 (org-agenda-next-date-line, org-agenda-previous-date-line)
20043 (org-agenda-error, org-open-at-point, org-table-move-row)
20044 (org-format-table-table-html-using-table-generate-source)
20045 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
20046 * textmodes/reftex.el (reftex-access-scan-info):
20047 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
20048 (reftex-toc-promote-prepare): Follow error conventions.
20049
20050 * diff-mode.el (diff-mode): Fix typo in docstring.
20051
20052 * forms.el (forms--intuit-from-file): Fix reference to
20053 `forms-number-of-fields' in error message.
20054 (forms-print): Fix quoting in error message.
20055
20056 * forms.el (forms-mode):
20057 * emulation/vi.el (vi-goto-insert-state):
20058 * progmodes/flymake.el (flymake-new-err-info)
20059 (flymake-start-syntax-check-for-current-buffer)
20060 (flymake-simple-cleanup):
20061 * eshell/esh-var.el (eshell/export):
20062 * progmodes/gud.el (xdb):
20063 * textmodes/flyspell.el (flyspell-incorrect-hook)
20064 (flyspell-maybe-correct-transposition)
20065 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
20066
20067 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
20068
20069 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
20070 minibuffer prompt.
20071
20072 2005-06-13 Kim F. Storm <storm@cua.dk>
20073
20074 * subr.el (add-to-ordered-list): New defun.
20075
20076 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
20077 add cua--keymap-alist to emulation-mode-map-alists.
20078
20079 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
20080
20081 * subr.el (complete-in-turn): New macro.
20082 (dynamic-completion-table, lazy-completion-table): Add debug info.
20083
20084 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
20085 in preference to face aliases.
20086
20087 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
20088 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
20089 Remove unused vars `start' and `firstline'.
20090 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
20091 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
20092
20093 2005-06-13 Eli Zaretskii <eliz@gnu.org>
20094
20095 * cus-start.el (all): Don't complain about missing GTK-related
20096 variables, unless either `gtk' is boundp or this isn't a
20097 `windows-nt' build.
20098
20099 2005-06-13 Lute Kamstra <lute@gnu.org>
20100
20101 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
20102 run-mode-hooks.
20103
20104 * ediff-mult.el (ediff-meta-mode):
20105 * ediff-util.el (ediff-mode): Use run-mode-hooks.
20106
20107 * ledit.el (ledit-mode): Use delay-mode-hooks.
20108
20109 * woman.el (woman-mode-line-format): Delete constant.
20110 (woman-mode-map): Initialize it properly.
20111 (woman-mode): Set mode-class property to special.
20112 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
20113 Set major-mode and mode-name. Don't set mode-line-format directly.
20114 (Man-getpage-in-background): Don't reference woman-mode-line-format.
20115
20116 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
20117 string argument obsolete.
20118
20119 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
20120
20121 * textmodes/org.el (org-CUA-compatible): New option.
20122 (org-disputed-keys): New variable.
20123 (org-key): New function.
20124 (orgtbl-make-binding): Add docstring to the created function.
20125 (org-mode): Set paragraph start/separate regexps.
20126 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
20127 (org-archive-location, org-archive-mark-done)
20128 (org-archive-stamp-time): New options.
20129 (org-archive-subtree): New command.
20130 (org-fill-paragraph): New function.
20131 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
20132 (org-fake-empty-table-line): Function removed.
20133 (org-format-org-table-html): Do not create empty table lines at
20134 separator lines. Improved table header treatment.
20135 (org-link-format): New option.
20136 (org-make-link): New function.
20137 (org-insert-link, org-store-link): Use org-make-link.
20138 (org-open-file): Quote file name for shell command, to allow
20139 spaces in file names.
20140 (org-link-regexp): Fix bug with mailto link.
20141 (org-link-maybe-angles-regexp, org-protected-link-regexp):
20142 New constants.
20143 (org-export-as-html): Deal with the optional angles around a link.
20144 Better treatment of file: links.
20145 (org-open-at-point): Replace @{ and @} with < and >.
20146 (org-run-mode-hooks): Function removed.
20147 (org-agenda-mode): No longer use `org-run-mode-hooks'.
20148
20149 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
20150
20151 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
20152 MI command -data-list-register-values.
20153 (gdb-post-prompt): Indent properly.
20154
20155 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
20156
20157 * hilit-chg.el (highlight-changes-colors): Rename from
20158 `highlight-changes-colours'.
20159 (highlight-changes-colours): Keep as obsolete alias.
20160 (highlight-changes-face-list): Doc fix.
20161 (hilit-chg-make-list): Use `highlight-changes-colors'.
20162
20163 2005-06-12 Mark A. Hershberger <mah@everybody.org>
20164
20165 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
20166 defun-prompt-regexp.
20167
20168 2005-06-12 Eli Zaretskii <eliz@gnu.org>
20169
20170 * loadup.el: Don't say we are dumping under 2 names on windows-nt
20171 and cygwin.
20172
20173 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
20174 Don't use an old loaddefs.el, as in Makefile.in.
20175
20176 2005-06-12 Lute Kamstra <lute@gnu.org>
20177
20178 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
20179
20180 * man.el (Man-mode-map): Initialize it properly.
20181 (Man-mode): Set mode-class property to special.
20182
20183 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
20184
20185 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
20186
20187 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
20188 A newline is needed in the docstring there.
20189
20190 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
20191 Doc fixes.
20192
20193 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20194
20195 * printing.el: Doc fix. The menubar is no more changed when printing
20196 is loaded, it only changes when pr-menu-bind or pr-update-menus is
20197 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
20198 (pr-version): New version number (6.8.4).
20199 (pr-menu-bind): New command.
20200 (pr-update-menus): Docstring and code fix.
20201 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
20202 Docstring fix.
20203 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
20204 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
20205
20206 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
20207
20208 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
20209 "Returns" to "return", document useful return values, etc.
20210
20211 2005-06-11 Alan Mackenzie <acm@muc.de>
20212
20213 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
20214 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
20215 (adaptive-file-function): Minor amendment to doc-string.
20216
20217 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
20218
20219 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
20220 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
20221 Fix :type--it is `integer', not `string'.
20222
20223 * faces.el (modeline-highlight): Rename from (the erroneous)
20224 `modeline-higilight'.
20225
20226 2005-06-11 Lute Kamstra <lute@gnu.org>
20227
20228 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
20229 lisp-interaction-mode-map but make it the parent.
20230 (edebug-eval-mode): Use define-derived-mode.
20231
20232 2005-06-11 Andreas Schwab <schwab@suse.de>
20233
20234 * bindings.el: Add binding of `ESC functionkey' for every
20235 `M-functionkey'.
20236 * hexl.el (hexl-mode-map): Likewise.
20237
20238 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
20239
20240 * progmodes/compile.el (compilation-error-regexp-alist-alist)
20241 [msft]: update regexp for newer msft compilers.
20242
20243 2005-06-10 Mark A. Hershberger <mah@everybody.org>
20244
20245 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
20246 ATTLIST portions of included DTDs.
20247 (xml-parse-dtd): Eliminate use of inefficient match-data.
20248
20249 2005-06-10 Miles Bader <miles@gnu.org>
20250
20251 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
20252 (mpuz-text): Remove "-face" suffix from face names.
20253 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
20254 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
20255 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
20256
20257 * play/gomoku.el (gomoku-O, gomoku-X):
20258 Remove "-face" suffix from face names.
20259 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
20260 New backward-compatibility aliases for renamed faces.
20261 (gomoku-font-lock-keywords): Use renamed gomoku faces.
20262
20263 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
20264
20265 * thumbs.el: Fixes for changes of 2005-06-09.
20266 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
20267 as a directory.
20268 (thumbs-thumbname): Remove directory separator from format string;
20269 `thumbs-thumbsdir' now returns a valid directory name.
20270 (thumbs-temp-dir): New defsubst.
20271 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
20272 Use it.
20273
20274 * cus-edit.el (minibuffer):
20275 * files.el (make-backup-file-name-function):
20276 * filesets.el (filesets-external-viewers):
20277 * hilit-chg.el (highlight-changes-colours)
20278 (highlight-changes-face-list, highlight-changes-rotate-faces):
20279 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
20280 * kmacro.el (kmacro-call-macro):
20281 * log-edit.el (log-edit-changelog-full-paragraphs):
20282 * mouse.el (mouse-1-click-follows-link):
20283 * skeleton.el (skeleton-autowrap):
20284 * subr.el (insert-for-yank-1):
20285 * tempo.el (tempo-insert-region):
20286 * terminal.el (terminal-emulator):
20287 * time.el (display-time-mail-face):
20288 * vc.el (vc-annotate):
20289 * vcursor.el (vcursor-copy-line):
20290 * woman.el (woman-bold-headings, woman-ignore)
20291 (woman-default-faces, woman-monochrome-faces):
20292 * calendar/todo-mode.el (todo-insert-threshold):
20293 * emulation/pc-select.el (pc-select-selection-keys-only)
20294 (pc-selection-mode):
20295 * emulation/vip.el (vip-find-char-forward):
20296 * emulation/viper-cmd.el (viper-find-char-forward):
20297 * international/mule-cmds.el
20298 (select-safe-coding-system-accept-default-p)
20299 (input-method-exit-on-invalid-key):
20300 * international/mule-diag.el (describe-coding-system):
20301 * international/ucs-tables.el (unify-8859-on-encoding-mode):
20302 * net/browse-url.el (browse-url-xterm-program):
20303 * obsolete/lazy-lock.el (lazy-lock-mode):
20304 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
20305 (cperl-mode):
20306 * progmodes/cpp.el (cpp-face-light-name-list)
20307 (cpp-face-dark-name-list):
20308 * progmodes/delphi.el (delphi-newline-always-indents):
20309 Fix spellings in docstrings.
20310
20311 * ido.el (ido-mode, ido-file-extensions-order)
20312 (ido-default-file-method, ido-default-buffer-method)
20313 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
20314 (ido-decorations, ido-read-file-name-as-directory-commands)
20315 (ido-read-file-name-non-ido, ido-work-directory-list)
20316 (ido-ignore-item-temp-list, ido-current-directory)
20317 (ido-magic-forward-char, ido-enter-find-file)
20318 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
20319 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
20320
20321 2005-06-10 Lute Kamstra <lute@gnu.org>
20322
20323 * play/dunnet.el (dun-mode): Use define-derived-mode.
20324 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
20325 obsolete alias.
20326
20327 * play/doctor.el (doctor-mode-map): Remove defvar.
20328 (doctor-mode): Use define-derived-mode.
20329
20330 * mail/mspools.el (mspools-mode):
20331 * net/eudc-hotlist.el (eudc-hotlist-mode):
20332 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
20333
20334 2005-06-10 Miles Bader <miles@gnu.org>
20335
20336 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
20337 Remove "-face" suffix from face names.
20338 (flyspell-incorrect-face, flyspell-duplicate-face):
20339 New backward-compatibility aliases for renamed faces.
20340 (flyspell-mode-on, make-flyspell-overlay)
20341 (flyspell-highlight-incorrect-region)
20342 (flyspell-highlight-duplicate-region)
20343 (flyspell-display-next-corrections)
20344 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
20345
20346 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
20347 from face name.
20348 (texinfo-heading-face): New backward-compatibility alias for
20349 renamed face.
20350 (texinfo-heading-face): Use renamed texinfo-heading face.
20351
20352 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
20353 suffix from face names.
20354 (tex-math-face, tex-verbatim-face):
20355 New backward-compatibility aliases for renamed faces.
20356 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
20357 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
20358 literal face name.
20359
20360 * textmodes/table.el (table-cell): Remove "-face" suffix from face
20361 name.
20362 (table-cell-face): New backward-compatibility alias for renamed face.
20363 (table--put-cell-face-property, table--update-cell-face):
20364 Use renamed table-cell face.
20365
20366 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
20367 from face name.
20368 (sgml-namespace-face): New backward-compatibility alias for
20369 renamed face.
20370 (sgml-namespace-face): Use renamed sgml-namespace face.
20371
20372 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
20373 (org-level-4, org-level-5, org-level-6, org-level-7)
20374 (org-level-8, org-warning, org-headline-done)
20375 (org-deadline-announce, org-scheduled-today)
20376 (org-scheduled-previously, org-link, org-done, org-table)
20377 (org-time-grid): Remove "-face" suffix from face names.
20378 (org-level-1-face, org-level-2-face, org-level-3-face)
20379 (org-level-4-face, org-level-5-face, org-level-6-face)
20380 (org-level-7-face, org-level-8-face, org-warning-face)
20381 (org-headline-done-face, org-deadline-announce-face)
20382 (org-scheduled-today-face, org-scheduled-previously-face)
20383 (org-link-face, org-done-face, org-table-face)
20384 (org-time-grid-face):
20385 New backward-compatibility aliases for renamed faces.
20386 (org-level-faces, org-set-font-lock-defaults, org-timeline)
20387 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
20388 (org-agenda-get-timestamps, org-agenda-get-scheduled)
20389 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
20390
20391 * emulation/viper-init.el (viper-search, viper-replace-overlay)
20392 (viper-minibuffer-emacs, viper-minibuffer-insert)
20393 (viper-minibuffer-vi): Remove "-face" suffix from face names.
20394 (viper-search-face, viper-replace-overlay-face)
20395 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
20396 (viper-minibuffer-vi-face):
20397 New backward-compatibility aliases for renamed faces.
20398 (viper-search-face, viper-replace-overlay-face)
20399 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
20400 (viper-minibuffer-vi-face): Use renamed viper faces.
20401
20402 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
20403 Remove "-face" suffix from face names.
20404 (testcover-nohits-face, testcover-1value-face):
20405 New backward-compatibility aliases for renamed faces.
20406 (testcover-mark): Use renamed testcover faces.
20407
20408 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
20409 face name.
20410 (diary-button-face): New backward-compatibility alias for renamed face.
20411 (diary-entry): Use renamed diary-button face.
20412
20413 * calendar/calendar.el (diary, calendar-today, holiday)
20414 (mark-visible-calendar-date): Remove "-face" suffix from face names.
20415 (diary-face, calendar-today-face, holiday-face):
20416 New backward-compatibility aliases for renamed faces.
20417 (eval-after-load "facemenu", diary-entry-marker)
20418 (calendar-today-marker, calendar-holiday-marker, diary-face):
20419 Use renamed calendar faces.
20420
20421 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
20422 (compare-windows-face): New backward-compatibility alias for
20423 renamed face.
20424 (compare-windows-highlight): Use renamed compare-windows face.
20425
20426 * strokes.el (strokes-char): Remove "-face" suffix from face name.
20427 (strokes-char-face): New backward-compatibility alias for renamed face.
20428 (strokes-encode-buffer): Use renamed strokes-char face.
20429
20430 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
20431 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
20432 Remove "-face" suffix from face names.
20433 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
20434 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
20435 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
20436 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
20437 Use renamed pcvs faces.
20438 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
20439 * pcvs-defs.el (cvs-mode-map): Likewise.
20440 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
20441
20442 * info.el (info-title-1, info-title-2, info-title-3)
20443 (info-title-4): Remove "-face" suffix from and downcase face names.
20444 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
20445 (Info-title-4-face):
20446 New backward-compatibility aliases for renamed faces.
20447 (Info-fontify-node): Use renamed info faces.
20448
20449 * hilit-chg.el (highlight-changes, highlight-changes-delete):
20450 Remove "-face" suffix from face names.
20451 (highlight-changes-face, highlight-changes-delete-face):
20452 New backward-compatibility aliases for renamed faces.
20453 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
20454 (hilit-chg-make-list): Use renamed highlight-changes faces.
20455
20456 * generic-x.el (show-tabs-tab, show-tabs-space):
20457 Remove "-face" suffix from face names.
20458 (show-tabs-tab-face, show-tabs-space-face):
20459 New backward-compatibility aliases for renamed faces.
20460 (show-tabs-generic-mode-font-lock-defaults-1)
20461 (show-tabs-generic-mode-font-lock-defaults-2):
20462 Use renamed show-tabs faces.
20463
20464 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
20465 (smerge-markers): Remove "-face" suffix from face names.
20466 (smerge-mine-face, smerge-other-face, smerge-base-face)
20467 (smerge-markers-face):
20468 New backward-compatibility aliases for renamed faces.
20469 (smerge-mine-face, smerge-other-face, smerge-base-face)
20470 (smerge-markers-face): Use renamed smerge faces.
20471
20472 * log-view.el (log-view-file, log-view-message): Remove "-face"
20473 suffix from face names.
20474 (log-view-file-face, log-view-message-face):
20475 New backward-compatibility aliases for renamed faces.
20476 (log-view-file-face, log-view-message-face): Use renamed log-view
20477 faces.
20478
20479 * paren.el (show-paren-match, show-paren-mismatch):
20480 Remove "-face" suffix from face names.
20481 (show-paren-match-face, show-paren-mismatch-face):
20482 New backward-compatibility aliases for renamed faces.
20483 (show-paren-function): Use renamed show-paren faces.
20484
20485 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
20486 (ruler-mode-margins, ruler-mode-fringes)
20487 (ruler-mode-column-number, ruler-mode-fill-column)
20488 (ruler-mode-comment-column, ruler-mode-goal-column)
20489 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
20490 suffix from face names.
20491 (ruler-mode-default-face, ruler-mode-pad-face)
20492 (ruler-mode-margins-face, ruler-mode-fringes-face)
20493 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
20494 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
20495 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
20496 New backward-compatibility aliases for renamed faces.
20497 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
20498 (ruler-mode-column-number, ruler-mode-fill-column)
20499 (ruler-mode-comment-column, ruler-mode-goal-column)
20500 (ruler-mode-tab-stop, ruler-mode-current-column)
20501 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
20502 faces.
20503
20504 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
20505 face name.
20506 (whitespace-highlight-the-space): Use renamed face.
20507 (whitespace-highlight-face): New backward-compatibility alias for
20508 renamed face.
20509
20510 * woman.el (woman-italic, woman-bold, woman-unknown)
20511 (woman-addition, woman-symbol-face):
20512 Remove "-face" suffix from face names.
20513 (woman-italic-face, woman-bold-face, woman-unknown-face)
20514 (woman-addition-face):
20515 New backward-compatibility aliases for renamed faces.
20516 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
20517 (woman-decode-region, woman-replace-match)
20518 (woman-display-extended-fonts, woman-special-characters)
20519 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
20520 Use renamed woman faces.
20521
20522 * longlines.el (longlines-visible-face): Face removed.
20523
20524 * diff-mode.el (diff-header, diff-file-header, diff-index)
20525 (diff-hunk-header, diff-removed, diff-added, diff-changed)
20526 (diff-function, diff-context, diff-nonexistent): Remove "-face"
20527 suffix from face names.
20528 (diff-header-face, diff-file-header-face, diff-index-face)
20529 (diff-hunk-header-face, diff-removed-face, diff-added-face)
20530 (diff-changed-face, diff-function-face, diff-context-face)
20531 (diff-nonexistent-face): New backward-compatibility aliases for
20532 renamed faces.
20533 (diff-header-face, diff-file-header-face)
20534 (diff-index, diff-index-face, diff-hunk-header)
20535 (diff-hunk-header-face, diff-removed, diff-removed-face)
20536 (diff-added, diff-added-face, diff-changed-face, diff-function)
20537 (diff-function-face, diff-context-face, diff-nonexistent)
20538 (diff-nonexistent-face): Use renamed diff-mode faces.
20539
20540 * progmodes/compile.el (compilation-warning-face)
20541 (compilation-info-face): Remove "-face" suffix from face names.
20542 (compilation-warning-face, compilation-info-face):
20543 New backward-compatibility aliases for renamed faces.
20544 (compilation-warning-face, compilation-info-face):
20545 Use renamed compilation faces.
20546
20547 * add-log.el (change-log-date, change-log-name)
20548 (change-log-email, change-log-file, change-log-list)
20549 (change-log-conditionals, change-log-function)
20550 (change-log-acknowledgement): Remove "-face" suffix from face names.
20551 (change-log-date-face, change-log-name-face)
20552 (change-log-email-face, change-log-file-face)
20553 (change-log-list-face, change-log-conditionals-face)
20554 (change-log-function-face, change-log-acknowledgement-face):
20555 New backward-compatibility aliases for renamed faces.
20556 (change-log-font-lock-keywords): Use renamed change-log faces.
20557
20558 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
20559 (custom-set, custom-changed, custom-saved, custom-button)
20560 (custom-button-pressed, custom-documentation, custom-state)
20561 (custom-comment, custom-comment-tag, custom-variable-tag)
20562 (custom-variable-button, custom-face-tag, custom-group-tag-1)
20563 (custom-group-tag): Remove "-face" suffix from face names.
20564 (custom-magic-alist, custom-magic-value-create)
20565 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
20566 (custom-invalid-face, custom-rogue-face, custom-modified-face)
20567 (custom-set-face, custom-changed-face, custom-saved-face)
20568 (custom-button-face, custom-button-pressed-face)
20569 (custom-documentation-face, custom-state-face)
20570 (custom-comment-face, custom-comment-tag-face)
20571 (custom-variable-tag-face, custom-variable-button-face)
20572 (custom-face-tag-face, custom-group-tag-face-1)
20573 (custom-group-tag-face):
20574 New backward-compatibility aliases for renamed faces.
20575
20576 * wid-edit.el (widget-documentation, widget-button)
20577 (widget-field, widget-single-line-field, widget-inactive)
20578 (widget-button-pressed): "-face" suffix removed from face names.
20579 (widget-documentation-face, widget-button-face)
20580 (widget-field-face, widget-single-line-field-face)
20581 (widget-inactive-face, widget-button-pressed-face):
20582 New backward-compatibility aliases for renamed faces.
20583 (widget-documentation-face, widget-button-face)
20584 (widget-button-pressed-face, widget-specify-field)
20585 (widget-specify-inactive): Use renamed widget faces.
20586
20587 2005-06-10 Kenichi Handa <handa@m17n.org>
20588
20589 * term/x-win.el (x-clipboard-yank): Remove condition-case
20590 wrapping.
20591
20592 2005-06-11 Kenichi Handa <handa@m17n.org>
20593
20594 * add-log.el (change-log-font-lock-keywords): Make the regexp for
20595 date lines stricter.
20596
20597 2005-06-10 Zhang Wei <id.brep@gmail.com>
20598
20599 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
20600 of x-get-selection.
20601
20602 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
20603
20604 * comint.el (comint-mode, comint-snapshot-last-prompt):
20605 * frame.el (frame-current-scroll-bars):
20606 * term.el (term-mode, term-check-proc, term-input-sender)
20607 (term-simple-send, term-extract-string, term-word)
20608 (term-match-partial-filename):
20609 * window.el (window-current-scroll-bars):
20610 * emulation/cua-base.el (cua-normal-cursor-color)
20611 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
20612 (cua-global-mark-cursor-color):
20613 * mail/undigest.el (rmail-forward-separator-regex):
20614 Fix typos in docstrings.
20615
20616 * comint.el (comint-check-proc, make-comint-in-buffer)
20617 (comint-source-default): Doc fixes.
20618
20619 * term.el (term-send-string): Improve argument/docstring consistency.
20620
20621 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
20622
20623 * comint.el (comint-send-input): Bind `inhibit-read-only' around
20624 call to `delete-region'.
20625 (comint-mode-hook): Do not enable Font Lock by default.
20626
20627 2005-06-09 Lute Kamstra <lute@gnu.org>
20628
20629 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
20630 could be void.
20631
20632 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
20633
20634 * emacs-lisp/debug.el (debugger-will-be-back): New var.
20635 (debug): Use it.
20636 (debugger-step-through, debugger-continue, debugger-jump)
20637 (debugger-return-value): Set it when needed.
20638 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
20639 Use inhibit-read-only.
20640
20641 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
20642
20643 * window.el (shrink-window-if-larger-than-buffer)
20644 (window-size-fixed): Fix typo in docstring.
20645
20646 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
20647 thumbnails directory on loading.
20648 (thumbs-conversion-program): Use `eq' to check the system type,
20649 not `equal'.
20650 (thumbs-temp-dir): Initialize to `temporary-file-directory',
20651 not "/tmp". Fix docstring.
20652 (thumbs-thumbsdir): New function to return the thumbnails
20653 directory, creating it if needed.
20654 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
20655 (thumbs-temp-file): Delete variable and make it into a function.
20656 (thumbs-resize-image, thumbs-modify-image): Use it.
20657 (thumbs-kill-buffer): Simplify.
20658 (thumbs-gensym): Defalias or duplicate CL `gensym'.
20659 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
20660 docstrings.
20661
20662 2005-06-09 Kim F. Storm <storm@cua.dk>
20663
20664 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
20665 set-match-data to free markers in match-data.
20666
20667 * replace.el (replace-match-data): Pass RESEAT arg `t' to
20668 match-data to unchain markers in match-data.
20669
20670 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
20671
20672 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
20673 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
20674 unnecessary now.
20675
20676 2005-06-08 Richard M. Stallman <rms@gnu.org>
20677
20678 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
20679 give the variable a doc string that doesn't say don't set it directly.
20680
20681 * textmodes/ispell.el (ispell-check-version):
20682 Use match-string-no-properties.
20683 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
20684 (ispell-buffer-local-words): Likewise.
20685
20686 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
20687 except on terminals with enough colors to really display it.
20688 (makefile-dependency-regex): Delete spurious `bb'.
20689
20690 * faces.el (escape-glyph): Use blue once again in last case.
20691 (no-break-space): Redefine so that it isn't invisible on a tty.
20692
20693 2005-06-08 Kim F. Storm <storm@cua.dk>
20694
20695 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
20696 also when reading directory name.
20697
20698 2005-06-08 Lute Kamstra <lute@gnu.org>
20699
20700 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
20701 (flyspell-mode-line-string): Remove autoload cookie.
20702 (flyspell-mode): Remove defvar.
20703
20704 2005-06-07 Lute Kamstra <lute@gnu.org>
20705
20706 * textmodes/org.el (org-run-mode-hooks): New function.
20707 (org-agenda-mode): Use it.
20708
20709 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
20710
20711 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
20712
20713 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
20714
20715 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
20716
20717 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
20718
20719 * font-lock.el (font-lock-add-keywords): Doc fix.
20720
20721 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
20722
20723 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
20724 (tex-compile-default): In the absence of any history, use the order in
20725 tex-compile-alist to choose the preferred command.
20726 (tex-compile-commands): Reorder a bit.
20727
20728 * textmodes/flyspell.el (flyspell-auto-correct-binding)
20729 (flyspell-incorrect-face, flyspell-duplicate-face):
20730 Use (X)Emacs-agnostic code.
20731 (flyspell-mode-map): Don't overwrite at each load. Remove code
20732 redundant with the subsequent add-minor-mode. Merge Emacs and
20733 XEmacs code.
20734 (flyspell-word): Minor simplification.
20735 (flyspell-math-tex-command-p): Quieten the byte-compiler.
20736 (flyspell-external-point-words): Remove unused vars `size' and `start'.
20737 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
20738 Merge the corresponding Emacs code.
20739 (flyspell-correct-word, flyspell-xemacs-popup):
20740 Use flyspell-do-correct.
20741
20742 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
20743 a dedicated window.
20744
20745 * international/latexenc.el (latexenc-find-file-coding-system):
20746 Undo part of last patch, to turn off a compiler warning.
20747
20748 2005-06-06 Juri Linkov <juri@jurta.org>
20749
20750 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
20751 Rename `tmm-inactive-face' to `tmm-inactive'.
20752
20753 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
20754
20755 * iswitchb.el: Rename faces.
20756
20757 2005-06-06 Kim F. Storm <storm@cua.dk>
20758
20759 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
20760 (cua-global-mark): Remove -face suffix from face names.
20761
20762 * emulation/cua-gmrk.el (cua--init-global-mark):
20763 Remove cua-global-mark face setup.
20764
20765 2005-06-06 Richard M. Stallman <rms@gnu.org>
20766
20767 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
20768 just like other allowed characters.
20769 (makefile-match-dependency): Exclude leading and training whitespace
20770 from the range of regexp subexp 1.
20771 (makefile-macroassign-regex): Don't try to match the body,
20772 just the name of the macro being defined.
20773
20774 * info.el (Info-read-node-name-2): New function.
20775 (Info-read-node-name-1): Use that.
20776 Add a completion-base-size-function property.
20777
20778 * simple.el (completion-setup-function): Look for
20779 completion-base-size-function property of minibuffer-completion-table.
20780
20781 * files.el (locate-file-completion): Doc fix.
20782
20783 * printing.el: Don't call pr-update-menus; user must do that.
20784
20785 * emacs-lisp/debug.el (debugger-window): New variable.
20786 (debug): Use debugger-window if it is set and still alive.
20787 Record debugger-window for next entry.
20788
20789 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
20790
20791 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
20792
20793 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
20794 (hack-one-local-variable, hack-local-variables)
20795 (hack-local-variables-prop-line): Pass that arg.
20796
20797 2005-06-06 Kim F. Storm <storm@cua.dk>
20798
20799 * ido.el (ido-first-match, ido-only-match, ido-subdir)
20800 (ido-indicator): Remove -face suffix from face names.
20801
20802 2005-06-06 Juri Linkov <juri@jurta.org>
20803
20804 * font-lock.el (font-lock-regexp-backslash)
20805 (font-lock-regexp-backslash-construct): New faces.
20806 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
20807 after `('. Add `while-no-input' to control structures.
20808
20809 * faces.el (no-break-space, shadow): New faces.
20810 (escape-glyph): Use less loud colors pink2 and red4.
20811
20812 * diff-mode.el (diff-context-face)
20813 * dired.el (dired-ignored)
20814 * rfn-eshadow.el (file-name-shadow)
20815 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
20816
20817 * info.el (Info-title-1-face): Use green instead of yellow because
20818 bold yellow is not readable on light backgrounds.
20819
20820 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
20821 before selecting the desired mode to not spend time fontifying
20822 old contents.
20823
20824 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
20825
20826 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
20827 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
20828
20829 * ps-print.el (ps-default-fg, ps-default-bg):
20830 Fix typos in docstrings.
20831
20832 * isearchb.el (isearchb): Don't pass a spurious second argument to
20833 `iswitchb-completions'.
20834
20835 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
20836
20837 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
20838 to preserve point.
20839 (gdb-find-file-hook): Add doc string.
20840
20841 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
20842 C dereferenced pointer expression.
20843 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
20844
20845 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
20846
20847 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
20848 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
20849 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
20850 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
20851 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
20852 Make background transparent.
20853
20854 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
20855
20856 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
20857 (font-lock-remove-keywords): Doc fix.
20858 (font-lock-mode-major-mode): Compiler defvar.
20859 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
20860
20861 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
20862 (font-lock-mode): Update `font-lock-mode-major-mode'.
20863 (font-lock-set-defaults): Compiler defvar.
20864 (font-lock-default-function): Take `font-lock-mode-major-mode'
20865 into account.
20866
20867 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
20868 keep track of which major mode it enabled the minor mode for.
20869 Use find-file-hook again. Update docstring.
20870
20871 * simple.el (eval-expression-print-level)
20872 (eval-expression-print-length, eval-expression-debug-on-error):
20873 Doc fixes.
20874
20875 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
20876
20877 * iswitchb.el (iswitchb-single-match-face)
20878 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
20879 (iswitchb-invalid-regexp-face): New faces.
20880 (iswitchb-completions): Use them.
20881 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
20882 now marked as an obsolete alias.
20883 (iswitchb-read-buffer): Remove check for bound font variables.
20884 (iswitchb-invalid-regexp): New free variable.
20885 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
20886 set iswitchb-invalid-regexp.
20887 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
20888 invalid regexps.
20889 (iswitchb-completions): Add check for complete match when entering
20890 a regexp.
20891 (iswitchb-completions): Remove require-match argument.
20892 (iswitchb-exhibit): Fix caller.
20893 (iswitchb-common-match-inserted): New variable.
20894 (iswitchb-complete, iswitchb-completion-help): Use it.
20895
20896 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
20897
20898 * url-http.el (url-http-chunked-encoding-after-change-function):
20899 Use `url-http-debug' instead of `message'.
20900
20901 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
20902
20903 * url-http.el (url-http-parse-headers): Pass redirected URL as a
20904 callback argument.
20905
20906 2005-06-04 Kim F. Storm <storm@cua.dk>
20907
20908 * simple.el (line-move): Only call sit-for when moving backwards.
20909
20910 * ido.el (ido-make-merged-file-list-1): New defun split from
20911 ido-make-merged-file-list.
20912 (ido-make-merged-file-list): Bind throw-on-input around call to
20913 ido-make-merged-file-list-1. Return input-pending-p if
20914 interrupted by more input available.
20915 (ido-read-internal): Handle input-pending-p return value from
20916 ido-make-merged-file-list.
20917
20918 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
20919
20920 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
20921 compatibility code.
20922
20923 * international/latexenc.el (latexenc-find-file-coding-system):
20924 Don't inherit the EOL part of the coding-system from the
20925 tex-main buffer. Fit within 80 columns.
20926
20927 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
20928
20929 * tmm.el (tmm-inactive-face): New face.
20930 (tmm-remove-inactive-mouse-face): New function.
20931 (tmm-prompt, tmm-add-one-shortcut)
20932 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
20933 but not selectable.
20934
20935 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
20936
20937 * faces.el (face-equal): Improve argument/docstring consistency.
20938
20939 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
20940
20941 * progmodes/make-mode.el (makefile-targets-face)
20942 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
20943 (makefile-bsdmake-dependency-regex)
20944 (makefile-makepp-rule-action-regex)
20945 (makefile-bsdmake-rule-action-regex): New constants.
20946 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
20947
20948 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20949 Allow (...) within `...' for makepp messages.
20950
20951 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
20952
20953 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
20954
20955 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
20956 "." files are deleted from all file lists before comparison.
20957
20958 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
20959 (viper-ESC-key): Made them customizable.
20960
20961 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
20962
20963 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
20964
20965 * autorevert.el (auto-revert-buffers): Use save-match-data.
20966
20967 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
20968
20969 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
20970 menu items with a nil command binding.
20971
20972 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
20973
20974 * emacs-lisp/cl-macs.el (defsetf):
20975 Improve argument/docstring consistency.
20976
20977 * faces.el (list-faces-display): Improve the formatting by
20978 computing the maximum length required for any face-name (reworked
20979 patch of 1999-01-11, accidentally deleted on 1999-07-21).
20980 (internal-find-face): Remove redundant info in docstring.
20981
20982 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
20983
20984 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
20985 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
20986 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
20987 (gdb-assembler-custom): Improve regexps.
20988 (def-gdb-auto-update-handler): Use window point to preserve point.
20989
20990 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
20991
20992 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
20993
20994 2005-05-31 Jay Belanger <belanger@truman.edu>
20995
20996 * calc/calc-embed.el (calc-embedded-word): Change argument passed
20997 to calc-embedded.
20998 (calc-embedded-make-info): Have plain prefix argument select
20999 entire line.
21000
21001 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
21002
21003 * faces.el (list-faces-display): Signal error if passed a regexp
21004 that matches no face name.
21005
21006 * simple.el (filter-buffer-substring): Fix typo in docstring.
21007
21008 2005-05-31 Richard M. Stallman <rms@gnu.org>
21009
21010 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
21011 (vhdl-emacs-21): Doc fix.
21012 (vhdl-mode): Unconditionally set comment-padding.
21013 (vhdl-fixup-whitespace-region): Insert spaces only where
21014 there are none.
21015 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
21016
21017 2005-05-30 John Wiegley <johnw@newartisans.com>
21018
21019 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
21020 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
21021 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
21022 `directory-sep-char' to ?/, and all uses of `string-to-int' to
21023 `string-to-number'.
21024
21025 2005-05-30 Jay Belanger <belanger@truman.edu>
21026
21027 * calc/calc.el (calc-bug-address): Fix docstring.
21028 (calc-window-hook, calc-trail-window-hook): New variables.
21029 (calc-trail-display): Restore use of calc-trail-window-hook.
21030 (calc): Restore use of calc-window-hook.
21031
21032 2005-05-31 Masatake YAMATO <jet@gyve.org>
21033
21034 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
21035
21036 * help-fns.el (help-C-file-name): Add autoload mark for
21037 `find-function-noselect'.
21038
21039 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
21040
21041 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
21042 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
21043
21044 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
21045
21046 * calendar/diary-lib.el (mark-included-diary-files): Only kill
21047 included diary buffer if it was not already being visited.
21048 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
21049
21050 * calendar/icalendar.el (top-level): Do not require appt.
21051
21052 * mail/supercite.el (sc-select-attribution): Only use a list
21053 element from sc-attrib-selection-list if it returns a string.
21054 Reported by Davide G. M. Salvetti <salve@debian.org>.
21055
21056 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
21057
21058 * thumbs.el (thumbs-thumbname): The resulting thumbname now
21059 includes a hash value to improve its uniqueness, and has a ".jpg"
21060 extension. Also, it is now a valid filename on all systems.
21061 (thumbs-make-thumb): Use `let', not `let*'.
21062 (thumbs-show-thumbs-list): Check for JPEG availability.
21063
21064 2005-05-30 Richard M. Stallman <rms@gnu.org>
21065
21066 * filesets.el (filesets-menu-ensure-use-cached):
21067 Prevent warning when emacs-version>= is undefined.
21068
21069 * printing.el (pr-interactive-n-up): Use string-to-number.
21070
21071 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
21072
21073 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
21074 Warn only when name to be defined is quoted.
21075
21076 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
21077
21078 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
21079 Make regexp more robust.
21080 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
21081 Force regeneration of disassembly.
21082
21083 2005-05-29 Jay Belanger <belanger@truman.edu>
21084
21085 * calc/calc.el (calc-user-invocation): Check if
21086 calc-invocation-macro is non-nil.
21087
21088 2005-05-29 Juri Linkov <juri@jurta.org>
21089
21090 * add-log.el (change-log-font-lock-keywords):
21091 Add `+' to e-mail regexp to accept mail address with keywords.
21092
21093 * man.el (Man-name-regexp): Add `:' to accept qualified names.
21094
21095 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
21096
21097 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
21098
21099 * ielm.el (inferior-emacs-lisp-mode): Ditto.
21100
21101 2005-05-29 Richard M. Stallman <rms@gnu.org>
21102
21103 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
21104 Undo the change that moves to end of the current word.
21105
21106 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
21107
21108 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
21109 Throw error when count <= 0 to ensure input is a number.
21110 (gdb-read-memory-custom): Pick up address from buffer.
21111 (gdb-memory-mode): Allow user to increment and decrement
21112 memory address from header line.
21113
21114 2005-05-29 Richard M. Stallman <rms@gnu.org>
21115
21116 * flyspell.el (flyspell-version): Function deleted.
21117 (flyspell-auto-correct-previous-hook): Doc fix.
21118
21119 * jit-lock.el (jit-lock-function, jit-lock-after-change):
21120 Do nothing if memory is full.
21121
21122 * font-lock.el (font-lock-fontify-syntactically-region):
21123 Pass t for GREEDY to looking-back.
21124
21125 * saveplace.el (save-place-alist-to-file): Write the file
21126 using write-region.
21127
21128 * subr.el (looking-back): New argument GREEDY.
21129
21130 * progmodes/compile.el (compilation-start): Set the mode
21131 before inserting the initial text.
21132
21133 * progmodes/which-func.el (which-func-update-1): Turn the mode
21134 off in case of error by setting which-func-mode.
21135
21136 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
21137
21138 * flyspell.el (flyspell-auto-correct-previous-word):
21139 Narrow down to what's on the screen, and recenter overlays
21140 at the end of the next word.
21141
21142 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
21143
21144 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
21145 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
21146 (flyspell-abbrev-p): Default to nil.
21147 (flyspell-use-global-abbrev-table-p): Doc fix.
21148 (flyspell-large-region): Allow nil as value.
21149 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
21150
21151 (mail-mode-flyspell-verify): More robust handling
21152 of `mail-header-separator'. More efficient signature detection.
21153 Allow for regexp metacharacters in message-header-separator.
21154 Adding `To' not to be checked in mail-mode-flyspell-verify.
21155
21156 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
21157 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
21158 Bind flyspell-auto-correct-binding.
21159 Bind C-. and C-, .
21160 (flyspell-mode-map): Likewise.
21161 (flyspell-mode): Doc fix.
21162 (flyspell-accept-buffer-local-defs): Preserve current buffer.
21163 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
21164 (flyspell-word-cache-result): New var, always local.
21165 (flyspell-check-pre-word-p): Doc fix.
21166 (flyspell-check-changed-word-p): Handle spc like newline.
21167 (flyspell-post-command-hook): Set flyspell-word-cache-result.
21168 (flyspell-word-search-backward, flyspell-word-search-forward):
21169 New functions.
21170 (flyspell-word): Return t if nothing to check.
21171 When parsing TeX code, check for after } or \.
21172 Use flyspell-word-search-backward to find previous word.
21173 Return nil if duplicated word.
21174 For word already checked, return same value as last time.
21175 Set flyspell-word-cache-result after checking.
21176 Don't clobber the return value.
21177 (flyspell-get-word): Major rewrite.
21178 (flyspell-external-point-words): New locals pword, pcount.
21179 Fix size used in progress message.
21180 Find the proper corresponding word in flyspell-large-region-buffer.
21181 (flyspell-region): Check for flyspell-large-region = nil.
21182 (flyspell-highlight-incorrect-region): Clean up overlays in region.
21183 (flyspell-auto-correct-word): Check that WORD is a cons.
21184 (flyspell-correct-word): Likewise.
21185
21186 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
21187
21188 * progmodes/make-mode.el (makefile-rule-action-regex)
21189 (makefile-macroassign-regex, makefile-makepp-mode)
21190 (makefile-bsdmake-mode): Continuation lines may be empty.
21191 Reported by Joshua Varner.
21192 (makefile-makepp-font-lock-keywords): Add $(stem).
21193
21194 2005-05-28 Karl Berry <karl@gnu.org>
21195
21196 * textmodes/tex-mode.el: Now that tex-send-command calls
21197 shell-quote-argument (2005-03-31 change), remove all calls to
21198 shell-quote-argument; they all end up invoking tex-send-command.
21199 The double quoting loses on filenames with non-safe characters,
21200 such as "@". Reported by Frederik Fouvry.
21201
21202 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
21203
21204 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
21205 about preserving point.
21206
21207 2005-05-27 Jay Belanger <belanger@truman.edu>
21208
21209 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
21210 Info-goto-node.
21211
21212 * calc/calc-embed.el (calc-embed-arg): New variable.
21213 (calc-do-embedded-activate, calc-embedded-activate-formula)
21214 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
21215 variable by new variable.
21216 (calc-embedded-make-info): Replace undeclared variable by new
21217 variable. When selecting region with positive prefix
21218 argument, use end of previous line instead of beginning of line.
21219
21220 * calc/calc-aent.el (calc-arg-values): Declare it.
21221
21222 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
21223 Declare them.
21224
21225 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
21226
21227 * calc/calc.el (calc-alg-map): Declare it.
21228
21229 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
21230
21231 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
21232
21233 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
21234 (gdb-registers-buffer, toggle-gdb-all-registers):
21235 Toggle display of floating point registers.
21236 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
21237
21238 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
21239 (toggle-gud-tooltip-dereference):
21240 Rename from gud-toggle-tooltip-dereference.
21241
21242 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
21243
21244 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
21245
21246 2005-05-27 Jay Belanger <belanger@truman.edu>
21247
21248 * calc/calc-prog.el (calc-kbd-report): Remove.
21249 (calc-kbd-query): Rewrite.
21250
21251 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
21252
21253 * image.el (image-library-alist): Move to image.c.
21254 (image-type-available-p): Doc fix.
21255
21256 2005-05-27 Lute Kamstra <lute@gnu.org>
21257
21258 * calc/calc.el (calc):
21259 * outline.el (outline-1, outline-2, outline-3, outline-4)
21260 (outline-5, outline-6, outline-7, outline-8):
21261 * textmodes/dns-mode.el (dns-mode):
21262 * textmodes/sgml-mode.el (sgml-namespace-face):
21263 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
21264 (tex-verbatim-face, tex-use-reftex):
21265 * textmodes/texinfo.el (texinfo-heading-face):
21266 Specify customization group.
21267
21268 * longlines.el: Don't require easy-mmode.
21269 (longlines-visible-face): Specify customization group.
21270
21271 2005-05-27 Kenichi Handa <handa@m17n.org>
21272
21273 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
21274 encoding table of windows-1251.
21275
21276 * international/ucs-tables.el (ucs-set-table-for-input):
21277 If translation-table-for-input of a coding system is a symbol, get
21278 its translation-table property.
21279
21280 * international/code-pages.el: Don't register a coding system into
21281 non-iso-charset-alist more than once.
21282 (cp-make-coding-system): Likewise.
21283
21284 2005-05-26 John Wiegley <johnw@newartisans.com>
21285
21286 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
21287 `eshell-resume-eval' is wrapped in a list, it indicates that the
21288 command was run asynchronously. In that case, unwrap the value
21289 before checking the delimiter value.
21290
21291 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
21292 character before a space at the end of a line is \, assume the space
21293 is part of the last argument rather than a final argument separator.
21294
21295 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
21296 is in use, and the target is `t' or `nil' (which are the most common
21297 values), don't assume that the symbol target is a buffer.
21298
21299 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
21300
21301 * calendar/calendar.el (calendar-mode-line-format):
21302 Use mode-line-highlight as mouse-face.
21303
21304 * time.el (display-time-string-forms, display-time-update):
21305 Use mode-line-highlight as mouse-face.
21306
21307 2005-05-26 Jay Belanger <belanger@truman.edu>
21308
21309 * calc/calc.el (calc-language-alist): Remove extra defvar.
21310
21311 2005-05-26 Lute Kamstra <lute@gnu.org>
21312
21313 * arc-mode.el (archive-mode):
21314 * bookmark.el (bookmark-read-annotation-mode)
21315 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
21316 * bs.el (bs-mode):
21317 * calc/calc-yank.el (calc-edit-mode):
21318 * calc/calc.el (calc-mode, calc-trail-mode):
21319 * calculator.el (calculator-mode):
21320 * chistory.el (command-history-mode):
21321 * comint.el:
21322 * cus-edit.el (custom-mode):
21323 * descr-text.el (describe-text-mode):
21324 * ebuff-menu.el (Electric-buffer-menu-mode):
21325 * ediff-util.el (ediff-mode):
21326 * emacs-lisp/re-builder.el (reb-mode):
21327 * emulation/vi.el (vi-mode-setup):
21328 * emulation/ws-mode.el (wordstar-mode):
21329 * eshell/esh-mode.el (eshell-mode):
21330 * forms.el (forms-mode):
21331 * help-mode.el (help-mode):
21332 * hexl.el (hexl-mode):
21333 * ibuffer.el (ibuffer-mode):
21334 * ielm.el (inferior-emacs-lisp-mode):
21335 * info.el (Info-mode, Info-edit-mode):
21336 * international/swedish.el:
21337 * ledit.el (ledit-from-lisp-mode):
21338 * locate.el (locate-mode):
21339 * mail/rmail.el (rmail-mode):
21340 * mail/rmailedit.el (rmail-edit-mode):
21341 * mail/rmailsum.el (rmail-summary-mode):
21342 * mail/supercite.el (sc-electric-mode):
21343 * net/eudc.el (eudc-mode):
21344 * net/quickurl.el (quickurl-list-mode):
21345 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
21346 * obsolete/ooutline.el (outline-mode):
21347 * obsolete/options.el (Edit-options-mode):
21348 * obsolete/rnews.el (news-mode):
21349 * obsolete/rnewspost.el (news-reply-mode):
21350 * play/5x5.el (5x5-mode):
21351 * play/decipher.el (decipher-mode, decipher-stats-mode):
21352 * play/gomoku.el (gomoku-mode):
21353 * play/snake.el (snake-mode):
21354 * play/solitaire.el (solitaire-mode):
21355 * play/tetris.el (tetris-mode):
21356 * progmodes/ada-mode.el (ada-mode):
21357 * progmodes/antlr-mode.el (antlr-mode):
21358 * progmodes/autoconf.el (autoconf-mode):
21359 * progmodes/dcl-mode.el (dcl-mode):
21360 * progmodes/delphi.el (delphi-mode):
21361 * progmodes/ebrowse.el (ebrowse-tree-mode)
21362 (ebrowse-electric-list-mode, ebrowse-member-mode)
21363 (ebrowse-electric-position-mode):
21364 * progmodes/f90.el (f90-mode):
21365 * progmodes/fortran.el (fortran-mode):
21366 * progmodes/icon.el (icon-mode):
21367 * progmodes/idlw-help.el (idlwave-help-mode):
21368 * progmodes/idlw-shell.el (idlwave-shell-mode):
21369 * progmodes/idlwave.el (idlwave-mode):
21370 * progmodes/inf-lisp.el (inferior-lisp-mode):
21371 * progmodes/m4-mode.el (m4-mode):
21372 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
21373 * progmodes/modula2.el (modula-2-mode):
21374 * progmodes/octave-inf.el (inferior-octave-mode):
21375 * progmodes/octave-mod.el (octave-mode):
21376 * progmodes/pascal.el (pascal-mode):
21377 * progmodes/sh-script.el (sh-mode):
21378 * progmodes/sql.el (sql-mode, sql-interactive-mode):
21379 * progmodes/vhdl-mode.el (vhdl-mode):
21380 * progmodes/xscheme.el (scheme-interaction-mode):
21381 * replace.el (occur-mode):
21382 * ses.el (ses-mode):
21383 * simple.el (completion-list-mode):
21384 * skeleton.el:
21385 * speedbar.el (speedbar-mode):
21386 * term.el (term-mode):
21387 * terminal.el (terminal-edit-mode):
21388 * textmodes/reftex-index.el (reftex-index-mode)
21389 (reftex-index-phrases-mode):
21390 * textmodes/reftex-sel.el (reftex-select-label-mode)
21391 (reftex-select-bib-mode):
21392 * textmodes/reftex-toc.el (reftex-toc-mode):
21393 * wdired.el (wdired-change-to-wdired-mode):
21394 * wid-browse.el (widget-browse-mode):
21395 Use run-mode-hooks.
21396
21397 * array.el (array-mode):
21398 * calendar/todo-mode.el (todo-mode):
21399 * man.el (Man-mode):
21400 * play/landmark.el (lm-mode):
21401 * play/mpuz.el (mpuz-mode):
21402 Use kill-all-local-variables and run-mode-hooks.
21403
21404 * subr.el (delay-mode-hooks): Specify indentation.
21405
21406 2005-05-26 Mark A. Hershberger <mah@everybody.org>
21407
21408 * xml.el (xml-substitute-special): Don't die for undefined xml
21409 entities.
21410
21411 2005-05-26 Jay Belanger <belanger@truman.edu>
21412
21413 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
21414 of nil.
21415
21416 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
21417
21418 * progmodes/gdb-ui.el (gdb-frame-address):
21419 Rename from gdb-current-address.
21420 (gdb-previous-frame-address): Rename from gdb-previous-address.
21421 (gdb-selected-frame): Rename from gdb-current-frame.
21422 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
21423 (gdb-frame-number): Rename from gdb-current-stack-level.
21424 (gdb-ann3): Match new mode-name for disassembly buffer.
21425 Extend initialization of variables.
21426 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
21427 (gdb-memory-mode): Use mouse-face in header line.
21428 (gdb-assembler-buffer-name): Call it disassembly and give frame
21429 in mode line.
21430 (gdb-source-spec-regexp, gdb-assembler-custom)
21431 (gdb-invalidate-assembler, gdb-frame-handler):
21432 Make robust to leading zeroes in address format.
21433
21434 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
21435
21436 * textmodes/org.el (org-mode): Use `define-derived-mode' to
21437 define `org-mode'.
21438 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
21439
21440 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
21441
21442 * log-edit.el (log-edit-changelog-entries): Distinguish between
21443 filenames like xfns.c and fns.c.
21444
21445 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
21446
21447 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
21448 point after reverting.
21449 (Buffer-menu-make-sort-button): Handle the case where
21450 `Buffer-menu-use-header-line' is nil.
21451
21452 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
21453
21454 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
21455 New funcs. In minibuffer-local-completion-map bind `]', `/'
21456 and `:' to them.
21457
21458 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
21459
21460 * startup.el (normal-top-level): Allow modification of load-path while
21461 we're iterating over it.
21462
21463 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
21464
21465 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
21466 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
21467 (thumbs-resize-interactive, thumbs-insert-image)
21468 (thumbs-insert-thumb, thumbs-dired-show-marked)
21469 (thumbs-find-image-at-point, thumbs-delete-images)
21470 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
21471 (thumbs-increment-image-size, thumbs-decrement-image-size):
21472 Fix typos in docstrings.
21473
21474 2005-05-24 Andre Spiegel <spiegel@gnu.org>
21475
21476 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
21477 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
21478 (cperl-mode): Use them.
21479
21480 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
21481
21482 * window.el (quit-window, shrink-window-if-larger-than-buffer):
21483 Doc fixes.
21484
21485 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
21486
21487 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
21488 Bind C-d to gdb-inferior-io-eof.
21489
21490 * dired.el (dired-dnd-popup-notice): Use message-box.
21491
21492 2005-05-23 Masatake YAMATO <jet@gyve.org>
21493
21494 * bindings.el (mode-line-major-mode-keymap):
21495 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
21496
21497 * faces.el (mode-line-highlight): New face.
21498
21499 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
21500 as mouse-face.
21501
21502 * bindings.el (top-level, help-echo, mode-line-modified)
21503 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
21504 as mouse-face.
21505
21506 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
21507
21508 * progmodes/cc-engine.el (c-guess-basic-syntax):
21509 Remove spurious call to `zerop'.
21510
21511 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
21512
21513 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
21514
21515 CC Mode update to 5.30.10:
21516
21517 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
21518 could go past the limit in decoration level 2, thereby causing
21519 errors during interactive fontification.
21520
21521 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
21522 the file is evaluated interactively.
21523
21524 * cc-engine.el (c-guess-basic-syntax): Handle operator
21525 declarations somewhat better in C++.
21526
21527 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
21528 make use of `run-mode-hooks' which has been added in Emacs 21.1.
21529 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
21530 (awk-mode): Use it.
21531 (make-local-hook): Suppress warning about obsoleteness.
21532
21533 * cc-engine.el, cc-align.el, cc-cmds.el
21534 (c-append-backslashes-forward, c-delete-backslashes-forward)
21535 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
21536 Compensate for return value from `forward-line' when it has moved
21537 but not to a different line due to eob.
21538
21539 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
21540 `objc-method-intro' and `objc-method-args-cont'.
21541
21542 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
21543
21544 CC Mode update to 5.30.10:
21545
21546 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
21547 in the copyright statement. Incidentally, change "along with GNU
21548 Emacs" to "along with this program" where it occurs.
21549
21550 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
21551 so that it is interactive, hence can be found by M-x awk-mode
21552 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
21553 <gmorris+emacs@ast.cam.ac.uk>.
21554
21555 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
21556 Mode's regexps.
21557
21558 2005-05-23 Kevin Ryde <user42@zip.com.au>
21559
21560 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
21561 c-parse-state, to avoid a lisp error (on bad code).
21562
21563 2005-05-23 Lute Kamstra <lute@gnu.org>
21564
21565 * subr.el (font-lock-defaults): Remove defvar as it's already
21566 defined in font-core.el.
21567
21568 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
21569
21570 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
21571
21572 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
21573 more general and work when GDB variable "print pretty" is on,
21574 as with Emacs, for example.
21575
21576 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
21577
21578 * font-core.el: Update comment.
21579
21580 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
21581 Use `after-change-major-mode-hook' instead of `find-file-hook'.
21582
21583 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
21584
21585 2005-05-22 Eli Zaretskii <eliz@gnu.org>
21586
21587 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
21588 and `yank-handler' in the doc strings.
21589
21590 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
21591
21592 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
21593
21594 2005-05-22 Richard M. Stallman <rms@gnu.org>
21595
21596 * help.el (describe-key): Move print-help-return-message call
21597 out of conditional.
21598
21599 * progmodes/etags.el (list-tags): Use with-no-warnings.
21600
21601 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
21602 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
21603 (starttls-extra-args, starttls-extra-arguments): Add defvars.
21604
21605 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
21606
21607 * language/viet-util.el (viet-viscii-nonascii-translation-table):
21608 Add defvar.
21609
21610 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
21611 Use defvar, not defconst.
21612
21613 * hexl.el (hexl-follow-line): Use with-no-warnings.
21614
21615 * emulation/tpu-extras.el: Use write-file-functions instead of
21616 write-file-hooks.
21617
21618 * dired.el (dired-font-lock-keywords): Fontify files with junk
21619 extensions even if marked by -F.
21620
21621 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
21622
21623 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
21624 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
21625 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
21626 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
21627 (concatenate, list-length, get*, getf, cl-remprop):
21628 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
21629 (etypecase, progv, lexical-let, lexical-let*)
21630 (multiple-value-bind, multiple-value-setq, shiftf):
21631 Improve argument/docstring consistency.
21632
21633 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
21634
21635 2005-05-22 Andre Spiegel <spiegel@gnu.org>
21636
21637 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
21638 doesn't exist.
21639
21640 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
21641 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
21642
21643 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
21644
21645 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
21646 already deleted variables: auto-fill-hook, blink-paren-hook,
21647 lisp-indent-hook, inhibit-local-variables, unread-command-event,
21648 suspend-hooks, comment-indent-hook, meta-flag,
21649 before-change-function, after-change-function,
21650 font-lock-doc-string-face.
21651
21652 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
21653
21654 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
21655
21656 2005-05-21 Eli Zaretskii <eliz@gnu.org>
21657
21658 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
21659 rmail-dont-reply-to.
21660
21661 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
21662
21663 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
21664 literal blank when splitting new-header-values.
21665
21666 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
21667
21668 * calendar/cal-menu.el (cal-menu-update): Add separator as a
21669 string so that tmm doesn't create a completion entry for it.
21670
21671 * textmodes/table.el (table-disable-menu): Ditto.
21672
21673 2005-05-21 Richard M. Stallman <rms@gnu.org>
21674
21675 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
21676
21677 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
21678
21679 * net/rcompile.el (remote-compile): Use compilation-start.
21680
21681 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
21682
21683 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
21684
21685 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
21686 Default to makefile-bsdmake-mode on BSD systems.
21687
21688 * imenu.el (imenu-generic-expression, imenu--generic-function'):
21689 REGEXP may also be a search function now. The part of doc-string
21690 for describing the structure was 95% identical to that of
21691 `imenu--generic-function'. Unify it there.
21692
21693 * progmodes/make-mode.el (makefile-imenu-generic-expression):
21694 Use function to find dependencies, because regexp alone is so complex,
21695 it easily goes into an endless loop.
21696 (makefile-makepp-mode): Also add submenu for Perl functions
21697 defined in the makefile.
21698 (makefile-bsdmake-mode): Special imenu-generic-expression no
21699 longer needed, due to function call.
21700 (makefile-match-dependency): Take BOUND into account when checking
21701 if we're through.
21702
21703 2005-05-20 Jay Belanger <belanger@truman.edu>
21704
21705 * calc/calc-units.el (calc-invalidate-units-table):
21706 Use inhibit-read-only.
21707 (math-build-units-table-buffer): Use view-mode.
21708
21709 2005-05-20 David Kastrup <dak@gnu.org>
21710
21711 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
21712 easy-menu-add is not a nop on Emacs; and clarify when to call it.
21713
21714 2005-05-20 Lute Kamstra <lute@gnu.org>
21715
21716 * diff-mode.el (diff-header-face, diff-file-header-face)
21717 (diff-index-face, diff-hunk-header-face, diff-removed-face)
21718 (diff-added-face, diff-changed-face, diff-function-face)
21719 (diff-context-face, diff-nonexistent-face): Put them in the
21720 diff-mode customization group.
21721
21722 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
21723
21724 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
21725
21726 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
21727
21728 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
21729 Minor regexp-optimization.
21730
21731 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
21732
21733 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
21734 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
21735 (org-agenda-add-time-grid-maybe): New function.
21736 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
21737 (org-table-create): `dotimes' instead of `mapcar'.
21738 (org-xor): Simplify implementation.
21739 (org-agenda): `inhibit-redisplay' turned on.
21740 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
21741 a consistent line after a state change.
21742 (org-agenda-remove-times-when-in-prefix): New option.
21743 (org-prefix-has-time): New variable.
21744 (org-parse-time-string): Optional argument NODEFAULT.
21745 (org-format-agenda-item): Parse items for time-of-day
21746 specifications and move these into the prefix if possible.
21747 (org-agenda-priority): Get current heading, not previous heading
21748 during agenda remote editing.
21749
21750 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
21751
21752 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
21753 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
21754 (remove-duplicates, delete-duplicates, substitute)
21755 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
21756 (nsubstitute-if-not, find, find-if, find-if-not, position)
21757 (position-if, position-if-not, count, count-if, count-if-not)
21758 (mismatch, search, sort*, stable-sort, merge, member*)
21759 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
21760 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
21761 (intersection, nintersection, set-difference, nset-difference)
21762 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
21763 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
21764 (nsublis, tree-equal): Improve argument/docstring consistency.
21765
21766 * subr.el (send-string, send-region): Remove obsolescence declaration.
21767 (window-dot, set-window-dot, read-input, show-buffer)
21768 (eval-current-buffer, string-to-int):
21769 Add release number to obsolescence declarations.
21770
21771 2005-05-19 Kim F. Storm <storm@cua.dk>
21772
21773 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
21774 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
21775
21776 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
21777
21778 * faces.el (list-faces-display): Make back button respect optional
21779 regexp arg.
21780
21781 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
21782
21783 * calculator.el (calculator-radix-grouping-mode)
21784 (calculator-radix-grouping-digits, calculator-displayer)
21785 (calculator-radix-grouping-separator, calculator-copy-displayer):
21786 * dabbrev.el (dabbrev-search-these-buffers-only):
21787 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
21788 (diff-advance-after-apply-hunk, diff-mode-hook)
21789 (diff-minor-mode-prefix):
21790 * imenu.el (imenu-use-popup-menu):
21791 * jit-lock.el (jit-lock-context-time):
21792 * newcomment.el (comment-fill-column, comment-column)
21793 (comment-style, comment-padding, comment-multi-line)
21794 (comment-empty-lines, comment-auto-fill-only-comments):
21795 * reveal.el (reveal-around-mark):
21796 * uniquify.el (uniquify-buffer-name-style)
21797 (uniquify-after-kill-buffer-p)
21798 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
21799 (uniquify-min-dir-content, uniquify-separator)
21800 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
21801 * w32-vars.el (w32-fixed-font-alist):
21802 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
21803 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
21804 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
21805 * progmodes/perl-mode.el (perl-indent-level)
21806 (perl-continued-statement-offset, perl-continued-brace-offset)
21807 (perl-brace-offset, perl-brace-imaginary-offset)
21808 (perl-label-offset, perl-indent-continued-arguments)
21809 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
21810 * progmodes/tcl.el (tcl-indent-level)
21811 (tcl-continued-indent-level, tcl-auto-newline)
21812 (tcl-tab-always-indent, tcl-electric-hash-style)
21813 (tcl-help-directory-list, tcl-use-smart-word-finder)
21814 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
21815 (inferior-tcl-source-command):
21816 * textmodes/fill.el (enable-kinsoku):
21817 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
21818 * textmodes/table.el (table-yank-handler):
21819 Specify missing group (and type, if simple) in defcustom.
21820
21821 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
21822
21823 * progmodes/compile.el (compilation-finish-function): Fix defvar.
21824
21825 2005-05-19 Richard M. Stallman <rms@gnu.org>
21826
21827 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
21828
21829 * subr.el (event-basic-type): Don't get an error.
21830 (left-fringe-p): Function deleted.
21831
21832 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
21833 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
21834
21835 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
21836 in recursive copy.
21837
21838 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
21839
21840 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
21841
21842 * emacs-lisp/bytecomp.el
21843 (byte-compile-file-form-custom-declare-variable):
21844 Call byte-compile-nogroup-warn if appropriate.
21845
21846 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
21847 (compilation-set-window): Don't call left-fringe-p; do it directly.
21848
21849 2005-05-19 Jay Belanger <belanger@truman.edu>
21850
21851 * calc/calc-graph.el (calc-graph-format-data): Make sure
21852 var-PlotRejects is bound before trying to check its value.
21853
21854 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
21855
21856 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
21857 definition of this variable from reftex-global.el to reftex.el,
21858 because it is needed in the menu.
21859
21860 2005-05-19 Lute Kamstra <lute@gnu.org>
21861
21862 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
21863 years are fixed. Don't insert a space after a dash.
21864
21865 2005-05-19 Kim F. Storm <storm@cua.dk>
21866
21867 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
21868
21869 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
21870
21871 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
21872 strings, because (eq ... ?\\) is fairly frequent.
21873
21874 * progmodes/make-mode.el (makefile-add-this-line-targets):
21875 Simplify and integrate into `makefile-pickup-targets'.
21876 (makefile-add-this-line-macro): Simplify and integrate into
21877 `makefile-pickup-macros.
21878 (makefile-pickup-filenames-as-targets): Simplify.
21879 (makefile-previous-dependency, makefile-match-dependency):
21880 Don't stumble over `::'.
21881
21882 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
21883
21884 * subr.el (post-command-idle-hook, post-command-idle-delay):
21885 Remove obsoletion of post-command-idle-hook and
21886 post-command-idle-delay.
21887
21888 * faces.el (list-faces-display): Provide button when describe-face
21889 is called to take user back to the list of faces.
21890
21891 * help-fns.el (describe-variable): Remove hyperlinks in a
21892 variable's value as these are quite frequently inappropriate.
21893
21894 * follow.el (follow-submit-feedback, follow-mode):
21895 Remove references to post-command-idle-hook.
21896
21897 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
21898
21899 * progmodes/make-mode.el (makefile-previous-dependency)
21900 (makefile-match-dependency): Check for := (and in bsd mode also
21901 !=) to give a better result, even when font-lock is not on.
21902
21903 2005-05-18 Jay Belanger <belanger@truman.edu>
21904
21905 * calc/calc-help.el (calc-s-prefix-help):
21906 Add `calc-copy-special-constant' to help string.
21907
21908 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
21909
21910 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
21911
21912 2005-05-18 Jay Belanger <belanger@truman.edu>
21913
21914 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
21915 in linear factors are in proper order.
21916
21917 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
21918
21919 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
21920 Support for jurabib.
21921
21922 * textmodes/reftex.el (featurep): Define aliases for overlay
21923 commands, for XEmacs compatibility, and use these aliases in
21924 overlay initializations.
21925 (reftex-highlight): Use `reftex-move-overlay'.
21926 (reftex-unhighlight): Use `reftex-delete-overlay'.
21927 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
21928 (reftex-access-search-path): Use `reftex-uniquify' instead of
21929 `reftex-uniq'
21930
21931 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
21932 `before-string' property modification enables for Emacs as well.
21933 (reftex-select-item): Use `reftex-delete-overlay'.
21934 (reftex-select-mark): Use `reftex-make-overlay' and
21935 `reftex-overlay-put'.
21936 (reftex-select-unmark): Use `reftex-delete-overlay' and
21937 `reftex-overlay-put'.
21938
21939 2005-05-18 Lute Kamstra <lute@gnu.org>
21940
21941 * emacs-lisp/lisp.el (check-parens): Fix docstring.
21942
21943 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
21944
21945 * add-log.el (add-change-log-entry):
21946 * array.el (array-make-template, array-reconfigure-rows)
21947 (array-init-max-row, array-init-max-column)
21948 (array-init-columns-per-line, array-init-field-width):
21949 * replace.el (replace-match-maybe-edit, perform-replace):
21950 * textmodes/spell.el (spell-region):
21951 Replace `read-input' by `read-string'.
21952
21953 * forms.el (forms-mode):
21954 * finder.el (finder-compile-keywords):
21955 * shadowfile.el (shadow-read-files):
21956 Replace `eval-current-buffer' by `eval-buffer'.
21957
21958 * terminal.el (te-pass-through):
21959 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
21960 (ange-ftp-raw-send-cmd):
21961 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
21962 (send-process-next-char, telnet-initial-filter, telnet):
21963 Replace `send-string' by `process-send-string'.
21964
21965 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
21966 (prolog-consult-region): Replace `send-string' by
21967 `process-send-string'; replace `send-region' by `process-send-region'.
21968
21969 * progmodes/delphi.el (delphi-log-msg):
21970 Replace `set-window-dot' by `set-window-point'.
21971
21972 * subr.el (window-dot, set-window-dot, read-input, send-string)
21973 (send-region, show-buffer, eval-current-buffer):
21974 Make really obsolete, as the comment says.
21975
21976 2005-05-17 Kim F. Storm <storm@cua.dk>
21977
21978 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
21979 (cua--init-keymaps): Bind C-return instead of S-return to set
21980 rectangle mark.
21981
21982 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
21983 instead of S-return to toggle/clear rectangle mark.
21984
21985 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
21986
21987 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
21988 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
21989 Also fontify plain strings assigned to variables, mostly so that a
21990 colon has a face and is thus not taken as a dependency separator.
21991 (makefile-previous-dependency): Inline the new matcher, because it
21992 is too complex to work in both directions.
21993 (makefile-match-dependency): Eliminate `backward' arg (see above).
21994 Completely reimplemented so as to not sometimes go into an endless
21995 loop. It should also be more efficient, because first it only
21996 searches for `:', instead of applying the very complex regexp.
21997 (makefile-mode): Cancel `font-lock-support-mode', because blocks
21998 to be fontified in one piece can be too long for JIT.
21999 Makefiles are never *that* big.
22000
22001 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
22002
22003 * dired.el (dired-mode): Simplify.
22004
22005 2005-05-17 Lute Kamstra <lute@gnu.org>
22006
22007 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
22008 defcustom for the mode hook variable.
22009
22010 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
22011 Emacs Lisp Reference Manual.
22012
22013 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
22014
22015 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
22016 (evenp, list*):
22017 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
22018 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
22019
22020 * net/tramp-smb.el (tramp-smb-open-connection):
22021 Pass `tramp-chunksize' as fifth (required) argument.
22022
22023 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
22024
22025 * font-lock.el (lisp-font-lock-keywords-1):
22026 Set `font-lock-negation-char-face' for [^...] char group.
22027 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
22028
22029 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
22030 a var, and refine it to mask one more level of nested vars.
22031 (makefile-rule-action-regex): Turn it into a var, and refine it so
22032 it recognizes backslashed continuation lines as belonging to the
22033 same command.
22034 (makefile-macroassign-regex): Refine it so it recognizes
22035 backslashed continuation lines as belonging to the same command.
22036 (makefile-var-use-regex): Don't look at the next char, because it
22037 might be the same one to be skipped by the initial [^$], leading
22038 to an overlooked variable use.
22039 (makefile-make-font-lock-keywords): Remove two parameters, which
22040 are now variables that some of the modes set locally.
22041 Handle dependency and rule action matching through functions, because
22042 regexps alone match too often. Dependency matching now comes
22043 last, so it can check, whether a colon already matched something else.
22044 (makefile-mode): Inform that font-lock improves makefile parsing
22045 capabilities.
22046 (makefile-match-dependency, makefile-match-action): New functions.
22047
22048 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
22049
22050 * emacs-lisp/cl-extra.el (equalp): Doc fix.
22051
22052 * align.el (align-regexp):
22053 * ansi-color.el (ansi-color-get-face):
22054 * array.el (array-reconfigure-rows, array-init-max-row)
22055 (array-init-max-column, array-init-columns-per-line)
22056 (array-init-field-width):
22057 * dired-aux.el (dired-trample-file-versions):
22058 * dired-x.el (dired-mark-sexp):
22059 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
22060 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
22061 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
22062 * faces.el (face-read-integer):
22063 * files.el (backup-extract-version, insert-directory):
22064 * hexl.el (hexl-insert-decimal-char):
22065 * server.el (server-process-filter):
22066 * shell.el (shell-extract-num):
22067 * startup.el (command-line-1):
22068 * term.el (term-command-hook):
22069 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
22070 (time-stamp-do-number):
22071 * time.el (display-time-update):
22072 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
22073 (timezone-fix-time):
22074 * vms-patch.el (vms-suspend-resume-hook):
22075 * calendar/appt.el (appt-convert-time):
22076 * calendar/cal-bahai.el (mark-bahai-diary-entries):
22077 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
22078 * calendar/cal-islam.el (mark-islamic-diary-entries):
22079 * calendar/calendar.el (calendar-cursor-to-date)
22080 (calendar-star-date):
22081 * calendar/diary-lib.el (diary-attrtype-convert)
22082 (mark-diary-entries, diary-entry-time):
22083 * calendar/solar.el (solar-get-number):
22084 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
22085 * emacs-lisp/re-builder.el (reb-display-subexp):
22086 * emulation/edt.el (edt-set-scroll-margins):
22087 * emulation/tpu-extras.el (tpu-set-scroll-margins):
22088 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
22089 (vip-get-ex-count):
22090 * emulation/viper-ex.el (viper-get-ex-token)
22091 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
22092 * international/fontset.el (fontset-plain-name):
22093 * mail/feedmail.el (feedmail-look-at-queue-directory):
22094 * mail/mailalias.el (mail-get-names):
22095 * mail/rmail.el (rmail-convert-to-babyl-format):
22096 * mail/rmailsum.el (rmail-make-basic-summary-line)
22097 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
22098 (rmail-summary-goto-msg):
22099 * mail/smtpmail.el (smtpmail-read-response):
22100 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
22101 (ange-ftp-vms-add-file-entry):
22102 * play/gametree.el (gametree-looking-at-ply)
22103 (gametree-current-branch-score):
22104 * progmodes/ada-xref.el (ada-prj-find-prj-file)
22105 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
22106 * progmodes/cperl-mode.el (condition-case):
22107 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
22108 (ebrowse-set-member-buffer-column-width)
22109 (ebrowse-select-1st-to-9nth):
22110 * progmodes/etags.el (etags-snarf-tag):
22111 * progmodes/flymake.el (flymake-parse-line):
22112 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
22113 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
22114 (idlwave-shell-menu-def):
22115 * progmodes/ps-mode.el (ps-run-goto-error):
22116 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
22117 (vhdl-speedbar-contract-level):
22118 * term/mac-win.el (x-handle-numeric-switch):
22119 * term/sun-mouse.el (sun-get-frame-data):
22120 * term/w32-win.el (x-handle-numeric-switch):
22121 * term/x-win.el (x-handle-numeric-switch):
22122 * textmodes/ispell.el (ispell-parse-output):
22123 * textmodes/nroff-mode.el (nroff-outline-level):
22124 * textmodes/reftex-cite.el (reftex-bib-sort-year)
22125 (reftex-bib-sort-year-reverse, reftex-format-citation):
22126 * textmodes/reftex-parse.el (reftex-init-section-numbers)
22127 (reftex-section-number):
22128 * textmodes/texinfmt.el (texinfo-paragraphindent):
22129 Replace `string-to-int' by `string-to-number'.
22130
22131 * international/latexenc.el: Add page marker to force the "Local
22132 Variables:" string out of the last page.
22133
22134 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
22135
22136 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
22137 tooltip-change-major-mode.
22138 (gud-tooltip-print-command): Remove case where gud-minor-mode
22139 is gdb ("--fullname").
22140 (gud-tooltip-tips): Turn GUD tooltips off for this case and
22141 explain to user.
22142
22143 2005-05-16 Jay Belanger <belanger@truman.edu>
22144
22145 * calc/calc-store.el (calc-copy-special-constant): New function.
22146
22147 * calc/calc-ext.el (calc-init-extensions): Add binding for
22148 `calc-copy-special-constant'.
22149
22150 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
22151 for the `calc-copy-special-constant' command.
22152
22153 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
22154
22155 * subr.el (left-fringe-p): New function.
22156
22157 * progmodes/compile.el (compilation-setup): Set local value of
22158 overlay-arrow-string to "" always.
22159 (compilation-set-window): Left fringe then don't scroll.
22160 No left fringe then no arrow and scroll message to top.
22161 (compilation-context-lines): Adjust doc string accordingly.
22162
22163 2005-05-16 Kim F. Storm <storm@cua.dk>
22164
22165 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
22166 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
22167 (ido-wide-find-dir-or-delete-dir): New command for M-d.
22168 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
22169 (ido-read-file-name): Handle commands with ido property value
22170 equal to find-file as reading a file name, to allow C-d to enter dired.
22171 (ibuffer-find-file): Add ido property with value find-file.
22172
22173 2005-05-15 Kim F. Storm <storm@cua.dk>
22174
22175 * subr.el (open-network-stream-nowait): Remove.
22176 (open-network-stream-server): Remove.
22177
22178 2005-05-15 Richard M. Stallman <rms@gnu.org>
22179
22180 * faces.el (describe-face): Output a definition link button.
22181
22182 * help-mode.el (help-face-def): New button type.
22183
22184 * emacs-lisp/copyright.el (copyright-fix-years):
22185 Match properly if the first year is 2-digit.
22186 Don't mess up the whitespace after the years by filling.
22187
22188 * dired-aux.el (dired-mark-confirm):
22189 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
22190
22191 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
22192 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
22193 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
22194
22195 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
22196 Set font-lock-comment-start-skip.
22197
22198 * font-lock.el (font-lock-comment-start-skip): New variable.
22199 (font-lock-comment-end-skip): New variable.
22200 (font-lock-fontify-syntactically-region): Use them if non-nil.
22201
22202 2005-05-15 Jay Belanger <belanger@truman.edu>
22203
22204 * calc/calc-store.el (calc-store-value): Return a string rather
22205 than display it as a message.
22206 Use calc-var-name for variable name.
22207 (calc-store-into): Add the result of calc-store-value to message.
22208 (calc-copy-variable): Add a message.
22209 (calc-store-exchange): Improve error messages.
22210 (calc-store-binary, calc-store-map): Don't reset the values of
22211 special constants.
22212
22213 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
22214
22215 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
22216 manual to docstring.
22217
22218 * files.el (hack-local-variables-confirm): Add STRING argument.
22219 Make the function handle non file visiting buffers correctly.
22220 (hack-local-variables-prop-line, hack-local-variables)
22221 (hack-one-local-variable): Use STRING arg of
22222 `hack-local-variables-confirm'.
22223
22224 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
22225
22226 Sync with Tramp 2.0.49.
22227
22228 * net/tramp.el (tramp-handle-dired-call-process)
22229 (tramp-handle-insert-directory):`insert-buffer' cannot be used
22230 because the contents of the Tramp buffer is changed before
22231 insertion (`expand-file' and alike).
22232 (tramp-handle-insert-directory): If `localname' has an empty
22233 nondirectory name, it must not be quoted.
22234 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
22235 variable `tramp-chunksize'. Change callees.
22236 (tramp-open-connection-setup-interactive-shell): Check remote host
22237 for buggy `send-process-string' implementation.
22238 Set `tramp-chunksize' if found. Reported by Michael Kifer
22239 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
22240 (tramp-handle-shell-command): `insert-buffer' cannot be used
22241 because the contents of the Tramp buffer is changed before
22242 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
22243 <frederic.bothamy@free.fr>.
22244 (tramp-set-auto-save): Actions should be done for Tramp file name
22245 handler only. Ange-FTP has its own auto-save mechanism.
22246 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
22247 (tramp-set-auto-save-file-modes): Set file modes of
22248 `buffer-auto-save-file-name' to ?\600 as fallback solution.
22249 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
22250 (tramp-bug): Remove obsolete variable.
22251 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
22252 for presence of `mml-mode'. Make it running for older Emacsen as well.
22253
22254 2005-05-14 John Paul Wallington <jpw@pobox.com>
22255
22256 * ibuf-ext.el (define-ibuffer-filter filename):
22257 If `dired-directory' is a list, use its car.
22258
22259 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
22260
22261 * ibuffer.el (define-ibuffer-column filename):
22262 If `dired-directory' is a list, use its car.
22263
22264 2005-05-14 Richard M. Stallman <rms@gnu.org>
22265
22266 * subr.el (symbol-file): Doc fix.
22267
22268 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
22269 (byte-compile-form): Call byte-compile-nogroup-warn.
22270 (byte-compile-warning-types): Doc fix.
22271
22272 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
22273
22274 * progmodes/cc-engine.el (c-literal-faces):
22275 Add font-lock-comment-delimiter-face.
22276
22277 * net/net-utils.el (dig): Use with-no-warnings.
22278
22279 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
22280 (sc-recite-frame-alist, sc-default-cite-frame)
22281 (sc-default-uncite-frame, sc-default-recite-frame)
22282 (sc-attrib-selection-list, sc-rewrite-header-list):
22283 Mark as risky-local-variable.
22284
22285 * international/ogonek.el (ogonek-jak, ogonek-how):
22286 Don't use beginning-of-buffer.
22287
22288 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
22289
22290 * calendar/solar.el (solar-data-list): Move definition up.
22291
22292 * dnd.el (dnd-protocol-alist): Add autoload.
22293
22294 * progmodes/sh-script.el: Many doc usage fixes.
22295 (sh-indent-after-do): Change default to match common styles.
22296
22297 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
22298
22299 * files.el (interpreter-mode-alist)
22300 (auto-mode-interpreter-regexp): Doc fixes.
22301
22302 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
22303
22304 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
22305
22306 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
22307
22308 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22309
22310 * dired.el (dired-mode): make-variable-buffer-local =>
22311 make-local-variable.
22312
22313 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22314
22315 * term/mac-win.el (mac-select-convert-to-string): Try coding
22316 systems in mac-script-code-coding-systems if specified one cannot
22317 encode string for `com.apple.traditional-mac-plain-text'.
22318
22319 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
22320
22321 * progmodes/make-mode.el (makefile-targets-face)
22322 (makefile-shell-face, makefile-makepp-perl-face): New faces.
22323 (makefile-dependency-regex): Fix it to not make the colon in
22324 $(var:a=b) special.
22325 (makefile-rule-action-regex): New regexp for highlighting embedded
22326 Shell strings.
22327 (makefile-macroassign-regex): Handle != for highlighting as
22328 embedded Shell strings.
22329 (makefile-var-use-regex): New const.
22330 (makefile-statements, makefile-automake-statements)
22331 (makefile-gmake-statements, makefile-makepp-statements)
22332 (makefile-bsdmake-statements): New consts.
22333 (makefile-make-font-lock-keywords): New function.
22334 (makefile-automake-font-lock-keywords)
22335 (makefile-gmake-font-lock-keywords)
22336 (makefile-makepp-font-lock-keywords)
22337 (makefile-bsdmake-font-lock-keywords): New consts.
22338 (makefile-mode-map): Add switchers between the various submodes.
22339 (makefile-mode): Document the availability of the variants.
22340 (makefile-automake-mode, makefile-gmake-mode)
22341 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
22342
22343 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
22344 new variants of makefile-mode.
22345
22346 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22347
22348 * font-lock.el (font-lock-comment-delimiter-face): Fix up
22349 the inheritance.
22350
22351 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
22352
22353 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
22354 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
22355
22356 * files.el (normal-mode): Extend the scope of the
22357 `enable-local-variables' binding to include the `set-auto-mode' call.
22358 (magic-mode-alist): Doc fix.
22359
22360 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22361
22362 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
22363 font-lock-comment-face rather than copying its setting.
22364
22365 2005-05-12 Andreas Schwab <schwab@suse.de>
22366
22367 * eshell/esh-mode.el (eshell-send-input): Doc fix.
22368
22369 2005-05-12 Lute Kamstra <lute@gnu.org>
22370
22371 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
22372 defcustom for the mode hook variable. Delete the last argument.
22373 * generic-x.el: Fix callers of define-generic-mode.
22374 (generic-x-modes): Delete group.
22375 (show-tabs-tab-face, show-tabs-space-face): Put them in the
22376 generic-x customization group.
22377
22378 2005-05-12 Kim F. Storm <storm@cua.dk>
22379
22380 * font-lock.el (font-lock-negation-char-face): Default to "off".
22381
22382 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
22383 font-lock-negation-char-face to ! in !=.
22384
22385 2005-05-12 Masatake YAMATO <jet@gyve.org>
22386
22387 * add-log.el (find-change-log): Fix typos in the docstring
22388 of function.
22389
22390 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
22391
22392 * international/latexenc.el (latexenc-find-file-coding-system):
22393 Avoid `re-search-forward' when looking for input encoding because
22394 of speed and safety. Better regular expressions for recognizing
22395 input encoding. Limit a search for TeX-master/tex-main-file to
22396 the local variable section.
22397
22398 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
22399
22400 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
22401 syntax of $ to "'" (quote).
22402
22403 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
22404
22405 * dnd.el (dnd-protocol-alist): Improve custom type.
22406
22407 * dired.el (dired-dnd-protocol-alist): New variable.
22408 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
22409 `dired-mode-hook' to the end.
22410
22411 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
22412
22413 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
22414 comment-end if comment-start-skip is not set.
22415 Obey the font-lock-comment-delimiter-face variables.
22416
22417 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
22418
22419 * files.el (executable-find): Move from executable.el. Use
22420 locate-file.
22421 * progmodes/executable.el (executable-find): Move to files.el.
22422
22423 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
22424 when trying to ensure forward progress.
22425
22426 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
22427
22428 * mouse-sel.el (mouse-sel-follow-link-p): New function.
22429 (mouse-select, mouse-select-internal, mouse-extend-internal):
22430 Use it to implement mouse-1-click-follows-link functionality.
22431
22432 2005-05-11 Richard M. Stallman <rms@gnu.org>
22433
22434 * font-lock.el (font-lock-fontify-syntactically-region):
22435 Use font-lock-comment-delimiter-face for comment delimiters.
22436
22437 2005-05-10 Jay Belanger <belanger@truman.edu>
22438
22439 * calc/calc-help.el (calc-m-prefix-help): Add mention of
22440 preserving embedded modes.
22441
22442 2005-05-10 Richard M. Stallman <rms@gnu.org>
22443
22444 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
22445
22446 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
22447 Move from ada-stmt.el.
22448 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
22449
22450 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
22451 Move to ada-mode.el.
22452 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
22453
22454 * cus-edit.el (custom-file): Call file-chase-links.
22455
22456 * files.el (read-directory-name): Fix previous change.
22457 (hack-local-variables-confirm): New function.
22458 (hack-local-variables-prop-line, hack-local-variables)
22459 (hack-one-local-variable): Use it.
22460
22461 2005-05-10 Lute Kamstra <lute@gnu.org>
22462
22463 * font-lock.el (font-lock-keywords-alist)
22464 (font-lock-removed-keywords-alist): Clarify docstrings.
22465
22466 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
22467
22468 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
22469 (gdb-source-info): Check for preprocessor info.
22470 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
22471 a macro for a function.
22472 (gdb-info-breakpoints-custom): Try to find file again if not already
22473 found (user might have used GDB dir command).
22474 (gdb-get-location): Update gdb-location-alist correctly for change
22475 to gdb-info-breakpoints-custom.
22476
22477 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
22478 (gud-tooltip-print-command): Add gdbmi case.
22479 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
22480 preprocessor info.
22481
22482 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
22483
22484 * startup.el (fancy-splash-insert): Fix typo in doc string.
22485
22486 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
22487
22488 * obsolete/float.el (string-to-float):
22489 * obsolete/hilit19.el (hilit-add-pattern):
22490 * obsolete/rnews.el (news-parse-range, news-select-message)
22491 (news-get-pruned-list-of-files): Replace `string-to-int' by
22492 `string-to-number'.
22493
22494 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
22495 `find-file-not-found-hooks'; use `add-hook'.
22496 (uncompress-while-visiting): Set `write-file-functions', not
22497 `write-file-hooks'; use `add-hook'.
22498
22499 2005-05-09 Kim F. Storm <storm@cua.dk>
22500
22501 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
22502 (cua-paste): Handle clipboard action.
22503 (cua--init-keymaps): Remap clipboard-kill-region and
22504 clipboard-kill-ring-save.
22505
22506 2005-05-08 Eli Zaretskii <eliz@gnu.org>
22507
22508 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
22509 Improve commentary.
22510
22511 * simple.el (next-error-overlay-arrow-position): Revert the change
22512 made on 2005-04-30.
22513
22514 2005-05-07 Jay Belanger <belanger@truman.edu>
22515
22516 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
22517 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
22518 `calc-sel-reselect'.
22519
22520 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
22521 Calc is in embedded mode.
22522
22523 2005-05-07 Eli Zaretskii <eliz@gnu.org>
22524
22525 * progmodes/compile.el (compilation-setup):
22526 Set overlay-arrow-string to an empty string on text terminals.
22527
22528 * textmodes/ispell.el (ispell-program-name): Try looking for
22529 "aspell" along exec-path, and if found, use it as the default
22530 speller program.
22531
22532 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
22533
22534 * international/mule.el (sgml-xml-auto-coding-function):
22535 Recognize encoding='FOO' in single quotes as well as in double quotes.
22536
22537 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
22538
22539 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
22540 as well as `interactive', so that defmacro* would recognize
22541 `declare' forms.
22542
22543 2005-05-07 Eli Zaretskii <eliz@gnu.org>
22544
22545 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
22546 Explain more about the LIGHTER arg's usage in the doc string.
22547 Add commentary to clarify what the code does. Fix the regexp that
22548 strips whitespace from LIGHTER. Quote LIGHTER before using it,
22549 since it could have characters special to regular expressions.
22550
22551 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
22552
22553 * replace.el (occur-1): Bind inhibit-read-only so that
22554 erase-buffer doesn't barf on read-only text properties (likewise
22555 for add-text-properties in occur-engine). Mark buffer as unmodified.
22556 (occur-engine): Don't set buffer-read-only here.
22557
22558 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22559
22560 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
22561 list-buffers-directory. This caused the *cvs-commit* buffer to be
22562 sometimes mistakenly reused as a *cvs* buffer.
22563
22564 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
22565
22566 * tooltip.el: Move code for GUD tooltips into gud.el.
22567 (require): CL no longer needed to compile case.
22568 (tooltip-mode): Do not toggle functions for GUD tooltips.
22569 (tooltip-gud-tips-p): Remove. Replace with minor mode
22570 gud-tooltip-mode in gud.el.
22571 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
22572 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
22573 tooltip-gud prefix with gud-tooltip and obsolete.
22574 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
22575 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
22576 (tooltip-mouse-motion): Mouse movement functions/variable.
22577 Rename in gud.el by adding gud prefix.
22578 (tooltip-gud-original-filter, tooltip-gud-dereference)
22579 (tooltip-gud-event, tooltip-toggle-gud-tips)
22580 (tooltip-gud-process-output, tooltip-gud-print-command)
22581 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
22582 gud.el by replacing tooltip-gud prefix with gud-tooltip.
22583 (gdb-tooltip-print): Move to gdb-ui.el.
22584
22585 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
22586 (require): CL needed to compile case.
22587 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
22588 tooltip-gud-tips-p. Make it a minor-mode.
22589 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
22590 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
22591 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
22592 (gud-tooltip-change-major-mode)
22593 (gud-tooltip-activate-mouse-motions-if-enabled)
22594 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
22595 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
22596 (gud-tooltip-original-filter, gud-tooltip-dereference)
22597 (gud-tooltip-event, tooltip-toggle-gud-tips)
22598 (gud-tooltip-process-output, gud-tooltip-print-command)
22599 (gud-tooltip-tips): Move from tooltip.el.
22600
22601 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
22602 (gdb-cpp-define-alist-flags): Doc fix.
22603 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
22604 gud-tooltip-mode is t.
22605
22606 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22607
22608 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
22609 evaporate if their text is deleted.
22610 (goto-address-at-point): Make it work as a mouse binding as well.
22611 (goto-address-at-mouse): Obsolete it. Update users.
22612
22613 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
22614
22615 * calendar/appt.el (top-level): No longer activate on load.
22616
22617 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
22618
22619 * calendar/cal-bahai.el (mark-bahai-diary-entries):
22620 * net/webjump.el (webjump):
22621 * progmodes/idlw-help.el (idlwave-do-context-help1)
22622 (idlwave-highlight-linked-completions):
22623 * textmodes/po.el (po-find-file-coding-system-guts):
22624 Replace `assoc-ignore-case' by `assoc-string'.
22625
22626 2005-05-06 Eli Zaretskii <eliz@gnu.org>
22627
22628 * files.el (locate-file): Doc fix.
22629
22630 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
22631 Remove the redundant test for ms-dos.
22632
22633 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
22634 look for the preprocessor with exec-suffixes. If not found in
22635 standard places, look in exec-path. Remove most of the tests that
22636 used system-type.
22637
22638 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
22639
22640 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
22641
22642 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
22643 file-name clash with jka-compr.el on 8+3 filesystems.
22644
22645 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22646
22647 * term/mac-win.el: Don't define or bind scroll bar functions if
22648 x-toolkit-scroll-bars is t.
22649 (x-select-text, x-get-selection-value): Clear
22650 x-last-selected-text-clipboard if x-select-enable-clipboard is
22651 nil.
22652 (PRIMARY): Put mac-scrap-name property.
22653 (mac-select-convert-to-file-url): New function.
22654 (public.file-url): New selection target type. Add to
22655 selection-converter-alist.
22656 (x-get-selection, x-selection-value): Handle it.
22657 (x-cut-buffer-or-selection-value): New alias.
22658
22659 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
22660
22661 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
22662 entry to avoid calling bibtex-find-entry with arg global
22663 being t. Remove arg key.
22664 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
22665 (bibtex-copy-summary-as-kill): Change accordingly.
22666
22667 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
22668
22669 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
22670 (org-agenda-date-later): Use with-current-buffer.
22671
22672 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
22673
22674 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
22675 (define-obsolete-variable-alias): Doc Fixes.
22676
22677 2005-05-06 Kim F. Storm <storm@cua.dk>
22678
22679 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
22680 vertical-motion when selective-display is active.
22681
22682 * ido.el (ido-setup-hook): New hook.
22683 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
22684 (ido-input-stack): New var.
22685 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
22686 ido-next-work-file binding to M-O.
22687 Bind M-f to ido-wide-find-file-or-pop-dir.
22688 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
22689 (ido-read-internal): Run ido-setup-hook.
22690 Catch quit in read-file-name and read-string to cancel edit.
22691 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
22692 Automatically pop-all when completing a directory name (RET).
22693 (ido-file-internal): Add with-no-warnings around ffap and dired code.
22694 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
22695 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
22696 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
22697 New functions for M-b/M-f to move among the directory components.
22698 (ido-make-merged-file-list): Catch quit to cancel merge.
22699 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
22700 (ido-completion-help): No warnings for ido-completion-buffer-full.
22701
22702 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
22703
22704 * font-lock.el (font-lock-negation-char-face): New face and variable.
22705 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
22706 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
22707 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
22708 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
22709
22710 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
22711
22712 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
22713 Fix typo in docstring.
22714
22715 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
22716 (ebrowse-print-statistics-line)
22717 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
22718
22719 * term/w32-win.el (image-library-alist): Add additional name for
22720 Xpm library.
22721
22722 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
22723
22724 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
22725 use gcc instead of cpp.
22726
22727 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
22728 (gdb-create-define-alist): Use it.
22729 (gdb-cpp-define-alist-program): Update for MS-DOS.
22730
22731 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
22732
22733 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
22734
22735 2005-05-04 Richard M. Stallman <rms@gnu.org>
22736
22737 * help.el (describe-key): No error when UNTRANSLATED is nil.
22738
22739 * simple.el (line-move-1): Fix previous change to signal errors
22740 appropriately.
22741
22742 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
22743
22744 * calendar/icalendar.el (icalendar-version): Now at 0.12.
22745 (icalendar-duration-correction): Remove.
22746 (icalendar--get-event-properties): Split result at commas.
22747 (icalendar--decode-isoduration): New optional argument
22748 DURATION-CORRECTION.
22749 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
22750 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
22751 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
22752 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
22753 (icalendar--convert-anniversary-to-ical): New functions, extracted
22754 from icalendar-export-region, with bug fixes.
22755 (icalendar-export-region): Use the above functions.
22756 (icalendar-import-buffer): Check before saving diary file.
22757 (icalendar--convert-recurring-to-diary)
22758 (icalendar--convert-non-recurring-all-day-to-diary)
22759 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
22760 extracted from icalendar--convert-ical-to-diary, with bug fixes.
22761 (icalendar--convert-ical-to-diary): Use the above functions.
22762
22763 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
22764
22765 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
22766 Remove these recent additions.
22767 (c-mode): Restore to before 2005-04-28.
22768
22769 * progmodes/cc-vars.el (cc-define-list-program): Remove this
22770 recent addition.
22771
22772 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
22773 (gdb-define-alist): New variables.
22774 (gdb-create-define-alist): New function.
22775 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
22776 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
22777 with string-to-number.
22778 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
22779
22780 * progmodes/gud.el: Replace string-to-int with string-to-number.
22781 (gud-find-file): Handle gdb-define-alist.
22782
22783 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
22784
22785 2005-05-02 Jay Belanger <belanger@truman.edu>
22786
22787 * calc/calc-aent.el (math-read-token):
22788 * calc/calc-bin.el (calc-word-size):
22789 * calc/calc-ext.el (calc-read-number-fancy):
22790 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
22791 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
22792 * calc/calc-frac.el (calc-over-notation):
22793 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
22794 (calc-graph-num-points, calc-graph-init):
22795 * calc/calc-prog.el (calc-read-parse-table-part)
22796 (calc-edit-macro-repeats):
22797 * calc/calc-yank.el (calc-do-grab-rectangle):
22798 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
22799 Replace `string-to-int' by `string-to-number'.
22800
22801 2005-05-02 Kim F. Storm <storm@cua.dk>
22802
22803 * kmacro.el: Use executing-kbd-macro-index variable.
22804
22805 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
22806
22807 * net/rlogin.el (rlogin-parse-words): Delete func.
22808 (rlogin): Use split-string, not rlogin-parse-words.
22809 Also, if there are option-like elements in the parsed args,
22810 take the host to be the first arg immediately following them.
22811 Suggested by Michael Mauger.
22812
22813 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
22814
22815 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
22816
22817 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
22818
22819 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
22820 (cc-mode-cpp-program): Rename to cc-define-list-program and
22821 move to cc-vars.el.
22822
22823 * progmodes/cc-vars.el (cc-define-list-program):
22824 Change to "gcc -E -dM -". Make customizable.
22825
22826 2005-05-02 Kim F. Storm <storm@cua.dk>
22827
22828 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
22829
22830 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
22831
22832 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
22833
22834 * international/mule-util.el (truncate-string): Remove alias and
22835 obsolete declaration.
22836
22837 * international/mule-cmds.el (update-iso-coding-systems):
22838 Remove alias and obsolete declaration.
22839
22840 * international/mule.el (coding-system-parent): Remove alias and
22841 obsolete declaration.
22842
22843 * subr.el (define-function, sref): Remove aliases and obsolete
22844 declarations.
22845 (chars-in-region): Remove obsolete declaration.
22846
22847 2005-05-01 Richard M. Stallman <rms@gnu.org>
22848
22849 * info.el (Info-mode): Set widen-automatically to nil, locally.
22850
22851 * simple.el (widen-automatically): New variable.
22852 (pop-global-mark): Obey widen-automatically.
22853
22854 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
22855
22856 * term/xterm.el (function-key-map): Call substitute-key-definition
22857 before the keymap size is increased by a lot of define-key calls.
22858
22859 2005-05-01 Richard M. Stallman <rms@gnu.org>
22860
22861 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
22862 Rename ARG to ELEMENT. Doc fix.
22863
22864 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
22865
22866 * allout.el (allout-exposure): Remove macro and obsolete declaration.
22867 Remove references to allout-exposure/change to allout-new-exposure.
22868
22869 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
22870 bytecode symbols.
22871
22872 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
22873 (compiled-function-p, focus-frame, unfocus-frame):
22874 Remove aliases and obsolete declarations.
22875 Back out inadvertent changes from previous commit.
22876
22877 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
22878
22879 * files.el (require-final-newline): Make Custom tags consistent
22880 with mode-require-final-newline.
22881 (mode-require-final-newline): Doc fix.
22882
22883 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
22884
22885 * international/latexenc.el (latexenc-find-file-coding-system):
22886 Fix regular expressions.
22887
22888 2005-05-01 David Kastrup <dak@gnu.org>
22889
22890 * international/latexenc.el (latexenc-find-file-coding-system):
22891 Fix regular expressions.
22892
22893 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
22894
22895 * subr.el (string-to-int): Make obsolete.
22896
22897 2005-04-30 Richard M. Stallman <rms@gnu.org>
22898
22899 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
22900
22901 * loadup.el: load jka-comp-hook.
22902
22903 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
22904 (jka-compr-handler): Add autoload. `put' calls moved
22905 to jka-comp-hook.el.
22906 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
22907 (jka-compr-inhibit): Autoload.
22908
22909 * jka-comp-hook.el: New file.
22910 Enable the mode by default.
22911
22912 * files.el (backup-buffer-copy): Use copy-file instead
22913 of write-region, and put back the 'excl.
22914
22915 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
22916
22917 * progmodes/flymake.el (flymake-split-string)
22918 (flymake-split-string, flymake-log, flymake-pid-to-names)
22919 (flymake-reg-names, flymake-get-source-buffer-name)
22920 (flymake-unreg-names, flymake-add-line-err-info)
22921 (flymake-add-err-info): Clarify docstrings.
22922 (flymake-popup-menu, flymake-make-emacs-menu)
22923 (flymake-make-xemacs-menu): Add docstrings.
22924 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
22925 Set variables directly throughout.
22926
22927 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
22928
22929 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
22930 exists. Initialize cc-define-alist.
22931 (c-mode): Add cc-create-define-alist locally to after-save-hook.
22932 If there is no file (Macroexpansion) don't create an alist.
22933
22934 2005-04-29 Sam Steingold <sds@gnu.org>
22935
22936 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
22937 (cc-create-define-alist): Use it instead of the hard-coded string.
22938
22939 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
22940
22941 * international/mule-conf.el (file-coding-system-alist): Fix regexp
22942 for latexenc.
22943
22944 2005-04-29 Lute Kamstra <lute@gnu.org>
22945
22946 * emacs-lisp/generic.el: Improve commentary section.
22947 (define-generic-mode): Improve docstring.
22948
22949 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
22950
22951 * textmodes/org.el (many places): Change to quiet the byte compiler.
22952 (org-prefix-format-compiled): New variable.
22953 (org-compile-prefix-format): New function.
22954 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
22955 (org-agenda-prefix-format, org-timeline-prefix-format): New options.
22956 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
22957 (org-get-entries-from-diary): Use `org-get-time-of-day' for
22958 consistency with entries from `org-mode' files.
22959 (org-get-time-of-day): Fix bug with partial matches early in a line.
22960 (org-non-link-chars): New constant.
22961 (org-link-regexp): Respect `org-non-link-chars'.
22962 (org-agenda-day-view): Remove command.
22963 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
22964 (org-follow-bbdb-link, org-store-link): Search also company field.
22965 (org-highlight-overlay): New variable.
22966 (org-highlight, org-unhighlight): New functions.
22967 (org-agenda-mode): Add pre-command-hook to remove highlight.
22968 (org-evaluate-time-range): Behavior depends upon whether time stamp
22969 contains a time or not.
22970 (org-show-subtree, org-show-entry): New functions.
22971 (org-agenda-cleanup-fancy-diary): Remove empty lines.
22972
22973 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
22974
22975 * comint.el (comint-output-filter-functions): Add autoload cookie.
22976
22977 2005-04-28 Kim F. Storm <storm@cua.dk>
22978
22979 * ido.el (ido-everywhere): Fix last change.
22980
22981 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
22982
22983 * international/latexenc.el: New file.
22984 * international/mule-conf.el (file-coding-system-alist): For .tex,
22985 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
22986
22987 2005-04-28 Lute Kamstra <lute@gnu.org>
22988
22989 * font-lock.el (font-lock-add-keywords)
22990 (font-lock-remove-keywords): Clarify docstring.
22991 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
22992 Don't start docstrings with a `*'.
22993 (font-lock-update-removed-keyword-alist): Give it a docstring.
22994
22995 * generic-x.el: Update commentary section.
22996 Only require font-lock when compiling.
22997 Define all modes conditionally.
22998 Place all generic modes in the generic-x-modes customization group.
22999 (generic-x-modes): New customization group.
23000 (generic-default-modes, generic-mswindows-modes)
23001 (generic-unix-modes, generic-other-modes): New constants.
23002 (generic-define-mswindows-modes, generic-define-unix-modes):
23003 Update docstrings. Make them obsolete.
23004 (generic-extras-enable-list): New default value. Update docstring.
23005 Improve :type. Change :set function.
23006 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
23007 Fix docstring.
23008
23009 * emacs-lisp/generic.el (generic-mode-internal):
23010 Simplify font-lock-defaults.
23011 (define-generic-mode): Fix docstring.
23012
23013 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23014
23015 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
23016 font-lock-face property to highlight matches.
23017
23018 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
23019
23020 * progmodes/cc-mode.el (cc-create-define-alist): New function.
23021 (cc-define-alist): New variable.
23022 (c-mode): Make it local and initialize it.
23023
23024 * progmodes/gdb-ui.el (gdb-active-process): New variable.
23025 (gdb-exited): New function.
23026 (gdb-annotation-rules): Use it.
23027 (gdb-starting): Set gdb-active-process to t.
23028 (gdb-stopping): Amend doc string.
23029 (gdb-reset): Set gdb-active-process to nil.
23030
23031 * tooltip.el (tooltip-gud-tips): Show the associated #define
23032 directives when a C program under GDB is not executing.
23033
23034 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
23035
23036 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
23037 font-lock-fontify-syntactic-keywords.
23038
23039 * font-lock.el (font-lock-default-fontify-region): Don't force
23040 parse-sexp-lookup-properties to nil.
23041
23042 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
23043
23044 * man.el (man-mode-syntax-table): Set up `:' to have
23045 word-constituent syntax.
23046
23047 2005-04-27 Lute Kamstra <lute@gnu.org>
23048
23049 * novice.el (disable-command): Don't add spurious newlines to the
23050 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
23051
23052 2005-04-26 Jay Belanger <belanger@truman.edu>
23053
23054 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
23055 than one window before deleting window.
23056
23057 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
23058
23059 * shell.el (shell-prompt-pattern): Doc fix.
23060 (shell-mode): Set paragraph-separate buffer locally to "\\'".
23061
23062 * comint.el (comint-prompt-regexp, comint-get-old-input)
23063 (comint-use-prompt-regexp)
23064 (comint-use-prompt-regexp-instead-of-fields)
23065 (comint-replace-by-expanded-history, comint-send-input)
23066 (comint-output-filter, comint-get-old-input-default)
23067 (comint-line-beginning-position, comint-bol, comint-show-output)
23068 (comint-backward-matching-input, comint-forward-matching-input)
23069 (comint-next-prompt, comint-previous-prompt):
23070 Rename `comint-use-prompt-regexp-instead-of-fields' to
23071 `comint-use-prompt-regexp'. Keep old name as alias and declare
23072 obsolete.
23073 (comint-use-prompt-regexp): Shorten first line of doc string.
23074
23075 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
23076 Set paragraph-separate buffer locally to "\\'".
23077
23078 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
23079 Adapt to above name change.
23080
23081 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
23082 (smbclient-prompt-regexp): Ditto.
23083
23084 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
23085
23086 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
23087
23088 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
23089 gdb-location-list.
23090 Break lines that are over 80 characters wide.
23091
23092 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
23093
23094 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
23095 New fun and var, to preserve compatibility.
23096
23097 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
23098
23099 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
23100
23101 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
23102 name to file-newer-than-file-p.
23103
23104 2005-04-26 Richard M. Stallman <rms@gnu.org>
23105
23106 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
23107
23108 * progmodes/python.el (python-mode):
23109 Use new name eldoc-documentation-function.
23110
23111 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
23112
23113 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
23114 (eldoc-documentation-function):
23115 Rename from eldoc-print-current-symbol-info-function. Calls changed.
23116
23117 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
23118
23119 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
23120
23121 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
23122
23123 * term/xterm.el (function-key-map): Fix strings for
23124 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
23125 {C,S,A,C-S}-{f1-f12}.
23126
23127 2005-04-26 Kenichi Handa <handa@m17n.org>
23128
23129 * international/mule-cmds.el (select-safe-coding-system):
23130 Fix previous change.
23131
23132 2005-04-26 Lute Kamstra <lute@gnu.org>
23133
23134 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
23135
23136 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
23137 (font-lock-comment-delimiter-face): Ditto.
23138
23139 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
23140
23141 2005-04-25 Jay Belanger <belanger@truman.edu>
23142
23143 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
23144 to t while inserting information; use help-mode.
23145
23146 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
23147
23148 * term.el (ansi-term-color-vector): Use the xterm colors.
23149 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
23150
23151 2005-04-25 Lute Kamstra <lute@gnu.org>
23152
23153 * font-core.el (font-lock-defaults): Fix docstring.
23154
23155 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
23156
23157 2005-04-25 Kenichi Handa <handa@m17n.org>
23158
23159 * international/mule-cmds.el (select-safe-coding-system):
23160 Don't check consistency with coding: spec, etc if raw-text or
23161 no-conversion was found to be safe.
23162
23163 2005-04-24 Richard M. Stallman <rms@gnu.org>
23164
23165 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
23166 citation markers at start of each line.
23167
23168 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
23169 citation markers at start of each line.
23170
23171 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
23172
23173 * files.el (mode-require-final-newline): Fix previous change.
23174 (require-final-newline): Fix type label.
23175
23176 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
23177
23178 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
23179 statement in buffer (broken by 2004-11-24 change).
23180
23181 2005-04-24 Kim F. Storm <storm@cua.dk>
23182
23183 * ido.el (ido-everywhere): Save and restore old read-buffer-function
23184 and read-file-name-function values. Don't overwrite existing
23185 non-nil values if ido-mode is enabled without ido-everywhere.
23186
23187 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
23188
23189 * files.el (mode-require-final-newline): Minor doc fix.
23190
23191 2005-04-24 Eli Zaretskii <eliz@gnu.org>
23192
23193 * subr.el (syntax-after): Doc fix.
23194 (syntax-class): If argument is nil, return nil. Mask off upper 16
23195 bits, not 8 bits.
23196
23197 * files.el (mode-require-final-newline): Doc fix.
23198 (backup-buffer-copy): Fix last change.
23199
23200 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23201
23202 * term/mac-win.el: Require select. Set selection-coding-system to
23203 mac-system-coding-system. Call menu-bar-enable-clipboard.
23204 (x-last-selected-text-clipboard, x-last-selected-text-primary)
23205 (x-select-enable-clipboard): New variables.
23206 (x-select-text, x-get-selection, x-selection-value)
23207 (x-get-selection-value, mac-select-convert-to-string)
23208 (mac-services-open-file, mac-services-open-selection)
23209 (mac-services-insert-text): New functions.
23210 (CLIPBOARD, FIND): Put mac-scrap-name property.
23211 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
23212 (public.tiff): Put mac-ostype property.
23213 (selection-converter-alist): Add entries for them.
23214 (mac-application-menu-map): New keymap.
23215 (interprogram-cut-function, interprogram-paste-function): Set to
23216 x-select-text and x-get-selection-value, respectively.
23217 (split-window-keep-point): Set to t.
23218
23219 2005-04-23 Richard M. Stallman <rms@gnu.org>
23220
23221 * files.el (read-directory-name): Always pass non-nil
23222 DEFAULT-FILENAME arg to read-file-name.
23223 (backup-buffer-copy, basic-save-buffer-2): Take care against
23224 writing thru an unexpected existing symlink.
23225 (revert-buffer): In indirect buffer, revert the base buffer.
23226 (magic-mode-alist): Doc fix.
23227 (buffer-stale-function): Doc fix.
23228 (minibuffer-with-setup-hook): Avoid warning.
23229 (mode-require-final-newline): Doc and custom fix.
23230
23231 * follow.el (follow-end-of-buffer): Use with-no-warnings.
23232
23233 * font-lock.el (font-lock-comment-face): On terminals with few colors,
23234 use the default appearance.
23235 (font-lock-comment-delimiter-face): New face, new variable.
23236
23237 * imenu.el (imenu--generic-function): The official position of a
23238 definition is the start of the line that BEG is in.
23239
23240 * midnight.el (midnight-timer): Move defvar up.
23241
23242 * mouse.el (mouse-drag-region-1): Delete some debugging code.
23243
23244 * saveplace.el (save-place-to-alist): Use with-no-warnings.
23245
23246 * startup.el (command-line): Use with-no-warnings.
23247
23248 * window.el (window-size-fixed): New defvar.
23249
23250 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
23251
23252 * mail/rmail.el (rmail-font-lock-keywords):
23253 Use font-lock-comment-delimiter-face.
23254
23255 * mail/sendmail.el (mail-font-lock-keywords):
23256 Use font-lock-comment-delimiter-face.
23257
23258 * progmodes/compile.el (next-error-highlight-timer): New defvar.
23259
23260 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
23261
23262 * progmodes/compile.el (compilation-mode-font-lock-keywords):
23263 Specify t for LAXMATCH when matching directories.
23264 Save match data around compilation-compat-error-properties form.
23265
23266 2005-04-23 David Kastrup <dak@gnu.org>
23267
23268 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
23269 Mention that the autoloaded aliases should be kept for AUCTeX.
23270
23271 2005-04-23 Andreas Schwab <schwab@suse.de>
23272
23273 * isearch.el (isearch-forward): Doc fix.
23274
23275 2005-04-23 Eli Zaretskii <eliz@gnu.org>
23276
23277 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
23278 (jit-lock-stealth-nice): Change default value to 0.5.
23279
23280 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
23281
23282 * abbrev.el (write-abbrev-file): Write table entries in
23283 alphabetical order by table name.
23284
23285 2005-04-22 Kim F. Storm <storm@cua.dk>
23286
23287 * ido.el (ido-read-internal): Fix `list' completion.
23288
23289 2005-04-22 Kenichi Handa <handa@m17n.org>
23290
23291 * recentf.el (recentf-save-file-coding-system): New variable.
23292 (recentf-save-list): Encode the file by
23293 recentf-save-file-coding-system and add coding: tag.
23294
23295 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
23296
23297 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
23298
23299 2005-04-21 Lute Kamstra <lute@gnu.org>
23300
23301 * loadhist.el (unload-feature): Don't remove a function from hooks
23302 if it is about to be restored to an autoload . Remove functions
23303 that will become unbound from auto-mode-alist. Simplify the code.
23304
23305 * subr.el (assq-delete-all): New implementation that is linear,
23306 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
23307 (rassq-delete-all): New function.
23308
23309 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
23310 Add size-indication-mode.
23311
23312 2005-04-21 Kenichi Handa <handa@m17n.org>
23313
23314 * international/mule-cmds.el: Add autoload for widget-value in
23315 eval-when-compile.
23316
23317 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
23318
23319 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
23320 Add tooltip-mode.
23321
23322 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
23323
23324 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
23325
23326 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
23327 (inferior-lisp-filter-regexp, inferior-lisp-program)
23328 (inferior-lisp-load-command, inferior-lisp-prompt)
23329 (inferior-lisp-mode-hook, lisp-source-modes)
23330 (inferior-lisp-load-hook): defvar->defcustom.
23331 (inferior-lisp-program, inferior-lisp-prompt)
23332 (inferior-lisp-load-hook): Doc fixes.
23333 (inferior-lisp-install-letter-bindings): Small change in
23334 introductory comment.
23335
23336 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
23337
23338 * vc.el (vc-annotate-color-map): Change some colors so that text
23339 using them as foreground is readable on both white and black
23340 backgrounds.
23341
23342 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23343
23344 * international/mule-conf.el (translation-table-for-input):
23345 Remove redundant declaration.
23346
23347 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
23348
23349 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
23350
23351 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
23352 (tooltip-toggle-gud-tips): New function.
23353
23354 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23355
23356 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
23357 right angle brackets.
23358
23359 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
23360
23361 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
23362
23363 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
23364
23365 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
23366 Remove. Update callers to use expand-file-name instead.
23367
23368 * subr.el (syntax-class): New function.
23369
23370 * simple.el (blink-matching-open): Use it.
23371
23372 * paren.el (show-paren-function): Use it to recognize parens that are
23373 also used in 2-char comment markers.
23374
23375 2005-04-19 Lute Kamstra <lute@gnu.org>
23376
23377 * loadhist.el (unload-feature): Update for new format of
23378 load-history. Simplify the code.
23379
23380 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23381
23382 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
23383 (mac-add-charset-info): New function. Initialize variable
23384 mac-charset-info-alist using it.
23385 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
23386 for translation.
23387 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
23388 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
23389 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
23390 New CCL programs.
23391
23392 2005-04-19 Kim F. Storm <storm@cua.dk>
23393
23394 * simple.el (next-buffer, prev-buffer, next-error)
23395 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
23396 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
23397
23398 * bindings.el (next-buffer, prev-buffer, next-error)
23399 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
23400 (clone-indirect-buffer-other-window): Move bindings from simple.el.
23401 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
23402 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
23403
23404 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
23405
23406 * isearch.el (isearch-edit-string): Make the search-ring available for
23407 minibuffer history commands.
23408 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
23409 the default history commands now work just as well.
23410 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
23411
23412 2005-04-18 Kim F. Storm <storm@cua.dk>
23413
23414 * emulation/cua-base.el (cua--pre-command-handler): Add more
23415 elaborate check for shift modifier on non-window systems.
23416
23417 2005-04-18 Lars Hansen <larsh@math.ku.dk>
23418
23419 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
23420
23421 2005-04-18 Kim F. Storm <storm@cua.dk>
23422
23423 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
23424 and make it optional. Don't test tooltip-gud-echo-area here.
23425 (tooltip-gud-process-output, gdb-tooltip-print):
23426 Pass tooltip-gud-echo-area to tooltip-show.
23427 (tooltip-help-tips): Remove second optional arg to tooltip-show.
23428
23429 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23430
23431 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
23432 `display-graphic-p' may not be bound yet.
23433
23434 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
23435
23436 * startup.el (command-line): No longer enable Xterm Mouse mode by
23437 default in terminals compatible with xterm.
23438
23439 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
23440
23441 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
23442
23443 * tooltip.el (tooltip-gud-echo-area): Rename from
23444 tooltip-use-echo-area.
23445 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
23446 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
23447 area independently of where help tooltips are displayed.
23448
23449 2005-04-17 David Kastrup <dak@gnu.org>
23450
23451 * cus-theme.el (custom-theme-write-variables): Quote variables
23452 where necessary.
23453
23454 2005-04-17 Richard M. Stallman <rms@gnu.org>
23455
23456 * simple.el (yank-excluded-properties): Add follow-link to value.
23457
23458 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
23459
23460 * startup.el (fancy-splash-max-time): Just 30 seconds.
23461 (fancy-splash-delay): Just 7.
23462 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
23463
23464 * loadhist.el (unload-feature): Update for new format of load-history.
23465 Simplify the code.
23466
23467 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
23468 (rmail-font-lock-keywords): Don't fontify the text of a citation.
23469
23470 * mail/sendmail.el (mail-font-lock-keywords):
23471 Don't fontify subject text.
23472 Don't fontify the text of a citation.
23473
23474 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
23475
23476 * comint.el (comint-output-filter): Run comint-output-filter-functions
23477 with point where the user had it.
23478
23479 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
23480
23481 * international/ucs-tables.el (ucs-set-table-for-input):
23482 Disable when using unify-on-decoding.
23483
23484 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
23485
23486 * emulation/cua-base.el (cua-global-mark-face): Add special case
23487 for displays supporting a high number of colors.
23488
23489 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
23490
23491 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
23492
23493 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
23494
23495 * filesets.el (filesets-add-buffer): If user supplies a name of a
23496 non-existing fileset, create a new fileset.
23497
23498 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
23499
23500 * textmodes/org.el (org-up-heading-all): Fix bug with
23501 `outline-up-heading-all'.
23502
23503 2005-04-16 Andreas Schwab <schwab@suse.de>
23504
23505 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
23506 /etc/permissions.d/* and /etc/aliases.d/*.
23507
23508 2005-04-16 Kenichi Handa <handa@m17n.org>
23509
23510 * international/code-pages.el (cp-make-coding-system):
23511 Set `translation-table-for-input' property value to the symbol
23512 ucs-mule-to-mule-unicode, not to that value.
23513 (pt154): Escape guillemet by `\'.
23514
23515 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
23516
23517 * loadup.el: Load tooltip if x-show-tip is fboundp.
23518
23519 * startup.el (command-line): Add comment.
23520
23521 * tooltip.el (tooltip-mode): Specify correct standard value for
23522 Custom in init-value.
23523
23524 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
23525
23526 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
23527 possible.
23528
23529 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
23530
23531 * textmodes/org.el (org-agenda-date-prompt): Rename from
23532 `org-agenda-date-today'.
23533 (org-evaluate-time-range): Insert at point instead of directly
23534 after time range.
23535 (org-first-headline-recenter, org-subtree-end-visible-p)
23536 (org-optimize-window-after-visibility-change): New functions
23537 (org-agenda-post-command-hook): Don't allow point at end of line,
23538 to make sure it always hits the text properties.
23539 (org-agenda-next-date-line, org-agenda-previous-date-line):
23540 New commands.
23541 (org-set-regexps-and-options): Category may contain white space.
23542 (org-agenda-get-deadlines, org-agenda-get-scheduled):
23543 Improve marker positions.
23544 (org-agenda-new-marker): Argument POS made optional.
23545 (org-agenda-get-timestamps): Deadlines which are done are listed
23546 in org-done-face now.
23547 (org-agenda-get-todos, org-agenda-get-timestamps)
23548 (org-agenda-get-deadlines, org-agenda-get-scheduled):
23549 Set `undone-face' and `done-face' properties.
23550 (org-last-todo-state-is-todo): New variable.
23551 (org-todo): Set `org-last-todo-state-is-todo'.
23552 (org-agenda-todo): Change face according to
23553 `org-last-todo-state-is-todo'. And change other lines referring to
23554 the same entry.
23555 (org-calendar-goto-agenda): New command.
23556 (org-calendar-to-agenda-key): New option.
23557 (org-startup-folded): New allowed value `content'.
23558 (org-set-regexps-and-options): Accept new value `content' for
23559 `org-startup-folded'.
23560 (org-get-current-options): Handle new value `content' for
23561 `org-startup-folded'.
23562 (org-insert-todo-heading): New command.
23563 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
23564 interactively in empty file and option
23565 `org-insert-mode-line-in-empty-file' has been set.
23566 (org-agenda-todo, org-agenda-priority): Modify to use
23567 `org-agenda-change-all-lines'.
23568 (org-warning-face): Change color on dark background
23569
23570 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23571
23572 * international/mule-cmds.el (set-locale-environment): On Mac OS,
23573 use preferences AppleLocale and AppleLanguages, and variable
23574 mac-system-locale for default locale. On Mac OS Classic, use
23575 mac-system-coding-system for default coding systems.
23576
23577 * term/mac-win.el: Don't set file-name-coding-system.
23578 Decode variables system-name, emacs-build-system, user-login-name, and
23579 user-full-name by mac-system-coding-system on Mac OS Classic.
23580 (mac-system-coding-system): New variable.
23581
23582 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
23583
23584 * startup.el (command-line): Handle `xterm-mouse-mode' before
23585 reading init file.
23586
23587 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
23588
23589 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
23590
23591 * progmodes/sh-script.el (sh-here-document-word): Make it a
23592 defcustom. Doc fix.
23593 (sh-add): Bash uses $(( )) for arithmetic.
23594 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
23595 (sh-maybe-here-document): Remove quotes and leading whitespace
23596 from heredoc word when closing. Indent heredoc with tabs if word
23597 starts with "-".
23598
23599 2005-04-13 Richard M. Stallman <rms@gnu.org>
23600
23601 * simple.el (undo): Fix previous change.
23602
23603 * custom.el (defface): Doc fix.
23604
23605 2005-04-13 Lute Kamstra <lute@gnu.org>
23606
23607 * Makefile.in (DONTCOMPILE): Remove list.
23608 (compile, compile-always): Don't use DONTCOMPILE.
23609 (update-authors): Load the library in which batch-update-authors
23610 is defined.
23611 * makefile.w32-in (DONTCOMPILE): Remove list.
23612 (compile, compile-always): Fix comments.
23613 (update-authors): Load the library in which batch-update-authors
23614 is defined.
23615
23616 * generic-x.el (generic-mode-ini-file-find-file-hook):
23617 Rename to ini-generic-mode-find-file-hook.
23618 Keep generic-mode-ini-file-find-file-hook as an alias.
23619 (ini-generic-mode-find-file-hook): Rename from
23620 generic-mode-ini-file-find-file-hook. Fix docstring.
23621 (ini-generic-mode): Docstring change.
23622 (bat-generic-mode-run-as-comint): Silence the byte compiler.
23623
23624 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
23625 called from lisp.
23626
23627 * generic.el: Move to the emacs-lisp subdir.
23628
23629 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
23630
23631 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
23632 and C-S- function and cursor motion keys.
23633
23634 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
23635
23636 * startup.el (command-line): Enable Xterm Mouse mode by default.
23637 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
23638 for Custom. No longer show "Mouse" in mode line when enabled.
23639 Doc fix.
23640
23641 2005-04-12 Kim F. Storm <storm@cua.dk>
23642
23643 * emulation/cua-base.el (cua-rectangle-face)
23644 (cua-rectangle-noselect-face): Define face attributes here.
23645
23646 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
23647
23648 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23649
23650 * startup.el (command-line): Turn off blinking cursor if
23651 cursorBlink in resources is off or false.
23652
23653 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23654
23655 * term/mac-win.el (dnd): Require dnd.
23656 (mac-drag-n-drop): Call dnd-handle-one-url.
23657 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
23658 (kTextEncodingISOLatin2): Remove constants.
23659 (mac-script-code-coding-systems): New constant.
23660 (mac-handle-language-change): New function.
23661 (special-event-map): Bind it to `language-change' event.
23662 (mac-centraleurroman, mac-cyrillic): New coding systems.
23663 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
23664 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
23665 and mac-cyrillic-encoder to encode-mac-centraleurroman and
23666 encode-mac-cyrillic, respectively.
23667
23668 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23669
23670 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
23671 Don't set overlay-arrow-string to "=>" as this is done
23672 globally in C now.
23673
23674 2005-04-12 Lute Kamstra <lute@gnu.org>
23675
23676 * generic-x.el (rc-generic-mode, rul-generic-mode):
23677 Fix auto-mode-alist entries.
23678 (etc-fstab-generic-mode): Tweak fontification.
23679
23680 * generic.el (generic-make-keywords-list): Fix docstring.
23681 (generic-mode-internal): Simplify generic-font-lock-keywords.
23682
23683 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
23684
23685 * whitespace.el (whitespace-buffer-leading)
23686 (whitespace-buffer-trailing): Revert the incorrect test inversion.
23687 However, fix the highlight area for the leading and
23688 trailing whitespaces to show space.
23689
23690 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
23691
23692 * whitespace.el (whitespace-version): Bump to 3.5
23693
23694 (whitespace-buffer-leading, whitespace-buffer-trailing):
23695 Invert sense of the test to highlight the whitespace.
23696
23697 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23698
23699 * progmodes/gud.el (gud-display-line): GUD uses its own
23700 overlay arrow now so don't set overlay-arrow-string.
23701 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
23702
23703 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
23704
23705 * term.el (term-ansi-current-bold, term-ansi-current-underline)
23706 (term-ansi-current-reverse, term-ansi-current-invisible)
23707 (term-ansi-face-already-done): Change to boolean.
23708 (term-reset-terminal, term-handle-colors-array): Handle the above
23709 vars accordingly.
23710 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
23711 (term-emulate-terminal): Use the new name.
23712
23713 * faces.el (secondary-selection): Use yellow1, not yellow.
23714 (trailing-whitespace): Use red1, not red.
23715
23716 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23717
23718 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
23719 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
23720 (dired-dnd-handle-file): Call dnd-get-local-file-uri
23721
23722 * cus-edit.el (dnd): New group.
23723
23724 * term/w32-win.el (dnd): Require dnd
23725 (w32-drag-n-drop): Call dnd-handle-one-url.
23726
23727 * x-dnd.el: Require dnd.
23728 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
23729 Call dnd-handle-one-url.
23730 (x-dnd-types-alist, x-dnd-insert-utf8-text)
23731 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
23732 to dnd-insert-text.
23733 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
23734 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
23735 (x-dnd-get-local-file-name, x-dnd-open-local-file)
23736 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
23737
23738 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
23739
23740 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
23741
23742 * wdired.el: Doc fixes.
23743 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
23744 (wdired-use-dired-vertical-movement): Rename from
23745 wdired-always-move-to-filename-beginning.
23746 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
23747 (wdired-change-to-wdired-mode): Change mode name.
23748 (wdired-newline): Delete.
23749
23750 2005-04-11 Richard M. Stallman <rms@gnu.org>
23751
23752 * whitespace.el (whitespace-highlight-the-space):
23753 Don't call whitespace-unhighlight-the-space here.
23754
23755 * simple.el (undo): Record t in undo-equiv-table
23756 for the redo record made by an undo-in-region.
23757
23758 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23759
23760 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
23761 (gdb-frame-inferior-io-buffer): New Functions to control
23762 display of separate IO buffer.
23763 (menu): Add them to menu-bar.
23764 (gdb-display-buffer): Check for buffer another frame.
23765 Protect GUD buffer.
23766 (gdb-setup-windows): Create IO buffer if not already there.
23767 (gdb-memory-mode): Remove purecopy noops.
23768
23769 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
23770
23771 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
23772 and pass to self-insert-command.
23773
23774 2005-04-11 Lute Kamstra <lute@gnu.org>
23775
23776 * generic.el: Commentary section cleanup.
23777 (generic): Delete.
23778 (generic-use-find-file-hook, generic-lines-to-scan)
23779 (generic-find-file-regexp, generic-ignore-files-regexp)
23780 (default-generic-mode, generic-mode-find-file-hook)
23781 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
23782 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
23783 (generic-use-find-file-hook, generic-lines-to-scan)
23784 (generic-find-file-regexp, generic-ignore-files-regexp)
23785 (default-generic-mode, generic-mode-find-file-hook)
23786 (generic-mode-ini-file-find-file-hook): Move from generic.el.
23787
23788 2005-04-10 Karl Fogel <kfogel@red-bean.com>
23789
23790 * bookmark.el (bookmark-write-file): Catch errors writing file.
23791 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
23792
23793 2005-04-10 Richard M. Stallman <rms@gnu.org>
23794
23795 * startup.el (fancy-splash-tail): Update copyright year.
23796 (command-line): Split part of -Q into -D.
23797 (emacs-basic-display): New defvar.
23798 (fancy-splash-text): Correct name of menu item.
23799
23800 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
23801
23802 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
23803 lines in one node.
23804
23805 * comint.el (comint-send-input): New arg ARTIFICIAL.
23806 Callers in this file changed.
23807
23808 * abbrev.el (define-abbrevs): Read system abbrevs properly.
23809
23810 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
23811
23812 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
23813
23814 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
23815 `ldap-search-internal'.
23816
23817 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
23818
23819 * files.el (set-auto-mode-1): Use line-end-position.
23820
23821 * international/latin-1.el:
23822 * international/latin-2.el:
23823 * international/latin-3.el:
23824 * international/latin-4.el:
23825 * international/latin-5.el:
23826 * international/latin-8.el:
23827 * international/latin-9.el: Give punctuation syntax to NBSP.
23828
23829 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
23830 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
23831 Use char-classes to accept non-ascii letters, accepted in some recent
23832 bibtex implementations.
23833
23834 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
23835
23836 * custom.el (custom-set-minor-mode): Any non-nil value for the
23837 variable should enable the mode when set through Custom.
23838
23839 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
23840
23841 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
23842 TAB binding so tab-always-indent is obeyed.
23843 (vhdl-minibuffer-local-map): Move initialization into declaration.
23844 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
23845 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
23846 (vhdl-hooked-abbrev): Avoid test for XEmacs.
23847 (vhdl-current-line): Use line-beginning-position.
23848 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
23849 with-output-to-temp-buffer, so the current position can be recorded.
23850
23851 2005-04-10 Masatake YAMATO <jet@gyve.org>
23852
23853 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23854 Add regexp for gcov.
23855
23856 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
23857
23858 * calendar/time-date.el (time-to-seconds, seconds-to-time)
23859 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
23860 syntax which Emacs 20 doesn't support.
23861
23862 2005-04-09 Richard M. Stallman <rms@gnu.org>
23863
23864 * help.el (describe-key-briefly, describe-key):
23865 Replace strings as event types with "(any string)".
23866
23867 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
23868
23869 * arc-mode.el (archive-mode-map): Move initialization into
23870 the declaration. Override *all* bindings of `undo'.
23871 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
23872
23873 2005-04-09 Jay Belanger <belanger@truman.edu>
23874
23875 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
23876
23877 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
23878
23879 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
23880 (xterm-register-default-colors): Update color values computation
23881 to match xterm-200.
23882
23883 2005-04-09 Kenichi Handa <handa@m17n.org>
23884
23885 * international/code-pages.el (iso-latin-7): Fix the map.
23886
23887 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
23888
23889 * emacs-lisp/lisp.el (defun-prompt-regexp)
23890 (parens-require-spaces, buffer-end, end-of-defun)
23891 (insert-parentheses): Doc fixes.
23892
23893 2005-04-08 Kim F. Storm <storm@cua.dk>
23894
23895 * comint.el (comint-highlight-prompt): Fix face spec.
23896 * hi-lock.el (hi-green): Likewise.
23897
23898 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
23899
23900 * cus-edit.el (custom-modified-face):
23901 * comint.el (comint-highlight-input): Fix previous changes.
23902 * term.el (term-handle-ansi-escape): Add a comment.
23903
23904 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
23905
23906 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
23907 in the buffer and in whitespace-highlighted-space.
23908 (whitespace-unhighlight-the-space): Simplify.
23909 (whitespace-buffer): Simplify.
23910
23911 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
23912
23913 * textmodes/table.el (table-cell-face): Add special case for
23914 displays supporting a high number of colors.
23915 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
23916 (vhdl-font-lock-reserved-words-face)
23917 (vhdl-speedbar-architecture-face)
23918 (vhdl-speedbar-instantiation-face)
23919 (vhdl-speedbar-architecture-selected-face)
23920 (vhdl-speedbar-instantiation-selected-face): Likewise.
23921 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
23922 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
23923 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
23924 (ebrowse-root-class-face, ebrowse-member-attribute-face)
23925 (ebrowse-progress-face): Likewise.
23926 * progmodes/compile.el (compilation-info-face): Likewise.
23927 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
23928 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
23929 * calendar/calendar.el (diary-face): Likewise.
23930 * woman.el (woman-italic-face, woman-bold-face)
23931 (woman-unknown-face): Likewise.
23932 * wid-edit.el (widget-button-pressed-face): Likewise.
23933 * whitespace.el (whitespace-highlight-face): Likewise.
23934 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
23935 * pcvs-info.el (cvs-marked-face): Likewise.
23936 * info.el (info-xref): Likewise.
23937 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
23938 * hilit-chg.el (highlight-changes-face)
23939 (highlight-changes-delete-face): Likewise.
23940 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
23941 (hi-red-b): Likewise.
23942 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
23943 * font-lock.el (font-lock-keyword-face)
23944 (font-lock-function-name-face, font-lock-warning-face): Likewise.
23945 * cus-edit.el (custom-invalid-face, custom-modified-face)
23946 (custom-set-face, custom-changed-face, custom-variable-tag-face)
23947 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
23948 * comint.el (comint-highlight-prompt): Likewise.
23949
23950 2005-04-08 Lute Kamstra <lute@gnu.org>
23951
23952 * font-lock.el (font-lock-keywords): Docstring fixes.
23953
23954 2005-04-08 Kenichi Handa <handa@m17n.org>
23955
23956 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
23957 chars are more than a limit, print " and more..." at the tail.
23958
23959 2005-04-08 Kim F. Storm <storm@cua.dk>
23960
23961 * emacs-lisp/authors.el (authors-aliases): Update list.
23962 (authors-ignored-files): New list.
23963 (authors-fixed-entries): Fix typo.
23964 (authors-renamed-files-alist): Update list.
23965 (authors-add): Check authors-ignored-files.
23966
23967 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
23968
23969 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
23970 optional, to ensure backward compatibility.
23971
23972 2005-04-08 Stephen Eglen <stephen@gnu.org>
23973
23974 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
23975
23976 2005-04-08 Kim F. Storm <storm@cua.dk>
23977
23978 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
23979
23980 * mouse.el (mouse-on-link-p): Doc fix.
23981
23982 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
23983
23984 * ielm.el (ielm-prompt-read-only): Doc fix.
23985
23986 * comint.el (comint-prompt-read-only): Doc fix.
23987
23988 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
23989
23990 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
23991 ensure dired always handles wildcards passed to ffap.
23992 (find-file-at-point): Use it.
23993 (ffap-dired-wildcards): Doc fix.
23994
23995 2005-04-07 Juri Linkov <juri@jurta.org>
23996
23997 * simple.el (next-error-overlay-arrow-position): New defvar.
23998 Put "=>" on its property `overlay-arrow-string'. Add it to
23999 `overlay-arrow-variable-list'.
24000
24001 * progmodes/compile.el (compilation-setup):
24002 Set `next-error-overlay-arrow-position' to nil. Also set it to
24003 nil in the local hook `kill-buffer-hook'. Make local variable
24004 `overlay-arrow-string' and set it to "=>".
24005 (compilation-goto-locus): Set BOL position to
24006 `next-error-overlay-arrow-position' instead of
24007 `overlay-arrow-position'.
24008
24009 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
24010 locally instead of adding it to the global hook.
24011 (Info-kill-buffer): Move up.
24012
24013 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
24014
24015 * term/xterm.el (xterm-standard-colors): Update color values from
24016 xterm-200.
24017
24018 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
24019
24020 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
24021
24022 * fast-lock.el:
24023 * lazy-lock.el: Move them to the obsolete subdir.
24024
24025 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
24026
24027 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
24028 (wdired-add-replace-advice): Remove.
24029 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
24030
24031 2005-04-06 Kim F. Storm <storm@cua.dk>
24032
24033 * startup.el (command-line): Add --bare-bones alias for -Q.
24034
24035 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24036
24037 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
24038 create the startup fontset if a font specification ends with
24039 `mac-roman'.
24040
24041 2005-04-06 Lute Kamstra <lute@gnu.org>
24042
24043 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
24044 change.
24045
24046 * emacs-lisp/copyright.el (copyright-update-year): Replace the
24047 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
24048
24049 2005-04-05 Lute Kamstra <lute@gnu.org>
24050
24051 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
24052 (define-generic-mode): Ditto. Fix debug declaration.
24053
24054 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
24055 Put them in the generic-x group.
24056
24057 * calendar/timeclock.el (timeclock): Doc fix.
24058
24059 * generic.el (define-generic-mode): Don't use custom-current-group.
24060 Document default :group value.
24061 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
24062 (define-global-minor-mode): Don't use custom-current-group.
24063
24064 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
24065
24066 * startup.el (command-line-1): Display startup-echo-area-message
24067 when fancy splash screen is in use.
24068
24069 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
24070 (sh-escaped-newline): New face.
24071 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
24072 newline, and use sh-escaped-newline face.
24073
24074 * progmodes/tcl.el (tcl-escaped-newline): New face.
24075 (tcl-builtin-list): New variable.
24076 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
24077 newlines. Fix keywords subexpression number.
24078
24079 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
24080
24081 * textmodes/org.el (org-diary-default-entry): Fix call to
24082 `add-to-diary-entry'.
24083
24084 2005-04-05 Kim F. Storm <storm@cua.dk>
24085
24086 * ediff-init.el: Use (featurep 'xemacs).
24087
24088 2005-04-05 David Ponce <david@dponce.com>
24089
24090 * cus-edit.el (face): Derive from symbol widget. Display sample
24091 of the current face on the fly.
24092 (widget-face-sample-face-get, widget-face-notify): New functions.
24093 (widget-face-value-create): Remove.
24094
24095 * wid-edit.el (widget-field-end): Temporarily remove field
24096 narrowing before to call `get-char-property'.
24097
24098 2005-04-04 Jay Belanger <belanger@truman.edu>
24099
24100 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
24101 (math-read-subscripts): New variable.
24102 (math-read-preprocess-string): Process subscripts.
24103
24104 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
24105
24106 * comint.el (comint-prompt-read-only): Doc fix.
24107
24108 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
24109 `-1'. Doc fix.
24110
24111 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
24112
24113 * textmodes/org.el (org-insert-mode-line-in-empty-file):
24114 Change default value to nil.
24115
24116 2005-04-04 Lute Kamstra <lute@gnu.org>
24117
24118 * autorevert.el (auto-revert-mode): Specify :group.
24119 * battery.el (display-battery-mode): Specify :group.
24120 * diff-mode.el (diff-minor-mode): Specify :group.
24121 * font-core.el (font-lock-mode): Specify :group.
24122 * hl-line.el (hl-line-mode): Specify :group.
24123 * iimage.el (iimage): New customization group.
24124 (iimage-mode): Specify :group.
24125 * longlines.el (longlines-mode): Specify :group.
24126 * master.el: Don't require easy-mmode.
24127 (master): New customization group.
24128 (master-mode): Specify :group.
24129 * msb.el (msb-mode): Specify :group.
24130 * reveal.el (reveal-mode): Specify :group.
24131 * simple.el (next-error-follow-minor-mode): Specify :group.
24132 * smerge-mode.el (smerge-mode): Specify :group.
24133 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
24134 * emulation/cua-base.el (cua-mode): Specify :group.
24135 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
24136 * language/thai-util.el (thai-auto-composition-mode)
24137 (thai-word-mode): Specify :group.
24138 * mail/supercite.el (sc-minor-mode): Specify :group.
24139 * progmodes/cwarn.el (cwarn-mode): Specify :group.
24140 * progmodes/flymake.el (flymake-mode): Specify :group.
24141 * progmodes/glasses.el (glasses-mode): Specify :group.
24142 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
24143 * textmodes/enriched.el (enriched-mode): Specify :group.
24144 * textmodes/refill.el (refill-mode): Specify :group.
24145
24146 * add-log.el (change-log-font-lock-keywords): Names in
24147 parenthesized lists can contain spaces.
24148
24149 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
24150
24151 * startup.el (fancy-splash-text): Shorten default text of
24152 "Emacs Tutorial" line. Also, if the current language env
24153 indicates an available tutorial file other than TUTORIAL,
24154 extract its title and append it to the line in parentheses.
24155 (fancy-splash-insert): If arg is a thunk, funcall it.
24156
24157 2005-04-04 Jay Belanger <belanger@truman.edu>
24158
24159 * calc.el (calc-language-alist): Add tags to customization type.
24160
24161 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
24162
24163 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
24164 Doc fix.
24165
24166 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
24167
24168 * add-log.el (change-log-font-lock-keywords): The manual
24169 describing a Change Log entry, says: (...) "Aside from these
24170 header lines, every line in the change log starts with a space or
24171 a tab.". The font-lock was not highlighting lines started with
24172 spaces, added support for it.
24173
24174 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
24175
24176 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
24177 (bibtex-generate-url-list): Update docstring accordingly. Put the
24178 complex example in the docstring.
24179 (bibtex-font-lock-url): Use pop.
24180
24181 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
24182
24183 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
24184
24185 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
24186
24187 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
24188
24189 * filesets.el (filesets-set-default): Doc fix.
24190
24191 2005-04-03 Lute Kamstra <lute@gnu.org>
24192
24193 * generic.el (define-generic-mode): Add argument to specify
24194 keywords for defcustom.
24195 (default-generic-mode): Specify :group.
24196
24197 * generic-x.el: Specify :group for all generic modes.
24198
24199 * desktop.el (desktop-no-desktop-file-hook)
24200 (desktop-after-read-hook): Doc fix.
24201
24202 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
24203
24204 * simple.el (visible-mode): Use explicit :group keyword.
24205 This changes the group of `visible-mode-hook' from paren-blinking
24206 to editing-basics.
24207
24208 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
24209
24210 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
24211 mailbox specifications as well as URLs.
24212 (rmail-insert-inbox-text): Remove unused conditional branches.
24213
24214 2005-04-01 Jay Belanger <belanger@truman.edu>
24215
24216 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
24217 (calc-gnuplot-print-command): Move definitions to calc.el.
24218
24219 * calc/calc-embed.el (calc-embedded-announce-formula)
24220 (calc-embedded-open-formula, calc-embedded-close-formula)
24221 (calc-embedded-open-word, calc-embedded-close-word)
24222 (calc-embedded-open-plain, calc-embedded-close-plain)
24223 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
24224 (calc-embedded-open-mode, calc-embedded-close-mode):
24225 Move definitions to calc.el.
24226
24227 * calc/calc.el (calc-settings-file, calc-language-alist):
24228 Make customizable.
24229 (calc-embedded-announce-formula, calc-embedded-open-formula)
24230 (calc-embedded-close-formula, calc-embedded-open-word)
24231 (calc-embedded-close-word, calc-embedded-open-plain)
24232 (calc-embedded-close-plain, calc-embedded-open-new-formula)
24233 (calc-embedded-close-new-formula, calc-embedded-open-mode)
24234 (calc-embedded-close-mode, calc-gnuplot-name)
24235 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
24236 from other files and make customizable.
24237
24238 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
24239
24240 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
24241 Use buffer-live-p.
24242 (cvs-mode-run): Don't call cvs-update-header here.
24243 (cvs-run-process): Call cvs-update-header.
24244 Use process properties for cvs-postprocess and cvs-buffer so that
24245 the sentinel can behave better if the temp buffer is killed.
24246 Use a pipe rather than a tty, to better handle unexpected prompts.
24247 (cvs-sentinel): Rewrite. Call cvs-update-header.
24248
24249 2005-04-01 Andre Spiegel <spiegel@gnu.org>
24250
24251 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
24252 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
24253
24254 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
24255
24256 * generic.el (define-generic-mode): Add indentation rule.
24257
24258 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
24259
24260 * files.el (mode-require-final-newline): Make Custom correctly
24261 report a nil value and allow to set it to nil via Custom.
24262 Doc fix.
24263
24264 2005-04-01 Kenichi Handa <handa@m17n.org>
24265
24266 * international/characters.el: Enable the correct case setting for
24267 dotless-i and dotted-I.
24268
24269 2005-04-01 Kim F. Storm <storm@cua.dk>
24270
24271 * ido.el (ido-file-internal): Fall back to non-ido command if
24272 initial directory is on slow ftp (or tramp) host.
24273
24274 2005-03-31 Richard M. Stallman <rms@gnu.org>
24275
24276 * emacs-lisp/autoload.el (make-autoload):
24277 Handle define-global-minor-mode.
24278
24279 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
24280 Rename from easy-mmode-define-global-mode.
24281 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
24282
24283 * progmodes/scheme.el (scheme-mode-syntax-table):
24284 Update syntax of | and # for two-character comment syntax.
24285
24286 2005-03-31 Lute Kamstra <lute@gnu.org>
24287
24288 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
24289 (define-minor-mode): Call custom-current-group at load-time.
24290
24291 * generic.el (define-generic-mode): Add debug declaration.
24292 Add defcustom for the mode hook.
24293 (generic-mode-internal): Use run-mode-hooks.
24294
24295 2005-03-31 Kim F. Storm <storm@cua.dk>
24296
24297 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
24298 (mouse-fixup-help-message): New defun called by show_help_echo
24299 to fixup mouse-2 prefix in help messages when applicable.
24300
24301 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
24302
24303 2005-03-31 Kenichi Handa <handa@m17n.org>
24304
24305 * language/thai-word.el (thai-find-word-ends): Pay attention to
24306 the case that we reach the end of buffer.
24307
24308 * textmodes/fill.el (fill-text-properties-at): New function.
24309 (fill-newline): Use fill-text-properties-at instead of
24310 text-properties-at.
24311
24312 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
24313
24314 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
24315 not comint-quote-filename.
24316
24317 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
24318
24319 * help-fns.el (help-with-tutorial): Revert last change.
24320
24321 2005-03-31 Kim F. Storm <storm@cua.dk>
24322
24323 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
24324
24325 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
24326
24327 * calendar/cal-china.el: Update reference to "Calendrical
24328 Calculations" book; there's a new edition.
24329 * calendar/cal-coptic.el: Likewise.
24330 * calendar/cal-french.el: Likewise.
24331 * calendar/cal-hebrew.el: Likewise.
24332 * calendar/cal-islam.el: Likewise.
24333 * calendar/cal-iso.el: Likewise.
24334 * calendar/cal-julian.el: Likewise.
24335 * calendar/cal-mayan.el: Likewise.
24336 * calendar/cal-persia.el: Likewise.
24337 * calendar/calendar.el: Likewise.
24338 * calendar/holidays.el: Likewise.
24339 * calendar/lunar.el: Likewise.
24340 * calendar/solar.el: Likewise.
24341
24342 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
24343 white space from doc string.
24344
24345 2005-03-30 Jay Belanger <belanger@truman.edu>
24346
24347 * calc/calc-help.el (calc-full-help): Remove email address.
24348
24349 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
24350
24351 * help-fns.el (help-with-tutorial): Delete title line.
24352
24353 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
24354
24355 * calendar/cal-x.el (calendar-one-frame-setup)
24356 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
24357 rather than `symbol' for set-window-dedicated-p.
24358
24359 * calendar/appt.el (appt-buffer-name): Make it a constant.
24360 (appt-add): Doc fix.
24361
24362 * filesets.el (filesets-menu-path, filesets-menu-before)
24363 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
24364 (filesets-menu-cache-file): Use directory ~/.emacs.d.
24365 (filesets-add-submenu): Delete and use add-submenu instead.
24366
24367 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
24368
24369 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
24370 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
24371 (org-diary-default-entry): New function.
24372 (org-get-entries-from-diary): Better parsing of diary entries.
24373 (org-agenda-check-no-diary): New function.
24374 ("diary-lib"): Advice to function `add-to-diary-list', to allow
24375 linking to diary entries.
24376 (org-agenda-execute-calendar-command): New function.
24377 (org-agenda): Improve visible section in window.
24378 Use `org-fit-agenda-window'.
24379 (org-fit-agenda-window): New option.
24380 (org-move-subtree-down): Better handling of empty lines
24381 at end of subtree.
24382 (org-cycle): Numeric prefix is interpreted now as show-subtree N
24383 levels up.
24384 (org-fontify-done-headline): New option.
24385 (org-headline-done-face): New face.
24386 (org-set-font-lock-defaults): Use `org-headline-done-face'.
24387 (org-table-copy-down): Rename from `org-table-copy-from-above'.
24388 When current field is non-empty, it is copied to next row.
24389 (org-table-copy-from-above): Fix bug which made it
24390 impossible to copy fields containing only a single non-white character.
24391
24392 2005-03-30 Kim F. Storm <storm@cua.dk>
24393
24394 * kmacro.el (kmacro-end-macro): Isearch may store this command
24395 into the macro -- so ignore it when executing keyboard macro.
24396
24397 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
24398
24399 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
24400
24401 2005-03-29 Kenichi Handa <handa@m17n.org>
24402
24403 * language/thai.el ("Thai"): Set setup-function and exit-function
24404 for Thai language environment.
24405
24406 * language/thai-util.el: Require thai-word.
24407 (thai-word-mode-map): New variable.
24408 (thai-word-mode): New minor mode.
24409 (setup-thai-language-environment-internal): New function.
24410 (exit-thai-language-environment-internal): New function.
24411
24412 * language/thai-word.el (thai-word-table): Declare it by defvar,
24413 use dolist to initialize it.
24414 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
24415 (thai-fill-find-break-point): New functions.
24416
24417 2005-03-29 Richard M. Stallman <rms@gnu.org>
24418
24419 * simple.el (idle-update-delay): Move definition up.
24420 (set-mark): Doc fix.
24421
24422 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
24423
24424 * longlines.el: New file.
24425
24426 * simple.el (buffer-substring-filters): New variable.
24427 (filter-buffer-substring): New function.
24428 (kill-region, copy-region-as-kill): Use it.
24429
24430 * register.el (copy-to-register, append-to-register)
24431 (prepend-to-register): Use filter-buffer-substring.
24432
24433 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
24434
24435 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
24436 (gud-filter-pending-text): Move in front of gdb.
24437 (gud-overlay-arrow-position): New variable.
24438 (gud-sentinel, gud-display-line): Use it in place of
24439 overlay-arrow-position.
24440
24441 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
24442
24443 * progmodes/fortran.el (fortran-if-indent): Doc fix.
24444 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
24445 (fortran-font-lock-keywords-4): New variable.
24446 (fortran-blocks-re, fortran-end-block-re)
24447 (fortran-start-block-re): New constants, for hideshow.
24448 (hs-special-modes-alist): Add a Fortran entry.
24449 (fortran-mode-map): Bind fortran-end-of-block,
24450 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
24451 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
24452 (fortran-looking-at-if-then, fortran-end-of-block)
24453 (fortran-beginning-of-block): New functions, for hideshow.
24454
24455 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
24456 Doc fix. Tweak regexp.
24457 (f90-beginning-of-block): Push mark first.
24458
24459 2005-03-29 Jay Belanger <belanger@truman.edu>
24460
24461 * calc/calc.el: Update copyright date.
24462 (calc-version): Increase to 2.1.
24463 (calc-version-date): Remove.
24464
24465 * calc/calc-help.el: Update copyright date.
24466 (calc-full-help): Remove reference to calc-version-date.
24467 Update copyright date.
24468
24469 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
24470
24471 * vc.el (vc-do-command): Use a pipe for async processes, so password
24472 prompts don't show up at places where the user can't reply.
24473
24474 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
24475
24476 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
24477 on the file name we pass to the inferior shell.
24478
24479 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
24480
24481 * progmodes/which-func.el (which-function): Be robust in the face of an
24482 imenu--make-index-alist failure.
24483
24484 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
24485
24486 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
24487
24488 * progmodes/python.el (python-preoutput-filter): Fix last change.
24489
24490 2005-03-29 Lute Kamstra <lute@gnu.org>
24491
24492 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
24493 functions and compiled macros.
24494 (debug-convert-byte-code): Handle macros too.
24495 (debug-on-entry-1): Don't signal an error when trying to clear a
24496 function that is not set to debug on entry.
24497
24498 2005-03-29 Jay Belanger <belanger@truman.edu>
24499
24500 * calc/calc-lang.el: Add functions to math-function-table
24501 properties of tex and math.
24502
24503 2005-03-29 Kenichi Handa <handa@m17n.org>
24504
24505 * ps-mule.el (ps-mule-plot-string): Translate characters by
24506 ps-print-translation-table.
24507 (ps-mule-begin-job): Call find-charset-region/string with
24508 ps-print-translation-table.
24509 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
24510
24511 * ps-print.el (ps-print-translation-table): New variable.
24512 (ps-plot-region): Translate characters by ps-print-translation-table.
24513
24514 2005-03-29 Juri Linkov <juri@jurta.org>
24515
24516 * simple.el (next-error-highlight-timer): New variable.
24517
24518 * progmodes/compile.el (compilation-goto-locus):
24519 Use `next-error-highlight-timer' instead of `sit-for'.
24520
24521 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
24522
24523 * mail/supercite.el (sc-mail-field): Use assoc-string.
24524 (sc-get-address): Simplify regexps.
24525
24526 * files.el (minibuffer-with-setup-hook): New macro.
24527 (find-file-read-args): Use it to avoid let-binding
24528 minibuffer-with-setup-hook (which breaks turning on/off
24529 file-name-shadow-mode while in the prompt).
24530
24531 * complete.el (PC-read-include-file-name-internal):
24532 Use test-completion.
24533
24534 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
24535
24536 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
24537
24538 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
24539
24540 * window.el (window-buffer-height): Use count-screen-lines.
24541
24542 * progmodes/python.el (python-preoutput-leftover): New var.
24543 (python-preoutput-filter): Use it.
24544 (python-send-receive): Loop until all the result has been received.
24545
24546 2005-03-28 Juri Linkov <juri@jurta.org>
24547
24548 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
24549
24550 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
24551 "Recover Crashed Session".
24552 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
24553 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
24554 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
24555 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
24556 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
24557 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
24558 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
24559 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
24560
24561 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
24562 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
24563 Ediff Sessions", "Toggle use of separate control buffer frame",
24564 "Use separate frame for Ediff control buffer".
24565
24566 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
24567 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
24568 "Rename Bookmark", "Delete Bookmark".
24569
24570 * info.el (Info-mode-menu): Remove ellipsis from "Index".
24571 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
24572 Add `:active Info-index-alternatives' to "Next Matching Item".
24573
24574 * wdired.el (wdired-change-to-wdired-mode):
24575 Mention `wdired-abort-changes' key in the initial message.
24576
24577 * international/mule.el (auto-coding-alist): Associate non-ascii
24578 image filename extensions with `no-conversion'.
24579
24580 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
24581
24582 * international/iso-acc.el:
24583 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
24584
24585 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
24586
24587 * textmodes/sgml-mode.el (html-mode): Doc update.
24588
24589 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
24590
24591 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
24592
24593 * term.el (term-move-columns): Fix face after extending a line.
24594 (term-insert-spaces): Likewise.
24595 (term-reset-terminal): Fix off by one error.
24596
24597 2005-03-26 Eli Zaretskii <eliz@gnu.org>
24598
24599 * international/mule.el (auto-coding-alist): Add .xpi files.
24600
24601 * files.el (auto-mode-alist): Add .xpi files.
24602
24603 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
24604
24605 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
24606
24607 2005-03-26 Eli Zaretskii <eliz@gnu.org>
24608
24609 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
24610
24611 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
24612
24613 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
24614 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
24615
24616 * calendar/cal-move.el (calendar-beginning-of-year): Move the
24617 cursor to Jan 1 when needed.
24618 (calendar-end-of-year): Fix -/+ typo.
24619 Reported by Chong Yidong <cyd@stupidchicken.com>.
24620
24621 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
24622
24623 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
24624
24625 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
24626 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
24627
24628 2005-03-25 Richard M. Stallman <rms@gnu.org>
24629
24630 * filesets.el (filesets-init): Add autoload.
24631
24632 * mail/mailalias.el (mail-directory): Doc fix.
24633
24634 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
24635
24636 * mail/mailalias.el (mail-directory-process): Do nothing if
24637 mail-directory-process is an atom.
24638 (mail-get-names): Ignore mail-directory-names if it is an atom.
24639 (mail-directory-process defvar): Doc fix.
24640 (mail-names): Doc fix.
24641
24642 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
24643
24644 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
24645
24646 2005-03-26 Kenichi Handa <handa@m17n.org>
24647
24648 * international/mule-util.el (detect-coding-with-priority):
24649 Call update-coding-systems-internal before detect-coding-region.
24650
24651 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
24652
24653 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
24654 (gdb-frames-mode-map): Add follow-link property.
24655
24656 2005-03-25 Jay Belanger <belanger@truman.edu>
24657
24658 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
24659 for variables.
24660
24661 2005-03-25 Juri Linkov <juri@jurta.org>
24662
24663 * image-mode.el: Optimize image filename extension regexps in
24664 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
24665 in `auto-mode-alist'.
24666 (image-mode): Add `image-toggle-display-text' to local hook
24667 `change-major-mode-hook'. Display the image as an image by
24668 default. Set `cursor-type' and `truncate-lines' if the image
24669 is already displayed. Take into account the current mode (image
24670 or text) in message.
24671 (image-minor-mode): New minor mode.
24672 (image-mode-maybe, image-toggle-display-text): New functions.
24673 (image-toggle-display): Use called-interactively-p.
24674 Let-bind `inhibit-read-only' to t.
24675
24676 * image-mode.el (image-minor-mode): Set `cursor-type' and
24677 `truncate-lines' if the image is already displayed. Add turning
24678 image-minor-mode off to `change-major-mode-hook'. Add message.
24679 Call `image-toggle-display-text' after turning image-minor-mode off.
24680
24681 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
24682
24683 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
24684 Terminal.app, use utf-8.
24685 (set-display-table-and-terminal-coding-system): Add coding-system arg.
24686 (set-locale-environment): Use it.
24687
24688 * term/xterm.el: Undo last change, better done in mule-cmds.el.
24689
24690 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
24691
24692 * progmodes/python.el (python-close-block-statement-p)
24693 (python-outdent-p, python-current-defun): Use symbol-end.
24694
24695 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
24696
24697 * files.el (save-some-buffers): Doc fix.
24698
24699 2005-03-25 Werner Lemberg <wl@gnu.org>
24700
24701 * complete.el, thumbs.el: Replace `legal' with `valid'.
24702 * calendar/calendar.el: Replace `legal' with `valid'.
24703 * emacs-lisp/advice.el: Replace `legal' with `valid'.
24704 * mail/supercite.el: Replace `legal' with `valid'.
24705 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
24706 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
24707 Replace `legal' with `valid'.
24708 * textmodes/reftex-vars.el, textmodes/reftex.el:
24709 Replace `legal' with `valid'.
24710
24711 2005-03-25 Werner Lemberg <wl@gnu.org>
24712
24713 * calc/calc-forms.el, calc/calc-sel.el
24714 * midnight.el, vc-cvs.el
24715 * emacs-lisp/cl-macs.el
24716 * emulation/vip.el
24717 * eshell/esh-io.el, eshell/esh-var.el
24718 * mail/supercite.el
24719 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
24720 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
24721 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
24722 * progmodes/sh-script.el, progmodes/xscheme.el
24723 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
24724 * textmodes/reftex-index.el, textmodes/reftex-parse.el
24725 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
24726 * textmodes/reftex.el, textmodes/org.el:
24727 Replace `illegal' with `invalid'.
24728
24729 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24730
24731 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
24732 (flymake-find-buildfile, flymake-find-possible-master-files)
24733 (flymake-check-include, flymake-parse-line): Replace loops over the
24734 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
24735
24736 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
24737 Substitute file-name-as-directory in the rest of the file.
24738 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
24739 (flymake-replace-region): Remove unused arg `buffer'.
24740 (flymake-check-patch-master-file-buffer): Update calls to it.
24741 (flymake-add-err-info): Remove unused var `count'.
24742 (flymake-mode): Use define-minor-mode.
24743
24744 * progmodes/flymake.el: Use with-current-buffer.
24745 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
24746 flymake-replace-regexp-in-string, flymake-line-beginning-position)
24747 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
24748 Avoid testing for `xemacs'.
24749 (flymake-nop): Move.
24750 (flymake-region-has-flymake-overlays): Return the computed value.
24751 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
24752 Remove unused var `endline'.
24753 (flymake-get-line-count): Remove unused function.
24754 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
24755
24756 * emulation/vi.el:
24757 * generic.el:
24758 * hilit-chg.el (global-highlight-changes):
24759 * hi-lock.el (hi-lock-mode):
24760 * follow.el: find-file-hooks -> find-file-hook.
24761
24762 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
24763
24764 2005-03-24 Juri Linkov <juri@jurta.org>
24765
24766 * dired.el (dired-mode-map): Add menu item "Compare directories"
24767 for dired-compare-directories.
24768
24769 * dired-aux.el (dired-compare-directories): Add autoload cookie.
24770 Doc fix. Replace `read-file-name' with `read-directory-name'.
24771
24772 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24773
24774 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
24775
24776 2005-03-24 Jay Belanger <belanger@truman.edu>
24777
24778 * calc/calc-embed.el (calc-embedded-mode-change): Save all
24779 relevant mode settings in calc-embedded-original-modes when modes
24780 are permanently changed.
24781
24782 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24783
24784 * autoinsert.el: find-file-hooks -> find-file-hook.
24785
24786 2005-03-24 Lute Kamstra <lute@gnu.org>
24787
24788 * generic.el (generic-font-lock-defaults): Make it obsolete.
24789 (generic-font-lock-keywords): New variable to replace
24790 generic-font-lock-defaults.
24791 (generic-mode-set-font-lock): Delete it.
24792 (generic-mode-internal): Don't call generic-mode-set-font-lock.
24793 (generic-bracket-support): Add docstring.
24794
24795 * generic-x.el: Rename generic-font-lock-defaults to
24796 generic-font-lock-keywords throughout.
24797 (mailagent-rules-setup-function): Delete it.
24798 (mailagent-rules-generic-mode): Use anonymous function instead.
24799 (show-tabs-generic-mode-font-lock-defaults-1)
24800 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
24801 Quote faces.
24802 (show-tabs-tab-face, show-tabs-space-face): Specify background,
24803 not foreground.
24804
24805 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
24806 Recognize define-generic-mode.
24807
24808 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
24809
24810 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
24811 if there's no completion table.
24812
24813 2005-03-23 Miles Bader <miles@gnu.org>
24814
24815 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24816 Remove tty-specific variants, as they're no longer needed.
24817
24818 2005-03-23 Lute Kamstra <lute@gnu.org>
24819
24820 * generic-x.el: Code cleanup: make args constant whenever possible.
24821 (installshield-statement-keyword-list)
24822 (installshield-system-functions-list)
24823 (installshield-system-variables-list, installshield-types-list)
24824 (installshield-funarg-constants-list): Make them constants.
24825
24826 * generic.el (generic-make-keywords-list): Add autoload cookie.
24827
24828 * calendar/time-date.el: Add comment on time value formats.
24829 Don't require parse-time.
24830 (with-decoded-time-value): New macro.
24831 (encode-time-value): New function.
24832 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
24833 (days-to-time): Return a valid time value when arg is huge.
24834 (time-since): Use time-subtract.
24835 (time-to-number-of-days): Use time-to-seconds.
24836
24837 2005-03-23 David Ponce <david@dponce.com>
24838
24839 * recentf.el (recentf-keep): New option.
24840 (recentf-menu-action): Default to `find-file'.
24841 (recentf-keep-non-readable-files-flag)
24842 (recentf-keep-non-readable-files-p)
24843 (recentf-file-readable-p, recentf-find-file)
24844 (recentf-cleanup-remote): Remove.
24845 (recentf-include-p): More robust.
24846 (recentf-keep-p): New function.
24847 (recentf-remove-if-non-kept): Rename from
24848 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
24849 All callers updated.
24850 (recentf-menu-items-for-commands): Fix help string.
24851 (recentf-track-closed-file): Update. Doc fix.
24852 (recentf-cleanup): Update. Count removed files. Doc fix.
24853
24854 2005-03-23 Kim F. Storm <storm@cua.dk>
24855
24856 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24857 Don't inherit from fringe face (now happens automatically).
24858
24859 2005-03-22 Kim F. Storm <storm@cua.dk>
24860
24861 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
24862 position values.
24863
24864 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
24865
24866 * menu-bar.el (showhide-date-time): Remove.
24867 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
24868 (menu-bar-make-mm-toggle): Simplify.
24869
24870 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
24871
24872 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
24873 Accept qualified variable and function names.
24874
24875 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
24876
24877 * bindings.el (completion-ignored-extensions):
24878 Remove ".lis" for `vax-vms'.
24879
24880 2005-03-22 Andreas Schwab <schwab@suse.de>
24881
24882 * generic-x.el: Revert last change.
24883 * ldefs-boot.el: Update.
24884
24885 2005-03-22 Jay Belanger <belanger@truman.edu>
24886
24887 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
24888 (calc-embedded-save-original-modes)
24889 (calc-embedded-restore-original-modes): New functions.
24890 (calc-do-embedded): Save original modes when entering embedded mode
24891 and restore when leaving embedded mode.
24892 (calc-embedded-modes-change): Change the value of
24893 calc-embedded-original-modes to reflect permanent changes.
24894
24895 2005-03-22 Lute Kamstra <lute@gnu.org>
24896
24897 * generic-x.el: Require generic again.
24898
24899 2005-03-22 Miles Bader <miles@gnu.org>
24900
24901 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24902 Tweak details to look good on both ttys and bitmap displays, light
24903 or dark background, etc.
24904
24905 2005-03-21 Kim F. Storm <storm@cua.dk>
24906
24907 * tooltip.el (tooltip-show-help-function): Check car and cdr of
24908 mouse position.
24909
24910 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
24911
24912 * icomplete.el: Don't forcibly turn on the mode upon load.
24913 (icomplete-mode): Use define-minor-mode.
24914 (icomplete-eoinput): Default to nil.
24915 (icomplete-minibuffer-setup): Remove autoload.
24916 (icomplete-tidy): Simplify.
24917 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
24918 in the initial state or if the user has modified the field.
24919 Fix handling of icomplete-max-delay-chars.
24920 Remove code that handles the oddball case where
24921 minibuffer-completion-table is an integer.
24922 Wrap icomplete-completions in while-no-input in case building
24923 completions takes more time than expected.
24924 (icomplete-completions): Simplify.
24925
24926 2005-03-21 Richard M. Stallman <rms@gnu.org>
24927
24928 * jka-compr.el (jka-compr-really-do-compress):
24929 Make variable buffer-local.
24930
24931 * image-mode.el: Handle .xpm files too.
24932 (image-toggle-display): Preserve modification flag.
24933
24934 * help.el (where-is): Don't mention aliases with no key bindings.
24935
24936 2005-03-21 Lute Kamstra <lute@gnu.org>
24937
24938 * generic.el: Fix commentary section. Don't require cl for
24939 compilation.
24940 (generic-mode-list): Add autoload cookie.
24941 (generic-use-find-file-hook, generic-lines-to-scan)
24942 (generic-find-file-regexp, generic-ignore-files-regexp)
24943 (generic-mode, generic-mode-find-file-hook)
24944 (generic-mode-ini-file-find-file-hook): Fix docstrings.
24945 (define-generic-mode): Make it a defmacro. Fix docstring.
24946 (generic-mode-internal): Code cleanup. Add autoload cookie.
24947 (generic-mode-set-comments): Code cleanup.
24948 * generic-x.el: Don't prevent compilation. Don't require generic.
24949 Follow coding conventions. Minor code cleanup.
24950 (etc-fstab-generic-mode): Add some keywords.
24951 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
24952 define-generic-mode like a function declaration.
24953
24954 2005-03-21 Jay Belanger <belanger@truman.edu>
24955
24956 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
24957 changing modes.
24958
24959 2005-03-21 Sam Steingold <sds@gnu.org>
24960
24961 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
24962
24963 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
24964
24965 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
24966 Add underscore to "f$ lexicals" regexp.
24967
24968 2005-03-20 Juri Linkov <juri@jurta.org>
24969
24970 * subr.el (progress-reporter-do-update): When `min-value' is equal
24971 to `max-value', set `percentage' to 0 and prevent division by zero.
24972
24973 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
24974
24975 Sync with Tramp 2.0.48.
24976
24977 * net/tramp.el (all): Change all addresses to .gnu.org.
24978 (tramp-append-tramp-buffers): New defun.
24979 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
24980 Catch `dont-send' signal.
24981 (tramp-set-auto-save-file-modes): Set always permissions, because
24982 there might be an old auto-saved file belonging to another
24983 original file. This could be a security threat. Reported by
24984 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
24985 Check for Emacs 21.3.50 removed.
24986
24987 * net/tramp-smb.el (all): Remove debug construct for
24988 `with-parsed-tramp-file-name'.
24989 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
24990 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
24991 No error message if DIRECTORY or FILENAME doesn't exist.
24992 (tramp-smb-open-connection): Check existence of
24993 `tramp-smb-program'.
24994
24995 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
24996
24997 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
24998 Properly handle the case where the `m' or `s' command's argument is not
24999 yet terminated.
25000 (perl-indent-new-calculate): New function.
25001 (perl-indent-line): Use it.
25002
25003 2005-03-20 Miles Bader <miles@gnu.org>
25004
25005 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
25006 in text-mode too. Change to new face names.
25007 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
25008 Add `:weight bold' attribute.
25009 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
25010
25011 2005-03-19 Juri Linkov <juri@jurta.org>
25012
25013 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
25014
25015 * international/mule.el (auto-coding-alist): Sync with
25016 `auto-mode-alist' by adding upper case archive file extensions
25017 and adding ear/war to jar extension.
25018
25019 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
25020
25021 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
25022 running, restart it.
25023
25024 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
25025
25026 * finder.el (finder-current-item): Throw an error on an empty line.
25027
25028 * man.el (Man-follow-manual-reference): If current-word returns
25029 nil, use "".
25030
25031 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
25032
25033 * simple.el (goto-line): Doc fix.
25034
25035 2005-03-19 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
25036
25037 * files.el (save-buffer): Doc fix.
25038
25039 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
25040
25041 * recentf.el (recentf-cleanup-remote): New variable.
25042 (recentf-cleanup): Use it to conditionally check availability of
25043 remote files.
25044
25045 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
25046
25047 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
25048 function names.
25049
25050 2005-03-19 Eli Zaretskii <eliz@gnu.org>
25051
25052 * language/thai-word.el: New file.
25053
25054 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
25055
25056 * files.el (backup-buffer): If the file's directory is not
25057 writable, use copy instead of move to backup the file.
25058
25059 2005-03-19 Eli Zaretskii <eliz@gnu.org>
25060
25061 * obsolete/keyswap.el: Moved to obsolete/ from term/.
25062
25063 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
25064
25065 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
25066 Use functionp instead of symbolp and fboundp. Reported by Drkm
25067 <darkman_spam@yahoo.fr>.
25068 (ps-print-version): New version 6.6.6.
25069
25070 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
25071
25072 * textmodes/table.el (table--line-column-position): New idiom.
25073 (table--row-column-insertion-point-p): New function to test
25074 validity of row and column insertion operation at a location.
25075 (table-global-menu, table-cell-menu): Use above functions for
25076 deterministic test operation.
25077 (table--editable-cell-p): Behave in deterministic fashion.
25078
25079 2005-03-18 Juri Linkov <juri@jurta.org>
25080
25081 * isearch.el (isearch-lazy-highlight-new-loop):
25082 Make arguments beg and end optional.
25083 (isearch-update): Remove optional arguments nil from
25084 isearch-lazy-highlight-new-loop.
25085 (isearch-lazy-highlight-search): Let-bind case-fold-search to
25086 isearch-lazy-highlight-case-fold-search instead of
25087 isearch-case-fold-search, and let-bind isearch-regexp to
25088 isearch-lazy-highlight-regexp.
25089 Use isearch-lazy-highlight-last-string instead of isearch-string.
25090
25091 * replace.el (perform-replace): Remove bindings of global
25092 variables isearch-string, isearch-regexp, isearch-case-fold-search.
25093 Add three new arguments to `replace-highlight'.
25094 (replace-highlight): Add arguments string, regexp, case-fold.
25095 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
25096 to allow isearch-lazy-highlight-new-loop to use these values
25097 to set corresponding isearch-lazy-highlight-* internal
25098 variables whose values lazy highlighting will use regardless of
25099 changes to global variables isearch-string, isearch-regexp,
25100 isearch-case-fold-search during lazy highlighting loop.
25101 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
25102 to `lazy-highlight-cleanup'.
25103
25104 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
25105 (ispell-highlight-face): Set default face to `isearch' when
25106 lazy highlighting is enabled.
25107 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
25108 priority to 1. Add lazy highlighting.
25109 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
25110 from `isearch-dehighlight'.
25111
25112 2005-03-18 David Ponce <david@dponce.com>
25113
25114 * files.el (hack-local-variables): Do a case-insensitive search
25115 for End.
25116
25117 2005-03-18 Juri Linkov <juri@jurta.org>
25118
25119 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
25120 `isearch-lazy-highlight-cleanup', add alias to old name and
25121 declare obsolete. Add release numbers to other obsolete vars.
25122 (isearch-done, isearch-lazy-highlight-new-loop):
25123 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
25124 (lazy-highlight-cleanup) <variable>: Doc fix.
25125 (isearch-lazy-highlight-update): Rename obsolete
25126 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
25127
25128 2005-03-18 Kenichi Handa <handa@m17n.org>
25129
25130 * language/thai-util.el: Fix categorization of Thai characters in
25131 thai-category-table.
25132 (thai-composition-pattern): Adjust it for the above change.
25133 (thai-self-insert-command, thai-compose-syllable): New functions.
25134 (thai-compose-region): Use thai-compose-syllable.
25135 (thai-compose-string): Likewise.
25136 (thai-composition-function): Likewise.
25137 (thai-auto-composition): New function.
25138 (thai-auto-composition-mode): New minor mode.
25139
25140 * language/thai.el: Fix patterns to be registered in
25141 composition-function-table.
25142
25143 * international/quail.el (quail-input-method): Locally bind
25144 inhibit-modification-hooks to t.
25145
25146 2005-03-17 Richard M. Stallman <rms@gnu.org>
25147
25148 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
25149 (perl-mode): Use run-mode-hooks.
25150
25151 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
25152 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
25153 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
25154
25155 * mail/sendmail.el (sendmail-send-it): Reenable the code
25156 to compute resend-to-address and use it.
25157
25158 * tar-mode.el (tar-mode): Turn off undo unconditionally.
25159
25160 * image-mode.el: New file.
25161
25162 * image.el (insert-sliced-image): Add autoload cookie.
25163
25164 * font-lock.el (font-lock-lines-before): New user option.
25165 (font-lock-after-change-function): Obey it.
25166
25167 * bindings.el (esc-map): Make M-g a prefix.
25168 Bind M-g g and M-g M-g to goto-line.
25169
25170 * faces.el (face-id): Doc fix.
25171
25172 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
25173
25174 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
25175 (rmail-show-message): Use rmail-unknown-mail-followup-to.
25176 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
25177
25178 * mail/sendmail.el (mail-yank-ignored-headers)
25179 (mail-font-lock-keywords, mail-mode-fill-paragraph):
25180 Add Mail-Followup-To and Mail-Reply-To headers.
25181 (mail-citation-hook): Add autoload cookie.
25182 (mail-mode): Doc fix.
25183 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
25184 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
25185 (mail-mode-fill-paragraph): Handle those headers.
25186 (mail-mailing-lists): New variable.
25187 (mail-mail-reply-to, mail-mail-followup-to): New functions.
25188
25189 2005-03-17 Juri Linkov <juri@jurta.org>
25190
25191 * isearch.el (isearch-fallback): Check for `(car previous)'
25192 before calling `isearch-other-end-state'.
25193
25194 2005-03-17 Kim F. Storm <storm@cua.dk>
25195
25196 * simple.el (move-beginning-of-line): Move to beginning of buffer
25197 line, as well as beginning of screen line.
25198
25199 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
25200
25201 * calendar/diary-lib.el (mark-diary-entries): Use new optional
25202 argument REDRAW rather than calendar-redrawing variable.
25203 * calendar/calendar.el (calendar-redrawing): Delete.
25204 (redraw-calendar): Do not bind calendar-redrawing.
25205
25206 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
25207
25208 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
25209 diary-file buffer.
25210
25211 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
25212
25213 * help.el (describe-mode): Allow a :minor-mode-function property to
25214 specify a different minor mode toggle function than the variable.
25215 * simple.el (auto-fill-function):
25216 * subr.el (add-minor-mode): Use it.
25217
25218 2005-03-16 Kenichi Handa <handa@m17n.org>
25219
25220 * language/ethio-util.el (sera-being-called-by-w3): New variable.
25221 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
25222 (ethio-fidel-to-sera-buffer): Likewise.
25223
25224 2005-03-16 Juri Linkov <juri@jurta.org>
25225
25226 * emacs-lisp/find-func.el (find-function-regexp):
25227 Add defun-emitting macro `menu-bar-make-toggle'.
25228
25229 * isearch.el: Put `isearch-scroll' property to
25230 `split-window-horizontally'.
25231
25232 * info.el: Update error messages for `debug-ignored-errors'.
25233 (Info-isearch-search): Doc fix.
25234 (Info-find-node): Move up code to go into info buffer before
25235 recording the node to the history.
25236 (Info-fontify-node): Fontify titles only if the next line
25237 has two or more `*', `=', `-', `.'.
25238 Display "go to this node" for empty (match-string 3).
25239
25240 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25241
25242 * term/mac-win.el: Add mouse pointer shape constants.
25243
25244 2005-03-15 Kim F. Storm <storm@cua.dk>
25245
25246 * simple.el (move-beginning-of-line): Use vertical-motion.
25247
25248 2005-03-15 Juri Linkov <juri@jurta.org>
25249
25250 * isearch.el (isearch-error): New variable.
25251 (isearch-invalid-regexp, isearch-within-brackets): Remove.
25252 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
25253 (isearch-within-brackets-state): Remove.
25254 (isearch-case-fold-search-state, isearch-pop-fun-state):
25255 Decrease frame index.
25256 (isearch-mode, isearch-top-state, isearch-push-state)
25257 (isearch-edit-string, isearch-abort, isearch-search-and-update)
25258 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
25259 (isearch-search, isearch-lazy-highlight-new-loop):
25260 Replace `isearch-invalid-regexp' with `isearch-error'.
25261 Remove `isearch-within-brackets'.
25262 (isearch-search): Add `search-failed' handler to `condition-case'.
25263 (isearch-lazy-highlight-search): Add `condition-case' to catch
25264 errors and allow `isearch-lazy-highlight-update' to try
25265 highlighting from the beginning of the window.
25266 (isearch-repeat): Move up code to set isearch-wrapped to t
25267 before calling isearch-wrap-function.
25268
25269 * info.el (Info-isearch-initial-node): New internal variable.
25270 (Info-search): Signal an error in isearch mode when search leaves
25271 the initial node. Signal an error when `bound' is non-nil and
25272 nothing was found in the current subfile.
25273 (Info-isearch-search): Remove `condition-case'.
25274 (Info-isearch-wrap): Don't wrap when search failed during leaving
25275 the initial node. If `Info-isearch-search' is nil, wrap around
25276 the current node.
25277 (Info-isearch-start): New fun.
25278 (Info-mode): Add buffer-local hook `Info-isearch-start' to
25279 `isearch-mode-hook'.
25280
25281 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25282
25283 * simple.el (normal-erase-is-backspace): Set default to t if
25284 running on Mac.
25285
25286 * term/mac-win.el (function-key-map): Sync with x-win.el.
25287
25288 2005-03-15 Kenichi Handa <handa@m17n.org>
25289
25290 * international/mule-cmds.el (locale-language-names): Modify the
25291 format of elements and add more entries.
25292 (locale-preferred-coding-systems): Add more entries.
25293 (set-locale-environment): Adjust for the change of
25294 locale-language-names.
25295
25296 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
25297
25298 * pcvs.el (smerge-ediff): Remove bogus autoload.
25299
25300 2005-03-14 Lute Kamstra <lute@gnu.org>
25301
25302 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
25303 Ignore a `*' at the beginning of a line.
25304
25305 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
25306 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
25307 subr.el.
25308 (dont-compile, eval-when-compile, eval-and-compile): Use declare
25309 to specify indentation.
25310
25311 * generic.el (define-generic-mode): Let generic-mode-list be a
25312 list of strings; test membership with equal.
25313
25314 2005-03-14 Kim F. Storm <storm@cua.dk>
25315
25316 * simple.el (next-line, previous-line): Add optional try-vscroll
25317 arg to recognize interactive use. Pass it on to line-move.
25318 (line-move): Don't perform auto-window-vscroll when defining or
25319 executing keyboard macro to ensure consistent behavior.
25320
25321 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
25322
25323 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
25324
25325 2005-03-13 Lute Kamstra <lute@gnu.org>
25326
25327 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
25328 debugger-setup-buffer so that backtrace marks the frames set to
25329 debug-on-exit and we don't have to do it manually. Set an extra
25330 debug-on-exit for macro's.
25331 (debugger-setup-buffer): Don't mark the top frame manually.
25332
25333 2005-03-12 Lute Kamstra <lute@gnu.org>
25334
25335 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
25336 lisp-indent-function throughout.
25337 (with-no-warnings): Set lisp-indent-function property.
25338
25339 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
25340
25341 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
25342 Add entry for backslash.
25343
25344 2005-03-12 Juri Linkov <juri@jurta.org>
25345
25346 * info.el (Info-search): Four fixes for backward search.
25347
25348 2005-03-11 Jay Belanger <belanger@truman.edu>
25349
25350 * calc/calc.el (calc-language-alist): New variable.
25351 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
25352 (calc-embedded-find-modes): Use calc-language-alist instead of
25353 calc-embedded-language-alist.
25354
25355 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
25356
25357 * calendar/calendar.el (calendar-redrawing): New internal
25358 variable.
25359 (redraw-calendar): Remove bogus save-excursion from previous
25360 change. Bind calendar-redrawing to t for mark-diary-entries.
25361 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
25362 calendar if that is why we were called.
25363
25364 2005-03-11 Kenichi Handa <handa@m17n.org>
25365
25366 * international/mule.el (make-coding-system): Set property
25367 coding-system-define-form to nil.
25368 (define-coding-system-alias): Likewise.
25369
25370 2005-03-11 Kenichi Handa <handa@m17n.org>
25371
25372 These changes are suggested by Dave Love <fx@gnu.org>.
25373
25374 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
25375 coding: tag.
25376 (adaptive-fill-regexp): Add more bullets.
25377 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
25378 regexps.
25379
25380 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
25381
25382 * help.el (describe-mode): Properly handle non-trivial lighters.
25383 Don't ignore minor modes that are not listed in minor-mode-list.
25384
25385 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
25386 feature ON when the user requests to turn it OFF.
25387
25388 2005-03-10 Lute Kamstra <lute@gnu.org>
25389
25390 * emacs-lisp/debug.el (debug-entry-code): Delete it.
25391 (implement-debug-on-entry): New function to replace debug-entry-code.
25392 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
25393 second argument as the 2005-03-07 change makes it obsolete.
25394 (debug-on-entry, cancel-debug-on-entry): Update call to
25395 debug-on-entry-1.
25396 (debug, debugger-setup-buffer): Comment update.
25397 (debugger-frame-number): Update to work with implement-debug-on-entry.
25398
25399 2005-03-10 Jay Belanger <belanger@truman.edu>
25400
25401 * calc/calc-embed.el (math-ms-args): Declare it.
25402 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
25403 math-ms-args.
25404 (calc-embedded-subst): Use math-multi-subst-rec to substitute
25405 variables.
25406
25407 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
25408
25409 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
25410 Use message-box.
25411
25412 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
25413 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
25414 (tooltip-gud-tips): Simplify.
25415 (tooltip-gud-tips-p): Remove superfluous :set.
25416 (tooltip-gud-modes): Add fortran-mode.
25417 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
25418
25419 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
25420
25421 2005-03-09 Kim F. Storm <storm@cua.dk>
25422
25423 * play/animate.el (animate-place-char): Use forward-line instead
25424 of next-line to improve performance.
25425
25426 2005-03-09 Simon Josefsson <jas@extundo.com>
25427
25428 * net/browse-url.el (browse-url-default-browser): Doc fix.
25429
25430 2005-03-09 Miles Bader <miles@gnu.org>
25431
25432 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
25433 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
25434
25435 2005-03-09 Kenichi Handa <handa@m17n.org>
25436
25437 * international/latin-1.el: Set case and syntax for 255 only if
25438 set-case-syntax-set-multibyte is nil.
25439
25440 * textmodes/ispell.el (ispell-insert-word): New function.
25441 (ispell-word): Use ispell-insert-word to insert a new word.
25442 (ispell-process-line): Likewise.
25443 (ispell-complete-word): Likewise.
25444
25445 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
25446
25447 * calendar/calendar.el (redraw-calendar): Preserve point.
25448 Reported by Matt Hodges <MPHodges@member.fsf.org>.
25449 (calendar-week-start-day): Move after definition of
25450 redraw-calendar. Delete buffer test, since redraw-calendar has
25451 that now.
25452
25453 * calendar/diary-lib.el (mark-diary-entries): Only call
25454 redraw-calendar in the first of any recursive calls.
25455 Reported by Alan Shutko <ats@acm.org>.
25456
25457 2005-03-08 Juri Linkov <juri@jurta.org>
25458
25459 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
25460 (html-horizontal-rule, html-line, html-image, html-checkboxes)
25461 (html-radio-buttons): Add a space before the trailing `/>' where
25462 sgml-xml-mode is non-nil.
25463 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
25464 the subsequent tag of the empty XML tag.
25465 (html-href-anchor): Don't set initial input to "http:".
25466 (html-image): Ask for the image URL and set point inside alt="".
25467 (html-name-anchor): Duplicate the name in the `id' attribute when
25468 sgml-xml-mode is non-nil.
25469 (html-paragraph): Remove \n before <p>.
25470 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
25471 instead of `checked' when sgml-xml-mode is non-nil.
25472
25473 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
25474 Remove 1 space before #RRGGBB to not truncate it on terminal
25475 windows w/o fringes. Remove 1 space between bg and fg examples
25476 to get more space.
25477 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
25478 avoid byte-compile warnings.
25479
25480 * image-file.el (image-file-handler): Put `safe-magic' property to
25481 `image-file-handler'.
25482
25483 * info.el (Info-isearch-search): Emulate word search in
25484 isearching through multiple Info nodes with Info-search.
25485 (Info-isearch-wrap): Allow isearch-word.
25486
25487 2005-03-08 Lute Kamstra <lute@gnu.org>
25488
25489 * emacs-lisp/debug.el (debugger-step-through): Make sure that
25490 stepping into the debugger's code is not possible.
25491 (debugger-jumping-flag): Docstring update.
25492
25493 2005-03-08 Jay Belanger <belanger@truman.edu>
25494
25495 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
25496 embedded mode begins.
25497 (calc-embedded-language-alist): New variable.
25498 (calc-embedded-find-modes): Use calc-embedded-language-alist to
25499 set default language mode.
25500
25501 2005-03-08 Kenichi Handa <handa@m17n.org>
25502
25503 * international/ccl.el (define-ccl-program): Fix docstring about
25504 extra 256 bytes assured for the output buffer.
25505
25506 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
25507 Fix BUFFER_MAGNIFICATION to 2.
25508 (ccl-encode-mule-utf-16be-with-signature): Likewise.
25509
25510 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
25511
25512 * align.el (align-rules-list): Added an alignment rule for CSS
25513 declarations (applies to css-mode and html-mode buffers).
25514
25515 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
25516
25517 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
25518
25519 2005-03-07 Kim F. Storm <storm@cua.dk>
25520
25521 * simple.el (move-beginning-of-line): New command.
25522
25523 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
25524
25525 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
25526
25527 * emulation/cua-base.el: Put CUA move property on move-end-of-line
25528 and move-beginning-of-line.
25529
25530 * apropos.el (apropos-print): Omit command from M-x ... RET.
25531
25532 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
25533
25534 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
25535 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
25536
25537 2005-03-06 Richard M. Stallman <rms@gnu.org>
25538
25539 * bindings.el (esc-map): Bind M-g to goto-line.
25540
25541 * facemenu.el (global-map): Bind M-o, not M-g.
25542
25543 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
25544
25545 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
25546 "Open Directory" as for "Open File".
25547
25548 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
25549
25550 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
25551 (push-mark-command): Run activate-mark-hook.
25552
25553 2005-03-06 Richard M. Stallman <rms@gnu.org>
25554
25555 * help-mode.el (help-mode-finish): Don't alter the element
25556 in view-return-to-alist if there already is one.
25557
25558 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
25559 make sure the current buffer is the expected one.
25560
25561 * novice.el (disabled-command-function): Output in *Disabled Command*.
25562 Explicitly ignore non-keyboard events, and explicitly handle C-g.
25563
25564 * textmodes/flyspell.el (flyspell-large-region):
25565 Pass args differently for aspell.
25566
25567 * files.el (mode-require-final-newline): Doc fix.
25568
25569 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
25570
25571 * progmodes/which-func.el (which-function):
25572 Specify NOERROR when calling imenu--make-index-alist.
25573
25574 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
25575
25576 * simple.el (normal-erase-is-backspace): Define default value.
25577
25578 * custom.el (custom-theme-set-variables): Remove unused var
25579 `immediate'.
25580 (custom-reevaluate-setting): Simple function to handle variables
25581 that are defined before their default value can really be
25582 computed.
25583
25584 * startup.el (command-line): Use it for temporary-file-directory,
25585 small-emporary-file-directory, auto-save-file-name-transforms,
25586 blink-cursor-mode, and normal-erase-is-backspace.
25587
25588 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
25589 progress, even with buggy anchored keywords.
25590
25591 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
25592
25593 * simple.el (goto-line): Remove unbalanced final parenthesis.
25594
25595 2005-03-05 Richard M. Stallman <rms@gnu.org>
25596
25597 * simple.el (goto-line): Use a number at point as the default.
25598 With C-u as arg, switch buffers.
25599
25600 2005-03-05 Juri Linkov <juri@jurta.org>
25601
25602 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
25603 with `no-blinking-cursor'.
25604
25605 * startup.el (no-blinking-cursor): New defvar.
25606 (command-line): Add `--no-blinking-cursor' to longopts.
25607 Set `no-blinking-cursor' to t for command line arguments
25608 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
25609 with `no-blinking-cursor' in the condition for calling
25610 `blink-cursor-mode'.
25611
25612 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
25613
25614 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
25615 (menu-bar-options-save): Add blink-cursor-mode.
25616 (menu-bar-options-menu): Add blink-cursor-mode.
25617
25618 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
25619
25620 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
25621 (icalendar-export-file, icalendar-export-region)
25622 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
25623 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
25624
25625 2005-03-04 Lute Kamstra <lute@gnu.org>
25626
25627 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
25628 (debug-function-list): Ditto.
25629
25630 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
25631
25632 * textmodes/texinfmt.el (texinfo-append-refill):
25633 Redefine the types of line to which @refill
25634 is not appended by replacing a search for `@refill\\|@bye' with
25635 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
25636 itemize@refill' bug and the unfilled long lines bug.
25637 (texinfmt-version): Update number and date.
25638
25639 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
25640
25641 * international/code-pages.el (windows-1250, windows-125[2-8])
25642 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
25643
25644 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
25645
25646 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
25647 bound yet.
25648
25649 2005-03-02 Romain Francoise <romain@orebokech.com>
25650
25651 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
25652 buffer after removing limits.
25653 (ibuffer-pop-filter): Ditto.
25654 Update copyright.
25655
25656 2005-03-02 Miles Bader <miles@gnu.org>
25657
25658 * button.el (make-text-button): If the user doesn't specify a
25659 type, use the default. Rewrite to use `add-text-properties' and
25660 plist functions.
25661
25662 2005-03-01 Lute Kamstra <lute@gnu.org>
25663
25664 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
25665 (debugger-jumping-flag): New var.
25666 (debug-entry-code): Use it.
25667 (debugger-jump): Use debugger-jumping-flag and add
25668 debugger-reenable to post-command-hook.
25669 (debugger-reenable): Use debugger-jumping-flag and remove itself
25670 from post-command-hook.
25671 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
25672 debugger-reenable.
25673
25674 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
25675
25676 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
25677 inclusion of "itemize\\|", which may be unnecessary, is certainly
25678 inelegant, and stops refilling in itemize lists when formatting
25679 Japanese Texinfo files to Info.
25680 Update copyright to 2005.
25681
25682 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
25683
25684 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
25685 of an error if GDB can't find the source file.
25686
25687 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
25688
25689 * calendar/calendar.el (redraw-calendar): Work from any buffer,
25690 not just the calendar.
25691
25692 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
25693 first.
25694 (diary-redraw-calendar): New function.
25695 (make-diary-entry): Add diary-redraw-calendar to local
25696 write-contents-functions. Turn off selective display before
25697 inserting in diary.
25698
25699 2005-03-01 Kim F. Storm <storm@cua.dk>
25700
25701 * emacs-lisp/copyright.el (copyright-fix-years): New command.
25702
25703 2005-03-01 Lute Kamstra <lute@gnu.org>
25704
25705 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
25706 that debug-entry-code can be safely removed from a function while
25707 this code is being evaluated. Revert the 2005-02-27 change as the
25708 new implementation no longer requires it. Make sure that a
25709 function body containing just a string is not mistaken for a docstring.
25710 (debug): Skip one more frame in case of debug on entry.
25711 (debugger-setup-buffer): Delete one more frame line in case of
25712 debug on entry.
25713 (debugger-frame-number): Update to use the new text introduced by
25714 the 1999-11-03 change. Skip one more frame in case of debug on entry.
25715
25716 2005-02-28 Kim F. Storm <storm@cua.dk>
25717
25718 * double.el (double-translate-key): Call force-window-update after
25719 read-event to avoid crash in redisplay.
25720
25721 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
25722
25723 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
25724 (debug): Use it. Move the inhibit-trace earlier.
25725 (debug-entry-code): New const.
25726 (debug-on-entry-1): Use it.
25727
25728 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
25729
25730 * international/utf-16.el (ccl-encode-mule-utf-16le):
25731 Fix BUFFER_MAGNIFICATION to 2.
25732 (ccl-encode-mule-utf-16be): Likewise.
25733
25734 2005-02-28 Kenichi Handa <handa@m17n.org>
25735
25736 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
25737 Fix BUFFER_MAGNIFICATION to 4.
25738 (ccl-encode-mule-utf-16be-with-signature): Likewise.
25739
25740 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
25741
25742 * speedbar.el (speedbar-update-flag): Doc fix.
25743 (speedbar-show-info-under-mouse): Give set-mouse-position the right
25744 argument.
25745
25746 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
25747
25748 * reveal.el (reveal-post-command): Don't try to reveal overlays which
25749 have a non-nil `invisible' property but are actually visible.
25750
25751 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
25752 for perldoc sections.
25753 (perl-outline-regexp, perl-outline-level): New var and function.
25754 (perl-mode): Use them.
25755
25756 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
25757
25758 * calendar/diary-lib.el (diary-remind): Discard any mark portion
25759 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
25760
25761 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
25762
25763 * cus-edit.el: Comment change.
25764 (custom-buffer-create-internal): Slightly reword text at top of
25765 Custom buffers. Mention there that saving an option edits the
25766 init file. Add link to Emacs manual node on `custom-file'.
25767 (custom-magic-alist): Rewrite individual State messages to use
25768 capitalized keywords. Doc fix.
25769
25770 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
25771
25772 * calendar/calendar.el (calendar-buffer): Move above
25773 calendar-week-start-day.
25774 (calendar-week-start-day): Doc fix. Add :set function.
25775 (calendar-minimum-window-height): New variable.
25776 (generate-calendar-window): Only resize window if selected-window
25777 is displaying the calendar buffer. Use new variable
25778 calendar-minimum-window-height.
25779 (generate-calendar): Reword error message.
25780 (calendar-mode-map): Bind DEL to scroll-other-window-down.
25781
25782 2005-02-27 Andreas Schwab <schwab@suse.de>
25783
25784 * vc.el (vc-do-command): Don't run command asynchronously when
25785 operating in a remote directory.
25786
25787 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
25788 change from sync with Tramp 2.0.47.
25789
25790 2005-02-27 Richard M. Stallman <rms@gnu.org>
25791
25792 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
25793
25794 * textmodes/flyspell.el (flyspell-mode-on):
25795 Call ispell-change-dictionary only if necessary.
25796
25797 * emacs-lisp/re-builder.el (regexp-builder): New function.
25798
25799 * register.el (describe-register-1): Explicitly handle
25800 yank-excluded-properties = t.
25801
25802 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
25803 (custom-magic-alist): Change the status descriptions again.
25804 (face widget-type): Total rewrite based on `restricted-sexp'
25805 to eliminate the confusing double hiding levels.
25806
25807 * emacs-lisp/debug.el (debug-on-entry-1):
25808 If function body is empty, add nil as body form.
25809
25810 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
25811
25812 * emacs-lisp/trace.el (inhibit-trace): New var.
25813 (trace-make-advice): Use it.
25814
25815 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
25816
25817 2005-02-26 Kim F. Storm <storm@cua.dk>
25818
25819 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
25820 (mouse-on-link-p, mouse-drag-region-1): Use it.
25821
25822 2005-02-25 Lute Kamstra <lute@gnu.org>
25823
25824 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
25825
25826 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
25827
25828 * frame.el (blink-cursor-mode): Add :group keyword.
25829
25830 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
25831
25832 * calendar/icalendar.el (icalendar--decode-isodatetime):
25833 New optional argument DAY-SHIFT.
25834 (icalendar-export-region): Fix coding-system-for-write.
25835 (icalendar--convert-ical-to-diary): Shift end-day of all-day
25836 events by one.
25837
25838 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
25839
25840 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
25841
25842 2005-02-24 Kim F. Storm <storm@cua.dk>
25843
25844 * international/iso-acc.el (iso-accents-compose): Fix crash
25845 during redisplay. Call force-window-update after read-event
25846 and delete-region to signal that window is not accurate.
25847
25848 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
25849
25850 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
25851 Remove unused and inexistent var `inhibit-trace'.
25852 (debugger-mode): Use run-mode-hooks.
25853 (debugger-list-functions): Add buttons; setup xref stack.
25854
25855 2005-02-23 Richard M. Stallman <rms@gnu.org>
25856
25857 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
25858 appointment says it was explicitly made.
25859 (appt-add): Set the 3rd element.
25860 (appt-make-list): Preserve explicit appointments.
25861
25862 * subr.el (find-tag-default): Catch errors in forward-sexp.
25863
25864 2005-02-23 Juri Linkov <juri@jurta.org>
25865
25866 * info.el (Info-isearch-search): New defcustom.
25867 (Info-isearch-search): Call the default isearch function
25868 when Info-isearch-search is nil.
25869 (Info-isearch-wrap): Use variable Info-isearch-search.
25870
25871 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
25872
25873 * cus-edit.el: Comment change.
25874
25875 2005-02-22 Kim F. Storm <storm@cua.dk>
25876
25877 * progmodes/hideif.el (hide-ifdef-use-define-alist):
25878 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
25879
25880 2005-02-22 Simon Josefsson <jas@extundo.com>
25881
25882 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
25883 New variable.
25884 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
25885 Oskarsson" <myrkraverk@users.sourceforget.net>.
25886
25887 2005-02-22 Kim F. Storm <storm@cua.dk>
25888
25889 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
25890 check that window of that event is the selected window.
25891 (mouse-drag-region-1): Compare mouse event window to selected
25892 window before setting point.
25893
25894 * tooltip.el (tooltip-show-help-function): Pass event to
25895 mouse-on-link-p so it can check selected window.
25896
25897 2005-02-22 Kenichi Handa <handa@m17n.org>
25898
25899 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
25900 (ps-mule-show-warning): New function.
25901 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
25902 characters are found.
25903
25904 * ps-print.el (ps-header-footer-string): Return a list of header
25905 and footer strings.
25906
25907 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
25908
25909 * pcvs.el (cvs-retrieve-revision): Fix thinko.
25910
25911 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
25912
25913 * frame.el (blink-cursor-mode): Use define-minor-mode.
25914
25915 * term/mac-win.el (function-key-map): Use char-names more consistently.
25916 (file-name-coding-system): Only set it for MacOS-9. The other case is
25917 already handled in mule-cmds.el (where it also works when mac-win.el
25918 is not used).
25919
25920 2005-02-21 Kenichi Handa <handa@m17n.org>
25921
25922 * international/mule.el (ctext-pre-write-conversion): Always use
25923 " *code-converting-work*" buffer for work.
25924
25925 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
25926
25927 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
25928
25929 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
25930
25931 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
25932
25933 * ses.el (undo-more): Restore defadvice, but only the part that
25934 allows changes outside the restricted area of the buffer.
25935
25936 2005-02-20 Kim F. Storm <storm@cua.dk>
25937
25938 * simple.el (line-move): Add fourth optional arg try-vscroll which
25939 must be set to perform auto-window-vscroll.
25940 When moving backwards and doing auto-window-vscroll, automatically
25941 vscroll to the last part of lines which are taller than the window.
25942 (next-line, previous-line): Set try-vscroll arg on line-move.
25943
25944 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
25945
25946 * replace.el (query-replace, query-replace-regexp)
25947 (replace-string, replace-regexp): When operating on region, make
25948 the minibuffer prompt say so.
25949
25950 * isearch.el (isearch-forward): Document isearch-query-replace and
25951 isearch-query-replace-regexp keybindings.
25952
25953 2005-02-19 Jay Belanger <belanger@truman.edu>
25954
25955 * calc/calc-aent.el (math-read-token): Add local variable.
25956
25957 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
25958 (calc-edit-top): Move declaration to earlier in file.
25959 (calc-edit-macro-repeats): Add local variables.
25960
25961 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
25962 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
25963 calcFunc-tanh.
25964 Adjust integration rule for calcFunc-tan.
25965
25966 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
25967
25968 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
25969 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
25970 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
25971 (viper-skip-separators): Bug fix.
25972 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
25973 particular major mode.
25974 (viper-del-backward-char-in-replace): Don't put deleted char on the
25975 kill ring.
25976
25977 * viper-ex.el (viper-color-display-p): New function.
25978 (viper-has-face-support-p): Use viper-color-display-p.
25979
25980 * viper-keym.el (viper-gnus-modifier-map): New keymap.
25981
25982 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
25983
25984 * viper-util.el (viper-glob-unix-files): Fix shell status check.
25985 (viper-file-remote-p): Make equivalent to file-remote-p.
25986
25987 * viper.el (viper-major-mode-modifier-list):
25988 Use viper-gnus-modifier-map.
25989
25990 2005-02-19 David Kastrup <dak@gnu.org>
25991
25992 * subr.el (subregexp-context-p): Fix garbled doc string by adding
25993 quoting.
25994
25995 2005-02-19 Jay Belanger <belanger@truman.edu>
25996
25997 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
25998 Remove extra definitions.
25999 (calc-coth): New function.
26000 (calcFunc-cot): Fix `let'.
26001
26002 2005-02-19 Eli Zaretskii <eliz@gnu.org>
26003
26004 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
26005 the reasons we use "type pc" in these faces.
26006
26007 * button.el (button): Ditto.
26008
26009 2005-02-19 Michael Mauger <mmaug@yahoo.com>
26010
26011 * replace.el (query-replace-read-from): Set the value of
26012 query-replace-from-history-variable to handle the case of an empty
26013 string entered to accept the suggested default.
26014
26015 * net/tramp.el (tramp-file-name-for-operation):
26016 Use dired-call-process instead of dired-call-process-command.
26017
26018 2005-02-19 Jay Belanger <belanger@truman.edu>
26019
26020 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
26021 (math-div-non-trig): New variables.
26022 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
26023 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
26024 (math-combine-prod, math-div-symb-fancy): Add simplifications for
26025 trig expressions.
26026
26027 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
26028
26029 * progmodes/gdb-ui.el (gdb-var-update-handler)
26030 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
26031 for watch expressions,
26032 (gdb-var-create-handler): Don't set speedbar-update-flag.
26033 (gdb-post-prompt): Simplify test for speedbar.
26034
26035 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
26036
26037 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
26038 (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
26039 we use the syntax table of the correct buffer.
26040 (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
26041 Felix Gatzemeier.
26042
26043 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
26044 (ediff-file-remote-p): Make synonymous with file-remote-p.
26045 In all deffaces ediff-*-face-*, use min-colors.
26046
26047 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
26048 ediff-recurse-to-subdirectories.
26049 (ediff-mark-if-equal): Check that the arguments are strings, use
26050 ediff-same-contents (after to Felix Gatzemeier).
26051
26052 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
26053 nil.
26054
26055 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
26056
26057 * log-view.el (log-view-message-re): Fix up Subversion regexp.
26058
26059 2005-02-18 David Kastrup <dak@gnu.org>
26060
26061 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
26062 use `mark-active' when defined.
26063
26064 2005-02-18 Kenichi Handa <handa@m17n.org>
26065
26066 * ps-print.el (ps-font-info-database): New entry
26067 ZapfChancery-MediumItalic with correct font name. Fix font name
26068 of the entry Zapf-Chancery-MediumItalic.
26069
26070 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
26071
26072 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
26073
26074 2005-02-16 Kim F. Storm <storm@cua.dk>
26075
26076 * ido.el (ido-fallback-command): Pass user input to fallback command.
26077
26078 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
26079
26080 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
26081 (gdb-find-file-hook): Add server prefix.
26082
26083 2005-02-16 Richard M. Stallman <rms@gnu.org>
26084
26085 * replace.el (perform-replace): Pass new args to replace-highlight.
26086 (replace-highlight): Take region args,
26087 and pass them to isearch-lazy-highlight-new-loop.
26088
26089 * novice.el (disabled-command-hook): Autoload the defalias
26090 and the make-obsolete-variable call.
26091
26092 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
26093
26094 * isearch.el (isearch-lazy-highlight-start-limit)
26095 (isearch-lazy-highlight-end-limit): New variables limit
26096 the region for highlighting.
26097 (isearch-lazy-highlight-new-loop): New args BEG and END.
26098 (isearch-lazy-highlight-search): Use the new vars.
26099 (isearch-lazy-highlight-update): Likewise.
26100
26101 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
26102
26103 * cus-start.el (all): Use default-boundp.
26104
26105 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
26106
26107 * menu-bar.el (menu-bar-select-frame): Handle current frame.
26108
26109 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
26110
26111 * autorevert.el (auto-revert-stop-on-user-input)
26112 (auto-revert-verbose): Doc fixes.
26113
26114 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
26115
26116 * international/mule-cmds.el (set-locale-environment): Remove call
26117 to set-selection-coding-system on Windows.
26118
26119 2005-02-15 Jay Belanger <belanger@truman.edu>
26120
26121 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
26122 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
26123 calcFunc-coth.
26124 (math-simplify-sqrt): Add simplifications.
26125
26126 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
26127 to list.
26128
26129 * calc/calc-ext.el: Add functions to autoloads.
26130
26131 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
26132 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
26133 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
26134 (math-csc-raw, math-cot-raw): New functions.
26135
26136 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
26137
26138 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
26139 the variable name in a message.
26140
26141 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
26142 calcFunc-csc, calcFunc-cot.
26143
26144 * calc/calcalg2.el: Add derivative and integration rules for
26145 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
26146 calcFunc-csch, calcFunc-coth.
26147 (math-do-integral-methods): Add to checks for when to use
26148 substitutions.
26149
26150 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
26151
26152 2005-02-15 Lute Kamstra <lute@gnu.org>
26153
26154 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
26155 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
26156 <monnier@iro.umontreal.ca>
26157 (lisp-outline-level): Improve efficiency. Suggested by David
26158 Kastrup <dak@gnu.org>.
26159
26160 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
26161
26162 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
26163 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
26164 (gdb-set-gud-minor-mode-existing-buffers): New functions.
26165 (gdb-find-file-hook): New hook. Add it to find-file-hook.
26166 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
26167
26168 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
26169
26170 * cus-start.el (all): Comment change.
26171
26172 2005-02-14 Lute Kamstra <lute@gnu.org>
26173
26174 * cus-start.el (all): Check if symbol is void.
26175
26176 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
26177
26178 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
26179 optional argument to \cite.
26180
26181 2005-02-14 Richard M. Stallman <rms@gnu.org>
26182
26183 * cus-edit.el (custom-buffer-create-internal): Update help message.
26184 (custom-magic-alist): Update help messages.
26185
26186 * cus-start.el (all): Allow a var to specify a standard value.
26187
26188 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
26189
26190 * custom.el (custom-theme-set-variables): Handle variable aliases.
26191
26192 * frame.el (blink-cursor-timer): Doc fix.
26193 (blink-cursor): Make it an alias for `blink-cursor-mode' and
26194 declare obsolete.
26195 (blink-cursor-mode): Define with defcustom and use correct
26196 standard expression in that defcustom.
26197 * startup.el (command-line): Adapt to above changes in frame.el.
26198
26199 2005-02-11 Lute Kamstra <lute@gnu.org>
26200
26201 * apropos.el (apropos-score-doc): Prevent division by zero.
26202
26203 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
26204
26205 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
26206 (icalendar--get-event-property-attributes)
26207 (icalendar--get-event-properties)
26208 (icalendar--datetime-to-diary-date): New functions.
26209 (icalendar--split-value): Doc fix.
26210 (icalendar--datetime-to-noneuropean-date)
26211 (icalendar--datetime-to-european-date): New optional argument
26212 SEPARATOR. Return result as a string instead of a list.
26213 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
26214 (icalendar--convert-string-for-export): Rename arg S to STRING.
26215 (icalendar-export-region): Doc fix. Change name of error buffer.
26216 Save output buffer.
26217 (icalendar-import-file): Add blank at end of prompt.
26218 (icalendar-import-buffer): Doc fix. Do not switch to error
26219 buffer. Indicate status in return value.
26220 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
26221 buffer. Save output buffer. Handle exception from recurrence
26222 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
26223 events. Fix problems with weekly all-day events.
26224
26225 2005-02-10 Richard M. Stallman <rms@gnu.org>
26226
26227 * simple.el (eval-expression-print-format):
26228 Avoid warning about edebug-active.
26229
26230 * help.el (help-for-help-internal): Rename from help-for-help.
26231 (help-for-help): Define with defalias.
26232
26233 * font-core.el (font-lock-default-function): Use with-no-warnings.
26234
26235 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
26236
26237 * custom.el (defface): Doc fix.
26238
26239 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
26240
26241 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
26242 width 0" to prevent word wrapping problems.
26243
26244 2005-02-09 Kim F. Storm <storm@cua.dk>
26245
26246 * ido.el (ido-file-extensions-order): New defcustom.
26247 (ido-file-extension-lessp, ido-file-extension-aux)
26248 (ido-file-extension-order): New advanced file ordering.
26249 (ido-file-lessp): New simple file ordering.
26250 (ido-sort-list): Remove.
26251 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
26252 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
26253
26254 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
26255
26256 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
26257 that some versions of grep produce.
26258 (grep-mode-font-lock-keywords): Likewise.
26259
26260 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
26261
26262 * progmodes/gdb-ui.el (gdb-location-list): New variable.
26263 (gdb-cdir): Delete.
26264 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
26265 (gdb-source-info): Treat case when source file is in another
26266 directory properly.
26267 (gdb-get-location): New function.
26268
26269 2005-02-07 Jay Belanger <belanger@truman.edu>
26270
26271 * calc/calc-prog.el (calc-write-parse-table-part)
26272 (calc-fix-token-name): Fix a check for language type.
26273
26274 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
26275
26276 2005-02-07 Andre Spiegel <spiegel@gnu.org>
26277
26278 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
26279 as directory not writable.
26280
26281 2005-02-07 Kim F. Storm <storm@cua.dk>
26282
26283 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
26284 (cua--standard-movement-commands): Remove list.
26285 Instead, set CUA property value to move for movement commands.
26286 (cua-movement-commands): Remove. Users must set CUA prop instead.
26287 (cua--pre-command-handler): Check CUA property.
26288 (cua--init-keymaps): Don't remap undo commands.
26289 (cua-mode): Don't call cua--rectangle-on-off.
26290
26291 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
26292 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
26293 (cua--rect-undo-set-point): New var.
26294 (cua--rectangle-undo-boundary): Setup undo apply entry.
26295 (cua--rect-undo-handler): New function for rectangle undo.
26296 (cua--rect-start-position, cua--rect-end-position): Add.
26297 (cua--rectangle-post-command): Call cua--rectangle-set-corners
26298 for restored rectangle. Set point if cua--rect-undo-set-point.
26299
26300 2005-02-06 Jay Belanger <belanger@truman.edu>
26301
26302 * calc/calc-lang.el (calc-tex-language): Display more information
26303 in messages.
26304
26305 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
26306 in TeX mode.
26307
26308 2005-02-06 Richard M. Stallman <rms@gnu.org>
26309
26310 * emacs-lisp/lisp.el (buffer-end): Doc fix.
26311
26312 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
26313
26314 * net/ldap.el (ldap-search-internal): Support attributes with
26315 optional descriptions separated by a semi-colon, as in
26316 "userCertificate;binary".
26317
26318 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
26319
26320 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
26321 isn't a cons (i.e. the version is 0).
26322
26323 2005-02-05 Eli Zaretskii <eliz@gnu.org>
26324
26325 * help.el (help-for-help): Doc fix.
26326
26327 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
26328
26329 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
26330 GDB-Windows on the menu-bar as this works better.
26331
26332 2005-02-04 Jay Belanger <belanger@truman.edu>
26333
26334 * calc/calc-embed.el (calc-embedded-update): Don't put in
26335 unnecessary newlines. Adjust the end of formula marker.
26336
26337 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
26338 (math-latex-parse-two-args): New function.
26339
26340 2005-02-03 Lute Kamstra <lute@gnu.org>
26341
26342 * help-fns.el (help-with-tutorial): Make sure that users cannot
26343 remove the entire text of the tutorial by means of `undo'.
26344
26345 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
26346
26347 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
26348 in recent changes, where the ispell process was repeatedly
26349 killed & restarted.
26350
26351 * international/mule-cmds.el (set-locale-environment): Set file-name
26352 coding system to utf-8 on Darwin systems.
26353 (set-default-coding-systems): Don't set default-file-name-coding-system
26354 on Darwin systems.
26355
26356 2005-02-03 Richard M. Stallman <rms@gnu.org>
26357
26358 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
26359
26360 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
26361
26362 * faces.el (list-faces-display): Add optional argument.
26363
26364 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
26365
26366 * font-core.el (font-lock-default-function): Handle the rare case where
26367 only font-lock-keywords is set.
26368
26369 2005-02-02 Kenichi Handa <handa@m17n.org>
26370
26371 * international/characters.el: Cancel previous change for
26372 I-WITH-DOT-ABOVE and DOTLESS-i.
26373
26374 * international/latin-5.el: Cancel previous change.
26375
26376 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
26377
26378 * progmodes/gud.el: Correction to syntax in gud-menu-map.
26379
26380 2005-02-02 Kenichi Handa <handa@m17n.org>
26381
26382 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
26383 DOTLESS-i.
26384
26385 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
26386 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
26387
26388 * case-table.el (get-upcase-table): New function.
26389 (copy-case-table): Copy upcaes table too if non-nil.
26390 (set-case-syntax-delims): Maintain upcase table too.
26391 (set-case-syntax-pair): Likewise.
26392 (set-upcase-syntax, set-downcase-syntax): New functions.
26393 (set-case-syntax): Maintain upcase table too.
26394
26395 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
26396
26397 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
26398
26399 * progmodes/gud.el (gud-goto-info): New function.
26400 (gud-tool-bar-map): Use correct icon.
26401
26402 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
26403
26404 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
26405 When delegating, order args in the funcall correctly.
26406
26407 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
26408
26409 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
26410
26411 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
26412
26413 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
26414 buffer not visiting a file.
26415
26416 2005-01-31 Jay Belanger <belanger@truman.edu>
26417
26418 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
26419 bound on the line with the formula.
26420
26421 2005-01-31 Kim F. Storm <storm@cua.dk>
26422
26423 * ses.el (ses-create-cell-variable-range)
26424 (ses-destroy-cell-variable-range, ses-reset-header-string)
26425 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
26426 (ses-insert-row): Fix format of apply undo entries.
26427
26428 2005-01-31 Jay Belanger <belanger@truman.edu>
26429
26430 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
26431 parts.
26432
26433 * calc/calc-embed.el (calc-embedded-open-formula)
26434 (calc-embedded-close-formula): Ignore matrix environments.
26435
26436 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
26437 TeX mode.
26438
26439 * calc/calc-lang.el (math-function-table, math-oper-table)
26440 (math-variable-table): Adjust the LaTeX portions.
26441
26442 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
26443 (math-latex-ignore-words): New constant.
26444
26445 2005-01-31 Richard M. Stallman <rms@gnu.org>
26446
26447 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
26448 (ispell-local-dictionary): Doc fix.
26449 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
26450 Don't reinitialize at run time. Don't defcustom.
26451 All uses changed to append ispell-local-dictionary-alist,
26452 or check it first.
26453 (ispell-current-dictionary): New variable for dictionary in use.
26454 (ispell-dictionary): Now used only for global default.
26455 (ispell-start-process): Set ispell-current-dictionary,
26456 not ispell-dictionary.
26457 (ispell-change-dictionary): Use this only for setting
26458 user preferences.
26459 (ispell-internal-change-dictionary): New function
26460 to change the current dictionary in use.
26461 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
26462 Use ispell-current-dictionary.
26463 Handle ispell-local-dictionary-overridden.
26464 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
26465
26466 2005-01-31 Jay Belanger <belanger@truman.edu>
26467
26468 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
26469
26470 * calc/calc-ext.el: Add calc-latex-language to autoloads.
26471 (calc-mode-map): Add calc-latex-language.
26472
26473 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
26474 (math-latex-print-frac): New functions.
26475 (math-oper-table, math-function-table, math-variable-table)
26476 (math-complex-format, math-input-filter): Add latex properties.
26477 (calc-set-language): Set math-expr-special-function-mapping.
26478
26479 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
26480 (calc-write-parse-table-part): Add LaTeX support.
26481
26482 * calc/calc.el (calc-language): Adjust docstring.
26483 (calc-set-mode-line): Add LaTeX support.
26484 (math-expr-special-function-mapping): New variable.
26485 (math-tex-ignore-words): Add to list.
26486
26487 * calc/calccomp.el (math-compose-expr, math-compose-rows):
26488 Add LaTeX support.
26489 (math-compose-expr): Add support for special functions.
26490
26491 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
26492
26493 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
26494
26495 * progmodes/gdb-ui.el (gdb-memory-address)
26496 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
26497 (gdb-memory-mode-map, gdb-memory-format-keymap)
26498 (gdb-memory-format-menu, gdb-memory-unit-keymap)
26499 (gdb-memory-unit-menu): New variables for a buffer
26500 that lets the user examine program memory.
26501 (gdb-memory-set-address, gdb-memory-set-repeat-count)
26502 (gdb-memory-format-binary, gdb-memory-format-octal)
26503 (gdb-memory-format-unsigned, gdb-memory-format-signed)
26504 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
26505 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
26506 (gdb-memory-unit-word, gdb-memory-unit-halfword)
26507 (gdb-memory-unit-byte, gdb-memory-unit-menu)
26508 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
26509 (gdb-memory-mode, gdb-memory-buffer-name)
26510 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
26511 New functions for above buffer.
26512
26513 2005-01-30 Richard M. Stallman <rms@gnu.org>
26514
26515 * cus-edit.el (custom-bury-buffer): Function deleted.
26516 (custom-buffer-done-function): Option deleted.
26517 (custom-buffer-done-kill): New replacement option.
26518 (Custom-buffer-done): Call quit-window.
26519 (custom-buffer-create-internal): Update for above changes.
26520
26521 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
26522
26523 * simple.el (undo-ask-before-discard): New var.
26524 (undo-outer-limit-truncate): Implement it.
26525 (undo-extra-outer-limit): Doc update.
26526
26527 2005-01-29 Richard M. Stallman <rms@gnu.org>
26528
26529 * ses.el (undo-more): Delete defadvice.
26530 (ses-begin-change): Doc fix.
26531
26532 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
26533 instead of rebinding C-x u and C-_.
26534
26535 * files.el (normal-backup-enable-predicate): Return nil for files
26536 in /tmp, regardless of temporary-file-directory.
26537
26538 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
26539
26540 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
26541 (open-rectangle, delete-whitespace-rectangle-line)
26542 (clear-rectangle-line): If FILL, pass t instead of FILL
26543 for move-to-column's 2nd arg.
26544
26545 * simple.el (undo): Fix the test for continuing a series of undos.
26546 (undo-more): Set pending-undo-list to t when we reach end.
26547 (pending-undo-list): Move up defvar.
26548
26549 * wid-edit.el (widget-button-click):
26550 Shorten the range of the track-mouse binding.
26551
26552 * comint.el (comint-insert-input): Undo previous changes;
26553 use last-input-event in interactive spec.
26554
26555 2005-01-29 Eli Zaretskii <eliz@gnu.org>
26556
26557 * progmodes/compile.el (compilation-start): Bind buffer-read-only
26558 to nil before invoking call-process. Reset buffer's modified flag
26559 after fontifying it in the no-async branch.
26560
26561 * wid-edit.el (widget-specify-button): If mouse pointer shape
26562 cannot be changed, use mouse face instead.
26563
26564 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
26565
26566 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
26567 (gdb-goto-breakpoint): Make breakpoint handling work on template
26568 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
26569 (gdb-assembler-custom): Update to recognize breakpoint information
26570 added on 2005-01-19.
26571
26572 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
26573
26574 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
26575 (dsssl-mode): Use define-derived-mode.
26576 (scheme-mode-initialize): Remove.
26577 (scheme-mode): Use run-mode-hooks.
26578
26579 * cus-edit.el (customize-group-other-window)
26580 (custom-buffer-create-other-window): Don't override special-display-*.
26581 (custom-mode-map): Make it dense.
26582
26583 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
26584 sets the default value.
26585
26586 2005-01-28 Eli Zaretskii <eliz@gnu.org>
26587
26588 * descr-text.el: Add more keywords.
26589
26590 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
26591
26592 * speedbar.el: Avoid unnecessary use of locate-library.
26593
26594 * international/mule-cmds.el (standard-display-european-internal):
26595 Don't fiddle with latin-1 non-break space any more since it's now
26596 special cased in the C code.
26597 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
26598
26599 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
26600
26601 * cus-start.el (all): Add `undo-outer-limit'.
26602
26603 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
26604
26605 * textmodes/bibtex.el (bibtex-format-entry):
26606 Use `bibtex-empty-field-re' only on the text of fields, not on entire
26607 field lines.
26608 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
26609 not on part of a buffer.
26610
26611 2005-01-25 Lute Kamstra <lute@gnu.org>
26612
26613 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
26614 nonempty field text strings like "{letters\\macro{}more letters}".
26615 Clarify docstring.
26616 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
26617 (bibtex-entry-offset, bibtex-parse-association)
26618 (bibtex-parse-field-name): Fix typos in docstrings.
26619 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
26620
26621 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
26622
26623 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
26624 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
26625 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
26626 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
26627
26628 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
26629 isearch minor mode.
26630
26631 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
26632
26633 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
26634
26635 2005-01-24 Lute Kamstra <lute@gnu.org>
26636
26637 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
26638 CASECHARS and NOT-CASECHARS regular expressions of the
26639 "nederlands" and "nederlands8" dictionaries to prevent a "Range
26640 striding over charsets" error.
26641
26642 2005-01-24 Jay Belanger <belanger@truman.edu>
26643
26644 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
26645 display variable name.
26646
26647 2005-01-24 Kenichi Handa <handa@m17n.org>
26648
26649 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
26650 Fix setting of the element of encoded-kbd-iso2022-invocations.
26651
26652 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
26653
26654 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
26655 (gdb-threads-select): Change to also accept mouse events.
26656 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
26657 (gdb-threads-mouse-select): Delete.
26658
26659 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
26660
26661 * files.el (insert-directory): Take care of empty directory,
26662 listed without -a switch.
26663
26664 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
26665
26666 * textmodes/refill.el (refill-post-command-function):
26667 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
26668 to the list of functions that we should be careful not to undo.
26669 (refill-late-fill-paragraph-function): Remove.
26670 (refill-saved-state): New var.
26671 (refill-mode): Use it to save fill-paragraph-function.
26672 Save also the value of auto-fill-function.
26673
26674 * term/w32-win.el: Simplify code.
26675
26676 2005-01-23 Kim F. Storm <storm@cua.dk>
26677
26678 * simple.el (line-move): Adapt to new return value from
26679 pos-visible-in-window-p.
26680
26681 * simple.el (line-move): Fix last change. Check partial
26682 visibility at point rather than at window-start.
26683
26684 2005-01-22 Jason Rumney <jasonr@gnu.org>
26685
26686 * term/w32-win.el (xw-defined-colors): Remove debug-message.
26687
26688 2005-01-22 David Kastrup <dak@gnu.org>
26689
26690 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
26691
26692 2005-01-22 Eli Zaretskii <eliz@gnu.org>
26693
26694 * type-break.el (type-break-mode): Add a test for
26695 type-break-file-name being non-nil.
26696
26697 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
26698
26699 * net/eudc.el (top level): Call (message "") via progn, so that
26700 eudc-options-file is loaded.
26701
26702 2005-01-22 Kim F. Storm <storm@cua.dk>
26703
26704 * simple.el (line-move-1): Rename from line-move.
26705 (line-move): New function that adjusts vscroll for partially
26706 visible rows, and calls line-move-1 otherwise.
26707
26708 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
26709
26710 * pcomplete.el: Define pcomplete-read-event instead of read-event,
26711 since it's not a complete read-event implementation
26712
26713 2005-01-20 Jay Belanger <belanger@truman.edu>
26714
26715 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
26716 for called function.
26717
26718 2005-01-20 Steven Tamm <steventamm@mac.com>
26719
26720 * term/mac-win.el (process-connection-type): Remove.
26721 Controlled now by s/darwin.h:PTY_ITERATION.
26722
26723 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
26724
26725 * window.el (handle-select-window): Don't switch window when we're
26726 in the minibuffer.
26727
26728 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
26729
26730 * subr.el (dotimes-with-progress-reporter): New macro.
26731
26732 * ses.el (ses-dotimes-msg): Remove macro.
26733 Use `dotimes-with-progress-reporter' instead.
26734
26735 2005-01-19 Steven Tamm <steventamm@mac.com>
26736
26737 * term/mac-win.el (process-connection-type): Use new
26738 operating-system-release variable to use ptys on Darwin 7 (OS X
26739 10.3) when using carbon build.
26740
26741 2005-01-19 Jay Belanger <belanger@truman.edu>
26742
26743 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
26744 flags if the last command was a tab or M-tab.
26745
26746 * calc/calc-prog.el (calc-user-define-edit): Put original formula
26747 in formula editing buffer.
26748
26749 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
26750
26751 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
26752 breakpoint image symbol in margin.
26753
26754 2005-01-19 Jay Belanger <belanger@truman.edu>
26755
26756 * calc/calc-prog.el (calc-execute-kbd-macro):
26757 Ignore calc-keep-arg-flag.
26758
26759 2005-01-19 Kenichi Handa <handa@m17n.org>
26760
26761 * textmodes/ispell.el (ispell-looking-at): New function.
26762 (ispell-process-line): Use ispell-looking-at to compare the ispell
26763 output and the buffer contents.
26764
26765 2005-01-18 Jay Belanger <belanger@truman.edu>
26766
26767 * calc/calc.el (calc-display-raw): Fix docstring.
26768
26769 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
26770
26771 * simple.el (blink-matching-open): Strip extra info from syntax.
26772
26773 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
26774 funny chars in the end-of-here-doc marker.
26775
26776 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
26777
26778 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
26779 that enable/disabled state of breakpoints is shown correctly in
26780 fringe and on ttys.
26781 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
26782 Add breakpoint information as text properties.
26783 (gdb-mouse-toggle-breakpoint):
26784 Rename to gdb-mouse-set-clear-breakpoint.
26785 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
26786 breakpoints in the margin.
26787 (gdb-remove-strings): Simplify.
26788
26789 2005-01-17 Jay Belanger <belanger@truman.edu>
26790
26791 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
26792 erasing buffer.
26793
26794 2005-01-17 Richard M. Stallman <rms@gnu.org>
26795
26796 * progmodes/grep.el (grep-find): Copy from `grep' the condition
26797 for calling grep-compute-defaults.
26798
26799 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
26800 if buffer is empty.
26801
26802 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
26803
26804 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
26805
26806 * hilit-chg.el (highlight-changes-mode): Don't autoload.
26807
26808 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
26809 non-preloaded variables.
26810
26811 2005-01-17 Steven Tamm <steventamm@mac.com>
26812
26813 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
26814 tex-shell cause to force interactivity when using pipes.
26815
26816 2005-01-17 Kim F. Storm <storm@cua.dk>
26817
26818 * simple.el (just-one-space): Make arg optional.
26819
26820 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
26821
26822 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
26823 posn-at-x-y to t to access left-margin.
26824
26825 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
26826
26827 Sync with Tramp 2.0.47.
26828
26829 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
26830 catching keep-date problems in cp/scp operations.
26831 (tramp-handle-copy-file): Don't call `set-file-modes'
26832 unconditionally. Specialized functions should know better what is
26833 necessary. This improves performance a little bit, and the
26834 functions could catch errors with `cp -p' and `scp -p'.
26835 (tramp-do-copy-or-rename-file-via-buffer)
26836 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
26837 when appropriate.
26838 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
26839 Call `set-file-modes' when appropriate.
26840 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
26841 Johnsson <isak@hypergene.com>
26842 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
26843 of both Tramp buffer and debug buffer. Reported by Joakim Verona
26844 <joakim@verona.se>
26845 (tramp-file-name-for-operation): Mark `shell-command' as magic for
26846 Emacs only.
26847
26848 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
26849 `find-file-hooks' and `dired-mode-hook'.
26850 (tramp-minor-mode-map): Respective map. Add remapping for
26851 `compile' and `recompile'.
26852 (tramp-remap-command, tramp-recompile): New defuns.
26853 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
26854 in buffer "*Compilation*". Call the commands asynchronously.
26855
26856 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
26857 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
26858 `shell-command', because it isn't magic in XEmacs. Reported by
26859 Adrian Aichner <adrian@xemacs.org>.
26860
26861 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
26862 `substitute-in-file-name.
26863 (tramp-smb-handle-substitute-in-file-name): New defun.
26864 (tramp-smb-advice-PC-do-completion): Delete advice.
26865
26866 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
26867
26868 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
26869 Fix error in deleting region.
26870
26871 2005-01-15 Richard M. Stallman <rms@gnu.org>
26872
26873 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
26874 In non-temp buffer, switch syntax table temporarily.
26875
26876 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
26877
26878 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
26879
26880 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
26881
26882 * imenu.el (imenu--split-menu): Copy menulist before sorting.
26883 (imenu--generic-function): Use START, not BEG, as pos of definition.
26884
26885 * simple.el (just-one-space): Argument specifies number of spaces.
26886
26887 * simple.el (eval-expression-print-format): Avoid warning
26888 about edebug-active.
26889
26890 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
26891
26892 * progmodes/sh-script.el: Code copied from make-mode.el
26893 with small changes,
26894 (sh-mode-map): Bind C-c C-\.
26895 (sh-backslash-column, sh-backslash-align): New variables.
26896 (sh-backslash-region, sh-append-backslash): New functions.
26897
26898 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
26899
26900 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
26901 (rmail-pop-password, rmail-pop-password-required): Move to
26902 rmail-obsolete group.
26903 (rmail-set-pop-password): Rename to rmail-set-remote-password.
26904 All callers updated.
26905 (rmail-get-pop-password): Rename to rmail-get-remote-password.
26906 Take an argument specifying whether it is POP or IMAP mailbox we
26907 are using. All callers updated.
26908 (rmail-pop-password-error): Rename to
26909 rmail-remote-password-error. Added mailutils-specific error message.
26910 (rmail-movemail-search-path)
26911 (rmail-movemail-variant-in-use): New variables.
26912 (rmail-remote-password, rmail-remote-password-required):
26913 New customization variables.
26914 (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
26915 (rmail-parse-url): New function.
26916 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
26917 with GNU mailutils movemail.
26918
26919 2005-01-15 Kevin Ryde <user42@zip.com.au>
26920
26921 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
26922 suffix to space, $ or '$, to correctly position point when going
26923 to @table style constants like DBL_MAX.
26924
26925 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
26926
26927 * type-break.el (type-break-mode, type-break-file-time)
26928 (type-break-file-keystroke-count, type-break-choose-file):
26929 Don't store data in or load data from the file if type-break-file-name
26930 is nil.
26931 (type-break-file-name): Doc update as per the above.
26932
26933 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
26934
26935 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
26936 lookup-key might return nil; handle that.
26937
26938 2005-01-15 Alan Mackenzie <acm@muc.de>
26939
26940 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
26941 rather than the element found, thus enabling the tree to be setcar'd.
26942
26943 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
26944
26945 * textmodes/org.el (org-show-following-heading): New option.
26946 (org-show-hierarchy-above): Use `org-show-following-heading'.
26947 (org-cycle): Documentation fix.
26948
26949 * textmodes/org.el (orgtbl-optimized): New option
26950 (orgtbl-mode): New command, a minor mode.
26951 (orgtbl-mode-map): New variable.
26952 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
26953 (orgtbl-error, orgtbl-self-insert-command)
26954 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
26955
26956 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
26957 a local variable in each org-mode buffer.
26958
26959 * textmodes/org.el (org-set-regexps-and-options): Rename from
26960 `org-set-regexps'. Added checking for STARTUP keyword.
26961 (org-get-current-options): Add STARTUP options.
26962 (org-table-insert-row): Make mode intelligent about when
26963 realignment is needed.
26964 (org-self-insert-command, org-delete-backward-char, org-delete-char):
26965 New commands.
26966 (org-enable-table-editor): New default value `optimized'.
26967 (org-table-blank-field): Support blanking regions if active.
26968
26969 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
26970
26971 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
26972 if the year is not given.
26973
26974 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
26975 Add new escapes %m and %M, fixed bug with %F by adding
26976 save-match-data.
26977 (reftex-reference): Remove ?. from list of spaces.
26978 (reftex-label-info): Add automatic label prefix recognition.
26979
26980 * textmodes/reftex-index.el (reftex-index-next-phrase):
26981 Add slave parameter to call of `reftex-index-this-phrase'.
26982 (reftex-index-this-phrase): New optional argument.
26983 (reftex-index-region-phrases): Add slave parameter to call of
26984 `reftex-index-this-phrase'.
26985 (reftex-display-index): New argument redo.
26986 (reftex-index-rescan): Add `redo' to arguments of
26987 `reftex-display-index'.
26988 (reftex-index-Rescan, reftex-index-revert)
26989 (reftex-index-switch-index-tag): Add `redo' to arguments of
26990 `reftex-display-index'.
26991 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
26992 indexing. Fix bug with matching is there is a quote before or
26993 after the word.
26994
26995 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
26996 Fix bug when collecting citation keys in lines with comments.
26997 (reftex-citation): Prefix argument no longer rescans the document,
26998 but forces prompting for optional arguments of cite macros.
26999 (reftex-do-citation): Prompting for optional arguments implemented.
27000
27001 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
27002 Add optional arguments to most cite commands.
27003 (reftex-cite-cleanup-optional-args): New option
27004 (reftex-cite-prompt-optional-args): New option.
27005 (reftex-trust-label-prefix): New option.
27006
27007 * textmodes/reftex-toc.el (reftex-toc-find-section):
27008 Add push-mark before changing the position in the buffer.
27009
27010 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
27011 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
27012
27013 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
27014
27015 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
27016 more carefully.
27017
27018 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
27019
27020 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
27021 (sgml-mode): Use it.
27022 (sgml-get-context): Better keep track of implicitly closed tags.
27023
27024 2005-01-13 Kenichi Handa <handa@m17n.org>
27025
27026 * textmodes/ispell.el: These changes are to fix misalignment error
27027 caused by equivalent characters of different Emacs charsets.
27028 (ispell-unified-chars-table): New variable.
27029 (ispell-get-decoded-string): New function.
27030 (ispell-get-casechars, ispell-get-not-casechars)
27031 (ispell-get-otherchars): Call ispell-get-decoded-string.
27032
27033 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
27034
27035 * custom.el (custom-declare-variable): Just put symbol instead
27036 of (defvar . symbol) in `current-load-list'.
27037
27038 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
27039
27040 * emacs-lisp/elint.el: Fixed typo in Commentary section.
27041
27042 2005-01-12 Jay Belanger <belanger@truman.edu>
27043
27044 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
27045 to create a Calc summary.
27046
27047 2005-01-12 Kim F. Storm <storm@cua.dk>
27048
27049 * mouse.el (mouse-on-link-p): Change functionality and doc
27050 string to comply with latest description in lisp ref.
27051
27052 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
27053
27054 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
27055 Enable mouse clicks on mode-line, header-line and margin.
27056 (event-type): Give mouse event symbols an `event-kind' property
27057 with value `mouse-click'.
27058
27059 2005-01-12 Juri Linkov <juri@jurta.org>
27060
27061 * facemenu.el (list-colors-display): Add new arg buffer-name.
27062 Use it. Fix docstring. Replace code for identifying duplicate
27063 colors by the name with call to `list-colors-duplicates' which
27064 identifies duplicate colors by the value unless the color
27065 is one of special Windows colors. Set truncate-lines to t.
27066 Print sorted duplicate color names on each line. Indent to 22
27067 \(the longest color name in rgb.txt) instead of 20. Optimize.
27068 (list-colors-duplicates): New function.
27069 (facemenu-color-name-equal): Delete function.
27070
27071 * facemenu.el (list-colors-print): New function created from code
27072 in list-colors-display. Print #RRGGBB at the window right edge.
27073 (list-colors-display): When temp-buffer-show-function is not
27074 defined, call list-colors-print from temp-buffer-show-hook
27075 to get the right value of window-width in list-colors-print
27076 after the buffer is displayed.
27077
27078 * simple.el (pop-mark): Move deactivate-mark out of conditional
27079 part to deactivate the active mark regardless of the state of the
27080 mark ring.
27081
27082 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
27083 variables line in desktop files.
27084
27085 2005-01-12 Juri Linkov <juri@jurta.org>
27086
27087 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
27088 Bring together isearch highlight related options.
27089 (lazy-highlight): Replace group `replace' by `matching'.
27090 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
27091 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
27092 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
27093 and declare them obsolete.
27094 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
27095 (isearch-faces): Remove defgroup.
27096 (isearch-overlay, isearch-highlight, isearch-dehighlight):
27097 Move isearch highlighting code closer to lazy highlighting code.
27098
27099 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
27100 (query-replace-highlight, query-replace-lazy-highlight)
27101 (query-replace): Move definitions to the beginning of the file.
27102
27103 2005-01-11 Juri Linkov <juri@jurta.org>
27104
27105 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
27106 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
27107 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
27108
27109 * info.el (Info-history-forward): New variable.
27110 (Info-select-node): Reset Info-history-forward to nil.
27111 (Info-last): Turn into defalias.
27112 (Info-history-back): Rename from Info-last.
27113 Add current node to Info-history-forward.
27114 (Info-history-forward): New fun.
27115 (Info-mode-map): Replace Info-last by Info-history-back.
27116 Bind Info-history-forward to "r".
27117 (Info-mode-menu): Replace Info-last by Info-history-back.
27118 Fix menu item text. Add menu item for Info-history-forward.
27119 (info-tool-bar-map): Replace Info-last by Info-history-back.
27120 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
27121 for Info-history-forward.
27122 (Info-mode): Replace Info-last by Info-history-back in docstring.
27123 Add local variable Info-history-forward.
27124 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
27125
27126 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
27127
27128 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
27129 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
27130 Ignore select-window events rather than fiddle with
27131 mouse-autoselect-window.
27132
27133 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
27134
27135 * type-break.el (type-break-mode): Fix previous change.
27136
27137 2005-01-10 Jay Belanger <belanger@truman.edu>
27138
27139 * calc/calc-ext.el (calc-reset): Reset when inside embedded
27140 calculator; only reset when point is inside a calculator.
27141 Don't adjust the window height if the window takes up the whole height
27142 of the frame.
27143
27144 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
27145
27146 * ebuff-menu.el (Electric-buffer-menu-mode):
27147 Preserve value of buffer-local var header-line-format.
27148
27149 2005-01-09 Jay Belanger <belanger@truman.edu>
27150
27151 * calc/calc.el (calc-mode-var-list-restore-saved-values):
27152 Make sure settings file exists before accessing it.
27153
27154 * calc/calc-embed.el (calc-embedded-subst):
27155 Replace math-multi-subst-rec, which is only supposed to be called
27156 by math-multi-subst, by math-multi-subst.
27157
27158 2005-01-09 Andre Spiegel <spiegel@gnu.org>
27159
27160 * vc.el (vc-allow-async-revert): New user option.
27161 (vc-disable-async-diff): New internal variable.
27162 (vc-revert-buffer): Use them to disable asynchronous diff.
27163
27164 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
27165 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
27166 asynchronously if vc-disable-async-diff is t.
27167
27168 2005-01-09 Jay Belanger <belanger@truman.edu>
27169
27170 * calc/calc.el (defcalcmodevar): New macro.
27171 (calc-mode-var-list-restore-default-values)
27172 (calc-mode-var-list-restore-saved-values): New functions.
27173 (calc-mode-var-list): Use defcalcmodevar to define it.
27174 (calc-always-load-extensions, calc-line-numbering)
27175 (calc-line-breaking, calc-display-just, calc-display-origin)
27176 (calc-number-radix, calc-leading-zeros, calc-group-digits)
27177 (calc-group-char, calc-point-char, calc-frac-format)
27178 (calc-prefer-frac, calc-hms-format, calc-date-format)
27179 (calc-float-format, calc-full-float-format, calc-complex-format)
27180 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
27181 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
27182 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
27183 (calc-matrix-brackets, calc-language, calc-language-option)
27184 (calc-left-label, calc-right-label, calc-word-size)
27185 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
27186 (calc-display-raw, calc-internal-prec, calc-angle-mode)
27187 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
27188 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
27189 (calc-window-height, calc-display-trail, calc-show-selections)
27190 (calc-use-selections, calc-assoc-selections)
27191 (calc-display-working-message, calc-auto-why, calc-timing)
27192 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
27193 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
27194 (calc-gnuplot-default-device, calc-gnuplot-default-output)
27195 (calc-gnuplot-print-device, calc-gnuplot-print-output)
27196 (calc-gnuplot-geometry, calc-graph-default-resolution)
27197 (calc-graph-default-resolution-3d, calc-invocation-macro)
27198 (calc-show-banner): Use defcalcmodevar to declare them and set
27199 their default values.
27200
27201 * calc/calc-ext.el (calc-reset): Restore saved values of variables
27202 instead of default values (but restore default values if there is
27203 an argument of 0).
27204
27205 2005-01-09 David Kastrup <dak@gnu.org>
27206
27207 * desktop.el (desktop-restore-eager): Fix typo in type.
27208
27209 2005-01-08 Richard M. Stallman <rms@gnu.org>
27210
27211 * cus-edit.el (customize): Delete :link.
27212
27213 2005-01-08 Jay Belanger <belanger@truman.edu>
27214
27215 * calc/calc.el (calc-mode): Remove the extension from the
27216 `calc-settings-file' file name when loading it.
27217
27218 2005-01-08 Kim F. Storm <storm@cua.dk>
27219
27220 * info.el (Info-mode-map, Info-next-link-keymap)
27221 (Info-prev-link-keymap, Info-up-link-keymap):
27222 Map follow-link to mouse-face.
27223 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
27224
27225 2005-01-08 Jay Belanger <belanger@truman.edu>
27226
27227 * calc/calc.el (calc-settings-file): Change default value.
27228 Suggested by cgw in a comment in calc-mode.el.
27229
27230 * calc/calc-mode.el (calc-settings-file-name):
27231 Compare calc-settings-file to user-init-file instead of ~/.emacs.
27232 Replace ~/.emacs in a prompt by calc-settings-file.
27233
27234 2005-01-07 Lars Hansen <larsh@math.ku.dk>
27235
27236 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
27237 (desktop-lazy-idle-delay): New customizable variables.
27238 (desktop-buffer-args-list): New variable.
27239 (desktop-append-buffer-args): New function.
27240 (desktop-save): Call desktop-append-buffer-args for some buffers.
27241 (desktop-lazy-create-buffer): New function.
27242 (desktop-idle-create-buffers): New function.
27243 (desktop-read): Add message about buffers to restore lazily.
27244 (desktop-lazy-abort): New command.
27245 (desktop-clear): Call desktop-lazy-abort.
27246 (desktop-lazy-complete): New command.
27247
27248 2005-01-06 Richard M. Stallman <rms@gnu.org>
27249
27250 * emacs-lisp/find-func.el (find-face-definition):
27251 Rename from find-face.
27252
27253 2005-01-06 Kim F. Storm <storm@cua.dk>
27254
27255 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
27256
27257 * man.el (Man-xref-man-page, Man-xref-header-file)
27258 (Man-xref-normal-file): Add follow-link property.
27259
27260 2005-01-06 Jay Belanger <belanger@truman.edu>
27261
27262 * calc/calc-units.el: Make sure the proper macro definitions are
27263 available when compiling.
27264
27265 2005-01-06 Juri Linkov <juri@jurta.org>
27266
27267 * isearch.el (isearch-lazy-highlight-update):
27268 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
27269
27270 2005-01-06 Miles Bader <miles@gnu.org>
27271
27272 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
27273 (isearch-lazy-highlight-face): Use new name.
27274
27275 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
27276
27277 * uniquify.el (uniquify-rationalize-file-buffer-names):
27278 Re-add an interactive spec.
27279 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
27280 to the same name.
27281
27282 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
27283 (isearch-update, isearch-done): Adjust calls accordingly.
27284
27285 2005-01-05 Richard M. Stallman <rms@gnu.org>
27286
27287 * custom.el (custom-set-variables, custom-theme-set-variables):
27288 Clarify documentation.
27289
27290 * emacs-lisp/find-func.el (find-variable)
27291 (find-variable-other-window, find-variable-other-frame):
27292 Fix the TYPE args to find-function-read and find-function-do-it.
27293 (find-function): Doc fix.
27294 (find-function-at-point): Replace function-at-point alias.
27295
27296 2005-01-04 Richard M. Stallman <rms@gnu.org>
27297
27298 * cus-face.el (custom-declare-face):
27299 Record defface in current-load-list.
27300
27301 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
27302
27303 * emacs-lisp/find-func.el: Doc fixes.
27304 (find-face-regexp): New variable.
27305 (find-function-regexp-alist): New variable.
27306 (find-function-C-source): Third arg is now TYPE.
27307 (find-function-search-for-symbol): Handle general TYPE.
27308 (find-function-read, find-function-do-it): Handle general TYPE.
27309 (find-definition-noselect, find-face): New functions.
27310 (function-at-point): Alias deleted.
27311
27312 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
27313
27314 * battery.el (display-battery-mode): Rename from display-battery.
27315 Handle the case where it gets turned off.
27316
27317 2005-01-04 Richard M. Stallman <rms@gnu.org>
27318
27319 * cus-edit.el (customize): Make :link point to user doc.
27320
27321 * man.el (Man-fontify-manpage): Turn off undo generation.
27322
27323 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
27324
27325 2005-01-04 Andreas Schwab <schwab@suse.de>
27326
27327 * files.el (insert-directory): Only look for error lines in
27328 inserted text. Don't move too far after processing --dired markers.
27329
27330 2005-01-04 Richard M. Stallman <rms@gnu.org>
27331
27332 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
27333 Don't expand if the character is @, period, dash, etc.
27334 (define-mail-abbrev): Quote names that contain problem characters.
27335
27336 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
27337
27338 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
27339
27340 2005-01-03 Richard M. Stallman <rms@gnu.org>
27341
27342 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
27343 (query-replace-highlight, query-replace-lazy-highlight)
27344 (query-replace): Definitions moved up. Doc fix.
27345
27346 2005-01-03 Richard M. Stallman <rms@gnu.org>
27347
27348 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
27349 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
27350 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
27351 (lazy-highlight-face): Rename from isearch-lazy-...
27352 Change all references to them.
27353
27354 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
27355
27356 * cus-edit.el (custom-file): Doc fix for defcustom.
27357 (custom-file): The function no longer sets the variable
27358 `custom-file' to its return value.
27359
27360 * startup.el (command-line): No longer load `custom-file'.
27361
27362 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
27363
27364 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
27365
27366 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
27367 Don't confuse module-prefixed identifiers for labels.
27368 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
27369
27370 2005-01-02 Richard M. Stallman <rms@gnu.org>
27371
27372 * files.el (basic-save-buffer-1): Fix previous change.
27373
27374 * loadhist.el (file-loadhist-lookup): New function.
27375 (file-provides, file-requires): Use it.
27376
27377 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
27378 instead of calculating the right size.
27379
27380 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
27381
27382 * vc-svn.el (vc-svn-diff): Stay local if possible.
27383
27384 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
27385
27386 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
27387
27388 * files.el (hack-local-variables): Fix last change.
27389
27390 2005-01-02 Jay Belanger <belanger@truman.edu>
27391
27392 * calc/calc-yank.el (calc-edit-top): New variable.
27393 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
27394 object. Change header properties.
27395 (calc-edit-finish, calc-edit-finish-stack-object)
27396 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
27397 edited object.
27398 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
27399 for the beginning of the edited object.
27400 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
27401 for the beginning of the edited object.
27402 * calc/calc-prog.el (calc-edit-macro-finish-edit)
27403 (calc-finish-formula-edit, calc-macro-repeats)
27404 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
27405 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
27406 beginning of the edited object.
27407 (calc-user-define-edit): Change the header for editing macros.
27408 Remove unnecessary variable.
27409
27410 2005-01-01 Jay Belanger <belanger@truman.edu>
27411
27412 * calc/calc-yank.el (calc-edit-mode): Change default header.
27413 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
27414 * calc/calc-store.el (calc-edit-variable): Change title to match new
27415 header.
27416 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
27417 mode to match new header.
27418 (calc-user-define-edit): Change titles to include names of commands.
27419 (calc-finish-formula-edit): Adjust to handle new header.
27420 (calc-finish-macro-edit): Remove.
27421 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
27422 (calc-edit-macro-command, calc-edit-macro-command-type)
27423 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
27424 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
27425 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
27426 (calc-edit-macro-finish-edit): New functions.
27427 (calc-user-define-edit): Use new functions to edit named calc macros.
27428
27429 2005-01-01 Stefan <monnier@iro.umontreal.ca>
27430
27431 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
27432
27433 * ses.el (copy-region-as-kill): Deactivate mark.
27434
27435 2005-01-01 Richard M. Stallman <rms@gnu.org>
27436
27437 * replace.el (occur-1): If the output buffer is also an input,
27438 don't kill it, rename it.
27439
27440 * faces.el (set-face-background, set-face-foreground): Doc fix.
27441
27442 * cus-face.el (custom-face-attributes): Fix :help-echo strings
27443 for :foreground and :background.
27444
27445 * dired.el (dired-view-command-alist): Variable deleted.
27446 (dired-view-file, dired-mouse-find-file-other-window):
27447 Delete the code to use it.
27448
27449 2005-01-01 Kim F. Storm <storm@cua.dk>
27450
27451 * image.el (insert-sliced-image): Use t for line-height property.
27452
27453 See ChangeLog.11 for earlier changes.
27454
27455 ;; Local Variables:
27456 ;; coding: iso-2022-7bit
27457 ;; End:
27458
27459 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
27460 Copying and distribution of this file, with or without modification,
27461 are permitted provided the copyright notice and this notice are preserved.
27462
27463 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1