Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-145
[bpt/emacs.git] / lisp / ChangeLog
1 2005-03-02 Miles Bader <miles@gnu.org>
2
3 * button.el (make-text-button): If the user doesn't specify a
4 type, use the default. Rewrite to use `add-text-properties' and
5 plist functions.
6
7 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
8
9 * textmodes/texinfmt.el: (texinfo-no-refill-regexp): Comment out
10 inclusion of "itemize\\|", which may be unnecessary, is certainly
11 inelegant, and stops refilling in itemize lists when formatting
12 Japanese Texinfo files to Info.
13 Update copyright to 2005.
14
15 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
16
17 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
18 of an error if GDB can't find the source file.
19
20 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
21
22 * calendar/calendar.el (redraw-calendar): Work from any buffer,
23 not just the calendar.
24
25 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
26 first.
27 (diary-redraw-calendar): New function.
28 (make-diary-entry): Add diary-redraw-calendar to local
29 write-contents-functions. Turn off selective display before
30 inserting in diary.
31
32 2005-03-01 Kim F. Storm <storm@cua.dk>
33
34 * emacs-lisp/copyright.el (copyright-fix-years): New command.
35
36 2005-03-01 Lute Kamstra <lute@gnu.org>
37
38 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
39 that debug-entry-code can be safely removed from a function while
40 this code is being evaluated. Revert the 2005-02-27 change as the
41 new implementation no longer requires it. Make sure that a
42 function body containing just a string is not mistaken for a
43 docstring.
44 (debug): Skip one more frame in case of debug on entry.
45 (debugger-setup-buffer): Delete one more frame line in case of
46 debug on entry.
47 (debugger-frame-number): Update to use the new text introduced by
48 the 1999-11-03 change. Skip one more frame in case of debug on
49 entry.
50
51 2005-02-28 Kim F. Storm <storm@cua.dk>
52
53 * double.el (double-translate-key): Call force-window-update after
54 read-event to avoid crash in redisplay.
55
56 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
57
58 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
59 (debug): Use it. Move the inhibit-trace earlier.
60 (debug-entry-code): New const.
61 (debug-on-entry-1): Use it.
62
63 2005-02-28 Chong Yidong" <cyd@stupidchicken.com> (tiny change)
64
65 * international/utf-16.el (ccl-encode-mule-utf-16le):
66 Fix BUFFER_MAGNIFICATION to 2.
67 (ccl-encode-mule-utf-16be): Likewise.
68
69 2005-02-28 Kenichi Handa <handa@m17n.org>
70
71 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
72 Fix BUFFER_MAGNIFICATION to 4.
73 (ccl-encode-mule-utf-16be-with-signature): Likewise.
74
75 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
76
77 * speedbar.el (speedbar-update-flag): Doc fix.
78 (speedbar-show-info-under-mouse): Give set-mouse-position the right
79 argument.
80
81 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
82
83 * reveal.el (reveal-post-command): Don't try to reveal overlays which
84 have a non-nil `invisible' property but are actually visible.
85
86 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
87 for perldoc sections.
88 (perl-outline-regexp, perl-outline-level): New var and function.
89 (perl-mode): Use them.
90
91 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
92
93 * calendar/diary-lib.el (diary-remind): Discard any mark portion
94 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
95
96 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
97
98 * cus-edit.el: Comment change.
99 (custom-buffer-create-internal): Slightly reword text at top of
100 Custom buffers. Mention there that saving an option edits the
101 init file. Add link to Emacs manual node on `custom-file'.
102 (custom-magic-alist): Rewrite individual State messages to use
103 capitalized keywords. Doc fix.
104
105 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
106
107 * calendar/calendar.el (calendar-buffer): Move above
108 calendar-week-start-day.
109 (calendar-week-start-day): Doc fix. Add :set function.
110 (calendar-minimum-window-height): New variable.
111 (generate-calendar-window): Only resize window if selected-window
112 is displaying the calendar buffer. Use new variable
113 calendar-minimum-window-height.
114 (generate-calendar): Reword error message.
115 (calendar-mode-map): Bind DEL to scroll-other-window-down.
116
117 2005-02-27 Andreas Schwab <schwab@suse.de>
118
119 * vc.el (vc-do-command): Don't run command asynchronously when
120 operating in a remote directory.
121
122 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
123 change from sync with Tramp 2.0.47.
124
125 2005-02-27 Richard M. Stallman <rms@gnu.org>
126
127 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
128
129 * textmodes/flyspell.el (flyspell-mode-on):
130 Call ispell-change-dictionary only if necessary.
131
132 * emacs-lisp/re-builder.el (regexp-builder): New function.
133
134 * register.el (describe-register-1): Explicitly handle
135 yank-excluded-properties = t.
136
137 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
138 (custom-magic-alist): Change the status descriptions again.
139 (face widget-type): Total rewrite based on `restricted-sexp'
140 to eliminate the confusing double hiding levels.
141
142 * emacs-lisp/debug.el (debug-on-entry-1):
143 If function body is empty, add nil as body form.
144
145 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
146
147 * emacs-lisp/trace.el (inhibit-trace): New var.
148 (trace-make-advice): Use it.
149
150 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
151
152 2005-02-26 Kim F. Storm <storm@cua.dk>
153
154 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
155 (mouse-on-link-p, mouse-drag-region-1): Use it.
156
157 2005-02-25 Lute Kamstra <lute@gnu.org>
158
159 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
160
161 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
162
163 * frame.el (blink-cursor-mode): Add :group keyword.
164
165 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
166
167 * calendar/icalendar.el (icalendar--decode-isodatetime):
168 New optional argument DAY-SHIFT.
169 (icalendar-export-region): Fix coding-system-for-write.
170 (icalendar--convert-ical-to-diary): Shift end-day of all-day
171 events by one.
172
173 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
174
175 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
176
177 2005-02-24 Kim F. Storm <storm@cua.dk>
178
179 * international/iso-acc.el (iso-accents-compose): Fix crash
180 during redisplay. Call force-window-update after read-event
181 and delete-region to signal that window is not accurate.
182
183 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
184
185 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
186 Remove unused and inexistent var `inhibit-trace'.
187 (debugger-mode): Use run-mode-hooks.
188 (debugger-list-functions): Add buttons; setup xref stack.
189
190 2005-02-23 Richard M. Stallman <rms@gnu.org>
191
192 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
193 appointment says it was explicitly made.
194 (appt-add): Set the 3rd element.
195 (appt-make-list): Preserve explicit appointments.
196
197 * subr.el (find-tag-default): Catch errors in forward-sexp.
198
199 2005-02-23 Juri Linkov <juri@jurta.org>
200
201 * info.el (Info-isearch-search): New defcustom.
202 (Info-isearch-search): Call the default isearch function
203 when Info-isearch-search is nil.
204 (Info-isearch-wrap): Use variable Info-isearch-search.
205
206 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
207
208 * cus-edit.el: Comment change.
209
210 2005-02-22 Kim F. Storm <storm@cua.dk>
211
212 * progmodes/hideif.el (hide-ifdef-use-define-alist):
213 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
214
215 2005-02-22 Simon Josefsson <jas@extundo.com>
216
217 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
218 New variable.
219 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
220 Oskarsson" <myrkraverk@users.sourceforget.net>.
221
222 2005-02-22 Kim F. Storm <storm@cua.dk>
223
224 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
225 check that window of that event is the selected window.
226 (mouse-drag-region-1): Compare mouse event window to selected
227 window before setting point.
228
229 * tooltip.el (tooltip-show-help-function): Pass event to
230 mouse-on-link-p so it can check selected window.
231
232 2005-02-22 Kenichi Handa <handa@m17n.org>
233
234 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
235 (ps-mule-show-warning): New function.
236 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
237 characters are found.
238
239 * ps-print.el (ps-header-footer-string): Return a list of header
240 and footer strings.
241
242 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
243
244 * pcvs.el (cvs-retrieve-revision): Fix thinko.
245
246 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
247
248 * frame.el (blink-cursor-mode): Use define-minor-mode.
249
250 * term/mac-win.el (function-key-map): Use char-names more consistently.
251 (file-name-coding-system): Only set it for MacOS-9. The other case is
252 already handled in mule-cmds.el (where it also works when mac-win.el
253 is not used).
254
255 2005-02-21 Kenichi Handa <handa@m17n.org>
256
257 * international/mule.el (ctext-pre-write-conversion): Always use
258 " *code-converting-work*" buffer for work.
259
260 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
261
262 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
263
264 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
265
266 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
267
268 * ses.el (undo-more): Restore defadvice, but only the part that
269 allows changes outside the restricted area of the buffer.
270
271 2005-02-20 Kim F. Storm <storm@cua.dk>
272
273 * simple.el (line-move): Add fourth optional arg try-vscroll which
274 must be set to perform auto-window-vscroll.
275 When moving backwards and doing auto-window-vscroll, automatically
276 vscroll to the last part of lines which are taller than the window.
277 (next-line, previous-line): Set try-vscroll arg on line-move.
278
279 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
280
281 * replace.el (query-replace, query-replace-regexp)
282 (replace-string, replace-regexp): When operating on region, make
283 the minibuffer prompt say so.
284
285 * isearch.el (isearch-forward): Document isearch-query-replace and
286 isearch-query-replace-regexp keybindings.
287
288 2005-02-19 Jay Belanger <belanger@truman.edu>
289
290 * calc/calc-aent.el (math-read-token): Add local variable.
291
292 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
293 (calc-edit-top): Move declaration to earlier in file.
294 (calc-edit-macro-repeats): Add local variables.
295
296 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
297 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
298 calcFunc-tanh.
299 Adjust integration rule for calcFunc-tan.
300
301 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
302
303 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
304 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
305 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
306 (viper-skip-separators): Bug fix.
307 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
308 particular major mode.
309 (viper-del-backward-char-in-replace): Don't put deleted char on the
310 kill ring.
311
312 * viper-ex.el (viper-color-display-p): New function.
313 (viper-has-face-support-p): Use viper-color-display-p.
314
315 * viper-keym.el (viper-gnus-modifier-map): New keymap.
316
317 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
318
319 * viper-util.el (viper-glob-unix-files): Fix shell status check.
320 (viper-file-remote-p): Make equivalent to file-remote-p.
321
322 * viper.el (viper-major-mode-modifier-list):
323 Use viper-gnus-modifier-map.
324
325 2005-02-19 David Kastrup <dak@gnu.org>
326
327 * subr.el (subregexp-context-p): Fix garbled doc string by adding
328 quoting.
329
330 2005-02-19 Jay Belanger <belanger@truman.edu>
331
332 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
333 Remove extra definitions.
334 (calc-coth): New function.
335 (calcFunc-cot): Fix `let'.
336
337 2005-02-19 Eli Zaretskii <eliz@gnu.org>
338
339 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
340 the reasons we use "type pc" in these faces.
341
342 * button.el (button): Ditto.
343
344 2005-02-19 Michael Mauger <mmaug@yahoo.com>
345
346 * replace.el (query-replace-read-from): Set the value of
347 query-replace-from-history-variable to handle the case of an empty
348 string entered to accept the suggested default.
349
350 * net/tramp.el (tramp-file-name-for-operation):
351 Use dired-call-process instead of dired-call-process-command.
352
353 2005-02-19 Jay Belanger <belanger@truman.edu>
354
355 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
356 (math-div-non-trig): New variables.
357 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
358 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
359 (math-combine-prod, math-div-symb-fancy): Add simplifications for
360 trig expressions.
361
362 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
363
364 * progmodes/gdb-ui.el (gdb-var-update-handler)
365 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
366 for watch expressions,
367 (gdb-var-create-handler): Don't set speedbar-update-flag.
368 (gdb-post-prompt): Simplify test for speedbar.
369
370 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
371
372 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
373 (ediff-set-fine-overlays-in-one-buffer,ediff-goto-word): Make sure
374 we use the syntax table of the correct buffer.
375 (ediff-same-file-contents,ediff-same-contents): Enhancements thanks to
376 Felix Gatzemeier.
377
378 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
379 (ediff-file-remote-p): Make synonymous with file-remote-p.
380 In all deffaces ediff-*-face-*, use min-colors.
381
382 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
383 ediff-recurse-to-subdirectories.
384 (ediff-mark-if-equal): Check that the arguments are strings, use
385 ediff-same-contents (after to Felix Gatzemeier).
386
387 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
388 nil.
389
390 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
391
392 * log-view.el (log-view-message-re): Fix up Subversion regexp.
393
394 2005-02-18 David Kastrup <dak@gnu.org>
395
396 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
397 use `mark-active' when defined.
398
399 2005-02-18 Kenichi Handa <handa@m17n.org>
400
401 * ps-print.el (ps-font-info-database): New entry
402 ZapfChancery-MediumItalic with correct font name. Fix font name
403 of the entry Zapf-Chancery-MediumItalic.
404
405 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
406
407 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
408
409 2005-02-16 Kim F. Storm <storm@cua.dk>
410
411 * ido.el (ido-fallback-command): Pass user input to fallback command.
412
413 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
414
415 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
416 (gdb-find-file-hook): Add server prefix.
417
418 2005-02-16 Richard M. Stallman <rms@gnu.org>
419
420 * replace.el (perform-replace): Pass new args to replace-highlight.
421 (replace-highlight): Take region args,
422 and pass them to isearch-lazy-highlight-new-loop.
423
424 * novice.el (disabled-command-hook): Autoload the defalias
425 and the make-obsolete-variable call.
426
427 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
428
429 * isearch.el (isearch-lazy-highlight-start-limit)
430 (isearch-lazy-highlight-end-limit): New variables limit
431 the region for highlighting.
432 (isearch-lazy-highlight-new-loop): New args BEG and END.
433 (isearch-lazy-highlight-search): Use the new vars.
434 (isearch-lazy-highlight-update): Likewise.
435
436 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
437
438 * cus-start.el (all): Use default-boundp.
439
440 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
441
442 * menu-bar.el (menu-bar-select-frame): Handle current frame.
443
444 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
445
446 * autorevert.el (auto-revert-stop-on-user-input)
447 (auto-revert-verbose): Doc fixes.
448
449 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
450
451 * international/mule-cmds.el (set-locale-environment): Remove call
452 to set-selection-coding-system on Windows.
453
454 2005-02-15 Jay Belanger <belanger@truman.edu>
455
456 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
457 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
458 calcFunc-coth.
459 (math-simplify-sqrt): Add simplifications.
460
461 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
462 to list.
463
464 * calc/calc-ext.el: Add functions to autoloads.
465
466 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
467 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
468 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
469 (math-csc-raw, math-cot-raw): New functions.
470
471 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
472
473 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
474 the variable name in a message.
475
476 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
477 calcFunc-csc, calcFunc-cot.
478
479 * calc/calcalg2.el: Add derivative and integration rules for
480 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
481 calcFunc-csch, calcFunc-coth.
482 (math-do-integral-methods): Add to checks for when to use
483 substitutions.
484
485 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
486
487 2005-02-15 Lute Kamstra <lute@gnu.org>
488
489 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
490 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
491 <monnier@iro.umontreal.ca>
492 (lisp-outline-level): Improve efficiency. Suggested by David
493 Kastrup <dak@gnu.org>.
494
495 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
496
497 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
498 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
499 (gdb-set-gud-minor-mode-existing-buffers): New functions.
500 (gdb-find-file-hook): New hook. Add it to find-file-hook.
501 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
502
503 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
504
505 * cus-start.el (all): Comment change.
506
507 2005-02-14 Lute Kamstra <lute@gnu.org>
508
509 * cus-start.el (all): Check if symbol is void.
510
511 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
512
513 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
514 optional argument to \cite.
515
516 2005-02-14 Richard M. Stallman <rms@gnu.org>
517
518 * cus-edit.el (custom-buffer-create-internal): Update help message.
519 (custom-magic-alist): Update help messages.
520
521 * cus-start.el (all): Allow a var to specify a standard value.
522
523 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
524
525 * custom.el (custom-theme-set-variables): Handle variable aliases.
526
527 * frame.el (blink-cursor-timer): Doc fix.
528 (blink-cursor): Make it an alias for `blink-cursor-mode' and
529 declare obsolete.
530 (blink-cursor-mode): Define with defcustom and use correct
531 standard expression in that defcustom.
532 * startup.el (command-line): Adapt to above changes in frame.el.
533
534 2005-02-11 Lute Kamstra <lute@gnu.org>
535
536 * apropos.el (apropos-score-doc): Prevent division by zero.
537
538 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
539
540 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
541 (icalendar--get-event-property-attributes)
542 (icalendar--get-event-properties)
543 (icalendar--datetime-to-diary-date): New functions.
544 (icalendar--split-value): Doc fix.
545 (icalendar--datetime-to-noneuropean-date)
546 (icalendar--datetime-to-european-date): New optional argument
547 SEPARATOR. Return result as a string instead of a list.
548 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
549 (icalendar--convert-string-for-export): Rename arg S to STRING.
550 (icalendar-export-region): Doc fix. Change name of error buffer.
551 Save output buffer.
552 (icalendar-import-file): Add blank at end of prompt.
553 (icalendar-import-buffer): Doc fix. Do not switch to error
554 buffer. Indicate status in return value.
555 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
556 buffer. Save output buffer. Handle exception from recurrence
557 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
558 events. Fix problems with weekly all-day events.
559
560 2005-02-10 Richard M. Stallman <rms@gnu.org>
561
562 * simple.el (eval-expression-print-format):
563 Avoid warning about edebug-active.
564
565 * help.el (help-for-help-internal): Rename from help-for-help.
566 (help-for-help): Define with defalias.
567
568 * font-core.el (font-lock-default-function): Use with-no-warnings.
569
570 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
571
572 * custom.el (defface): Doc fix.
573
574 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
575
576 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
577 width 0" to prevent word wrapping problems.
578
579 2005-02-09 Kim F. Storm <storm@cua.dk>
580
581 * ido.el (ido-file-extensions-order): New defcustom.
582 (ido-file-extension-lessp, ido-file-extension-aux)
583 (ido-file-extension-order): New advanced file ordering.
584 (ido-file-lessp): New simple file ordering.
585 (ido-sort-list): Remove.
586 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
587 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
588
589 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
590
591 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
592 that some versions of grep produce.
593 (grep-mode-font-lock-keywords): Likewise.
594
595 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
596
597 * progmodes/gdb-ui.el (gdb-location-list): New variable.
598 (gdb-cdir): Delete.
599 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
600 (gdb-source-info): Treat case when source file is in another
601 directory properly.
602 (gdb-get-location): New function.
603
604 2005-02-07 Jay Belanger <belanger@truman.edu>
605
606 * calc/calc-prog.el (calc-write-parse-table-part)
607 (calc-fix-token-name): Fix a check for language type.
608
609 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
610
611 2005-02-07 Andre Spiegel <spiegel@gnu.org>
612
613 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
614 as directory not writable.
615
616 2005-02-07 Kim F. Storm <storm@cua.dk>
617
618 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
619 (cua--standard-movement-commands): Remove list.
620 Instead, set CUA property value to move for movement commands.
621 (cua-movement-commands): Remove. Users must set CUA prop instead.
622 (cua--pre-command-handler): Check CUA property.
623 (cua--init-keymaps): Don't remap undo commands.
624 (cua-mode): Don't call cua--rectangle-on-off.
625
626 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
627 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
628 (cua--rect-undo-set-point): New var.
629 (cua--rectangle-undo-boundary): Setup undo apply entry.
630 (cua--rect-undo-handler): New function for rectangle undo.
631 (cua--rect-start-position, cua--rect-end-position): Add.
632 (cua--rectangle-post-command): Call cua--rectangle-set-corners
633 for restored rectangle. Set point if cua--rect-undo-set-point.
634
635 2005-02-06 Jay Belanger <belanger@truman.edu>
636
637 * calc/calc-lang.el (calc-tex-language): Display more information
638 in messages.
639
640 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
641 in TeX mode.
642
643 2005-02-06 Richard M. Stallman <rms@gnu.org>
644
645 * emacs-lisp/lisp.el (buffer-end): Doc fix.
646
647 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
648
649 * net/ldap.el (ldap-search-internal): Support attributes with
650 optional descriptions separated by a semi-colon, as in
651 "userCertificate;binary".
652
653 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
654
655 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
656 isn't a cons (i.e. the version is 0).
657
658 2005-02-05 Eli Zaretskii <eliz@gnu.org>
659
660 * help.el (help-for-help): Doc fix.
661
662 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
663
664 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
665 GDB-Windows on the menu-bar as this works better.
666
667 2005-02-04 Jay Belanger <belanger@truman.edu>
668
669 * calc/calc-embed.el (calc-embedded-update): Don't put in
670 unnecessary newlines. Adjust the end of formula marker.
671
672 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
673 (math-latex-parse-two-args): New function.
674
675 2005-02-03 Lute Kamstra <lute@gnu.org>
676
677 * help-fns.el (help-with-tutorial): Make sure that users cannot
678 remove the entire text of the tutorial by means of `undo'.
679
680 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
681
682 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
683 in recent changes, where the ispell process was repeatedly
684 killed & restarted.
685
686 * international/mule-cmds.el (set-locale-environment): Set file-name
687 coding system to utf-8 on Darwin systems.
688 (set-default-coding-systems): Don't set default-file-name-coding-system
689 on Darwin systems.
690
691 2005-02-03 Richard M. Stallman <rms@gnu.org>
692
693 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
694
695 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
696
697 * faces.el (list-faces-display): Add optional argument.
698
699 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
700
701 * font-core.el (font-lock-default-function): Handle the rare case where
702 only font-lock-keywords is set.
703
704 2005-02-02 Kenichi Handa <handa@m17n.org>
705
706 * international/characters.el: Cancel previous change for
707 I-WITH-DOT-ABOVE and DOTLESS-i.
708
709 * international/latin-5.el: Cancel previous change.
710
711 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
712
713 * progmodes/gud.el: Correction to syntax in gud-menu-map.
714
715 2005-02-02 Kenichi Handa <handa@m17n.org>
716
717 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
718 DOTLESS-i.
719
720 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
721 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
722
723 * case-table.el (get-upcase-table): New function.
724 (copy-case-table): Copy upcaes table too if non-nil.
725 (set-case-syntax-delims): Maintain upcase table too.
726 (set-case-syntax-pair): Likewise.
727 (set-upcase-syntax, set-downcase-syntax): New functions.
728 (set-case-syntax): Maintain upcase table too.
729
730 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
731
732 * progmodes/gdb-ui.el: (gdb-goto-info): Delete.
733
734 * progmodes/gud.el (gud-goto-info): New function.
735 (gud-tool-bar-map): Use correct icon.
736
737 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
738
739 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
740 When delegating, order args in the funcall correctly.
741
742 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
743
744 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
745
746 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
747
748 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
749 buffer not visiting a file.
750
751 2005-01-31 Jay Belanger <belanger@truman.edu>
752
753 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
754 bound on the line with the formula.
755
756 2005-01-31 Kim F. Storm <storm@cua.dk>
757
758 * ses.el (ses-create-cell-variable-range)
759 (ses-destroy-cell-variable-range, ses-reset-header-string)
760 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
761 (ses-insert-row): Fix format of apply undo entries.
762
763 2005-01-31 Jay Belanger <belanger@truman.edu>
764
765 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
766 parts.
767
768 * calc/calc-embed.el (calc-embedded-open-formula)
769 (calc-embedded-close-formula): Ignore matrix environments.
770
771 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
772 TeX mode.
773
774 * calc/calc-lang.el (math-function-table, math-oper-table)
775 (math-variable-table): Adjust the LaTeX portions.
776
777 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
778 (math-latex-ignore-words): New constant.
779
780 2005-01-31 Richard M. Stallman <rms@gnu.org>
781
782 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
783 (ispell-local-dictionary): Doc fix.
784 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
785 Don't reinitialize at run time. Don't defcustom.
786 All uses changed to append ispell-local-dictionary-alist,
787 or check it first.
788 (ispell-current-dictionary): New variable for dictionary in use.
789 (ispell-dictionary): Now used only for global default.
790 (ispell-start-process): Set ispell-current-dictionary,
791 not ispell-dictionary.
792 (ispell-change-dictionary): Use this only for setting
793 user preferences.
794 (ispell-internal-change-dictionary): New function
795 to change the current dictionary in use.
796 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
797 Use ispell-current-dictionary.
798 Handle ispell-local-dictionary-overridden.
799 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
800
801 2005-01-31 Jay Belanger <belanger@truman.edu>
802
803 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
804
805 * calc/calc-ext.el: Add calc-latex-language to autoloads.
806 (calc-mode-map): Add calc-latex-language.
807
808 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
809 (math-latex-print-frac): New functions.
810 (math-oper-table, math-function-table, math-variable-table)
811 (math-complex-format, math-input-filter): Add latex properties.
812 (calc-set-language): Set math-expr-special-function-mapping.
813
814 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
815 (calc-write-parse-table-part): Add LaTeX support.
816
817 * calc/calc.el (calc-language): Adjust docstring.
818 (calc-set-mode-line): Add LaTeX support.
819 (math-expr-special-function-mapping): New variable.
820 (math-tex-ignore-words): Add to list.
821
822 * calc/calccomp.el (math-compose-expr, math-compose-rows):
823 Add LaTeX support.
824 (math-compose-expr): Add support for special functions.
825
826 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
827
828 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
829
830 * progmodes/gdb-ui.el (gdb-memory-address)
831 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
832 (gdb-memory-mode-map, gdb-memory-format-keymap)
833 (gdb-memory-format-menu, gdb-memory-unit-keymap)
834 (gdb-memory-unit-menu): New variables for a buffer
835 that lets the user examine program memory.
836 (gdb-memory-set-address, gdb-memory-set-repeat-count)
837 (gdb-memory-format-binary, gdb-memory-format-octal)
838 (gdb-memory-format-unsigned, gdb-memory-format-signed)
839 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
840 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
841 (gdb-memory-unit-word, gdb-memory-unit-halfword)
842 (gdb-memory-unit-byte, gdb-memory-unit-menu)
843 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
844 (gdb-memory-mode, gdb-memory-buffer-name)
845 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
846 New functions for above buffer.
847
848 2005-01-30 Richard M. Stallman <rms@gnu.org>
849
850 * cus-edit.el (custom-bury-buffer): Function deleted.
851 (custom-buffer-done-function): Option deleted.
852 (custom-buffer-done-kill): New (replacement option.
853 (Custom-buffer-done): Call quit-window.
854 (custom-buffer-create-internal): Update for above changes.
855
856 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
857
858 * simple.el (undo-ask-before-discard): New var.
859 (undo-outer-limit-truncate): Implement it.
860 (undo-extra-outer-limit): Doc update.
861
862 2005-01-29 Richard M. Stallman <rms@gnu.org>
863
864 * ses.el (undo-more): Delete defadvice.
865 (ses-begin-change): Doc fix.
866
867 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
868 instead of rebinding C-x u and C-_.
869
870 * files.el (normal-backup-enable-predicate): Return nil for files
871 in /tmp, regardless of temporary-file-directory.
872
873 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
874
875 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
876 (open-rectangle, delete-whitespace-rectangle-line)
877 (clear-rectangle-line): If FILL, pass t instead of FILL
878 for move-to-column's 2nd arg.
879
880 * simple.el (undo): Fix the test for continuing a series of undos.
881 (undo-more): Set pending-undo-list to t when we reach end.
882 (pending-undo-list): Move up defvar.
883
884 * wid-edit.el (widget-button-click):
885 Shorten the range of the track-mouse binding.
886
887 * comint.el (comint-insert-input): Undo previous changes;
888 use last-input-event in interactive spec.
889
890 2005-01-29 Eli Zaretskii <eliz@gnu.org>
891
892 * progmodes/compile.el (compilation-start): Bind buffer-read-only
893 to nil before invoking call-process. Reset buffer's modified flag
894 after fontifying it in the no-async branch.
895
896 * wid-edit.el (widget-specify-button): If mouse pointer shape
897 cannot be changed, use mouse face instead.
898
899 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
900
901 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
902 (gdb-goto-breakpoint): Make breakpoint handling work on template
903 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
904 (gdb-assembler-custom): Update to recognise breakpoint information
905 added on 2005-01-19.
906
907 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
908
909 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
910 (dsssl-mode): Use define-derived-mode.
911 (scheme-mode-initialize): Remove.
912 (scheme-mode): Use run-mode-hooks.
913
914 * cus-edit.el (customize-group-other-window)
915 (custom-buffer-create-other-window): Don't override special-display-*.
916 (custom-mode-map): Make it dense.
917
918 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
919 sets the default value.
920
921 2005-01-28 Eli Zaretskii <eliz@gnu.org>
922
923 * descr-text.el: Add more keywords.
924
925 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
926
927 * speedbar.el: Avoid unnecessary use of locate-library.
928
929 * international/mule-cmds.el (standard-display-european-internal):
930 Don't fiddle with latin-1 non-break space any more since it's now
931 special cased in the C code.
932 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
933
934 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
935
936 * cus-start.el (all): Add `undo-outer-limit'.
937
938 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
939
940 * textmodes/bibtex.el (bibtex-format-entry):
941 Use `bibtex-empty-field-re' only on the text of fields, not on entire
942 field lines.
943 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
944 not on part of a buffer.
945
946 2005-01-25 Lute Kamstra <lute@gnu.org>
947
948 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
949 nonempty field text strings like "{letters\\macro{}more letters}".
950 Clarify docstring.
951 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
952 (bibtex-entry-offset, bibtex-parse-association)
953 (bibtex-parse-field-name): Fix typos in docstrings.
954 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
955
956 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
957
958 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
959 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
960 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
961 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
962
963 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
964 isearch minor mode.
965
966 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
967
968 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
969
970 2005-01-24 Lute Kamstra <lute@gnu.org>
971
972 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
973 CASECHARS and NOT-CASECHARS regular expressions of the
974 "nederlands" and "nederlands8" dictionaries to prevent a "Range
975 striding over charsets" error.
976
977 2005-01-24 Jay Belanger <belanger@truman.edu>
978
979 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
980 display variable name.
981
982 2005-01-24 Kenichi Handa <handa@m17n.org>
983
984 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
985 Fix setting of the element of encoded-kbd-iso2022-invocations.
986
987 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
988
989 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
990 (gdb-threads-select): Change to also accept mouse events.
991 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
992 (gdb-threads-mouse-select): Delete.
993
994 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
995
996 * files.el (insert-directory): Take care of empty directory,
997 listed without -a switch.
998
999 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
1000
1001 * textmodes/refill.el (refill-post-command-function):
1002 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
1003 to the list of functions that we should be careful not to undo.
1004 (refill-late-fill-paragraph-function): Remove.
1005 (refill-saved-state): New var.
1006 (refill-mode): Use it to save fill-paragraph-function.
1007 Save also the value of auto-fill-function.
1008
1009 * term/w32-win.el: Simplify code.
1010
1011 2005-01-23 Kim F. Storm <storm@cua.dk>
1012
1013 * simple.el (line-move): Adapt to new return value from
1014 pos-visible-in-window-p.
1015
1016 * simple.el (line-move): Fix last change. Check partial
1017 visibility at point rather than at window-start.
1018
1019 2005-01-22 Jason Rumney <jasonr@gnu.org>
1020
1021 * term/w32-win.el (xw-defined-colors): Remove debug-message.
1022
1023 2005-01-22 David Kastrup <dak@gnu.org>
1024
1025 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
1026
1027 2005-01-22 Eli Zaretskii <eliz@gnu.org>
1028
1029 * type-break.el (type-break-mode): Add a test for
1030 type-break-file-name being non-nil.
1031
1032 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
1033
1034 * net/eudc.el (top level): Call (message "") via progn, so that
1035 eudc-options-file is loaded.
1036
1037 2005-01-22 Kim F. Storm <storm@cua.dk>
1038
1039 * simple.el (line-move-1): Rename from line-move.
1040 (line-move): New function that adjusts vscroll for partially
1041 visible rows, and calls line-move-1 otherwise.
1042
1043 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
1044
1045 * pcomplete.el: define pcomplete-read-event instead of read-event,
1046 since it's not a complete read-event implementation
1047
1048 2005-01-20 Jay Belanger <belanger@truman.edu>
1049
1050 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
1051 for called function.
1052
1053 2005-01-20 Steven Tamm <steventamm@mac.com>
1054
1055 * term/mac-win.el (process-connection-type): Remove.
1056 Controlled now by s/darwin.h:PTY_ITERATION.
1057
1058 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
1059
1060 * window.el (handle-select-window): Don't switch window when we're
1061 in the minibuffer.
1062
1063 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
1064
1065 * subr.el (dotimes-with-progress-reporter): New macro.
1066
1067 * ses.el (ses-dotimes-msg): Remove macro.
1068 Use `dotimes-with-progress-reporter' instead.
1069
1070 2005-01-19 Steven Tamm <steventamm@mac.com>
1071
1072 * term/mac-win.el (process-connection-type): Use new
1073 operating-system-release variable to use ptys on Darwin 7 (OSX
1074 10.3) when using carbon build.
1075
1076 2005-01-19 Jay Belanger <belanger@truman.edu>
1077
1078 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
1079 flags if the last command was a tab or M-tab.
1080
1081 * calc/calc-prog.el (calc-user-define-edit): Put original formula
1082 in formula editing buffer.
1083
1084 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
1085
1086 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
1087 breakpoint image symbol in margin.
1088
1089 2005-01-19 Jay Belanger <belanger@truman.edu>
1090
1091 * calc/calc-prog.el (calc-execute-kbd-macro):
1092 Ignore calc-keep-arg-flag.
1093
1094 2005-01-19 Kenichi Handa <handa@m17n.org>
1095
1096 * textmodes/ispell.el (ispell-looking-at): New function.
1097 (ispell-process-line): Use ispell-looking-at to compare the ispell
1098 output and the buffer contents.
1099
1100 2005-01-18 Jay Belanger <belanger@truman.edu>
1101
1102 * calc/calc.el (calc-display-raw): Fix docstring.
1103
1104 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
1105
1106 * simple.el (blink-matching-open): Strip extra info from syntax.
1107
1108 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
1109 funny chars in the end-of-here-doc marker.
1110
1111 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
1112
1113 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
1114 that enable/disabled state of breakpoints is shown correctly in
1115 fringe and on ttys.
1116 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
1117 Add breakpoint information as text properties.
1118 (gdb-mouse-toggle-breakpoint):
1119 Rename to gdb-mouse-set-clear-breakpoint.
1120 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
1121 breakpoints in the margin.
1122 (gdb-remove-strings): Simplify.
1123
1124 2005-01-17 Jay Belanger <belanger@truman.edu>
1125
1126 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
1127 erasing buffer.
1128
1129 2005-01-17 Richard M. Stallman <rms@gnu.org>
1130
1131 * progmodes/grep.el (grep-find): Copy from `grep' the condition
1132 for calling grep-compute-defaults.
1133
1134 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
1135 if buffer is empty.
1136
1137 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
1138
1139 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
1140
1141 * hilit-chg.el (highlight-changes-mode): Don't autoload.
1142
1143 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
1144 non-preloaded variables.
1145
1146 2005-01-17 Steven Tamm <steventamm@mac.com>
1147
1148 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
1149 tex-shell cause to force interactivity when using pipes.
1150
1151 2005-01-17 Kim F. Storm <storm@cua.dk>
1152
1153 * simple.el (just-one-space): Make arg optional.
1154
1155 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
1156
1157 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
1158 posn-at-x-y to t to access left-margin.
1159
1160 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
1161
1162 Sync with Tramp 2.0.47.
1163
1164 * tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
1165 catching keep-date problems in cp/scp operations.
1166 (tramp-handle-copy-file): Don't call `set-file-modes'
1167 unconditionally. Specialized functions should know better what is
1168 necessary. This improves performance a little bit, and the
1169 functions could catch errors with `cp -p' and `scp -p'.
1170 (tramp-do-copy-or-rename-file-via-buffer)
1171 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
1172 when appropriate.
1173 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
1174 Call `set-file-modes' when appropriate.
1175 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
1176 Johnsson <isak@hypergene.com>
1177 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
1178 of both Tramp buffer and debug buffer. Reported by Joakim Verona
1179 <joakim@verona.se>
1180 (tramp-file-name-for-operation): Mark `shell-command' as magic for
1181 Emacs only.
1182
1183 * tramp-util.el (tramp-minor-mode): New minor mode. Add it to
1184 `find-file-hooks' and `dired-mode-hook'.
1185 (tramp-minor-mode-map): Respective map. Add remapping for
1186 `compile' and `recompile'.
1187 (tramp-remap-command, tramp-recompile): New defuns.
1188 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
1189 in buffer "*Compilation*". Call the commands asynchronously.
1190
1191 * tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
1192 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
1193 `shell-command', because it isn't magic in XEmacs. Reported by
1194 Adrian Aichner <adrian@xemacs.org>.
1195
1196 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
1197 `substitute-in-file-name.
1198 (tramp-smb-handle-substitute-in-file-name): New defun.
1199 (tramp-smb-advice-PC-do-completion): Delete advice.
1200
1201 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
1202
1203 * tramp.el (tramp-wait-for-output): Fix typo in echo processing.
1204 Fix error in deleting region.
1205
1206 2005-01-15 Richard M. Stallman <rms@gnu.org>
1207
1208 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
1209 In non-temp buffer, switch syntax table temporarily.
1210
1211 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
1212
1213 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
1214
1215 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
1216
1217 * imenu.el (imenu--split-menu): Copy menulist before sorting.
1218 (imenu--generic-function): Use START, not BEG, as pos of definition.
1219
1220 * simple.el (just-one-space): Argument specifies number of spaces.
1221
1222 * simple.el (eval-expression-print-format): Avoid warning
1223 about edebug-active.
1224
1225 2005-01-15 "James R. Van Zandt" <jrvz@comcast.net> (Tiny change)
1226
1227 * progmodes/sh-script.el: Code copied from make-mode.el
1228 with small changes,
1229 (sh-mode-map): Bind C-c C-\.
1230 (sh-backslash-column, sh-backslash-align): New variables.
1231 (sh-backslash-region, sh-append-backslash): New functions.
1232
1233 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1234
1235 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
1236 (rmail-pop-password, rmail-pop-password-required): Move to
1237 rmail-obsolete group.
1238 (rmail-set-pop-password): Rename to rmail-set-remote-password.
1239 All callers updated.
1240 (rmail-get-pop-password): Rename to rmail-get-remote-password.
1241 Take an argument specifying whether it is POP or IMAP mailbox we
1242 are using. All callers updated.
1243 (rmail-pop-password-error): Rename to
1244 rmail-remote-password-error. Added mailutils-specific error message.
1245 (rmail-movemail-search-path)
1246 (rmail-movemail-variant-in-use): New variables.
1247 (rmail-remote-password, rmail-remote-password-required):
1248 New customization variables.
1249 (rmail-probe,rmail-autodetect, rmail-movemail-variant-p): New funs.
1250 (rmail-parse-url): New function.
1251 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
1252 with GNU mailutils movemail.
1253
1254 2005-01-15 Kevin Ryde <user42@zip.com.au>
1255
1256 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
1257 suffix to space, $ or '$, to correctly position point when going
1258 to @table style constants like DBL_MAX.
1259
1260 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
1261
1262 * type-break.el (type-break-mode, type-break-file-time)
1263 (type-break-file-keystroke-count, type-break-choose-file):
1264 Don't store data in or load data from the file if type-break-file-name
1265 is nil.
1266 (type-break-file-name): Doc update as per the above.
1267
1268 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
1269
1270 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
1271 lookup-key might return nil; handle that.
1272
1273 2005-01-15 Alan Mackenzie <acm@muc.de>
1274
1275 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
1276 rather than the element found, thus enabling the tree to be setcar'd.
1277
1278 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
1279
1280 * textmodes/org.el (org-show-following-heading): New option.
1281 (org-show-hierarchy-above): Use `org-show-following-heading'.
1282 (org-cycle): Documentation fix.
1283
1284 * textmodes/org.el (orgtbl-optimized): New option
1285 (orgtbl-mode): New command, a minor mode.
1286 (orgtbl-mode-map): New variable.
1287 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
1288 (orgtbl-error, orgtbl-self-insert-command)
1289 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
1290
1291 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
1292 a local variable in each org-mode buffer.
1293
1294 * textmodes/org.el (org-set-regexps-and-options): Rename from
1295 `org-set-regexps'. Added checking for STARTUP keyword.
1296 (org-get-current-options): Add STARTUP options.
1297 (org-table-insert-row): Mode mode intelligent about when
1298 realignment is needed.
1299 (org-self-insert-command, org-delete-backward-char, org-delete-char):
1300 New commands.
1301 (org-enable-table-editor): New default value `optimized'.
1302 (org-table-blank-field): Support blanking regions if active.
1303
1304 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
1305
1306 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
1307 if the year is not given.
1308
1309 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
1310 Add new escapes %m and %M, fixed bug with %F by adding
1311 save-match-data.
1312 (reftex-reference): Remove ?. from list of spaces.
1313 (reftex-label-info): Add automatic label prefix recognition.
1314
1315 * textmodes/reftex-index.el (reftex-index-next-phrase):
1316 Add slave parameter to call of `reftex-index-this-phrase'.
1317 (reftex-index-this-phrase): New optional argument.
1318 (reftex-index-region-phrases): Add slave parameter to call of
1319 `reftex-index-this-phrase'.
1320 (reftex-display-index): New argument redo.
1321 (reftex-index-rescan): Add 'redo to arguments of
1322 `reftex-display-index'.
1323 (reftex-index-Rescan, reftex-index-revert)
1324 (reftex-index-switch-index-tag): Add 'redo to arguments of
1325 `reftex-display-index'.
1326 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
1327 indexing. Fix bug with matching is there is a quote before or
1328 after the word.
1329
1330 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
1331 Fix bug when collecting citation keys in lines with comments.
1332 (reftex-citation): Prefix argument no longer rescans the document,
1333 but forces prompting for optional arguments of cite macros.
1334 (reftex-do-citation): Prompting for optional arguments implemented.
1335
1336 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
1337 Add optional arguments to most cite commands.
1338 (reftex-cite-cleanup-optional-args): New option
1339 (reftex-cite-prompt-optional-args): New option.
1340 (reftex-trust-label-prefix): New option.
1341
1342 * textmodes/reftex-toc.el (reftex-toc-find-section):
1343 Add push-mark before changing the position in the buffer.
1344
1345 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
1346 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
1347
1348 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
1349
1350 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
1351 more carefully.
1352
1353 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1354
1355 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
1356 (sgml-mode): Use it.
1357 (sgml-get-context): Better keep track of implicitly closed tags.
1358
1359 2005-01-13 Kenichi Handa <handa@m17n.org>
1360
1361 * textmodes/ispell.el: These changes are to fix misalignment error
1362 caused by equivalent characters of different Emacs charsets.
1363 (ispell-unified-chars-table): New variable.
1364 (ispell-get-decoded-string): New function.
1365 (ispell-get-casechars, ispell-get-not-casechars)
1366 (ispell-get-otherchars): Call ispell-get-decoded-string.
1367
1368 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
1369
1370 * custom.el (custom-declare-variable): Just put symbol instead
1371 of (defvar . symbol) in `current-load-list'.
1372
1373 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
1374
1375 * emacs-lisp/elint.el: Fixed typo in Commentary section.
1376
1377 2005-01-12 Jay Belanger <belanger@truman.edu>
1378
1379 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
1380 to create a Calc summary.
1381
1382 2005-01-12 Kim F. Storm <storm@cua.dk>
1383
1384 * mouse.el (mouse-on-link-p): Change functionality and doc
1385 string to comply with latest description in lisp ref.
1386
1387 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
1388
1389 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
1390 Enable mouse clicks on mode-line, header-line and margin.
1391 (event-type): Give mouse event symbols an 'event-kind property
1392 with value 'mouse-click.
1393
1394 2005-01-12 Juri Linkov <juri@jurta.org>
1395
1396 * facemenu.el (list-colors-display): Add new arg buffer-name.
1397 Use it. Fix docstring. Replace code for identifying duplicate
1398 colors by the name with call to `list-colors-duplicates' which
1399 identifies duplicate colors by the value unless the color
1400 is one of special Windows colors. Set truncate-lines to t.
1401 Print sorted duplicate color names on each line. Indent to 22
1402 \(the longest color name in rgb.txt) instead of 20. Optimize.
1403 (list-colors-duplicates): New function.
1404 (facemenu-color-name-equal): Delete function.
1405
1406 * facemenu.el (list-colors-print): New function created from code
1407 in list-colors-display. Print #RRGGBB at the window right edge.
1408 (list-colors-display): When temp-buffer-show-function is not
1409 defined, call list-colors-print from temp-buffer-show-hook
1410 to get the right value of window-width in list-colors-print
1411 after the buffer is displayed.
1412
1413 * simple.el (pop-mark): Move deactivate-mark out of conditional
1414 part to deactivate the active mark regardless of the state of the
1415 mark ring.
1416
1417 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
1418 variables line in desktop files.
1419
1420 2005-01-12 Juri Linkov <juri@jurta.org>
1421
1422 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
1423 Bring together isearch highlight related options.
1424 (lazy-highlight): Replace group `replace' by `matching'.
1425 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
1426 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
1427 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
1428 and declare them obsolete.
1429 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
1430 (isearch-faces): Remove defgroup.
1431 (isearch-overlay, isearch-highlight, isearch-dehighlight):
1432 Move isearch highlighting code closer to lazy highlighting code.
1433
1434 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
1435 (query-replace-highlight, query-replace-lazy-highlight)
1436 (query-replace): Move definitions to the beginning of the file.
1437
1438 2005-01-11 Juri Linkov <juri@jurta.org>
1439
1440 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm,
1441 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm,
1442 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
1443
1444 * info.el (Info-history-forward): New variable.
1445 (Info-select-node): Reset Info-history-forward to nil.
1446 (Info-last): Turn into defalias.
1447 (Info-history-back): Rename from Info-last.
1448 Add current node to Info-history-forward.
1449 (Info-history-forward): New fun.
1450 (Info-mode-map): Replace Info-last by Info-history-back.
1451 Bind Info-history-forward to "r".
1452 (Info-mode-menu): Replace Info-last by Info-history-back.
1453 Fix menu item text. Add menu item for Info-history-forward.
1454 (info-tool-bar-map): Replace Info-last by Info-history-back.
1455 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
1456 for Info-history-forward.
1457 (Info-mode): Replace Info-last by Info-history-back in docstring.
1458 Add local variable Info-history-forward.
1459 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
1460
1461 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
1462
1463 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
1464 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
1465 Ignore select-window events rather than fiddle with
1466 mouse-autoselect-window.
1467
1468 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
1469
1470 * type-break.el (type-break-mode): Fix previous change.
1471
1472 2005-01-10 Jay Belanger <belanger@truman.edu>
1473
1474 * calc/calc-ext.el (calc-reset): Reset when inside embedded
1475 calculator; only reset when point is inside a calculator.
1476 Don't adjust the window height if the window takes up the whole height
1477 of the frame.
1478
1479 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
1480
1481 * ebuff-menu.el (Electric-buffer-menu-mode):
1482 Preserve value of buffer-local var header-line-format.
1483
1484 2005-01-09 Jay Belanger <belanger@truman.edu>
1485
1486 * calc/calc.el (calc-mode-var-list-restore-saved-values):
1487 Make sure settings file exists before accessing it.
1488
1489 * calc/calc-embed.el (calc-embedded-subst):
1490 Replace math-multi-subst-rec, which is only supposed to be called
1491 by math-multi-subst, by math-multi-subst.
1492
1493 2005-01-09 Andre Spiegel <spiegel@gnu.org>
1494
1495 * vc.el (vc-allow-async-revert): New user option.
1496 (vc-disable-async-diff): New internal variable.
1497 (vc-revert-buffer): Use them to disable asynchronous diff.
1498
1499 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
1500 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
1501 asynchronously if vc-disable-async-diff is t.
1502
1503 2005-01-09 Jay Belanger <belanger@truman.edu>
1504
1505 * calc/calc.el (defcalcmodevar): New macro.
1506 (calc-mode-var-list-restore-default-values)
1507 (calc-mode-var-list-restore-saved-values): New functions.
1508 (calc-mode-var-list): Use defcalcmodevar to define it.
1509 (calc-always-load-extensions, calc-line-numbering)
1510 (calc-line-breaking, calc-display-just, calc-display-origin)
1511 (calc-number-radix, calc-leading-zeros, calc-group-digits)
1512 (calc-group-char, calc-point-char, calc-frac-format)
1513 (calc-prefer-frac, calc-hms-format, calc-date-format)
1514 (calc-float-format, calc-full-float-format, calc-complex-format)
1515 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
1516 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
1517 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
1518 (calc-matrix-brackets, calc-language, calc-language-option)
1519 (calc-left-label, calc-right-label, calc-word-size)
1520 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
1521 (calc-display-raw, calc-internal-prec, calc-angle-mode)
1522 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
1523 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
1524 (calc-window-height, calc-display-trail, calc-show-selections)
1525 (calc-use-selections, calc-assoc-selections)
1526 (calc-display-working-message, calc-auto-why, calc-timing)
1527 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
1528 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
1529 (calc-gnuplot-default-device, calc-gnuplot-default-output)
1530 (calc-gnuplot-print-device, calc-gnuplot-print-output)
1531 (calc-gnuplot-geometry, calc-graph-default-resolution)
1532 (calc-graph-default-resolution-3d, calc-invocation-macro)
1533 (calc-show-banner): Use defcalcmodevar to declare them and set
1534 their default values.
1535
1536 * calc/calc-ext.el (calc-reset): Restore saved values of variables
1537 instead of default values (but restore default values if there is
1538 an argument of 0).
1539
1540 2005-01-09 David Kastrup <dak@gnu.org>
1541
1542 * desktop.el (desktop-restore-eager): Fix typo in type.
1543
1544 2005-01-08 Richard M. Stallman <rms@gnu.org>
1545
1546 * cus-edit.el (customize): Delete :link.
1547
1548 2005-01-08 Jay Belanger <belanger@truman.edu>
1549
1550 * calc/calc.el (calc-mode): Remove the extension from the
1551 `calc-settings-file' file name when loading it.
1552
1553 2005-01-08 Kim F. Storm <storm@cua.dk>
1554
1555 * info.el (Info-mode-map, Info-next-link-keymap)
1556 (Info-prev-link-keymap, Info-up-link-keymap):
1557 Map follow-link to mouse-face.
1558 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
1559
1560 2005-01-08 Jay Belanger <belanger@truman.edu>
1561
1562 * calc/calc.el (calc-settings-file): Change default value.
1563 Suggested by cgw in a comment in calc-mode.el.
1564
1565 * calc/calc-mode.el (calc-settings-file-name):
1566 Compare calc-settings-file to user-init-file instead of ~/.emacs.
1567 Replace ~/.emacs in a prompt by calc-settings-file.
1568
1569 2005-01-07 Lars Hansen <larsh@math.ku.dk>
1570
1571 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
1572 (desktop-lazy-idle-delay): New customizable variables.
1573 (desktop-buffer-args-list): New variable.
1574 (desktop-append-buffer-args): New function.
1575 (desktop-save): Call desktop-append-buffer-args for some buffers.
1576 (desktop-lazy-create-buffer): New function.
1577 (desktop-idle-create-buffers): New function.
1578 (desktop-read): Add message about buffers to restore lazily.
1579 (desktop-lazy-abort): New command.
1580 (desktop-clear): Call desktop-lazy-abort.
1581 (desktop-lazy-complete): New command.
1582
1583 2005-01-06 Richard M. Stallman <rms@gnu.org>
1584
1585 * emacs-lisp/find-func.el (find-face-definition):
1586 Rename from find-face.
1587
1588 2005-01-06 Kim F. Storm <storm@cua.dk>
1589
1590 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
1591
1592 * man.el (Man-xref-man-page, Man-xref-header-file)
1593 (Man-xref-normal-file): Add follow-link property.
1594
1595 2005-01-06 Jay Belanger <belanger@truman.edu>
1596
1597 * calc/calc-units.el: Make sure the proper macro definitions are
1598 available when compiling.
1599
1600 2005-01-06 Juri Linkov <juri@jurta.org>
1601
1602 * isearch.el (isearch-lazy-highlight-update):
1603 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
1604
1605 2005-01-06 Miles Bader <miles@gnu.org>
1606
1607 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
1608 (isearch-lazy-highlight-face): Use new name.
1609
1610 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
1611
1612 * uniquify.el (uniquify-rationalize-file-buffer-names):
1613 Re-add an interactive spec.
1614 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
1615 to the same name.
1616
1617 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
1618 (isearch-update, isearch-done): Adjust calls accordingly.
1619
1620 2005-01-05 Richard M. Stallman <rms@gnu.org>
1621
1622 * custom.el (custom-set-variables, custom-theme-set-variables):
1623 Clarify documentation.
1624
1625 * emacs-lisp/find-func.el (find-variable)
1626 (find-variable-other-window, find-variable-other-frame):
1627 Fix the TYPE args to find-function-read and find-function-do-it.
1628 (find-function): Doc fix.
1629 (find-function-at-point): Replace function-at-point alias.
1630
1631 2005-01-04 Richard M. Stallman <rms@gnu.org>
1632
1633 * cus-face.el (custom-declare-face):
1634 Record defface in current-load-list.
1635
1636 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
1637
1638 * emacs-lisp/find-func.el: Doc fixes.
1639 (find-face-regexp): New variable.
1640 (find-function-regexp-alist): New variable.
1641 (find-function-C-source): Third arg is now TYPE.
1642 (find-function-search-for-symbol): Handle general TYPE.
1643 (find-function-read, find-function-do-it): Handle general TYPE.
1644 (find-definition-noselect, find-face): New functions.
1645 (function-at-point): Alias deleted.
1646
1647 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1648
1649 * battery.el (display-battery-mode): Rename from display-battery.
1650 Handle the case where it gets turned off.
1651
1652 2005-01-04 Richard M. Stallman <rms@gnu.org>
1653
1654 * cus-edit.el (customize): Make :link point to user doc.
1655
1656 * man.el (Man-fontify-manpage): Turn off undo generation.
1657
1658 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
1659
1660 2005-01-04 Andreas Schwab <schwab@suse.de>
1661
1662 * files.el (insert-directory): Only look for error lines in
1663 inserted text. Don't move too far after processing --dired markers.
1664
1665 2005-01-04 Richard M. Stallman <rms@gnu.org>
1666
1667 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
1668 Don't expand if the character is @, period, dash, etc.
1669 (define-mail-abbrev): Quote names that contain problem characters.
1670
1671 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
1672
1673 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
1674
1675 2005-01-03 Richard M. Stallman <rms@gnu.org>
1676
1677 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
1678 (query-replace-highlight, query-replace-lazy-highlight)
1679 (query-replace): Definitions moved up. Doc fix.
1680
1681 2005-01-03 Richard M. Stallman <rms@gnu.org>
1682
1683 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
1684 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
1685 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
1686 (lazy-highlight-face): Rename from isearch-lazy-...
1687 Change all references to them.
1688
1689 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
1690
1691 * cus-edit.el (custom-file): Doc fix for defcustom.
1692 (custom-file): The function no longer sets the variable
1693 `custom-file' to its return value.
1694
1695 * startup.el (command-line): No longer load `custom-file'.
1696
1697 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
1698
1699 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
1700
1701 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
1702 Don't confuse module-prefixed identifiers for labels.
1703 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
1704
1705 2005-01-02 Richard M. Stallman <rms@gnu.org>
1706
1707 * files.el (basic-save-buffer-1): Fix previous change.
1708
1709 * loadhist.el (file-loadhist-lookup): New function.
1710 (file-provides, file-requires): Use it.
1711
1712 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
1713 instead of calculating the right size.
1714
1715 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
1716
1717 * vc-svn.el (vc-svn-diff): Stay local if possible.
1718
1719 2005-01-02 Stefan <monnier@iro.umontreal.ca>
1720
1721 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
1722
1723 * files.el (hack-local-variables): Fix last change.
1724
1725 2005-01-02 Jay Belanger <belanger@truman.edu>
1726
1727 * calc/calc-yank.el (calc-edit-top): New variable.
1728 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
1729 object. Change header properties.
1730 (calc-edit-finish, calc-edit-finish-stack-object)
1731 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
1732 edited object.
1733 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
1734 for the beginning of the edited object.
1735 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
1736 for the beginning of the edited object.
1737 * calc/calc-prog.el (calc-edit-macro-finish-edit)
1738 (calc-finish-formula-edit, calc-macro-repeats)
1739 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
1740 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
1741 beginning of the edited object.
1742 (calc-user-define-edit): Change the header for editing macros.
1743 Remove unnecessary variable.
1744
1745 2005-01-01 Jay Belanger <belanger@truman.edu>
1746
1747 * calc/calc-yank.el (calc-edit-mode): Change default header.
1748 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
1749 * calc/calc-store.el (calc-edit-variable): Change title to match new
1750 header.
1751 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
1752 mode to match new header.
1753 (calc-user-define-edit): Change titles to include names of commands.
1754 (calc-finish-formula-edit): Adjust to handle new header.
1755 (calc-finish-macro-edit): Remove.
1756 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
1757 (calc-edit-macro-command, calc-edit-macro-command-type)
1758 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
1759 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
1760 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
1761 (calc-edit-macro-finish-edit): New functions.
1762 (calc-user-define-edit): Use new functions to edit named calc macros.
1763
1764 2005-01-01 Stefan <monnier@iro.umontreal.ca>
1765
1766 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
1767
1768 * ses.el (copy-region-as-kill): Deactivate mark.
1769
1770 2005-01-01 Richard M. Stallman <rms@gnu.org>
1771
1772 * replace.el (occur-1): If the output buffer is also an input,
1773 don't kill it, rename it.
1774
1775 * faces.el (set-face-background, set-face-foreground): Doc fix.
1776
1777 * cus-face.el (custom-face-attributes): Fix :help-echo strings
1778 for :foreground and :background.
1779
1780 * dired.el (dired-view-command-alist): Variable deleted.
1781 (dired-view-file, dired-mouse-find-file-other-window):
1782 Delete the code to use it.
1783
1784 2005-01-01 Kim F. Storm <storm@cua.dk>
1785
1786 * image.el (insert-sliced-image): Use t for line-height property.
1787
1788 2004-12-31 Jay Belanger <belanger@truman.edu>
1789
1790 * calc/calc-store.el (calcVar-digit, calcVar-oper): Remove the need
1791 for "var-" at the beginning of the minibuffer.
1792
1793 2004-12-31 Richard M. Stallman <rms@gnu.org>
1794
1795 * faces.el (read-face-name):
1796 Don't treat an attribute spec as a list of faces.
1797
1798 * simple.el (undo): Use undo-equiv-table to detect
1799 unexpected changes since previous undo.
1800 (undo-list-saved): Variable deleted.
1801 (buffer-disable-undo): Don't alter undo-list-saved.
1802
1803 * files.el (require-final-newline): Allow `visit' and `visit-save'.
1804 (mode-require-final-newline): New option.
1805 (after-find-file): Handle require-final-newline with new values.
1806 (basic-save-buffer): Handle new values of require-final-newline.
1807
1808 * progmodes/sh-script.el (sh-require-final-newline):
1809 Alist value now controls whether to use mode-require-final-newline.
1810 (sh-set-shell): Implement that new meaning.
1811
1812 * progmodes/cc-vars.el (c-require-final-newline): Fix custom type, doc.
1813 * progmodes/cc-mode.el (c-common-init): Use mode-require-final-newline.
1814 * progmodes/antlr-mode.el (antlr-mode): Use mode-require-final-newline.
1815 Delete old-Emacs compatibility code.
1816 (antlr-c-common-init): Function deleted.
1817
1818 * net/snmp-mode.el (snmp-common-mode): Use mode-require-final-newline.
1819 * progmodes/vhdl-mode.el (vhdl-mode): Use mode-require-final-newline.
1820 * progmodes/simula.el (simula-mode): Use mode-require-final-newline.
1821 * progmodes/python.el (python-mode): Use mode-require-final-newline.
1822 * progmodes/perl-mode.el (perl-mode): Use mode-require-final-newline.
1823 * progmodes/modula2.el (modula-2-mode): Use mode-require-final-newline.
1824 * progmodes/mixal-mode.el (mixal-mode): Use mode-require-final-newline.
1825 * progmodes/idlwave.el (idlwave-mode): Use mode-require-final-newline.
1826 * progmodes/icon.el (icon-mode): Use mode-require-final-newline.
1827 * progmodes/fortran.el (fortran-mode): Use mode-require-final-newline.
1828 * progmodes/f90.el (f90-mode): Use mode-require-final-newline.
1829 * progmodes/cperl-mode.el (cperl-mode): Use mode-require-final-newline.
1830 * progmodes/cfengine.el (cfengine-mode): Use mode-require-final-newline.
1831 * progmodes/ada-mode.el (ada-mode): Use mode-require-final-newline.
1832 * textmodes/text-mode.el (text-mode): Use mode-require-final-newline.
1833 * textmodes/texinfo.el (texinfo-mode): Use mode-require-final-newline.
1834
1835 2004-12-31 Jay Belanger <belanger@truman.edu>
1836
1837 * calc/calc-graph.el (calc-graph-show-dumb): Mention C-cC-c as the
1838 way to return to Calc.
1839
1840 * calc/calc-yank.el (calc-edit-mode): Mention C-cC-c as the way to
1841 finish, C-xk as the way to cancel the edit. Add cancel routine to
1842 kill-buffer-hook.
1843
1844 * calc/calc.el (calc-same-interface, calc-quit): Remove obsolete
1845 MacEdit code.
1846
1847 * calc/calc-prog.el: Remove obsolete MacEdit code.
1848 (calc-macro-edit-algebraic, calc-macro-edit-variable)
1849 (calc-macro-edit-variable-2, calc-macro-edit-quick-digit): Remove.
1850
1851 2004-12-31 Kenichi Handa <handa@m17n.org>
1852
1853 * international/mule.el (buffer-file-coding-system-explicit):
1854 Rename for explicit-buffer-file-coding-system.
1855 (after-insert-file-set-coding): Adjust for the above change.
1856
1857 * files.el (revert-buffer): Change explicit-buffer-file-coding-system
1858 to buffer-file-coding-system-explicit.
1859 (basic-save-buffer-1): Likewise.
1860
1861 2004-12-30 Richard M. Stallman <rms@gnu.org>
1862
1863 * textmodes/artist.el (artist-butlast-fn): Var deleted.
1864 (artist-butlast, artist-last): Functions deleted.
1865 (artist-ellipse-mirror-quadrant): Call last and butlast directly.
1866 (artist-compute-key-compl-table): Call remq directly.
1867 (artist-remove-nulls): Function deleted.
1868 (artist-vaporize-lines, artist-flood-fill): Use push and pop directly.
1869 (artist-push, artist-pop): Macro deleted.
1870
1871 2004-12-30 Andreas Leue <al@sphenon.de>
1872
1873 * textmodes/artist.el (artist-version): 1.2.6
1874 (artist-prev-next-op-alist): New variable.
1875 (artist-select-next-op-in-list): New function.
1876 (artist-select-prev-op-in-list): New function.
1877 (artist-make-prev-next-op-alist): New function.
1878 (artist-is-in-op-list-p): New function.
1879 (artist-get-first-non-nil-op): New function.
1880 (artist-get-last-non-nil-op): New function.
1881 (artist-mode-init): Call artist-get-last-non-nil-op to initialize
1882 artist-prev-next-op-alist.
1883 (artist-mode-map): Add binding for C-mouse-4 and C-mouse-5 to
1884 change drawing operation.
1885
1886 2004-12-30 Luc Teirlinck <teirllm@auburn.edu>
1887
1888 * autorevert.el (auto-revert-tail-handler): Put in undo boundaries.
1889
1890 2004-12-31 Masatake YAMATO <jet@gyve.org>
1891
1892 * server.el (server-process-filter): Suppress `error', too.
1893
1894 2004-12-30 Jay Belanger <belanger@truman.edu>
1895
1896 * calc/calc-store.el (calc-copy-variable): Fix mistyped variable name.
1897 Change the way a variable is displayed in a message.
1898
1899 * calc/calc-prog.el (calc-user-define-edit, calc-finish-macro-edit)
1900 (calc-user-define-permanent, calc-execute-kbd-macro):
1901 Replace old function MacEdit-parse-keys with edmacro-parse-keys.
1902
1903 2004-12-30 Kenichi Handa <handa@m17n.org>
1904
1905 * files.el (basic-save-buffer-1):
1906 Set explicit-buffer-file-coding-system to last-coding-system-used.
1907 (revert-buffer): Pay attention to
1908 explicit-buffer-file-coding-system (not buffer-file-coding-system)
1909 on bind coding-system-for-read.
1910
1911 * international/mule.el (explicit-buffer-file-coding-system):
1912 New buffer local variable.
1913 (after-insert-file-set-coding): Set it to coding-system-for-read.
1914
1915 2004-12-29 Luc Teirlinck <teirllm@auburn.edu>
1916
1917 * autorevert.el (auto-revert-tail-mode): Doc fix for defvar.
1918
1919 2004-12-29 Sanghyuk Suh <han9kin@mac.com>
1920
1921 * term/mac-win.el (mac-drag-n-drop): Handle drag-n-drop events
1922 that include line numbers.
1923
1924 2004-12-29 Milan Zamazal <pdm@zamazal.org>
1925
1926 * files.el (hack-local-variables): If no PREFIX, set it to "^".
1927 Redundant variable PREFIXLEN removed.
1928
1929 2004-12-28 Matt Hodges <MPHodges@member.fsf.org>
1930
1931 * eshell/em-hist.el (eshell-previous-matching-input):
1932 Start the deletion from the end of the output.
1933
1934 2004-12-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1935
1936 * term/mac-win.el: Require x-dnd.
1937 (mac-drag-n-drop): Sync with W32 version. Use x-dnd.el functions.
1938
1939 2004-12-29 David Kastrup <dak@gnu.org>
1940
1941 * international/mule.el (decode-coding-inserted-region):
1942 Don't barf if `buffer-undo-list' is already set to `t'.
1943
1944 2004-12-29 Jay Belanger <belanger@truman.edu>
1945
1946 * calc/calc-prog.el (calc-user-define-formula): Put default values
1947 for function names in prompts.
1948 (calc-user-define-permanent, calc-user-define-composition)
1949 (calc-user-define-formula): Remove the need for "calcFunc-" in the
1950 default input for algebraic functions.
1951
1952 2004-12-29 Thien-Thi Nguyen <ttn@gnu.org>
1953
1954 * vc-rcs.el (vc-rcs-annotate-command):
1955 Fix omission bug: Call `vc-setup-buffer'.
1956
1957 2004-12-29 Kenichi Handa <handa@m17n.org>
1958
1959 * international/mule.el (recode-region): New function.
1960
1961 2004-12-28 Richard M. Stallman <rms@gnu.org>
1962
1963 * simple.el (undo-extra-outer-limit): New variable.
1964 (undo-outer-limit-truncate): Test and set it.
1965
1966 * emacs-lisp/lisp.el (mark-sexp, mark-defun): New arg ALLOW-EXTEND
1967 enables the feature to extend the existing region.
1968
1969 * simple.el (mark-word): New arg ALLOW-EXTEND
1970 enables the feature to extend the existing region.
1971
1972 * textmodes/paragraphs.el (mark-paragraph): New arg ALLOW-EXTEND
1973 enables the feature to extend the existing region.
1974
1975 * startup.el (site-run-file): Don't allow setting it with Custom.
1976
1977 * simple.el (buffer-disable-undo): Fix previous change.
1978
1979 2004-12-27 Masatake YAMATO <jet@gyve.org>
1980
1981 * hexl.el (hexlify-buffer): Remove fontification here.
1982 Use font lock mechanism instead.
1983 (hexl-font-lock-keywords): New font lock kewords.
1984 (hexl-mode-old-font-lock-keywords): New variable.
1985 (hexl-mode): Store the old font lock keywords.
1986 (hexl-mode-exit): Restore the old font lock keywords.
1987
1988 2004-12-27 Richard M. Stallman <rms@gnu.org>
1989
1990 * simple.el (undo): Fix previous change.
1991
1992 2004-12-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1993
1994 * term/mac-win.el: Sync with x-win.el. Rearrange the contents.
1995 Call mac-clear-font-name-table if invoked on Mac OS 8/9.
1996 Call x-open-connection on Mac OS X.
1997
1998 2004-12-27 Richard M. Stallman <rms@gnu.org>
1999
2000 * files.el (buffer-save-without-query): New var (buffer-local).
2001 (save-some-buffers): Save those buffers first, w/o asking.
2002
2003 * files.el (insert-directory-ls-version): New variable.
2004 (insert-directory): When ls returns an error, test the version
2005 number to decide what the return code means.
2006 With --dired output format, detect and distinguish lines
2007 that are really error messages.
2008 (insert-directory-adj-pos): New function.
2009
2010 * bookmark.el (bookmark-jump): Nice error if BOOKMARK is nil.
2011
2012 * battery.el (battery-mode-line-format): Remove initial spaces.
2013
2014 * uniquify.el (uniquify-rationalize-file-buffer-names):
2015 Delete interactive spec.
2016
2017 * type-break.el (type-break-mode): Set buffer-save-without-query.
2018 Remove code that tried to set save-some-buffers-always.
2019 (type-break-file-keystroke-count): Bind deactivate-mark.
2020
2021 * mouse.el (mouse-drag-region): Bind mouse-autoselect-window.
2022
2023 * simple.el (next-error-buffer-p): New arg AVOID-CURRENT.
2024 Test that the buffer is live, and maybe reject current buffer too.
2025 Clarify.
2026 (next-error-find-buffer): Rewrite for clarity.
2027
2028 * loadup.el: Don't use buffer-disable-undo; do it directly.
2029
2030 * help-fns.el (describe-function-1): Call symbol-file with `defun'.
2031 (describe-variable): Call symbol-file with `defvar'.
2032
2033 * subr.el (messages-buffer-max-lines): Alias for message-log-max.
2034 (symbol-file): Rewritten to handle new load-history format.
2035 Now takes an arg TYPE to specify looking for a particular
2036 type of definition only.
2037
2038 * emacs-lisp/debug.el (debugger-make-xrefs):
2039 Call symbol-file with `defun'.
2040
2041 * emacs-lisp/find-func.el (find-function-noselect):
2042 Call symbol-file with `defun'.
2043 (find-variable-noselect): Call symbol-file with `defvar'.
2044
2045 * eshell/esh-cmd.el (eshell-find-alias-function):
2046 Call symbol-file with `defun'.
2047
2048 * eshell/esh-test.el (eshell-test-goto-func):
2049 Call symbol-file with `defun'.
2050
2051 * mail/rmail.el (rmail-resend):
2052 Let MAIL-ALIAS-FILE arg override mail-personal-alias-file.
2053
2054 * net/goto-addr.el (goto-address-mail-regexp): Allow = in username.
2055
2056 * progmodes/compile.el (compilation-find-buffer): Rename arg.
2057
2058 * textmodes/texinfmt.el (texinfo-format-buffer-1):
2059 Call buffer-disable-undo.
2060
2061 * simple.el (undo-list-saved): New variable (buffer-local).
2062 (undo): Set and test it.
2063 (buffer-disable-undo): Move here from buffer.c.
2064 Clear out undo-list-saved.
2065
2066 * international/mule.el (decode-coding-inserted-region):
2067 Set buffer-undo-list in a correct and optimal way.
2068
2069 * progmodes/cperl-mode.el (cperl-find-bad-style): Use with-no-warnings.
2070 (cperl-font-lock-unfontify-region-function): No need to save and
2071 restore info, since font-lock.el does it for us.
2072
2073 * ansi-color.el (save-buffer-state): Definition deleted.
2074 (ansi-color-unfontify-region): Don't use save-buffer-state.
2075
2076 2004-12-27 Dave Love <fx@gnu.org>
2077
2078 * wid-edit.el (function): Use restricted-sexp as parent.
2079
2080 2004-12-27 Kevin Ryde <user42@zip.com.au>
2081
2082 * simple.el (next-matching-history-element): Use same
2083 `interactive' form as previous-matching-history-element.
2084
2085 * ffap.el (ffap-string-at-point-mode-alist): Add "*" to url chars,
2086 it can appear unencoded and has been seen from yahoo.
2087
2088 2004-12-27 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
2089
2090 * mail/smtpmail.el (smtpmail-try-auth-methods): Send AUTH CRAM-MD5
2091 in upper case. Reported by Wojciech Polak <polak@gnu.org>.
2092
2093 2004-12-27 Kenichi Handa <handa@m17n.org>
2094
2095 * international/utf-8.el (utf-translate-cjk-load-tables):
2096 Bind coding-system-for-read to nil while loading subst-*.
2097
2098 2004-12-26 Jay Belanger <belanger@truman.edu>
2099
2100 * calc/calc-store.el (calc-read-var-name): Remove "var-" from
2101 default input.
2102
2103 2004-12-26 Luc Teirlinck <teirllm@auburn.edu>
2104
2105 * buff-menu.el (Buffer-menu-revert-function): Clear out undo info
2106 before reverting and disable undo recording while reverting.
2107
2108 2004-12-26 Thien-Thi Nguyen <ttn@gnu.org>
2109
2110 * progmodes/hideshow.el (hs-set-up-overlay): New user var.
2111 (hs-make-overlay): New function.
2112 (hs-isearch-show-temporary): Handle `display' overlay prop specially.
2113 (hs-flag-region): Delete function.
2114 (hs-hide-comment-region): No longer use `hs-flag-region'.
2115 Instead, use `hs-discard-overlays' and `hs-make-overlay'.
2116 (hs-hide-block-at-point): Likewise.
2117 (hs-hide-level-recursive): Use `hs-discard-overlays'.
2118 (hs-hide-all, hs-show-all): Likewise.
2119 (hs-show-block): Likewise.
2120 Also, use overlay prop `hs-b-offset', not `hs-ofs'.
2121
2122 2004-12-24 Thien-Thi Nguyen <ttn@gnu.org>
2123
2124 * progmodes/hideshow.el: Require `cl' when compiling.
2125 Remove XEmacs and Emacs 19 compatibility.
2126 Use `dolist' and `add-to-list' for load-time actions.
2127 (hs-discard-overlays): Use `dolist'.
2128 (hs-show-block): Likewise.
2129
2130 2004-12-23 Dan Nicolaescu <dann@ics.uci.edu>
2131
2132 * faces.el (mode-line, mode-line-inactive): Use min-colors.
2133
2134 2004-12-23 Thien-Thi Nguyen <ttn@gnu.org>
2135
2136 * progmodes/hideshow.el (hs-inside-comment-p): Fix omission bug:
2137 When extending backwards, move outside the current comment first.
2138
2139 2004-12-22 Kenichi Handa <handa@m17n.org>
2140
2141 * international/quail.el (quail-start-translation): Fix prompt
2142 string for the case if input-method-use-echo-area being non-nil.
2143 (quail-start-conversion): Likewise.
2144 (quail-show-guidance): Don't show guidance if
2145 input-method-use-echo-area is non-nil.
2146
2147 2004-12-21 Richard M. Stallman <rms@gnu.org>
2148
2149 * textmodes/ispell.el (ispell-help): Bind resize-mini-windows.
2150
2151 2004-12-21 Markus Rost <rost@ias.edu>
2152
2153 * calendar/diary-lib.el (mark-diary-entries):
2154 Set mark-diary-entries-in-calendar only after checking for diary-file.
2155
2156 2004-12-21 Richard M. Stallman <rms@gnu.org>
2157
2158 * faces.el (escape-glyph): Use blue against light foreground.
2159
2160 * simple.el (undo-outer-limit-truncate): New function.
2161 (undo-outer-limit-function): Use undo-outer-limit-truncate.
2162
2163 2004-12-21 Eli Barzilay <eli@barzilay.org>
2164
2165 * calculator.el: (calculator-radix-grouping-mode)
2166 (calculator-radix-grouping-digits)
2167 (calculator-radix-grouping-separator):
2168 New defcustoms for the new radix grouping mode functionality.
2169 (calculator-mode-hook): Now used in electric mode too,
2170 (calculator): Call it.
2171 (calculator-mode-map): Some new keys.
2172 (calculator-message): New function. Some new calls.
2173 (calculator-op, calculator-set-register): Use it.
2174 (calculator-string-to-number): New function, mostly moved and
2175 updated code from calculator-curnum-value.
2176 (calculator-curnum-value): Use it.
2177 (calculator-paste): Use it, and update grabbing the current-kill.
2178 (calculator-rotate-displayer)
2179 (calculator-rotate-displayer-back): Toggle digit grouping when
2180 in radix mode, use calculator-message.
2181 (calculator-displayer-prev, calculator-displayer-next):
2182 Change digit group size when in radix mode.
2183 (calculator-number-to-string): Rename from
2184 calculator-num-to-string. Now deals with digit grouping in
2185 radix mode.
2186 (calculator-update-display, calculator-put-value): Use the new name.
2187 (calculator-fact): Return a floating point number.
2188 (calculator-mode): Doc fix.
2189
2190 2004-12-20 Glenn Morris <gmorris@ast.cam.ac.uk>
2191
2192 * calendar/calendar.el (view-other-diary-entries): Add autoload.
2193 * calendar/diary-lib.el (view-other-diary-entries):
2194 Use current-prefix-arg in interactive spec.
2195
2196 2004-12-19 Jay Belanger <belanger@truman.edu>
2197
2198 * calc/calc-aent.el (calcAlg-blank-matching-open):
2199 Temporarily adjust the syntax of both delimiters of half-open intervals.
2200
2201 2004-12-19 Kim F. Storm <storm@cua.dk>
2202
2203 * mouse.el (mouse-1-click-follows-link): Doc fix.
2204
2205 2004-12-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2206
2207 * term/mac-win.el (encoding-vector, mac-font-encoder-list)
2208 (ccl-encode-mac-centraleurroman-font): Use centraleurroman
2209 instead of centraleuropean as the name
2210
2211 2004-12-17 Michael Albinus <michael.albinus@gmx.de>
2212
2213 Sync with Tramp 2.0.46.
2214
2215 * net/tramp.el (tramp-maybe-send-perl-script): Change order of
2216 parameters wrt Tramp convention.
2217 (tramp-handle-file-attributes-with-perl)
2218 (tramp-handle-directory-files-and-attributes): Apply it.
2219 (tramp-do-copy-or-rename-file-out-of-band): Check for existence of
2220 `copy-program'. Reported by Zack Weinberg
2221 <zack@codesourcery.com>.
2222 (top): Set `edebug-form-spec' property directly rather than
2223 calling `def-edebug-spec'.
2224
2225 * net/tramp-smb.el (tramp-smb-advice-PC-do-completion): Make the
2226 advice less fragile. Surround temporary redefinition of
2227 `substitute-in-file-name' with `unwind-protect'. Suggested by
2228 Matt Hodges <MPHodges@member.fsf.org>.
2229
2230 2004-12-17 Juri Linkov <juri@jurta.org>
2231
2232 * replace.el (occur-accumulate-lines, occur-engine):
2233 Make forcing deferred font-lock fontification jit-specific.
2234
2235 2004-12-17 Kim F. Storm <storm@cua.dk>
2236
2237 * mouse.el (mouse-1-click-follows-link): New defcustom.
2238 (mouse-on-link-p): New function.
2239 (mouse-drag-region-1): Implement mouse-1-click-follows-link
2240 functionality. Map a mouse-1 click event into a mouse-2 (or
2241 other) event when position is inside a link.
2242
2243 * tooltip.el (tooltip-show-help-function): Replace "mouse-2"
2244 prefix in tooltip text with "mouse-1" when this is a link
2245 recognized by mouse-1-click-follows-link functionality.
2246
2247 * help.el (describe-key): Report effective and original binding
2248 for mouse-1 when clicked on a link.
2249 (describe-mode): Add follow-link property to "minor-mode" button.
2250
2251 * help-fns.el (describe-variable): Add follow-link property to
2252 "below" button.
2253
2254 * help-mode.el (help-xref): Add follow-link property.
2255
2256 * apropos.el (apropos-symbol, apropos-function, apropos-macro)
2257 (apropos-command, apropos-variable, apropos-face, apropos-group)
2258 (apropos-widget, apropos-plist): Add follow-link property.
2259
2260 * pcvs-defs.el (cvs-mode-map): Map follow-link to a function which
2261 checks if position is in a filename, rather than some other
2262 clickable item. Function looks for cvs-filename-face at position.
2263
2264 * wid-edit.el (widget-specify-field, widget-specify-button):
2265 Map a :follow-link keyword into a follow-link property.
2266 (link): Add :follow-link keyword, map to RET binding.
2267
2268 * dired.el (dired-mode-map): Map follow-link to mouse-face.
2269
2270 * progmodes/compile.el (compilation-minor-mode-map)
2271 (compilation-button-map, compilation-mode-map): Likewise.
2272
2273 2004-12-17 Thien-Thi Nguyen <ttn@gnu.org>
2274
2275 * play/zone.el (zone): Init `line-spacing' from orig buffer.
2276 (zone-replace-char): Take `count' and `del-count'
2277 instead of `direction'. Update callers. When `del-count' is
2278 non-nil, delete that many characters, otherwise `count' characters
2279 backwards. Insert the newly-replaced string `count' times.
2280 (zone-fret): Handle chars w/ width greater than one.
2281 (zone-fall-through-ws): No longer take window width `ww'.
2282 Update callers. Add handling for `char-width' greater than one.
2283 (zone-pgm-drip): Update var holding window-end position every cycle.
2284
2285 2004-12-17 Andre Spiegel <spiegel@gnu.org>
2286
2287 * vc.el (vc-default-update-changelog): Use insert-file-contents,
2288 rather than insert-file.
2289
2290 2004-12-16 Jay Belanger <belanger@truman.edu>
2291
2292 * calc/calc-comb.el (var-RandSeed): Don't initially bind it.
2293 (math-init-random-base, math-random-digit): Check to see if
2294 var-RandSeed is bound.
2295 (math-random-last): Declare it.
2296 (math-random-digit): Don't make math-random-last local.
2297
2298 2004-12-16 Thien-Thi Nguyen <ttn@gnu.org>
2299
2300 * play/zone.el (zone): Fix omission bug: Use a self-disabling
2301 one-shot thunk for uniform (error, quit, normal) recovery.
2302 Reported by John Paul Wallington.
2303 (zone-pgm-random-life): Fix bug:
2304 Recognize empty initial field by lack of "@" chars.
2305
2306 2004-12-16 Juri Linkov <juri@jurta.org>
2307
2308 * help.el (function-called-at-point):
2309 * help-fns.el (variable-at-point): As a last resort try stripping
2310 non-word prefixes and suffixes.
2311
2312 * descr-text.el (describe-property-list): Don't treat syntax-table
2313 specially. Use describe-text-sexp which inserts [show] button
2314 for large objects and handles printing errors. Sort properties
2315 by names in alphabetical order instead of by value sizes.
2316 Add `mouse-face' to list of properties for `describe-face' widget.
2317 (describe-char): Mask out face-id from 19 bits of character.
2318 Print face-id separately.
2319
2320 * replace.el (occur-accumulate-lines, occur-engine):
2321 Fontify unfontified matching lines in the source buffer
2322 before copying them.
2323 (occur-engine): Don't put mouse-face on context lines.
2324 (occur-next-error): Set point to line beginning/end
2325 before searching for prev/next property to skip multiple
2326 matches on a line (not supported by occur engine).
2327 Remove redundant prefix-numeric-value.
2328
2329 2004-12-15 Juri Linkov <juri@jurta.org>
2330
2331 * replace.el (match): New face.
2332 (list-matching-lines-face): Change default from `bold' to `match'.
2333
2334 * progmodes/grep.el (grep-match-face): New defvar.
2335 (grep-mode-font-lock-keywords): Use grep-match-face instead of
2336 compilation-column-face to highlight grep matches.
2337
2338 * apropos.el (apropos-match-face): Change default from
2339 `secondary-selection' to `match'.
2340
2341 * info-look.el (info-lookup-highlight-face): Change default from
2342 `highlight' to `match'.
2343
2344 2004-12-15 Daniel Pfeiffer <occitan@esperanto.org>
2345
2346 * progmodes/executable.el (executable-interpret): Eliminate
2347 obsolete compile-internal, and switch to comint for interaction.
2348
2349 2004-12-15 J.D. Smith <jdsmith@as.arizona.edu>
2350
2351 * progmodes/idlwave.el (idlwave-skip-multi-commands): Don't match
2352 `&&' when skipping multiple statements on a line.
2353
2354 2004-12-15 Thien-Thi Nguyen <ttn@gnu.org>
2355
2356 * play/zone.el (zone): Set `truncate-lines'.
2357 Also, init `tab-width' with value from original buffer.
2358 (zone-shift-up): Rewrite for speed.
2359 (zone-shift-down, zone-shift-left, zone-shift-right): Likewise.
2360 (zone-pgm-jitter): Remove redundant entries from ops vector.
2361 (zone-exploding-remove): Reduce iteration count.
2362 (zone-cpos): Convert to defsubst.
2363 (zone-replace-char): New defsubst.
2364 (zone-park/sit-for): Likewise.
2365 (zone-fret): Take window-start arg.
2366 Update callers. Use `zone-park/sit-for'.
2367 (zone-fill-out-screen): Rewrite.
2368 (zone-fall-through-ws): Likewise. Update callers.
2369 (zone-pgm-drip): Use `zone-replace-char'.
2370 Move var inits before while-loop. Use `zone-park/sit-for'.
2371 (zone-pgm-random-life): Handle empty initial field.
2372 Use `zone-replace-char' and `zone-park/sit-for'.
2373
2374 2004-12-15 Juri Linkov <juri@jurta.org>
2375
2376 * isearch.el (isearch-update): Test isearch-lazy-highlight
2377 before calling isearch-lazy-highlight-new-loop.
2378 (isearch-lazy-highlight-new-loop):
2379 Don't test isearch-lazy-highlight.
2380
2381 * replace.el (perform-replace): Add isearch-case-fold-search.
2382 Use delimited-flag for isearch-regexp.
2383 Reset isearch-lazy-highlight-last-string to force lazy
2384 highlighting when called from isearch mode.
2385 (query-replace-highlight): Revert defcustom type to boolean.
2386 (query-replace-lazy-highlight): New defcustom.
2387 (query-replace): New face.
2388 (perform-replace, replace-highlight, replace-dehighlight):
2389 Test query-replace-lazy-highlight instead of special value
2390 `isearch' of query-replace-highlight.
2391 (replace-dehighlight): Don't call isearch-dehighlight.
2392 (replace-highlight): Don't call isearch-highlight.
2393 Use face `query-replace' unconditionally.
2394
2395 2004-12-14 Kim F. Storm <storm@cua.dk>
2396
2397 * simple.el (inhibit-mark-movement): Remove defvar.
2398 (beginning-of-buffer, end-of-buffer): Don't use it.
2399
2400 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
2401 Don't use inhibit-mark-movement.
2402
2403 * emulation/cua-base.el (cua--preserve-mark-commands): Remove.
2404 (cua--undo-push-mark): Remove.
2405 (cua--pre-command-handler, cua--post-command-handler):
2406 Don't fiddle with inhibit-mark-movement.
2407
2408 2004-12-14 Juri Linkov <juri@jurta.org>
2409
2410 * buff-menu.el (list-buffers-noselect): Collect internal info
2411 for every buffer in BUFFER-LIST arg too.
2412 (Buffer-menu-switch-other-window): Bind pop-up-windows to t.
2413 (Buffer-menu-switch-other-window, Buffer-menu-2-window):
2414 Bind same-window-buffer-names and same-window-regexps to nil.
2415
2416 2004-12-13 Juri Linkov <juri@jurta.org>
2417
2418 * simple.el (next-error-buffer-p, next-error-find-buffer): Doc fix.
2419
2420 * mail/supercite.el (sc-cite-frame-alist): Doc fix.
2421 (sc-cite-region, sc-uncite-region, sc-recite-region):
2422 Fix previous change to handle not alist as a symbol, but
2423 a citation frame as a symbol that represents a variable name.
2424
2425 2004-12-13 Richard M. Stallman <rms@gnu.org>
2426
2427 * filecache.el (file-cache-add-directory-using-find):
2428 Only set up file-cache-find-command-posix-flag if we will use it.
2429
2430 * bindings.el (mode-line-buffer-identification-keymap):
2431 Don't cancel the mode-line's usual down-mouse-1 binding.
2432
2433 * cus-edit.el (custom-face-selected): Handle `default' specs.
2434 (custom-face-edit): Increase extra-offset.
2435 (custom-display): Handle `default' specs.
2436
2437 * xml.el (xml-name-re, xml-entity-value-re): Add defvars.
2438
2439 * emacs-lisp/elint.el (elint-standard-variables)
2440 (elint-unknown-builtin-args): Move definitions up.
2441
2442 * net/browse-url.el (browse-url-url-at-point): Add autoload.
2443
2444 * info.el (info-xref-visited): Use `default' instead of t.
2445 (Info-try-follow-nearest-node): Don't explicitly load browse-url.
2446
2447 * faces.el (header-line, mode-line-inactive, tool-bar):
2448 Use `default' instead of t for setting the defaults.
2449 (face-spec-choose): Separate `t' from `default'.
2450
2451 * subr.el (while-no-input): New macro.
2452
2453 2004-12-13 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE> (tiny change)
2454
2455 * filecache.el (file-cache-add-directory-using-find):
2456 Only test file-cache-find-command-posix-flag on some systems.
2457
2458 2004-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
2459
2460 * vc-svn.el (vc-svn-repository-hostname): Adjust to new format.
2461 Reported by Ville Skytt\e,Ad\e(B <scop@xemacs.org>.
2462 (vc-svn-annotate-current-time, vc-svn-annotate-time-of-rev)
2463 (vc-svn-annotate-time, vc-svn-annotate-extract-revision-at-line)
2464 (vc-svn-annotate-command, vc-svn-annotate-re): Support for svn annotate.
2465
2466 2004-12-12 Juri Linkov <juri@jurta.org>
2467
2468 * files.el (find-file-other-window, find-file-other-frame):
2469 Add the first buffer to the returned value to return the complete
2470 list of all visited buffers.
2471 (find-file-read-only, find-file-read-only-other-window)
2472 (find-file-read-only-other-frame): Use nil for `mustmatch' arg of
2473 `find-file-read-args'. Signal an error about non-existent file
2474 only if file name doesn't contain wildcards. Toggle read-only in
2475 all visited buffers.
2476 (find-alternate-file, find-alternate-file-other-window):
2477 Add optional arg `wildcards'. Doc fix. Set `wildcards' to t when
2478 called interactively. Pass arg `wildcards' to other functions.
2479 (find-file-noselect): Doc fix.
2480
2481 * ffap.el (ffap-dired-wildcards): Set default to "[*?][^/]*\\'".
2482 Doc fix.
2483 (ffap-directory-finder): New variable.
2484 (ffap-string-at-point-mode-alist): Add * and ? to `file'.
2485 (ffap-file-at-point): Add /* to immediately rejected names.
2486 Return absolute file names matching ffap-dired-wildcards.
2487 (ffap-read-file-or-url): Set default value for `completing-read'
2488 to `buffer-file-name'.
2489 (find-file-at-point): When filename matches ffap-dired-wildcards,
2490 call ffap-file-finder with t arg `wildcards', instead of dired.
2491 (ffap-other-window, ffap-other-frame): Return visited buffers.
2492 (ffap-read-only, ffap-read-only-other-window)
2493 (ffap-read-only-other-frame, ffap-alternate-file): New commands.
2494 (dired-at-point): Call ffap-directory-finder instead of dired.
2495 (ffap-dired-other-window, ffap-dired-other-frame)
2496 (ffap-list-directory): New commands.
2497 (ffap-bindings): New keybindings for new commands.
2498
2499 2004-12-12 Juri Linkov <juri@jurta.org>
2500
2501 * simple.el (beginning-of-buffer, end-of-buffer):
2502 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
2503 Do not push mark when mark is active in transient-mark-mode.
2504
2505 * simple.el (mark-word):
2506 * emacs-lisp/lisp.el (mark-sexp, mark-defun):
2507 * textmodes/paragraphs.el (mark-paragraph):
2508 Extend the region when mark is active in transient-mark-mode,
2509 regardless of the last command. Doc fix.
2510
2511 * simple.el (mark-word): Preserve direction when repeating.
2512 Make arg optional. Interactive "p" -> "P".
2513 (transient-mark-mode, inhibit-mark-movement): Doc fix.
2514
2515 * emacs-lisp/lisp.el (mark-sexp): Reverse the condition for
2516 preserving direction, to mark forward instead of backward when mark
2517 is equal to point (e.g. when C-SPC C-M-SPC is typed in t-m-m).
2518
2519 2004-12-12 Juri Linkov <juri@jurta.org>
2520
2521 * isearch.el (isearch-edit-string): Set 7th arg of
2522 `read-from-minibuffer' to `t' to inherit the current input
2523 method (whose name is indicated by [IM] in the minibuffer prompt)
2524 from the current buffer to the minibuffer.
2525 (isearch-lazy-highlight-update): Put body to `with-local-quit'
2526 to allow C-g quitting for lazy highlighting looping inside the
2527 search with nested repetition operators. Add overlay to the list
2528 before setting its face and other properties to avoid the case of
2529 code quitting after placing the new overlay but before it's
2530 recorded on the list. Select the window where isearch was
2531 activated, to highlight matches in the right window when isearch
2532 switches the current window to the minibuffer.
2533
2534 * international/isearch-x.el
2535 (isearch-process-search-multibyte-characters):
2536 Use `isearch-message' as initial input for `read-string' instead
2537 of adding it to the minibuffer prompt. After reading a string
2538 remove the initial value of `isearch-message' from the string.
2539
2540 * replace.el (replace-match-maybe-edit): Doc fix.
2541 (perform-replace): Don't call `replace-highlight' when automatic
2542 replacement is requested in literal mode, since it is intended
2543 only to highlight words during entering a new replacement string
2544 for \? in non-literal mode.
2545
2546 * replace.el (query-replace-highlight): Add new value `isearch'
2547 that allows query replacement to use isearch highlighting.
2548 Change type from `boolean' to `choice'. Doc fix.
2549 (replace-highlight, replace-dehighlight, perform-replace):
2550 Use isearch highlighting if query-replace-highlight eq `isearch'.
2551
2552 2004-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
2553
2554 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
2555 (checkdoc-message-text, checkdoc-defun): Fix format messages for `error'.
2556
2557 * textmodes/tex-mode.el (latex-backward-sexp-1): Handle the special
2558 case of \end{verbatim}.
2559
2560 2004-12-11 Dan Nicolaescu <dann@ics.uci.edu>
2561
2562 * term.el (term-termcap-format): Synchronyze with terminfo.
2563 (term-emulate-terminal): Handle reset.
2564 (term-reset-terminal): New function.
2565
2566 2004-12-11 Thien-Thi Nguyen <ttn@gnu.org>
2567
2568 * play/zone.el (zone-programs): Add `zone-pgm-random-life'.
2569 (zone-fill-out-screen): New func.
2570 (zone-pgm-drip): Use `zone-fill-out-screen'.
2571 Also, no longer go to point-min on every cycle.
2572 (zone-pgm-paragraph-spaz): Allow spazzing for texinfo-mode.
2573 (zone-pgm-random-life-wait): New user var.
2574 (zone-pgm-random-life): New func.
2575
2576 2004-12-10 Thien-Thi Nguyen <ttn@gnu.org>
2577
2578 * files.el (auto-mode-alist): Map .com to DCL mode.
2579
2580 2004-12-09 Richard M. Stallman <rms@gnu.org>
2581
2582 * isearch.el (isearch-mode-map): Treat S-SPC like SPC.
2583
2584 2004-12-09 Nick Roberts <nickrob@snap.net.nz>
2585
2586 * xt-mouse.el (xterm-mouse-event): Correct cursor position in a
2587 buffer with a display margin.
2588
2589 2004-12-08 Jay Belanger <belanger@truman.edu>
2590
2591 * calc/calc-keypd.el (calc-keypad-mode): Unbind unused mouse events.
2592 (calc-keypad-left-click): Set buffer to calc-keymap-buffer.
2593
2594 2004-12-08 Richard M. Stallman <rms@gnu.org>
2595
2596 * faces.el: Delete code to set display table.
2597 (escape-glyph): Redefine to be less loud. (Copy minibuffer-prompt.)
2598
2599 2004-12-08 Jay Belanger <belanger@truman.edu>
2600
2601 * calc/calc.el: Add math-read-preprocess-string to autoloads.
2602
2603 * calc/calc-ext.el (math-read-replacement-list)
2604 (math-read-superscripts, math-read-preprocess-string): Move to
2605 calc-aent.el.
2606
2607 * calc/calc-aent.el (math-read-replacement-list)
2608 (math-read-superscripts, math-read-preprocess-string): Move from
2609 calc-ext.el.
2610
2611 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2612
2613 * isearch.el (isearch-quote-char): Fix up typo in last change.
2614
2615 2004-12-07 Luc Teirlinck <teirllm@auburn.edu>
2616
2617 * mouse.el (mouse-set-font): Handle the case where the command was
2618 not invoked using the mouse.
2619
2620 * edmacro.el: `edit-kbd-macro' is now bound to `C-x C-k e'.
2621 (edmacro-finish-edit): Further update for keyboard macros that are
2622 lambda forms.
2623 (edmacro-sanitize-for-string): Correctly remove Meta modifier.
2624
2625 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2626
2627 * font-lock.el (font-lock-unfontify-region): Save buffer state.
2628 (font-lock-default-unfontify-region): Don't save buffer state any more.
2629
2630 2004-12-07 Jay Belanger <belanger@truman.edu>
2631
2632 * calc/calc-help.el (calc-describe-key):
2633 Set calc-summary-indentation even when Calc Summary buffer exists.
2634
2635 2004-12-07 Glenn Morris <gmorris@ast.cam.ac.uk>
2636
2637 * calendar/holidays.el (holiday-easter-etc): Make arguments
2638 optional for backwards compatibility. Doc fix.
2639 Remove un-necessary local vars mandatory, output-list.
2640 (holiday-advent): Make arguments optional for backwards
2641 compatibility. Doc fix.
2642
2643 2004-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2644
2645 * paren.el (show-paren-function): Fix last change (2004-12-02).
2646
2647 * international/mule-util.el (char-displayable-p): Return nil for
2648 unibyte mode.
2649
2650 * subr.el (subregexp-context-p): New function.
2651
2652 * isearch.el (isearch-quote-char): Use it.
2653
2654 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Use it.
2655 (regexp-opt-not-groupie*-re): Remove.
2656 (regexp-opt): Properly handle inputs with duplicate entries.
2657
2658 2004-12-06 Richard M. Stallman <rms@gnu.org>
2659
2660 * info-look.el (info-lookup-maybe-add-help cfengine-mode): Regexp typo.
2661
2662 * cus-edit.el (custom-file): Doc fix.
2663
2664 * textmodes/org.el: New file.
2665
2666 2004-12-06 Kenichi Handa <handa@m17n.org>
2667
2668 * ldefs-boot.el: Update international/mule-util.el section.
2669
2670 2004-12-05 Sam Steingold <sds@gnu.org>
2671
2672 * net/tramp.el (tramp-handle-file-accessible-directory-p):
2673 Fix `tramp-time-diff' comparison logic.
2674
2675 2004-12-05 Paul Pogonyshev <pogonyshev@gmx.net>
2676
2677 * progmodes/which-func.el (which-function):
2678 Use `run-hook-with-args-until-success' instead of a custom loop.
2679 Fixes bug with local hooks.
2680
2681 2004-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2682
2683 * textmodes/bibtex.el (bibtex-font-lock-url-regexp):
2684 Use delete-dups when calculating the initial value.
2685 (bibtex-autokey-get-title): Use <=.
2686 (bibtex-goto-line): New function.
2687 (bibtex-reposition-window): Use line numbers instead of point
2688 positions. Use window-body-height.
2689 (bibtex-find-crossref): Use bibtex-reposition-window.
2690 (bibtex-find-entry): Use bibtex-reposition-window. Always return
2691 position of entry if key is found or nil if not found.
2692
2693 2004-12-05 Richard M. Stallman <rms@gnu.org>
2694
2695 * cus-edit.el (custom-file): Doc fix.
2696
2697 * progmodes/sh-script.el (sh-indent-for-then): Change default.
2698
2699 2004-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
2700
2701 * simple.el (blink-matching-open):
2702 * textmodes/tex-mode.el (tex-validate-region):
2703 Obey syntax-table text properties.
2704
2705 2004-12-02 Per Abrahamsen <abraham@dina.kvl.dk>
2706
2707 * wid-edit.el (widget-specify-field): Add `real-field' property to
2708 boundary.
2709 (widget-field-at): Use it.
2710
2711 2004-12-02 Richard M. Stallman <rms@gnu.org>
2712
2713 * progmodes/cc-mode.el (awk-mode autoload):
2714 Supply t meaning interactive function.
2715
2716 * isearch.el (search-whitespace-regexp): Remove the group. Doc fix.
2717 (isearch-mode-map): No special definition for space.
2718 (isearch-whitespace-chars): Command deleted.
2719 (isearch-forward-regexp): Doc fix.
2720 (isearch-quote-char): When a space is not inside brackets,
2721 use `[ ]' instead of just space.
2722 (isearch-lazy-highlight-search): Bind search-spaces-regexp.
2723
2724 * imenu.el (imenu--generic-function): Delete code to exclude
2725 matches in comments.
2726
2727 * man.el (Man-reverse-face): Change default to `highlight'.
2728
2729 * replace.el (occur-1): Specify t for KEEP-PROPS to occur-engine.
2730 (occur-engine): Use `face' prop rather than `font-lock-face'
2731 when specifying use of `match-face'.
2732 (occur-accumulate-lines): Change arg from NO-PROPS to KEEP-PROPS.
2733
2734 * emacs-lisp/elint.el (elint-standard-variables): Update list.
2735
2736 * add-log.el (add-log-current-defun): Handle the case where point
2737 is in the header part of a DEFUN construct.
2738
2739 2004-12-02 Dave Love <fx@gnu.org>
2740
2741 * progmodes/python.el (python-font-lock-syntactic-keywords):
2742 Fix previous change.
2743
2744 2004-12-02 Richard G Bielawski <Richard.G.Bielawski@wellsfargo.com> (tiny change)
2745
2746 * paren.el (show-paren-function): Check for matching chars
2747 specified by text props.
2748
2749 2004-12-02 Jay Belanger <belanger@truman.edu>
2750
2751 * calc/calc.el (calc-read-key-sequence): Leave the old message visible
2752 when reading a new key sequence.
2753
2754 2004-12-02 Kim F. Storm <storm@cua.dk>
2755
2756 * faces.el (escape-glyph): Rename from glyph.
2757 (standard-display-table): Set it here. Add escape-glyph face to
2758 extra slot characters.
2759
2760 * disp-table.el: Undo 2004-12-01 change. Display table is now
2761 setup in faces.el.
2762
2763 2004-12-02 Mark A. Hershberger <mah@everybody.org>
2764
2765 * xml.el (xml-parse-dtd): Don't show validity messages when
2766 xml-validating-parser is nil.
2767 (xml-substitute-special): Fix validity error messages to
2768 actually show the unexpandable entity. Added validity error if &
2769 isn't followed by an entity.
2770 (xml-parse-tag): Concatenate any string following the a
2771 <![CDATA[]]> section to the parsed CDATA.
2772 (xml-parse-dtd): Skip parameter entity declarations and use of
2773 parameter entities.
2774
2775 2004-12-01 Luc Teirlinck <teirllm@auburn.edu>
2776
2777 * kmacro.el (kmacro-default-counter-format): New var.
2778 (kmacro-set-format): Use it. Delete `(printf format)' from prompt.
2779 (kmacro-display): Remove `nil' from `and' form. Delete call to
2780 `format' inside `message'.
2781 (kmacro-start-macro): Use `kmacro-default-counter-format'.
2782
2783 2004-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
2784
2785 * pcvs.el (cvs-header-msg): New function.
2786 (cvs-update-header): Use it. Change calling convention.
2787 Correctly handle the case of having simultaneous active processes.
2788 (cvs-sentinel): Don't call cvs-update-header any more.
2789 (cvs-mode-run): Update call and add cvs-update-header to postproc.
2790
2791 2004-12-01 Jay Belanger <belanger@truman.edu>
2792
2793 * calc/calc-ext.el (calc-inverse, calc-hyperbolic):
2794 Change message.
2795
2796 2004-12-01 Juri Linkov <juri@jurta.org>
2797
2798 * progmodes/prolog.el (prolog-mode-variables):
2799 Fix imenu-generic-expression.
2800
2801 2004-12-01 Daniel Pfeiffer <occitan@esperanto.org>
2802
2803 * faces.el (glyph): New face.
2804
2805 * disp-table.el: Add an autoloaded table, that doesn't require
2806 this library, with glyph face.
2807
2808 * textmodes/conf-mode.el (conf-ppd-mode-syntax-table): New var.
2809 (conf-ppd-mode): New conf-mode wrapper for printer descriptions.
2810 (conf-quote-normal): Allow normalizing only ' or ".
2811 (conf-mode): Regexp-quote constructed comment-start and don't
2812 match section {} where "name" contains braces.
2813
2814 * files.el (auto-mode-alist): Add conf-ppd-mode, inittab and acpid
2815 files.
2816
2817 2004-12-01 Kenichi Handa <handa@m17n.org>
2818
2819 * term/x-win.el (x-last-selected-text-cut-encoded): New variable.
2820 (x-select-text): Don't treat eight-bit-control/graphic chars
2821 specially. Store the encoded text in the X cut buffer.
2822 (x-cut-buffer-or-selection-value): Compare the X cut buffer text
2823 with x-last-selected-text-cut-encoded.
2824
2825 2004-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
2826
2827 * man.el (Man-fontify-manpage): Improve handling of ANSI escapes.
2828
2829 2004-11-30 Markus Rost <rost@ias.edu>
2830
2831 * textmodes/tex-mode.el (tex-main-file): Add a compatibility with
2832 AUCTeX.
2833
2834 2004-11-30 Jay Belanger <belanger@truman.edu>
2835
2836 * calc/calc-arith.el (math-possible-signs): Made stronger checks
2837 on signs of intervals.
2838 (math-pow-of-zero): Strengthen checks for positive and negative
2839 exponents.
2840
2841 * calc/calc-aent.el, calc/calc-alg.el, calc/calc-arith.el
2842 * calc/calc-bin.el, calc/calc-comb.el, calc/calc-cplx.el
2843 * calc/calc-embed.el, calc/calc-fin.el, calc/calc-forms.el
2844 * calc/calc-frac.el, calc/calc-funcs.el, calc/calc-graph.el
2845 * calc/calc-help.el, calc/calc-incom.el, calc/calc-keypd.el
2846 * calc/calc-lang.el, calc/calc-map.el, calc/calc-math.el
2847 * calc/calc-misc.el, calc/calc-mode.el, calc/calc-mtx.el
2848 * calc/calc-poly.el, calc/calc-prog.el, calc/calc-rewr.el
2849 * calc/calc-rules.el, calc/calc-sel.el, calc/calc-stat.el
2850 * calc/calc-store.el, calc/calc-stuff.el, calc/calc-trail.el
2851 * calc/calc-undo.el, calc/calc-units.el, calc/calc-vec.el
2852 * calc/calc-yank.el, calc/calcalg2.el, calc/calcalg3.el
2853 * calc/calccomp.el, calc/calcsel2.el: Replace dummy autoloaded functions
2854 with provide statements.
2855
2856 * calc/calc-alg.el (math-defsimplify): Move from calc-ext.el.
2857
2858 * calc/calc-embed.el (calc-do-embedded-activate): Remove from autoloads.
2859
2860 * calc/calc-ext.el: Remove dummy autoloading functions from autoloads.
2861 (calc-load-everything, math-defsimplify): Replace dummy autoloading
2862 functions by require statements.
2863 (math-defsimplify): Move to calc-alg.el, add to autoloads.
2864
2865 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
2866 (calc-gnuplot-print): Give them values.
2867
2868 * calc/calc.el: Remove calc-Need-calc-aent and calc-Need-calc-misc from
2869 autoloads.
2870 Add calc-do-embedded-activate to autoloads.
2871 (calc-gnuplot-name, calc-gnuplot-plot-command)
2872 (calc-gnuplot-print-command): Move them to calc-graph.el.
2873
2874 2004-11-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2875
2876 * term/mac-win.el (ccl-encode-mac-roman-font)
2877 (ccl-encode-mac-cyrillic-font)
2878 (ccl-encode-mac-centraleuropean-font, encoder-list)
2879 (fontset-add-mac-fonts, create-fontset-from-mac-roman-font):
2880 Support Cyrillic, CentralEuropean, and Dingbat font display
2881
2882 2004-11-30 Andre Spiegel <spiegel@gnu.org>
2883
2884 * vc-hooks.el (vc-recompute-state): Move here from vc.el.
2885
2886 * vc-cvs.el (vc-cvs-state): Handle the case where vc-state is
2887 still nil.
2888
2889 2004-11-29 Luc Teirlinck <teirllm@auburn.edu>
2890
2891 * emulation/tpu-edt.el (tpu-help-keypad-map, tpu-help-text)
2892 (tpu-word-separator-list, tpu-skip-chars): defconst->defvar.
2893
2894 2004-11-29 Jay Belanger <belanger@truman.edu>
2895
2896 * calc/calc-arith.el (math-pow-of-zero): Take into account different
2897 cases of the base and exponent.
2898
2899 2004-11-26 Teodor Zlatanov <tzz@lifelogs.com>
2900
2901 * simple.el (next-error-buffer-p): Allow for inclusive and
2902 exclusive tests for finding a buffer.
2903 (next-error-find-buffer): Pass the exclusive and inclusive tests
2904 to next-error-buffer-p.
2905
2906 * replace.el (occur-next-error): Switch to the Occur buffer when
2907 appropriate, use the exclusive filter to next-error-find-buffer to
2908 do it. Use the absolute value of the motion amount.
2909
2910 2004-11-29 Kenichi Handa <handa@m17n.org>
2911
2912 * startup.el (command-line): Decode all default-directory by
2913 locale-coding-system.
2914
2915 2004-11-29 Jay Belanger <belanger@truman.edu>
2916
2917 * calc/calc-aent.el: Remove unnecessary eval-when-compile.
2918 (calc-do-quick-calc, calc-do-calc-eval, calc-alg-entry)
2919 (math-read-expr-level, calc-check-user-syntax, math-read-factor):
2920 Replace calls to calc-extensions by appropriate require, replace
2921 calc-extensions-loaded by appropriate featurep.
2922
2923 * calc/calc-ext.el: Move require to end of file.
2924 Remove redundant loading of calc.el.
2925 (calc-extensions-loaded): Remove unnecessary variable.
2926 (calc-extensions): Remove unnecessary function.
2927 (calc-load-everything): Replace calc-need-macros by appropriate require.
2928
2929 * calc/calc-macs.el: Move provide to end of file.
2930 (calc-need-macros): Remove unnecessary function.
2931
2932 * calc/calc-misc.el (calc-do-handle-whys, calc-last-args-stub)
2933 (calc-missing-key, calc-shift-Y-prefix-help, math-concat)
2934 (math-trunc, math-floor, calcFunc-inv, math-mod, math-pow):
2935 Replace calc-extensions by appropriate require.
2936 (calc-power): Replace calc-extensions-loaded by appropriate featurep.
2937
2938 * calc/calc-prog.el (calc-user-define-formula, calc-do-defmath):
2939 Replace calc-need-macros by appropriate require.
2940
2941 * calc/calc.el: Move require to end of file.
2942 (calc-info-filename, calc-autoload-directory, calc-extensions-loaded):
2943 Remove unnecessary variable.
2944 (calc-do-dispatch, calc-mode, calc-check-defines, calc-create-buffer)
2945 (calc, calc-keypad, full-calc-keypad, calc-do, calc-normalize)
2946 (calc-binary-op, calc-unary-op, calcDigit-start, calcDigit-key)
2947 (math-normalize, math-add, math-mul, math-div, math-format-stack-value)
2948 (math-stack-value-offset, math-format-value, math-format-flat-expr)
2949 (math-format-number, math-format-bignum, math-read-number)
2950 (calc-grab-region, calc-grab-rectangle, calc-grab-sum-down)
2951 (calc-grab-sum-across, calc-embedded, defmath): Replace calc-extensions
2952 by appropriate require.
2953 (calc-check-defines): Replace calc-need-macros by appropriate require.
2954
2955 2004-11-29 Kim F. Storm <storm@cua.dk>
2956
2957 * macros.el (insert-kbd-macro): Handle kmacro functions.
2958
2959 2004-11-28 Juri Linkov <juri@jurta.org>
2960
2961 * compare-w.el (compare-windows-highlight): Attach each overlay
2962 to its window to properly highlight differences while comparing
2963 two windows of the same buffer. Fix arguments.
2964 (compare-windows-sync-default-function): Fix arguments of
2965 `compare-windows-highlight'.
2966
2967 * emacs-lisp/edebug.el (edebug-set-global-break-condition):
2968 Use `read-expression-history'. Set initial contents only if
2969 `edebug-global-break-condition' is non-nil. Set histpos to 1
2970 if initial contents is equal to the last history element.
2971 (edebug-set-conditional-breakpoint): Instead of temporarily
2972 prepending the current condition to the history, set initial
2973 contents to the current condition. Set histpos to 1 if initial
2974 contents is equal to the last history element.
2975
2976 * info.el (Info-search-whitespace-regexp): Remove shy group.
2977 (Info-search): Forward line if search is on the header line.
2978 Use search-whitespace-regexp in two other places.
2979
2980 2004-11-27 Luc Teirlinck <teirllm@auburn.edu>
2981
2982 * fringe.el (fringe-indicators): Add fake defvar to avoid compiler
2983 warning. Delay real definition, which uses
2984 `set-fringe-indicators-1' till after the definition of that function.
2985
2986 2004-11-28 Kim F. Storm <storm@cua.dk>
2987
2988 * fringe.el (fringe): New defgroup.
2989 (fringe-mode): Move to fringe group.
2990 (fringe-indicators): New defcustom.
2991 (set-fringe-indicators-1): New defun.
2992
2993 * menu-bar.el (menu-bar-options-save): Add fringe-indicators.
2994 (menu-bar-showhide-fringe-ind-menu): New keymap.
2995 (menu-bar-showhide-fringe-ind-empty)
2996 (menu-bar-showhide-fringe-ind-mixed)
2997 (menu-bar-showhide-fringe-ind-box)
2998 (menu-bar-showhide-fringe-ind-right)
2999 (menu-bar-showhide-fringe-ind-left)
3000 (menu-bar-showhide-fringe-ind-none): New defuns.
3001 (menu-bar-showhide-fringe-menu): Add "Indicators" sub-menu.
3002
3003 2004-11-27 Richard M. Stallman <rms@gnu.org>
3004
3005 * comint.el (comint-read-noecho): Add trivial compatibility definition.
3006
3007 * generic.el (define-generic-mode): Doc fix.
3008
3009 * menu-bar.el (menu-bar-options-save): For the options
3010 that are toggled with menu-bar-make-mm-toggle, don't check
3011 for customized-value prop.
3012
3013 2004-11-27 Eli Zaretskii <eliz@gnu.org>
3014
3015 * mail/supercite.el (sc-cite-region): Handle the case where
3016 sc-cite-frame-alist is a symbol.
3017 (sc-uncite-region): Handle the case where sc-uncite-frame-alist is
3018 a symbol.
3019 (sc-recite-region): Handle the case where sc-recite-frame-alist is
3020 a symbol.
3021
3022 2004-11-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
3023
3024 * wid-edit.el (widget-narrow-to-field): New function.
3025 (widget-complete): Use it.
3026
3027 2004-11-27 Jay Belanger <belanger@truman.edu>
3028
3029 * calc/calc-aent.el (calc-eval-error): Declare and initialize the
3030 variable.
3031 (calc-eval-error): Don't check if the variable calc-eval-error is bound.
3032 (calc-buffer, calc-digit-value, math-expr-data): Declare them.
3033 (math-alg-inequalities): Move declaration to earlier in the file.
3034
3035 * calc/calc-ext.el (calc-command-flags, calc-gnuplot-buffer)
3036 (calc-gnuplot-input, math-normalize-a, math-integral-cache):
3037 Declare them.
3038
3039 * calc/calc-lang.el (math-expr-data, math-expr-token)
3040 (math-exp-old-pos): Declare them.
3041
3042 * calc/calc-vec.el (math-exp-pos, math-exp-str, math-exp-old-pos)
3043 (math-exp-token, math-exp-keep-spaces, math-expr-data): Declare them.
3044
3045 2004-11-27 Kim F. Storm <storm@cua.dk>
3046
3047 * progmodes/flymake.el: Use (featurep 'xemacs).
3048 (flymake-makehash): Change to defsubst. Use fboundp.
3049 (flymake-time-to-float): Remove.
3050 (flymake-float-time): Merge code from flymake-time-to-float here.
3051 (flymake-replace-regexp-in-string): Change to defsubst.
3052 (flymake-split-string-remove-empty-edges):
3053 Rename to flymake-split-string.
3054 (flymake-split-string): Remove previous defalias.
3055 (flymake-get-temp-dir): Change to defsubst.
3056 (flymake-make-xemacs-menu, flymake-xemacs-window-edges):
3057 Define for xemacs only.
3058 (flymake-master-file-count-limit): Change into compiler defvar only.
3059 (flymake-find-possible-master-files): Let-bind it dynamically while
3060 sorting files using flymake-master-file-compare.
3061
3062 2004-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
3063
3064 * font-lock.el (font-lock-compile-keywords): Don't complain if the end
3065 of defun-prompt-regexp matches inside a comment/string but the
3066 beginning is correctly outside everything.
3067
3068 * progmodes/tcl.el (tcl-omit-ws-regexp): Avoid the case where { or [
3069 appears within a string or a comment.
3070
3071 * emacs-lisp/cl-macs.el (cl-parse-loop-clause, labels): Use gensym
3072 rather than make-symbol for symbols which are used in
3073 a symbol-macrolet or equivalent.
3074
3075 2004-11-26 Jay Belanger <belanger@truman.edu>
3076
3077 * calc-misc.el (calc-last-why-command): Declare it.
3078
3079 * calc-vec.el (math-grade-vec): New variable.
3080 (calcFunc-grade, calcFunc-rgrade, math-grade-beforep):
3081 Replace variable grade-vec by declared variable.
3082 (math-rb-close): New variable.
3083 (math-read-brackets, math-read-vector): Replace variable close by
3084 declared variable.
3085
3086 * calc/calc-yank.el (calc-original-buffer, calc-return-buffer)
3087 (calc-one-window, calc-edit-handler, calc-restore-trail)
3088 (calc-allow-ret): Declare them.
3089
3090 * calc/calc-stuff.el (calc-flush-caches): Remove unnecessary variables.
3091 (math-lud-cache, math-log2-cache, math-radix-digits-cache)
3092 (math-radix-float-cache-tag, math-random-cache)
3093 (math-max-digits-cache, math-integral-cache, math-units-table)
3094 (math-format-date-cache, math-holidays-cache-tag): Declare them.
3095 (math-moc-func): New variable.
3096 (math-map-over-constants, math-map-over-constants-rec):
3097 Replace variable func by declared variable.
3098
3099 * calc/calc-store.el (calc-given-value, calc-store-opers):
3100 Declare them.
3101 (calc-var-name-map): Move declaration to earlier in the file.
3102 (calc-pv-pos): New variable.
3103 (calc-permanent-variable, calc-insert-permanent-variable):
3104 Replace variable pos by declared variable.
3105
3106 * calc/calc-mtx.el (calc-det-lu): New variable.
3107 (math-det-raw, math-det-step): Replace variable lu by declared variable.
3108
3109 * calc/calc-map.el (math-ms-temp, math-ms-args): New variables.
3110 (math-multi-subst, math-multi-subst-rec): Replace variables temp
3111 and arg by declared variables.
3112 (calcFunc-reducer): Fix incorrect variable.
3113 (math-inner-mul-func, math-inner-add-func): New variables.
3114 (calcFunc-inner, math-inner-mats): Replace variables mul-func
3115 and add-func by declared variables.
3116
3117 * calc/calc-incom.el (calc-prev-char, calc-prev-prev-char)
3118 (calc-digit-value): Declare them.
3119
3120 * calc/calc-help.el (Info-history): Declare it.
3121 (calc-describe-key): Make calc-summary-indentation a local variable.
3122 (calc-help-long-names): Move declaration to earlier in file.
3123
3124 * calc/calc-embed.el (calc-original-buffer): Declare it.
3125 (calc-embed-outer-top, calc-embed-outer-bot, calc-embed-top)
3126 (calc-embed-bot): New variables.
3127 (calc-do-embedded, calc-embedded-mark-formula)
3128 (calc-embedded-find-bounds, calc-embedded-duplicate)
3129 (calc-embedded-new-formula, calc-embedded-make-info):
3130 Replace vars outer-top, outer-bot, bot and top by declared variables.
3131 (calc-embed-prev-modes): New variable.
3132 (calc-embedded-set-modes, calc-embedded-update): Replace variable
3133 prev-modes with declared variable.
3134 (calc-embed-vars-used): New variable.
3135 (calc-embedded-make-info, calc-embedded-evaluate-expr)
3136 (calc-embedded-update, calc-embedded-find-vars): Replace variable
3137 vars-used by declared variable.
3138
3139 * calc/calc-bin.el (math-format-radix-float): Make pos a local variable.
3140 (math-format-radix-float): Remove unnecessary setq.
3141 (math-radix-float-cache): Declare it.
3142
3143 * calc/calcsel2.el (calc-keep-selection): Declare it.
3144
3145 * calc/calc-maint.el: Remove file.
3146
3147 2004-11-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3148
3149 * textmodes/bibtex.el (bibtex-sort-entry-class)
3150 (bibtex-comment-start): Use defcustom.
3151 (bibtex-entry-field-alist): Use nil if initial content of the
3152 field is undefined. Fix docstring.
3153 (bibtex-parse-keys-timeout, bibtex-autokey-additional-names)
3154 (bibtex-generate-autokey, bibtex-parse-buffers-stealthily)
3155 (bibtex-mode, bibtex-field-list, bibtex-entry-updat)
3156 (bibtex-autofill-entry, bibtex-entry-index, bibtex-next-field):
3157 Fix docstring.
3158 (bibtex-autokey-title-terminators): Use only one regexp.
3159 (bibtex-string-maybe-empty-head): New variable.
3160 (bibtex-remove-delimiters-string): New function.
3161 (bibtex-text-in-field-bounds, bibtex-text-in-string):
3162 Use bibtex-remove-delimiters-string.
3163 (bibtex-progress-message, bibtex-field-left-delimiter)
3164 (bibtex-field-right-delimiter, bibtex-entry-left-delimiter)
3165 (bibtex-entry-right-delimiter, bibtex-search-entry): Use eq.
3166 (bibtex-insert-kill): Rename from `bibtex-insert-current-kill'.
3167 Simplify.
3168 (bibtex-format-entry): Use save-excursion for inherited booktitle.
3169 Use eq and bibtex-remove-delimiters-string. For end markers use
3170 insertion type so that marker stays after inserted text.
3171 (bibtex-autokey-get-names): Return empty string if name is missing.
3172 (bibtex-autokey-demangle-name): Call bibtex-autokey-abbrev before
3173 calling bibtex-autokey-name-case-convert.
3174 (bibtex-autokey-demangle-title):
3175 Call bibtex-autokey-titleword-case-convert. Remove call to
3176 bibtex-autokey-titleword-case-convert from bibtex-autokey-get-title.
3177 (bibtex-global-key-alist, bibtex-read-string-key): New functions.
3178 (bibtex-read-key): New optional arg global.
3179 (bibtex-files-expand): New optional arg force.
3180 (bibtex-complete-string-cleanup): Expansion of abbrev can be absent.
3181 (bibtex-complete-crossref-cleanup): Rename from
3182 bibtex-complete-key-cleanup. Simplify code.
3183 (bibtex-copy-summary-as-kill): Remove arg key. Use looking-at.
3184 Operate on current entry.
3185 (bibtex-button): Add docstring.
3186 (bibtex-entry): Simplify.
3187 (bibtex-make-field): Replace optional arg called-by-yank with more
3188 specific args move and interactive.
3189 (bibtex-end-of-entry): Use forward-sexp.
3190 (bibtex-find-entry-globally): Remove.
3191 (bibtex-find-crossref): Allow for crossref key located in other buffer.
3192 Bound to C-c C-x.
3193 (bibtex-find-entry): New optional args global and display.
3194 (bibtex-find-text): Fix docstring. Remove arg as-if-interactive.
3195 (bibtex-validate): Use arg force of bibtex-files-expand.
3196 (bibtex-clean-entry): Bugfix, clean string entries properly.
3197 Always keep point at beginning of entry.
3198 (bibtex-complete): Bugfix. Handle string entries properly.
3199 Call cleanup functions only if needed.
3200 (bibtex-String): Use bibtex-read-string-key.
3201 (bibtex-url): Use bibtex-remove-delimiters-string. Do not alter
3202 case of replacement text.
3203
3204 2004-11-26 Lars Hansen <larsh@math.ku.dk>
3205
3206 * tramp.el (tramp-handle-directory-files-and-attributes): New function.
3207 (tramp-perl-directory-files-and-attributes): New constant.
3208 (tramp-file-name-handler-alist): Delete file-directory-files, add
3209 directory-files-and-attributes.
3210 (tramp-perl-file-attributes): Surround uid and gid by double
3211 quotes. Change parameter id-format from nonnumeric.
3212 (tramp-convert-file-attributes): New function.
3213 (tramp-handle-file-attributes): Use it.
3214 (tramp-maybe-send-perl-script): New function.
3215 (tramp-handle-file-attributes-with-perl): Use it. Don't convert
3216 file mode. Change parameter id-format from nonnumeric.
3217 (tramp-handle-file-attributes-with-ls): Change parameter id-format
3218 from nonnumeric.
3219 (tramp-post-connection): Don't send tramp-perl-file-attributes
3220 script. Reset connection property "perl-scripts".
3221 (tramp-handle-insert-directory): Run real handler when ls-lisp is
3222 in use.
3223
3224 2004-11-26 Lars Hansen <larsh@math.ku.dk>
3225
3226 * desktop.el (desktop-read): Replace mapcar with mapc.
3227 (desktop-create-buffer): Replace mapcar with mapc.
3228 Remove redundant piece of code.
3229
3230 2004-11-27 Nick Roberts <nickrob@snap.net.nz>
3231
3232 * progmodes/gud.el (gud-display-line): Use display-buffer
3233 for GDB-UI as for GUD.
3234
3235 * progmodes/gdb-ui.el (gdb-view-source, gdb-selected-view):
3236 Delete variables.
3237 (gdb-ann3): Don't make GUD buffer dedicated.
3238 (gdb-goto-breakpoint, gdb-display-buffer): Don't always dedicate.
3239 (gdb-display-source-buffer): Delete function.
3240 (gdb-view-source-function, gdb-view-assembler): Delete functions.
3241 (menu): Delete menu bindings for viewing source/assembler.
3242 (gdb-setup-windows, gdb-restore-windows):
3243 Don't dedicate GUD. No assembler now.
3244 (gdb-reset): No need to undedicate source buffers now.
3245 (gdb-source-info): No assembler now.
3246
3247 2004-11-26 Nick Roberts <nickrob@snap.net.nz>
3248
3249 * progmodes/gdb-ui.el (gdb-frame-parameters): Match height and
3250 width to those for special frames.
3251 (gdb-frame-breakpoints-buffer): Use gdb-frame-parameters.
3252 Use display-buffer.
3253 (gdb-frame-stack-buffer, gdb-frame-threads-buffer)
3254 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
3255 (gdb-frame-assembler-buffer): Rework like
3256 gdb-frame-breakpoints-buffer.
3257
3258 2004-11-25 Richard M. Stallman <rms@gnu.org>
3259
3260 * progmodes/flymake.el: Reindent.
3261 (flymake-split-string): Turn into defalias.
3262 (flymake-fix-file-name): Rename from flymake-fix-path-name.
3263 (flymake-ensure-ends-with-slash): Rename arg to FILENAME.
3264 (flymake-get-common-file-prefix): Rename from ...path... Doc fix.
3265 (flymake-build-relative-filename): Rename from ...path.
3266 Fix error message.
3267
3268 2004-11-25 Cheng Gao <chenggao@gmail.com>
3269
3270 * progmodes/flymake.el: Much whitespace and capitalization change.
3271 Move `provide' to end. Require `compile' only when compiling.
3272
3273 2004-11-24 Jay Belanger <belanger@truman.edu>
3274
3275 * calc/calc-alg.el: Added comment.
3276 (math-polynomial-base): Replace variable mpb-top-expr by
3277 math-poly-base-top-expr.
3278
3279 * calc/calc-poly.el (math-poly-base-top-expr): New variable.
3280 (math-polynomial-p1): Replace variable mpb-top-expr by declared
3281 variable.
3282 (math-poly-base-total-base): New variable.
3283 (math-total-polynomial-base, math-polynomial-p1): Replace variable
3284 mpb-total-base by declared variable.
3285 (math-factored-vars, math-to-list): Declare it.
3286 (math-fact-expr): New variable.
3287 (calcFunc-factors, calcFunc-factor, math-factor-expr)
3288 (math-factor-expr-try, math-factor-expr-part): Replace variable
3289 expr by declared variable.
3290 (math-fet-x): New variable.
3291 (math-factor-expr-try, math-factor-poly-coefs): Replace variable x
3292 by declared variable.
3293 (math-factor-poly-coefs): Make temp a local variable.
3294
3295 * calc/calc-units.el (calc-convert-units): Make units a local
3296 variable.
3297 (calc-num-units, calc-den-units): New variables.
3298 (calc-explain-units, calc-explain-units-rec): Replace variables
3299 num-units and den-units by declared variables.
3300 (math-cu-unit-list): New variable.
3301 (math-build-units-table, math-compare-unit-names)
3302 (math-convert-units, math-convert-units-rec): Replace variable
3303 unit-list by declared variable.
3304 (math-fbu-base, math-fbu-entry): New variables.
3305 (math-find-base-units, math-find-base-units-rec): Replace variables
3306 base and entry by declared variables.
3307 (math-which-standard): New variable.
3308 (math-to-standard-units, math-to-standard-rec): Replace variable
3309 which-standard by declared variable.
3310 (math-fcu-u): New variable.
3311 (math-find-compatible-unit, math-find-compatible-unit-rec):
3312 Replace variable u by declared variable.
3313 (math-cu-new-units, math-cu-pure): New variables.
3314 (math-convert-units, math-convert-units-rec): Replace variables
3315 new-units and pure by declared variables.
3316 (math-try-cancel-units): New variable.
3317 (math-simplify-units-quotient): Replace variable try-cancel-units by
3318 declared variable.
3319
3320 2004-11-24 Richard M. Stallman <rms@gnu.org>
3321
3322 * textmodes/ispell.el (ispell-check-version):
3323 If default-directory is nonexistent, use home dir.
3324
3325 * progmodes/grep.el (grep-regexp-alist):
3326 Don't match parens around line numbers.
3327
3328 * progmodes/cperl-mode.el (cperl-indent-region)
3329 (cperl-imenu--create-perl-index, cperl-xsub-scan):
3330 Don't print progress messages.
3331
3332 * progmodes/compile.el (compilation-mode-map):
3333 Don't inherit from compilation-minor-mode-map;
3334 copy its bindings instead. But the menu bar Compile
3335 entry now does inherit from compilation-menu-map.
3336
3337 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
3338 Use with-no-warnings around compiler-macroexpand.
3339
3340 * imenu.el: Don't always require newcomment.
3341 (imenu--generic-function): Call comment-normalize-vars
3342 if we have a comment syntax.
3343 Exit the loop if REGEXP matches the null string.
3344 Test comment-start as well as comment-start-skip
3345 when deciding whether to check for comments.
3346
3347 * tooltip.el (tooltip-mode): Doc fix.
3348
3349 * term.el (term-escape-char, term-mode): Doc fixes.
3350
3351 2004-11-24 Dave Love <fx@gnu.org>
3352
3353 * progmodes/python.el (python-font-lock-syntactic-keywords):
3354 Check for escapes in the regexp.
3355 (python-quote-syntax): Don't do it here.
3356
3357 2004-11-24 Nick Roberts <nickrob@snap.net.nz>
3358
3359 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
3360 (gdb-frames-mode-map, gdb-threads-mode-map)
3361 (gdb-registers-mode-map, gdb-locals-mode-map)
3362 (gdb-assembler-mode-map): Bind "q" to kill-this-buffer.
3363 (gdb-set-window-buffer): Rename from dedicated-switch-to-buffer.
3364
3365 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>:
3366 (dedicated-switch-to-buffer): Rework.
3367 (gdb-var-evaluate-expression-handler, gdb-put-string):
3368 Remove unused variable bindings.
3369 (gdb-setup-windows, gdb-display-buffer):
3370 Simplify. Use pop-to-buffer.
3371 (gdb-view-source-function): Simplify.
3372 (gdb-frame-breakpoints-buffer):
3373 Use pop-to-buffer, special-display-regexps.
3374
3375 2004-11-24 Glenn Morris <gmorris@ast.cam.ac.uk>
3376
3377 * progmodes/f90.el (f90-smart-end)
3378 (f90-previous-statement, f90-beginning-of-block): Doc fix.
3379 (f90-calculate-indent): Handle un-named PROGRAM blocks.
3380 (f90-end-of-block): Doc fix. Make check of outermost block
3381 conditional on value of `f90-smart-end'.
3382 (f90-block-match): Hack to deal with un-named PROGRAM blocks.
3383 Handle case where END-BLOCK is nil.
3384 (f90-match-end): Handle un-named PROGRAM blocks.
3385 (f90-backslash-not-special): New function.
3386
3387 2004-11-24 Jay Belanger <belanger@truman.edu>
3388
3389 * calc/calc.el (calc-embedded-active): Removed unnecessary
3390 declaration.
3391 (calc-show-banner): Removed redundant declaration.
3392
3393 * calc/calc-graph.el (calc-gnuplot-default-device)
3394 (calc-gnuplot-default-output, calc-gnuplot-print-device)
3395 (calc-gnuplot-print-output, calc-gnuplot-geometry)
3396 (calc-graph-default-resolution, calc-graph-default-resolution-3d):
3397 Remove redundant initial values.
3398
3399 * calc/calc-arith.el (math-scalar-functions)
3400 (math-nonscalar-functions, math-scalar-if-args-functions)
3401 (math-real-functions, math-positive-functions)
3402 (math-nonnegative-functions, math-real-scalar-functions)
3403 (math-real-if-arg-functions, math-integer-functions)
3404 (math-num-integer-functions, math-rounding-functions)
3405 (math-float-rounding-functions, math-integer-if-args-functions)
3406 (math-super-types): Move declarations to earlier in file.
3407 (math-unit-prefixes): Declared it.
3408 (math-floor-prec, math-trunc-prec): New variables.
3409 (math-trunc-fancy): Replace variable prec by declared variable.
3410 (math-floor-fancy): Replace variable prec by declared variable.
3411 (math-com-bterms): New variable.
3412 (math-commutative-equal, math-commutative-collect):
3413 Replace variable bterms by declared variable.
3414
3415 * calc/calc-misc.el (math-trunc): Replace variable prec by
3416 math-trunc-prec.
3417 (math-floor): Replace variable prec by math-floor-prec.
3418
3419 * calc/calc-forms.el (math-fd-date, math-fd-dt, math-fd-year)
3420 (math-fd-month, math-fd-day, math-fd-weekday, math-fd-hour)
3421 (math-fd-minute, math-fd-second, math-fd-bc-flag): New variables.
3422 (math-format-date, math-format-date-part): Replace variables
3423 date, dt, year, month, day, weekday, hour, minute, second and
3424 bc-flag by declared variables.
3425 (math-pd-str): New variable.
3426 (math-parse-date, math-parse-date-word, math-parse-standard-date):
3427 Replace variable str by declared variable.
3428 (math-daylight-savings-hook, math-tzone-names): Move definitions
3429 to earlier in the file.
3430 (var-TimeZone, math-exp-str, math-exp-pos): Declare them.
3431 (math-sh-year): New variable.
3432 (math-setup-add-holidays, math-setup-holidays)
3433 (math-setup-year-holidays): Replace variable `year' by declared
3434 variable.
3435
3436 * calc/calc-math.el (math-nrf-n, math-nrf-nf, math-nrf-nfm1):
3437 New variables.
3438 (math-nth-root-float, math-nth-root-float-iter): Replace variables
3439 n, nf and nfm1 by declared variables.
3440 (math-nri-n): New variable.
3441 (math-nth-root-integer, math-nth-root-int-iter): Replace variable
3442 n by declared variable.
3443 (calcFunc-log): Removed misplaced condition.
3444
3445 2004-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
3446
3447 * generic.el (generic-mode-set-comments): Accept an empty comment-end.
3448
3449 2004-11-24 Nick Roberts <nickrob@snap.net.nz>
3450
3451 * progmodes/gdb-ui.el (dedicated-switch-to-buffer): New function.
3452 (gdb-ann3, gdb-setup-windows, gdb-restore-windows):
3453 Dedicate gdb-related windows.
3454 (gdb-display-buffer): Dedicate gdb-related windows. Don't grab
3455 other frames.
3456 (gdb-reset): Remove dedicated property after debugging.
3457
3458 2004-11-24 Jay Belanger <belanger@truman.edu>
3459
3460 * calc/calc-sel.el: Add comment.
3461
3462 * calc/calc.el (math-stack-value-offset): Replace variables c,
3463 wid and off with math-svo-c, math-svo-wid and math-svo-off.
3464
3465 * calc/calccomp.el (math-comp-sel-tag): Declare it.
3466 (math-svo-c, math-svo-wid, math-svo-off): New variables.
3467 (math-stack-value-offset-fancy): Replace variables c, wid and off
3468 by declared variables.
3469 (math-comp-just, math-comp-comma-spc): New variables.
3470 (math-compose-expr, math-compose-matrix): Replace variables `just'
3471 and comma-spc by declared variable.
3472 (math-comp-vector-prec): New variable.
3473 (math-compose-expr, math-compose-matrix, math-compose-rows):
3474 Replace variable vector-prec by declared variable.
3475 (math-comp-left-bracket, math-comp-right-bracket)
3476 (math-comp-comma): New variables.
3477 (math-compose-expr, math-compose-rows): Replace variables
3478 left-bracket, right-bracket and comma by declared variables.
3479 (math-comp-full-width): New variable.
3480 (math-comp-to-string-flat, math-comp-to-string-flat-term):
3481 Replace variable full-width by declared variable.
3482 (math-comp-highlight, math-comp-word, math-comp-level)
3483 (math-comp-margin, math-comp-pos, math-comp-buf, math-comp-base)
3484 (math-comp-hgt, math-comp-tag, math-comp-hpos, math-comp-vpos):
3485 New variables.
3486 (math-comp-to-string-flat, math-comp-to-string-flat-term)
3487 (math-comp-sel-flat-term): Replace variables comp-highlight,
3488 comp-word, comp-level, comp-margin, comp-pos and comp-buf by
3489 declared variables.
3490 (math-comp-simplify, math-comp-simplify-term)
3491 (math-comp-add-string, math-comp-add-string-sel):
3492 Replace variables comp-highlight, comp-buf, comp-base,
3493 comp-height, comp-tag, comp-hpos and comp-vpos by declared variables.
3494
3495 2004-11-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3496
3497 * cus-start.el (all): Add x-use-old-gtk-file-dialog.
3498
3499 * mail/emacsbug.el (report-emacs-bug): Catch error that x-server-vendor
3500 and x-server-version may throw.
3501
3502 2004-11-23 Kim F. Storm <storm@cua.dk>
3503
3504 * subr.el (substitute-key-definition-key): Optimize.
3505 Don't call indirect-function for nil defn (always signals error).
3506
3507 * ido.el (ido-read-internal): Fix require-match check when
3508 ido-directory-too-big is set.
3509
3510 2004-11-23 Jay Belanger <belanger@truman.edu>
3511
3512 * calc/calc-ext.el (math-read-replacement-list)
3513 (math-read-superscripts): New variables.
3514 (math-read-preprocess-string): New function.
3515 (math-read-expr): Filter input through math-read-preprocess-string.
3516
3517 * calc/calc-aent.el (math-read-exprs): Filter input through
3518 math-read-preprocess-string.
3519
3520 2004-11-23 Daniel Pfeiffer <occitan@esperanto.org>
3521
3522 * progmodes/compile.el (compilation-start): In cd command use
3523 substitute-env-vars -- not quite shell compatible but better than
3524 nothing.
3525 (compilation-error-regexp-alist-alist): Simplify ftnchek to only
3526 handle the newer versions messages, which are more parseable.
3527
3528 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
3529
3530 * reveal.el (reveal-mode-map): New var.
3531 (reveal-mode): Use it.
3532
3533 2004-11-23 Nick Roberts <nickrob@snap.net.nz>
3534
3535 * progmodes/gdb-ui.el (gdb-flush-pending-output): New variable.
3536 (gdb-send-item, gdb-resync, gud-gdba-marker-filter): Use it.
3537
3538 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
3539
3540 * buff-menu.el (list-buffers-noselect): Re-add the leading space in the
3541 header-line when needed.
3542 Use fixed-pitch only in the header-line.
3543 Build the underline automatically. Use emdash if available.
3544
3545 2004-11-22 Richard M. Stallman <rms@gnu.org>
3546
3547 * dired.el (dired-recursive-copies): Move from dired-aux.el.
3548 * dired-aux.el (dired-recursive-copies): Move to dired.el.
3549
3550 2004-11-22 Nick Roberts <nickrob@snap.net.nz>
3551
3552 * progmodes/gdb-ui.el (gdb-resync): New function.
3553 (gdb-pre-prompt, gdb-prompt, gdb-starting, gdb-stopping)
3554 (gdb-frame-begin, gdb-stopped, gdb-post-prompt):
3555 Use it to fail more gracefully.
3556 (gdb-variables): Delete variable.
3557 Re-order variables to reduce byte-compiler warnings.
3558
3559 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
3560
3561 * descr-text.el (describe-char):
3562 * paren.el (show-paren-function):
3563 * subr.el (syntax-after): Undo last change.
3564
3565 * progmodes/python.el (run-python): Don't hard code *Python*.
3566 Don't modify global process-environment.
3567 (python-send-region, python-load-file): Don't assume that
3568 python-buffer == (process-buffer (python-proc)).
3569 (python-switch-to-python): Simplify.
3570
3571 * dired.el (dired-align-file): Don't assume line starts with spaces.
3572
3573 2004-11-21 Jay Belanger <belanger@truman.edu>
3574
3575 * calc/calc-ext.el (math-read-big-expr, math-read-big-bigp):
3576 Replace variable `lines' by math-read-big-lines.
3577 (math-read-big-expr): Replace variables the-baseline, the-h2
3578 and err-msg by math-read-big-baseline, math-read-big-h2 and
3579 math-read-err-msg.
3580 (math-read-big-bigp): Replace variable h2 with math-rb-h2.
3581
3582 * calc/calc-lang.el (math-read-big-rec): Fix typo.
3583 (math-read-big-balance): Replace unbound variable by value.
3584 (math-read-big-lines): New variable.
3585 (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
3586 (math-read-big-error, math-read-big-balance): Replace variable
3587 `lines' by declared variable.
3588 (math-read-big-baseline, math-read-big-h2): New variables.
3589 (math-read-big-rec): Replace variables the-baseline and the-h2
3590 by declared variables.
3591 (math-rb-h1, math-rb-h2, math-rb-v1, math-rb-v2): New variables.
3592 (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
3593 (math-read-big-balance): Replace variables h1, h2, v1 and v2 by
3594 declared variables.
3595 (math-read-big-err-msg): New variable.
3596 (math-read-big-error): Replace variable err-msg by declared variable.
3597
3598 2004-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3599
3600 * ses.el: Add coding cookie.
3601 Fix up docstrings, follow new commenting conventions.
3602 (ses-header-line-menu): Fix missing variable rename for header-row.
3603 (ses-cell-size): Remove.
3604 (ses-make-cell): New function.
3605 (ses-cell, ses-insert-row, ses-insert-column): Use it.
3606 (ses-calculate-cell): Remove unused var `symbol'.
3607 (ses-narrowed-p): New function.
3608 (ses-goto-data, undo-more, ses-reconstruct-all): Use it.
3609 (ses-initial-file-trailer): Change ;;; to ;; for local vars.
3610 (ses-load, ses-reconstruct-all): Adjust string search accordingly.
3611 (ses-setup): Use restore-buffer-modified-p.
3612 (ses-cleanup): Remove unused var `end'.
3613 (ses-header-string-left-offset): Remove.
3614 (ses-create-header-string): Adjust to new behavior of `align-to'.
3615 Truncate excessively large fields to preserve alignment.
3616 (ses-reconstruct-all): Remove unused var `refs'.
3617 (ses-read-cell-printer): Remove unused var `prompt'.
3618 (ses-delete-row): Remove unused var `pos'.
3619 (ses-delete-column): Remove unused var `new'.
3620
3621 2004-11-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3622
3623 * ps-print.el: Insert :version tag into all defgroup and defcustom.
3624 Use (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
3625 Eliminate eval-and-compile usage.
3626 (ps-insert-file): Use insert-file-contents instead of insert-file.
3627 (ps-setup): Code fix.
3628
3629 * printing.el (pr-setup, lpr-setup): Code fix.
3630
3631 2004-11-21 Jay Belanger <belanger@truman.edu>
3632
3633 * calc/calc-prog.el (math-integral-cache-state, calc-lang)
3634 (calc-original-buffer): Declare them.
3635 (calc-user-formula-alist): New variable.
3636 (calc-user-define-formula, calc-fix-user-formula)
3637 (calc-user-define-composition, calc-finish-formula-edit):
3638 Replace variable `alist' by declared variable.
3639 (var-q0, var-q1, var-q2, var-q3, var-q4, var-q5, var-q6)
3640 (var-q7, var-q7, var-q8, var-q9): Declare them.
3641 (calc-kbd-push): Don't check to see if var-q0 through var-q9
3642 are bound.
3643 (calcFunc-typeof): Replace undeclared variable by expression.
3644 (math-exp-env): New variable.
3645 (math-define-body, math-define-exp): Replace exp-env by declared var.
3646 (math-define-exp): Replace misplaced variable by expression.
3647
3648 * calc/calcalg3.el (calc-curve-nvars, calc-curve-varnames)
3649 (calc-curve-model, calc-curve-coefnames): New variables.
3650 (calc-curve-fit, calc-get-fit-variables): Replace variables nvars,
3651 varnames, model and coefnames by declared variables.
3652 (math-root-widen): New variable.
3653 (math-search-root, math-find-root): Replace variable root-widen by
3654 declared variable.
3655 (var-DUMMY): Declare it.
3656 (math-root-vars, math-min-vars): Move the declarations to earlier in
3657 the file.
3658 (math-brent-min): Make d a local variable.
3659 (math-find-minimum): Replace non-existent variable.
3660 (math-ninteg-romberg): Remove unnecessary variable.
3661 (math-ninteg-temp): New variable.
3662 (math-ninteg-romberg, math-ninteg-midpoint): Replace variable
3663 integ-temp by declared variable.
3664 (math-fit-first-var, math-fit-first-coef, math-fit-new-coefs):
3665 New variables.
3666 (math-general-fit): Replace variables first-var, first-coef and
3667 new-coefs by declared variables.
3668 (calcFunc-fitvar): Replace variable first-var by declared variable.
3669 (calcFunc-fitparam): Replace variable first-coef by declared variable.
3670 (calcFunc-fitdummy): Replace variable new-coefs by declared variable.
3671 (math-all-vars-vars, math-all-vars-found): New variables.
3672 (math-all-vars-in, math-all-vars-rec): Replace variables vars and
3673 found by declared variable math-all-vars-vars.
3674
3675 2004-11-20 Luc Teirlinck <teirllm@auburn.edu>
3676
3677 * emacs-lisp/cust-print.el (custom-printers): Use `defvar' instead
3678 of `defconst'.
3679
3680 2004-11-20 Richard M. Stallman <rms@gnu.org>
3681
3682 * isearch.el (isearch-mode-map): Don't bind SPC.
3683 (isearch-whitespace-chars): Function deleted.
3684 (isearch-search): Bind search-spaces-regexp.
3685 (isearch-lazy-highlight-search): Likewise.
3686 (search-whitespace-regexp): Doc fix.
3687 (isearch-forward-regexp): Doc fix.
3688
3689 * emacs-lisp/bytecomp.el (byte-compile-form):
3690 Move the calls to byte-compile-set-symbol-position,
3691 to avoid having two for the same symbol occurrence.
3692
3693 * comint.el (comint-input-ring-size): Increase to 150.
3694
3695 * hexl.el (hexl-mode-old-hl-line-mode, hexl-mode-old-ruler-mode):
3696 New variables.
3697 (hexl-mode): Set those variables, record ruler-mode and hl-line-mode.
3698 (hexl-mode-exit): Restore status of ruler-mode and hl-line-mode.
3699
3700 * imenu.el (imenu--generic-function):
3701 Ensure we keep moving backward even if BEG isn't further back.
3702
3703 * replace.el (query-replace-read-to, query-replace-read-from):
3704 Specify t for KEEP-ALL in read-from-minibuffer.
3705
3706 * progmodes/python.el (python-switch-to-python):
3707 If Python isn't running, start it.
3708 Don't alter debug-ignored-errors.
3709
3710 * progmodes/cperl-mode.el (cperl-indent-region):
3711 Don't mind imenu-scanning-message.
3712
3713 * bindings.el (global-map): Bind C-e to move-end-of-line.
3714
3715 * simple.el (line-move-finish): New arg FORWARD.
3716 Ignore invisible newlines, not intangible ones.
3717 Conditions for acceptable stopping positions depend on FORWARD.
3718 (line-move): Pass FORWARD arg to line-move-finish.
3719
3720 * buff-menu.el (list-buffers-noselect): Eliminate space at the start
3721 of HEADER. Compensate for this change in the code to add display
3722 properties. Don't make the first line intangible.
3723
3724 * info.el (Info-search): Fix previous change.
3725
3726 2004-11-20 Thien-Thi Nguyen <ttn@gnu.org>
3727
3728 * Makefile.in (recompile): Revert 2004-11-19 change.
3729 (compile): Likewise.
3730
3731 2004-11-19 Luc Teirlinck <teirllm@auburn.edu>
3732
3733 * Makefile.in (compile): Set `max-specpdl-size' before compiling.
3734
3735 2004-11-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3736
3737 * progmodes/ebnf2ps.el: Fix typos. Insert :version tag into all
3738 defgroup and defcustom. Eliminate eval-and-compile usage.
3739
3740 * progmodes/ebnf-otz.el: Fix typos.
3741
3742 2004-11-19 Jay Belanger <belanger@truman.edu>
3743
3744 * calc/calc-yank.el (calc-edit-disp-trail): New variable.
3745 (calc-edit-finish, calc-finish-stack-edit): Replace variable
3746 disp-trail by declared variable.
3747
3748 * calc/calc-sel.el (calc-edit-disp-trail): Declare it.
3749 (calc-finish-selection-edit): Replace variable disp-trail by
3750 declared variable.
3751 (calc-selection-cache-entry): Move declaration to earlier in the file.
3752 (calc-selection-cache-num, calc-selection-cache-comp)
3753 (calc-selection-cache-offset, calc-selection-true-num)
3754 (calc-final-point-line, calc-final-point-column)
3755 (calc-original-buffer): Declare them.
3756 (calc-fnp-op, calc-fnp-num): New variables.
3757 (calc-find-nth-part, calc-find-nth-part-rec)
3758 (calc-select-previous): Replace op and num by declared variables.
3759 (calc-rsf-old, calc-rsf-new): New variables.
3760 (calc-replace-sub-formula, calc-replace-sub-formula-rec):
3761 Replace variables old and new by declared variables.
3762 (calc-sel-reselect): New variable.
3763 (calc-auto-selection, calc-enter-selection, calc-edit-selection)
3764 (calc-sel-evaluate, calc-sel-expand-formula, calc-sel-expand-formula)
3765 (calc-sel-mult-both-sides, calc-sel-add-both-sides): Replace variable
3766 reselect with declared variable.
3767
3768 * calc/calc-rewr.el (math-regs, math-num-regs, math-prog-last)
3769 (math-bound-vars, math-conds, math-copy-neg, math-rhs)
3770 (math-pattern, math-remembering, math-aliased-vars, math-mt-many)
3771 (math-import-list, math-rewrite-phase): Declare them.
3772 (math-rewrite): Use let* to declare variables.
3773 (calc-rewrite-selection): Make rules a local variable.
3774 (calc-rewr-sel): New variable.
3775 (calc-rewrite-selection, calc-locate-selection-marker)
3776 (calc-rewrite): Use the declared variable calc-rewr-sel instead
3777 of sel.
3778 (math-rewrite-whole-expr): New variable.
3779 (math-rewrite, math-rewrite-phase): Replace variable expr by
3780 declared variable.
3781 (math-rewrite-heads-heads, math-rewrite-heads-skips)
3782 (math-rewrite-heads-blanks ): New variables.
3783 (math-rewrite-heads, math-rewrite-heads-rec): Replace variables
3784 heads, skips and blanks by declared variables.
3785 (math-rwcomp-subst-old, math-rwcomp-subst-new)
3786 (math-rwcomp-subst-old-func, math-rwcomp-subst-new-func):
3787 New variables.
3788 (math-rwcomp-substitute, math-rwcomp-subst-rec): Replace variables
3789 old, new, old-func and new-func by declared variables.
3790 (math-rwcomp-assoc-args, math-rwcomp-addsub-args):
3791 Remove unnecessary variable.
3792 (math-apply-rw-regs): New variable.
3793 (math-apply-rewrites, math-rwapply-replace-regs)
3794 (math-rwapply-reg-looks-negp): Replace variable regs by declared var.
3795 (math-apply-rw-ruleset): New variable.
3796 (math-apply-rewrites, math-rwapply-remember): Replace variable
3797 ruleset by declared variable.
3798
3799 2004-11-19 Richard M. Stallman <rms@gnu.org>
3800
3801 * info.el (Info-search): Use search-whitespace-regexp.
3802
3803 2004-11-19 Thien-Thi Nguyen <ttn@gnu.org>
3804
3805 * vc-rcs.el (vc-rcs-parse): New function.
3806 (vc-rcs-annotate-command): Likewise.
3807 (vc-rcs-annotate-current-time): Likewise.
3808 (vc-rcs-annotate-time): Likewise.
3809 (vc-rcs-annotate-extract-revision-at-line): Likewise.
3810
3811 2004-11-19 Thien-Thi Nguyen <ttn@gnu.org>
3812
3813 * Makefile.in (recompile): Set `max-specpdl-size' before compiling.
3814
3815 2004-11-18 Jay Belanger <belanger@truman.edu>
3816
3817 * calc/calc-alg.el (math-simplify-divisor): Remove unnecessary vars.
3818
3819 2004-11-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3820
3821 * printing.el: Eliminate use of interactive-p and eval-and-compile.
3822 Use of (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
3823 Use make-temp-file to generate PostScript files in any situation.
3824 (pr-ps-temp-file): Now specify a prefix to generate temporary files.
3825 (pr-interactive-p): Eliminate var.
3826 (pr-save-interactive): Eliminate macro.
3827 (pr-interface, pr-ps-directory-preview)
3828 (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
3829 (pr-ps-directory-ps-print, pr-ps-buffer-preview)
3830 (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
3831 (pr-ps-buffer-ps-print, pr-ps-region-preview)
3832 (pr-ps-region-using-ghostscript, pr-ps-region-print)
3833 (pr-ps-region-ps-print, pr-ps-mode-preview)
3834 (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
3835 (pr-printify-directory, pr-txt-directory, pr-despool-preview)
3836 (pr-despool-using-ghostscript, pr-despool-print, pr-despool-ps-print)
3837 (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
3838 (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
3839 (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
3840 (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
3841 (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
3842 (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
3843 (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
3844 (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
3845 (pr-update-menus, pr-interface-ps-prin, pr-interface-preview):
3846 Eliminate pr-save-interactive usage.
3847 (pr-menu-lock, pr-ps-utility-args, pr-set-outfilename):
3848 Eliminate pr-interactive-p usage.
3849 (pr-toggle-file-duplex-menu, pr-toggle-file-tumble-menu)
3850 (pr-toggle-file-landscape-menu, pr-toggle-ghostscript-menu)
3851 (pr-toggle-faces-menu, pr-toggle-spool-menu, pr-toggle-duplex-menu)
3852 (pr-toggle-tumble-menu, pr-toggle-landscape-menu)
3853 (pr-toggle-upside-down-menu, pr-toggle-line-menu, pr-toggle-zebra-menu)
3854 (pr-toggle-header-menu, pr-toggle-header-frame-menu)
3855 (pr-toggle-lock-menu, pr-toggle-region-menu, pr-toggle-mode-menu):
3856 New funs.
3857 (pr-ps-file): Use make-temp-file to generate a temporary file.
3858
3859 2004-11-17 Jay Belanger <belanger@truman.edu>
3860
3861 * calc/calc-alg.el (calc-poly-div): Make calc-poly-div-remainder
3862 a local variable.
3863 (math-eval-rules-cache, math-eval-rules-cache-other): Declare them.
3864 (math-top-only): New variable.
3865 (math-simplify, math-simplify-step): Replace variable top-only by
3866 declared variable math-top-only.
3867 (math-simplify-expr): Declare it.
3868 Replace argument expr in all calls of math-defsimplify by
3869 math-simplify-expr.
3870 (math-simplify-plus, math-simplify-times, math-simplify-divide)
3871 (math-simplify-divisor, math-simplify-one-divisor)
3872 (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt)
3873 (math-simplify-pow): Replace variable expr by declared variable
3874 math-simplify-expr.
3875 (math-simplify-divisor): Remove local variables temp and op.
3876 (math-simplify-one-divisor): Make temp and op local variables.
3877 (math-simplify-divisor-nover, math-simplify-divisor-dover):
3878 New variables.
3879 (math-simplify-divisor, math-simplify-one-divisor):
3880 Replace variables nover and dover by declared variables.
3881 (math-expr-subst-new, math-expr-subst-old): New variables.
3882 (math-expr-subst, math-expr-subst-rec): Replace variables new
3883 and old by declared variables.
3884 (math-is-poly-degree, math-is-poly-loose): New variables.
3885 (math-is-polynomial, math-is-poly-rec): Replace variables degree
3886 and loose by declared variables.
3887 (math-poly-base-const-ok, math-poly-base-pred): New variables.
3888 (math-polynomial-base, math-polynomial-base-rec):
3889 Replace variables const-ok and mpb-pred by declared variables.
3890
3891 * calc/calc-poly.el (calc-poly-div-remainder): Declare it.
3892
3893 * calc/calc-ext.el (math-defsimplify): Change the argument in
3894 the created function to math-simplify-expr.
3895
3896 * calc/calc-units.el (math-simplify-expr): Declare it.
3897 Replace argument expr in all calls of math-defsimplify by
3898 math-simplify-expr.
3899 (math-simplify-units-prod): Replace variable expr by declared
3900 variable math-simplify-expr.
3901
3902 2004-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
3903
3904 * buff-menu.el (list-buffers-noselect): Massage to fit in 80 columns.
3905 Replace mapcar->dolist, format->string.
3906
3907 2004-11-17 Miles Bader <miles@gnu.org>
3908
3909 * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el
3910 * progmodes/idlwave.el: Remove RCS keywords.
3911
3912 2004-11-17 J.D. Smith <jdsmith@as.arizona.edu>
3913
3914 * progmodes/idlwave.el, progmodes/idlw-toolbar.el
3915 * progmodes/idlw-shell.el, progmodes/idlw-rinfo.el:
3916 Update to IDLWAVE version 5.5. Too many changes to list them here.
3917 * progmodes/idlw-help.el: New file.
3918
3919 2004-11-16 Richard M. Stallman <rms@gnu.org>
3920
3921 * international/iso-cvt.el (iso-tex2iso-trans-tab):
3922 Discard spaces after \i according to TeX rules.
3923
3924 * international/mule.el (set-buffer-file-coding-system):
3925 New arg NOMODIFY.
3926 (after-insert-file-set-coding): Pass that new arg.
3927 Prevent set-buffer-multibyte from trying to lock the file.
3928
3929 * buff-menu.el (list-buffers-noselect): New arg BUFFER-LIST.
3930
3931 * saveplace.el (save-place): Doc fix.
3932
3933 * dabbrev.el (dabbrev-expand): When handling SPC M-/,
3934 temporarily widen before finding the following word to copy.
3935
3936 * emacs-lisp/lucid.el (map-keymap): Definition deleted.
3937 (cl-map-keymap): Definition deleted.
3938
3939 * subr.el (map-keymap-internal): New function.
3940
3941 2004-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3942
3943 * textmodes/flyspell.el (flyspell-mouse-map): Pop the menu
3944 when pressing rather than when releasing mouse-2. Simplify.
3945
3946 2004-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3947
3948 * progmodes/compile.el (compilation-setup): Don't set buffer-read-only.
3949 (compilation-mode): Set it here instead.
3950
3951 * emacs-lisp/cl-compat.el (pair-with-newsyms): Use make-symbol.
3952
3953 * emacs-lisp/cl-macs.el: Use make-symbol rather than gensym.
3954 (loop, cl-parse-loop-clause, defsetf): Use backquote.
3955
3956 2004-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
3957
3958 * progmodes/compile.el (compilation-internal-error-properties):
3959 Fix up a transposition-typo. Check end-col before using it.
3960
3961 2004-11-14 Frederic Han <han@math.jussieu.fr> (tiny change)
3962
3963 * international/iso-cvt.el (iso-tex2iso-trans-tab):
3964 Discard whitespace after macro \i when converting it.
3965
3966 2004-11-16 Juri Linkov <juri@jurta.org>
3967
3968 * emacs-lisp/find-func.el (find-function-regexp):
3969 Optimize `define-minor-mode'. Add `defun-cvs-mode'.
3970 Add `deffoo'. Add `f' to [^cgv] to exclude `defface'.
3971 Remove invalid `\W' from [^cgv\W]. Doc fix.
3972 (find-function-search-for-symbol): Replace "\\>" with "\\_>".
3973
3974 2004-11-15 Luc Teirlinck <teirllm@auburn.edu>
3975
3976 * play/life.el: Maintainer is now FSF.
3977 (life-patterns, life-neighbor-deltas, life-window-start)
3978 (life-current-generation, life-generation-string): Use defvar
3979 instead of defconst.
3980
3981 2004-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3982
3983 * progmodes/compile.el (compilation-move-to-column): New fun.
3984 (compilation-internal-error-properties)
3985 (compilation-next-error-function): Use it to make sure we don't go past
3986 the end of line.
3987
3988 2004-11-15 John Paul Wallington <jpw@gnu.org>
3989
3990 * autoinsert.el (auto-insert-alist): Insert the user's name in
3991 copyright notice, rather than Free Software Foundation, for the
3992 Emacs Lisp header case too.
3993
3994 2004-11-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3995
3996 * printing.el (pr-ps-file-print, pr-toggle-duplex): Fix typos.
3997 Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
3998 (pr-switches-string): If SWITCHES is nil, return nil. Otherwise,
3999 return the list of string in a string.
4000 (pr-call-process): Message if calling process returns an error, that
4001 is, the exit status is different of zero.
4002
4003 2004-11-15 Jay Belanger <belanger@truman.edu>
4004
4005 * calc/calcalg2.el (math-integrate-by-parts): Remove unused
4006 variable var-thing.
4007 (math-integ-depth, math-integ-level, math-integral-limit)
4008 (math-enable-subst, math-any-substs, math-integ-msg)
4009 (math-prev-parts-v, math-good-parts, math-max-integral-limit)
4010 (math-int-threshold, math-int-factors, math-double-roots)
4011 (math-solve-simplifying, var-IntegLimit, math-solve-sign)
4012 (var-GenCount): Declare these variables.
4013 (calcFunc-integ): Don't check if var-IntegLimit is bound.
4014 (math-integral-cache, math-integral-cache-state):
4015 Move declarations to earlier in the file.
4016 (math-deriv-var, math-deriv-total, math-deriv-symb)
4017 (math-cur-record, math-has-rules, math-t1, math-t2, math-t3)
4018 (math-so-far, math-integ-expr, math-expr-parts, calc-low)
4019 (calc-high, math-solve-var, math-solve-full, math-solve-vars)
4020 (math-try-solve-sign, math-solve-b, math-solve-system-vv)
4021 (math-solve-res): New variables
4022 (math-derivative, calcFunc-deriv, calcFunc-tderiv)
4023 (math-integral, math-replace-integral-parts)
4024 (math-integrate-by-parts, calc-dump-integral-cache)
4025 (math-try-integral, math-do-integral, math-do-integral)
4026 (math-do-integral-methods, math-try-solve-for)
4027 (math-try-solve-prod, math-solve-poly-funny-powers)
4028 (math-solve-crunch-poly, math-decompose-poly)
4029 (math-solve-find-root-term, math-find-root-in-prod)
4030 (math-integ-try-linear-substitutions)
4031 (math-integ-try-substitutions, math-expr-rational-in)
4032 (math-expr-rational-in-rec, calcFunc-table, math-scan-for-limits)
4033 (math-solve-prod, math-solve-quartic, math-poly-all-roots)
4034 (math-solve-for, math-solve-system, math-solve-system-rec)
4035 (math-solve-get-sign, math-solve-get-int)
4036 (math-solve-system-subst): Replace undeclared variables with newly
4037 declared variables.
4038
4039 2004-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4040
4041 * winner.el (winner-active-region, winner-edges, winner-window-list):
4042 Define at toplevel.
4043 (winner-mode-map): Move init inside declaration.
4044
4045 2004-11-14 Luc Teirlinck <teirllm@auburn.edu>
4046
4047 * files.el (convert-standard-filename): Doc fix.
4048
4049 2004-11-14 Daniel Pfeiffer <occitan@esperanto.org>
4050
4051 * files.el (auto-mode-alist): Handle .gtkrc, and under /etc
4052 passwd, group, shadow, default/* and pam.d/*.
4053
4054 2004-11-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4055
4056 * printing.el (pr-menu-spec): Adjust menu specification.
4057
4058 2004-11-13 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4059
4060 * printing.el: Doc fix. Insert :version tag into all defcustom.
4061 Handle interactive-p as is recommended in Emacs Lisp Reference.
4062 Set the file permission bits for newly created files.
4063 Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
4064 The printing menu specification (in `pr-menu-spec') was merged.
4065 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
4066 (pr-version): New version number (6.8.3).
4067 (pr-file-modes): New option.
4068 (pr-interactive-p): New var.
4069 (pr-save-interactive, pr-save-file-modes): New macros.
4070 (pr-setup): Code fix.
4071 (pr-menu-spec): Menu specification merged.
4072 (pr-call-process, pr-text2ps): Set file permission bits.
4073 (pr-despool-print): Set file permission bits. Handle interactive-p as
4074 is recommended.
4075 (pr-interface, pr-ps-directory-preview)
4076 (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
4077 (pr-ps-directory-ps-print, pr-ps-buffer-preview)
4078 (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
4079 (pr-ps-buffer-ps-print, pr-ps-region-preview)
4080 (pr-ps-region-using-ghostscript, pr-ps-region-print)
4081 (pr-ps-region-ps-print, pr-ps-mode-preview)
4082 (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
4083 (pr-printify-directory, pr-txt-directory, pr-despool-preview)
4084 (pr-despool-using-ghostscript, pr-despool-ps-print)
4085 (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
4086 (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
4087 (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
4088 (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
4089 (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
4090 (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
4091 (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
4092 (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
4093 (pr-menu-lock, pr-update-menus, pr-ps-utility-args)
4094 (pr-set-outfilename, pr-interface-ps-print, pr-interface-preview):
4095 Handle interactive-p as is recommended.
4096
4097 2004-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4098
4099 * emacs-lisp/byte-opt.el (byte-optimize-inline-handler): Simplify.
4100 (byte-decompile-bytecode-1): Remove unused vars `tag' and `retcount'.
4101
4102 * font-lock.el (font-lock-fontify-syntactically-region): Fix last fix
4103 so it doesn't forget to highlight the beginning of the region either.
4104
4105 2004-11-13 Daniel Pfeiffer <occitan@esperanto.org>
4106
4107 * progmodes/cc-mode.el (c-basic-common-initc-font-lock-init)
4108 (c-font-lock-init): Eliminate obsolete make-local-hook.
4109 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
4110 (awk-mode): Use run-mode-hooks.
4111
4112 * progmodes/cperl-mode.el (cperl-mode): Use run-mode-hooks.
4113
4114 2004-11-13 Kim F. Storm <storm@cua.dk>
4115
4116 * mouse.el (mouse-drag-copy-region): Add :version.
4117 (mouse-drag-mode-line-1): Let bind mouse-autoselect-window to nil
4118 while dragging mode line, so mode line can be dragged downwards.
4119 (mouse-drag-region-1): Let bind make-cursor-line-fully-visible
4120 while pressing mouse button so window doesn't scroll until we
4121 release the mouse if clicking on partially visible line.
4122
4123 2004-11-12 Jay Belanger <belanger@truman.edu>
4124
4125 * calc/calc-graph.el (calc-dumb-map): Declare it.
4126 (calc-graph-show-dumb): Check if calc-dumb-map is non-nil rather
4127 than unbound.
4128 (calc-graph-name): Made `end' a local variable.
4129 (calc-graph-lookup): Made `varname' a local variable.
4130 (var-DUMMY, var-DUMMY2, var-PlotRejects, calc-gnuplot-trail-mark):
4131 Declare them.
4132 (calc-graph-format-data): Don't check if var-PlotRejects is bound.
4133 (calc-graph-plot, calc-graph-compute-3d): Remove references to
4134 the unused variable y3vec.
4135 (calc-graph-show-dumb): Remove reference to unused variable found-pt.
4136 (calc-graph-kill-hook, calc-graph-plot): Remove reference to
4137 calc-graph-prev-kill-hook.
4138 (calc-graph-yvalue, calc-graph-yvec, calc-graph-numsteps)
4139 (calc-graph-numsteps3, calc-graph-xvalue, calc-graph-xvec)
4140 (calc-graph-xname, calc-graph-yname, calc-graph-xstep)
4141 (calc-graph-ycache, calc-graph-ycacheptr, calc-graph-refine)
4142 (calc-graph-keep-file, calc-graph-xval, calc-graph-xlow)
4143 (calc-graph-xhigh, calc-graph-yval, calc-graph-yp, calc-graph-xp)
4144 (calc-graph-zp, calc-graph-yvector, calc-graph-resolution)
4145 (calc-graph-y3value, calc-graph-y3name)
4146 (calc-graph-y3step, calc-graph-y3step, calc-graph-zval)
4147 (calc-graph-stepcount, calc-graph-is-splot)
4148 (calc-graph-surprise-splot, calc-graph-blank)
4149 (calc-graph-non-blank, calc-graph-curve-num): New variables.
4150 (calc-graph-plot, calc-graph-compute-2d, calc-graph-refine-2d)
4151 (calc-graph-recompute-2d, calc-graph-compute-3d)
4152 (calc-graph-format-data): Replace undeclared variables with the
4153 above newly declared variables.
4154
4155 2004-11-12 Diane Murray <dsm@muenster.de> (tiny change)
4156
4157 * mail/rmail.el (rmail-get-new-mail): Use the renamed variables
4158 `rsf-beep' and `rsf-sleep-after-message'.
4159
4160 * mail/rmail-spam-filter.el (rmail-spam-filter): Only check white
4161 list if `message-sender' is non-nil.
4162
4163 2004-11-12 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
4164
4165 * desktop.el (desktop-create-buffer, desktop-save): Avoid some
4166 consing by using mapc instead of mapcar.
4167
4168 2004-11-12 Nick Roberts <nickrob@snap.net.nz>
4169
4170 * tooltip.el (require): Explain why CL is needed.
4171
4172 2004-11-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4173
4174 * printing.el: Insert :version into defgroup (printing). All reference
4175 to Files option in menubar were changed to File.
4176 (pr-version): New version number (6.8.2).
4177 (pr-get-symbol): Call easy-menu-intern.
4178 (pr-region-active-p): Now is a fun (it was defsubst). To avoid
4179 compilation gripes.
4180
4181 2004-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4182
4183 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Understand the
4184 new byte-compile-function-environment binding to t.
4185
4186 * font-lock.el (font-lock-fontify-syntactically-region):
4187 Don't forget to highlight the last char when we hit `end'.
4188
4189 * mwheel.el (mouse-wheel-progressive-speed): Fix typo in name.
4190 (mwheel-scroll): Adjust accordingly.
4191
4192 * cvs-status.el: Reduce spurious warnings.
4193 (cvs-status-checkout): Remove.
4194 (cvs-status-mode-map): Use cvs-mode-checkout instead.
4195
4196 * pcvs.el (cvs-mode-checkout): New command.
4197
4198 * international/iso-cvt.el (iso-cvt-define-menu): Fix typo.
4199
4200 * tooltip.el: Require CL.
4201
4202 * emacs-lisp/bytecomp.el: Use push.
4203 (byte-compile-file-form-defalias): Rename from byte-compile-defalias.
4204 (defalias): Remove the `byte-compile' property and add
4205 a `byte-hunk-handler'.
4206
4207 2004-11-11 Juri Linkov <juri@jurta.org>
4208
4209 * info.el (Info-search): Save match data for isearch.
4210 Skip Tag Table node.
4211
4212 * descr-text.el (describe-char): Replace syntax-after with code
4213 from its previous version.
4214
4215 * files.el (magic-mode-alist): Use optimization for SGML mode too.
4216 (set-auto-mode): Doc fix. Remove unused variable `xml'.
4217
4218 * international/mule.el (sgml-html-meta-auto-coding-function):
4219 Remove > after <html to allow HTML attributes.
4220
4221 2004-11-11 Jay Belanger <belanger@truman.edu>
4222
4223 * calc/calc-comb.el (math-prime-factors-finished): Declare it as
4224 a variable.
4225 (calcFunc-dfac): Replace unbound max by n.
4226 (math-stirling-local-cache): New variable.
4227 (math-stirling-number, math-stirling-1, math-stirling-2):
4228 Replace the variable `cache' by the declared variable
4229 math-stirling-local-cache.
4230 (var-RandSeed): Declare it as a variable.
4231 (math-init-random-base, math-random-digit): Don't check to see if
4232 var-RandSeed is bound.
4233 (math-random-cache, math-gaussian-cache, calc-verbose-nextprime):
4234 Declare them instead of just setting them.
4235 (math-init-random-base): Made i a local variable.
4236 (math-random-digit): Made math-random-last a local variable.
4237 (math-prime-test-cache): Move declaration to before it is used.
4238 (math-prime-test-cache-k, math-prime-test-cache-q)
4239 (math-prime-test-cache-nm1, math-prime-factors-finished):
4240 Declare them as variables.
4241
4242 2004-11-11 Jay Belanger <belanger@truman.edu>
4243
4244 * calc/calc-ext.el (math-defcache): Use defvar for the new
4245 variables it creates.
4246
4247 2004-11-11 Lars Hansen <larsh@math.ku.dk>
4248
4249 * desktop.el (desktop-buffer-mode-handlers, desktop-after-read-hook)
4250 (desktop-clear-preserve-buffers-regexp, desktop-file-name-format)
4251 (desktop-globals-to-clear, desktop-no-desktop-file-hook, desktop-path)
4252 (desktop-save): Add :version.
4253
4254 2004-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4255
4256 * printing.el (pr-get-symbol): Don't downcase.
4257
4258 2004-11-10 Jay Belanger <belanger@truman.edu>
4259
4260 * calc/calc-aent.el (calc-do-quick-calc): Use kill-new to append
4261 string to kill-ring.
4262
4263 * calc/calc-aent.el (calc-alg-exp, math-toks)
4264 (math-exp-pos,math-exp-old-pos, math-exp-token)
4265 (math-exp-keep-spaces, math-exp-str): New variables.
4266 (calc-do-alg-entry, calcAlg-equals, calcAlg-edit)
4267 (calcAlg-enter): Use declared variable calc-alg-exp.
4268 (math-build-parse-table, math-find-user-token): Use declared
4269 variable math-toks.
4270 (math-read-exprs, math-read-token, calc-check-user-syntax)
4271 (calc-match-user-syntax, match-factor-after, math-read-factor):
4272 Use declared variables math-exp-pos math-exp-old-pos.
4273 (math-read-exprs, math-read-token, math-read-expr-level)
4274 (calc-check-user-syntax, calc-match-user-syntax)
4275 (match-factor-after, math-read-factor): Use declared variable
4276 math-exp-token.
4277 (math-read-exprs, math-read-expr-list, math-read-token)
4278 (math-read-factor): Use declared variable math-exp-keep-spaces.
4279 (math-read-exprs, math-read-token): Use declared variable
4280 math-exp-str.
4281 (calc-match-user-syntax): Make m a local variable.
4282
4283 * calc/calc-ext.el (math-read-expr): Use declared variables
4284 math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token,
4285 math-exp-keep-spaces.
4286
4287 * calc/calc-forms.el (math-read-angle-bracket): Use declared
4288 variables math-exp-pos, math-exp-str.
4289
4290 * calc/calc-lang.el (math-parse-tex-sum): Use declared variable
4291 math-exp-old-pos.
4292 (math-parse-fortran-vector, math-parse-fortran-vector-end)
4293 (math-parse-eqn-prime): Use declared variable math-exp-token.
4294
4295 * calc/calc-vec.el (math-read-brackets, math-check-for-commas):
4296 Use declared variable math-exp-pos.
4297 (math-check-for-commas): Use declared variable math-exp-str.
4298 (math-read-brackets): Use declared variables math-exp-old-pos,
4299 math-exp-keep-spaces.
4300 (math-read-brackets, math-read-vector, math-read-matrix):
4301 Use declared variable math-exp-token.
4302
4303 2004-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4304
4305 * emacs-lisp/easymenu.el (easy-menu-define-key): Understand the case
4306 where the keymap is a symbol.
4307 (easy-menu-add-item): Use keymap-prompt. Simplify.
4308
4309 * files.el (magic-mode-alist): Reduce backtracking in the HTML regexp.
4310
4311 * textmodes/sgml-mode.el (sgml-tag-text-p): New fun.
4312 (sgml-parse-tag-backward): Use it to skip spurious < or >.
4313
4314 2004-11-10 Thien-Thi Nguyen <ttn@gnu.org>
4315
4316 * ebuff-menu.el: Doc fixes throughout.
4317 (electric-buffer-menu-mode-hook): New defvar.
4318
4319 2004-11-10 Nick Roberts <nickrob@snap.net.nz>
4320
4321 * tooltip.el: Don't require cl, comint, gud, gdb-ui for
4322 compilation. The resulting compiler warnings appear to be harmless.
4323
4324 2004-11-10 Daniel Pfeiffer <occitan@esperanto.org>
4325
4326 * textmodes/conf-mode.el: New file.
4327
4328 * files.el (auto-mode-alist, magic-mode-alist): Use it.
4329
4330 2004-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4331
4332 * international/iso-cvt.el (iso-cvt-define-menu): Clean up namespace.
4333
4334 2004-11-09 Jay Belanger <belanger@truman.edu>
4335
4336 * calc/calc-ext.el (calc-init-extensions): Remove old code.
4337
4338 * calc/calc-ext.el (math-expr-data, math-mt-many, math-mt-func)
4339 (calc-z-prefix-buf, calc-z-prefix-msgs): New variables.
4340 (calc-z-prefix-help, calc-user-function-list): Use declared
4341 variables calc-z-prefix-buf, calc-z-prefix-msgs.
4342 (math-map-tree, math-map-tree-rec): Use declared variables
4343 math-mt-many, math-mt-func.
4344 (math-read-expression, math-read-string): Use declared variable
4345 math-expr-data.
4346
4347 * calc/calc-ext.el (math-normalize-nonstandard): Use declared
4348 variable math-normalize-a.
4349
4350 * calc/calc.el (math-normalize-a): New variable.
4351 (math-normalize): Use declared variable math-normalize-a.
4352
4353 * calc/calc-poly.el (math-expand-form): Use declared variable
4354 math-mt-many.
4355
4356 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
4357 Use declared variable math-mt-many.
4358 (math-rewrite): Use declared variable math-mt-func.
4359
4360 * calc/calc-vec.el (math-read-brackets, math-read-vector)
4361 (math-read-matrix): Use declared variable math-expr-data.
4362
4363 * calc/calc-lang.el (math-parse-fortran-vector)
4364 (math-parse-fortran-vector-end, math-parse-tex-sum)
4365 (math-parse-eqn-matrix, math-parse-eqn-prime)
4366 (math-read-math-subscr): Use declared variable math-expr-data.
4367
4368 * calc/calc-aent.el (math-read-exprs, math-read-expr-list)
4369 (math-read-expr-level, math-read-token, calc-check-user-syntax)
4370 (calc-match-user-syntax, math-read-if, math-factor-after)
4371 (math-read-factor): Use declared variable math-expr-data.
4372
4373 2004-11-09 Glenn Morris <gmorris@ast.cam.ac.uk>
4374
4375 * calendar/diary-lib.el (diary-from-outlook)
4376 (diary-from-outlook-gnus, diary-from-outlook-rmail): Do not use
4377 interactive-p; but rather new optional argument NOCONFIRM.
4378
4379 2004-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4380
4381 * emacs-lisp/easymenu.el (easy-menu-intern): Revert to no-downcasing.
4382 (easy-menu-name-match): Revert correspondingly.
4383
4384 2004-11-09 Richard M. Stallman <rms@gnu.org>
4385
4386 * emacs-lisp/bytecomp.el (byte-compile-defalias):
4387 Turn off warnings for the new function even if definition not constant.
4388 If the definition isn't a quoted symbol, record (FUNCTION . t).
4389 (byte-compile-function-environment): Now allow (FUNCTION . t) as elt.
4390 (byte-compile-callargs-warn): Handle (FUNCTION . t).
4391 (display-call-tree, byte-compile-arglist-warn):
4392 Handle t returned by byte-compile-fdefinition.
4393
4394 2004-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4395
4396 * Makefile.in (maintainer-clean): Depend on distclean.
4397
4398 * help-fns.el (help-C-file-name): File name must be in build-files
4399 to be returned.
4400
4401 2004-11-09 Jay Belanger <belanger@truman.edu>
4402
4403 * calc/calc.el (calc-mode-hook, calc-trail-mode-hook)
4404 (calc-start-hook, calc-end-hook, calc-load-hook): New variables.
4405
4406 * calc/calc.el (calc, calc-trail-display, calc-mode):
4407 Remove obsolete sections.
4408
4409 * calc/calc.el (calc-x-paste-text): Remove.
4410
4411 * calc/calc-ext.el (calc-init-extensions): Bind calc-yank to
4412 mouse-2.
4413
4414 2004-11-09 Nick Roberts <nickrob@snap.net.nz>
4415
4416 * progmodes/gdb-ui.el (gdb-current-stack-level): New variable.
4417 (gdb-info-frames-custom, gdb-frame-handler): Use it to find
4418 current frame (in case of recursive calls).
4419 (gdb-show-changed-values): Add :version keyword.
4420
4421 2004-11-09 Kenichi Handa <handa@m17n.org>
4422
4423 * international/mule-cmds.el: Change coding: tag back to
4424 iso-2022-7bit.
4425
4426 2004-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4427
4428 * international/mule-cmds.el: Change coding-system to utf-8.
4429 (select-safe-coding-system-interactively):
4430 New function extracted from select-safe-coding-system.
4431 (select-safe-coding-system): Use it.
4432
4433 2004-11-08 Richard M. Stallman <rms@gnu.org>
4434
4435 * subr.el (syntax-after): Doc fix.
4436
4437 * paren.el (show-paren-function): Change calls to syntax-after
4438 for new way of returning the value.
4439
4440 * menu-bar.el (menu-bar-file-menu): Make this the real name
4441 and menu-bar-files-menu the alias. Use the former.
4442 (global-map): Use `file', not `files', as the symbol.
4443
4444 * info.el (Info-revert-find-node): Don't use beginning-of-buffer.
4445
4446 * filesets.el (filesets-spawn-external-viewer, filesets-run-cmd):
4447 Don't use beginning-of-buffer.
4448 (filesets-cmd-show-result): Use with-no-warnings.
4449
4450 2004-11-08 Juri Linkov <juri@jurta.org>
4451
4452 * progmodes/compile.el (compile): Don't overwrite last command in
4453 minibuffer history with default command if they are not equal.
4454
4455 2004-11-08 Jay Belanger <belanger@truman.edu>
4456
4457 * calc/calcalg2.el (math-do-integral-methods): Try linear then
4458 non-linear substitutions.
4459
4460 2004-11-08 Jay Belanger <belanger@truman.edu>
4461
4462 * calc/calcalg2.el (math-linear-subst-tried): New variable.
4463 (math-do-integral): Set `math-linear-subst-tried' to nil.
4464 (math-do-integral-methods): Use `math-linear-subst-tried' to
4465 determine what type of substitution to try.
4466 (math-integ-try-linear-substituion):
4467 Set `math-linear-subst-tried' to t.
4468
4469 2004-11-08 Kim F. Storm <storm@cua.dk>
4470
4471 * Makefile.in (bootstrap-clean): New target for 'make bootstrap'.
4472
4473 2004-11-07 Juri Linkov <juri@jurta.org>
4474
4475 * info-look.el (info-lookup): Allow reusing in the current buffer
4476 not only *info* buffer, but all (even renamed) Info buffers
4477 by checking for major-mode instead of *info* buffer name.
4478 (c-mode, autoconf-mode, emacs-lisp-mode, scheme-mode)
4479 (octave-mode, maxima-mode) <doc-spec>:
4480 Allow long dashes generated by Texinfo 4.7 before definitions.
4481 (texinfo-mode) <doc-spec>: Add space to suffix to find command
4482 definitions with argument separated by space.
4483
4484 2004-11-06 Richard M. Stallman <rms@gnu.org>
4485
4486 * simple.el (next-error group, face): Move before first use.
4487 (next-error-highlight, next-error-highlight-no-select): Likewise.
4488
4489 * simple.el (line-move-invisible-p): Rename from line-move-invisible.
4490 (line-move): New args NOERROR and TO-END.
4491 Return t if if succeed in moving specified number of lines.
4492 (move-end-of-line): New function.
4493
4494 * simple.el (beginning-of-buffer-other-window): Use with-no-warnings.
4495 (end-of-buffer-other-window): Likewise.
4496
4497 * simple.el (line-move-ignore-invisible): Default to t.
4498
4499 * subr.el (syntax-after): Return the syntax letter, not the raw code.
4500
4501 * emacs-lisp/elp.el (elp-results): Delete wasteful beginning-of-buffer.
4502
4503 * international/iso-cvt.el (iso-cvt-define-menu):
4504 Rename menu-bar-files-menu to menu-bar-file-menu.
4505
4506 * net/browse-url.el (browse-url-gnome-moz-program)
4507 (browse-url-gnome-moz-arguments): Move up before first use.
4508
4509 * net/tramp.el (tramp group): Add :version.
4510
4511 * progmodes/ada-xref.el (ada-gdb-application):
4512 Use goto-char instead of beginning-of-buffer.
4513
4514 * progmodes/cperl-mode.el (cperl-info-on-command):
4515 Use goto-char instead of beginning-of-buffer.
4516
4517 * progmodes/idlw-shell.el (idlwave-shell-examine-map):
4518 Move up before first use.
4519 (idlwave-shell-temp-pro-file): Likewise.
4520 (idlwave-shell-temp-rinfo-save-file): Likewise.
4521 (idlwave-shell-temp-file): Minor doc fix.
4522
4523 * textmodes/flyspell.el (flyspell-external-point-words):
4524 Use goto-char instead of beginning-of-buffer.
4525
4526 2004-11-06 Kai Grossjohann <kai.grossjohann@gmx.net>
4527
4528 * net/tramp.el (tramp-coding-commands): Additionally try "uudecode -o
4529 /dev/stdout" before trying "uudecode -o -". Suggested by Han Boetes.
4530 (tramp-uudecode): Mention `uudecode -o /dev/stdout'.
4531
4532 2004-11-06 David Ponce <david@dponce.com>
4533
4534 * recentf.el (recentf-menu-path): Use menu item name.
4535
4536 2004-11-06 Eli Zaretskii <eliz@gnu.org>
4537
4538 * progmodes/gdb-ui.el: Don't call define-fringe-bitmap if the
4539 display doesn't support images.
4540
4541 2004-11-06 Andreas Schwab <schwab@suse.de>
4542
4543 * tempo.el (tempo-match-finder): Doc fix.
4544
4545 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix last change.
4546
4547 2004-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
4548
4549 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): Remove.
4550 (easy-menu-lookup-name): New fun to replace it.
4551 (easy-menu-get-map): Use it to obey menu item names (rather than just
4552 keys) when looking up `path'.
4553 (easy-menu-always-true-p): Rename from easy-menu-always-true.
4554 (easy-menu-convert-item-1): Adjust to new name.
4555
4556 2004-11-06 Peter Heslin <pj@heslin.eclipse.co.uk> (tiny change)
4557
4558 * outline.el (hide-body): Don't hide lines at the top of the file
4559 that precede the first header line.
4560
4561 2004-11-06 Paul Pogonyshev <pogonyshev@gmx.net>
4562
4563 * align.el (align-areas): Delete whitespace before reindenting, so
4564 that tabs are never placed after spaces.
4565
4566 2004-11-06 Alan Shutko <ats@acm.org>
4567
4568 * macros.el (insert-kbd-macro): Do completions based on macros,
4569 rather than all commands.
4570
4571 2004-11-06 David Hansen <david.hansen@gmx.net> (tiny change)
4572
4573 * tempo.el (tempo-match-finder): Use [:word:] instead of "^\\b",
4574 to solve a bug whereby tags with 'b' don't match.
4575
4576 2004-11-05 Juri Linkov <juri@jurta.org>
4577
4578 * info.el (Info-search): Don't search in node header lines
4579 and file headers.
4580
4581 * emacs-lisp/edebug.el (edebug-next-token-class): Allow all
4582 symbol-constituent characters after dot, not only digits.
4583
4584 2004-11-04 Daniel Pfeiffer <occitan@esperanto.org>
4585
4586 * files.el (set-auto-mode): Don't get error after setting -*-mode-*-.
4587
4588 2004-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4589
4590 * dired.el (dired-read-dir-and-switches): Call read-directory-name
4591 if a dialog will be used, read-file-name otherwise.
4592
4593 2004-11-04 Richard M. Stallman <rms@gnu.org>
4594
4595 * textmodes/table.el (table group): Add :version.
4596
4597 * textmodes/ispell.el (ispell-word):
4598 Don't alter args; set them only thru `interactive' spec.
4599
4600 * textmodes/flyspell.el (flyspell-word):
4601 Don't alter FOLLOWING; set it only thru `interactive' spec.
4602
4603 * progmodes/f90.el (f90-end-of-block): Don't use interactive-p.
4604
4605 * net/browse-url.el (browse-url-maybe-new-window):
4606 Use called-interactively-p.
4607
4608 * mail/supercite.el (sc-cite-region):
4609 Don't use interactive-p. Add arg INTERACTIVE.
4610 (sc-version): Don't use interactive-p. Rename arg to MESSAGE.
4611
4612 * international/mule-cmds.el (set-input-method, toggle-input-method):
4613 Don't use interactive-p. Add arg INTERACTIVE.
4614
4615 * eshell/esh-mode.el (eshell-show-maximum-output):
4616 Don't use interactive-p.
4617 (eshell-truncate-buffer): Just message, no error, if buffer is short.
4618
4619 * mouse.el (mouse-show-mark): Get positions to delete from mark
4620 and point, not from mouse-drag-overlay.
4621
4622 * imenu.el (imenu-eager-completion-buffer): Add :version.
4623
4624 * filesets.el (filesets group): Add :version.
4625
4626 2004-11-03 Daniel Pfeiffer <occitan@esperanto.org>
4627
4628 * files.el (xml-based-modes): Delete var.
4629 (magic-mode-alist): New more general var.
4630 (set-auto-mode): Use it.
4631
4632 * buff-menu.el (Buffer-menu-make-sort-button): Preserve point even
4633 when clicking from another window.
4634
4635 2004-11-03 Thien-Thi Nguyen <ttn@gnu.org>
4636
4637 * vc-cvs.el (vc-cvs-local-month-numbers): Delete var.
4638 (vc-cvs-annotate-time): Incorporate value of deleted var.
4639 Remove special-case handling of beginning-of-buffer cruft.
4640 Cache ending position (point) and return value in text property
4641 `vc-cvs-annotate-time', and consult it on subsequent invocations.
4642
4643 * vc-cvs.el (vc-cvs-annotate-command):
4644 Delete extraneous lines from beginning of buffer.
4645 * vc-mcvs.el (vc-mcvs-annotate-command): Likewise.
4646
4647 * progmodes/grep.el (grep-default-command): Take empty string
4648 for tag if all other methods yield nil. Shell-quote the tag.
4649
4650 * vc.el (vc-annotate-display-autoscale): Add prefix-arg
4651 spec in `interactive' form, and mention it in the docstring.
4652 Also, make sure point is at bol after calling `annotate-time'.
4653
4654 2004-11-02 Richard M. Stallman <rms@gnu.org>
4655
4656 * cus-edit.el (customize-group-other-window):
4657 Select the window that displays the custom buffer.
4658 (custom-buffer-create-other-window): Likewise.
4659
4660 * comint.el (comint-insert-input): Fix previous change.
4661
4662 * emacs-lisp/elp.el (elp-instrument-function):
4663 Use called-interactively-p.
4664
4665 * emacs-lisp/easymenu.el (easy-menu-intern):
4666 Don't downcase; rather, case-flip the first letter of each word.
4667
4668 * emacs-lisp/easy-mmode.el (define-minor-mode):
4669 Use called-interactively-p.
4670
4671 * emacs-lisp/bytecomp.el (byte-compile-warning-types):
4672 Add interactive-only.
4673 (byte-compile-warnings): Add interactive-only as option.
4674 (byte-compile-interactive-only-functions): New variable.
4675 (byte-compile-form): Warn about calls to functions
4676 in byte-compile-interactive-only-functions.
4677
4678 * emacs-lisp/autoload.el (update-file-autoloads):
4679 Don't use interactive-p; take new arg SAVE-AFTER.
4680
4681 * emacs-lisp/advice.el (ad-make-advised-definition):
4682 Use called-interactively-p.
4683
4684 2004-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4685
4686 * files.el (find-file-existing): New function.
4687
4688 * menu-bar.el (menu-bar-files-menu): Make "Open File..." call
4689 find-file-existing. Add "New File..." that calls find-file.
4690
4691 * diropen.pbm, diropen.xpm: New files.
4692
4693 * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
4694 icon diropen. New tool bar item find-file-existing uses icon open.
4695
4696 * dired.el (dired-read-dir-and-switches): Call read-driectory-name
4697 instead of read-file-name.
4698
4699 2004-11-02 Ulf Jasper <ulf.jasper@web.de>
4700
4701 * calendar/icalendar.el (icalendar-version): Increase to 0.08.
4702 (icalendar--split-value): Change name of work buffer.
4703 (icalendar--get-weekday-abbrev): Return nil on error.
4704 (icalendar--date-to-isodate): New function.
4705 (icalendar-convert-diary-to-ical)
4706 (icalendar-extract-ical-from-buffer): Use only two args for
4707 make-obsolete (XEmacs compatibility).
4708 (icalendar-export-file, icalendar-import-file): Blank at end of prompt.
4709 (icalendar-export-region): Doc fix.
4710 If error, return non-nil and write errors to a buffer.
4711 Use correct weekday for weekly recurring events.
4712 Check whether date has been parsed for ordinary events.
4713 Make weekly events start in the year 2000.
4714 DTEND is non-inclusive, shift end date by one day if
4715 necessary (not for entries that have date and time).
4716 Rename local let variables: oops -> found-error, datestring ->
4717 startdatestring.
4718
4719 2004-11-02 Kim F. Storm <storm@cua.dk>
4720
4721 * files.el (set-auto-mode-0): Don't rely on dynamic binding of
4722 keep-mode-if-same variable. Add it as optional arg instead.
4723 (set-auto-mode): Call set-auto-mode-0 with keep-mode-if-same.
4724
4725 * ehelp.el (electric-help-map): Reorder Q/q and R/r entries so
4726 substitute-command-keys will select lower-case bindings like those
4727 used in the static help texts.
4728
4729 * descr-text.el (describe-text-properties): Don't err if called in
4730 the *Help* buffer; output to *Help-2* buffer instead.
4731
4732 * kmacro.el (group kmacro): Add :version.
4733 (kmacro-keyboard-quit): New function to cleanup on C-g.
4734 (kmacro-start-macro): Set defining-kbd-macro to append when
4735 appending to last macro.
4736
4737 * simple.el (keyboard-quit): Call kmacro-keyboard-quit.
4738
4739 2004-11-02 Nick Roberts <nickrob@snap.net.nz>
4740
4741 * progmodes/gdb-ui.el (gdb-enable-debug-log)
4742 (gdb-use-inferior-io-buffer, gdb-use-colon-colon-notation)
4743 (gud-gdba-command-name, gdb-show-main, gdb-many-windows):
4744 Add :version keyword.
4745
4746 2004-11-02 Pavel Kobiakov <pk_at_work@yahoo.com>
4747
4748 * progmodes/flymake.el (flymake-err-line-patterns):
4749 Use `flymake-reformat-err-line-patterns-from-compile-el' to convert
4750 `compilation-error-regexp-alist-alist' to internal Flymake format.
4751
4752 * progmodes/flymake.el: Eliminate byte-compiler warnings.
4753
4754 2004-11-01 Jay Belanger <belanger@truman.edu>
4755
4756 * calc/calc-frac.el (calc-over-notation): Replace `completing-read'
4757 with `interactive "s"'.
4758
4759 2004-11-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4760
4761 * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
4762 Revert change from 2004-10-16. '*' checks the current buffer, but the
4763 mouse click may be in another buffer.
4764
4765 2004-11-01 John Paul Wallington <jpw@gnu.org>
4766
4767 * files.el (large-file-warning-threshold): Add :version keyword.
4768 (kill-some-buffers): Doc fix.
4769
4770 * thumbs.el (group thumbs): Add :version keyword.
4771
4772 * textmodes/bibtex.el (bibtex-make-field): Fix typo.
4773
4774 2004-11-01 Richard M. Stallman <rms@gnu.org>
4775
4776 * textmodes/ispell.el (ispell-word): Don't use interactive-p.
4777
4778 * textmodes/flyspell.el (flyspell-word): Don't use interactive-p.
4779
4780 * allout.el (allout group): Add :version.
4781 (allout-init): Don't use interactive-p.
4782 (allout-ascend-to-depth, allout-ascend, allout-end-of-level)
4783 (allout-forward-current-level, allout-backward-current-level):
4784 Don't use interactive-p.
4785
4786 * textmodes/bibtex.el (bibtex-make-field): Don't use interactive-p.
4787 (bibtex-find-text): Likewise.
4788
4789 * progmodes/vhdl-mode.el (vhdl-fill-region)
4790 (vhdl-beginning-of-statement): Don't use interactive-p.
4791
4792 * progmodes/idlwave.el (idlwave-update-routine-info):
4793 Don't use interactive-p.
4794
4795 * progmodes/idlw-shell.el (idlwave-shell-send-char):
4796 Don't use interactive-p.
4797
4798 * progmodes/cperl-mode.el (cperl-switch-to-doc-buffer):
4799 Don't use interactive-p.
4800
4801 * progmodes/ada-xref.el (ada-make-body-gnatstub):
4802 Don't use interactive-p.
4803
4804 * play/fortune.el (fortune-to-signature): Don't use interactive-p.
4805 (fortune-in-buffer): Doc fix.
4806
4807 * play/5x5.el (5x5-new-game): Set up the buffer even if not interactive.
4808
4809 * net/eudc.el (eudc-display-records): Use with-output-to-temp-buffer;
4810 don't select the temporary buffer.
4811 (eudc-get-email): New optional arg ERROR; don't use interactive-p.
4812 (eudc-get-phone): Likewise.
4813
4814 2004-11-01 Kim F. Storm <storm@cua.dk>
4815
4816 * man.el (Man-xref-normal-file): Fix help-echo.
4817
4818 2004-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
4819
4820 * reveal.el (reveal-last-tick): New var.
4821 (reveal-post-command): Use it to avoid closing overlays when we're
4822 appending text to them.
4823
4824 2004-10-31 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4825
4826 * textmodes/bibtex.el: Require button.
4827 (bibtex-autokey-transcriptions): Translate TeX `\ ' to space.
4828 (bibtex-reference-keys): Distinguish between header keys and
4829 crossref keys.
4830 (bibtex-beginning-of-field): New function.
4831 (bibtex-url-map): Remove.
4832 (bibtex-font-lock-keywords): Use bibtex-font-lock-crossref.
4833 (bibtex-font-lock-url-regexp): Assume that field names begin at
4834 the beginning of a line.
4835 (bibtex-font-lock-url): Simplify. Do not use bibtex-enclosing-field.
4836 Remove field delimiters. Use bibtex-beginning-of-field.
4837 Bugfix, point can be inside a field with a url.
4838 (bibtex-font-lock-crossref, bibtex-button-action, bibtex-button):
4839 New functions.
4840 (bibtex-mark-active, bibtex-run-with-idle-timer): Remove.
4841 (bibtex-key-in-head): Simplify.
4842 (bibtex-current-line): Use bolp.
4843 (bibtex-parse-keys): Remove unused arg `add'.
4844 Use bibtex-type-in-head and bibtex-key-in-head.
4845 (bibtex-parse-entry, bibtex-autofill-entry):
4846 Use bibtex-type-in-head and bibtex-key-in-head.
4847 (bibtex-autokey-get-field): Do not alter case of replacement text.
4848 (bibtex-autokey-get-names): Do all processing of name list.
4849 (bibtex-autokey-get-year): New function.
4850 (bibtex-autokey-get-title): Do all processing of title words.
4851 (bibtex-generate-autokey): Simplify.
4852 (bibtex-string-files-init): Use default-directory.
4853 Allow for absolute file names in bibtex-string-files.
4854 (bibtex-files, bibtex-file-path): New variables.
4855 (bibtex-files-expand): New function.
4856 (bibtex-find-entry-globally): New command.
4857 (bibtex-summary-function): New variable.
4858 (bibtex-summary): Default value of bibtex-summary-function.
4859 (bibtex-find-crossref): New optional args pnt and split.
4860 (bibtex-complete-key-cleanup): Call bibtex-summary-function.
4861 (bibtex-copy-summary-as-kill): New command bound to C-cC-t.
4862 (bibtex-validate): Fix docstring. Check only abbreviated month fields.
4863 Fix handling of required and alternative fields.
4864 Identify duplicate keys even if bibtex-maintain-sorted-entries is nil.
4865 Use cons and display-buffer.
4866 (bibtex-validate-globally): New command.
4867 (bibtex-clean-entry): Use bibtex-files-expand. Do not call
4868 bibtex-parse-keys and bibtex-parse-strings for updating
4869 bibtex-reference-keys and bibtex-strings.
4870 (bibtex-realign): Remove blank lines past the last entry.
4871 (bibtex-reformat): Use bibtex-entry-format as default.
4872 (bibtex-choose-completion-string): Remove.
4873 (bibtex-complete): Do not use bibtex-choose-completion-string.
4874 (bibtex-url): Simplify.
4875
4876 2004-10-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4877
4878 * x-dnd.el (x-dnd-test-function, x-dnd-protocol-alist)
4879 (x-dnd-types-alist, x-dnd-open-file-other-window)
4880 (x-dnd-known-types): Add :version.
4881
4882 2004-10-31 John Paul Wallington <jpw@gnu.org>
4883
4884 * ibuffer.el (group ibuffer): Add :version keyword.
4885
4886 2004-10-31 Kim F. Storm <storm@cua.dk>
4887
4888 * ido.el (group ido): Add :version keyword.
4889 (ido-mode): Remove :version keyword.
4890
4891 * emulation/cua-base.el (group cua): Add :version keyword.
4892 (cua-mode): Remove :version keyword.
4893
4894 2004-10-30 Luc Teirlinck <teirllm@auburn.edu>
4895
4896 * autorevert.el (auto-revert-tail-mode-text): Add :version keyword.
4897
4898 * help-at-pt.el (help-at-pt-timer): Move defvar up to avoid
4899 compiler warning.
4900 (help-at-pt-timer-delay): Add :initialize keyword. Simplify :set
4901 function.
4902 (help-at-pt-display-when-idle): Remove autoload.
4903
4904 2004-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
4905
4906 * makefile.w32-in (custom-deps, autoloads): Fix *-hooks -> *-hook.
4907
4908 2004-10-30 Juri Linkov <juri@jurta.org>
4909
4910 * help.el (function-called-at-point):
4911 * help-fns.el (variable-at-point): Read -> intern.
4912
4913 2004-10-30 Simon Josefsson <jas@extundo.com>
4914
4915 * progmodes/autoconf.el (autoconf-font-lock-keywords):
4916 Recognize AS_* too.
4917
4918 2004-10-29 Simon Josefsson <jas@extundo.com>
4919
4920 * subr.el (read-passwd): Move back from password.el.
4921
4922 * password.el: Remove, not ready yet.
4923
4924 2004-10-29 Andreas Schwab <schwab@suse.de>
4925
4926 * speedbar.el (speedbar-frame-parameters): Improve customize type.
4927
4928 2004-10-29 Sam Steingold <sds@gnu.org>
4929
4930 * mouse.el (mouse-show-mark): Replace the last occurrence of
4931 x-lost-selection-hooks with x-lost-selection-functions.
4932
4933 2004-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
4934
4935 * mouse.el (mouse-show-mark): Adjust to new name and don't assume
4936 x-lost-selection-functions is bound.
4937
4938 * mouse-sel.el (mouse-sel-mode):
4939 * emacs-lisp/lselect.el: Adjust to new names for
4940 x-(lost|sent)-selection-functions.
4941
4942 * subr.el (x-lost-selection-hooks, x-sent-selection-hooks):
4943 New obsolete aliases of x-lost-selection-functions and
4944 x-sent-selection-functions.
4945
4946 2004-10-28 Kim F. Storm <storm@cua.dk>
4947
4948 * imenu.el (imenu-scanning-message): Remove.
4949 (imenu-progress-message): Make it a no-op.
4950
4951 2004-10-28 John Paul Wallington <jpw@gnu.org>
4952
4953 * files.el (set-auto-mode): Call `throw' correctly.
4954
4955 2004-10-28 Juri Linkov <juri@jurta.org>
4956
4957 * info.el (Info-file-list-for-emacs): Add ("Info" . "info")
4958 to search `Info-...' commands in `info' manual.
4959 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
4960 Add 'info-file "emacs" property.
4961 (Info-find-emacs-command-nodes): Fix index line number regexp.
4962 Set real line number (instead of fake 0) in first element of the
4963 returned list.
4964 (Info-goto-emacs-command-node): Use line number of first element
4965 to set point in the first found Info node.
4966
4967 * progmodes/grep.el (grep-regexp-alist): Move match highlighting
4968 code to `grep-mode-font-lock-keywords'.
4969 (grep-mode-font-lock-keywords): Delete grep markers instead
4970 of making them invisible.
4971
4972 2004-10-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4973
4974 * mail/emacsbug.el (report-emacs-bug): Insert x-server-vendor
4975 and x-server-version in bug report.
4976
4977 2004-10-28 Daniel Pfeiffer <occitan@esperanto.org>
4978
4979 * files.el (set-auto-mode-0): New function.
4980 (set-auto-mode): Use it to handle aliased modes and to
4981 be consistent between C-x C-f and C-x C-w.
4982
4983 2004-10-28 Kenichi Handa <handa@m17n.org>
4984
4985 * international/utf-8.el (utf-translate-cjk-charsets):
4986 Add katakana-jisx0201.
4987
4988 * international/subst-jis.el: Add data for JISX0201.
4989
4990 2004-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
4991
4992 * obsolete/hilit19.el (hilit-mode): New function.
4993 Move all the toplevel side-effecting stuff into it, so that loading
4994 hilit19 doesn't mess everything up any more.
4995
4996 2004-10-27 Richard M. Stallman <rms@gnu.org>
4997
4998 * add-log.el (add-change-log-entry): Set up mailing address
4999 and full name later, and don't alter add-log-mailing-address
5000 or add-log-full-name.
5001
5002 * elide-head.el (elide-head): Change error to message.
5003 (elide-head-show): Likewise.
5004
5005 * apropos.el (apropos-macrop): Doc fix.
5006
5007 * mouse.el (mouse-show-mark): Do most processing the same
5008 regardless of transient-mark-mode.
5009
5010 * shadowfile.el (shadow-copy-files): Use interactive-p
5011 only to control whether to print a message.
5012
5013 * tar-mode.el (tar-mode): Use write-contents-functions,
5014 not write-contents-hooks.
5015
5016 * eshell/em-unix.el (eshell-du-sum-directory): Don't use
5017 directory-sep-char.
5018
5019 2004-10-27 Richard M. Stallman <rms@gnu.org>
5020
5021 * strokes.el (strokes-unload-hook): Fix previous change.
5022
5023 * type-break.el (type-break-run-at-time): Always use run-at-time;
5024 forget the alternatives.
5025 (type-break-cancel-function-timers): Always use cancel-function-timers;
5026 forget the alternatives.
5027
5028 * pcomplete.el (pcomplete-entries): Don't use directory-sep-char.
5029
5030 2004-10-27 Kenichi Handa <handa@m17n.org>
5031
5032 * international/subst-jis.el: Use utf-translate-cjk-substitutable-p.
5033
5034 * international/subst-gb2312.el: Likewise.
5035
5036 * international/subst-big5.el: Likewise.
5037
5038 * international/subst-ksc.el: Likewise.
5039
5040 * international/utf-8.el (utf-translate-cjk-unicode-range-string):
5041 New variable.
5042 (utf-translate-cjk-set-unicode-range): New function.
5043 (utf-translate-cjk-unicode-range): Make it customizable.
5044 (utf-8-post-read-conversion):
5045 Use utf-translate-cjk-unicode-range-string.
5046 (ccl-decode-mule-utf-8): Check utf-subst-table-for-decode for more
5047 Unicode ranges.
5048
5049 2004-10-26 Daniel Pfeiffer <occitan@esperanto.org>
5050
5051 * files.el (auto-mode-alist): Add pod, js, xbm and xpm and group
5052 trivial variants to shorten the list.
5053 (xml-based-modes): New var.
5054 (set-auto-mode): Give interpreter-mode-alist or <?xml or <!DOCTYPE
5055 declaration higher priority than auto-mode-alist.
5056
5057 * find-file.el (cc-other-file-alist): Bring it in line with
5058 cc-mode's auto-mode-alist entries and use \' instead of $.
5059
5060 * textmodes/sgml-mode.el (sgml-mode): Fix imenu-generic-expression
5061 and add "Id" and "Name" submenus to it.
5062
5063 * imenu.el (imenu--generic-function): Skip matches in comments.
5064
5065 2004-10-26 Jay Belanger <belanger@truman.edu>
5066
5067 * calc/calc.el (calc,full-calc, calc-quit, calc-keypad)
5068 (full-calc-keypad, calc-trail-display): Use an extra argument
5069 instead of `interactive-p'.
5070
5071 * calc/calc-misc.el (calc-other-window): Use an extra argument
5072 instead of `interactive-p'.
5073
5074 * calc/calc-rewr.el (calc-match): Use an extra argument instead of
5075 `interactive-p'.
5076
5077 2004-10-26 Kim F. Storm <storm@cua.dk>
5078
5079 * help.el (describe-key): Describe both down-event and up-event
5080 for a mouse click.
5081
5082 2004-10-26 Richard M. Stallman <rms@gnu.org>
5083
5084 * woman.el (woman): Don't call interactive-p.
5085
5086 * pcomplete.el (pcomplete): Instead of interactive-p,
5087 use an arg set non-nil by the interactive spec.
5088
5089 * menu-bar.el (menu-bar-make-toggle): Instead of interactive-p,
5090 use an arg set non-nil by the interactive spec.
5091
5092 * man.el (Man-cleanup-manpage): Instead of interactive-p,
5093 use an arg set non-nil by the interactive spec.
5094
5095 2004-10-26 Pavel Kobiakov <pk_at_work@yahoo.com>
5096
5097 * progmodes/flymake.el (flymake-split-string):
5098 Use `flymake-split-string-remove-empty-edges' in any case.
5099
5100 2004-10-26 Masatake YAMATO <jet@gyve.org>
5101
5102 * progmodes/flymake.el (flymake-err-line-patterns):
5103 Use `compilation-error-regexp-alist-alist' instead of
5104 `compilation-error-regexp-alist'.
5105
5106 2004-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5107
5108 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Fix up the spurious
5109 verbatim face on the \ of \end{verbatim}.
5110
5111 2004-10-25 Jay Belanger <belanger@truman.edu>
5112
5113 * calc/calc-incom.el (calc-digit-dots): Inhibit read-only before
5114 erasing minibuffer.
5115
5116 2004-10-25 Simon Josefsson <jas@extundo.com>
5117
5118 * subr.el (read-passwd): Move to net/password.el.
5119
5120 * net/password.el (read-passwd): Add. Autoload it.
5121
5122 2004-10-25 Kai Grossjohann <kai.grossjohann@gmx.net>
5123
5124 * mouse-sel.el (mouse-sel-mode): Specify custom group.
5125
5126 * simple.el (process-file): Fix logic.
5127
5128 2004-10-24 Luc Teirlinck <teirllm@auburn.edu>
5129
5130 * indent.el (set-left-margin, set-right-margin): Delete redundant code.
5131 (increase-right-margin): Remove erroneous call to `interactive-p'.
5132
5133 2004-10-24 Kim F. Storm <storm@cua.dk>
5134
5135 * help.el (describe-mode): Fix 2004-10-13 change.
5136 Copy pure "Auto Fill" string so it can be propertized later
5137 without causing a read-only error.
5138
5139 2004-10-24 Luc Teirlinck <teirllm@auburn.edu>
5140
5141 * info.el (Info-find-emacs-command-nodes): Adapt to Texinfo-4.7
5142 style indexes.
5143
5144 2004-10-24 Kai Grossjohann <kai.grossjohann@gmx.net>
5145
5146 * simple.el (process-file): Accept nil for INFILE. Reported by
5147 Luc Teirlinck.
5148
5149 2004-10-24 Masatake YAMATO <jet@gyve.org>
5150
5151 * progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords):
5152 Handle periods and underscores in a function name.
5153 Remove the address fontification.
5154
5155 2004-10-24 Masatake YAMATO <jet@gyve.org>
5156
5157 * progmodes/asm-mode.el (asm-font-lock-keywords):
5158 Use font-lock-variable-name-face for registers.
5159
5160 2004-10-24 Nick Roberts <nickrob@snap.net.nz>
5161
5162 * progmodes/gdb-ui.el (gdb-get-create-buffer): Allow modes to run
5163 kill-all-local-variables.
5164 (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
5165 (gdb-registers-mode, gdb-locals-mode, gdb-assembler-mode):
5166 Use kill-all-local-variables and provide mode-hooks.
5167 (gdb-assembler-font-lock-keywords): New font lock keywords definition.
5168 (gdb-assembler-mode): Use 'gdb-assembler-font-lock-keywords'.
5169 Suggested by Masatake YAMATO <jet@gyve.org>.
5170
5171 2004-10-23 Kai Grossjohann <kai.grossjohann@gmx.net>
5172
5173 * simple.el (process-file): New function, similar to call-process
5174 but supports file handlers.
5175 * vc.el (vc-do-command): Use it, instead of call-process.
5176 * net/tramp-vc.el (vc-do-command): Do not advise it if
5177 process-file is fboundp.
5178 * net/tramp.el (tramp-file-name-handler-alist): Add entry for
5179 process-file.
5180 (tramp-handle-process-file): New function.
5181 (tramp-file-name-for-operation): Support process-file.
5182
5183 2004-10-23 Ulf Jasper <ulf.jasper@web.de>
5184
5185 * calendar/icalendar.el (icalendar--weekday-array): New constant.
5186 (icalendar-weekdayabbrev-table)
5187 (icalendar-monthnumber-table): Delete.
5188 (icalendar--get-month-number): Use calendar-month-name-array.
5189 (icalendar--get-weekday-number): New function.
5190 (icalendar--get-weekday-abbrev) Use calendar-day-name-array.
5191 (icalendar-export-region): Handle multi-line entries.
5192 (icalendar--convert-ical-to-diary): Use calendar-day-name-array.
5193
5194 2004-10-23 John Paul Wallington <jpw@gnu.org>
5195
5196 * ibuffer.el (ibuffer-find-file): Remove `interactive-p' call;
5197 `wildcards' set to t in interactive spec.
5198
5199 * ibuf-ext.el (ibuffer-jump-to-buffer): Read buffer name in
5200 interactive spec rather than use `interactive-p'.
5201 (ibuffer-kill-line): Set arg `interactive-p' in interactive spec
5202 rather than use function `interactive-p'.
5203
5204 2004-10-22 Kenichi Handa <handa@m17n.org>
5205
5206 * international/mule.el (translate-region): Implement it in Lisp
5207 as a front end of translate-region-internal.
5208
5209 2004-10-21 Jay Belanger <belanger@truman.edu>
5210
5211 * calc/calc-aent.el (calc-alg-ent-map, calc-alg-ent-esc-map):
5212 Declare these variables with defvar.
5213
5214 * calc/calc-aent.el (calc-do-alg-entry): Since `calc-alg-ent-map'
5215 is bound, only check to see if it is bound.
5216
5217 2004-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
5218
5219 * textmodes/tex-mode.el (tex-compilation-parse-errors):
5220 Don't output messages.
5221
5222 * calc/calc-help.el (calc-describe-bindings): Fix last change.
5223
5224 2004-10-21 John Paul Wallington <jpw@gnu.org>
5225
5226 * calc/calc-graph.el (calc-graph-init):
5227 Use `set-process-query-on-exit-flag'.
5228
5229 2004-10-21 Daniel Pfeiffer <occitan@esperanto.org>
5230
5231 * progmodes/compile.el (compilation-start): Rely on `cd' to get
5232 dir right and also allow argumentless cd.
5233
5234 2004-10-19 Richard M. Stallman <rms@gnu.org>
5235
5236 * textmodes/flyspell.el (flyspell-mode): Doc fix.
5237
5238 * eshell/em-unix.el (eshell-grep):
5239 Don't bind compilation-process-setup-function.
5240
5241 * comint.el (comint-insert-input): Use @ in `interactive'.
5242 (comint-input-filter-functions): Doc fix.
5243 (comint-kill-whole-line, comint-get-source): Doc fix.
5244
5245 * progmodes/compile.el (compilation-setup):
5246 Don't set buffer-read-only if MINOR is non-nil.
5247
5248 2004-10-19 Jay Belanger <belanger@truman.edu>
5249
5250 * calc/calc.el (calc-emacs-type-19, calc-emacs-type-epoch)
5251 (calc-emacs-type-gnu19): Remove.
5252 (calc-digit-map, calc-read-key-sequence, calc-read-key):
5253 Remove check for old emacs versions.
5254
5255 * calc/calc-ext.el (calc-fancy-prefix): Remove emacs version check.
5256 (calc-init-extensions): Define `calc-alg-map' and `calc-alg-esc-map'
5257 for current Emacs.
5258
5259 * calc/calc-aent.el (calcAlg-previous): Check to see if looking at
5260 the end of the minibuffer.
5261 (calc-do-alg-entry): Remove Emacs version check. Use `copy-keymap' to
5262 copy `esc-map'.
5263
5264 * calc/calc-graph.el (calc-graph-plot): Remove emacs version check.
5265
5266 * calc/calc-mode.el (calc-total-algebraic-mode): Remove error
5267 call that would be given when the current emacs was used.
5268
5269 2004-10-19 Ulf Jasper <ulf.jasper@web.de>
5270
5271 * calendar/icalendar.el: Set coding to utf-8.
5272 (icalendar-version): Increase to 0.07.
5273 (icalendar-monthnumber-table): Change March pattern.
5274 (icalendar-get-all-event-properties)
5275 (icalendar-set-event-property): Delete.
5276 (icalendar-all-events): No longer interactive.
5277 (icalendar-convert-diary-to-ical)
5278 (icalendar-extract-ical-from-buffer): Make obsolete, and alias to
5279 their replacements.
5280 (icalendar-export-file, icalendar-export-region): New functions;
5281 essentially old `icalendar-convert-diary-to-ical' but appending to
5282 target rather than overwriting.
5283 (icalendar-import-file): Append to target file rather than
5284 overwriting. Fourth arg deleted.
5285 (icalendar-import-buffer): New name for old
5286 `icalendar-extract-ical-from-buffer'.
5287 (icalendar--convert-string-for-import): New name for
5288 old `icalendar-convert-for-import'.
5289 (include-icalendar-files): Delete.
5290 Prefix for all internal functions changed from `icalendar-'
5291 to `icalendar--'.
5292
5293 2004-10-19 Richard M. Stallman <rms@gnu.org>
5294
5295 * paths.el (news-path): Fix previous change.
5296
5297 2004-10-18 Jay Belanger <belanger@truman.edu>
5298
5299 * calc/calc-help.el (calc-describe-bindings):
5300 Set `buffer-read-only' to nil while working in the keybindings buffer;
5301 remove some extra information from the keybindings buffer.
5302
5303 2004-10-18 David Ponce <david@dponce.com>
5304
5305 * mouse.el (mouse-drag-move-window-top): New function.
5306 (mouse-drag-mode-line-1): Use it.
5307
5308 2004-10-18 Thien-Thi Nguyen <ttn@gnu.org>
5309
5310 * info.el (Info-fontify-node): For multiline refs,
5311 arrange to unfontify newline and surrounding whitespace.
5312
5313 2004-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
5314
5315 * vc-arch.el (vc-arch-workfile-version): Don't burp if the patch-log
5316 directory is missing.
5317
5318 2004-10-17 John Paul Wallington <jpw@gnu.org>
5319
5320 * ibuffer.el (ibuffer-default-display-maybe-show-predicates):
5321 New customizable variable; whether to display buffers that match
5322 `ibuffer-maybe-show-predicates' by default.
5323 (ibuffer-maybe-show-predicates): Mention it in docstring.
5324 (ibuffer-display-maybe-show-predicates): New variable.
5325 (ibuffer-update): Prefix arg now toggles whether buffers that
5326 match `ibuffer-maybe-show-predicates' should be displayed.
5327 (ibuffer-mode): Set `ibuffer-display-maybe-show-predicates'
5328 locally to heed `ibuffer-default-display-maybe-show-predicates'.
5329 (ibuffer-redisplay-engine): Rename optional second arg to `ignore'.
5330
5331 2004-10-17 Michael Albinus <michael.albinus@gmx.de>
5332
5333 * net/tramp.el: Redo sync with Tramp 2.0.45. Last commit did not
5334 work correctly.
5335
5336 2004-10-17 Daniel Pfeiffer <occitan@esperanto.org>
5337
5338 * buff-menu.el (Buffer-menu-revert-function): Emulate save-excursion.
5339 (Buffer-menu-beginning): New helper function.
5340 (Buffer-menu-execute): Use it.
5341 (Buffer-menu-select): Use it.
5342 (Buffer-menu-sort): Use it and also keep markers.
5343
5344 2004-10-17 Richard M. Stallman <rms@gnu.org>
5345
5346 * paths.el (news-directory): Rename from news-path. Old name alias.
5347 (rmail-spool-directory): Use defvar.
5348 (sendmail-program): Use defcustom.
5349 (remote-shell-program): Use defcustom.
5350 (term-file-prefix): Use defvar.
5351 (abbrev-file-name): Use defvar.
5352
5353 * term.el: Add maintainer.
5354
5355 * subr.el (with-local-quit): Return nil if there's a quit.
5356 (read-passwd): Use with-local-quit. Doc fix.
5357
5358 * strokes.el (strokes-list-strokes): Don't try to delete char at eob.
5359 (strokes-unload-hook): Set as a variable with add-hook.
5360
5361 * startup.el (fancy-splash-tail, normal-splash-screen):
5362 Update copyright year.
5363
5364 * shadowfile.el (shadowfile-unload-hook): Set as variable w/ add-hook.
5365
5366 * server.el (server-unload-hook): Set as a variable with add-hook.
5367
5368 * help-at-pt.el (help-at-pt-unload-hook): Use add-hook; no defvar.
5369
5370 * frame.el (special-display-popup-frame):
5371 Make the buffer current as its frame is created.
5372
5373 * delsel.el (delsel-unload-hook): Set as a variable.
5374
5375 * comint.el (comint-output-filter-functions):
5376 Add comint-watch-for-password-prompt.
5377 (comint-read-noecho): Function deleted.
5378 (send-invisible): Use read-passwd.
5379
5380 * fringe.el (fringe-mode-initialize): New function.
5381 (fringe-mode): Use fringe-mode-initialize as :initialize.
5382
5383 2004-10-17 Kim F. Storm <storm@cua.dk>
5384
5385 * language/indian.el (indian-script-language-alist): Swap value and doc.
5386 (indian-font-char-index-table): Doc fix.
5387
5388 2004-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
5389
5390 * vc-hooks.el (vc-find-file-hook): Call vc-backend with absolute name.
5391
5392 2004-10-16 Juri Linkov <juri@jurta.org>
5393
5394 * progmodes/compile.el (compilation-start): Move let-binding of
5395 `process-environment' into `with-current-buffer' body.
5396 Reported by Matt Hodges <MPHodges@member.fsf.org>.
5397
5398 2004-10-16 Richard M. Stallman <rms@gnu.org>
5399
5400 * pcvs-util.el (cvs-bury-buffer):
5401 Don't call get-buffer-window for effect.
5402
5403 * outline.el (hide-other): Call outline-up-heading with INVISIBLE-OK=t.
5404
5405 * newcomment.el (comment-auto-fill-only-comments): Add autoload.
5406
5407 * msb.el (msb-unload-hook): Set the variable.
5408
5409 * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
5410 Use * to err if buffer is readonly.
5411
5412 * subr.el (looking-back): Return only t or nil.
5413
5414 * whitespace.el (whitespace-unload-hook): Set the variable.
5415
5416 * view.el (view-mode-enable): Set view-page-size and
5417 view-half-page-size to nil.
5418 (view-set-half-page-size-default): view-half-page-size = nil
5419 means the default.
5420 (View-scroll-page-forward): Use view-page-size-default.
5421 (View-scroll-page-backward): Likewise.
5422 (view-page-size, view-half-page-size): Doc fixes.
5423
5424 * emacs-lisp/elp.el (elp-unload-hook): Set the variable.
5425
5426 * emacs-lisp/cl.el (cl-unload-hook): Don't defvar it, just set it.
5427
5428 * emacs-lisp/bytecomp.el (byte-compile-eval): Don't process
5429 "cl" like other files. Instead, call byte-compile-find-cl-functions.
5430 (byte-compile-log-1): Bind inhibit-read-only.
5431 (byte-compile-warning-prefix, byte-compile-log-file): Likewise.
5432 (byte-compile-log-warning): Likewise.
5433 (byte-compile-file-form-require): Detect "cl" from the arg value.
5434
5435 * progmodes/compile.el (compilation-start): Assume compilation-mode
5436 will make the buffer read-only.
5437 (compilation-mode): Take arg name-of-mode.
5438 (compilation-setup): Make buffer read-only.
5439 (compilation-handle-exit): Bind inhibit-read-only.
5440
5441 * textmodes/ispell.el (ispell-command-loop): Use with-no-warnings.
5442 (ispell-message): Likewise.
5443 (ispell-show-choices): Don't call get-buffer-window uselessly.
5444 (ispell-init-process): Use set-process-query-on-exit-flag.
5445
5446 2004-10-16 Kim F. Storm <storm@cua.dk>
5447
5448 * fringe.el (fringe-bitmaps): Only initialize when defined.
5449
5450 * pcvs.el (cvs-mode-view-file, cvs-mode-view-file-other-window): Add.
5451 (cvs-mode-find-file): Add optional `view' arg to enter view mode.
5452
5453 * pcvs-defs.el (cvs-mode-map): Bind v to cvs-mode-view-file.
5454
5455 2004-10-15 Simon Josefsson <jas@extundo.com>
5456
5457 * net/password.el: Add.
5458
5459 2004-10-14 Masatake YAMATO <jet@gyve.org>
5460
5461 * progmodes/gud.el (gdb-script-beginning-of-defun): New function.
5462 (gdb-script-end-of-defun): New function.
5463 (gdb-script-mode): Use `gdb-script-beginning-of-defun' and
5464 `gdb-script-end-of-defun' as *-of-defun-function.
5465
5466 2004-10-13 Daniel Pfeiffer <occitan@esperanto.org>
5467
5468 * button.el (button-activate): Allow a marker to display as an action.
5469
5470 * help-fns.el (describe-variable): Use it to make "below" a hyperlink.
5471
5472 * help.el (describe-mode): Use it to make minor mode list into
5473 hyperlinks.
5474
5475 2004-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
5476
5477 * vc.el (vc-annotate-display-select): Fix typo.
5478
5479 * subr.el (substitute-key-definition-key): New function.
5480 (substitute-key-definition): Use it with map-keymap.
5481 (event-modifiers): Use push.
5482 (mouse-movement-p, with-temp-buffer): Simplify.
5483
5484 2004-10-12 Jay Belanger <belanger@truman.edu>
5485
5486 * calc/calc-help.el (calc-help-function-list, calc-help-variable-list):
5487 New variables.
5488 (calc-help-index-entries): New function.
5489 (calc-describe-function): Use `calc-help-function-list' instead of
5490 obarray for completion.
5491 (calc-describe-variable): Use `calc-help-variable-list' instead
5492 of obarray for completion.
5493
5494 2004-10-12 Richard M. Stallman <rms@gnu.org>
5495
5496 * info-look.el (info-lookup-file): Add info-file property.
5497 (info-lookup-symbol): Likewise.
5498
5499 * info.el (info-xref): Add underlining.
5500 (info): Add info-file property.
5501 (Info-find-emacs-command-nodes): Specify case-sensitive search.
5502
5503 2004-10-12 Michael Albinus <michael.albinus@gmx.de>
5504
5505 Sync with Tramp 2.0.45.
5506
5507 * net/tramp.el (top): Apply `def-edebug-spec' only if function is
5508 defined. This is not the case for XEmacs without package "edebug".
5509 (tramp-set-auto-save-file-modes): Set permissions of autosaved
5510 remote files to the permissions of the original file. This is not
5511 the case for Emacs < 21.3.50 and XEmacs < 21.5. Add function to
5512 `auto-save-hook'. Reported by Thomas Prokosch <thomas@nadev.net>.
5513 (tramp-perl-decode): Fix an error in Perl implementation.
5514 $pending must be cleared every loop. Reported by Benjamin Place
5515 <benjaminplace@sprintmail.com>
5516
5517 * net/tramp-smb.el (tramp-smb-advice-PC-do-completion):
5518 Don't activate advice during definition. This is done later on,
5519 depending on test result of `substitute-in-file-name'.
5520 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5521
5522 2004-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
5523
5524 * pcvs-parse.el (cvs-parse-commit): Fix parsing for new commit message.
5525
5526 * emacs-lisp/lisp.el (mark-sexp): Preserve direction when repeating.
5527
5528 2004-10-12 David Ponce <david@dponce.com>
5529
5530 * recentf.el (recentf-edit-list): Update the menu when the recentf
5531 list has been modified.
5532
5533 2004-10-12 Simon Josefsson <jas@extundo.com>
5534
5535 * net/tls.el (tls-certtool-program): New variable.
5536 (tls-certificate-information): New function, based on
5537 ssl-certificate-information.
5538
5539 2004-10-12 Kenichi Handa <handa@m17n.org>
5540
5541 * international/mule.el (coding-system-equal): Move from mule-util.el.
5542
5543 * international/mule-util.el (coding-system-equal): Move to mule.el.
5544
5545 2004-10-12 Kim F. Storm <storm@cua.dk>
5546
5547 * kmacro.el (kmacro-insert-counter, kmacro-add-counter): Use and
5548 reset kmacro-initial-counter-value if set.
5549 (kmacro-set-counter): Only set kmacro-counter if defining or executing
5550 macro. Set kmacro-initial-counter-value otherwise. Never set both.
5551 (kmacro-display): Show macro counter if non-zero.
5552
5553 * subr.el (substitute-key-definition): Mention command remapping
5554 in doc string.
5555
5556 2004-10-11 Jay Belanger <belanger@truman.edu>
5557
5558 * calc/calc-misc.el (calc-info-goto-node): New function.
5559 (calc-tutorial, calc-info-summary): Go to appropriate Calc info
5560 node in one step.
5561 (calc-describe-copying, calc-describe-distribution)
5562 (calc-describe-thing, calc-describe-no-warranty, calc-describe-key):
5563 Go to appropriate info node in one step.
5564
5565 2004-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5566
5567 * pcvs-defs.el (pcl-cvs-load-hook): Remove unused var.
5568
5569 * font-lock.el (font-lock-apply-highlight): Fix last change.
5570
5571 2004-10-11 Simon Josefsson <jas@extundo.com>
5572
5573 * mail/smtpmail.el (smtpmail-open-stream): Look for
5574 starttls-gnutls-program instead of starttls-program iff
5575 starttls-use-gnutls is non-nil.
5576 (smtpmail-open-stream): Don't overwrite user settings of
5577 starttls-extra-arguments and starttls-extra-args.
5578
5579 2004-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
5580
5581 * comint.el (comint-mouse-insert-input): Remove.
5582 (comint-insert-input): Make it work for mouse bindings.
5583 (comint-mode-map): Move defs into the declaration.
5584 (comint-output-filter): Typo.
5585
5586 * diff-mode.el (diff-current-defun): Fix 2004-06-13's change.
5587
5588 2004-10-10 Kai Grossjohann <kai.grossjohann@gmx.net>
5589
5590 * net/ange-ftp.el (ange-ftp-remote-shell): Remove variable.
5591 (ange-ftp-call-chmod): Reference remote-shell-program instead of
5592 ange-ftp-remote-shell.
5593
5594 2004-10-10 Andreas Schwab <schwab@suse.de>
5595
5596 * emacs-lisp/byte-opt.el (byte-optimize-backward-word): Optimize
5597 `(backward-word)' to `(forward-word -1)', not `(forward-char -1)'.
5598 Reported by <sri@asu.edu>.
5599
5600 2004-10-10 Benjamin Rutt <brutt@bloomington.in.us>
5601
5602 * vc.el (vc-annotate-mode): Remove variable.
5603 (vc-annotate-display-select): Only call vc-annotate-mode
5604 if we're not in that mode already.
5605
5606 2004-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5607
5608 * imenu.el (imenu--completion-buffer): Don't return t for rescan.
5609 (imenu-choose-buffer-index): Check here for rescan instead.
5610
5611 * font-lock.el (font-lock-apply-highlight): Explicitly check the case
5612 where the face expression evals to nil.
5613
5614 * textmodes/tex-mode.el (tex-font-lock-append-prop): New fun.
5615 (tex-font-lock-keywords-2): Use it.
5616 (tex-font-lock-syntactic-keywords): Fix the `verbatim' treatment.
5617
5618 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Fix backslashes.
5619
5620 2004-10-09 Kim F. Storm <storm@cua.dk>
5621
5622 * subr.el (progress-reporter-update): Define before first usage.
5623 (make-progress-reporter): Doc fix.
5624
5625 2004-10-09 Luc Teirlinck <teirllm@auburn.edu>
5626
5627 * textmodes/paragraphs.el (sentence-end-double-space)
5628 (sentence-end-without-period, sentence-end-without-space)
5629 (sentence-end): Doc fixes.
5630
5631 2004-10-08 Peter Seibel <peter@javamonkey.com> (tiny change)
5632
5633 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph):
5634 Change paragraph-start regexp so we don't fill code starting with #'(.
5635
5636 2004-10-08 Sebastien Kirche <seki@seki.fr> (tiny change)
5637
5638 * mail/mail-extr.el (mail-extr-ignore-realname-equals-mailbox-name):
5639 New defcustom.
5640 (extract-address-components): Use it.
5641
5642 2004-10-08 Paul Pogonyshev <pogonyshev@gmx.net>
5643
5644 * subr.el (make-progress-reporter, progress-reporter-update)
5645 (progress-reporter-force-update, progress-reporter-do-update)
5646 (progress-reporter-done): New functions.
5647
5648 * tar-mode.el (tar-summarize-buffer): Use progress reporter.
5649
5650 * progmodes/etags.el (etags-tags-completion-table): Use progress
5651 reporter.
5652 (etags-tags-apropos): Likewise.
5653
5654 2004-10-08 Alan Mackenzie <acm@muc.de>
5655
5656 * isearch.el (isearch-yank-line): C-y yanks to next EOL, not end
5657 of current line.
5658
5659 2004-10-08 Masatake YAMATO <jet@gyve.org>
5660
5661 * server.el (server-process-filter): Wrap `process-send-region'
5662 by `condition-case' to guard the case when the pipe to PROC is closed.
5663
5664 2004-10-07 Mark A. Hershberger <mah@everybody.org>
5665
5666 * xml.el (xml-substitute-special): Limit handling of external entities.
5667
5668 2004-10-06 Nick Roberts <nickrob@snap.net.nz>
5669
5670 * progmodes/gdb-ui.el (gdb-ann3): (Re-)initialise gdb-input-queue.
5671
5672 2004-10-06 John Paul Wallington <jpw@gnu.org>
5673
5674 * xml.el (xml-parse-dtd): Fix `error' call.
5675
5676 2004-10-05 Mark A. Hershberger <mah@everybody.org>
5677
5678 * xml.el (xml-substitute-special): Return a single string instead
5679 of a list of strings if an entity substitution is made.
5680
5681 2004-10-05 Ulf Jasper <ulf.jasper@web.de>
5682
5683 * calendar/icalendar.el: New file.
5684
5685 2004-10-05 Juri Linkov <juri@jurta.org>
5686
5687 * isearch.el (isearch-done): Set mark after running hook.
5688 Reported by Drew Adams <drew.adams@oracle.com>.
5689
5690 * info.el (Info-history, Info-toc): Fix Info headers.
5691 (Info-toc): Narrow buffer before Info-fontify-node.
5692 (Info-build-toc): Don't check for special Info file names.
5693 Set main-file to nil if Info-find-file returns a symbol.
5694
5695 2004-10-05 Emilio C. Lopes <eclig@gmx.net>:
5696
5697 * calendar/calendar.el (calendar-goto-iso-week): Add autoload.
5698 (calendar-mode-map): Add binding for `calendar-goto-iso-week'.
5699 * calendar/cal-menu.el (calendar-mode-map): Ditto.
5700
5701 2004-10-05 Glenn Morris <gmorris@ast.cam.ac.uk>
5702
5703 * calendar/cal-iso.el (calendar-iso-read-args): New function,
5704 for old interactive spec from calendar-goto-iso-date.
5705 (calendar-goto-iso-date): Use it.
5706 (calendar-goto-iso-week): New function. Suggested by Emilio
5707 C. Lopes <eclig@gmx.net>.
5708
5709 2004-10-04 Luc Teirlinck <teirllm@auburn.edu>
5710
5711 * textmodes/enriched.el (enriched-mode-map): Give `set-left-margin' and
5712 `set-right-margin' bindings that follow the minor mode conventions.
5713
5714 2004-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
5715
5716 * textmodes/tex-mode.el (tex-dvi-view-command): Use `yap' on w32.
5717 (tex-font-lock-keywords-1): Add url and nolinkurl for args with `_'.
5718 (latex-block-args-alist): Add minipage and picture.
5719 (latex-block-body-alist): Use reftex-label if enabled.
5720 (latex-insert-block): Don't insert a \n if not necessary.
5721 (tex-compile-commands): Make sure dvips doesn't send to printer.
5722 (tex-compile-default): Handle the case where no executable is found.
5723 (latex-noindent-environments): New var.
5724 (latex-find-indent): Use it. Take an empty line as an arg-breaker.
5725 If tex-indent-allhanging is non-nil, make sure we only align for macros
5726 at beginning of line.
5727
5728 2004-10-03 Daniel Pfeiffer <occitan@esperanto.org>
5729
5730 * newcomment.el (comment-beginning): Doc fix and don't choke on
5731 unset `comment-end-skip' when at beginning of comment.
5732
5733 2004-10-02 Dan Nicolaescu <dann@ics.uci.edu>
5734
5735 * term.el (term-adjust-current-row-cache): Don't allow the current
5736 row to become negative.
5737 (term-emulate-terminal): Fix insert mode. Handle tab insertion at
5738 the end of the line. Fix scroll down. Add comments.
5739 (term-handle-ansi-escape): Don't exceed terminal width when moving
5740 right.
5741 (term-scroll-region): Move the cursor after setting the scroll region.
5742
5743 2004-10-01 Luc Teirlinck <teirllm@auburn.edu>
5744
5745 * indent.el (set-left-margin, set-right-margin): Rename `lm' arg
5746 to `width' for consistency with docstring. Doc fix.
5747
5748 2004-10-01 Martin Stjernholm <bug-cc-mode@gnu.org>
5749
5750 * progmodes/cc-langs.el: Load cl here since cc-defs doesn't do it.
5751 This is necessary for derived modes.
5752
5753 2004-09-30 Kim F. Storm <storm@cua.dk>
5754
5755 * kmacro.el (kmacro-lambda-form, kmacro-extract-lambda): Add.
5756 (kmacro-bind-to-key, kmacro-name-last-macro): Use kmacro-lambda-form.
5757
5758 * edmacro.el: Require kmacro to use the new kmacro-lambda-form and
5759 kmacro-extract-lambda functions.
5760 (edit-kbd-macro): Handle kmacro lambda forms.
5761 Include counter and counter format in edit buffer.
5762 (edmacro-finish-edit): Get counter and format from edit buffer and
5763 update kmacro bindings when found.
5764
5765 2004-09-29 Luc Teirlinck <teirllm@auburn.edu>
5766
5767 * textmodes/paragraphs.el (forward-paragraph):
5768 Avoid args-out-of-range error when point winds up at the beginning of
5769 the buffer and hard newlines are enabled.
5770
5771 * newcomment.el (comment-multi-line): Doc fix.
5772
5773 2004-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
5774
5775 * diff-mode.el (diff-file-header-re): Tighten up regexp a tiny bit.
5776 (diff-fixup-modifs): Catch unified-diff file-headers.
5777
5778 2004-09-29 Kim F. Storm <storm@cua.dk>
5779
5780 * progmodes/gdb-ui.el (breakpoint): Define as fringe bitmap.
5781 (gdb-mouse-toggle-breakpoint): Fix fringe-bitmaps-at-pos usage.
5782 (gdb-put-breakpoint-icon): Use breakpoint bitmap.
5783
5784 * fringe.el (fringe-bitmap-p): New macro.
5785 (fringe-bitmaps): Add standard fringe bitmaps on load.
5786
5787 2004-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
5788
5789 * dired.el (dired-view-command-alist): Use more efficient regexps.
5790 Remove dubious arguments.
5791 (dired-align-file): New function.
5792 (dired-insert-directory): Use it.
5793 (dired-move-to-end-of-filename): Make the " -> " search more specific.
5794 (dired-buffers-for-dir): Remove unused var `pattern'.
5795
5796 2004-09-28 Matthew Mundell <matt@mundell.ukfsn.org>
5797
5798 * calendar/diary-lib.el (list-diary-entries): Save diary buffer
5799 from diary display excursion. Store diary buffer's point for
5800 `simple-diary-display'.
5801 (simple-diary-display): Set window point and start when
5802 displaying buffer, to preserve point.
5803
5804 2004-09-27 Luc Teirlinck <teirllm@auburn.edu>
5805
5806 * textmodes/enriched.el (enriched-translations): Replace defconst
5807 with defvar.
5808
5809 2004-09-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5810
5811 * printing.el: Doc fix.
5812 (pr-version): New version number (6.8.1).
5813 (pr-ps-file-using-ghostscript): Use make-temp-file instead of
5814 make-temp-name.
5815 (pr-delete-file): Check if file exists before deleting it.
5816 Reported by Lennart Borgman <lennart.borgman.073@student.lu.se>.
5817
5818 2004-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
5819
5820 * term.el (term-display-table): New variable.
5821 (term-mode): Use it.
5822 (term-exec-1): Set the coding system to binary.
5823 (term-emulate-terminal): Decode the string before inserting it.
5824
5825 2004-09-26 Dan Nicolaescu <dann@ics.uci.edu>
5826
5827 * term.el (term-ansi-at-eval-string, term-ansi-default-fg)
5828 (term-ansi-default-bg, term-ansi-current-temp): Delete unused vars.
5829 (map): Bind S-prior, S-next and S-insert.
5830 (term-mode): Set `indent-tabs-mode' to nil.
5831 (term-paste): New function to be bound to S-insert.
5832 (term-send-del, term-send-backspace): Change the strings sent.
5833 (term-termcap-format): Synchronyze with etc/e/eterm.ti.
5834 (term-handle-colors-array): Fix handling of underline and reverse.
5835 (term-handle-ansi-escape): Do not handle smcup/rmcup. Add comments.
5836 (term-erase-in-line): Fix comparison.
5837 (term-emulate-terminal): Fix line wrap handling.
5838 (term-start-output-log): Rename from `term-set-output-log'.
5839 (term-stop-output-log): Rename from `term-stop-photo'.
5840 (term-switch-to-alternate-sub-buffer): Comment out, unused.
5841
5842 2004-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
5843
5844 * dired.el (dired-move-to-filename): Don't output a message if
5845 raise-error is non-nil. Fix return position and value.
5846
5847 * files.el (insert-directory): Obey --dired even with symlinks.
5848
5849 2004-09-25 Lars Hansen <larsh@math.ku.dk>
5850
5851 * ls-lisp.el (ls-lisp-format): Mark file names with property
5852 dired-filename.
5853
5854 2004-09-25 Kim F. Storm <storm@cua.dk>
5855
5856 * ido.el (ido-max-directory-size): New defcustom.
5857 (ido-decorations): Add "too big" element.
5858 (ido-directory-too-big): New dynamic var.
5859 (ido-may-cache-directory): Don't cache big directories.
5860 (ido-directory-too-big-p): New defun.
5861 (ido-set-current-directory): Update ido-directory-too-big.
5862 (ido-read-internal): Make empty ido-cur-item if too-big.
5863 (ido-buffer-internal): Use ido-read-internal directly instead of
5864 ido-read-buffer.
5865 (ido-file-internal): Init ido-directory-too-big.
5866 (ido-complete): <TAB> If ido-directory-too-big is set, clear it,
5867 and redo completion with full list.
5868 (ido-toggle-ignore): <C-a> If ido-directory-too-big is set, clear
5869 it, and show completions.
5870 (ido-all-completions): Let bind ido-directory-too-big to nil.
5871 (ido-exhibit): Handle ido-directory-too-big.
5872 (ido-read-buffer): Handle fallback to read-buffer.
5873 Init ido-directory-too-big.
5874 (ido-read-file-name, ido-read-directory-name, ido-completing-read):
5875 Init ido-directory-too-big.
5876
5877 2004-09-24 Luc Teirlinck <teirllm@auburn.edu>
5878
5879 * subr.el (delay-mode-hooks): Doc fix.
5880
5881 2004-09-23 Luc Teirlinck <teirllm@auburn.edu>
5882
5883 * textmodes/enriched.el
5884 (enriched-default-text-properties-local-flag): New variable.
5885 (enriched-mode): Make sure that enabling and disabling the mode is
5886 a no-op. Doc fix.
5887
5888 2004-09-23 H\e,Ae\e(Bkon Malmedal <hmalmedal@yahoo.no> (tiny change)
5889
5890 * calendar/holidays.el (holiday-advent): Report on a specified day
5891 offset from advent, not just advent.
5892 (holiday-easter-etc): Report on one specified day offset from
5893 easter, not all easter holidays. Various Easter holidays moved to
5894 `christian-holidays' variable in calendar.el.
5895 * calendar/calendar.el (christian-holidays): Adapt for new
5896 behaviour of `holiday-advent' and `holiday-easter-etc' functions.
5897
5898 2004-09-23 Kim F. Storm <storm@cua.dk>
5899
5900 * image.el (insert-sliced-image): Add doc string.
5901
5902 * ido.el (ido-choice-list): New dynamic var for `list' context.
5903 (ido-context-switch-command): New dynamic var.
5904 (ido-define-mode-map): Generalize switch between file/buffer contexts.
5905 (ido-read-internal): Handle new `list' context.
5906 Handle insert-buffer and insert-file ido-exit values.
5907 (ido-buffer-internal): New arg switch-cmd. Use it to setup
5908 ido-context-switch-command. Handle insert-file ido-exit value.
5909 (ido-read-buffer): Set ido-context-switch-command to 'ignore
5910 unless it is already bound by caller.
5911 (ido-file-internal): New arg switch-cmd. Use it to setup
5912 ido-context-switch-command. Handle insert-buffer ido-exit value.
5913 (ido-enter-insert-buffer, ido-enter-insert-file): New commands
5914 used for context switching.
5915 (ido-all-completions): Handle new `list' context.
5916 (ido-make-choice-list): Return choices for `list' context.
5917 (ido-find-file-in-dir, ido-display-file, ido-write-file)
5918 (ido-display-buffer, ido-kill-buffer): Disable context switching.
5919 (ido-insert-buffer, ido-insert-file): Setup context switching.
5920 (ido-exhibit): Handle `list' context.
5921 (ido-read-file-name): Disable context switching. Handle fallback.
5922 (ido-read-directory-name): Disable context switching.
5923 (ido-completing-read): New defun like completing-read. Setup and
5924 use new `list' context.
5925
5926 2004-09-20 Jesper Harder <harder@ifa.au.dk>
5927
5928 * progmodes/tcl.el (inferior-tcl): Use pop-to-buffer.
5929
5930 2004-09-21 Jay Belanger <belanger@truman.edu>
5931
5932 * calc/calc-graph.el (calc-graph-add-curve): Move the call to
5933 `calc-graph-set-styles' so the gnuplot buffer will appear in a
5934 separate window.
5935
5936 2004-09-21 Luc Teirlinck <teirllm@auburn.edu>
5937
5938 * subr.el (after-change-major-mode-hook): Doc fix.
5939
5940 2004-09-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5941
5942 * printing.el: Doc fix. Add a new tip about the use of gsprint instead
5943 of ghostscript for monochrome PostScript file in Windows.
5944
5945 2004-09-21 Kenichi Handa <handa@m17n.org>
5946
5947 * descr-text.el (describe-char): Checking of quail activation
5948 fixed.
5949
5950 2004-09-21 Jay Belanger <belanger@truman.edu>
5951
5952 * calc/calc.el (calc-mode-var-list): Remove unnecessary quotes.
5953
5954 2004-09-20 Luc Teirlinck <teirllm@auburn.edu>
5955
5956 * subr.el (run-mode-hooks): Run `after-change-major-mode-hook'
5957 after the mode hooks instead of before. Doc fix.
5958
5959 2004-09-20 Jason Rumney <jasonr@gnu.org>
5960
5961 * startup.el (command-line) [windows-nt]: Try .emacs first, then
5962 _emacs, but revert to .emacs if neither exists in home directory.
5963
5964 2004-09-20 John Paul Wallington <jpw@gnu.org>
5965
5966 * bindings.el (completion-ignored-extensions): Add .dfsl.
5967
5968 2004-09-20 Richard M. Stallman <rms@gnu.org>
5969
5970 * bindings.el (scroll-left): Make it disabled.
5971
5972 * files.el (enable-local-eval): Doc fix.
5973
5974 * indent.el (move-to-left-margin): Special case for minibuffer.
5975
5976 * term.el (term-emulate-terminal): Turn off undo for output.
5977 Use with-current-buffer and save-selected-window.
5978
5979 * eshell/esh-ext.el (eshell-explicit-command-char): Doc fix.
5980
5981 * progmodes/make-mode.el (makefile-fill-paragraph):
5982 Don't insist on spaces when looking for comments. # is enough.
5983
5984 * files.el (hack-local-variables): Copy the variables list
5985 to another buffer, strip prefixes and suffixes there, then read.
5986 (enable-local-eval): Doc fix.
5987 (ignored-local-variables): Initialize to nil.
5988 (risky-local-variable-p): Don't check ignored-local-variables here.
5989 (hack-one-local-variable): Ignore var if in ignored-local-variables.
5990
5991 2004-09-20 Dan Nicolaescu <dann@ics.uci.edu>
5992
5993 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set syntax
5994 of = to "." (punctuation).
5995
5996 2004-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5997
5998 * subr.el (event-basic-type): Fix mask (extend to 22bits).
5999
6000 2004-09-18 Luc Teirlinck <teirllm@auburn.edu>
6001
6002 * textmodes/enriched.el (enriched-rerun-flag): New variable.
6003 (enriched-before-change-major-mode): New function.
6004 Add it to `change-major-mode-hook'.
6005 (enriched-after-change-major-mode): New function.
6006 Add it to `after-change-major-mode-hook'.
6007 (enriched-mode): Make it work correctly if called from
6008 `after-change-major-mode-hook'.
6009 No longer set `indent-line-function'.
6010
6011 * simple.el (fundamental-mode): Run `after-change-major-mode-hook'.
6012
6013 * subr.el (after-change-major-mode-hook): New variable.
6014 (run-mode-hooks): Implement it.
6015
6016 2004-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
6017
6018 * battery.el (battery-linux-proc-apm): Use string-to-number.
6019 (battery-linux-proc-acpi): Ignore all hidden files in the battery dir.
6020 Use dolist (and less indentation). Use erase-buffer.
6021 Pre-initialize `design-capacity', `warn', and `low'.
6022 (battery-format): Use replace-regexp-in-string.
6023
6024 2004-09-18 Ralph Schleicher <rs@nunatak.allgaeu.org>
6025
6026 * battery.el: Delete superfluous empty lines.
6027 (battery-linux-proc-acpi): Attempt to gather information from all
6028 battery subdirectories regardless of their file name.
6029 (battery-linux-proc-apm): Replace all occurrences of
6030 battery-hex-to-int-2 with string-to-int (base 16).
6031 (battery-hex-to-int-2, battery-hex-to-int): Delete functions.
6032 (battery-hex-map): Delete variable.
6033
6034 2004-09-18 John Paul Wallington <jpw@gnu.org>
6035
6036 * calc/calc-units.el (calc-quick-units): Fix overzealous
6037 s/or/unless/.
6038
6039 2004-09-17 Jay Belanger <belanger@truman.edu>
6040
6041 * calc/calc.el (calc-mode-var-list): Fix the value of
6042 `calc-matrix-brackets'.
6043
6044 2004-09-17 Romain Francoise <romain@orebokech.com>
6045
6046 * ibuf-ext.el (define-ibuffer-filter filename):
6047 Expand dired-directory since buffer-file-name is absolute.
6048
6049 2004-09-17 Dan Nicolaescu <dann@ics.uci.edu>
6050
6051 * ediff-init.el (ediff-current-diff-face-A)
6052 (ediff-current-diff-face-B, ediff-current-diff-face-C)
6053 (ediff-current-diff-face-Ancestor)
6054 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
6055 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
6056 (ediff-even-diff-face-A, ediff-even-diff-face-B)
6057 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
6058 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
6059 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
6060 Use min-colors.
6061
6062 * term.el (term-down): Perform vertical motion if DOWN is negative.
6063 (term-exec-1): Set both TERMCAP and TERMINFO unconditionally.
6064 (term-termcap-format): Synchronyze with the eterm terminfo entry
6065 in etc/e/eterm.ti.
6066 (term-handle-colors-array): If the current foreground or
6067 background are zero (i.e. unspecified), use the foreground and
6068 background of the default face for reverse video.
6069 (term-ansi-at-eval-string, term-ansi-default-fg)
6070 (term-ansi-default-bg, term-ansi-current-temp): Delete unused variable.
6071 (term-mem): Delete ununsed function.
6072 (term-protocol-version): Increment.
6073 (term-current-face): Set to default.
6074
6075 2004-09-15 Jay Belanger <belanger@truman.edu>
6076
6077 * calc/calc.el (calc-mode-var-list): Define this variable.
6078 (calc-always-load-extensions, calc-line-numbering)
6079 (calc-line-breaking, calc-display-just, calc-display-origin)
6080 (calc-number-radix, calc-leading-zeros, calc-group-digits)
6081 (calc-group-char, calc-point-char, calc-frac-format)
6082 (calc-prefer-frac, calc-hms-format, calc-date-format)
6083 (calc-float-format, calc-full-float-format, calc-complex-format)
6084 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
6085 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
6086 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
6087 (calc-matrix-brackets, calc-language, calc-language-option)
6088 (calc-left-label, calc-right-label, calc-word-size)
6089 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
6090 (calc-display-raw, calc-internal-prec, calc-angle-mode)
6091 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
6092 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
6093 (calc-window-height, calc-display-trail, calc-show-selections)
6094 (calc-use-selections, calc-assoc-selections)
6095 (calc-display-working-message, calc-auto-why, calc-timing)
6096 (calc-mode-save-mode, calc-standard-date-formats)
6097 (calc-autorange-units, calc-was-keypad-mode, calc-full-mode)
6098 (calc-user-parse-tables, calc-gnuplot-default-device)
6099 (calc-gnuplot-default-output, calc-gnuplot-print-device)
6100 (calc-gnuplot-print-output, calc-gnuplot-geometry)
6101 (calc-graph-default-resolution, calc-graph-default-resolution-3d)
6102 (calc-invocation-macro, calc-show-banner): Give these values as
6103 part of `calc-mode-var-list's initialization after the variables
6104 are declared with defvar.
6105 (calc-bug-address): Change email address to send bug reports to.
6106 Change the maintainer address at the top.
6107 (calc-mode): Compare `calc-settings-file' to `user-init-file' rather
6108 than "\\.emacs" to determine if it is the user-init-file.
6109
6110 * calc/calc-embed.el (calc-embedded-set-modes): Use
6111 `calc-mode-var-list' correctly.
6112
6113 2004-09-15 Thien-Thi Nguyen <ttn@gnu.org>
6114
6115 * vc.el (annotate-time): Document point handling.
6116 (vc-annotate-display-autoscale): Doc fix.
6117
6118 2004-09-15 Miles Bader <miles@gnu.org>
6119
6120 * generic.el (generic-make-keywords-list): Use symbol rather than
6121 word anchors in regexp.
6122
6123 2004-09-14 Sean O'Rourke <sorourke@cs.ucsd.edu>
6124
6125 * ibuf-ext.el (define-ibuffer-filter filename): If buffer has
6126 no file name consider `dired-directory'.
6127
6128 2004-09-14 Kim F. Storm <storm@cua.dk>
6129
6130 * faces.el (cursor): Add face-no-inherit property. Doc fix.
6131
6132 2004-09-14 Simon Josefsson <jas@extundo.com>
6133
6134 * files.el (auto-mode-alist): Map .soa and .zone to dns-mode.
6135
6136 * textmodes/dns-mode.el: Add.
6137
6138 2004-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
6139
6140 * novice.el (disabled-command-hook): Use shorthand for obsolescence.
6141 (disabled-command-function): Make the ?\ char more obvious.
6142
6143 * vc-arch.el (vc-arch-root, vc-arch-registered):
6144 * vc-mcvs.el (vc-mcvs-root, vc-mcvs-registered): Use vc-find-root.
6145
6146 2004-09-13 Hovav Shacham <hovav@sha1.stanford.edu>
6147
6148 * windmove.el (windmove-frame-edges): Report coordinates of
6149 outside edges of frame, not inside edges.
6150 (windmove-coordinates-of-position): Convert into wrapper to new
6151 function `windmove-coordinates-of-window-position';
6152 `compute-motion' always applies to selected window.
6153 (windmove-coordinates-of-position): Update documentation to refer
6154 to Emacs 21 Lisp Reference Manual.
6155 (windmove-find-other-window): Fix off-by-one errors for max x,y.
6156
6157 2004-09-13 Kim F. Storm <storm@cua.dk>
6158
6159 * isearch.el (isearch-resume-in-command-history): Rename from
6160 isearch-resume-enabled and change default to nil.
6161
6162 2004-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6163
6164 * vc-hooks.el (vc-ignore-dir-regexp): New var.
6165 (vc-registered): Use it.
6166 (vc-find-root): New fun.
6167
6168 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
6169 Don't tell to use \\{...} when it's already done.
6170
6171 * textmodes/bibtex.el (bibtex-generate-url-list): Change format.
6172 Provide a sample complex default.
6173 (bibtex-url, bibtex-font-lock-url): Adapt to new format.
6174 (bibtex-entry): Use mapc.
6175
6176 2004-09-12 Kim F. Storm <storm@cua.dk>
6177
6178 * kmacro.el (kmacro-step-edit-prompt): Add "%s" format to message.
6179
6180 * emulation/cua-rect.el (cua--rectangle-operation): Let bind
6181 inhibit-field-text-motion to t so rectangles work in comint buffers.
6182
6183 * simple.el (choose-completion-string): Set buffer before running
6184 choose-completion-string-functions hook so it can be buffer-local.
6185
6186 2004-09-12 Daniel Pfeiffer <occitan@esperanto.org>
6187
6188 * progmodes/compile.el (compilation-start): Parse command to see
6189 if it starts with a cd, and if so perform it for the *compilation*
6190 buffer. Change the header to reflect this.
6191
6192 2004-09-11 Kim F. Storm <storm@cua.dk>
6193
6194 * ido.el (ido-enable-dot-prefix): Doc fix.
6195 (ido-enable-dot-prefix): New defcustom.
6196 (ido-set-matches1): Use it.
6197
6198 2004-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
6199
6200 * textmodes/bibtex.el (bibtex-mark-active)
6201 (bibtex-run-with-idle-timer): Move the `if' inside the defun.
6202
6203 2004-09-10 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6204
6205 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore): Regexp is
6206 used in a case insensitive environment.
6207 (bibtex-mode-map): Rearrange order of menus.
6208 (bibtex-quoted-string-re): Obsolete.
6209 (bibtex-complete-key-cleanup): Variable replaced by new function.
6210 (bibtex-font-lock-keywords): Use backquotes.
6211 (bibtex-font-lock-url-regexp): New internal variable.
6212 (bibtex-name-in-field): New optional arg remove-opt-alt to remove
6213 "OPT" and "ALT".
6214 (bibtex-insert-current-kill, bibtex-make-field)
6215 (bibtex-prepare-new-entry, bibtex-yank-pop, bibtex-String): Use unless.
6216 (bibtex-parse-field-text): Simplify.
6217 (bibtex-string=): New helper function.
6218 (bibtex-member-of-regexp): Merge with bibtex-autokey-get-title.
6219 (bibtex-map-entries): Use bibtex-string=.
6220 (bibtex-search-entry): Use not.
6221 (bibtex-enclosing-field): Fix docstring.
6222 (bibtex-assoc-regexp): Obsolete.
6223 (bibtex-format-entry): Use assoc-string and bibtex-string=.
6224 (bibtex-autokey-get-names): Handle empty name field.
6225 (bibtex-parse-strings): Use assoc-string and unless.
6226 (bibtex-complete-string-cleanup): Expansion list is passed as an arg.
6227 Use assoc-string.
6228 (bibtex-pop): Simplify.
6229 (bibtex-mode): Set font-lock-extra-managed-props.
6230 (bibtex-entry-update): Use assoc-string.
6231 (bibtex-parse-entry): Remove "OPT" and "ALT" from FIELD.
6232 (bibtex-autofill-entry): Use bibtex-string=.
6233 (bibtex-print-help-message): Simplify.
6234 (bibtex-find-entry): New optional arg START.
6235 (bibtex-validate): Use bibtex-string= and assoc-string.
6236 Do not call obsolete function compilation-parse-errors.
6237 (bibtex-remove-delimiters): Only remove delimiters if present.
6238 (bibtex-copy-entry-as-kill): Add docstring.
6239 (bibtex-clean-entry): Use bibtex-string=. Handle empty keys.
6240 Detect duplicate keys if bibtex-maintain-sorted-entries is nil.
6241 (bibtex-complete): Use bibtex-predefined-month-strings,
6242 bibtex-string=, and new function bibtex-complete-key-cleanup.
6243 (bibtex-generate-url-list): New variable.
6244 (bibtex-url): New command bound to C-c C-l and mouse-2.
6245 (bibtex-url-map): New local keymap for bibtex-url-mouse.
6246 (bibtex-font-lock-url): New function.
6247
6248 2004-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
6249
6250 * progmodes/grep.el (grep-mode): Remove unnecessary autoload.
6251
6252 2004-09-09 Kim F. Storm <storm@cua.dk>
6253
6254 * kmacro.el (kmacro-bind-to-key): Associate dedicated macro
6255 counter and format with binding.
6256 (kmacro-name-last-macro): New defun. Like name-last-kbd-macro, but
6257 the declared macro uses own macro counter and format. Give symbol
6258 kmacro property.
6259 (kmacro-keymap): Bind kmacro-name-last-macro to n.
6260 (kmacro-start-macro, kmacro-end-macro, kmacro-call-macro)
6261 (kmacro-end-and-call-macro): Doc fix.
6262
6263 2004-09-09 Lars Hansen <larsh@math.ku.dk>
6264
6265 * desktop.el (desktop-clear-preserve-buffers):
6266 Remove make-obsolete-variable.
6267
6268 2004-09-08 Richard M. Stallman <rms@gnu.org>
6269
6270 * buff-menu.el (list-buffers-noselect): Call format-mode-line
6271 with the buffer as argument.
6272
6273 2004-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
6274
6275 * vc-arch.el (vc-arch-state): Fix parsing for `names' method.
6276
6277 2004-09-08 Juri Linkov <juri@jurta.org>
6278
6279 * replace.el (perform-replace): Use `query-replace-descr'.
6280
6281 * cus-start.el (history-delete-duplicates): Specify customization.
6282
6283 * diff-mode.el (diff-mode-map):
6284 * progmodes/compile.el (compilation-mode-map):
6285 * progmodes/grep.el (grep-mode-map):
6286 * replace.el (occur-mode-map): Rename `next-error-follow-mode'
6287 to `next-error-follow-minor-mode'.
6288
6289 2004-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6290
6291 * isearch.el (isearch-lazy-highlight-update): Take into account
6292 the case of zero-length match at the search bound.
6293
6294 2004-09-08 Kim F. Storm <storm@cua.dk>
6295
6296 * emulation/cua-rect.el (cua--highlight-rectangle): Fix last
6297 change. Use zero width overlays when necessary.
6298
6299 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
6300
6301 * subr.el (split-string): Docfix.
6302
6303 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
6304
6305 * emacs-lisp/bytecomp.el (byte-compile-generate-call-tree): Doc fix.
6306 (display-call-tree): Ensure newline after caller/calls blocks.
6307
6308 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
6309
6310 * startup.el (command-line-1): Make option
6311 --directory/-L modify `load-path' straight away.
6312
6313 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
6314
6315 * progmodes/grep.el (grep-mode): Use normal autoload cookie.
6316
6317 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
6318
6319 * emacs-lisp/autoload.el (make-autoload):
6320 Handle `define-compilation-mode'.
6321
6322 * emacs-lisp/lisp-mode.el (define-compilation-mode):
6323 Specify `doc-string-elt' property.
6324
6325 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
6326
6327 * bs.el (bs-mode): Doc fix.
6328
6329 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
6330
6331 * info.el (Info-insert-dir): Fix temp buffer leak bug.
6332
6333 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
6334
6335 * play/blackbox.el (bb-trace-ray): Avoid double tracing.
6336
6337 2004-09-08 Kenichi Handa <handa@m17n.org>
6338
6339 * ps-mule.el: Fix old function calls (ps-mule-chars-in-string ->
6340 length, ps-mule-string-char -> aref, ps-mule-next-index -> 1+,
6341 ps-mule-next-point -> 1+).
6342
6343 * composite.el (encode-composition-rule): Add autoload cooky.
6344
6345 2004-09-07 Luc Teirlinck <teirllm@auburn.edu>
6346
6347 * format.el (buffer-auto-save-file-format): Make it permanent local.
6348
6349 2004-09-07 Kim F. Storm <storm@cua.dk>
6350
6351 * emacs-lisp/authors.el (authors-aliases): Add more aliases.
6352 (authors-fixed-entries): Fix typo.
6353 (authors-canonical-author-name): Compact multiple spaces.
6354 Ignore trivial names (e.g. only first name).
6355
6356 * term.el (term-window-width): Only use full window width on
6357 window system if overflow-newline-into-fringe is enabled.
6358 (term-mode): Don't disable overflow-newline-into-fringe.
6359
6360 2004-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
6361
6362 * term/xterm.el (function-key-map): Add bindings for C- and S- cursor
6363 motion as seen on my Mac OS X xterms.
6364
6365 * newcomment.el (uncomment-region-default, comment-region-default):
6366 New functions extracted from uncomment-region and comment-region.
6367 (comment-region, comment-region-function, uncomment-region)
6368 (uncomment-region-function): Use them.
6369
6370 * pcvs-util.el (cvs-string-prefix-p): Use compare-strings.
6371
6372 * pcvs-info.el (cvs-states): Allow `ignore' on NEED-UPDATE.
6373 It's not crucial but can make sense at times.
6374
6375 * vc-arch.el (vc-arch-workfile-version): Handle the special case before
6376 the first commit.
6377
6378 * vc.el (vc-buffer-context, vc-restore-buffer-context):
6379 Disable obsolete code.
6380
6381 2004-09-07 Juri Linkov <juri@jurta.org>
6382
6383 * progmodes/grep.el (grep-highlight-matches): Change default from
6384 `t' to `auto-detect', and type from `boolean' to `choice'. Doc fix.
6385 (grep-compute-defaults): Set `grep-highlight-matches' to `t'
6386 if grep option `--color' is available, or to `nil' otherwise.
6387 (grep-process-setup): Call `grep-compute-defaults' if
6388 `grep-highlight-matches' is not computed. Set env-vars only
6389 if `grep-highlight-matches' is `t'.
6390 (grep-use-null-device): Remove redundant type `boolean' (`choice'
6391 is already defined).
6392
6393 * progmodes/compile.el (compilation-start): Use copy of
6394 `process-environment' created by `copy-sequence' to not
6395 modify env-vars in the global `process-environment'.
6396
6397 2004-09-06 Eli Zaretskii <eliz@gnu.org>
6398
6399 * simple.el (next-error-follow-minor-mode): Fix last change.
6400
6401 2004-09-05 Luc Teirlinck <teirllm@auburn.edu>
6402
6403 * textmodes/paragraphs.el (use-hard-newlines): Make it into a
6404 permanent local.
6405
6406 2004-09-04 Richard M. Stallman <rms@gnu.org>
6407
6408 * isearch.el (isearch-lazy-highlight-new-loop): Don't invoke
6409 highlighting if the search string is empty.
6410
6411 2004-09-04 Luc Teirlinck <teirllm@auburn.edu>
6412
6413 * facemenu.el (facemenu-active-faces): Change condition of inner
6414 `while' loop to also check the first two elements of `face-atts'
6415 and `mask-atts'.
6416
6417 2004-09-04 John Paul Wallington <jpw@gnu.org>
6418
6419 * thumbs.el (thumbs-view-image-mode-map): Fix command name typo.
6420 (thumbs-view-image-mode): Make buffer read-only.
6421
6422 2004-09-04 Christopher J. Madsen <cjm@pobox.com>
6423
6424 * textmodes/ispell.el (ispell-really-aspell): New defvar.
6425 (ispell-check-version): Set it.
6426 (ispell-send-replacement): New function.
6427 (ispell-process-line): Call ispell-send-replacement.
6428
6429 2004-09-04 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
6430
6431 * eshell/em-pred.el (eshell-predicate-help-string): Doc fix.
6432 Support choosing seconds with "s".
6433
6434 2004-09-04 Jari Aalto <jari.aalto@poboxes.com>
6435
6436 * terminal.el (te-escape): Show `?' in prompt for help key.
6437
6438 2004-09-04 Emilio C. Lopes <eclig@gmx.net>
6439
6440 * emacs-lisp/lisp.el (kill-backward-up-list): New function.
6441
6442 2004-09-04 Dan Nicolaescu <dann@ics.uci.edu>
6443
6444 * simple.el (next-error-follow-minor-mode)
6445 (next-error-follow-mode-post-command-hook): New functions.
6446 (next-error-follow-last-line): New defvar.
6447
6448 * diff-mode.el (diff-mode-map): Bind next-error-follow-mode.
6449 * progmodes/compile.el (compilation-mode-map): Likewise.
6450 * progmodes/grep.el (grep-mode-map): Likewise.
6451 * replace.el (occur-mode-map): Likewise.
6452
6453 * newcomment.el (uncomment-region): Bind comment-use-global-state
6454 to nil.
6455
6456 2004-09-03 Luc Teirlinck <teirllm@auburn.edu>
6457
6458 * autorevert.el (auto-revert-handler): Bind `buffer-read-only'
6459 locally around the call to `revert-buffer'.
6460
6461 2004-09-03 Juri Linkov <juri@jurta.org>
6462
6463 * isearch.el (isearch-toggle-regexp): Set `isearch-success' and
6464 `isearch-adjusted' to `t'.
6465 (isearch-toggle-case-fold): Set `isearch-success' to `t'.
6466 (isearch-message-prefix): Add "pending" for isearch-adjusted.
6467 (isearch-other-meta-char): Restore isearch-point unconditionally.
6468 (isearch-query-replace): Add new arg `regexp-flag' and use it.
6469 Set point to start of match if region is not active in transient
6470 mark mode (to include the current match to region boundaries).
6471 Push the search string to `query-replace-from-history-variable'.
6472 Add prompt "Query replace regexp" for isearch-regexp.
6473 Add region beginning/end as last arguments of `perform-replace.'
6474 (isearch-query-replace-regexp): Replace code by the call to
6475 `isearch-query-replace' with arg `t'.
6476
6477 2004-09-03 Richard M. Stallman <rms@gnu.org>
6478
6479 * startup.el (normal-top-level): Undo previous TERM change.
6480
6481 2004-09-03 Kim F. Storm <storm@cua.dk>
6482
6483 * emulation/cua-rect.el (cua--overlay-keymap): New keymap for
6484 highlight overlays; allow using RET when cursor is over a button.
6485 (cua--highlight-rectangle): Use it.
6486 (cua--rectangle-set-corners): Don't move backwards at eol.
6487 (cua--forward-line): Don't move into void after eob.
6488
6489 * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
6490 point is set (and displayed) inside rectangle.
6491 (cua--rectangle-operation): Fix for highlight of empty lines.
6492 (cua--highlight-rectangle): Fix highlight for tabs.
6493 Position cursor at left/right edge of rectangle using new `cursor'
6494 property on overlay strings.
6495 (cua--indent-rectangle): Don't tabify.
6496 (cua-rotate-rectangle): Ignore that point has moved.
6497
6498 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6499
6500 * term/mac-win.el: Add ASCII equivalents for some function keys.
6501 (mode-line-frame-identification): Sync with x-win.el.
6502
6503 2004-09-02 Juri Linkov <juri@jurta.org>
6504
6505 * progmodes/compile.el (compilation-buffer-name): Compare major
6506 mode with second element of compilation-arguments instead of third
6507 to reflect latest changes in compilation-arguments structure.
6508 (recompile): Use global variable `compilation-directory' to get
6509 recent compilation directory only when `recompile' is invoked NOT
6510 in the compilation buffer. Otherwise, use `default-directory' of
6511 the compilation buffer.
6512 (compilation-error-properties): Allow to funcall col and end-col.
6513 (compilation-mode-font-lock-keywords): Check col and end-col by
6514 `integerp'.
6515 (compilation-goto-locus): If end-mk is non-nil in transient mark
6516 mode don't activate the mark (and don't display message in
6517 push-mark), but highlight overlay between mk and end-mk.
6518
6519 * progmodes/grep.el (grep-highlight-matches): New defcustom.
6520 (grep-regexp-alist): Add rule to highlight grep matches.
6521 (grep-process-setup): Set env-vars GREP_OPTIONS and GREP_COLOR.
6522
6523 * info.el (Info-fontify-node): Don't compute other-tag
6524 if Info-hide-note-references=hide.
6525
6526 * help.el (function-called-at-point):
6527 * help-fns.el (variable-at-point):
6528 Try `find-tag-default' when other methods failed.
6529
6530 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
6531 Do not push mark if inhibit-mark-movement is non-nil.
6532
6533 * textmodes/ispell.el (ispell-html-skip-alists):
6534 Fix backslashes in docstring.
6535
6536 2004-09-01 Juri Linkov <juri@jurta.org>
6537
6538 * isearch.el (isearch-wrap-function)
6539 (isearch-push-state-function): New defvars.
6540 (isearch-pop-fun-state): New defsubst.
6541 (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
6542 (isearch-push-state): Set the result of calling
6543 `isearch-push-state-function' to the `isearch-pop-fun-state' field.
6544 (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
6545 restore the mode-specific starting point of terminated search.
6546 (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
6547 (isearch-repeat): Call `isearch-wrap-function' if defined.
6548 (isearch-message-prefix): Don't add prefix "over" to the message
6549 for wrapped search if `isearch-wrap-function' is defined.
6550 (isearch-search): Call function saved in `isearch-pop-fun-state' to
6551 restore the mode-specific starting point of failed search.
6552
6553 * info.el (Info-search-whitespace-regexp): Fix backslashes.
6554 (Info-search): Add new optional arguments for the sake of isearch.
6555 Replace whitespace in Info-search-whitespace-regexp literally.
6556 Add backward search. Don't call `Info-select-node' if regexp is
6557 found in the same Info node. Don't add node to Info-history for
6558 wrapped isearch.
6559 (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
6560 (Info-isearch-push-state, Info-isearch-pop-state): New funs.
6561 (Info-mode): Set local variables `isearch-search-fun-function',
6562 `isearch-wrap-function', `isearch-push-state-function',
6563 `search-whitespace-regexp'.
6564
6565 * isearch.el: Remove ancient Change Log section.
6566 (isearch-string, isearch-message-string, isearch-point)
6567 (isearch-success, isearch-forward-flag, isearch-other-end)
6568 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
6569 (isearch-barrier, isearch-within-brackets)
6570 (isearch-case-fold-search): Add suffix `-state' to state-related
6571 defsubsts to avoid name clashes with other function names.
6572
6573 * simple.el (next-error): New defgroup and defface.
6574 (next-error-highlight, next-error-highlight-no-select):
6575 New defcustoms.
6576 (next-error-no-select): Let-bind next-error-highlight to the value
6577 of next-error-highlight-no-select before calling `next-error'.
6578
6579 * progmodes/compile.el (compilation-goto-locus):
6580 Use `next-error' face instead of `region'. Set 4-th argument of
6581 `move-overlay' to `current-buffer' to move overlay to different
6582 source buffers. Use new variable `next-error-highlight'.
6583
6584 * simple.el (next-error-find-buffer): Move the rule
6585 "if current buffer is a next-error capable buffer" after the
6586 rule "if next-error-last-buffer is set to a live buffer".
6587 Simplify to test all rules in one `or'.
6588 (next-error): Doc fix.
6589 (next-error, previous-error, first-error)
6590 (next-error-no-select, previous-error-no-select):
6591 Make arguments optional.
6592
6593 2004-08-31 Luc Teirlinck <teirllm@auburn.edu>
6594
6595 * macros.el (apply-macro-to-region-lines): Make it operate on all
6596 lines that begin in the region, rather than on all complete lines
6597 in the region.
6598
6599 2004-08-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6600
6601 * x-dnd.el (x-dnd-protocol-alist): Document update.
6602 (x-dnd-known-types): Defcustom it.
6603 (x-dnd-handle-motif): Print message-atom in error message.
6604
6605 2004-08-30 John Paul Wallington <jpw@gnu.org>
6606
6607 * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
6608 strings rather than programatically constructing message.
6609
6610 2004-08-30 Richard M. Stallman <rms@gnu.org>
6611
6612 * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
6613 Don't return a string that would read as the wrong character code.
6614
6615 2004-08-29 Kim F. Storm <storm@cua.dk>
6616
6617 * emulation/cua-base.el (cua-auto-expand-rectangles):
6618 Remove automatic rectangle padding feature; replace by non-destructive
6619 virtual rectangle edges feature.
6620 (cua-virtual-rectangle-edges): New defcustom.
6621 (cua-auto-tabify-rectangles): New defcustom.
6622 (cua-paste): If paste into a marked rectangle, insert rectangle at
6623 current column, even if virtual; also paste exactly as many lines
6624 as has been marked (ignore additional lines or add empty lines),
6625 but paste whole source if only one line is marked.
6626 (cua--update-indications): No longer use overwrite-cursor to
6627 indicate rectangle padding
6628
6629 * emulation/cua-rect.el (cua--rectangle-padding): Remove.
6630 (cua--rectangle-virtual-edges): New defun.
6631 (cua--rectangle-get-corners): Remove optional PAD arg.
6632 (cua--rectangle-set-corners): Never do padding.
6633 (cua--forward-line): Remove optional PAD arg. Simplify.
6634 (cua-resize-rectangle-right, cua-resize-rectangle-left)
6635 (cua-resize-rectangle-down, cua-resize-rectangle-up):
6636 (cua-resize-rectangle-bot, cua-resize-rectangle-top)
6637 (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
6638 (cua--rectangle-move): Never do padding. Simplify.
6639 (cua--tabify-start): New defun.
6640 (cua--rectangle-operation): Add tabify arg. All callers changed.
6641 (cua--pad-rectangle): Remove.
6642 (cua--delete-rectangle): Handle delete with virtual edges.
6643 (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
6644 (cua--insert-rectangle): Handle insert at virtual column.
6645 Perform auto-tabify if necessary.
6646 (cua--activate-rectangle): Remove optional FORCE arg.
6647 Never do padding. Simplify.
6648 (cua--highlight-rectangle): Enhance for virtual edges.
6649 (cua-toggle-rectangle-padding): Remove command.
6650 (cua-toggle-rectangle-virtual-edges): New command.
6651 (cua-sequence-rectangle): Add optional TABIFY arg. Callers changed.
6652 (cua--rectangle-post-command): Don't force rectangle padding.
6653 (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
6654
6655 2004-08-28 Luc Teirlinck <teirllm@auburn.edu>
6656
6657 * indent.el (edit-tab-stops-buffer): Doc fix.
6658
6659 2004-08-28 Richard M. Stallman <rms@gnu.org>
6660
6661 * progmodes/grep.el (grep-default-command): Use find-tag-default.
6662 (grep-tag-default): Function deleted.
6663
6664 * subr.el (find-tag-default): Move from etags.el.
6665
6666 * progmodes/etags.el (find-tag-default): Move to subr.el.
6667
6668 * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
6669 into the basic character if it has an uppercase form.
6670
6671 2004-08-27 Kenichi Handa <handa@m17n.org>
6672
6673 * international/utf-8.el (utf-8-post-read-conversion): If the
6674 buffer is unibyte, temporarily make it multibyte.
6675
6676 2004-08-27 Masatake YAMATO <jet@gyve.org>
6677
6678 * calendar/time-date.el (time-to-seconds): Add autoload cookies.
6679
6680 2004-08-25 John Paul Wallington <jpw@gnu.org>
6681
6682 * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
6683 0, 1, and many mismatches in message.
6684 (tex-start-shell): Use `set-process-query-on-exit-flag'.
6685
6686 * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
6687 (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
6688
6689 2004-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
6690
6691 * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
6692 vc-diff-switches differently.
6693
6694 2004-08-22 Luc Teirlinck <teirllm@auburn.edu>
6695
6696 * speedbar.el (speedbar-file-regexp): Give it a phony defvar
6697 before and a real defvar after
6698 `speedbar-supported-extension-expressions'. This is to silence
6699 the compiler without breaking bootstrapping.
6700
6701 2004-08-22 Richard M. Stallman <rms@gnu.org>
6702
6703 * textmodes/flyspell.el (flyspell-word):
6704 Use set-process-query-on-exit-flag.
6705 (flyspell-highlight-duplicate-region): Take POSS as arg.
6706 (flyspell-word): Pass POSS as arg.
6707
6708 * progmodes/ada-xref.el: Many doc and style fixes.
6709 (ada-find-any-references): Use compilation-start.
6710 (ada-get-ali-file-name): Improve error msg.
6711 (ada-get-ada-file-name): Likewise.
6712
6713 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
6714 (ange-ftp-start-process): Use set-process-query-on-exit-flag.
6715
6716 * mail/mail-extr.el (mail-extr-all-top-level-domains):
6717 Add forward defvar.
6718
6719 * whitespace.el (global-whitespace-mode): New alias
6720 for whitespace-global-mode.
6721
6722 * speedbar.el (speedbar-file-regexp): Move definition up.
6723 (speedbar-mode, speedbar-set-mode-line-format):
6724 Use with-no-warnings.
6725 (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
6726
6727 * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
6728 controls whether to display the error buffer.
6729
6730 * ps-mule.el: Delete compatibility code for old Emacses.
6731 (ps-mule-find-wrappoint): Don't use chars-in-region.
6732
6733 * frame.el (display-mouse-p, display-selections-p):
6734 Use with-no-warnings.
6735
6736 * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
6737
6738 2004-08-22 David Kastrup <dak@gnu.org>
6739
6740 * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
6741 information.
6742
6743 * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
6744
6745 2004-08-22 Andreas Schwab <schwab@suse.de>
6746
6747 * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
6748
6749 2004-08-22 Masatake YAMATO <jet@gyve.org>
6750
6751 * cvs-status.el (cvs-status-checkout): New function.
6752 (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
6753
6754 2004-08-21 David Kastrup <dak@gnu.org>
6755
6756 * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
6757 (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
6758 has been converted to use hashtables, the relation `nil=none' is
6759 no longer valid, as `nil' is not a hashtable. This patch tries to
6760 reduce the number of resulting errors.
6761
6762 2004-08-21 John Paul Wallington <jpw@gnu.org>
6763
6764 * subr.el (process-kill-without-query): Made obsolete in
6765 version 21.4, not 21.5.
6766
6767 * log-edit.el (vc-comment-ring, vc-comment-ring-index)
6768 (vc-previous-comment, vc-next-comment)
6769 (vc-comment-search-reverse, vc-comment-search-forward)
6770 (vc-comment-to-change-log): Likewise.
6771
6772 * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
6773
6774 2004-08-21 Peter Seibel <peter@javamonkey.com> (tiny patch)
6775
6776 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
6777 Correct indentation of DEFMETHODS with non-standard method
6778 combinations (e.g., PROGN, MIN, MAX).
6779
6780 2004-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
6781
6782 * startup.el (normal-top-level-add-subdirs-to-load-path):
6783 Avoid unnecessarily checking system-type.
6784 (normal-top-level): Set TERM to "dumb". Simplify.
6785
6786 * avoid.el (mouse-avoidance-ignore-p): New fun.
6787 Also ignore switch-frame, select-window, double, and triple clicks.
6788 (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
6789 (mouse-avoidance-fancy-hook): Use it.
6790
6791 2004-08-20 Zoran Milojevic <zoran@sipquest.com> (tiny change)
6792
6793 * avoid.el (mouse-avoidance-nudge-mouse)
6794 (mouse-avoidance-banish-destination): Stay within the current window
6795 to avoid problems with mouse-autoselect-window.
6796
6797 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
6798
6799 * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
6800 the newer format of some messages in cvs-1.12.1.
6801
6802 2004-08-19 Masatake YAMATO <jet@gyve.org>
6803
6804 * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
6805 (elp-results-jump-to-definition-by-mouse)
6806 (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
6807 (elp-output-result): Use elp-output-insert-symname.
6808
6809 2004-08-18 Kenichi Handa <handa@m17n.org>
6810
6811 * language/cyrillic.el: Register koi8-r in
6812 ctext-non-standard-encodings-alist.
6813 ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
6814
6815 2004-08-17 Luc Teirlinck <teirllm@auburn.edu>
6816
6817 * emacs-lisp/copyright.el (copyright-update-year): Delete code
6818 that replaces 20xy with xy.
6819
6820 2004-08-17 John Paul Wallington <jpw@gnu.org>
6821
6822 * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
6823 (reb-force-update): Doc fix.
6824
6825 2004-08-16 Richard M. Stallman <rms@gnu.org>
6826
6827 * progmodes/which-func.el (which-func-update-1): Doc fix.
6828
6829 * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
6830 (sh-mode-abbrev-table): New variable.
6831
6832 * progmodes/compile.el (compilation-mode): Doc fix.
6833
6834 * emacs-lisp/lisp-mode.el (eval-last-sexp):
6835 Don't cons a new symbol each time.
6836 (eval-last-sexp-fake-value): New variable.
6837
6838 * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
6839 (copyright-update-year): Detect continuation of list of years.
6840
6841 * term.el (term-default-fg-color, term-default-bg-color)
6842 (ansi-term-color-vector): Use `unspecified', not nil, as default.
6843
6844 * imenu.el: Several doc fixes: don't say variables are buffer-local.
6845
6846 2004-08-16 Davis Herring <herring@lanl.gov>
6847
6848 * isearch.el (isearch-string, isearch-message-string, isearch-point)
6849 (isearch-success, isearch-forward-flag, isearch-other-end)
6850 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
6851 (isearch-barrier, isearch-within-brackets)
6852 (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
6853
6854 2004-08-16 Kenichi Handa <handa@m17n.org>
6855
6856 * ps-mule.el (ps-mule-font-info-database): Fix docstring.
6857
6858 2004-08-15 Kenichi Handa <handa@m17n.org>
6859
6860 * term/x-win.el (x-selection-value): If utf8 was successful but
6861 ctext was not, use utf8 string.
6862
6863 2004-08-14 Davis Herring <herring@lanl.gov>
6864
6865 * isearch.el: Remove accidental changes of March 4. Fix backing
6866 up when a regexp isearch is made more general. Use symbolic
6867 accessor functions for isearch stack frames to make usage clearer.
6868 (search-whitespace-regexp): Made groups in documentation shy (as
6869 is the group in the default value).
6870 (isearch-fallback): New function, addresses problems with regexps
6871 liberalized by `\|', adds support for liberalization by `\}' (the
6872 general repetition construct), and incorporates behavior for
6873 `*'/`?'.
6874 (isearch-}-char): New command, calls `isearch-fallback' with
6875 arguments appropriate to a typed `}'.
6876 (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
6877 appropriately.
6878 (isearch-mode-map): Bind `}' to `isearch-}-char'.
6879 (isearch-string, isearch-message,string, isearch-point)
6880 (isearch-success, isearch-forward-flag, isearch-other-end)
6881 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
6882 (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
6883 New inline functions to read fields of a stack frame.
6884
6885 2004-08-14 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> (tiny change)
6886
6887 * battery.el (battery-linux-proc-acpi): Look into battery
6888 directories matching the literal string "CMB", too (required for
6889 Linux kernel version 2.6.7).
6890
6891 2004-08-14 John Paul Wallington <jpw@gnu.org>
6892
6893 * cus-start.el (read-file-name-completion-ignore-case): Add.
6894 (blink-cursor-alist): Change version to "21.4".
6895
6896 * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
6897
6898 2004-08-11 Daniel Pfeiffer <occitan@esperanto.org>
6899
6900 * speedbar.el (speedbar-scan-subdirs): New option.
6901 (speedbar-file-lists): Don't ignore file-name case on Unix and use
6902 dolist.
6903 (speedbar-insert-files-at-point): Take an extra argument and use
6904 it to optionally find out if a subdir is empty. Also unreadable
6905 files don't get expand buttons.
6906 (speedbar-directory): New image (unused pixmap already existed).
6907 (speedbar-expand-image-button-alist): Use it.
6908
6909 2004-08-11 Martin Stjernholm <bug-cc-mode@gnu.org>
6910
6911 CC Mode update to 5.30.9:
6912
6913 * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
6914 Move from cc-vars to cc-defs for dependency reasons. Fix the
6915 POSIX char class test to check that it works in
6916 `skip-chars-(forward|backward)' too.
6917
6918 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
6919 first argument starts with a special brace list.
6920
6921 * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
6922 when `c-opt-type-concat-key' is used (i.e. in Pike).
6923
6924 * progmodes/cc-engine.el (c-looking-at-special-brace-list):
6925 Fix bug when the inner char pair doesn't have paren syntax, i.e. "(<
6926 >)".
6927
6928 * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
6929 whitespace safe.
6930
6931 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
6932 position for `arglist-intro', `arglist-cont-nonempty' and
6933 `arglist-close' when there are two arglist open parens on the same
6934 line and there's nothing in front of the first.
6935
6936 * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
6937 locking of qualified names in Java, which previously could fontify
6938 common indexing expressions in many cases. The standard Java
6939 naming conventions are used to tell them apart.
6940
6941 * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
6942 Fix inconsistency wrt opening parens on the first line inside a paren
6943 block.
6944
6945 * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
6946 compile time for the sake of `c-major-mode-is'.
6947
6948 (c-mode-is-new-awk-p): Made it a macro to delay expansion of
6949 `c-major-mode-is' in the event that this is used inside a
6950 `c-lang-defconst'.
6951
6952 * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
6953 `c-lang-defconst' so that it works better with fallback languages.
6954
6955 * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
6956 it to fail to record the base mode.
6957
6958 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
6959 Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
6960 is used. Reorder the syntax checks to get more efficient
6961 skipping in some situations.
6962
6963 * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
6964 continuation which might precede the newly inserted '{'.
6965
6966 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
6967 Fix cases where it could loop indefinitely.
6968
6969 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
6970 size specs correctly. Only fontify identifiers in front of '('
6971 with as functions - don't accept any paren char. Tighten up
6972 initializer skipping to stop before function and class blocks.
6973
6974 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
6975 the point could be left directly after an open paren when finding
6976 the beginning of the first decl in the block.
6977
6978 * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
6979 table when filtering out legitimate open parens to be recorded.
6980 This could cause cache inconsistencies when e.g.
6981 `c++-template-syntax-table' was temporarily in use.
6982
6983 * progmodes/cc-engine.el (c-on-identifier)
6984 (c-simple-skip-symbol-backward): Small fix for handling "-"
6985 correctly in `skip-chars-backward'. Affected the operator lfun
6986 syntax in Pike.
6987
6988 * progmodes/cc-engine.el (c-invalidate-sws-region-after):
6989 Fix bug that could cause an error from `after-change-functions' when
6990 the changed region is at bob.
6991
6992 2004-08-11 Alan Mackenzie <bug-cc-mode@gnu.org>
6993
6994 CC Mode update to 5.30.9:
6995
6996 * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
6997 to say that <TAB> doesn't insert WS into a CPP line.
6998 (c-indent-command, c-tab-always-indent): Amend doc strings.
6999
7000 * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
7001 checks for user errors, thus eliminating cryptic and unhelpful
7002 Emacs error messages. (1) Check the arg to `c-set-style' is a
7003 string. (2) Check that settings to `c-offsets-alist' are not
7004 spuriously quoted.
7005
7006 * progmodes/cc-cmds.el: (c-electric-brace): Don't delete a comment
7007 which precedes the newly inserted `{'.
7008
7009 2004-08-10 Michael Albinus <michael.albinus@gmx.de>
7010
7011 Sync with Tramp 2.0.44.
7012
7013 * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
7014 function "tramp_file_attributes". Otherwise, file names
7015 containing spaces are misinterpreted. Reported by Magnus Henoch
7016 <mange@freemail.hu>.
7017 (tramp-handle-file-truename): FILENAME must be expanded first.
7018 Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
7019 obscure results. Reported by D. Goel <deego@gnufans.org>.
7020 (tramp-handle-verify-visited-file-modtime): If file does not
7021 exist, say it is not modified if and only if that agrees with the
7022 buffer's record. Check whether a file is visiting the buffer, or
7023 the buffer has no recorded last modification time. Return t in
7024 case the visiting file doesn't exist. Suggested by Luc Teirlinck
7025 <teirllm@auburn.edu>.
7026 (tramp-handle-write-region): Pass modtime explicitely to
7027 `set-visited-file-modtime', because filename can be different
7028 from (buffer-file-name) if `file-precious-flag' is set.
7029 `set-visited-file-modtime' must be called always when `visit' is t
7030 or a string. Suggested by Luc Teirlinck <teirllm@auburn.edu>.
7031 (tramp-handle-set-visited-file-modtime): If `time-list' is not
7032 nil, don't apply the whole body. If the file doesn't exists, set
7033 modtime to '(-1 65535). Suggested by Luc Teirlinck
7034 <teirllm@auburn.edu>.
7035
7036 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
7037
7038 * help.el (describe-bindings): Doc fix.
7039
7040 * subr.el (kbd): Doc fix.
7041
7042 2004-08-08 John Paul Wallington <jpw@gnu.org>
7043
7044 * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
7045 instead of `string-to-int'.
7046 (define-ibuffer-column mode): Fix indentation.
7047
7048 2004-08-08 Lars Hansen <larsh@math.ku.dk>
7049
7050 * wid-edit.el (widget-sexp-validate): Allow whitespace after expression.
7051
7052 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
7053
7054 * subr.el (global-unset-key, local-unset-key): Doc fixes.
7055
7056 * novice.el (disabled-command-function): New variable renamed from
7057 `disabled-command-hook'.
7058 (disabled-command-hook): Keep the _variable_ as alias for
7059 `disabled-command-function' and make obsolete.
7060 (disabled-command-function): Function renamed from
7061 `disabled-command-hook'. Adapt code to name change of the variable.
7062
7063 2004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change)
7064
7065 * simple.el (completion-root-regexp): New defvar.
7066 (completion-setup-function): Use it instead of a literal string.
7067
7068 2004-08-07 John Paul Wallington <jpw@gnu.org>
7069
7070 * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
7071 (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
7072 (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
7073 (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
7074
7075 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
7076
7077 * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
7078 (mail-extr-voodoo): Check mail-extr-disable-voodoo.
7079
7080 2004-08-04 Kenichi Handa <handa@m17n.org>
7081
7082 * international/encoded-kb.el (encoded-kbd-setup-keymap):
7083 Fix previous change.
7084
7085 2004-08-03 Kenichi Handa <handa@m17n.org>
7086
7087 * international/encoded-kb.el: The following changes are to
7088 utilize key-translation-map instead of minor mode map.
7089 (encoded-kbd-iso2022-non-ascii-map): Delete it.
7090 (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
7091 (encoded-kbd-last-key): New function.
7092 (encoded-kbd-iso2022-single-shift): New function.
7093 (encoded-kbd-iso2022-designation)
7094 (encoded-kbd-self-insert-iso2022-7bit)
7095 (encoded-kbd-self-insert-iso2022-8bit)
7096 (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
7097 (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
7098 key-translation-map.
7099 (encoded-kbd-setup-keymap): Setup key-translation-map.
7100 (saved-key-translation-map): New variable.
7101 (encoded-kbd-mode): Save/restore key-translation-map.
7102 Adjust for the change of encoded-kbd-setup-keymap.
7103
7104 2004-08-02 Kim F. Storm <storm@cua.dk>
7105
7106 * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
7107 and call compute-motion with nil for topos and width to get proper
7108 usable width and height for both window and non-window systems.
7109
7110 * windmove.el (windmove-coordinates-of-position): Let compute-motion
7111 calculate usable window width and height.
7112
7113 * window.el (window-buffer-height): Call compute-motion with nil width.
7114
7115 2004-08-01 David Kastrup <dak@gnu.org>
7116
7117 * replace.el (query-replace-read-from):
7118 Use `query-replace-compile-replacement'.
7119 (query-replace-compile-replacement): New function.
7120 (query-replace-read-to): Use `query-replace-compile-replacement'
7121 for repeating the last command.
7122
7123 2004-08-01 John Paul Wallington <jpw@gnu.org>
7124
7125 * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
7126 (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
7127 (pr-switches): Remove period from end of error messages.
7128
7129 * help-mode.el (help-go-back): Likewise.
7130
7131 * abbrev.el (only-global-abbrevs): Doc fix.
7132 (edit-abbrevs-map): Define within defvar.
7133 (quietly-read-abbrev-file): Doc fix.
7134
7135 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
7136
7137 * novice.el (enable-command, disable-command): Doc fixes.
7138
7139 * subr.el (event-modifiers, event-basic-type): Doc fixes.
7140
7141 2004-07-30 Richard M. Stallman <rms@gnu.org>
7142
7143 * subr.el (with-local-quit): Doc fix.
7144
7145 2004-07-30 Luc Teirlinck <teirllm@auburn.edu>
7146
7147 * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
7148
7149 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
7150
7151 * custom.el (defcustom): Doc fix.
7152
7153 2004-07-28 Masatake YAMATO <jet@gyve.org>
7154
7155 * progmodes/etags.el (etags-tags-apropos): Show building progress.
7156
7157 2004-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7158
7159 * imenu.el (imenu-prev-index-position-function)
7160 (imenu-extract-index-name-function, imenu-name-lookup-function)
7161 (imenu--index-alist): Docstring redundancy fix.
7162
7163 2004-07-25 Lars Hansen <larsh@math.ku.dk>
7164
7165 * wdired.el (wdired-finish-edit): Require dired-aux before locally
7166 binding dired-backup-overwrite.
7167
7168 2004-07-25 John Paul Wallington <jpw@gnu.org>
7169
7170 * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
7171
7172 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
7173
7174 * term/tty-colors.el (tty-color-approximate): Doc fix.
7175
7176 * select.el (x-get-selection, x-set-selection): Doc fixes.
7177
7178 * frame.el (make-frame): Doc fix.
7179
7180 2004-07-24 Richard M. Stallman <rms@gnu.org>
7181
7182 * mail/rmail.el (rmail-mime-charset-pattern):
7183 Don't include semicolon in the charset value.
7184
7185 * replace.el (occur-next-error): Call set-window-point.
7186 (occur-engine): Handle negative NLINES.
7187
7188 2004-07-23 Luc Teirlinck <teirllm@auburn.edu>
7189
7190 * frame.el (modify-all-frames-parameters): Minor doc fix.
7191 (set-frame-configuration): Doc fix.
7192
7193 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
7194
7195 * simple.el (completion-setup-function): Compute the common parts
7196 and the first difference place correctly when
7197 partial-completion-mode is on.
7198
7199 2004-07-22 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7200
7201 * ps-print.el: Doc fix.
7202 (ps-print-version): New version 6.6.5.
7203 (ps-printing-region): Doc fix.
7204 (ps-generate-string-list): Comment fix.
7205 (ps-message-log-max): Code fix.
7206
7207 2004-07-22 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
7208
7209 * ps-print.el (ps-begin-file): Improve the DSC compliance of the
7210 generated PostScript.
7211
7212 2004-08-17 Reiner Steib <Reiner.Steib@gmx.de>
7213
7214 * net/tls.el (tls-process-connection-type): Fix docstring. (Sync
7215 with Gnus v5_10 branch.)
7216
7217 2004-08-16 Reiner Steib <Reiner.Steib@gmx.de>
7218
7219 * calendar/time-date.el (time-to-number-of-days): New function.
7220 Imported from from Gnus.
7221
7222 2004-07-22 Kim F. Storm <storm@cua.dk>
7223
7224 * progmodes/make-mode.el: Fix comments.
7225
7226 2004-07-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7227
7228 * printing.el: Doc fix.
7229
7230 2004-07-20 Luc Teirlinck <teirllm@auburn.edu>
7231
7232 * frame.el (modify-all-frames-parameters): Minor doc fix.
7233
7234 2004-07-20 Richard M. Stallman <rms@gnu.org>
7235
7236 * textmodes/fill.el (fill-nobreak-p): If this break point is
7237 at the end of the line, don't consider the newline which follows
7238 as a reason to return t.
7239
7240 2004-07-19 John Paul Wallington <jpw@gnu.org>
7241
7242 * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
7243
7244 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
7245
7246 * dired-aux.el (dired-do-kill-lines): Expand docstring.
7247 Delete irrelevant code.
7248
7249 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
7250
7251 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
7252 New docstring. From Luc Teirlinck.
7253
7254 2004-07-17 Luc Teirlinck <teirllm@auburn.edu>
7255
7256 * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
7257 section.
7258 (auto-revert-handler): Do not check `auto-revert-tail-mode' for
7259 non-file buffers. We know it is nil.
7260
7261 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
7262
7263 Sync with Tramp 2.0.43.
7264
7265 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
7266 Remove outdated comment.
7267 (tramp-locked, tramp-locker): New variables for implementing a
7268 global lock.
7269 (tramp-sh-file-name-handler): Use them to implement the global lock.
7270
7271 2004-07-13 Michael Albinus <michael.albinus@gmx.de>
7272
7273 * net/tramp.el (all): Code cleanup. Change all `tramp-handle-xxx'
7274 calls to respective `xxx` calls.
7275 (tramp-process-alive-regexp): Precise doc string.
7276 (tramp-multi-action-process-alive): New defun.
7277 (tramp-multi-actions): Use it.
7278 (tramp-handle-find-backup-file-name): `copy-tree' is available
7279 since Emacs 22.1 only (XEmacs has it). Implementation rewritten
7280 in order to avoid this function.
7281 (tramp-handle-write-region): Set current buffer. If connection
7282 wasn't open, `file-modes' has changed it accidently. Reported by
7283 David Kastrup <dak@gnu.org>.
7284 (tramp-enter-password, tramp-read-passwd): New arguments USER and
7285 HOST.
7286 (tramp-action-password, tramp-multi-action-password): Apply it.
7287 (tramp-open-connection-rsh): If a port is given, the Tramp buffer
7288 name must still contain the port number. Otherwise, we have two
7289 Tramp buffers, with all the confusion. Reported by Myron Selby
7290 <myron@xytech.com> and Rolf Dubitzky
7291 <Dubitzky@physi.uni-heidelberg.de>.
7292
7293 * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
7294 HOST to `tramp-enter-passwd'.
7295
7296 * net/tramp-vc.el (all): Code cleanup. Change all
7297 `tramp-handle-xxx' calls to respective `xxx` calls.
7298
7299 2004-07-17 Jonathan Yavner <jyavner@member.fsf.org>
7300
7301 * emacs-lisp/testcover.el: New category "potentially-1valued" for
7302 functions that are not erroneous if either 1-valued or
7303 multi-valued. Detect functions in this class.
7304 (testcover-1value-functions, testcover-compose-functions)
7305 (testcover-progn-functions) Add some additional functions to lists.
7306 (testcover-mark): Bugfix when marking up the definition for an
7307 empty function.
7308
7309 2004-07-17 Richard M. Stallman <rms@gnu.org>
7310
7311 * replace.el (occur-read-primary-args): Pass default to
7312 read-from-minibuffer.
7313
7314 * mail/footnote.el (footnote-section-tag): Use defcustom.
7315
7316 * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
7317 Compile font-lock-keywords, not KEYWORDS.
7318 (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
7319 Add warn, check-type. Handle cerror like error.
7320
7321 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
7322
7323 * progmodes/which-func.el (which-func-keymap): New var.
7324 (which-func-face): New face.
7325 (which-func-format): Use them.
7326
7327 2004-07-16 Stephan Stahl <stahl@eos.franken.de> (tiny change)
7328
7329 * buff-menu.el (list-buffers-noselect): Append the buffer's
7330 process status to its mode name.
7331
7332 2004-07-16 Kim F. Storm <storm@cua.dk>
7333
7334 * simple.el (inhibit-mark-movement): New defvar.
7335 (beginning-of-buffer, end-of-buffer): Do not push mark if
7336 inhibit-mark-movement is non-nil or C-u prefix is given.
7337
7338 * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
7339 Init to beginning-of-buffer and end-of-buffer.
7340 (cua--undo-push-mark): New defvar.
7341 (cua--pre-command-handler): Set inhibit-mark-movement if mark is
7342 already active and command is in cua--preserve-mark-commands.
7343 Also fix check for shift modifier on non-window systems.
7344 (cua--post-command-handler): Clear inhibit-mark-movement if set.
7345
7346 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
7347
7348 * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
7349 of two integers, instead of a cons.
7350
7351 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
7352 `visited-file-modtime' now returns a list of two integers, instead
7353 of a cons.
7354
7355 * dired.el (dired-directory-changed-p): Ditto.
7356
7357 * progmodes/grep.el (grep): Doc fix.
7358
7359 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
7360
7361 * autorevert.el (auto-revert-tail-mode)
7362 (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
7363 (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
7364 in both at the same time.
7365 (auto-revert-tail-mode): New command.
7366 (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
7367 (auto-revert-handler): Revert only either tail or whole file.
7368
7369 * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
7370 add auto-revert-tail-mode.
7371
7372 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7373
7374 * printing.el: Doc fix. Change name of some funs.
7375 (pr-dosify-file-name): New fun. Replace ps-dosify-path.
7376 (pr-unixify-file-name): New fun. Replace ps-unixify-path.
7377 (pr-standard-file-name): New fun. Replace pr-standard-path.
7378 (pr-call-process): Code fix.
7379
7380 2004-07-12 Luc Teirlinck <teirllm@auburn.edu>
7381
7382 * subr.el (with-selected-window): Doc fix.
7383
7384 2004-07-11 Luc Teirlinck <teirllm@auburn.edu>
7385
7386 * subr.el (get-buffer-window-list): Doc fix.
7387
7388 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
7389
7390 * files.el (switch-to-buffer-other-window): Doc fix.
7391
7392 * window.el (save-selected-window, one-window-p)
7393 (split-window-keep-point, split-window-vertically)
7394 (split-window-horizontally): Doc fixes.
7395
7396 2004-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7397
7398 * printing.el: Doc fix. Now it uses call-process instead of
7399 shell-command for low command execution.
7400 (pr-version): New version number (6.8).
7401 (pr-shell-file-name): Option removed.
7402 (pr-shell-command): Fun removed.
7403 (pr-call-process): New fun. Replace pr-shell-command.
7404 (pr-standard-path, pr-remove-nil-from-list): New funs.
7405 (zmacs-region-stays, current-mouse-event, current-menubar): New var.
7406 (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
7407 (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
7408 (pr-ps-utility-process, pr-txt-print): Code fix.
7409
7410 2004-07-10 Stephan Stahl <stahl@eos.franken.de> (tiny change)
7411
7412 * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
7413 boolean.
7414
7415 2004-07-09 Lars Hansen <larsh@math.ku.dk>
7416
7417 * wid-edit.el (widget-field-buffer): Doc fix.
7418
7419 2004-07-09 John Paul Wallington <jpw@gnu.org>
7420
7421 * emacs-lisp/re-builder.el (reb-update-overlays):
7422 Distinguish between one and several matches in message.
7423
7424 2004-07-09 Richard M. Stallman <rms@gnu.org>
7425
7426 * mouse.el (mouse-set-region-1): If transient-mark-mode
7427 is `identity', change it to `only'.
7428
7429 * simple.el (current-word): Doc fix.
7430
7431 2004-07-09 Mark A. Hershberger <mah@everybody.org>
7432
7433 * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
7434 so that it is more understanding of whitespace.
7435
7436 * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the form
7437 (("ns" . "element") (attr-list) children) instead of
7438 ((:ns . "element") (attr-list) children) in order to reduce the
7439 number of symbols used.
7440 (xml-skip-dtd): Change to use xml-parse-dtd but set
7441 xml-validating-parsing to nil.
7442 (xml-parse-dtd): Parse entity deleclarations in DOCTYPEs.
7443 (xml-substitute-entity): Remove in favor of new entity substitution.
7444 (xml-substitute-special): Rewrite in to substitute complex
7445 entities from DOCTYPE declarations.
7446 (xml-parse-fragment): Parse fragments from entity deleclarations.
7447 (xml-parse-region, xml-parse-tag, xml-parse-attlist)
7448 (xml-parse-dtd, xml-substitute-special): Make validity checks
7449 conditioned on xml-validating-parser. Add "Not Well Formed" to
7450 error messages about well-formedness.
7451
7452 2004-07-08 Steven Tamm <steventamm@mac.com>
7453
7454 * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
7455 (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
7456 Do not treat double clicks and triple clicks specially in the
7457 scroll bar (preventing strange repositioning problems)
7458
7459 2004-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
7460
7461 * replace.el (query-replace-regexp-eval): Fix last change.
7462
7463 2004-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
7464
7465 * replace.el (query-replace-descr): New fun.
7466 (query-replace-read-from, query-replace-read-args): Default to the
7467 previous from&to.
7468 (query-replace-read-to): Quote the `from' string when displaying it.
7469 (query-replace-regexp-eval): Immediately check read-only status.
7470 Use query-replace-read-from to get the \n checking.
7471 Quote the `from' string when displaying it.
7472 (map-query-replace-regexp, occur-read-primary-args):
7473 Quote the `from' string when displaying it.
7474
7475 * isearch.el (isearch-query-replace): Pass the regexp-ness and
7476 delimited-ness of the search to query-replace.
7477
7478 * replace.el (query-replace-read-from, query-replace-read-to):
7479 New funs extracted from query-replace-read-args.
7480 (query-replace-read-args): Use them.
7481
7482 * replace.el (query-replace-interactive, query-replace-read-args):
7483 Remove the `initial' special value.
7484 (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
7485 (occur-engine): Remove unused var `matchend'.
7486
7487 * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
7488 Use the search string without prompting.
7489
7490 2004-07-05 Kenichi Handa <handa@m17n.org>
7491
7492 * international/mule.el (decode-coding-inserted-region):
7493 Set last-coding-system-used only when coding is nil.
7494
7495 2004-07-03 Eli Zaretskii <eliz@gnu.org>
7496
7497 * progmodes/grep.el (grep-compute-defaults, grep-command)
7498 (grep-program, find-program, grep-find-use-xargs, grep-history)
7499 (grep-find-history, grep-tag-default, grep-find-command)
7500 (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
7501 Add autoload cookies, for unbundled packages that load `compile'
7502 and expect all grep-related symbols to become defined.
7503
7504 2004-07-03 KOSEKI Yoshinori <kose@meadowy.org>
7505
7506 * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
7507 (iimage-mode-image-search-path): New user option to search the
7508 image file.
7509 (iimage-locate-file): New funcion. Emacs21.3 or earlier does not
7510 have locate-file.
7511 (iimage-mode-buffer): Use it.
7512
7513 2004-07-03 Nick Roberts <nickrob@gnu.org>
7514
7515 * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
7516 carefully.
7517 (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
7518
7519 2004-07-03 Juri Linkov <juri@jurta.org>
7520
7521 * replace.el (query-replace-read-args): Swallow space after 'foo,
7522 not after (quote foo). Match space only immediately after symbol,
7523 not anywhere in the whole string.
7524
7525 2004-07-02 Richard M. Stallman <rms@gnu.org>
7526
7527 * replace.el (query-replace-read-args): Swallow space after
7528 symbols, not after closeparens. But avoid error if string ends there.
7529
7530 * progmodes/python.el (python-beginning-of-statement):
7531 Exit the loop if backward-up-list gets error.
7532
7533 * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
7534
7535 2004-07-02 Andre Spiegel <spiegel@gnu.org>
7536
7537 * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
7538 only if vc-consult-headers is non-nil.
7539
7540 2004-07-02 Juri Linkov <juri@jurta.org>
7541
7542 * pcvs.el (cvs-mode-diff-repository): New command.
7543
7544 * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
7545
7546 2004-07-01 Juri Linkov <juri@jurta.org>
7547
7548 * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
7549 C-M-y to isearch-yank-char. Bind M-% to isearch-query-replace,
7550 C-M-% to isearch-query-replace-regexp.
7551 (minibuffer-local-isearch-map): Add arrow key bindings.
7552 Bind C-f to isearch-yank-char-in-minibuffer.
7553 (isearch-forward): Doc fix.
7554 (isearch-edit-string): Doc fix.
7555 (isearch-query-replace, isearch-query-replace-regexp): New funs.
7556 (isearch-del-char): Add optional arg. Set isearch-yank-flag to t.
7557 (isearch-yank-char): Add optional arg.
7558 (isearch-yank-char-in-minibuffer): New fun.
7559
7560 * replace.el (query-replace-interactive): Change type from boolean
7561 to choice. Add value `initial'.
7562 (query-replace-read-args): Handle value `initial' of
7563 query-replace-interactive.
7564
7565 2004-06-29 Kim F. Storm <storm@cua.dk>
7566
7567 * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
7568 (breakpoint-disabled-bitmap-face): Add :group 'gud.
7569
7570 * progmodes/ada-xref.el (ada-tight-gvd-integration):
7571 Add :group 'ada.
7572
7573 * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
7574
7575 2004-06-29 Juri Linkov <juri@jurta.org>
7576
7577 * replace.el (query-replace-read-args): Swallow a space after
7578 everything except )]" which in most cases means after a symbol.
7579
7580 * emacs-lisp/pp.el (pp-buffer): Add autoload.
7581
7582 2004-06-28 Richard M. Stallman <rms@gnu.org>
7583
7584 * font-lock.el (font-lock-fontify-syntactic-keywords-region):
7585 More changes to go with previous change in font-lock.el.
7586
7587 2004-06-26 David Kastrup <dak@gnu.org>
7588
7589 * replace.el (perform-replace): Highlight the match even in
7590 non-query mode if there is potential replace string editing.
7591
7592 2004-06-26 Kai Grossjohann <kai.grossjohann@gmx.net>
7593
7594 * net/tramp.el (tramp-handle-file-remote-p): New implementation to
7595 agree with new return value of `file-remote-p'.
7596 This syncs with Tramp 2.0.42.
7597
7598 * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
7599 according to new documentation of `file-remote-p'.
7600
7601 * files.el (file-remote-p): Fix doc to say that return value is
7602 identification of remote system, if not nil.
7603 (file-relative-name): Use new return value of `file-remote-p'.
7604
7605 2004-06-26 Nick Roberts <nickrob@gnu.org>
7606
7607 * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
7608 (gdb-goto-breakpoint): Fix breakage.
7609
7610 2004-06-26 Eli Zaretskii <eliz@gnu.org>
7611
7612 * man.el (Man-getpage-in-background): Add windows-nt to the list
7613 of systems where shell-file-name should be used instead of
7614 literal "sh".
7615
7616 2004-06-25 Sam Steingold <sds@gnu.org>
7617
7618 * add-log.el (change-log-font-lock-keywords): Support Common Lisp
7619 function names `(setf symbol)'.
7620
7621 2004-06-24 Richard M. Stallman <rms@gnu.org>
7622
7623 * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
7624
7625 * font-lock.el (font-lock-keywords): Change format of compiled values.
7626 Document it.
7627 (font-lock-add-keywords): If font-lock-keywords is compiled,
7628 extract the uncompiled version, modify, then recompile.
7629 (font-lock-remove-keywords): Likewise.
7630 (font-lock-fontify-keywords-region): Handle changed format.
7631 (font-lock-compile-keywords): Handle changed format.
7632 (font-lock-set-defaults): Compile the keywords explicitly here.
7633
7634 2004-06-24 David Kastrup <dak@gnu.org>
7635
7636 * replace.el (query-replace-read-args): Implement `\,' and `\#'
7637 replacements here.
7638 (query-replace-regexp): Doc string explaining this and the new
7639 `\?' replacement. Remove `\,' and `\#' implementation here, as it
7640 is better placed in `query-replace-read-args'.
7641 (replace-regexp): Explain `\,', `\#' and `\?'.
7642 (replace-match-data): New function for thorough reuse/destruction
7643 of old match-data.
7644 (replace-match-maybe-edit): Function for implementing `\?' editing.
7645 (perform-replace): Fix maintaining of the match stack including
7646 already matched regions, implement `\?', fix various problems
7647 with regions while editing and other stuff.
7648 (replace-highlight): Simplify.
7649
7650 2004-06-24 Daniel Pfeiffer <occitan@esperanto.org>
7651
7652 * progmodes/grep.el (grep-error-screen-columns): New variable.
7653 (grep-regexp-alist): Give it the full functionality of gnu style
7654 compilation messages with line and column ranges. Ask me for the
7655 perl script I'm working on, that uses these.
7656
7657 2004-06-23 Nick Roberts <nickrob@gnu.org>
7658
7659 * comint.el: (comint-insert-clicked-input, comint-copy-old-input):
7660 Remove.
7661 (comint-insert-input, comint-mouse-insert-input): New functions
7662 based on comint-insert-clicked-input for two bindings but just
7663 one functionality.
7664
7665 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
7666
7667 * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
7668
7669 2004-06-23 Lars Hansen <larsh@math.ku.dk>
7670
7671 * files.el (write-contents-functions): Doc fix.
7672
7673 2004-06-21 Juanma Barranquero <lektu@terra.es>
7674
7675 * image.el (image-library-alist): Rewrite docstring in active voice.
7676
7677 2004-06-20 Richard M. Stallman <rms@gnu.org>
7678
7679 * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
7680
7681 * isearch.el (isearch-repeat): Avoid testing old match data.
7682 (isearch-message): Display trailing space in special font
7683 when search is failing.
7684 (isearch-search-fun-function): Doc fix.
7685
7686 * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
7687
7688 2004-06-19 Luc Teirlinck <teirllm@auburn.edu>
7689
7690 * frame.el (show-trailing-whitespace): Doc fix.
7691
7692 * cus-edit.el (custom-variable-documentation): New function.
7693 (custom-variable): Use it.
7694
7695 2004-06-19 Nick Roberts <nickrob@gnu.org>
7696
7697 * man.el (Man-getpage-in-background): Revert previous change but
7698 make cygwin a special case.
7699
7700 2004-06-18 Luc Teirlinck <teirllm@auburn.edu>
7701
7702 * autorevert.el (global-auto-revert-non-file-buffers):
7703 Update docstring.
7704
7705 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org>
7706
7707 * progmodes/compile.el (compilation-error-properties): Store one
7708 more than end-col, if present, so that transient-mark-mode will
7709 highlight last char too.
7710 * progmodes/grep.el (grep-regexp-alist): Match columns and column
7711 ranges, if present.
7712
7713 2004-06-18 Jason Rumney <jasonr@gnu.org>
7714
7715 * makefile.w32-in: Double percent signs in for loops.
7716
7717 2004-06-17 David Kastrup <dak@gnu.org>
7718
7719 * replace.el (query-replace-read-args): Only warn about use of \n
7720 and \t when we are doing a regexp replacement and the actual
7721 escaped character is n or t.
7722 (query-replace-regexp): Add \, and \# interpretation to
7723 interactive call and document it.
7724 (query-replace-regexp-eval, replace-match-string-symbols): Add \#
7725 as shortkey for replace-count.
7726 (replace-quote): New function for doubling backslashes.
7727
7728 2004-06-17 Juanma Barranquero <lektu@terra.es>
7729
7730 * files.el (parse-colon-path, cd): Mention in docstring that the
7731 path separator is colon in GNU-like systems.
7732
7733 * newcomment.el (comment-region-internal): Fix docstring.
7734
7735 * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
7736 (ewoc-invalidate, ewoc-collect): Doc fixes.
7737 (ewoc--create-node, ewoc--delete-node-internal):
7738 Fix typos in docstring.
7739
7740 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
7741
7742 * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
7743 manual to docstring.
7744
7745 2004-06-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7746
7747 * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
7748
7749 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
7750
7751 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
7752 Add hyperlink to emacs-xtra manual to docstring.
7753
7754 * autorevert.el (global-auto-revert-non-file-buffers):
7755 Add hyperlink to emacs-xtra manual to docstring, as well as an
7756 info-link.
7757
7758 2004-06-14 Juanma Barranquero <lektu@terra.es>
7759
7760 * image.el (image-library-alist): New variable to map image types
7761 to external libraries. Initialized to nil, unless system-specific
7762 configs change it.
7763 (image-type-available-p): Determine whether an image type is
7764 available by calling `init-image-library'.
7765
7766 * term/w32-win.el (image-library-alist): Initialize to a known set
7767 of probable library names.
7768
7769 2004-06-14 Kenichi Handa <handa@m17n.org>
7770
7771 * international/code-pages.el (windows-1256, cp1125): Fix tables
7772 for several characters.
7773
7774 * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
7775
7776 2004-06-13 Richard M. Stallman <rms@gnu.org>
7777
7778 * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
7779
7780 * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
7781 not "`pc-selection-mode'".
7782
7783 * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
7784
7785 * simple.el (previous-matching-history-element): Specify a default.
7786
7787 * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
7788
7789 * cus-face.el (custom-declare-face): Simplify code.
7790
7791 * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
7792
7793 2004-06-13 Luc Teirlinck <teirllm@auburn.edu>
7794
7795 * files.el (before-save-hook): Add `time-stamp' to the options.
7796
7797 * time-stamp.el (time-stamp): Recommend adding it to
7798 `before-save-hook', rather than `write-file-functions'.
7799 Make a similar change in `Commentary' section.
7800
7801 2004-06-13 Kai Grossjohann <kai.grossjohann@gmx.net>
7802
7803 * diff-mode.el (diff-current-defun): If at start of hunk, use
7804 position of first change.
7805
7806 2004-06-13 Lars Hansen <larsh@math.ku.dk>
7807
7808 * dired-x.el (dired-mark-omitted): Bind to "*O".
7809
7810 2004-06-12 Karl Fogel <kfogel@red-bean.com>
7811
7812 * bookmark.el (bookmark-bmenu-relocate): New function, as
7813 suggested by David J. Biesack <David.Biesack@sas.com>.
7814 (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
7815 (bookmark-bmenu-mode): Describe binding in doc string.
7816 (bookmark-set-filename): Save the bookmark list if it's time.
7817
7818 2004-06-13 Kenichi Handa <handa@m17n.org>
7819
7820 * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
7821 (ccl-untranslated-to-ucs): Fix typo.
7822
7823 2004-06-12 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
7824
7825 * progmodes/python.el (python-open-block-statement-p):
7826 Fix indentation after a block opening that contains a comment.
7827
7828 2004-06-12 J\e,Ai\e(Br\e,At\e(Bme Marant <jerome@marant.org> (tiny change)
7829
7830 * bindings.el (completion-ignored-extensions): Add file extensions
7831 of Python byte-compiled files.
7832
7833 2004-06-12 Juri Linkov <juri@jurta.org>
7834
7835 * info.el (Info-goto-node): Add autoload.
7836 (Info-toc): Add substring-no-properties on Info file name.
7837 (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
7838 (Info-mode-map): Bind L to Info-history, T to Info-toc.
7839
7840 2004-06-12 Kenichi Handa <handa@m17n.org>
7841
7842 * international/mule-cmds.el (set-language-environment):
7843 Load subst tables if necessary.
7844
7845 * international/mule.el (decode-char): Load subst tables if necessary.
7846 (encode-char): Likewise.
7847
7848 * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
7849 pair correctly. Call ccl-mule-utf-untrans for untranslable chars.
7850 (utf-16le-decode-loop): Set r5 to -1 before loop.
7851 (utf-16be-decode-loop): Likewise.
7852 (ccl-decode-mule-utf-16le): Add EOF processing block.
7853 (ccl-decode-mule-utf-16be): Likewise.
7854 (ccl-decode-mule-utf-16le-with-signature): Likewise.
7855 (ccl-decode-mule-utf-16be-with-signature): Likewise.
7856 (ccl-decode-mule-utf-16): Likewise. Set r5 to -1 initially.
7857 (ccl-mule-utf-16-encode-untrans): New CCL.
7858 (utf-16-decode-to-ucs): Handle pre-read character.
7859 (utf-16le-encode-loop): Handle surrogate pair.
7860 (utf-16be-encode-loop): Likewise.
7861 (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
7862 of utf-16le-encode-loop.
7863 (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
7864 of utf-16be-encode-loop.
7865 (mule-utf-16-post-read-conversion):
7866 Call utf-8-post-read-conversion at first.
7867 (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
7868 Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
7869 Add post-read-conversion and pre-write-conversion.
7870
7871 * international/utf-8.el (utf-translate-cjk-charsets): New variable.
7872 (utf-translate-cjk-unicode-range): New variable.
7873 (utf-translate-cjk-load-tables): New function.
7874 (utf-lookup-subst-table-for-decode): New function.
7875 (utf-lookup-subst-table-for-encode): New function.
7876 (utf-translate-cjk-mode): Init-value changed to t. Don't load
7877 tables here. Update safe-charsets of utf-* coding systems.
7878 (ccl-mule-utf-untrans): New CCL.
7879 (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans. Use `repeat'
7880 at end of each branch.
7881 (ccl-mule-utf-8-encode-untrans): New CCL.
7882 (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
7883 (ccl-untranslated-to-ucs): Handle 2-byte encoding. Set r1 to the
7884 length of encoding. Don't return r0.
7885 (utf-8-compose): New arg hash-table. Handle 2-byte encoding.
7886 (utf-8-post-read-conversion): Narrow to region properly.
7887 If utf-translate-cjk-mode is on, load tables if necessary.
7888 Call utf-8-compose with hash-table arg if necessary.
7889 Call XXX-compose-region instead of XXX-post-read-convesion.
7890 (utf-8-pre-write-conversion): New function.
7891 (mule-utf-8): Include CJK charsets in safe-charsets if
7892 utf-translate-cjk-mode is on. Add pre-write-conversion.
7893
7894 * international/characters.el: Temporarily set
7895 utf-translate-cjk-mode to nil.
7896
7897 * language/devan-util.el (devanagari-compose-region):
7898 Add autoload cookie.
7899
7900 * international/ccl.el (ccl-dump-call): Fix printing the
7901 subroutine name.
7902
7903 2004-06-11 Luc Teirlinck <teirllm@auburn.edu>
7904
7905 * dired.el (dired-revert): If buffer is marked unmodified before
7906 reverting, keep it marked unmodified.
7907 Adapt to new conventions for commenting out code.
7908 (dired-make-relative): Adapt to new conventions for commenting out code.
7909
7910 2004-06-10 Miles Bader <miles@gnu.ai.mit.edu>
7911
7912 * eshell/esh-module.el (eshell-load-defgroups):
7913 Bind `vc-handled-backends' to nil when opening files.
7914
7915 2004-06-11 Juanma Barranquero <lektu@terra.es>
7916
7917 * files.el (parse-colon-path, cd): Doc fixes (refer to
7918 `path-separator', not colon).
7919
7920 2004-06-10 Juanma Barranquero <lektu@terra.es>
7921
7922 * newcomment.el (comment-search-forward)
7923 (comment-search-backward): Fix typos in docstring.
7924 (comment-region): Doc fix.
7925
7926 2004-06-10 Luc Teirlinck <teirllm@auburn.edu>
7927
7928 * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
7929 switch is no longer stored in `dired-switches-alist'.
7930
7931 * dired-aux.el (dired-insert-subdir): Do not store R switch in
7932 `dired-switches-alist'.
7933
7934 2004-06-10 Kim F. Storm <storm@cua.dk>
7935
7936 * pcvs.el (cvs-mode-diff-yesterday): New command.
7937
7938 * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
7939
7940 2004-06-10 Juri Linkov <juri@jurta.org>
7941
7942 * emacs-lisp/edebug.el (edebug-eval-defun):
7943 * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
7944 Fix docstring.
7945
7946 * simple.el (eval-expression-print-format): Don't print additional
7947 information on the first call to `eval-print-last-sexp'.
7948 (next-error-find-buffer): Fix punctuation.
7949 (killing) <defgroup>: Fix punctuation.
7950 (yank-excluded-properties): Change group from editing to killing.
7951
7952 * replace.el (perform-replace): Use `limit' to terminate the
7953 while-loop explicitly.
7954
7955 2004-06-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7956
7957 * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
7958 Use lc-*.xpm as prefix instead of *-locol.xpm.
7959
7960 * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
7961 * toolbar/lc-help.xpm, toolbar/lc-home.xpm
7962 * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
7963 * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
7964 * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
7965 * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
7966 * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
7967 * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
7968 * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
7969 * toolbar/lc-up_arrow.xpm:
7970 Rename from *-locol.xpm.
7971
7972 2004-06-09 Rajesh Vaidheeswarran <rv@gnu.org>
7973
7974 * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
7975 include forms like &<str>; as valid url patterns.
7976
7977 2004-06-08 Luc Teirlinck <teirllm@auburn.edu>
7978
7979 * dired.el (dired-diff, dired-backup-diff)
7980 (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
7981 (dired-do-chown, dired-do-touch, dired-do-print)
7982 (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
7983 (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
7984 (dired-create-directory, dired-do-copy, dired-do-symlink)
7985 (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
7986 (dired-do-copy-regexp, dired-do-hardlink-regexp)
7987 (dired-do-symlink-regexp, dired-upcase, dired-downcase)
7988 (dired-maybe-insert-subdir, dired-next-subdir)
7989 (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
7990 (dired-kill-subdir, dired-tree-up, dired-tree-down)
7991 (dired-hide-subdir, dired-hide-all, dired-show-file-type)
7992 (dired-run-shell-command, dired-query): Remove redundant,
7993 or incorrect, autoloads.
7994
7995 * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
7996 does not end in a slash. Add optional argument KILL-ROOT.
7997 Update docstring.
7998 (dired-do-touch, dired-clean-directory, dired-run-shell-command)
7999 (dired-query): Add autoloads.
8000
8001 2004-06-08 Daniel Pfeiffer <occitan@esperanto.org>
8002
8003 * progmodes/compile.el (compilation-set-window-height):
8004 Rearrange the save-* functions because a buffer can have several current
8005 point in different windows.
8006 (compilation-error-regexp-alist-alist): Recognize {standard input}
8007 GNU messages (for gcc --pipe) and more kinds of Oracle messages.
8008
8009 2004-06-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8010
8011 * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
8012 * toolbar/help-locol.xpm, toolbar/home-locol.xpm
8013 * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
8014 * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
8015 * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
8016 * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
8017 * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
8018 * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
8019 * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
8020 * toolbar/up_arrow-locol.xpm:
8021 New versions of icons that uses fewer colors.
8022
8023 * toolbar/tool-bar.el (tool-bar-local-item)
8024 (tool-bar-local-item-from-menu): Try to use icons with fewer colors
8025 if display-color-cells is 256 or less.
8026
8027 2004-06-08 Kim F. Storm <storm@cua.dk>
8028
8029 * wid-edit.el (widget-specify-button): Use hand pointer rather
8030 than mouse-face as visible mouse-over effect.
8031
8032 2004-06-07 Karl Fogel <kfogel@red-bean.com>
8033
8034 * saveplace.el (save-place-alist-to-file): Bind `print-length'
8035 and `print-level' to nil when writing out `save-place-alist'.
8036 Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
8037
8038 2004-06-07 Juanma Barranquero <lektu@terra.es>
8039
8040 * completion.el (completion-kill-region): Doc fix.
8041
8042 * format.el (format-insert-annotations)
8043 (format-annotate-location): Doc fixes.
8044 (format-subtract-regions): Make arguments match their use in docstring.
8045
8046 * simple.el (kill-region): Doc fix.
8047
8048 * subr.el (insert-buffer-substring-no-properties)
8049 (insert-buffer-substring-as-yank): Doc fixes.
8050
8051 2004-06-07 Luc Teirlinck <teirllm@auburn.edu>
8052
8053 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
8054 Update docstring.
8055 (dired-reset-subdir-switches): New function.
8056
8057 * dired.el (dired-undo): Call `dired-build-subdir-alist'.
8058 Limit scope of `buffer-read-only' binding.
8059
8060 2004-06-06 Emilio C. Lopes <eclig@gmx.net>
8061
8062 * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
8063 eshell-explicit-command-char.
8064
8065 2004-06-06 Juanma Barranquero <lektu@terra.es>
8066
8067 * help-fns.el (help-argument-name): Inherit from italic face only
8068 if the frame supports it.
8069
8070 2004-06-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8071
8072 * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
8073 * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
8074 * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
8075 * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
8076 * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
8077 * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
8078 * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
8079 New conversions from xpm files.
8080
8081 * toolbar/README: New file.
8082
8083 2004-06-06 Richard M. Stallman <rms@gnu.org>
8084
8085 * isearch.el (isearch-mode-map): Undo previous change.
8086
8087 2004-06-05 Juri Linkov <juri@jurta.org>
8088
8089 * bindings.el (debug-ignored-errors): Add regexps for history
8090 related messages. Remove $ from "No further undo information".
8091 Move Ediff's messages to ediff.el.
8092
8093 * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
8094
8095 * cus-edit.el (custom-display): Add `min-colors'.
8096
8097 * custom.el (defface): Add `supports' to docstring.
8098
8099 * help-fns.el (help-argument-name): Add :group 'help.
8100
8101 2004-06-05 Luc Teirlinck <teirllm@auburn.edu>
8102
8103 * find-dired.el (find-ls-subdir-switches): New user option.
8104 (find-dired): No longer call `abbreviate-file-name' on DIR.
8105 Set `dired-subdir-switches' buffer-locally.
8106
8107 * locate.el: Merge the two `Commentary' sections.
8108 (locate-ls-subdir-switches): New user option.
8109 (locate): Update for other changes.
8110 (locate-mode-map): Restore Dired binding for mouse-2.
8111 Bind `locate-mouse-view-file' to M-mouse-2.
8112 Bind `l' to `locate-do-redisplay'.
8113 (locate-main-listing-line-p, locate-do-redisplay): New functions.
8114 (locate-mouse-view-file, locate-tags, locate-find-directory):
8115 Print message if used outside main listing.
8116 (locate-mode): Update docstring. Make `*Locate*' buffer read-only.
8117 Various changes to support inserted subdirectories.
8118 (locate-insert-header): Change header of *Locate* buffer.
8119
8120 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
8121 Change interactive default switches.
8122 (dired-rename-subdir-2): Update `dired-switches-alist'.
8123 (dired-insert-subdir, dired-kill-subdir):
8124 Handle `dired-switches-alist'. Do not mark buffer modified.
8125 (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
8126 (dired-insert-subdir-doinsert): Omit messages.
8127 Handle `dired-subdir-switches'.
8128 (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
8129
8130 * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
8131 (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
8132 subdirs if -R switch is used for a subdir.
8133 (dired-mode): Set `dired-switches-alist'.
8134 (dired-build-subdir-alist): Only print number of directories in
8135 echo area when invoked interactively.
8136
8137 2004-06-05 Lars Hansen <larsh@math.ku.dk>
8138
8139 * dired-x.el (dired-omit-mode): Rename from
8140 dired-omit-files-p. Use define-minor-mode to define it.
8141 (dired-omit-files-p): Add as alias for dired-omit-mode.
8142 (dired-omit-toggle): Delete. Replaced by dired-omit-mode and
8143 dired-mark-omitted.
8144 (dired-mark-omitted): Add. Bind to M-O.
8145
8146 2004-06-05 Kenichi Handa <handa@m17n.org>
8147
8148 * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
8149
8150 2004-06-05 Juanma Barranquero <lektu@terra.es>
8151
8152 * help-fns.el (help-argument-name): Reintroduce face.
8153 (help-default-arg-highlight): Use it, now that
8154 `face-differs-from-default-p' can be trusted.
8155
8156 2004-06-05 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
8157
8158 * textmodes/table.el: Sentence commands added to Point Motion
8159 group; kill and backward-kill commands added to Extraction group.
8160
8161 2004-06-04 Mario Lang <mlang@delysid.org>
8162
8163 * battery.el (battery-linux-proc-acpi): `mA' was hardcored, but some
8164 systems appear to use mW, make the code handle this. Fix a
8165 division-by-zero bug while at it, and handle kernels with
8166 a slightly different layout in /proc/acpi.
8167
8168 2004-06-04 Karl Fogel <kfogel@red-bean.com>
8169
8170 * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*',
8171 because the latter is a CL-ism. This fixes the bug reported by
8172 Shawn Boyette <mdxi@collapsar.net> in
8173 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
8174
8175 2004-06-04 Miles Bader <miles@gnu.org>
8176
8177 * faces.el (display-supports-face-attributes-p): Function moved to
8178 C code. Previously only the tty-related portion of this function
8179 was done in C; however the previous attempt to do a halfway-proper
8180 job for non-tty displays in lisp didn't work properly because of
8181 funny conditions during Emacs startup.
8182 (face-differs-from-default-p): Simplify, now that
8183 display-supports-face-attributes-p works properly on all display
8184 types. Remove :stipple from comparison; it doesn't really work
8185 in emacs anyway.
8186
8187 2004-06-04 Miles Bader <miles@gnu.org>
8188
8189 * faces.el (face-differs-from-default-p): Use a different
8190 implementation, so we can really check whether FACE displays
8191 differently or not.
8192
8193 2004-06-04 Miles Bader <miles@gnu.org>
8194
8195 * faces.el (display-supports-face-attributes-p): Implement a
8196 `different from default' check for non-tty displays.
8197
8198 2004-06-03 David Kastrup <dak@gnu.org>
8199
8200 * woman.el (woman-mapcan): More concise code.
8201 (woman-topic-all-completions, woman-topic-all-completions-1)
8202 (woman-topic-all-completions-merge): Replace by a simpler and
8203 much faster implementation based on O(n log n) sort/merge instead
8204 of the old O(n^2) behavior.
8205
8206 2004-06-03 Miles Bader <miles@gnu.org>
8207
8208 * subr.el (read-number): Use canonical format for default in prompt.
8209
8210 * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
8211 Add regexp for " [...]" style defaults.
8212
8213 2004-06-02 Romain Francoise <romain@orebokech.com>
8214
8215 * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
8216 groups: if the user asks for a hidden buffer, open the
8217 corresponding filter group to expose it.
8218
8219 * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
8220 `ibuffer-jump-to-buffer'.
8221 (ibuffer-jump-offer-only-visible-buffers): New user option.
8222
8223 2004-06-02 Juanma Barranquero <lektu@terra.es>
8224
8225 * faces.el (frame-update-faces): Add empty docstring so the one
8226 for `ignore' doesn't show through.
8227
8228 * subr.el (process-kill-without-query): Remove spurious "\n" on
8229 obsolescence string.
8230 (focus-frame, unfocus-frame): Add obsolescence declaration and
8231 empty docstring.
8232
8233 * international/mule.el (register-char-codings): Make alias for
8234 `ignore'. Move docstring to obsolescence info and remove redundancy.
8235
8236 2004-06-02 Kim F. Storm <storm@cua.dk>
8237
8238 * frame.el (blink-cursor-start): Turn cursor off initially so blink
8239 starts after blink-cursor-delay rather than 2*blink-cursor-delay.
8240
8241 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
8242
8243 * comint.el (comint-replace-by-expanded-history-before-point):
8244 Obey `start' as the docstring says.
8245 (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
8246 (comint-update-fence): Prevent font-lock from running unnecessarily.
8247 (comint-dynamic-list-completions): Use with-current-buffer.
8248
8249 2004-06-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8250
8251 * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
8252 (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
8253 (bibtex-entry-update): Handle alternatives and optional fields.
8254 (bibtex-parse-entry): Bugfix, handle empty key.
8255
8256 2004-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
8257
8258 * vc-arch.el (vc-arch-state): Don't assume the file exists.
8259
8260 2004-05-31 Lars Hansen <larsh@math.ku.dk>
8261
8262 * desktop.el (desktop-save): Don't save minor modes without a
8263 known mode initialization function.
8264
8265 2004-05-30 Luc Teirlinck <teirllm@auburn.edu>
8266
8267 * replace.el (query-replace-interactive): Convert defvar -> defcustom.
8268
8269 * autorevert.el: Update `Commentary' section.
8270
8271 2004-05-30 Juanma Barranquero <lektu@terra.es>
8272
8273 * dos-fns.el (convert-standard-filename):
8274 * files.el (convert-standard-filename):
8275 * w32-fns.el (convert-standard-filename):
8276 Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
8277
8278 2004-05-30 Kai Grossjohann <kai.grossjohann@gmx.net>
8279
8280 Sync with Tramp.
8281
8282 * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
8283 (tramp-let-maybe): Move to an earlier spot in the file.
8284 Patch by Andreas Schwab.
8285
8286 2004-05-30 Andreas Schwab <schwab@suse.de>
8287
8288 * dired.el (dired-get-filename): Don't use dired-re-dot.
8289
8290 2004-05-30 Richard M. Stallman <rms@gnu.org>
8291
8292 * files.el (find-file): Doc fix.
8293
8294 * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
8295
8296 2004-05-30 Nick Roberts <nickrob@gnu.org>
8297
8298 * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
8299 (gdb-locals-mode, gdb-frame-handler): Display current frame in the
8300 modeline of the locals buffer.
8301 (gdb-goto-breakpoint): Handle gdbmi.
8302 (gdb-get-frame-number): Change for gdbmi.
8303
8304 2004-05-30 Michael Albinus <michael.albinus@gmx.de>
8305
8306 * files.el (file-remote-p): Apply file name handler for operation
8307 `file-remote-p'. It isn' a property any longer.
8308 (file-relative-name): `fh' and `fd' get the required value via
8309 `find-file-name-handler' already.
8310
8311 * ange-ftp.el (ange-ftp-file-remote-p): New defun.
8312 (top): Remove setting of `file-remote-p' property for
8313 `ange-ftp-hook-function'. Add `ange-ftp' property to `file-remote-p'.
8314
8315 2004-05-29 Michael Albinus <michael.albinus@gmx.de>
8316
8317 Version 2.0.41 of Tramp released.
8318
8319 * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
8320 Throw away if process has died.
8321 Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
8322 (tramp-out-of-band-prompt-regexp): Rename to
8323 `tramp-process-alive-regexp', because its usage is widen.
8324 (tramp-actions-copy-out-of-band): Apply it.
8325 (tramp-actions-before-shell, tramp-multi-actions):
8326 Add `tramp-action-process-alive' action.
8327 (tramp-action-process-alive): New defun.
8328 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
8329 Add entry for `file-remote-p'.
8330 (tramp-handle-file-remote-p): New defun.
8331 (top): Remove setting of `file-remote-p'. Don't set
8332 `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
8333
8334 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
8335 `file-remote-p'.
8336
8337 * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
8338 counted for (last) line. [They should or they shouldn't? --Stef]
8339 Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
8340
8341 2004-05-29 Kai Grossjohann <kai.grossjohann@gmx.net>
8342
8343 * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
8344 not really necessary but seems to keep the shell history smaller
8345 in some cases. It is no substitute for setting HISTFILE and
8346 HISTSIZE from tramp-open-connection-setup-interactive-shell,
8347 though. Suggested by Luc Teirlinck.
8348 (tramp-open-connection-setup-interactive-shell): Export variables
8349 HISTFILE and HISTSIZE, do not just set them. From Luc Teirlinck.
8350 (tramp-set-process-query-on-exit-flag): New compat function.
8351 (tramp-open-connection-multi, tramp-open-connection-su)
8352 (tramp-open-connection-rsh, tramp-open-connection-telnet)
8353 (tramp-do-copy-or-rename-file-out-of-band): Use it.
8354 (tramp-let-maybe): New macro, let-binds a variable only if it
8355 isn't obsolete.
8356 (tramp-check-ls-commands, tramp-handle-expand-file-name)
8357 (tramp-handle-file-truename): Use it.
8358 (tramp-completion-file-name-regexp-unified): Avoid matching
8359 filenames starting with "/:" -- those are reserved for
8360 file-name-non-special.
8361
8362 * tramp-smb.el (tramp-smb-open-connection):
8363 Use tramp-set-process-query-on-exit-flag compat function.
8364
8365 2004-05-29 Richard M. Stallman <rms@gnu.org>
8366
8367 * net/browse-url.el (browse-url-interactive-arg): Doc fix.
8368
8369 * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
8370 (eval-last-sexp-print-value): Print char equivalent regardless
8371 of standard-output value.
8372
8373 * thumbs.el (thumbs-subst-char-in-string): Delete.
8374 (thumbs-thumbname): Use subst-char-in-string.
8375 (thumbs-resize-image): Use condition-case, not ignore-errors.
8376 (thumbs-kill-buffer): Likewise.
8377
8378 * thumbs.el: Don't include cl. Don't bother with old Emacs versions.
8379 (thumbs-mode): Make buffer read-only.
8380 (thumbs-make-thumb): Unconditionally accept an existing file.
8381 (thumbs-insert-thumb): Add thumb-image-file property to the image.
8382 (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
8383 (thumbs-show-thumbs-list): Error if images not supported.
8384 (thumbs-save-current-image): Improve prompt string.
8385 (thumbs-mode-map): Define u, R, x.
8386 (thumbs-unmark): New command.
8387 (thumbs-emboss-image): Minor cleanup.
8388 (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
8389 (thumbs-rename-images): New command.
8390 (thumbs-show-image-num): Rewrite. Don't rename the buffer.
8391
8392 * thumbs.el (thumbs-current-image): New function.
8393 (thumbs-file-list, thumbs-file-alist): New functions.
8394 (thumbs-find-image): Delete arg L.
8395 Don't set up thumbs-fileL as buffer-local global var.
8396 (thumbs-find-image-at-point): Use thumbs-current-image.
8397 (thumbs-set-image-at-point-to-root-window): Likewise.
8398 (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
8399 Record and warn about errors. Update thumbs-markedL for deletions.
8400 (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
8401 (thumbs-redraw-buffer): Use thumbs-file-list.
8402 (thumbs-mark): Use thumbs-current-image.
8403 (thumbs-show-name): Use thumbs-current-image.
8404
8405 * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
8406 and imenu--last-menubar-index-alist.
8407
8408 * subr.el (with-selected-window): Undo previous change.
8409
8410 2004-05-29 John Paul Wallington <jpw@gnu.org>
8411
8412 * thumbs.el (thumbs-show-name): Do nothing if no image at point.
8413 (thumbs-mouse-find-image): New command.
8414 (thumbs-mode-map): Bind it to mouse-2.
8415 (thumbs-mode): Make mode-class special.
8416 (thumbs-view-image-mode): Likewise.
8417
8418 2004-05-29 Pavel Kobiakov <pk_at_work@yahoo.com>
8419
8420 * flymake.el: New file.
8421
8422 2004-05-28 Luc Teirlinck <teirllm@auburn.edu>
8423
8424 * files.el (find-file-noselect-1): Do not bind
8425 `inhibit-read-only' to t during execution of
8426 `find-file-not-found-functions'.
8427
8428 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
8429
8430 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
8431 * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
8432
8433 2004-05-28 Juri Linkov <juri@jurta.org>
8434
8435 * simple.el (eval-expression-print-format): New fun.
8436
8437 * simple.el (eval-expression):
8438 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
8439 * emacs-lisp/edebug.el (edebug-compute-previous-result)
8440 (edebug-eval-expression): Print additionally the value returned by
8441 `eval-expression-print-format'.
8442
8443 * emacs-lisp/lisp.el (insert-pair-alist): New var.
8444 (insert-pair): Make arguments optional. Find character pair
8445 from `insert-pair-alist' according to the last input event.
8446 (insert-parentheses): Make arguments optional.
8447 (raise-sexp, delete-pair): New funs.
8448
8449 * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
8450 (emacs-lisp-mode-map, lisp-interaction-mode-map):
8451 Bind C-M-q to `indent-pp-sexp'.
8452
8453 * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
8454 `pp-to-string' modified to be able to format text with newlines.
8455 (pp-to-string): Move the buffer-formatting part of the code to
8456 `pp-buffer'. Call `pp-buffer'.
8457
8458 * info.el (Info-desktop-buffer-misc-data): Don't save information
8459 about virtual files.
8460 (Info-restore-desktop-buffer): Restore Info buffers in prepared
8461 buffers with names obtained from the desktop file instead of the
8462 default *info* buffer.
8463
8464 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
8465
8466 * subr.el (with-selected-window): Only save/restore the selected window.
8467
8468 * progmodes/compile.el (compilation-error-regexp-alist):
8469 Use expand-file-name and data-directory.
8470
8471 * progmodes/grep.el (grep-tree): Rework previous fix.
8472
8473 * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
8474 after the user marked text with the mouse.
8475
8476 * startup.el (command-line): Keep the first regexp of
8477 auto-save-file-name-transforms intact.
8478
8479 2004-05-28 Juanma Barranquero <lektu@terra.es>
8480
8481 * cus-edit.el (customize-face, customize-face-other-window)
8482 (custom-face-edit-delete): Make arguments match their use in
8483 docstring.
8484 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
8485 docstring.
8486
8487 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
8488 not `cvs-butlast'.
8489
8490 * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
8491 `nbutlast' are in subr.el).
8492
8493 * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
8494 (set-w32-system-coding-system): Doc fixes.
8495
8496 * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
8497 (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
8498 Make arguments match their use in docstring.
8499 (artist-draw-region-trim-line-endings)
8500 (artist-mouse-choose-operation): Fix typo in docstring.
8501 (artist-key-set-point-common): Doc fix.
8502
8503 2004-05-28 Simon Josefsson <jas@extundo.com>
8504
8505 * mail/smtpmail.el (smtpmail-open-stream):
8506 Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
8507
8508 2004-05-26 Simon Josefsson <jas@extundo.com>
8509
8510 * starttls.el: Merge with my GNUTLS based starttls.el.
8511 (starttls-gnutls-program, starttls-use-gnutls)
8512 (starttls-extra-arguments, starttls-process-connection-type)
8513 (starttls-connect, starttls-failure, starttls-success): New variables.
8514 (starttls-program, starttls-extra-args): Doc fix.
8515 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
8516 (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
8517 and pass on to corresponding *-gnutls function if it is set.
8518
8519 2004-05-27 Luc Teirlinck <teirllm@auburn.edu>
8520
8521 * autorevert.el (auto-revert-handler): Disable auto-reverting of
8522 remote files.
8523
8524 2004-05-27 Michael Albinus <michael.albinus@gmx.de>
8525
8526 * files.el (file-name-non-special): There are more operations
8527 which need handling: `find-backup-file-name',
8528 `insert-file-contents', `verify-visited-file-modtime',
8529 `write-region'. Rename t value of method to `add'. Add new
8530 methods `quote' and `unquote-then-quote' to file-arg-indices.
8531
8532 2004-05-25 Juri Linkov <juri@jurta.org>
8533
8534 * info.el (Info-toc): Call Info-mode on intermediate buffer.
8535 (Info-index-nodes): Enclose code in condition-case to catch errors.
8536 (Info-index-node): Don't search all index nodes if request is only
8537 for the current node and file is not in the cache of index nodes.
8538 (Info-mode-map): Bind Info-copy-current-node-name to `w'
8539 for consistency with dired-copy-filename-as-kill.
8540 Bind `S' to Info-search-case-sensitively.
8541 (Info-copy-current-node-name): New arg. With zero prefix arg put
8542 the name inside a function call to `info'. Display copied text in
8543 the echo area.
8544
8545 2004-05-25 Sam Steingold <sds@gnu.org>
8546
8547 * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
8548 strip the package prefix from the symbol name, if any.
8549 Make it the `find-tag-default-function' for `lisp-mode'.
8550
8551 2004-05-25 John Paul Wallington <jpw@gnu.org>
8552
8553 * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
8554 instead of obsolete `process-kill-without-query'.
8555
8556 * textmodes/texinfmt.el (texinfo-indexvar-alist):
8557 Declare as variable, not constant.
8558
8559 2004-05-25 Luc Teirlinck <teirllm@auburn.edu>
8560
8561 * files.el (find-file-noselect-1): Fix bug introduced by
8562 Revision 1.694. As a side effect, `inhibit-read-only'
8563 is again, by default, t during execution of
8564 `find-file-not-found-functions'.
8565 (insert-directory): Check that lines were really inserted by
8566 the --dired switch, before erasing them.
8567
8568 2004-05-24 Nick Roberts <nickrob@gnu.org>
8569
8570 * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
8571 (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
8572 (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
8573 (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
8574 gud-minor-mode (gdbmi).
8575
8576 2004-05-24 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
8577
8578 * net/browse-url.el (browse-url-interactive-arg): Enable user to
8579 explicitly select the text to be taken as URL.
8580
8581 2004-05-23 Juri Linkov <juri@jurta.org>
8582
8583 * info.el (Info-index-nodes): New var and fun.
8584 (Info-goto-index, Info-index, info-apropos)
8585 (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
8586 (Info-index): Fix docstring. Store and restore Info-history-list.
8587 (Info-complete-nodes): New var.
8588 (Info-complete-menu-item): Use it.
8589 (Info-index-node): New fun.
8590 (Info-final-node, Info-forward-node, Info-backward-node)
8591 (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
8592 Use Info-index-node.
8593 (Info-extract-menu-item, Info-extract-menu-counting): Set second
8594 arg of `Info-extract-menu-node-name' to non-nil for index nodes.
8595 (Info-find-node-2): If a node with period in its name not found,
8596 try to find a node without the name part after period.
8597 (Info-select-node): Call Info-fontify-node only if
8598 Info-fontify-maximum-menu-size is not nil.
8599 (info-apropos): Set Info-fontify-maximum-menu-size to nil.
8600 (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
8601 Preserve Info-history-list.
8602 (Info-toc): Set Info-current-file.
8603 (Info-build-toc): Move point to the beginning of the buffer.
8604 Add main-file variable.
8605 (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
8606 Use backslashed representation of the control character ^_.
8607
8608 * textmodes/texinfmt.el (texinfo-print-index): Print index line
8609 numbers in the new Texinfo 4.7 format.
8610
8611 * add-log.el (change-log-font-lock-keywords): Remove `:' from
8612 regexps for function and variable names.
8613
8614 * descr-text.el (describe-property-list): Add [show] button for
8615 `syntax-table' property with action to pp to a separate buffer.
8616 (describe-char): Replace search-forward by re-search-forward with
8617 whitespace regexp after "character:" to not fail in too narrow windows.
8618
8619 * simple.el (next-error-find-buffer): Add a rule to return
8620 next-error capable buffer if one window on the selected frame
8621 displays such buffer.
8622
8623 2004-05-23 Nick Roberts <nickrob@gnu.org>
8624
8625 * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
8626 (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
8627 (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
8628 (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
8629 (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
8630 Handle new value for gud-minor-mode (gdbmi).
8631 (gdb-buffer-type, gdb-input-queue, gdb-prompting)
8632 (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
8633 Change from local to global gdb variable set.
8634 (gdb-ann3): Initialise above gdb variable set.
8635 (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
8636 (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
8637 (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
8638 (gdb-stopped, gdb-post-prompt, gdb-concat-output)
8639 (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
8640 (gdb-info-locals-handler, gdb-invalidate-assembler)
8641 (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
8642 set as global variables.
8643 (gdb-get-create-buffer): Don't make gud-comint buffer-local.
8644 Handle gdbmi.
8645 (gdb-info-breakpoints-custom): Fix regexp.
8646 (def-gdb-var): Delete.
8647
8648 * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
8649 (gud-speedbar-buttons, gud-sentinel, gud-display-line)
8650 (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
8651 a new mode. The file (gdb-mi.el) for this mode will be included
8652 with the GDB distribution (6.2 onwards) and will use GDB/MI as its
8653 primary interface.
8654
8655 2004-05-23 Jesper Harder <harder@ifa.au.dk>
8656
8657 * progmodes/grep.el (grep-tree): Ensure that DIR argument is
8658 interpreted as a directory.
8659
8660 2004-05-22 Richard M. Stallman <rms@gnu.org>
8661
8662 * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
8663 as a close quote.
8664
8665 * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
8666
8667 * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
8668 Use assoc-string, not assoc-ignore-case.
8669
8670 * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
8671
8672 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
8673 If moving back then fwd gets a defun that ends before point,
8674 try again moving fwd then back.
8675
8676 * files.el (file-name-non-special): Allow t in file-arg-indices
8677 to mean requote the return value. Use `identity' as an element
8678 rather than as the whole value.
8679
8680 * gs.el (gs-options): Add -dSAFER. Mark it risky.
8681
8682 2004-05-22 Juanma Barranquero <lektu@terra.es>
8683
8684 * help-fns.el (help-add-fundoc-usage): Use %S only for output of
8685 `help-make-usage'.
8686 (help-highlight-arguments): Skip function name before searching
8687 for arguments.
8688
8689 2004-05-21 Juanma Barranquero <lektu@terra.es>
8690
8691 * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
8692 Don't mention in the docstring these arguments meant for
8693 internal (recursive) use only.
8694 (allout-char-spec): Comment out (it's not implemented).
8695 (allout-old-expose-topic, allout-exposure): Fix docstring and add
8696 obsolescence declaration.
8697 (allout-flatten-exposed-to-buffer)
8698 (allout-indented-exposed-to-buffer): Fix typos in docstring.
8699 (my-mark-marker): Doc fix.
8700 (produce-allout-mode-map, allout-sibling-index)
8701 (allout-isearch-expose, allout-distinctive-bullet)
8702 (allout-open-topic, allout-reindent-body)
8703 (allout-rebullet-heading, allout-process-exposed)
8704 (allout-insert-listified, allout-latex-verb-quote)
8705 (allout-insert-latex-header, allout-insert-latex-trailer):
8706 Make arguments match their use in docstring.
8707 (allout-primary-bullet, allout-old-style-prefixes)
8708 (allout-inhibit-protection, allout-init, allout-mode)
8709 (allout-before-change-protect, allout-flag-region):
8710 Use "Emacs" instead of "emacs" in docstrings.
8711
8712 2004-05-21 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
8713
8714 * international/characters.el: Modify syntax of more characters.
8715
8716 2004-05-21 Masatake YAMATO <jet@gyve.org>
8717
8718 * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
8719 (etags-tags-completion-table): Show parsing progress.
8720
8721 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
8722
8723 * locate.el (locate-prompt-for-command): Shorten first line of
8724 docstring.
8725 (locate-mode): Expand docstring and include keymap summary.
8726
8727 * files.el (find-file-noselect-1): Limit the scope of the
8728 `inhibit-read-only' binding. Make sure that `inhibit-read-only'
8729 is, by default, nil during the execution of
8730 `find-file-not-found-functions' and `find-file-hook'.
8731
8732 2004-05-20 Michael Mauger <mmaug@yahoo.com>
8733
8734 * facemenu.el (facemenu-color-name-equal): New function.
8735 (list-colors-display): Use it to compare colors instead of
8736 facemenu-color-equal.
8737
8738 2004-05-20 Dan Nicolaescu <dann@ics.uci.edu>
8739
8740 * compare-w.el (compare-windows-face): Use min-colors instead of
8741 checking for tty or pc types.
8742
8743 2004-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
8744
8745 * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
8746 (completion-setup-function): Use with-current-buffer.
8747 Properly save excursion. Simplify.
8748 Don't assume there is necessarily a `mouse-face' property somewhere.
8749
8750 * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
8751
8752 * progmodes/gdb-ui.el (gdb-reset): Use unless. Fix regexp.
8753
8754 * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
8755 (byte-compile-log-1): Don't call (byte-goto-log-buffer).
8756 Use with-current-buffer.
8757 (byte-goto-log-buffer): Delete.
8758 (byte-compile-log-file): Call compilation-forget-errors.
8759
8760 2004-05-19 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
8761
8762 * net/ldap.el (ldap-search-internal): Avoid mixing standard error
8763 output messages into the search result.
8764
8765 2004-05-19 Masatake YAMATO <jet@gyve.org>
8766
8767 * wid-edit.el (widget-radio-button-notify): Revert my last
8768 change. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
8769
8770 2004-05-19 Kenichi Handa <handa@m17n.org>
8771
8772 * international/characters.el: Fix syntax (open/close) of CJK chars.
8773
8774 2004-05-18 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
8775
8776 * help-mode.el (help-go-back): Don't depend on position of back button.
8777
8778 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
8779
8780 * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
8781 files files don't contain an accidental additional /.
8782
8783 * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
8784 in source buffer.
8785
8786 2004-05-18 Masatake YAMATO <jet@gyve.org>
8787
8788 * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
8789 to widget-apply. :action method assumes 2 arguments, not 3.
8790
8791 2004-05-17 Glenn Morris <gmorris@ast.cam.ac.uk>
8792
8793 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
8794 New constants.
8795 (hs-special-modes-alist): Add an f90-mode entry.
8796
8797 2004-05-17 Sam Steingold <sds@gnu.org>
8798
8799 * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
8800 Indent "without-" forms just like "with-" and "do-". Use regexp-opt.
8801
8802 2004-05-16 Kim F. Storm <storm@cua.dk>
8803
8804 * emacs-lisp/timer.el (timer-event-handler): Fix last change.
8805
8806 2004-05-15 John Wiegley <johnw@newartisans.com>
8807
8808 * eshell/esh-io.el (eshell-get-target): Whitespace changes.
8809 (eshell-output-object-to-target): Improve output speed 20% by not
8810 calling `eshell-stringify' if something is already known to be a string.
8811
8812 2004-05-15 Alex Ott <ott@jet.msk.su>
8813
8814 * textmodes/ispell.el (ispell-local-dictionary-alist):
8815 Add windows-1251 to the choice of coding systems.
8816 (ispell-dictionary-alist-6): Add support for "russianw.aff",
8817 encoded in cp1251.
8818
8819 2004-05-15 Dan Nicolaescu <dann@ics.uci.edu>
8820
8821 * progmodes/compile.el (compilation-warning-face)
8822 (compilation-info-face): Use min-colors.
8823
8824 2004-05-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8825
8826 * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
8827 * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
8828 * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
8829 * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
8830 * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
8831 * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
8832 * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
8833 * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
8834 * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
8835 * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
8836 * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
8837 * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
8838 * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
8839 * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
8840
8841 2004-05-15 Kim F. Storm <storm@cua.dk>
8842
8843 * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
8844 Use it to set triggered-p element of timer.
8845 (timer-event-handler): Set triggered-p element non-nil while running
8846 the timer function.
8847
8848 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
8849
8850 * descr-text.el (describe-char-unicode-data)
8851 (describe-char-unicodedata-file): Re-enable the unicode code now that
8852 the licensing issues have been cleared in the unicode-4 license.
8853 (describe-text-properties-1): Remove unused `overlay' var.
8854 (describe-char): Remove unused var `buffer'.
8855
8856 2004-05-14 David Ponce <david@dponce.com>
8857
8858 * tree-widget.el: New file.
8859
8860 2004-05-13 Marcelo Toledo <marcelo@marcelotoledo.org>
8861
8862 * language/european.el ("Brazilian Portuguese"): Add support for
8863 Brazilian Portuguese.
8864
8865 2004-05-13 John Wiegley <johnw@newartisans.com>
8866
8867 * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
8868 `recentf-mode' if this variable has been customized to t.
8869
8870 * eshell/esh-test.el (eshell-test): Call the function
8871 `emacs-version' rather than trying to build a custom version string.
8872
8873 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
8874
8875 * net/telnet.el (telnet-mode): Use define-derived-mode.
8876 Don't modify the global value of comint-prompt-regexp.
8877
8878 2004-05-13 John Paul Wallington <jpw@gnu.org>
8879
8880 * version.el (emacs-version): Check for `gtk' feature before
8881 `x-toolkit' feature.
8882
8883 2004-05-13 Juanma Barranquero <lektu@terra.es>
8884
8885 * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
8886 arguments in the docstring, they're used only in recursive calls.
8887
8888 * help-fns.el (help-arg-highlighting-function)
8889 (help-argument-name): Delete.
8890 (help-default-arg-highlight): New function.
8891 (help-do-arg-highlighting): Use it.
8892
8893 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
8894
8895 * calendar/appt.el (appt-disp-window):
8896 Use `calendar-set-mode-line' for a centered mode-line.
8897
8898 2004-05-13 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
8899
8900 * calendar/appt.el (appt-disp-window): Do not split window
8901 excessively when `split-height-threshold' is low.
8902
8903 2004-05-12 Nick Roberts <nickrob@gnu.org>
8904
8905 * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
8906 kill-buffer-hook here and make it local.
8907 (gud-kill-buffer-hook): Use kill-process for a sure kill.
8908
8909 2004-05-12 Daniel Pfeiffer <occitan@esperanto.org>
8910
8911 * progmodes/compile.el (compilation-set-window-height):
8912 Use save-excursion to protect against misplaced marker.
8913
8914 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8915
8916 * custom.el (defface): Document that type can have value gtk.
8917
8918 * faces.el (face-spec-set-match-display): Handle type gtk in display.
8919
8920 2004-05-12 Kenichi Handa <handa@m17n.org>
8921
8922 * descr-text.el: Require quail at comile time.
8923 (describe-char): If an input method is on and it supports the
8924 character, show how to input it.
8925
8926 * international/quail.el (quail-install-decode-map): Accept a
8927 char-table whose subtype is `quail-decode-map'.
8928 (quail-store-decode-map-key, quail-gen-decode-map1)
8929 (quail-gen-decode-map, quail-find-key1, quail-find-key)
8930 (quail-show-key): New functions.
8931
8932 2004-05-12 Juanma Barranquero <lektu@terra.es>
8933
8934 * generic.el (define-generic-mode): Remove redundant arglist info.
8935
8936 * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
8937 Make arguments match their use in docstring.
8938 (help-arg-highlighting-function): New variable.
8939 (help-argument-name): Mention it in the docstring.
8940 (help-do-arg-highlight): Use it. Expand regexp to accept also
8941 ARG-xxx and xxx-ARG references.
8942
8943 2004-05-11 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
8944
8945 * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
8946 parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
8947 and "mailto:addr1?to=addr2" equal.
8948
8949 2004-05-11 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
8950
8951 * man.el (Man-getpage-in-background): Use shell-file-name
8952 and shell-command-switch variables instead of hard-coded values.
8953
8954 2004-05-11 Eli Zaretskii <eliz@gnu.org>
8955
8956 * iimage.el: New file.
8957
8958 2004-05-11 Juanma Barranquero <lektu@terra.es>
8959
8960 * custom.el (custom-initialize-default, defcustom):
8961 Fix typo in docstring.
8962
8963 * files.el (set-visited-file-name, file-expand-wildcards):
8964 Fix docstring.
8965
8966 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
8967
8968 * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
8969
8970 * subr.el (eventp): Be more discriminating with integers.
8971
8972 2004-05-10 Daniel Pfeiffer <occitan@esperanto.org>
8973
8974 * progmodes/compile.el (compile): Add universal prefix arg.
8975 (compilation-error-regexp-alist-alist): Add edg patterns.
8976
8977 2004-05-10 Sam Steingold <sds@gnu.org>
8978
8979 * textmodes/ispell.el (ispell-message):
8980 Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
8981
8982 2004-05-10 Dave Love <fx@gnu.org>
8983
8984 * progmodes/python.el (help-buffer): Autoload when compiling.
8985 (python-after-info-look): Don't assume Info-goto-node returns non-nil.
8986 (run-python): Prepend to any existing PYTHONPATH.
8987
8988 2004-05-10 Nick Roberts <nick@nick.uklinux.net>
8989
8990 * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
8991 for pending breakpoints.
8992
8993 2004-05-10 Richard M. Stallman <rms@gnu.org>
8994
8995 * mail/unrmail.el (unrmail): Mostly rewritten. Parses the file
8996 directly without calling any functions in Rmail.
8997 (unrmail-unprune): Function deleted.
8998
8999 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
9000
9001 * progmodes/python.el (inferior-python-mode-map): Remove erroneous
9002 C-c C-z binding.
9003
9004 2004-05-10 Kenichi Handa <handa@m17n.org>
9005
9006 * descr-text.el (describe-char): Fix previous change. Don't make
9007 a unibyte character to multibyte in the *Help* buffer.
9008
9009 2004-05-10 Miles Bader <miles@gnu.org>
9010
9011 * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
9012 buffer an error if the debugger process is actually running.
9013
9014 2004-05-10 Juanma Barranquero <lektu@terra.es>
9015
9016 * help-fns.el (help-argument-name): Default to italic.
9017 (help-highlight-arguments): Return always (usage . doc), even when
9018 usage is nil.
9019
9020 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
9021 (define-ibuffer-filter): Add usage info.
9022 (define-ibuffer-op): Add usage info (but CL-style defaults for
9023 keyword args are not shown).
9024
9025 * subr.el (remove-overlays, read-passwd): Fix docstring.
9026 (start-process-shell-command): Fix docstring. Put usage info in a
9027 format usable by `describe-function'.
9028 (open-network-stream, open-network-stream-nowait)
9029 (open-network-stream-server): Fix docstring.
9030
9031 2004-05-09 Jason Rumney <jasonr@gnu.org>
9032
9033 * international/code-pages (cp932, cp936, cp949, c950): Remove.
9034 Only define cp125* if windows-125* is already defined.
9035
9036 * language/korean.el (cp949): Add alias.
9037
9038 * language/chinese.el (cp936, cp950): Add aliases.
9039
9040 * language/japanese.el (cp932): Add alias.
9041
9042 * term/w32-win.el: Require code-pages.
9043
9044 * international/mule-cmds.el (set-locale-environment):
9045 On MS-Windows use ansi code-page for default coding-systems.
9046 Set up paper sizes for Windows 3 letter languages.
9047
9048 * international/code-pages.el (cp932, cp936, cp949, cp950):
9049 Add aliases. Also add cp125* if not already defined.
9050
9051 2004-05-09 Juanma Barranquero <lektu@terra.es>
9052
9053 * help-fns.el (help-highlight-arguments): Don't try to highlight
9054 missing or autoloaded arglists. Accept structured arguments, like
9055 the first ones of `do' and `flet'.
9056
9057 * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
9058 (cvs-get-marked): Remove redundant arglist info.
9059
9060 * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
9061 Don't use CL-style default args.
9062
9063 2004-05-08 Andreas Schwab <schwab@suse.de>
9064
9065 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
9066
9067 * international/subst-ksc.el: Fix references to utf-translate-cjk
9068 into utf-translate-cjk-mode.
9069 * international/subst-big5.el: Likewise.
9070 * international/subst-gb2312.el: Likewise.
9071 * international/subst-jis.el: Likewise.
9072 * international/utf-16.el: Likewise.
9073 * international/utf-8.el: Likewise.
9074
9075 2004-05-08 John Wiegley <johnw@newartisans.com>
9076
9077 * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
9078 "virtual buffers" (off by default), which makes it possible to
9079 switch to the "virtual" buffers of recently visited files. When a
9080 buffer name search fails, and this option is on, iswitchb will
9081 look at the list of recently visited files, and permit matching
9082 against those names. When the user hits RET on a match, it will
9083 revisit that file.
9084 (iswitchb-read-buffer): Add two optional arguments, which makes
9085 isearchb.el possible.
9086 (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
9087 (iswitchb-next-match): Add support for virtual buffers.
9088
9089 * isearchb.el: This module extends iswitchb to provide "as you
9090 type" buffer selection.
9091
9092 * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
9093 Ignore the read-only property when flyspell highlighting is on.
9094 Not ignoring it leads to a series of confusing errors.
9095 (flyspell-highlight-duplicate-region): Ignore read-only, as above,
9096 but also make sure to call flyspell-incorrect-hook.
9097 (flyspell-maybe-correct-transposition): Perform transposition test
9098 by bit twiddling a string, rather than using a temp buffer.
9099 (flyspell-maybe-correct-doubling): Use a string rather than a temp
9100 buffer. This is also the original version of the code, which
9101 could not be checked in before due to a previous lack of
9102 assignment papers. This version has seen heavy usage on my system
9103 for several years now.
9104
9105 * calendar/cal-bahai.el: New file, which adds support for the
9106 Baha'i calendar to Emacs. This calendar is based on a solar year
9107 of 19 months of 19 days, with 4 intercalary days. Each year
9108 begins on March 21, with the calendar starting in 1844.
9109
9110 * calendar/cal-menu.el, calendar/calendar.el,
9111 calendar/diary-lib.el, calendar/holidays.el: Added support for
9112 using cal-bahai.el.
9113
9114 * eshell/em-glob.el (eshell-glob-initialize): Move initialization
9115 of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
9116 function can be used outside of eshell buffers.
9117 (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
9118
9119 2004-05-08 Juanma Barranquero <lektu@terra.es>
9120
9121 * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
9122 word constituent so FOO-ARG is not recognized as an arg.
9123 (help-highlight-arguments): Don't skip lists in mandatory arguments.
9124
9125 * simple.el (next-error): Fix typo in docstring.
9126 (open-line): Make argument names match their use in docstring.
9127 (split-line): Fix docstring.
9128
9129 * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
9130 usable by `describe-function'.
9131 (gensym, gentemp, typep, ignore-errors): Make argument names match
9132 their use in docstring.
9133
9134 * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
9135 argument to `help-setup-xref'.
9136
9137 2004-05-07 Kai Grossjohann <kai@emptydomain.de>
9138
9139 Version 2.0.40 of Tramp released.
9140
9141 * net/tramp.el (tramp-completion-mode, tramp-md5-function):
9142 Use symbol-function to invoke functions only known on some Emacs
9143 flavors. This avoids byte-compiler warnings. Reported by Kevin
9144 Scaldeferri <kevin@scaldeferri.com>.
9145 (tramp-do-copy-or-rename-file-via-buffer): Rename from
9146 tramp-do-copy-or-rename-via-buffer (without `file'), to make it
9147 consistent with the other tramp-do-* functions.
9148 (tramp-do-copy-or-rename-file): Calls adjusted.
9149 (tramp-process-initial-commands): Avoid liveness check on shell --
9150 we know that it must be alive since we're opening a connection at
9151 this moment.
9152 (tramp-last-cmd): New internal variable.
9153 (tramp-process-echoes): New tunable.
9154 (tramp-send-command): Set tramp-last-cmd.
9155 (tramp-wait-for-output): Delete echo, if applicable.
9156 (tramp-read-passwd): Construct the key for the password cache in a
9157 way that works for multi methods, too.
9158 (tramp-bug): Add backup-directory-alist and
9159 bkup-backup-directory-info to bug reports, with Tramp counterparts.
9160
9161 2004-05-07 Michael Albinus <michael.albinus@gmx.de>
9162
9163 * net/tramp*.el: Suppress byte-compiler warnings where possible.
9164
9165 * net/tramp.el (tramp-out-of-band-prompt-regexp)
9166 (tramp-actions-copy-out-of-band): New defcustoms.
9167 (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
9168 used instead of a synchronous one. Allows password entering.
9169 (tramp-action-out-of-band): New defun.
9170 (tramp-open-connection-rsh, tramp-method-out-of-band-p):
9171 Remove restriction with password from doc string.
9172 (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
9173 `tramp-out-of-band-prompt-regexp',
9174 `tramp-actions-copy-out-of-band', `password-cache' and
9175 `password-cache-expiry'.
9176 (toplevel): Remove todo item wrt ssh-agent. Obsolete due to
9177 password caching.
9178 (tramp-touch): FILE can be a local file, too.
9179 (TODO): Remove items done.
9180 (tramp-handle-insert-directory): Properly quote file name also if
9181 not full-directory-p. Handle wildcard case. Reported by Andreas
9182 Schwab <schwab@suse.de>.
9183 (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
9184 new file.
9185 (tramp-handle-file-local-copy, tramp-handle-write-region):
9186 The permissions of the temporary file are set if filename exists.
9187 Reported by Ted Stern <stern@cray.com>.
9188 (tramp-backup-directory-alist)
9189 (tramp-bkup-backup-directory-info): New defcustoms.
9190 (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
9191 (tramp-handle-find-backup-file-name): New function.
9192 Implements Tramp's find-backup-file-name.
9193
9194 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
9195 for `find-backup-file-name'.
9196
9197 * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
9198 ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
9199
9200 2004-05-07 Lars Hansen <larsh@math.ku.dk>
9201
9202 * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
9203
9204 2004-05-07 Juanma Barranquero <lektu@terra.es>
9205
9206 * subr.el (lambda): Add arglist description to docstring.
9207 (declare): Fix typo in docstring.
9208 (open-network-stream): Fix docstring.
9209 (process-kill-without-query): Fix docstring and add obsolescence info.
9210 (last, butlast, nbutlast): Make arguments match their use in docstring.
9211 (insert-buffer-substring-no-properties): Likewise.
9212 (insert-buffer-substring-as-yank): Likewise.
9213 (split-string): Fix docstring.
9214
9215 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
9216 Make argument names match their use in docstring.
9217
9218 * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
9219
9220 2004-05-06 Nick Roberts <nickrob@gnu.org>
9221
9222 * progmodes/gdb-ui.el: Improve/extend documentation strings.
9223 Fit first sentence on one line for apropos-command.
9224
9225 2004-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
9226
9227 Changes largely merged in from Dave Love's code.
9228 * progmodes/python.el: Doc fixes.
9229 (python-mode-map): Add python-complete-symbol.
9230 (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
9231 (python-comment-indent, python-complete-symbol)
9232 (python-symbol-completions, python-partial-symbol)
9233 (python-try-complete): New.
9234 (python-indent-line): Remove optional arg. Use python-block-end-p.
9235 (python-check): Bind compilation-error-regexp-alist.
9236 (inferior-python-mode): Use rx. Move keybindings to top level.
9237 Set comint-input-filter.
9238 (python-preoutput-filter): Use rx.
9239 (python-input-filter): Re-introduce.
9240 (python-proc): Start new process if necessary.
9241 Check python-buffer non-nil.
9242 (view-return-to-alist): Defvar.
9243 (python-send-receive): New.
9244 (python-eldoc-function): Use it.
9245 (python-mode-running): Don't defvar.
9246 (python-mode): Set comment-indent-function.
9247 Maybe update hippie-expand-try-functions-list.
9248 (python-indentation-levels): Initialize differently.
9249 (python-block-end-p): New.
9250 (python-indent-line): Use it.
9251 (python-compilation-regexp-alist): Augment.
9252 (run-python): Import `emacs' module to Python rather than loading
9253 code directly. Set python-buffer differently.
9254 (python-send-region): Use emacs.eexecfile. Fix orig-start calculation.
9255 Use python-proc.
9256 (python-send-command): Go to end of comint buffer.
9257 (python-load-file): Use python-proc, emacs.eimport.
9258 (python-describe-symbol): Simplify interactive form.
9259 Use emacs.help. Do use temp-buffer-show-hook.
9260 Call print-help-return-message.
9261 (hippie-exp): Require when compiling.
9262 (python-preoutput-continuation): Use rx.
9263
9264 * diff-mode.el (diff-make-unified): Fix regexp.
9265
9266 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
9267
9268 * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
9269 filter groups from the buffer when rebuilding the Ibuffer buffer
9270 and `ibuffer-show-empty-filter-groups' is nil.
9271
9272 2004-05-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9273
9274 * ps-print.el (ps-print-quote): Call ps-value-string.
9275 (ps-setup): Call ps-comment-string.
9276 (ps-value-string, ps-comment-string): New funs.
9277
9278 2004-05-06 Juanma Barranquero <lektu@terra.es>
9279
9280 * ehelp.el (electric-help-command-loop): Check whether the last
9281 character is visible, not (point-max).
9282
9283 * help-fns.el (help-argument-name): Default to bold; don't inherit
9284 from font-lock-variable-name-face.
9285 (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
9286
9287 2004-05-05 Kenichi Handa <handa@m17n.org>
9288
9289 * descr-text.el (describe-char): Copy the character with text
9290 properties and overlays into the first line, and call
9291 describe-text-properties on it.
9292
9293 2004-05-05 Stephen Eglen <stephen@anc.ed.ac.uk>
9294
9295 * iswitchb.el (iswitchb-global-map): Fix typo.
9296 Remove unwanted ###autoloads from source file.
9297
9298 2004-05-05 Lars Hansen <larsh@math.ku.dk>
9299
9300 * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
9301 in run-hooks. Use substitute-command-keys in message.
9302 (wdired-abort-changes): Add message.
9303
9304 2004-05-03 Michael Mauger <mmaug@yahoo.com>
9305
9306 * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
9307 (sql-emacs20-p): Remove.
9308 (sql-mode-syntax-table): Use shared GNU EMacs/XEmacs syntax.
9309 (sql-builtin-face, sql-doc-face): Remove.
9310 (sql-mode-ansi-font-lock-keywords)
9311 (sql-mode-oracle-font-lock-keywords)
9312 (sql-mode-postgres-font-lock-keywords)
9313 (sql-mode-linter-font-lock-keywords)
9314 (sql-mode-ms-font-lock-keywords)
9315 (sql-mode-mysql-font-lock-keywords): Use standard fonts.
9316 (sql-product-font-lock): Fix font-lock reset when font rules change.
9317 (sql-highlight-product): Remove incorrect font-lock reset logic.
9318
9319 2004-05-04 Jonathan Yavner <jyavner@member.fsf.org>
9320
9321 * ses.el (ses-set-parameter): Fix typo.
9322
9323 2004-05-04 Kim F. Storm <storm@cua.dk>
9324
9325 * ido.el (ido-read-internal): Fix call to read-file-name for edit.
9326 Must expand directory for completion to work; and don't mess with
9327 process-environment.
9328 (ido-read-file-name): If command has ido property, don't use ido
9329 if value is ignore, or read as directory if value is dir.
9330 Set ido ignore property for dired-do-rename command.
9331
9332 2004-05-04 Juanma Barranquero <lektu@terra.es>
9333
9334 * ehelp.el (electric-help-command-loop, electric-help-undefined)
9335 (electric-help-help): Check against unmapped commands.
9336
9337 * help-fns.el (help-argument-name): New face, inheriting from
9338 font-lock-variable-name-face, to highlight function arguments in
9339 `describe-function' and `describe-key'.
9340 (help-do-arg-highlight): Auxiliary function to highlight a given
9341 list of arguments in a string.
9342 (help-highlight-arguments): Highlight the function arguments and
9343 all uses of them in the docstring.
9344 (describe-function-1): Use it. Do docstring output via `insert',
9345 not 'princ', so text attributes are preserved.
9346
9347 * winner.el (winner-mode-map): Move `winner-undo' and
9348 `winner-redo' to C-c <left> and C-c <right>, respectively (the
9349 previous bindings conflict with `prev-buffer', `next-buffer').
9350
9351 2004-05-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9352
9353 * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
9354 (bibtex-entry-update): New command bound to C-c C-u.
9355 (bibtex-text-in-string): Fix regexp.
9356 (bibtex-assoc-of-regexp): Remove.
9357 (bibtex-progress-message): Fix docstring.
9358 (bibtex-inside-field): Use if.
9359 (bibtex-assoc-regexp): New function.
9360 (bibtex-format-entry): Make code more robust so that it formats
9361 also old entries.
9362 (bibtex-autokey-demangle-title): Merge with obsolete function
9363 bibtex-assoc-of-regexp.
9364 (bibtex-field-list): New function.
9365 (bibtex-entry): Use bibtex-field-list.
9366 (bibtex-parse-entry): Fix docstring.
9367 (bibtex-print-help-message): Use bibtex-field-list.
9368 (bibtex-make-field): Use bibtex-field-list.
9369 (bibtex-entry-index): Bugfix. Return crossref key if required.
9370 (bibtex-lessp): Fix docstring.
9371
9372 2004-05-03 Luc Teirlinck <teirllm@auburn.edu>
9373
9374 * select.el (xselect-convert-to-string): Move comment to intended line.
9375
9376 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9377
9378 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
9379 cut/copy/paste in case menu-bar-enable-clipboard is in effect.
9380
9381 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9382
9383 * term/x-win.el (x-clipboard-yank): Don't exit on error from
9384 x-get-selection.
9385
9386 2004-05-03 Jason Rumney <jasonr@gnu.org>
9387
9388 * makefile.nt: Remove.
9389
9390 2004-05-03 Kim F. Storm <storm@cua.dk>
9391
9392 * emulation/cua-base.el (cua--update-indications): Fix last change.
9393 (cua-mode): Deactivate mark when cua-mode is enabled.
9394
9395 2004-05-02 Luc Teirlinck <teirllm@auburn.edu>
9396
9397 * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
9398
9399 2004-05-03 Nick Roberts <nickrob@gnu.org>
9400
9401 * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
9402 (gdb-display-source-buffer, gdb-put-breakpoint-icon)
9403 (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
9404 window over visible frames.
9405 (gdb-goto-breakpoint): Make buffer display file at breakpoint.
9406
9407 2004-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
9408
9409 * progmodes/compile.el (compilation-gcpro): New var.
9410 (compilation-fake-loc): Use it.
9411 (compilation-forget-errors): Reset it.
9412
9413 2004-05-02 Dan Nicolaescu <dann@ics.uci.edu>
9414
9415 * diff-mode.el (diff-header-face, diff-file-header-face):
9416 Use min-colors.
9417
9418 2004-05-02 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9419
9420 * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
9421 (bibtex-clean-entry): Disentangle code.
9422 (bibtex-realign): New function.
9423 (bibtex-reformat): Use mapcar and bibtex-realign. Do not use
9424 bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
9425 Remove undocumented optional arg called-by-convert-alien.
9426 (bibtex-convert-alien): Use bibtex-realign. Use bibtex-reformat
9427 for sorting instead of bibtex-sort-buffer.
9428
9429 2004-05-02 Eli Zaretskii <eliz@gnu.org>
9430
9431 * progmodes/compile.el (compilation-start): In the
9432 no-async-subprocesses branch, call sit-for to give redisplay a
9433 chance to show the updated process status in the mode line, and
9434 fontify the buffer explicitly after the process exits.
9435
9436 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
9437
9438 * progmodes/python.el (python-compilation-line-number): Remove.
9439 (python-compilation-regexp-alist): Don't use it any more.
9440 (python-orig-start, python-input-filter): Remove.
9441 (inferior-python-mode): Don't set up comint-input-filter-functions.
9442 (python-send-region): Use compilation-fake-loc.
9443
9444 * progmodes/compile.el (compilation-messages-start): New var.
9445 (compilation-mode): Don't setup next-error-function here.
9446 (compilation-setup): Set it up here instead (for minor modes as well).
9447 Make compilation-messages-start buffer local.
9448 (compilation-next-error-function): Use it.
9449 (compilation-forget-errors): Set compilation-messages-start.
9450
9451 2004-05-01 Luc Teirlinck <teirllm@auburn.edu>
9452
9453 * ielm.el (ielm-prompt-read-only): Update docstring.
9454
9455 * comint.el (comint-prompt-read-only): Update docstring.
9456 (comint-update-fence, comint-kill-whole-line)
9457 (comint-kill-region): New functions.
9458
9459 * simple.el (kill-whole-line): Use "p" instead of "P" in
9460 interactive form.
9461
9462 2004-05-01 Juanma Barranquero <lektu@terra.es>
9463
9464 * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
9465 format arglist so default values in CL-style argument lists are
9466 correctly shown.
9467
9468 2004-05-01 Jason Rumney <jasonr@gnu.org>
9469
9470 * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
9471
9472 2004-05-01 Kenichi Handa <handa@m17n.org>
9473
9474 * international/titdic-cnv.el (miscdic-convert): Don't generate a
9475 quail file if it is up to date.
9476
9477 2004-04-30 Juri Linkov <juri@jurta.org>
9478
9479 * cus-edit.el (custom-mode-map):
9480 Add key binding `C-x C-s' to `Custom-save'.
9481
9482 * outline.el (outline-blank-line): New var.
9483 (outline-next-preface, outline-show-heading)
9484 (outline-end-of-subtree): Use it.
9485
9486 * dired-aux.el (dired-touch-initial): New fun.
9487 (dired-do-chxxx): Call it for op-symbol `touch'.
9488 (dired-diff): Use `dired-dwim-target-directory'
9489 if current dired buffer has no buffer mark.
9490
9491 * bindings.el (propertized-buffer-identification):
9492 Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
9493 Add C-M-arrow keys for consistency.
9494
9495 * files.el (confirm-kill-emacs):
9496 Change group from top-level `emacs' to `convenience'.
9497
9498 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
9499 Push mark on the first call of successive command calls.
9500 (insert-pair): New fun created from `insert-parentheses' with
9501 `open' and `close' arguments added. Enclose active regions
9502 in paired characters. Compare adjacent characters syntax with
9503 inserted characters syntax before inserting a space.
9504 (insert-parentheses): Call `insert-pair' with ?\( ?\).
9505
9506 * delsel.el: Don't put `delete-selection' property
9507 on `insert-parentheses' symbol to take advantage of
9508 region handling in `insert-pair' function.
9509 Suggested by Stephan Stahl <stahl@eos.franken.de>.
9510
9511 2004-04-30 Kim F. Storm <storm@cua.dk>
9512
9513 * emulation/cua-base.el: Add support for changing cursor types;
9514 based on patch from Michael Mauger.
9515 (cua-normal-cursor-color, cua-read-only-cursor-color)
9516 (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
9517 Customization cursor type and/or cursor color.
9518 (cua--update-indications): Handle cursor type changes.
9519 (cua-mode): Update cursor indications if enabled.
9520
9521 * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
9522
9523 * mouse.el (mouse-drag-copy-region): New defcustom.
9524 (mouse-set-region, mouse-drag-region-1): Use it.
9525
9526 * simple.el (kill-ring-save): If region face background color is
9527 unspecified (if no highlighting), show extent of fully visible
9528 region even if transient-mark-mode is enabled.
9529
9530 * emulation/cua-base.el (cua--standard-movement-commands):
9531 Add cua-scroll-up and cua-scroll-down.
9532 (cua-scroll-up, cua-scroll-down): New commands.
9533 (cua--init-keymaps): Remap scroll-up and scroll-down.
9534
9535 * emulation/cua-rect.el (cua--convert-rectangle-as):
9536 New defmacro.
9537 (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
9538 (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
9539 New commands (suggested by Jordan Breeding).
9540
9541 2004-04-30 Juanma Barranquero <lektu@terra.es>
9542
9543 * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
9544
9545 2004-04-30 Mario Lang <mlang@delysid.org>
9546
9547 * diff.el (diff-switches): Fix typo in docstring.
9548
9549 2004-04-30 Alex Schroeder <alex@gnu.org>
9550
9551 * xml.el (xml-debug-print-internal): Don't add newline and
9552 indentation to text nodes and write empty elements as empty tags
9553 instead of opening and closing tags.
9554 (xml-debug-print): Take optional indent-string argument.
9555 (xml-print): Alias for xml-debug-print.
9556
9557 2004-04-30 Glenn Morris <gmorris@ast.cam.ac.uk>
9558
9559 * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
9560 than duplicate call to `line-beginning-position'.
9561
9562 * progmodes/f90.el (f90-get-present-comment-type):
9563 Return whitespace, as well as comment chars, for consistent filling
9564 of comment blocks. Use `match-string-no-properties'.
9565 (f90-break-line): Trim trailing whitespace when filling comments.
9566
9567 2004-04-30 Dave Love <fx@gnu.org>
9568
9569 * calendar/diary-lib.el (diary-outlook-formats): New variable.
9570 (diary-from-outlook-internal, diary-from-outlook)
9571 (diary-from-outlook-gnus, diary-from-outlook-rmail):
9572 New functions to import diary entries from Outlook-format
9573 appointments in mail messages.
9574
9575 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
9576
9577 * progmodes/python.el (python-send-command): New fun.
9578 (python-send-region, python-load-file): Use it.
9579
9580 * progmodes/compile.el (compilation-last-buffer): Add var alias.
9581
9582 * help-fns.el (help-C-file-name): Use new subr-name.
9583 Prepend `src/' to the file name.
9584 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
9585 (describe-function-1, describe-variable): Only find a C source file
9586 name if DOC is already loaded.
9587
9588 * help-mode.el (help-function-def, help-variable-def):
9589 Use the new find-function-search-for-symbol functionality.
9590 Allow FILE to be `C-source'.
9591
9592 * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
9593 (find-function-C-source): New fun.
9594 (find-function-search-for-symbol): Use it.
9595
9596 2004-03-29 Michael Mauger <mmaug@yahoo.com>
9597
9598 * progmodes/sql.el (sql-product-alist): Rename variable
9599 `sql-product-support'. Add Postgres login parameters.
9600 (sql-set-product, sql-product-feature): Update with renamed variable.
9601 (sql-connect-postgres): Add username prompt.
9602 (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
9603 Make patterns less product specific.
9604 (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
9605 (sql-mode-abbrev-table): Modify initialization.
9606 (sql-builtin-face): Add variable.
9607 (sql-keywords-re): Add macro.
9608 (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
9609 (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
9610 (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
9611 (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
9612 (sql-mode-linter-font-lock-keywords)
9613 (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
9614 (sql-mode-sybase-font-lock-keywords)
9615 (sql-mode-informix-font-lock-keywords)
9616 (sql-mode-interbase-font-lock-keywords)
9617 (sql-mode-ingres-font-lock-keywords)
9618 (sql-mode-solid-font-lock-keywords)
9619 (sql-mode-sqlite-font-lock-keywords)
9620 (sql-mode-db2-font-lock-keywords): Default to nil.
9621 (sql-product-font-lock): Always highlight ANSI keywords.
9622 (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
9623 (sql-send-string): Add function.
9624
9625 2004-04-29 Dave Love <fx@gnu.org>
9626
9627 * progmodes/cfengine.el (cfengine-beginning-of-defun)
9628 (cfengine-end-of-defun): Ensure progress through buffer.
9629
9630 * info-look.el (cfengine-mode): Accept a terminal ().
9631
9632 2004-04-29 Juri Linkov <juri@jurta.org>
9633
9634 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
9635 instead of isearch-yank-word-or-char. Add new key bindings for
9636 isearch-yank-char to \C-f, and isearch-del-char to \C-b.
9637 (isearch-del-char): New fun.
9638 (isearch-forward, isearch-edit-string): Update docstring.
9639 (isearch-yank-char): Doc fix.
9640 (isearch-other-meta-char): Restore point after scrolling.
9641
9642 * progmodes/compile.el (compilation-context-lines): Add nil option
9643 to disable compilation output window scrolling.
9644 (compilation-set-window): Use it.
9645
9646 * outline.el (outline-next-preface, outline-show-heading):
9647 Don't leave unhidden blank line before heading.
9648 (outline-end-of-subtree): Include last newline into subtree.
9649 (hide-entry): Leave point at beginning of heading instead of end.
9650 (outline-up-heading): Push mark for the first call of successive
9651 command calls.
9652
9653 2004-04-28 Luc Teirlinck <teirllm@auburn.edu>
9654
9655 * comint.el (comint-prompt-read-only): New variable.
9656 (comint-output-filter): Implement it.
9657
9658 * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
9659 (ielm-prompt-internal): New variable.
9660 (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
9661 (ielm-send-input): Delete unused variable `buf'.
9662 (ielm-eval-input): Use `ielm-prompt-internal'.
9663 (inferior-emacs-lisp-mode): Use new variables
9664 `comint-prompt-read-only' and `ielm-prompt-internal'.
9665 Get rid of obsolete variable `directory-sep-char'.
9666 (ielm): Use `zerop'.
9667
9668 2004-04-29 John Paul Wallington <jpw@gnu.org>
9669
9670 * thumbs.el (toplevel): Require cl at compile time.
9671 Remove conditional definitions of `ignore-errors' and `caddar'
9672 because they occur at run time.
9673
9674 2004-04-28 Nick Roberts <nickrob@gnu.org>
9675
9676 * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
9677 (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
9678 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
9679 (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
9680
9681 * progmodes/gud.el (gud-common-init): Throw an error if program is
9682 already running under gdb.
9683
9684 2004-04-28 John Paul Wallington <jpw@gnu.org>
9685
9686 * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
9687 (thumbs-show-image-num): Move assignment of
9688 `thumbs-current-image-filename' within scope of `i'.
9689 (thumbs-emboss-image): Don't use `evenp'.
9690
9691 2004-04-28 Richard M. Stallman <rms@gnu.org>
9692
9693 * progmodes/compile.el (compilation-context-lines): Default now 0.
9694
9695 2004-04-28 Juanma Barranquero <lektu@terra.es>
9696
9697 Use `time-less-p' from calendar/time-date.el instead of defining
9698 custom versions of it.
9699
9700 * pcomplete.el (pcomplete-time-less-p): Remove.
9701
9702 * thumbs.el (time-less-p): Remove.
9703
9704 * calendar/timeclock.el (timeclock-time-less-p): Remove.
9705 (timeclock-generate-report): Use `time-less-p'.
9706
9707 * emacs-lisp/autoload.el (autoload-before-p): Remove.
9708 (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
9709
9710 2004-04-28 Masatake YAMATO <jet@gyve.org>
9711
9712 * subr.el (remove-overlays): Make arguments optional.
9713
9714 * wid-edit.el (widget-specify-button): Put evaporate to the
9715 overlay for sample.
9716 (widget-specify-sample): Put evaporate to the overlay for sample.
9717 (widget-specify-doc): Put evaporate to the overlay for documentation.
9718
9719 2004-04-27 Jesper Harder <harder@ifa.au.dk>
9720
9721 * info.el (info-apropos): Make it an index node. Align node names
9722 like makeinfo.
9723
9724 2004-04-27 Eli Zaretskii <eliz@gnu.org>
9725
9726 * net/browse-url.el (browse-url-netscape-sentinel)
9727 (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
9728 (browse-url-epiphany-sentinel, browse-url-mosaic):
9729 Use browse-url-*-program instead of a literal program name.
9730
9731 2004-04-27 Kevin Ryde <user42@zip.com.au>
9732
9733 * eshell/em-alias.el:
9734 * eshell/em-dirs.el:
9735 * eshell/em-hist.el:
9736 * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
9737 features when M-x customize-group loads modules before the main
9738 eshell.el.
9739
9740 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
9741
9742 * subr.el (momentary-string-display): Support EXIT-CHAR that is
9743 either a character representation of an event or an event
9744 description list.
9745
9746 * type-break.el: Capitalise Emacs and Lisp.
9747 (type-break-good-break-interval, type-break-demo-boring-stats)
9748 (type-break-terse-messages, type-break-file-name): New defcustoms.
9749 (type-break-post-command-hook)
9750 (type-break-warning-countdown-string): Quote variable names in doc.
9751 (type-break-interval-start, type-break-auto-save-file-name): New vars.
9752 (type-break-mode): Document type-break-good-break-interval and the
9753 "session" file. Schedule break according to the session file.
9754 Kill session file buffer on exit. Organise for save-some-buffers
9755 to always save the session file.
9756 (type-break-mode-line-message-mode, type-break-query-mode):
9757 Uppercase arguments.
9758 (type-break-file-time, type-break-file-keystroke-count, timep)
9759 (type-break-choose-file, type-break-get-previous-time)
9760 (type-break-get-previous-count): New defuns.
9761 (type-break): Avoid break querying after a completed break in the
9762 case where the query was initiated during user invocation of the
9763 break. Optional terse messages.
9764 Use type-break-good-break-interval if type-break-good-rest-interval is
9765 nil. File the break time.
9766 (type-break-schedule): New optional args for overriding the use of
9767 the current time.
9768 (type-break-cancel-time-warning-schedule): Avoid leftover warnings
9769 after a break.
9770 (type-break-check): File the keystroke count.
9771 (type-break-do-query): Prevent a second query when the break is
9772 interrupted. Optional terse message.
9773 (type-break-keystroke-reset): Record the start of a typing interval.
9774 (type-break-demo-boring): Optional terse messages. Display word
9775 per minute and keystroke counts according to
9776 type-break-demo-boring-stats.
9777
9778 2004-04-27 Daniel M Coffman <coffmand@us.ibm.com> (tiny change)
9779
9780 * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
9781 directories, make sure they exist under archive-tmpdir.
9782
9783 2004-04-27 Juri Linkov <juri@jurta.org>
9784
9785 * help.el (view-emacs-news): With argument, display info for the
9786 selected version by finding it among different NEWS files, and
9787 narrowing the buffer to the selected version.
9788
9789 * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
9790 same-window-buffer-names.
9791 (info): New arg `buffer'. Use it. Doc fix. Read file name for
9792 non-numeric prefix argument, append the number to the buffer name
9793 for numeric prefix argument.
9794 (info-other-window): Bind same-window-regexps to nil.
9795 (Info-reference-name): Rename to Info-point-loc.
9796 (Info-find-node-2): Call forward-line for numeric Info-point-loc,
9797 and Info-find-index-name for stringy Info-point-loc.
9798 (Info-extract-menu-node-name): New arg `index-node'. Use regexp
9799 without middle `.', but with final `.' and optional line number
9800 for it. Set Info-point-loc for index nodes.
9801 (Info-index): Remove middle `.' from index entry regexp.
9802 Modify line number regexp.
9803 (Info-index-next): Decrement line number.
9804 (info-apropos): Remove middle `.' from index entry regexp.
9805 Add optional line number regexp at the end. Add matched value
9806 for line number to the result list and insert it to the buffer.
9807 Replace match-string by match-string-no-properties.
9808 Reorder result list.
9809 (Info-fontify-node): Hide index line numbers.
9810 (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
9811 empty matches.
9812 (Info-follow-reference): Use `str' instead of
9813 Info-following-node-name-re.
9814 (Info-toc): Use full file names. Set Info-current-node to "Top".
9815 (Info-fontify-node): Compare file names without directory name.
9816 (Info-try-follow-nearest-node): Don't set Info-reference-name.
9817 Set second arg of Info-extract-menu-node-name for index nodes.
9818 (info-xref-visited): Use magenta3 instead of magenta4.
9819 (Info-mode): Add info-apropos to docstring.
9820
9821 * log-view.el (log-view-diff): Replace interactive code "r"
9822 by a list to allow to call it even if region is not active.
9823
9824 * paren.el (show-paren-highlight-openparen): New var.
9825 (show-paren-function): Turn on openparen highlighting when
9826 matching forward if show-paren-highlight-openparen is non-nil.
9827
9828 * simple.el (kill-ring-save): Use blink-matching-delay instead of
9829 the constant value 1.
9830 (completions-common-part): Expand docstring.
9831
9832 * textmodes/picture.el (picture-mode-map): Add arrow keys.
9833
9834 2004-04-27 Kim F. Storm <storm@cua.dk>
9835
9836 * image.el (insert-sliced-image): Use line-height instead of
9837 line-spacing property on newline.
9838
9839 2004-04-26 Lars Hansen <larsh@math.ku.dk>
9840
9841 * desktop.el (desktop-buffer-misc-data-function): Rename to
9842 desktop-save-buffer and change docstring.
9843 (desktop-buffer-modes-to-save): Delete.
9844 (desktop-save-buffer-p): Use desktop-save-buffer instead of
9845 desktop-buffer-modes-to-save.
9846 (desktop-save): Rename desktop-buffer-misc-data-function to
9847 desktop-save-buffer and allow non-function value.
9848 (desktop-missing-file-warning): Correct docstring.
9849
9850 * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
9851 to desktop-save-buffer.
9852
9853 * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
9854 desktop-save-buffer.
9855
9856 * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
9857
9858 * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
9859
9860 2004-04-26 Eli Zaretskii <eliz@gnu.org>
9861
9862 * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
9863
9864 2004-04-25 Luc Teirlinck <teirllm@auburn.edu>
9865
9866 * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
9867 (ielm): Only go to the end of the buffer when starting a new process.
9868
9869 2004-04-25 Juanma Barranquero <lektu@terra.es>
9870
9871 * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
9872 mode line. Bind `inhibit-read-only' to t before modifying
9873 properties of text in the buffer.
9874 (ielm): Force point to the end of buffer, even when running ielm
9875 from inside itself.
9876
9877 2004-04-25 Jesper Harder <harder@ifa.au.dk>
9878
9879 * info.el (info-apropos): Reset Info-complete-cache.
9880
9881 2004-04-25 Daniel Pfeiffer <occitan@esperanto.org>
9882
9883 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9884 Also recognize severe Irix et al. messages.
9885 (compilation-normalize-filename, compile-abbreviate-directory):
9886 Delete functions.
9887 (compilation-get-file-structure): New function inherits
9888 functionality of the two preceding ones.
9889 (compilation-internal-error-properties, compilation-fake-loc):
9890 Use it so that different paths to the same file share the same
9891 markers. Also optimize finding adjacent marker slightly.
9892
9893 2004-04-25 Kim F. Storm <storm@cua.dk>
9894
9895 * image.el (insert-sliced-image): Add line-spacing t property
9896 to newlines separating image lines.
9897
9898 2004-04-24 Luc Teirlinck <teirllm@auburn.edu>
9899
9900 * comint.el (comint-delete-output): Bind inhibit-read-only to t.
9901
9902 * ielm.el (ielm-prompt-read-only): New user option.
9903 (ielm-prompt): Expand docstring to describe new behavior.
9904 (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
9905 mention it in the docstring.
9906
9907 2004-04-24 Andreas Schwab <schwab@suse.de>
9908
9909 * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
9910
9911 * diff.el (diff): Set default-directory in diff buffer.
9912
9913 2004-04-24 Eli Zaretskii <eliz@gnu.org>
9914
9915 * mail/sendmail.el (mail-bury): Don't delete the frame where the
9916 mail was being composed if the terminal cannot display more than
9917 one frame; instead, switch to previous frame.
9918
9919 * mail/rmail.el (rmail-mail-new-frame): Doc fix.
9920 (rmail-start-mail): Support rmail-mail-new-frame even on
9921 terminals that can display only one frame at a time.
9922
9923 2004-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9924
9925 * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
9926 (checkdoc-output-font-lock-keywords): Remove error regexp.
9927 (checkdoc-output-mode-map): Remove.
9928 (checkdoc-output-mode): Derive from compilation-mode.
9929 (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
9930
9931 * dired.el (dired-mode-map): Add a menu entry for wdired.
9932
9933 * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
9934 (rx-bracket, rx-check-any, rx-any): Clean up name space.
9935
9936 * wdired.el: (wdired-mode-map): Move init into declaration.
9937 Fix `return' binding.
9938 (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
9939 Use force-mode-line-update.
9940 (wdired-get-filename): Use `unless'.
9941 (wdired-preprocess-files): Don't assume names have no \n and use / for
9942 dir separator.
9943 (wdired-normalize-filename): Use replace-regexp-in-string.
9944 (wdired-load-hooks): Remove.
9945 (wdired-mode-hooks): Rename to wdired-mode-hook.
9946
9947 * info-look.el: Add support for cfengine-mode.
9948 (info-lookup-setup-mode): Use dolist.
9949
9950 2004-04-23 Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba <juan-leon.lahoz@tecsidel.es>
9951
9952 * wdired.el: New file.
9953
9954 2004-04-23 Juanma Barranquero <lektu@terra.es>
9955
9956 * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
9957
9958 * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
9959 (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
9960 (pcomplete--help, pcomplete--here): Doc fixes.
9961
9962 2004-04-23 Andre Spiegel <spiegel@gnu.org>
9963
9964 * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
9965 handles wrong-number-of-arguments in backend call.
9966
9967 * vc.el (vc-print-log): Likewise.
9968
9969 2004-04-20 Dave Love <fx@gnu.org>
9970
9971 * emacs-lisp/rx.el: Doc fixes.
9972 (rx-constituents): Add/extend many forms.
9973 (rx-check): Check form is a list.
9974 (bracket): Defvar.
9975 (rx-check-any, rx-any, rx-check-not): Modify.
9976 (rx-not): Simplify.
9977 (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
9978 (rx-kleene): Use rx-trans-forms.
9979 (rx-quote-for-set): Delete.
9980 (rx): Allow multiple args.
9981
9982 2004-04-23 Kenichi Handa <handa@m17n.org>
9983
9984 * international/mule-util.el (char-displayable-p): Simplify by
9985 using internal-char-font.
9986
9987 2004-04-23 Juanma Barranquero <lektu@terra.es>
9988
9989 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
9990
9991 2004-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
9992
9993 * diff-mode.el (diff-next-error): New fun.
9994 (diff-mode): Use it.
9995
9996 * simple.el (next-error): Change arg name.
9997 Add support for the documented C-u C-x ` usage.
9998
9999 * frame.el (special-display-popup-frame, next-multiframe-window)
10000 (previous-multiframe-window): Only consider frames on same display.
10001
10002 2004-04-22 Lars Hansen <larsh@math.ku.dk>
10003
10004 * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
10005 * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
10006
10007 2004-04-22 Kim F. Storm <storm@cua.dk>
10008
10009 * net/telnet.el (telnet): Add optional port arg.
10010
10011 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
10012
10013 * progmodes/compile.el (compilation-mode-font-lock-keywords):
10014 Minor sanity check on the `hyperlink' slot.
10015
10016 * Makefile.in (recompile): Compile new files.
10017
10018 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
10019 Add byte-recompile-directory's optional `arg'.
10020
10021 * cvs-status.el (cvs-tree-use-charset): New var.
10022 (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
10023 (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
10024 (cvs-status-cvstrees): Use it.
10025
10026 * emacs-lisp/checkdoc.el (checkdoc-output-mode):
10027 Make it a normal major mode.
10028 (checkdoc-buffer-label): Make sure the file name is meaningful.
10029 (checkdoc-output-to-error-buffer): Remove.
10030 (checkdoc-error, checkdoc-start-section): Rewrite.
10031
10032 * info.el (info-node, info-menu-5, info-xref, info-header-node)
10033 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
10034 (Info-title-4-face): Use new syntax.
10035 (info-xref-visited): Inherit from info-xref.
10036
10037 * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
10038
10039 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
10040
10041 * simple.el (next-error-last-buffer, next-error-function):
10042 New variables for the next-error framework.
10043 (next-error-buffer-p): New function.
10044 (next-error-find-buffer): Generalize compilation-find-buffer.
10045 (next-error, previous-error, first-error, next-error-no-select)
10046 (previous-error-no-select): Move from compile.el.
10047
10048 * replace.el (occur-next-error, occur-1): Hook into the next-error
10049 framework.
10050
10051 * progmodes/compile.el (compilation-start):
10052 Set next-error-last-buffer so next-error knows where to jump.
10053 (compilation-setup): Set the buffer-local variable
10054 next-error-function to 'compilation-next-error-function.
10055 (compilation-buffer-p, compilation-buffer-internal-p): Use an
10056 alternate way to find if a buffer is a compilation buffer, for
10057 next-error convenience.
10058 (next-error-no-select, previous-error-no-select, next-error)
10059 (previous-error, first-error): Move to simple.el.
10060 (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
10061 (compilation-last-buffer): Remove.
10062 (compilation-start, compilation-next-error, compilation-setup)
10063 (compilation-next-error-function, compilation-find-buffer):
10064 Remove compilation-last-buffer use.
10065
10066 2004-04-21 Juanma Barranquero <lektu@terra.es>
10067
10068 * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
10069 (font-lock-warning-face): Fix spacing.
10070
10071 * makefile.w32-in (WINS): Add url/ directory.
10072
10073 2004-04-21 Lars Hansen <larsh@math.ku.dk>
10074
10075 * desktop.el (desktop-buffer-mode-handlers): New variable.
10076 Alist of major mode specific functions to restore a desktop buffer.
10077 (desktop-buffer-handlers): Make variable obsolete.
10078 (desktop-create-buffer): Use desktop-buffer-mode-handlers.
10079 Catch errors signaled in handlers. Update buffer count.
10080 Evaluate desktop-buffer-point.
10081 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
10082 move to dired.el.
10083 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
10084 move to info.el.
10085 (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
10086 move to mail/rmail.el.
10087 (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
10088 to mh-e/mh-e.el.
10089 (desktop-buffer-file): Rename to desktop-restore-file-buffer.
10090 On fail, print message (to message buffer) even if
10091 desktop-missing-file-warning is nil.
10092 (desktop-buffer-misc-data-function): New buffer local variable.
10093 Function returning major mode specific data.
10094 (desktop-buffer-misc-functions): Make variable obsolete.
10095 (desktop-save): Use desktop-buffer-misc-data-function.
10096 (desktop-buffer-dired-misc-data): Rename to
10097 dired-desktop-buffer-misc-data and move to dired.el.
10098 (desktop-buffer-info-misc-data): Rename to
10099 Info-desktop-buffer-misc-data and move to info.el.
10100 (desktop-read): Add message about number of buffers restored/failed.
10101
10102 * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
10103 Add parameters. Pause to display error only when
10104 desktop-missing-file-warning is non-nil.
10105 (dired-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
10106 (dired-mode): Bind desktop-buffer-misc-data-function.
10107
10108 * info.el (Info-restore-desktop-buffer): Move from desktop.el.
10109 Add Parameters.
10110 (Info-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
10111 (Info-mode): Bind desktop-buffer-misc-data-function.
10112
10113 * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
10114 Add Parameters.
10115
10116 * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
10117 Add Parameters.
10118
10119 2003-04-21 Paul Pogonyshev <pogonyshev@gmx.net>
10120
10121 * dabbrev.el (dabbrev--substitute-expansion): Don't lose
10122 the case of letters in case-insensitive expansions when the
10123 abbrev is preceded by characters with letter syntax.
10124
10125 2004-04-21 Richard M. Stallman <rms@gnu.org>
10126
10127 * progmodes/cperl-mode.el (cperl-putback-char):
10128 Delete Emacs 18 definition.
10129
10130 * international/mule.el (ctext-post-read-conversion):
10131 Use assoc-string, not assoc-ignore-case.
10132
10133 * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
10134
10135 * emacs-lisp/easymenu.el (easy-menu-add):
10136 Do call x-popup-menu, but only if it's defined.
10137
10138 * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
10139
10140 * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
10141 Handle multiple args: compile like progn.
10142
10143 * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
10144 take all args as &rest arg.
10145
10146 * autoinsert.el (auto-insert-alist): Insert the user's name in
10147 copyright notice, rather than Free Software Foundation.
10148
10149 2004-04-21 Kenichi Handa <handa@m17n.org>
10150
10151 * descr-text.el (describe-char): Make it work on *Help* buffer.
10152
10153 2004-04-21 Kim F. Storm <storm@cua.dk>
10154
10155 * image.el (insert-image): Add optional SLICE arg.
10156 (insert-sliced-image): New defun.
10157
10158 2004-04-20 Lawrence Mitchell <wence@gmx.li> (tiny change)
10159
10160 * subr.el (read-number): Check whether `default' is nil.
10161
10162 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
10163
10164 * progmodes/compile.el (compilation-error-properties):
10165 Split into two.
10166 (compilation-internal-error-properties): New one.
10167 (compilation-compat-error-properties): Use it. Fix the non-marker case.
10168
10169 2004-04-20 Richard M. Stallman <rms@gnu.org>
10170
10171 * window.el (split-window-save-restore-data):
10172 Don't update the data if OLD-INFO is nil.
10173
10174 * view.el (view-return-to-alist): Mark it permanent local.
10175
10176 * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
10177
10178 * recentf.el (recentf-save-list): Catch and warn about errors.
10179
10180 * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
10181 so "Buffers" won't be pure.
10182
10183 * help-mode.el (help-mode-finish): Set help-return-alist first
10184 thing, setting only the entry for the selected window.
10185
10186 * help-fns.el (describe-function-1): If many non-control non-meta
10187 keys run the command, don't list all of them.
10188
10189 2004-04-20 Juanma Barranquero <lektu@terra.es>
10190
10191 * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
10192 arg. Copied from Andre Spiegel's patch of 2004-03-21.
10193
10194 * calendar/time-date.el (time-to-day-in-year): Fix docstring.
10195
10196 2004-04-20 Kenichi Handa <handa@m17n.org>
10197
10198 * international/quail.el (quail-lookup-key): New optional arg
10199 NOT-RESET-INDICES.
10200 (quail-get-translations): Call quail-lookup-key with
10201 NOT-RESET-INDICES t.
10202 (quail-completion): Likewise.
10203 (quail-lookup-map-and-concat): Likewise.
10204
10205 2004-04-20 Kenichi Handa <handa@m17n.org>
10206
10207 * international/quail.el (quail-update-translation): Don't insert
10208 such an unsupported multibyte char in a unibyte buffer.
10209
10210 2004-04-20 Nick Roberts <nick@nick.uklinux.net>
10211
10212 * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
10213 (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
10214 (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
10215 (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
10216 (gdb-frame-assembler-buffer): Improve behaviour with
10217 multiple frames.
10218 (gdb-display-buffer): Extend search to all visible frames.
10219
10220 2004-04-19 Eli Zaretskii <eliz@gnu.org>
10221
10222 * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
10223 characters left after base64 decoding.
10224 (rmail-decode-region): Use -dos variety of `coding', to remove any
10225 ^M characters left after qp or base64 decoding.
10226
10227 2004-04-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10228
10229 * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
10230 messages.
10231
10232 2004-04-19 Stephen Eglen <stephen@gnu.org>
10233
10234 * add-log.el (add-change-log-entry): Update doc string to mention
10235 add-log-full-name and add-log-mailing-address.
10236
10237 2004-04-18 Juri Linkov <juri@jurta.org>
10238
10239 * info.el (Info-find-file, Info-find-node-2): Add history and toc.
10240 (Info-find-node-2): Simplify error message.
10241 (Info-insert-dir): Use Info-following-node-name.
10242 (Info-goto-node): Remove *info-history* and *info-toc*.
10243 (Info-history): Create a node of the virtual history file.
10244 (Info-toc): Create a node of the virtual toc file.
10245 (Info-insert-toc): New arg `curr-file' for reference file names.
10246 (info-apropos): Remove redundant var binding for temp-file.
10247 (Info-index, Info-index-next, Info-mode): Doc fix.
10248 (Info-goto-emacs-command-node): Don't jump to *info* from
10249 non-*info* Info buffers.
10250 (Info-fontify-node): Don't show the file name of external
10251 references if `Info-hide-note-references' is `hide'. Don't hide
10252 newlines at the end of paragraphs.
10253
10254 * international/mule-diag.el (list-input-methods):
10255 Fix args to help-xref-button.
10256
10257 * help-fns.el (help-with-tutorial): Call `hack-local-variables'
10258 to put into effect local variables from TUTORIAL files.
10259
10260 * textmodes/paragraphs.el (sentence-end) <function>: New fun
10261 with default value taken from the variable `sentence-end'.
10262 (sentence-end) <defcustom>: Set default to nil. Doc fix.
10263 Add nil const to :type.
10264 (sentence-end-without-period, sentence-end-double-space)
10265 (sentence-end-without-space): Doc fix.
10266
10267 * textmodes/paragraphs.el (forward-sentence):
10268 * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
10269 (fill-delete-newlines):
10270 * progmodes/cc-cmds.el (c-beginning-of-statement):
10271 Use function `sentence-end' instead of variable `sentence-end'.
10272
10273 2004-04-18 Andreas Schwab <schwab@suse.de>
10274
10275 * progmodes/compile.el (compilation-start): Set window start to
10276 point-min if compilation-scroll-output is nil.
10277
10278 2004-04-18 John Wiegley <johnw@newartisans.com>
10279
10280 * iswitchb.el (iswitchb-completions): Remove dependency on cl.
10281
10282 2004-04-18 Nick Roberts <nick@nick.uklinux.net>
10283
10284 * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
10285 (gdb-info-breakpoints-custom): Revert previous change.
10286 (gdb-view-assembler): Update assembler if necessary.
10287 (gdb-frame-handler): Parse correctly for gdb-current-frame.
10288 (gdb-display-source-buffer): Update properly when both source and
10289 assembler are visible.
10290
10291 2004-04-17 John Wiegley <johnw@newartisans.com>
10292
10293 * iswitchb.el (iswitchb-max-to-show): Add a new config variable
10294 which limits the number of names shown in the minibuffer. Off by
10295 default.
10296 (iswitchb-completions): Use `iswitchb-max-to-show'. This speeds
10297 up iswitchb for users with a multitude of open buffers by showing
10298 only the first and last N/2 buffers in the completion list (which
10299 is enough to aid C-s/C-r, and to know that more characters are
10300 needed to refine the completion list).
10301
10302 2004-04-17 Richard M. Stallman <rms@gnu.org>
10303
10304 * files.el (locate-file-completion): Handle nil in path-and-suffixes.
10305 (file-truename): Expand all ~ constructs directly.
10306 (insert-directory): Delete any error msg output by the
10307 `insert-directory-program'.
10308
10309 * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
10310 (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
10311 (allout-prior-bindings, allout-added-bindings): Defvars deleted.
10312 (allout-init): Use find-file-hook, not find-file-hooks.
10313 (allout-mode): Eliminate Emacs 18 support.
10314 Use write-contents-functions, not local-write-file-hooks.
10315
10316 2004-04-17 Daniel Pfeiffer <occitan@esperanto.org>
10317
10318 * progmodes/compile.el (compilation-error-properties): Fix for
10319 adding messages when there are already markers for their file.
10320 (compilation-fake-loc): New function.
10321
10322 2004-04-16 Dave Love <fx@gnu.org>
10323
10324 * progmodes/python.el (python-compilation-line-number): Fix braindamage.
10325 (python-load-file): Fix python-orig-start setting.
10326
10327 * progmodes/compile.el: Doc fixes.
10328 (compilation-error-regexp-alist-alist)
10329 (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
10330 (compilation-assq): Wrap in eval-when-compile.
10331 (compilation-mode-font-lock-keywords): Don't use list*.
10332 (compilation-start): Avoid warning.
10333 (compilation-compat-error-properties)
10334 (compilation-directory-properties): Add keymap property.
10335 (compilation-parsing-end): Make it a marker for better compatibility.
10336
10337 * progmodes/python.el (python-after-info-look): Use with-no-warnings.
10338
10339 2004-04-16 Mark A. Hershberger <mah@everybody.org>
10340
10341 * xml.el: Doc fixes.
10342 (xml-get-children): Only looks at sub-tags and ignore strings.
10343
10344 * xml.el (xml-parse-tag): Avoid overwriting node-name.
10345
10346 2004-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
10347
10348 * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
10349
10350 2004-04-16 Andre Spiegel <spiegel@gnu.org>
10351
10352 * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
10353
10354 * vc.el (vc-print-log): Likewise.
10355
10356 2004-04-16 Masatake YAMATO <jet@gyve.org>
10357
10358 * simple.el (completion-setup-function): Set an initial value
10359 to `element-common-end' before entering loop. Set a value
10360 to `element-common-end' at the end of loop.
10361 The bug is reported by Juri Linkov <juri@jurta.org> in emacs-devel list.
10362 (completions-common-part): Rename from completion-de-emphasis.
10363 (completions-first-difference): Rename from completion-emphasis.
10364 Suggested by RMS.
10365
10366 2004-04-16 Juanma Barranquero <lektu@terra.es>
10367
10368 * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
10369 (bookmark-edit-annotation-mode): Add mode name.
10370
10371 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
10372
10373 * smerge-mode.el (smerge-match-conflict): Try to do something sensible
10374 for nested conflict markers.
10375 (smerge-find-conflict): Better handle errors in smerge-match-conflict.
10376
10377 2004-04-15 Nick Roberts <nick@nick.uklinux.net>
10378
10379 * progmodes/gdb-ui.el (gdb-goto-info): New function.
10380
10381 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
10382
10383 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
10384
10385 * emacs-lisp/bytecomp.el (batch-byte-compile-file):
10386 Give a backtrace if requested.
10387
10388 * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
10389
10390 * progmodes/python.el (python-mouse-2-command, python-RET-command):
10391 Remove unused functions.
10392 (python-orig-start-line, python-orig-file): Remove.
10393 (python-orig-start): New var.
10394 (python-input-filter, python-compilation-line-number)
10395 (python-send-region, python-load-file): Use it.
10396
10397 * info.el (info): Always jump to *info*.
10398
10399 * subr.el (posn-set-point): New function.
10400
10401 * mouse.el (mouse-set-point): Use it.
10402
10403 * progmodes/compile.el (compile-goto-error): Use it.
10404 (compilation-button-map): New keymap.
10405 (compilation-error-properties): Use it.
10406 (compilation-shell-minor-mode-map): Don't bind mouse-2.
10407
10408 * smerge-mode.el (smerge-popup-context-menu): Use it.
10409
10410 * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
10411 (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
10412 mouse and non-mouse case.
10413
10414 * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
10415 (diff-mouse-goto-source): Make it an alias of diff-goto-source.
10416
10417 * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
10418 Make it work for non-mouse events.
10419
10420 * pcvs-info.el (cvs-status-map): Update binding name.
10421
10422 2004-04-14 Mark A. Hershberger <mah@everybody.org>
10423
10424 * xml.el (xml-maybe-do-ns): New function to handle namespace
10425 parsing of both attribute and element names.
10426 (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
10427 (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
10428 (xml-parse-tag): Update assumed namespaces. Clean up namespace parsing.
10429 (xml-parse-attlist): Make it do its own namespace parsing.
10430
10431 2004-04-14 Dave Love <fx@gnu.org>
10432
10433 * progmodes/python.el (run-python): Fix use of \n.
10434 (python-load-file): Remove `try' from Python fragment.
10435 (python-describe-symbol): Fix message.
10436
10437 * comint.el: Doc fixes.
10438 (comint-last-input-start, comint-last-input-end)
10439 (comint-last-output-start): Give them values.
10440 (comint-arguments): Avoid warning.
10441 (comint-skip-prompt): Use line-end-position.
10442 (comint-backward-matching-input): Rename arg to agree with doc.
10443 (comint-extract-string): Use syntax-ppss.
10444 (comint-dynamic-simple-complete): Delete useless list construction.
10445 (comint-redirect-subvert-readonly): New.
10446 (comint-redirect-preoutput-filter): Use it.
10447
10448 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
10449 Correctly handle negative arguments when calling hook functions.
10450
10451 2004-04-14 Jesper Harder <harder@ifa.au.dk>
10452
10453 * info.el (info-apropos): Don't clobber Info-history-list.
10454
10455 2004-04-14 Daniel Pfeiffer <occitan@esperanto.org>
10456
10457 * progmodes/compile.el (compilation-setup):
10458 Localize overlay-arrow-position.
10459 (compilation-sentinel): Restructure code equivalently.
10460 (compilation-next-error): Find message on same line after point if
10461 not found before point.
10462 (compile-mouse-goto-error): Restore function so that compilation
10463 buffer need not be current and use compile-goto-error.
10464 (compile-goto-error): Restore function.
10465 (next-error): Set overlay-arrow-position.
10466 (compilation-forget-errors): Don't localize already local
10467 compilation-locs and remove FIXME about refontifying.
10468
10469 2004-04-14 Kim F. Storm <storm@cua.dk>
10470
10471 * startup.el (emacs-quick-startup): New defvar (set by -Q).
10472 (command-line): New option -Q. Like -q --no-site-file, but
10473 in addition it also disables menu-bar, tool-bar, scroll-bars,
10474 tool-tips, and the blinking cursor.
10475 (command-line-1): Skip startup screen if -Q.
10476 (fancy-splash-head): Use ":align-to center" prop to center splash image.
10477
10478 * emulation/cua-base.el (cua-read-only-cursor-color)
10479 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
10480
10481 2004-04-13 Dave Love <fx@gnu.org>
10482
10483 * progmodes/python.el: Doc fixes. Changes for compiler warnings.
10484 (syntax): Don't require.
10485 (python) <defgroup>: Add :version.
10486 (python-quote-syntax): Re-written.
10487 (inferior-python-mode): Move stuff here from run-python and add
10488 some more.
10489 (python-preoutput-continuation, python-preoutput-result)
10490 (python-dotty-syntax-table): New.
10491 (python-describe-symbol): Use them.
10492 (run-python): Move stuff to inferior-python-mode. Modify code
10493 loaded into Python.
10494 (python-send-region): Use python-proc, python-send-string.
10495 (python-send-string): Send newlines too. Callers changed.
10496 (python-load-file): Re-written.
10497 (python-eldoc-function): New.
10498 (info-look): Don't require.
10499 (python-after-info-look): New. A modified version of former
10500 top-level code for use with eval-after-load.
10501 (python-maybe-jython, python-guess-indent): Use widened buffer.
10502 (python-fill-paragraph): Re-written.
10503 (python-mode): Fix outline-regexp. Set outline-heading-end-regexp,
10504 eldoc-print-current-symbol-info-function. Add to eldoc-mode-hook.
10505
10506 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
10507
10508 * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
10509 Set compilation-error-regexp-alist earlier.
10510
10511 * progmodes/compile.el (compilation-minor-mode-map)
10512 (compilation-shell-minor-mode-map, compile-mouse-goto-error)
10513 (compile-goto-error): Re-merge the mouse and non-mouse commands.
10514
10515 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
10516
10517 * progmodes/compile.el (compile-goto-error): Select the buffer/window
10518 corresponding to the event.
10519
10520 2004-04-12 Joe Buehler <jbuehler@hekiman.com>
10521
10522 * loadup.el: Add cygwin to system-type list, for unexec() support.
10523
10524 2004-04-12 John Paul Wallington <jpw@gnu.org>
10525
10526 * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
10527 (ibuffer-restore-window-config-on-quit): New variable to replace
10528 `ibuffer-delete-window-on-quit'. Update all references.
10529 (ibuffer-prev-window-config): New variable.
10530 (ibuffer-quit): Restore previous window configuration instead of
10531 deleting window.
10532 (ibuffer): Save window configuration before showing Ibuffer buffer.
10533
10534 * help.el (describe-mode): Doc fix.
10535
10536 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
10537
10538 * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
10539 not to treat nil as a function.
10540
10541 * vc-arch.el (vc-arch-root): Be a bit more careful.
10542 (vc-arch-register): Save the buffer if we modified it.
10543 (vc-arch-delete-rej-if-obsolete): Save excursion.
10544 (vc-arch-find-file-hook): Use the simpler after-save-hook.
10545 (vc-arch-responsible-p, vc-arch-init-version): New functions.
10546
10547 * net/ldap.el (ldap-search): Use list*.
10548
10549 2004-04-12 Juri Linkov <juri@jurta.org>
10550
10551 * info.el (Info-follow-reference): Allow multiline reference name.
10552
10553 2004-04-11 Dave Love <fx@gnu.org>
10554
10555 * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
10556
10557 * progmodes/python.el: New file.
10558
10559 2004-04-11 Andre Spiegel <spiegel@gnu.org>
10560
10561 * vc-hooks.el (vc-arg-list): Function removed.
10562 (vc-default-workfile-unchanged-p): Use condition-case to check for
10563 backward compatibility.
10564
10565 * vc.el (vc-print-log): Use condition-case to check for backward
10566 compatibility.
10567
10568 2004-04-11 Juri Linkov <juri@jurta.org>
10569
10570 * dired.el (dired-faces): New defgroup.
10571 (dired-header, dired-mark, dired-marked, dired-flagged)
10572 (dired-warning, dired-directory, dired-symlink, dired-ignored):
10573 New faces.
10574 (dired-header-face, dired-mark-face, dired-marked-face)
10575 (dired-flagged-face, dired-warning-face, dired-directory-face)
10576 (dired-symlink-face, dired-ignored-face): New face variables.
10577 (dired-font-lock-keywords): Use them instead of font-lock faces.
10578 Split the rule for dired marks into 3 separate rules: for marks,
10579 marked file names and flagged file names.
10580
10581 * help-mode.el (help-make-xrefs): Add a final newline to the
10582 *Help* buffer.
10583
10584 2004-04-11 John Paul Wallington <jpw@gnu.org>
10585
10586 * replace.el (occur-engine): Distinguish between one and several
10587 matches in the matches per buffer heading.
10588
10589 2004-04-11 Kim F. Storm <storm@cua.dk>
10590
10591 * ido.el (ido-confirm-unique-completion): New defcustom.
10592 (ido-complete): Use it.
10593 (ido-write-file): Set it to t unconditionally.
10594
10595 2004-04-10 Miles Bader <miles@gnu.org>
10596
10597 RCS keyword removal (only non-comment changes are enumerated here):
10598
10599 * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
10600 (byte-compile-insert-header): Don't use `byte-compile-version'.
10601 * forms.el (forms-version): Variable removed.
10602 (forms-mode): Don't use `forms-version'.
10603 * recentf.el (recentf-version): Variable removed.
10604 * progmodes/delphi.el (delphi-version): Variable removed.
10605 * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
10606
10607 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
10608
10609 * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
10610
10611 2004-04-09 Jesper Harder <harder@ifa.au.dk>
10612
10613 * info.el (info-apropos): Improve menu item regexp.
10614
10615 2004-04-09 Simon Josefsson <jas@extundo.com>
10616
10617 * mail/smtpmail.el: Add comment, based on report by
10618 kdc@rcn.com (Kevin D. Clark).
10619
10620 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
10621
10622 * progmodes/compile.el (compilation-mode-font-lock-keywords):
10623 Redo one more thing that I didn't notice Daniel had undone.
10624
10625 2004-04-08 Nick Roberts <nick@nick.uklinux.net>
10626
10627 * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
10628 (gdb-goto-breakpoint, gdb-display-buffer)
10629 (gdb-display-source-buffer, gdb-view-source-function)
10630 (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
10631 (gdb-source-info, gdb-frame-handler): Don't specify a window
10632 for display.
10633 (gdb-info-breakpoints-custom): Remove superfluous update of
10634 assembler buffer.
10635 (gdb-many-windows): Make settable outside gdb.
10636
10637 2004-04-08 Glenn Morris <gmorris@ast.cam.ac.uk>
10638
10639 * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
10640 Derive from fundamental-mode rather than text-mode.
10641
10642 2004-04-08 Juri Linkov <juri@jurta.org>
10643
10644 * info.el (Info-history): Doc fix.
10645 (Info-history-list): New var.
10646 (info-xref): Change magenta4 to blue, remove bold for dark and
10647 light backgrounds, change bold to underline for non-color classes.
10648 (info-xref-visited): New face.
10649 (Info-fontify-visited-nodes): New custom.
10650 (Info-hide-note-references): Add new value `hide'. Doc fix.
10651 (Info-reference-name): New var.
10652 (Info-selection-hook): New custom.
10653 (Info-edit-mode-hook): New var.
10654 (Info-find-file): New fun.
10655 (Info-find-node): Move part of code to Info-find-file.
10656 (Info-find-node-2): Add anchors to Info-history-list. Move point
10657 to the place with the reference name if name is defined.
10658 (Info-select-node): Add current node to Info-history-list.
10659 (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
10660 (Info-search-whitespace-regexp): New custom.
10661 (Info-search-case-fold): New var.
10662 (Info-search): Add "case-sensitively" to the prompt.
10663 Use Info-search-whitespace-regexp. Set Info-search-case-fold.
10664 (Info-search-case-sensitively, Info-search-next): New fun.
10665 (Info-up): Move point to the menu item of the current node.
10666 (Info-history): New fun. Add *info-history* to
10667 same-window-buffer-names.
10668 (Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
10669 (Info-insert-toc): New fun.
10670 (Info-build-toc): New fun.
10671 (Info-follow-reference): Add new arg `fork'. Doc fix.
10672 Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
10673 with the same name prefer the reference closest to point.
10674 (Info-next-reference): Replace * by + in the *Note regexp.
10675 Add regexp for http:// and ftp://. Skip the *Note prefix.
10676 (Info-prev-reference): Replace * by + in the *Note regexp.
10677 Add regexp for http:// and ftp://. Skip the *Note prefix.
10678 (Info-follow-nearest-node): Add new arg `fork'.
10679 (Info-try-follow-nearest-node): Add new arg `fork'.
10680 Call browse-url for http:// and ftp:// references.
10681 Set Info-reference-name for index entries.
10682 (Info-mode-menu): Add menu items for Info-search-case-sensitively,
10683 Info-search-next, Info-history, Info-toc, clone-buffer.
10684 (Info-menu-update): Replace * by + in the *Note regexp.
10685 (Info-mode): Add documentation for Info-history, Info-toc,
10686 Info-search-case-sensitively, Info-search-next, clone-buffer.
10687 (Info-fontify-menu-headers): Remove fun. Move code to
10688 Info-fontify-node.
10689 (Info-fontify-node): Add docstring. Add local vars
10690 fontify-visited-p and not-fontified-p. If not-fontified-p is t
10691 then fontify header line, titles, menu headers, http and ftp
10692 references, refill paragraphs. If not-fontified-p is t or
10693 fontify-visited-p is t then fontify cross references, menu items.
10694 Fontify menu headers. Fontify http and ftp references.
10695 Change regexp for cross references to require whitespace after *Note,
10696 add matching groups for file and node names. Remove hack for quote.
10697 Use display property for Info-hide-note-references=t. Use fifth
10698 or fourth match for help-echo. Display visited nodes in a
10699 different face. Unhide file names of external references.
10700 Unhide newlines. Display visited menu items in a different face.
10701
10702 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
10703
10704 * progmodes/compile.el: Require CL.
10705 (compilation-mode-font-lock-keywords): Re-install the "line as
10706 function" patch.
10707
10708 * help-fns.el (help-C-source-directory): New var.
10709 (help-subr-name, help-C-file-name, help-find-C-source): New funs.
10710 (describe-function-1, describe-variable): Use them.
10711
10712 * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
10713 to C source files specially.
10714
10715 2004-04-07 Jan Nieuwenhuizen <janneke@gnu.org>
10716
10717 * info.el (Info-hide-cookies-node): New function.
10718 (Info-select-node): Use it.
10719 (Info-display-images-node): Remove message with image file name.
10720
10721 2004-04-07 Daniel Pfeiffer <occitan@esperanto.org>
10722
10723 * progmodes/compile.el (compilation-warning-face)
10724 (compilation-info-face, compilation-skip-threshold)
10725 (compilation-skip-visited, compilation-context-lines):
10726 Declare :version when added to Emacs.
10727 (compilation-error-regexp-alist-alist): Extend caml and irix.
10728 (compilation-setup): Fix if font-locked w/o font-lock-defaults.
10729 (compilation-mode-font-lock-keywords): Temporarily undo line as
10730 function patch, which wasn't ready.
10731
10732 2004-04-07 Kenichi Handa <handa@m17n.org>
10733
10734 * international/latin1-disp.el (latin1-display-setup): Check each
10735 character is displayable or not instead of calling
10736 latin1-display-check-font.
10737
10738 2004-04-06 Kenichi Handa <handa@m17n.org>
10739
10740 * language/ethio-util.el (ethio-sera-being-called-by-w3):
10741 New variable.
10742 (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
10743 instead of sera-being-called-by-w3.
10744 (ethio-fidel-to-sera-buffer): Likewise.
10745 (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
10746 instead of sera-being-called-by-w3.
10747 (ethio-write-file): Likewise.
10748
10749 2004-04-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10750
10751 * printing.el: Doc fix.
10752
10753 2004-04-05 Nick Roberts <nick@nick.uklinux.net>
10754
10755 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
10756 (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
10757 (gdb-setup-windows): Only use separate IO buffer if required.
10758
10759 2004-04-06 Kim F. Storm <storm@cua.dk>
10760
10761 * term.el (term-is-xemacs): Remove.
10762 (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
10763 (term-window-width): New function.
10764 (term-mode, term-check-size): Use it.
10765 (term-mode): Disable overflow-newline-into-fringe in term buffer.
10766
10767 2004-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
10768
10769 * cus-edit.el (custom-add-parent-links): Change unbound variable
10770 `symbol' to `name'.
10771
10772 2004-04-05 Jesper Harder <harder@ifa.au.dk>
10773 * info.el (info-apropos): New function.
10774 (Info-mode-menu): Add it.
10775 (Info-find-node, Info-find-node-2): Grok apropos virtual file.
10776
10777 * help-mode.el (help-make-xrefs): Recognize aliased variable with
10778 inherited docstring.
10779
10780 * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
10781
10782 2004-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
10783
10784 * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
10785
10786 * progmodes/compile.el (font-lock): Don't require any more.
10787 (compilation-error-properties, compilation-start, compilation-sentinel)
10788 (compilation-filter, next-error): Use with-current-buffer.
10789 (compilation-skip-to-next-location, compilation-skip-threshold)
10790 (compilation-skip-visited): Move to silence the byte-compiler.
10791 (compilation-setup): Simplify.
10792 (compilation-next-error): Use line-(beginning|end)-position.
10793 Make sure `pt' is non-nil before using compilation-loop.
10794 (compile-goto-error): Add optional event arg. Use it.
10795 (compile-mouse-goto-error): Make it an alias of compile-goto-error.
10796 (compilation-minor-mode-map, compilation-shell-minor-mode-map):
10797 Update the binding for mouse-2.
10798 (first-error): Set compilation-current-error to nil rather than bob.
10799 (compilation-parsing-end, compilation-parse-errors-function)
10800 (compilation-error-list, compilation-old-error-list):
10801 "New" compatibility variables.
10802 (compile-buffer-substring, compilation-compat-error-properties)
10803 (compilation-compat-parse-errors, compilation-forget-errors):
10804 New compatibility functions.
10805 (compilation-mode-font-lock-keywords): Use them.
10806
10807 2004-04-04 Luc Teirlinck <teirllm@auburn.edu>
10808
10809 * autorevert.el (auto-revert-handler): If point (or a window
10810 point) is at the end of the buffer, keep it there after
10811 reverting. This allows to tail a file.
10812 Mention this in the `Commentary'.
10813
10814 * format.el (format-write-file): Add optional argument CONFIRM
10815 and make it behave like the analogous argument to `write-file'.
10816
10817 2004-04-04 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10818
10819 * progmodes/ebnf2ps.el: Doc fix.
10820 (ebnf-version): New version number (4.2).
10821 (ebnf-syntax): Customization and docstring fix.
10822 (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
10823 Put autoloaded funs before first use.
10824 (ebnf-style-database): Add dtd entry.
10825 (ebnf-syntax-alist): Add dtd initialization.
10826 (ebnf-token-sequence): New fun.
10827 (ebnf-comment-table): Add new comment action character.
10828 (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
10829
10830 * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
10831 Type Definition for XML).
10832
10833 * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
10834 * progmodes/ebnf-bnf.el (ebnf-sequence):
10835 * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
10836 * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
10837 * progmodes/ebnf-yac.el (ebnf-yac-sequence):
10838 Code simplification: call ebnf-token-sequence.
10839
10840 2004-04-04 Eli Zaretskii <eliz@gnu.org>
10841
10842 * calendar/timeclock.el (timeclock-relative)
10843 (timeclock-get-project-function, timeclock-get-workday-function)
10844 (timeclock-query-out, timeclock-when-to-leave)
10845 (timeclock-when-to-leave-string, timeclock-log-data)
10846 (timeclock-generate-report, timeclock-in): Doc fixes.
10847
10848 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
10849
10850 * url/: New dir. Import the URL package from its repository.
10851
10852 2004-04-03 Andreas Schwab <schwab@suse.de>
10853
10854 * diff-mode.el (diff-mode): Fix missing quote.
10855
10856 2004-04-03 Juri Linkov <juri@jurta.org>
10857
10858 * descr-text.el (describe-property-list): Add `font-lock-face'.
10859
10860 * dired.el (dired-font-lock-keywords): Fix permission regexps.
10861
10862 2004-04-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10863
10864 * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
10865 Use utf-16le on little endian machines and utf-16be otherwise.
10866
10867 2004-04-02 David Kastrup <dak@gnu.org>
10868
10869 * net/browse-url.el (browse-url-generic): Use call-process
10870 instead of start-process to allow browsers that fork and detach.
10871
10872 2004-04-01 Daniel Pfeiffer <occitan@esperanto.org>
10873
10874 * compile.el (compilation-current-error): New var.
10875 (compilation-setup, compile-mouse-goto-error)
10876 (compile-goto-error, next-error): Use it.
10877 (compilation-skip-to-next-location): Default to t, which gives
10878 contiguous skipping like old compile (where this was redundant).
10879 (compilation-next-error): Prevent previous-* commands from moving
10880 back to message at or just before point.
10881
10882 2004-04-01 Nick Roberts <nick@nick.uklinux.net>
10883
10884 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
10885 (gdb-source-info): Don't display source at startup, if required.
10886 (gdb-show-main): New option.
10887 (gdba): Update documentation.
10888 (gdb-source): Cover case of auto-display output.
10889
10890 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
10891
10892 * autorevert.el: Delete obsolete autoload's and defvar's.
10893 (auto-revert-check-vc-info): New user option.
10894 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
10895 (auto-revert-handler-vc): Delete.
10896 (auto-revert-handler): Treat return value `fast' of
10897 buffer-stale-function specially. Check `auto-revert-check-vc-info'.
10898
10899 * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
10900 return `fast'.
10901
10902 * files.el (buffer-stale-function): Doc change.
10903
10904 2004-03-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10905
10906 * printing.el: New tip on Tips section.
10907 (pr-version): New version number (6.7.4).
10908 (pr-shell-file-name): Initialization fix.
10909
10910 2004-03-31 Juri Linkov <juri@jurta.org>
10911
10912 * dired.el: Add autoload for `dired-do-touch'.
10913 (dired-touch-program): New var.
10914 (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
10915 (dired-no-confirm): Add `touch' to docstring.
10916
10917 * dired-aux.el (dired-do-touch): New fun.
10918 (dired-do-chxxx): Add argument -t for touch operation.
10919
10920 * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
10921 `dired-move-to-filename-regexp'.
10922
10923 2004-03-31 H\e,Ae\e(Bkan Granath <hakan.granath@kau.se> (tiny change)
10924
10925 * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
10926
10927 2004-03-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10928
10929 * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
10930 and only if the buffer was modified.
10931
10932 2004-03-30 Kenichi Handa <handa@m17n.org>
10933
10934 * international/characters.el: Delete pairs for U+2308..U+230B.
10935
10936 2004-03-29 Nick Roberts <nick@nick.uklinux.net>
10937
10938 * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
10939 to detect the beginning of a level 2 or 3 annotation.
10940
10941 2004-03-29 Kenichi Handa <handa@m17n.org>
10942
10943 * international/ucs-tables.el (ucs-insert): Fix the error message.
10944
10945 2004-03-29 Kenichi Handa <handa@m17n.org>
10946
10947 * international/mule-util.el (char-displayable-p): Fix generation
10948 of XLFD file name.
10949
10950 * Makefile.in (setwins, setwins_almost): Change directory to $wd
10951 before finding directories by `find'.
10952
10953 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
10954
10955 * subr.el (interactive-form): Delete. Now implemented in C.
10956
10957 * pcvs.el (cvs-parse-process): Workaround for Darwin.
10958
10959 * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
10960 (vc-diff-label): New fun.
10961 (vc-diff-internal): Use it.
10962
10963 * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
10964
10965 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10966
10967 * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
10968
10969 * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
10970 specify XML (EBNFX).
10971
10972 * progmodes/ebnf2ps.el: Doc fix.
10973 (ebnf-version): New version number (4.1).
10974 (ebnf-syntax): Adjust customization.
10975 (ebnf-style-database): Add ebnfx entry.
10976 (ebnf-syntax-alist): Add ebnfx initialization.
10977 (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
10978
10979 * printing.el: Doc fix.
10980 (pr-version): New version number (6.7.3).
10981 (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
10982 returns nil for mouse position. Reported by Drew Adams
10983 <drew.adams@oracle.com>.
10984 (pr-update-menus): Modify interactive declaration. Reported by Drew
10985 Adams <drew.adams@oracle.com>.
10986
10987 2004-03-28 Nick Roberts <nick@nick.uklinux.net>
10988
10989 * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
10990 (gud-gdba-marker-filter): Log the process input and output, if
10991 required. From Stefan Monnier.
10992 (gdb-debug-log, gdb-enable-debug-log): New variables.
10993 (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
10994
10995 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
10996
10997 * vc-hooks.el (vc-file-not-found-hook): Fix typo.
10998 From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
10999
11000 2004-03-27 Luc Teirlinck <teirllm@auburn.edu>
11001
11002 * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
11003 Call vc-find-file-hook here instead of in auto-revert-buffers.
11004 (auto-revert-buffers): Delete call to vc-find-file-hook.
11005 (auto-revert-verbose, global-auto-revert-non-file-buffers)
11006 (global-auto-revert-mode, auto-revert-set-timer)
11007 (auto-revert-handler, auto-revert-buffers): Doc fixes.
11008
11009 2004-03-27 Francis J. Wright <F.J.Wright@qmul.ac.uk>
11010
11011 * woman.el (woman-change-fonts): Rename local variable
11012 woman-font-alist to font-alist to avoid a compiler warning.
11013
11014 2004-03-27 Dave Love <fx@gnu.org>
11015
11016 * emacs-lisp/rx.el (rx): Doc fix.
11017 Fix copyright years.
11018
11019 * strokes.el (strokes-global-set-stroke-string): New function.
11020 (strokes-list-strokes): Cope with strings, not just commands.
11021 Set foreground colour of image.
11022 (strokes-global-set-stroke): Doc fix.
11023
11024 2004-03-26 Luc Teirlinck <teirllm@auburn.edu>
11025
11026 * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
11027 Auto Revert mode.
11028 (Buffer-menu-files-only): New variable.
11029 (Buffer-menu-toggle-files-only): New function.
11030 (Buffer-menu-mode-map): Bind it to `T'.
11031 (Buffer-menu-mode): Mention `T' in docstring.
11032 Set buffer-stale-function.
11033 (list-buffers-noselect): Mark buffer non-modified and set
11034 Buffer-menu-files-only.
11035
11036 * dired.el (buffer-stale-function): Remove no longer needed defvar.
11037
11038 * autorevert.el (auto-revert-handler): Print revert message
11039 before, rather than after, reverting.
11040 (buffer-stale-function): Move to files.el.
11041
11042 * files.el (buffer-stale-function): Move here from autorevert.el.
11043
11044 2004-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11045
11046 * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
11047
11048 * calc/calc.el (calc-mode-map): Use mapc.
11049
11050 * apropos.el (apropos-mode): Don't autoload.
11051 (apropos-symbols-internal): New fun. Extracted from `apropos'.
11052 (apropos): Use it.
11053 (apropos-print): Add optional `text' argument.
11054 (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
11055 Don't assume point-min == 1.
11056
11057 * bs.el (bs-buffer-list): Use buffer-local-value.
11058 (bs--set-toggle-to-show): Use with-current-buffer.
11059
11060 * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
11061 New funs.
11062 (list-buffers-noselect): Use them. Adjust :align-to to new style.
11063
11064 * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
11065
11066 * dabbrev.el (dabbrev-expand): Fix regexp construction.
11067 (dabbrev--find-expansion): Use pop.
11068 (dabbrev--search): Use match-string-no-properties.
11069
11070 * dired.el (dired-mode): Use run-mode-hooks.
11071 (dired-move-to-end-of-filename): Use match-string.
11072
11073 * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
11074 is bound before using it.
11075 (ediff-verbose-p): Make it into a var since it's not constant.
11076
11077 * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
11078
11079 * faces.el (read-face-font): Don't cons up unnecessarily.
11080 (header-line, tool-bar): Share common parts.
11081
11082 * files.el (file-relative-name): Use compare-strings.
11083
11084 * finder.el (finder-mode): Follow coding convention.
11085
11086 * subr.el (read-number): New function.
11087
11088 * ses.el (ses-read-number): Move to subr.el.
11089 (ses-set-header-row): Use read-number.
11090
11091 2004-03-26 Andre Spiegel <spiegel@gnu.org>
11092
11093 * vc-hooks.el (vc-arg-list): New function, which handles both
11094 compiled and uncompiled code.
11095 (vc-default-workfile-unchanged-p): Use it.
11096
11097 * vc.el (vc-print-log): Undo prev change, use new function
11098 vc-arg-list from vc-hooks.el.
11099
11100 2004-03-26 Masatake YAMATO <jet@gyve.org>
11101
11102 * simple.el (completion-setup-function): Emphasize the
11103 first uncommon characters in the completions; and de-emphasize
11104 the common prefix substrings.
11105 (completion-emphasis): New face.
11106 (completion-de-emphasis): New face.
11107
11108 2004-03-25 Juanma Barranquero <lektu@terra.es>
11109
11110 * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
11111 Comment out (it's unused and unfinished code).
11112
11113 2004-03-25 Sam Steingold <sds@gnu.org>
11114
11115 * vc.el (vc-print-log): Fix a bug in the last patch:
11116 backend-function may be a byte-compiled object, not a lambda.
11117
11118 2004-03-25 Juri Linkov <juri@jurta.org>
11119
11120 * descr-text.el (describe-property-list): Add a button
11121 for `face' property that calls `describe-face'.
11122 Suggested by luis fernandes <elf@ee.ryerson.ca>
11123
11124 * international/mule.el (keyboard-coding-system):
11125 * kmacro.el (kmacro-call-macro): Fix docstring.
11126
11127 * dired.el: Fix comments.
11128
11129 * textmodes/fill.el (fill): Fix Info link.
11130
11131 * font-lock.el (fast-lock, lazy-lock):
11132 * jit-lock.el (jit-lock): Remove links to removed Support Modes
11133 Info node.
11134
11135 * eshell/eshell.el (eshell): Fix broken info-link.
11136
11137 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
11138 * eshell/em-banner.el (eshell-banner):
11139 * eshell/em-smart.el (eshell-smart):
11140 * eshell/esh-cmd.el (eshell-cmd):
11141 Comment out broken info-links to incomplete Info manual.
11142
11143 * info-xref.el: Fix commentary.
11144
11145 2004-03-25 Kevin Ryde <user42@zip.com.au>
11146
11147 * info-xref.el (info-xref-check-buffer): Report empty filename parts.
11148 Remove spurious node duplicate suppression, doesn't work, not wanted.
11149 (info-xref-output): Take format style args, add "sit-for 0" to let
11150 user see the results as they progress.
11151 (info-xref-check-all-custom): New function.
11152
11153 2004-03-25 Nick Roberts <nick@nick.uklinux.net>
11154
11155 * gdb-ui.el: Moved to progmodes.
11156
11157 2004-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
11158
11159 * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
11160
11161 2004-03-24 Glenn Morris <gmorris@ast.cam.ac.uk>
11162
11163 * calendar/appt.el (appt-check): Remove superfluous progn.
11164 When finished with diary buffer: if it was not being displayed
11165 before, kill it; otherwise restore its original state.
11166 Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
11167
11168 * calendar/calendar.el (calendar-set-mode-line): Use total
11169 available mode-line width, rather than frame-width.
11170
11171 * calendar/diary-lib.el (fancy-diary-display): Set mode-line
11172 after mode change so effect not lost.
11173
11174 2004-03-23 Dave Love <fx@gnu.org>
11175
11176 * dired.el (dired) <defgroup>: Add link to manual.
11177 (dired-font-lock-keywords): Add highlighting on unusual permissions.
11178 (dired-revert): Use dolist.
11179 (dired-mode-map): Add U binding.
11180 (dired-mode): Add font-lock-beginning-of-syntax-function.
11181 (dired-garbage-files-regexp): Make it a defcustom.
11182
11183 2004-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
11184
11185 * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
11186 is equivalent to nil.
11187 (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
11188 (vc-arch-mode-line-string): Accept `added' state.
11189 (vc-arch-state): Use inode-sigs if available.
11190 (vc-arch-add-tagline): Rename from vc-arch-add-tag.
11191 Copy&delete existing id file if any. Fallback if uuidgen is absent.
11192 (vc-arch-tagline-re): New var.
11193 (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
11194 New functions.
11195 (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
11196 (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
11197
11198 * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
11199 (vc-file-not-found-hook): Use it.
11200
11201 * diff-mode.el (diff-default-read-only): Change default.
11202 (diff-mode-hook): Make it a defcustom. Add some options.
11203 (diff-mode-map): Bind diff-refine-hook.
11204 (diff-yank-handler): New var.
11205 (diff-yank-function): New fun.
11206 (diff-font-lock-keywords): Use them.
11207 (diff-end-of-file): Handle case where file-header looks like diff text.
11208 (diff-hunk-kill): Adjust to "new" hunk-next behavior.
11209 (diff-file-kill): Delete a subsequent empty line, if applicable.
11210 (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
11211 (diff-find-file-name): Use it.
11212 (diff-tell-file-name): New command.
11213 (diff-mode): Be careful with view-mode.
11214 (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
11215 New functions, for use in diff-mode-hook.
11216 (diff-find-source-location): Catch "regex too large" errors.
11217 (diff-apply-hunk, diff-test-hunk): Go to old or new file.
11218 (diff-refine-hunk): New command.
11219
11220 * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
11221 (smerge-context-menu-map): Remove unused var.
11222 (smerge-keep-all): Preserve markers.
11223 (smerge-keep-n): New fun.
11224 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
11225 (smerge-keep-current, smerge-ediff): Use it.
11226 (smerge-kill-current): Use it. Make it work on some 3-part conflicts.
11227 (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
11228 (smerge-resolve): Resolve trivial 3-part conflicts.
11229
11230 2004-03-23 Juri Linkov <juri@jurta.org>
11231
11232 * man.el (Man-width): New var.
11233 (Man-getpage-in-background): Use it.
11234 (Man-support-local-filenames): New var and fun.
11235 (Man-build-man-command): Don't add a second %s.
11236 (Man-fontify-manpage): Clean up message.
11237 (Man-mode): Set outline-regexp, outline-level,
11238 imenu-generic-expression.
11239
11240 * woman.el (woman-fill-frame): Doc fix.
11241 (woman-decode-region): Use window-width instead of frame-width.
11242
11243 * abbrevlist.el (list-one-abbrev-table):
11244 * descr-text.el (describe-char):
11245 * international/mule-diag.el (describe-current-coding-system):
11246 * international/quail.el (quail-insert-decode-map):
11247 Use window-width instead of frame-width.
11248
11249 * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
11250 (jka-compr-mode-alist-additions): Add tbz.
11251 (jka-compr-write-region, jka-compr-insert-file-contents):
11252 Add message for undefined compress-program.
11253 (jka-compr-write-region): Remove redundant var bindings.
11254
11255 * dired-x.el (dired-guess-shell-alist-default): Add choices for
11256 extracting files into subdirectory. Add tbz and dz. Fix regexps.
11257 Add extensions .[0-9] for man and nroff, and .pod for perldoc.
11258 (dired-man): Use dired-guess-shell-command.
11259 (dired-guess-shell-case-fold-search): Change defvar to defcustom.
11260 Change default nil to t.
11261
11262 * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
11263 (dired-compare-directories): Add default value for empty input.
11264
11265 * help-at-pt.el: Move suggestions for key bindings to Commentary.
11266
11267 * time.el (display-time-string-forms): Fix help-echo date format.
11268
11269 2004-03-22 Luc Teirlinck <teirllm@auburn.edu>
11270
11271 * autorevert.el (global-auto-revert-non-file-buffers): Expand docstring.
11272 (buffer-stale-function): New variable.
11273 (auto-revert-list-diff, auto-revert-dired-file-list)
11274 (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
11275 (auto-revert-handler): Take over some functionality of deleted
11276 functions.
11277 (auto-revert-buffers): Delete call to auto-revert-buffer-p.
11278
11279 * dired.el (dired-directory-changed-p): New fun, extracted from
11280 dired-internal-noselect.
11281 (dired-buffer-stale-p): New fun.
11282 (dired-internal-noselect): Use dired-directory-changed-p.
11283 Eliminate revert messages.
11284 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
11285
11286 2004-03-23 Kenichi Handa <handa@m17n.org>
11287
11288 * international/characters.el: Setup syntaxes for more parentheses
11289 Unicode characters.
11290
11291 * international/mule-cmds.el (select-safe-coding-system):
11292 Merge coding-system and auto-cs before comparing them.
11293
11294 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
11295
11296 * emacs-lisp/pp.el (pp-eval-expression): Simplify.
11297
11298 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
11299 normal-auto-fill-function and comment-indent-function.
11300 The default values now work just as well.
11301 Don't set font-lock-beginning-of-syntax-function since we already set
11302 syntax-begin-function.
11303 (lisp-outline-level): Put ;;;###autoload at same level as (.
11304 (prin1-char): Quote special chars.
11305
11306 * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
11307 than with-no-warnings.
11308
11309 * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
11310 if the source location can't be found.
11311 (edebug-compute-previous-result): Use prin1-char.
11312
11313 * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
11314 (debug-ignored-errors): Add an entry.
11315
11316 * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
11317 (byte-compile-file): Output warning when deleting a file.
11318
11319 * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
11320 (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
11321
11322 * emacs-lisp/byte-opt.el (byte-compile-log-lap)
11323 (byte-compile-inline-expand): Use backquote.
11324 (byte-optimize-pure-func): Rename from byte-optimize-concat.
11325 (symbol-name, regexp-opt, regexp-quote): Mark as pure.
11326
11327 * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
11328
11329 * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
11330
11331 2004-03-22 Juri Linkov <juri@jurta.org>
11332
11333 * finder.el (finder-known-keywords): Fix data, tex, unix.
11334
11335 * play/landmark.el: Fix keywords.
11336
11337 * language/ethio-util.el (ethio-find-file): Doc fix.
11338
11339 * emacs-lisp/warnings.el: Doc fix.
11340
11341 * textmodes/ispell.el (ispell-help): Doc fix.
11342
11343 2004-03-21 Luc Teirlinck <teirllm@auburn.edu>
11344
11345 * format.el (format-insert-file): Always return a list of two
11346 elements, like insert-file-contents does.
11347
11348 2004-03-21 Andre Spiegel <spiegel@gnu.org>
11349
11350 * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
11351 and vc-BACKEND-diff.
11352 (vc-print-log): If the print-log implementation supports it, use
11353 the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
11354 (vc-version-diff, vc-diff-internal): Doc fixes.
11355
11356 * vc-hooks.el (vc-default-workfile-unchanged-p): If the
11357 implementation supports it, let diff output go to *vc*,
11358 not *vc-diff*, since this is an internal call.
11359
11360 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
11361
11362 * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
11363
11364 * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
11365
11366 2004-03-21 Dave Love <fx@gnu.org>
11367
11368 * progmodes/cfengine.el (cfengine-mode):
11369 Set parse-sexp-ignore-comments.
11370
11371 * emacs-lisp/rx.el (rx): Work at compile time, not run time.
11372
11373 2004-03-21 Juanma Barranquero <lektu@terra.es>
11374
11375 * allout.el (allout-mode): Fix docstring.
11376
11377 2004-03-20 Luc Teirlinck <teirllm@auburn.edu>
11378
11379 * files.el (insert-directory): Fix bug if SWITCHES is a list.
11380
11381 * autorevert.el (auto-revert-interval): Make new value take
11382 effect immediately when set through Custom.
11383 (auto-revert-set-timer): Add interactive declaration.
11384
11385 2004-03-19 David Ponce <david@dponce.com>
11386
11387 * ruler-mode.el (ruler-mode-header-line-format-old):
11388 Don't `make-variable-buffer-local'.
11389 (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
11390 (ruler-mode-header-line-format): Simply funcall the above.
11391 (ruler-mode): Use `make-local-variable' and `kill-local-variable'
11392 to save/restore a previous header line format.
11393 (ruler-mode-space): Don't depend on a numeric WIDTH value.
11394 (ruler-mode-ruler): Use symbolic display elements for scrollbar,
11395 fringes and margins width.
11396 (ruler-mode-ruler-function): Default to ruler-mode-ruler.
11397
11398 2004-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
11399
11400 * log-edit.el (log-edit-font-lock-keywords): Typo.
11401
11402 * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
11403 (tex-send-tex-command): Rather than here.
11404 (tex-compilation-parse-errors): Simplify.
11405
11406 * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
11407
11408 * time.el (display-time-string-forms): Add help-echo with date on time.
11409
11410 * composite.el (compose-region): Use restore-buffer-modified-p.
11411
11412 * disp-table.el (standard-display-8bit): Simplify.
11413
11414 * server.el (server-process-filter): Delete temp frame.
11415
11416 * add-log.el (add-change-log-entry): Simplify.
11417
11418 2004-03-19 Kim F. Storm <storm@cua.dk>
11419
11420 * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
11421 (hexl-follow-line): Don't require 'fringe.
11422
11423 * progmodes/compile.el (compilation-start): Always set
11424 compilation-last-buffer and return it.
11425
11426 2004-03-17 Luc Teirlinck <teirllm@auburn.edu>
11427
11428 * simple.el (clone-buffer): Doc fix.
11429
11430 2004-03-18 Juanma Barranquero <lektu@terra.es>
11431
11432 * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
11433
11434 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
11435
11436 * log-edit.el (log-edit-font-lock-keywords): New var.
11437 (log-edit-mode): Use it.
11438
11439 2004-03-17 Nick Roberts <nick@nick.uklinux.net>
11440
11441 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
11442 properly for watching in speedbar.
11443
11444 2004-03-17 Masatake YAMATO <jet@gyve.org>
11445
11446 * smerge-mode.el (smerge-popup-context-menu):
11447 Put `unwind-protect' around `overlay-put' and `popup-menu'.
11448
11449 2004-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
11450
11451 * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
11452 (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
11453 Take sealed revisions into account.
11454 (vc-arch-checkin): Extract a summary line from the message.
11455
11456 2004-03-16 Masatake YAMATO <jet@gyve.org>
11457
11458 * register.el (register): Provide `register' feature.
11459
11460 2004-03-15 Masatake YAMATO <jet@gyve.org>
11461
11462 Added context menu support in smerge mode.
11463 Most of the part is written by Stefan Monnier.
11464
11465 * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
11466 New keymap and menu.
11467 (smerge-text-properties): New function.
11468 (smerge-remove-props): New function.
11469 (smerge-popup-context-menu): New function.
11470 (smerge-resolve): Call `smerge-remove-props'.
11471 (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
11472 (smerge-keep-current): Ditto.
11473 (smerge-kill-current): New function.
11474 (smerge-match-conflict): Put text properties.
11475 Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
11476
11477 2004-03-15 David Ponce <david@dponce.com>
11478
11479 * ruler-mode.el: (ruler-mode-left-fringe-cols)
11480 (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
11481 (ruler-mode-right-scroll-bar-cols): Remove.
11482 (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
11483 (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
11484 Use fringe-columns and scroll-bar-columns.
11485
11486 2004-03-15 Masatake YAMATO <jet@gyve.org>
11487
11488 * hl-line.el (hl-line-range-function): New variable.
11489 (hl-line-move): New function.
11490 (global-hl-line-highlight): Use `hl-line-move'.
11491 (hl-line-highlight): Ditto.
11492
11493 * scroll-bar.el (scroll-bar-columns):
11494 * fringe.el (fringe-columns): New function derived from ruler-mode.el.
11495
11496 * ruler-mode.el (top-level): Require scroll-bar and fringe.
11497 (ruler-mode-left-fringe-cols)
11498 (ruler-mode-right-fringe-cols): Use `fringe-columns'.
11499 (ruler-mode-right-scroll-bar-cols)
11500 (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
11501 (ruler-mode-ruler-function): New variable.
11502 (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
11503 if the value for `ruler-mode-ruler-function'is given.
11504
11505 * hexl.el (hexl-mode-hook): Make the hook customizable.
11506 (hexl-address-area, hexl-ascii-area): New customize variables.
11507 (hexlify-buffer): Put font-lock-faces on the address area and
11508 the ascii area.
11509 (hexl-activate-ruler): New function.
11510 (hexl-follow-line): New function.
11511 (hexl-highlight-line-range): New function.
11512 (hexl-mode-ruler): New function.
11513
11514 2004-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
11515
11516 * vc-hooks.el (vc-handled-backends): Add Arch. Move MCVS down.
11517 (vc-default-find-file-hook): New fun.
11518 (vc-find-file-hook): Call new find-file-hook operation.
11519
11520 * vc-arch.el: New file.
11521
11522 2004-03-12 Jesper Harder <harder@ifa.au.dk>
11523
11524 * info-look.el (info-lookup): Reuse an existing Info window.
11525
11526 2004-03-12 Francis J. Wright <F.J.Wright@qmul.ac.uk>
11527
11528 * woman.el (woman-preserve-ascii): Default value changed to t and
11529 doc string revised.
11530
11531 2004-03-12 Richard M. Stallman <rms@gnu.org>
11532
11533 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
11534 Fix minor bug.
11535
11536 * replace.el (occur-engine): Change message for count of matches.
11537
11538 * emacs-lisp/bytecomp.el (byte-compile-get-constant):
11539 For strings, do compare text properties.
11540
11541 2004-03-11 Daniel Pfeiffer <occitan@esperanto.org>
11542
11543 * progmodes/compile.el (compile-auto-highlight)
11544 (compilation-error-list, compilation-old-error-list)
11545 (compilation-parse-errors-function, compilation-parsing-end)
11546 (compilation-error-message, compilation-directory-stack)
11547 (compilation-enter-directory-regexp-alist)
11548 (compilation-leave-directory-regexp-alist)
11549 (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
11550 (compilation-current-file, compilation-regexps): Remove vars.
11551
11552 (compile-error-at-point, compilation-error-filedata)
11553 (compilation-error-filedata-file-name, compile-reinitialize-errors)
11554 (compilation-next-error-locus, compilation-forget-errors)
11555 (count-regexp-groupings, compilation-parse-errors)
11556 (compile-collect-regexps, compile-buffer-substring): Remove funs.
11557
11558 (compile-internal): Make obsolete.
11559
11560 (compilation-first-column, compilation-error)
11561 (compilation-directory-matcher, compilation-page-delimiter)
11562 (compilation-mode-font-lock-keywords, compilation-debug)
11563 (compilation-error-face, compilation-warning-face)
11564 (compilation-info-face, compilation-line-face)
11565 (compilation-column-face, compilation-enter-directory-face)
11566 (compilation-leave-directory-face, compilation-skip-threshold)
11567 (compilation-skip-visited, compilation-context-lines): New vars.
11568
11569 (compilation-warning-face, compilation-info-face)
11570 (compilation-message-face): New faces.
11571
11572 (compilation-error-regexp-alist-alist): New constant.
11573
11574 (compilation-face, compilation-directory-properties)
11575 (compilation-assq, compilation-error-properties, compilation-start)
11576 (define-compilation-mode, compilation-loop)
11577 (compilation-set-window): New functions.
11578
11579 (compile): Additional argument for interactive compiles like TeX.
11580
11581 * progmodes/grep.el (kill-grep): Move here from compile.el
11582 (grep-error, grep-hit-face, grep-error-face)
11583 (grep-mode-font-lock-keywords): New variables.
11584 (grep-regexp-alist): Simplify regexp and add `binary' case.
11585 (grep-mode): New mode.
11586 (grep-process-setup): Simplify.
11587
11588 2004-03-11 Jason Rumney <jasonr@gnu.org>
11589
11590 * net/ldap.el (ldap-search-internal): Handle file URLs with drive
11591 letters on DOS/Windows.
11592
11593 2004-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
11594
11595 * server.el (server-name): New var.
11596 (server-socket-dir): New var to replace server-socket-name.
11597 (server-start): Use them.
11598
11599 2004-03-11 Simon Josefsson <jas@extundo.com>
11600
11601 * mail/smtpmail.el (smtpmail-read-response): Abort if process has
11602 died to avoid infloop. Reported by Jonathan Glauner
11603 <jglauner@sbum.org>.
11604
11605 2004-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
11606
11607 * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
11608 (smerge-mode-menu): Use it to deactivate menu entries.
11609 (smerge-keep-current): New fun.
11610 (smerge-keep-current): Use it.
11611
11612 2004-03-10 John Paul Wallington <jpw@gnu.org>
11613
11614 * foldout.el (foldout-fold-list, foldout-modeline-string):
11615 Declare them as variables, not constants.
11616
11617 2004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11618
11619 * ps-print.el: Modification to print *Messages* buffer.
11620 (ps-print-version): New version 6.6.4.
11621 (ps-message-log-max): New fun.
11622 (ps-spool-without-faces, ps-spool-with-faces)
11623 (ps-count-lines-preprint): Code fix.
11624
11625 * printing.el: New tips in Tips section.
11626
11627 2004-03-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11628
11629 * delim-col.el: Doc fix.
11630
11631 * printing.el: Doc fix. New doc section (Tips).
11632
11633 2004-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
11634
11635 * type-break.el (type-break-emacs-variant): Remove.
11636 (type-break-run-at-time, type-break-cancel-function-timers):
11637 Use fboundp rather than version name and number.
11638
11639 2004-03-09 Masatake YAMATO <jet@gyve.org>
11640
11641 * hexl.el (hexl-mode): Use `make-local-variable' instead of
11642 `make-variable-buffer-local'.
11643
11644 2004-03-08 Michael Albinus <Michael.Albinus@alcatel.de>
11645
11646 * find-dired.el (find-dired): Call `shell-command' instead of
11647 `start-process-shell-command'. By this, Tramp takes over
11648 handling of remote directories.
11649
11650 2004-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
11651
11652 * newcomment.el (comment-use-global-state): New var.
11653 (comment-search-forward): Use it.
11654
11655 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
11656
11657 * cus-edit.el (fill) <defgroup>: Move to fill.el.
11658
11659 * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
11660 (enable-kinsoku): Make it a defcustom.
11661 (fill-comment-paragraph): Don't rely on fill-prefix to bound the
11662 paragraph to same-comment-start-marker.
11663
11664 2004-03-07 Dave Love <fx@gnu.org>
11665
11666 * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
11667 (browse-url-mail): Use it.
11668
11669 * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
11670 (rfc2368-unhexify-string): Use replace-regexp-in-string.
11671
11672 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk>
11673
11674 * woman.el (woman-man.conf-path): Doc fix.
11675 (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
11676
11677 2004-03-07 Eli Zaretskii <eliz@gnu.org>
11678
11679 * sort.el (sort-columns): Remove ms-dos from the list of systems
11680 where the external `sort' command is not used.
11681
11682 2004-03-07 Kim F. Storm <storm@cua.dk>
11683
11684 * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
11685 (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
11686 from overlay-arrow-variable-list.
11687 (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
11688
11689 2004-03-06 Nick Roberts <nick@nick.uklinux.net>
11690
11691 * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
11692 overlay arrow string properly for the assembler buffer.
11693
11694 2004-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
11695
11696 * mail/sendmail.el (mail-mode): Fix last change.
11697
11698 2004-03-05 Nick Roberts <nick@nick.uklinux.net>
11699
11700 * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
11701 for the assembler buffer.
11702 (gdb-assembler-custom): Position the overlay arrow.
11703 (gdb-put-arrow, gdb-remove-arrow): Delete functions.
11704
11705 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
11706
11707 * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
11708
11709 * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
11710 regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
11711
11712 * mail/sendmail.el (mail-mode): Set comment-start-skip.
11713
11714 * newcomment.el (uncomment-region): Allow non-terminated comment.
11715 (comment-normalize-vars): Check the user-specified comstart marker.
11716
11717 2004-03-04 Jesper Harder <harder@ifa.au.dk>
11718
11719 * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
11720 Otherwise, do use it if the region only contains font-lock text
11721 properties.
11722
11723 2004-03-04 Masatake YAMATO <jet@gyve.org>
11724
11725 * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
11726 as the callback function for eldoc.
11727 (hexl-print-current-point-info): New function.
11728 (hexl-current-address): Print the address in both decimal
11729 and hexadecimal format.
11730
11731 2004-03-04 Richard M. Stallman <rms@gnu.org>
11732
11733 * mail/rmail.el (rmail-convert-to-babyl-format):
11734 Specify t for UNIBYTE when calling mail-unquote-printable-region.
11735
11736 * mail/mail-utils.el (mail-unquote-printable-region):
11737 New arg UNIBYTE.
11738
11739 * startup.el (command-switch-alist): Doc fix.
11740
11741 * simple.el (undo): Temporarily set this-command to `undo-start',
11742 then set it to `undo' once undo-start returns without error.
11743
11744 * simple.el (minibuffer-history-sexp-flag): Doc fix.
11745
11746 * simple.el (kill-line): Don't disregard trailing whitespace
11747 in eol condition, if show-trailing-whitespace is set.
11748
11749 * mouse-sel.el (mouse-sel-has-been-enabled): New var.
11750 (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
11751 When disabling, restore old values only if mouse-sel-has-been-enabled.
11752
11753 * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
11754 (isearch-{-char): New function.
11755 (isearch-mode-map): Bind { to isearch-{-char.
11756
11757 * font-lock.el (lisp-font-lock-keywords-2):
11758 Turn off the CL with-... and do-... general patterns.
11759 Instead, recognize several specific with... and do... constructs.
11760
11761 * files.el (switch-to-buffer-other-window):
11762 Bind same-window-buffer-names and same-window-regexps to nil.
11763 (switch-to-buffer-other-frame): Likewise.
11764
11765 2004-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
11766
11767 * textmodes/fill.el (fill-comment-paragraph): Be more careful when
11768 recognizing leading comment on code line.
11769
11770 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
11771
11772 * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
11773 hidden files/directories.
11774
11775 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
11776
11777 * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
11778 only comment-start (in case the mode hasn't set it).
11779
11780 * Makefile.in (AUTOGENEL): New var.
11781 (bootstrap-prepare): Rename from bootstrap-clean.
11782 Don't remove elc files.
11783 (maintainer-clean): New target.
11784
11785 * xml.el (xml-get-attribute-or-nil): Simplify.
11786
11787 2004-03-02 Juri Linkov <juri@jurta.org>
11788
11789 * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
11790 (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
11791 URL to prevent their substitution with the environment variable
11792 values by browsers.
11793
11794 2004-03-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11795
11796 * ps-print.el: Doc fix.
11797 (ps-print-version): New version number (6.6.3).
11798 (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
11799 Docstring fix.
11800 (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
11801 before printing.
11802 (ps-time-stamp-yyyy-mm-dd): New fun.
11803 (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
11804
11805 2004-03-02 Kim F. Storm <storm@cua.dk>
11806
11807 * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
11808
11809 2004-03-01 Juanma Barranquero <lektu@terra.es>
11810
11811 * allout.el (allout-rebullet-heading): Fix typo in docstring.
11812
11813 * desktop.el (desktop-file-version)
11814 (desktop-after-read-hook): Fix typos.
11815 (desktop-clear-preserve-buffers): Remove redundant info in
11816 docstring already shown by the obsolescence message.
11817 (desktop-truncate, desktop-internal-v2s)
11818 (desktop-value-to-string): Change argument name to match docstring.
11819
11820 * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
11821
11822 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
11823 docstring.
11824
11825 2004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11826
11827 * printing.el: Replace "As Is..." in PostScript file print/preview by
11828 "No Preprocessing...". Suggested by Colin Marquardt
11829 <_marquardt_@zmd.de>.
11830 (pr-insert-section-4): Adjust buffer interface.
11831
11832 2004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net>
11833
11834 Version 2.0.39 of Tramp released.
11835
11836 * net/tramp.el (tramp-handle-file-local-copy)
11837 (tramp-handle-write-region, tramp-open-connection-rsh):
11838 Variable name typo. Small change. From Patrick Tullmann
11839 <tullmann@flux.utah.edu>.
11840 (tramp-process-connection-type): New variable.
11841 (tramp-maybe-open-connection): Use it.
11842 (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
11843 (tramp-touch): Set last-modified time of a remote file.
11844 (tramp-handle-write-region): Say which function is used when encoding.
11845
11846 2004-02-29 Michael Albinus <Michael.Albinus@alcatel.de>
11847
11848 * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
11849 case of non-existing filename, too. Reported by Christoph Bauer
11850 <c_bauer@informatik.uni-kl.de>.
11851 (tramp-smb-get-file-entries): The directory in question should
11852 have permissions "drwxrwxrwx". Just virtual, because we don't
11853 know the real permissions. Don't we know?
11854 (tramp-smb-prompt): Add virtual prompt from listing shares, too.
11855 (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
11856 (tramp-smb-wait-for-output): Optimize algorithm getting pending
11857 output. If it was received chunkwise, there have been problems.
11858 Remove the "prompt not found" error message; it is obvious.
11859 Simplify algorithm.
11860 (tramp-smb-process-running): Remove. Since we acknowledge the
11861 virtual prompt for shares, there's no need for distinction of
11862 reading shares (process ends afterwards) and interactive mode of
11863 smblient.
11864 (tramp-smb-open-connection): Setting process sentinel removed.
11865 (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
11866 "NT_STATUS_NETWORK_ACCESS_DENIED".
11867 (tramp-smb-maybe-open-connection): Set `process-connection-type'
11868 to 'pty. Suggested by Piet van Oostrum <piet@cs.uu.nl>.
11869 (top-level): Setting default value in `tramp-default-method-alist'
11870 corrected. Order of USER and HOST have been wrong.
11871 Nobody complained for months ...
11872 (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
11873 (tramp-smb-open-connection): Clear password cache if login has failed.
11874
11875 * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
11876 `tramp-unified-filenames'.
11877 (tramp-completion-mode): Make test for XEmacs explicitely.
11878 `event-to-character' can exists in Emacs packages too.
11879 Reported by Matt Swift <swift@alum.mit.edu>.
11880 (tramp-buffer-name): Buffer name must contain the user if exists.
11881 Reported by Adrian Phillips <a.phillips@met.no>.
11882 (tramp-do-copy-or-rename-file): Handle out-of-band methods.
11883 Call `tramp-do-copy-or-rename-file-out-of-band' this case.
11884 (tramp-do-copy-or-rename-file-out-of-band): Rename from
11885 `tramp-do-copy-or-rename-file-one-local', because it handles also
11886 the case both files use the same out-of-band method.
11887 Implementation added.
11888 (tramp-handle-file-local-copy, tramp-handle-write-region):
11889 Out-of-band handling removed. `copy-file' called instead, which
11890 calls `tramp-do-copy-or-rename-file-out-of-band'.
11891 (tramp-action-password): Check for out-of-band method removed.
11892 This function is used for 'login-program.
11893 (tramp-post-connection): Use `tramp-method-out-of-band-p' when
11894 appropriate.
11895 (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
11896 and `tramp-parse-sknownhosts'.
11897 (tramp-completion-function-alist): It's a defvar now, because we
11898 want to apply the optimized `tramp-set-completion-function'
11899 instead of a static list.
11900 (tramp-set-completion-function): Implementation tuned.
11901 Avoid double entries, and entries where the function or the
11902 file/directory doesn't exist.
11903 (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
11904 for SSH2.
11905 (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
11906 (tramp-handle-dired-compress-file): New function.
11907 (tramp-async-proc): New variable.
11908 (tramp-handle-shell-command): Adding asynchronous processes.
11909 They are far from being perfect, but it works at least for
11910 `find-grep-dired' and `find-name-dired' in Emacs 22.1.
11911 (top-level): Require password.el if visible. Should be mandatory
11912 once No Gnus has found its way into (X)Emacs.
11913 (tramp-read-passwd): Invoke `password-read' if available,
11914 `read-passwd' otherwise. `ange-ftp-read-passwd' isn't used as
11915 fallback any longer.
11916 (tramp-clear-passwd): New function.
11917 (tramp-process-actions, tramp-process-multi-actions):
11918 Clear password cache if login has failed.
11919
11920 * net/tramp-ftp.el (Commentary): Remove pointer to EFS. It has
11921 its own module.
11922 (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
11923 `ange-ftp-ftp-name-res'. There could be incorrect values from
11924 previous calls in case the "ftp" method is used in the Tramp file
11925 name. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
11926
11927 2004-02-28 Richard M. Stallman <rms@gnu.org>
11928
11929 * term.el (term-mouse-paste): Call mouse-set-point.
11930
11931 * thumbs.el: New file.
11932
11933 2004-02-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11934
11935 * progmodes/ebnf-abn.el: Doc fix.
11936
11937 * progmodes/ebnf-bnf.el: Doc fix.
11938 (ebnf-repeat): Code fix.
11939
11940 * progmodes/ebnf2ps.el: Doc fix.
11941 (ebnf-syntax-directory, ebnf-syntax-file): New funs.
11942
11943 2004-02-28 Juri Linkov <juri@jurta.org>
11944
11945 * ffap.el (dired-at-point): Additional writability test for
11946 relative directory names.
11947 (dired-at-point-prompter): Treat directories as a directory, get
11948 the directory component from files.
11949 (ffap-string-at-point): Return string from region if region is active.
11950 (ffap-file-at-point): Remove redundant code.
11951
11952 2004-02-28 Kim F. Storm <storm@cua.dk>
11953
11954 * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
11955 Initialize margin area images to nil.
11956 (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
11957 (breakpoint-enabled-bitmap-face)
11958 (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
11959 (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
11960 (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
11961 (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
11962 (gdb-reset): Use gdb-remove-breakpoint-icons.
11963 (gdb-put-string): Add dprop arg to specify alternative display
11964 property (for setting fringe bitmap).
11965 (gdb-remove-strings): Doc fix.
11966 (gdb-put-breakpoint-icon): New defun which displays a breakpoint
11967 icon in fringe (if available), or else as icon or text in display
11968 margin. Creates necessary icons in breakpoint-bitmap,
11969 breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
11970 Also make left window margin if required.
11971 (gdb-remove-breakpoint-icons): New defun to remove breakpoint
11972 icons inserted by gdb-put-breakpoint-icon. Remove left margin if
11973 no longer needed.
11974 (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
11975 gdb-put-breakpoint-icon.
11976 (gdb-assembler-mode): Don't set left-margin-width here.
11977
11978 2004-02-27 Kevin Ryde <user42@zip.com.au>
11979
11980 * info-look.el: In scheme-mode symbol regexp, disallow backquote and
11981 comma, so that it DTRT in macros.
11982
11983 2004-02-27 Markus Rost <rost@mathematik.uni-bielefeld.de>
11984
11985 * progmodes/sh-script.el (sh-shell-arg)
11986 (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
11987 (sh-leading-keywords, sh-other-keywords): Fix custom type.
11988
11989 2004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
11990
11991 * faces.el (face-spec-set-match-display): Add a new attribute,
11992 `min-colors'.
11993 (region, highlight, secondary-selection): Use `min-colors'.
11994
11995 * custom.el (defface): Add documentation for `min-colors'.
11996
11997 * font-lock.el (font-lock-comment-face, font-lock-string-face)
11998 (font-lock-keyword-face, font-lock-function-name-face)
11999 (font-lock-variable-name-face, font-lock-constant-face):
12000 Use `min-colors'.
12001
12002 * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
12003
12004 2004-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12005
12006 * progmodes/ebnf2ps.el: Doc fix. For compatibility with Emacs 20,
12007 define assq-delete-all if it's not defined.
12008 (ebnf-generate-region): Code fix.
12009
12010 * printing.el: Doc fix.
12011 (pr-version): New version number (6.7.2).
12012 (pr-command): Return empty string if command is an empty string.
12013
12014 2004-02-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12015
12016 * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
12017
12018 * progmodes/ebnf2ps.el: Doc fix. Accept ABNF (Augmented BNF). New
12019 arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
12020 semi-down-full. Fix a bug on productions like test = {"test"}* | (
12021 "tt" ["test"] ). Reported by Markus Dreyer
12022 <mdreyer@ix.urz.uni-heidelberg.de>.
12023 (ebnf-version): New version number (4.0).
12024 (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
12025 (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
12026 (ebnf-delete-style): New commands.
12027 (ebnf-directory, ebnf-file): New funs.
12028 (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
12029 (ebnf-production-name-p, ebnf-stop-on-error): New options.
12030 (ebnf-syntax-alist): New var.
12031 (ebnf-element-width): New fun replacing ebnf-list-width.
12032 (ebnf-arrow-shape, ebnf-syntax): Custom fix.
12033 (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
12034 (ebnf-prologue): Adjust vars.
12035 (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
12036 (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
12037 (ebnf-check-style-values, ebnf-generate-production)
12038 (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
12039 (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
12040 (ebnf-token-repeat): Code fix.
12041
12042 * progmodes/ebnf-yac.el: Doc fix. Handle Bison pragmas %nonassoc,
12043 %right, %left and %prec. Suggested by Matthew K. Junker
12044 <junker@alum.mit.edu>.
12045 (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
12046
12047 * progmodes/ebnf-iso.el: Doc fix.
12048 (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
12049 (ebnf-iso-lex): Code fix.
12050
12051 * progmodes/ebnf-bnf.el: Doc fix.
12052 (ebnf-bnf-lex): Code fix.
12053
12054 * progmodes/ebnf-otz.el: Doc fix.
12055
12056 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
12057
12058 * abbrev.el (write-abbrev-file): Make argument optional. Doc fix.
12059 (abbrev-prefix-mark): Doc fix.
12060
12061 2004-02-23 Nick Roberts <nick@nick.uklinux.net>
12062
12063 * gdb-ui.el (gud-watch): Load tooltip, if necessary.
12064 (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
12065 (gdb-var-delete): Make interactive (really).
12066 (gdb-edit-value): Make non-interactive.
12067
12068 * progmodes/gud.el (gud-speedbar-menu-items):
12069 Add gdb-var-delete and, indirectly, gdb-edit-value.
12070 (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
12071 (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
12072 (gud-gdb-marker-filter): Add comment for annotations.
12073
12074 2004-02-23 Glenn Morris <gmorris@ast.cam.ac.uk>
12075
12076 * calendar/calendar.el (generate-calendar)
12077 (calendar-read-date): Prevent display of BC calendars once more -
12078 reverts 2003-10-01 change.
12079 (generate-calendar-month): Doc fix.
12080
12081 2004-02-03 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
12082
12083 * calendar/diary-lib.el (fancy-diary-display): Don't rely on
12084 return value of increment-calendar-month.
12085
12086 2004-02-21 Stephen Compall <s11@member.fsf.org>
12087
12088 * saveplace.el (save-place-forget-unreadable-files)
12089 (save-place-save-skipped, save-place-skip-check-regexp): New vars.
12090 (save-place-forget-unreadable-files): New function.
12091 (save-place-alist-to-file): Use it to filter out files that are
12092 no longer readable.
12093
12094 * textmodes/texinfo.el (texinfo-insert-@item): Look for the
12095 current Texinfo environment, using the same method as in
12096 `texinfo-insert-@end', and insert a space rather than a newline if
12097 point in a @table environment.
12098
12099 2004-02-21 Juri Linkov <juri@jurta.org>
12100
12101 * ffap.el (ffap-file-at-point): Try parent directories.
12102
12103 2004-02-21 Klaus Zeitler <kzeitler@lucent.com>
12104
12105 * vcursor.el (vcursor-modifiers): New defcustom.
12106 (vcursor-cs-binding): Use vcursor-modifiers instead of a
12107 hard-coded list.
12108
12109 2004-02-21 Masatake YAMATO <jet@gyve.org>
12110
12111 * play/animate.el (animate-birthday-present): Accept names other
12112 than `Sarah', too.
12113
12114 2004-02-21 Juri Linkov <juri@jurta.org>
12115
12116 * startup.el: Remove table of command line arguments from the
12117 Commentary section.
12118
12119 2004-02-20 John Wiegley <johnw@newartisans.com>
12120
12121 * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
12122 again" modifier from 'e' to 'E', since 'e' is also used by the
12123 "file extension" modifier.
12124
12125 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
12126
12127 * help-fns.el (describe-categories): Doc fix.
12128
12129 2003-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
12130
12131 * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
12132 temporary file for buffer already visiting one. This change makes
12133 output likely to be directly usable by patch program.
12134 Suggested by Adrian Aichner <adrian@xemacs.org>
12135
12136 2004-02-20 Nick Roberts <nick@nick.uklinux.net>
12137
12138 * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
12139 case of variables defined in compound statements.
12140 (gdb-setup-windows, gdb-source-info, gdb-source-info):
12141 Simplify constructions using switch-to-buffer.
12142
12143 2004-02-19 Simon Josefsson <jas@extundo.com>
12144
12145 * play/morse.el: Fix typo.
12146 (morse-code): Add @.
12147
12148 2004-02-19 Glenn Morris <gmorris@ast.cam.ac.uk>
12149
12150 * calendar/appt.el (appt-display-format): Change default to
12151 'ignore, for backwards compatibility.
12152 (appt-display-message): If appt-display-format is 'ignore,
12153 respect old vars appt-msg-window and appt-visible.
12154 (appt-activate): Don't depend on return value of cancel-timer.
12155
12156 * calendar/calendar.el (calendar-holidays): Doc fix.
12157
12158 * calendar/cal-coptic.el (coptic-prompt-for-date):
12159 Use assoc-string instead of assoc-ignore-case.
12160 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
12161 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
12162 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
12163 * calendar/cal-islam.el (calendar-goto-islamic-date)
12164 (mark-islamic-diary-entries): Ditto.
12165 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
12166 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
12167 (calendar-read-mayan-tzolkin-date): Ditto.
12168 * calendar/calendar.el (calendar-read-date): Ditto.
12169 * calendar/diary-lib.el (mark-diary-entries): Ditto.
12170
12171 2004-02-18 Markus Rost <rost@mathematik.uni-bielefeld.de>
12172
12173 * progmodes/executable.el (executable-command-find-posix-p):
12174 Fix choice of the directory.
12175
12176 2004-02-17 Luc Teirlinck <teirllm@auburn.edu>
12177
12178 * simple.el (interprogram-cut-function)
12179 (interprogram-paste-function, kill-new, kill-append):
12180 Doc fixes.
12181 (kill-region): Make it return nil. Doc fix.
12182 (yank-pop): Make its argument optional.
12183 (yank): Make ARG `-' equivalent to `-1'.
12184
12185 2004-02-17 Eli Zaretskii <eliz@gnu.org>
12186
12187 * mail/rmail.el (rmail-get-new-mail): Don't reference
12188 rmail-use-spam-filter if rmail-spam-filter is not loaded.
12189
12190 2004-02-16 Luc Teirlinck <teirllm@auburn.edu>
12191
12192 * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
12193 if one of global-auto-revert-non-file-buffers or autorevert-mode
12194 is non-nil.
12195
12196 2004-02-16 Eli Zaretskii <eliz@gnu.org>
12197
12198 * subr.el (delete-dups): A better implementation from Karl Heuer
12199 <kwzh@gnu.org>.
12200
12201 2004-02-16 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
12202
12203 * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
12204 correct place.
12205 * progmodes/icon.el (icon-indent-command): Ditto.
12206 * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
12207
12208 2004-02-16 Eli Zaretskii <eliz@gnu.org>
12209
12210 * progmodes/grep.el (grep-compute-defaults): Undo change from
12211 2004-01-29: don't use executable-command-find-posix-p.
12212
12213 2004-02-16 Richard Sharman <rsharman@pobox.com>
12214
12215 * hilit-chg.el: Use require instead of eval-and-compile.
12216 (highlight-compare-buffers): New function.
12217
12218 2004-02-16 John Basrai <jbasrai@comcast.net> (tiny change)
12219
12220 * man.el (Man-fontify-manpage): Render section headings in
12221 `Man-overstrike-face' even when overstrike was not used by man
12222 formatter for section headings.
12223
12224 2004-02-16 Eli Tziperman <eli@deas.harvard.edu>
12225
12226 * rmail-spam-filter.el: (vm-use-spam-filter)
12227 (rsf-min-region-length-added-to-spam-list): New variables.
12228 (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
12229 rmail-bbdb-auto-delete-spam-entries. Add cc: to recipients for
12230 spam testing. Don't delete spam message if automatic deletion
12231 after output via variable rmail-delete-after-output is turned on.
12232 (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
12233 rsf-bbdb-dont-create-entries-for-spam.
12234 (check-field): New function, extracted from code in
12235 rmail-spam-filter to ease addition of header fields like content-type.
12236 (message-content-type): New variable to check the content-type:
12237 field added, also in defcustom of rsf-definitions-alist.
12238 (rmail-spam-filter): Replace repeated test code for header fields
12239 by calls to check-field; change the call to
12240 rmail-output-to-rmail-file such that rmail-current-message stays
12241 the same to avoid wrong deletion of unseen flags.
12242 (rsf-add-contents-type): New function to convert old format
12243 of rmail-spam-definitions-alist into new one.
12244 Change prefixes of all variables and functions from
12245 rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
12246
12247 2004-02-16 Eli Zaretskii <eliz@gnu.org>
12248
12249 * loadhist.el (unload-hook-features-list): New defvar.
12250
12251 2004-02-16 Dave Love <fx@gnu.org>
12252
12253 * loadhist.el (unload-feature): Doc fix. Rename flist to
12254 unload-hook-features-list.
12255
12256 2004-02-16 Jay Belanger <belanger@truman.edu> (tiny change)
12257
12258 * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
12259 cookie. Don't check if we are looking-at open-formula.
12260
12261 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
12262
12263 * subr.el (match-string-no-properties): Use substring-no-properties.
12264
12265 2004-02-16 Eli Zaretskii <eliz@gnu.org>
12266
12267 * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
12268 (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
12269 Use lower-case "rx" in all error message.
12270
12271 2004-02-16 Dave Love <fx@gnu.org>
12272
12273 * emacs-lisp/rx.el (rx-or): Put group around result.
12274 (rx-constituents): Add backref.
12275 (rx-syntax): Add string-delimiter, comment-delimiter.
12276 (rx-categories): Add combining-diacritic.
12277 (rx-check-not, rx-greedy, rx): Doc fix.
12278 (rx-backref, rx-check-backref): New.
12279
12280 2004-02-16 Jesper Harder <harder@ifa.au.dk>
12281
12282 * newcomment.el (uncomment-region): Allow eob as comment end.
12283
12284 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
12285
12286 * filecache.el: All message and error commands now use prefix
12287 "Filecache:" to make it easy to read *Messages* buffer.
12288
12289 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
12290
12291 * autorevert.el: Add support to detect changed dired and VC buffers.
12292 (auto-revert-active-p, auto-revert-list-diff)
12293 (auto-revert-dired-file-list, auto-revert-dired-changed-p)
12294 (auto-revert-handler, auto-revert-active-p): New functions.
12295 (auto-revert-buffers): Move revert logic to `auto-revert-handler'
12296 and `auto-revert-active-p'.
12297 (eval-when-compile): Defvar dired-directory and vc-mode.
12298 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
12299 (auto-revert-handler-vc): New functions.
12300
12301 2004-02-16 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
12302
12303 * progmodes/compile.el (compilation-directory): New defvar.
12304 (compile): Save current directory in compilation-directory.
12305 (recompile): Bind default-directory to compilation-directory if
12306 that is non-nil.
12307
12308 2004-02-16 Dave Love <fx@gnu.org>
12309
12310 * newcomment.el (comment-insert-comment-function)
12311 (comment-region-function, uncomment-region-function): New.
12312 (comment-indent): Use comment-insert-comment-function.
12313 (uncomment-region): Use uncomment-region-function.
12314 (comment-region): Use comment-region-function.
12315
12316 * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
12317
12318 2004-02-16 Richard Stallman <rms@gnu.org>
12319
12320 * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
12321 loaddefs* and ldefs-boot*.
12322
12323 2004-02-16 Eli Zaretskii <eliz@gnu.org>
12324
12325 * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
12326 and email address at the beginning and end of the address.
12327
12328 * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
12329 anchored at the beginning of the email address.
12330
12331 2004-02-16 TAKAI Kousuke <tak@kmc.gr.jp> (tiny change)
12332
12333 * international/ccl.el (ccl-compile-write): Pass `left' to
12334 ccl-embed-code to generate correct code of write-expr-register.
12335
12336 2004-02-15 Dan Nicolaescu <dann@ics.uci.edu> (tiny change)
12337
12338 * progmodes/grep.el (grep-compute-defaults): Fix typos.
12339
12340 2004-02-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12341
12342 * x-dnd.el: Mention support for Motif in commentary.
12343 (x-dnd-handle-drag-n-drop-event): Ditto.
12344
12345 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
12346
12347 * ses.el: Use "ses--" prefixes for buffer-local variables.
12348 Use (point-min) instead of 1, even when we know the buffer
12349 is unnarrowed.
12350 (ses-build-load-map): Delete. Distribute its content to defconst's for
12351 the three maps.
12352 (ses-menu, ses-header-line-menu): New menus.
12353 (ses-mode-map): Use them.
12354 (ses-read-number) New fun. Duplicates code from interactive "N" spec.
12355
12356 2004-02-14 Martin Stjernholm <bug-cc-mode@gnu.org>
12357
12358 * Makefile.in: Fix the CC Mode recompile kludge so it works
12359 when building in a different directory.
12360
12361 2004-02-13 Luc Teirlinck <teirllm@auburn.edu>
12362
12363 * simple.el (kill-new): Put yank-handler property on the entire string.
12364
12365 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
12366
12367 * diff.el: Don't use compile any more, use diff-mode instead.
12368 (diff-regexp-alist, diff-old-file, diff-new-file)
12369 (diff-parse-differences, diff-process-setup): Remove.
12370 (diff-sentinel): New fun.
12371 (diff): Use it. Run the process ourselves.
12372 Use diff-mode for the rest of the processing.
12373
12374 * diff.el (diff): Simplify code handling `switch'.
12375
12376 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
12377
12378 * pcvs-defs.el (cvs-menu): Add `tag'.
12379
12380 2004-02-11 Luc Teirlinck <teirllm@auburn.edu>
12381
12382 * simple.el (kill-append): Doc fix.
12383
12384 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12385 Adapt outline-regexp to the new conventions for commenting out code.
12386
12387 2004-02-11 John Paul Wallington <jpw@gnu.org>
12388
12389 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
12390
12391 2004-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
12392
12393 * diff.el (diff-switches): New fun.
12394 (diff, diff-backup): Use it.
12395 (diff): Clean up the args construction. Use backquote.
12396 Use listp instead of consp to avoid putting a nil arg.
12397 (diff): Add a revert-buffer function.
12398
12399 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12400
12401 * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT, FILE_NAME
12402 handled by x-dnd-handle-file-name.
12403 (x-dnd-known-types): Add COMPOUND_TEXT.
12404 (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
12405 (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
12406 x-dnd-empty-state.
12407 (x-dnd-forget-drop): Ditto.
12408 (x-dnd-save-state): Add optional parameter extra-data (for Motif).
12409 (x-dnd-handle-one-url): Return private when inserting text.
12410 (x-dnd-insert-ctext): New function.
12411 (x-dnd-handle-file-name): New function for FILE_NAME.
12412 (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
12413 (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
12414 (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
12415
12416 2004-02-10 Kenichi Handa <handa@m17n.org>
12417
12418 * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
12419 instead of while loop.
12420
12421 2004-02-10 Miles Bader <miles@gnu.org>
12422
12423 * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
12424
12425 2004-02-09 Kenichi Handa <handa@m17n.org>
12426
12427 * tar-mode.el (tar-extract): Fix for the case that a file doesn't
12428 have end-of-line.
12429
12430 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org>
12431
12432 * Makefile.in: Added extra dependencies in the recompile target
12433 needed to cope with the compile time macro expansions in CC Mode.
12434
12435 2004-02-09 Kim F. Storm <storm@cua.dk>
12436
12437 * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
12438 (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
12439 (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
12440 (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
12441 (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
12442 (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
12443 (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
12444 (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
12445 (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
12446 (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
12447 (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
12448
12449 2004-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
12450
12451 * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
12452 Don't allow shrink if there's a window on our right.
12453
12454 * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
12455 (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
12456 Bring together declaration and initialization.
12457 (prolog-mode-variables): Don't set the syntax table.
12458 Don't set paragraph-start and comment-indent-function.
12459 Add /*..*/ to the comment regexps.
12460 (prolog-mode-commands): Remove. Do it during init of prolog-mode-map.
12461 (prolog-mode-map): Don't bind TAB.
12462 (prolog-mode): Set the syntax table.
12463 (prolog-comment-indent): Remove.
12464 (inferior-prolog-mode-map): Initialize in the declaration.
12465 (inferior-prolog-mode-syntax-table)
12466 (inferior-prolog-mode-abbrev-table): New vars.
12467 (inferior-prolog-mode): Derive from comint-mode.
12468 (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
12469 minibuffer windows.
12470
12471 * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
12472 in file names, as long as it is unabmiguous.
12473
12474 2004-02-08 Andreas Schwab <schwab@suse.de>
12475
12476 * textmodes/reftex-toc.el
12477 (reftex-toc-load-all-files-for-promotion): Remove useless use of
12478 format. Doc fix.
12479
12480 * textmodes/refer.el (refer-find-entry-internal): Remove extra
12481 format string arguments.
12482
12483 * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
12484 string argument.
12485
12486 * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
12487
12488 * play/zone.el (zone-call): Fix format string.
12489
12490 * net/webjump.el (webjump-builtin): Add missing format string argument.
12491
12492 * midnight.el (midnight-delay-set): Remove extra format string argument.
12493
12494 * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
12495
12496 * hexl.el (hexl-insert-char): Add missing format string argument.
12497
12498 * format.el (format-decode): Fix format string.
12499
12500 * emulation/vi.el (vi-mode): Remove extra format string argument.
12501 (vi-repeat-last-search): Likewise.
12502 (vi-reverse-last-search): Likewise.
12503 (vi-goto-mark): Likewise.
12504 (vi-reverse-last-find-char): Likewise.
12505 (vi-repeat-last-find-char): Likewise.
12506 (vi-locate-def): Likewise.
12507
12508 * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
12509
12510 * ediff-util.el (ediff-toggle-read-only): Remove extra format
12511 string argument.
12512 (ediff-toggle-regexp-match): Likewise.
12513
12514 * dired-aux.el (dired-do-query-replace-regexp): Add missing
12515 format string argument.
12516
12517 * calc/calc-map.el (calc-get-operator): Remove extra format
12518 string argument.
12519
12520 * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
12521
12522 * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
12523 string argument.
12524
12525 * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
12526
12527 * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
12528
12529 * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
12530
12531 * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
12532 (cl-struct-setf-expander): Likewise.
12533
12534 * vc.el (with-vc-file): Fix unsafe uses of error.
12535 (vc-cancel-version): Likewise.
12536
12537 2004-02-08 Jan Nieuwenhuizen <jan.nieuwenhuizen@aspiratie.nl> (tiny change)
12538
12539 * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
12540 thousands separator; fixes <class>:<line-number> regexp for
12541 non-english locales.
12542
12543 2004-02-08 Andreas Schwab <schwab@suse.de>
12544
12545 * view.el (view-mode-enable): Revert previous change.
12546
12547 2004-02-07 Kim F. Storm <storm@cua.dk>
12548
12549 * simple.el (line-number-at-pos): Rename from line-at-pos.
12550 Uses changed (what-line and vc-annotate-warp-version).
12551
12552 2004-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
12553
12554 * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
12555 (diff-mode): Remove aborted attempt at support for compile.el.
12556 (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
12557
12558 2004-02-06 Andreas Schwab <schwab@suse.de>
12559
12560 * view.el (view-mode-enable): Add view-mode-map to
12561 minor-mode-overriding-map-alist.
12562
12563 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12564
12565 * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
12566
12567 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
12568
12569 * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
12570 with point inside rather than after the paragraph.
12571
12572 2004-02-04 Sam Steingold <sds@gnu.org>
12573
12574 * mail/smtpmail.el (smtpmail-try-auth-methods):
12575 Do not try authentication when no mechanism is available.
12576 Pass port-name as defaultport to `netrc-machine'.
12577
12578 2004-02-04 Stephen Eglen <stephen@gnu.org>
12579
12580 * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
12581 to show how minibuffer height can be constrained.
12582
12583 2004-02-04 John Paul Wallington <jpw@gnu.org>
12584
12585 * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
12586
12587 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12588
12589 * x-dnd.el: New file for drag and drop.
12590
12591 * term/x-win.el: require x-dnd, set after-make-frame-functions
12592 to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
12593 drag-n-drop event.
12594
12595 * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
12596 (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
12597 (dired-dnd-handle-file): New functions for drag and drop support.
12598 (dired-mode): Initialize drag and drop if x-dnd present.
12599
12600 2004-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
12601
12602 * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
12603 (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
12604 (cperl-mode): Set fill-paragraph-function.
12605 (cperl-fill-paragraph): Make it non-interactive.
12606
12607 2004-02-02 Benjamin Rutt <brutt@bloomington.in.us>
12608
12609 * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
12610
12611 2004-02-02 David Kastrup <dak@gnu.org>
12612
12613 * replace.el (perform-replace): Allow 'literal argument in
12614 regexp-flag to indicate literal replacement.
12615 (query-replace-regexp-eval): Use it.
12616
12617 2004-02-01 Andreas Schwab <schwab@suse.de>
12618
12619 * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
12620
12621 2004-02-01 Stephen Eglen <stephen@gnu.org>
12622
12623 * info-look.el: Add support for maxima-mode. Update commentary
12624 because info-lookup-symbol is now bound to C-h S.
12625
12626 2004-01-31 Luc Teirlinck <teirllm@auburn.edu>
12627
12628 * simple.el (edit-and-eval-command): Bind print-level and
12629 minibuffer-history-sexp-flag around call to read-from-minibuffer.
12630 Correct initial position in command-history.
12631
12632 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
12633
12634 * files.el (read-directory-name): Adapt the docstring to recent
12635 change in Fread_file_name.
12636
12637 2004-01-30 Jonathan Yavner <jyavner@member.fsf.org>
12638
12639 * ses.el (ses-print-cell): If print format too wide for column
12640 width, truncate decimal places if that helps to avoid "#####" fill.
12641 * ses.el (ses-initial-column-width): Revert previous change.
12642
12643 2004-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
12644
12645 * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
12646 (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
12647 Add edebug info.
12648 (jit-lock-mode): Setup/cancel the new timer.
12649 (jit-lock-context-fontify): New fun. Extracted from
12650 context fontification code of jit-lock-stealth-fontify.
12651 (jit-lock-stealth-fontify): Don't do context fontification any more.
12652
12653 * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
12654 (jit-lock-fontify-now): Handle the `quit' case.
12655 (jit-lock-contextually): Rename from jit-lock-defer-contextually.
12656
12657 2004-01-29 Jari Aalto <jari.aalto@poboxes.com>
12658
12659 * progmodes/executable.el (executable-command-find-posix-p):
12660 New. Check if find handles arguments Posix-style.
12661
12662 * progmodes/grep.el (grep-compute-defaults):
12663 Use executable-command-find-posix-p.
12664 (grep-find): Check `grep-find-command'.
12665
12666 * filecache.el (file-cache-find-posix-p): Delete.
12667 (file-cache-add-directory-using-find):
12668 Use `executable-command-find-posix-p'.
12669
12670 2004-01-29 Dave Love <fx@gnu.org>
12671
12672 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
12673 Iterate the hook function if arg is given.
12674 (mark-defun, narrow-to-defun): Change order of finding the limits.
12675
12676 * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
12677 (byte-compile-format-warn): New.
12678 (byte-compile-callargs-warn): Use it.
12679 (Format, message, error): Add byte-compile-format-like property.
12680 (byte-compile-maybe-guarded): New.
12681 (byte-compile-if, byte-compile-cond): Use it.
12682 (byte-compile-lambda): Compile interactive forms,
12683 just to make warnings about them.
12684
12685 2004-01-29 Jonathan Yavner <jyavner@member.fsf.org>
12686
12687 * ses.el (ses-initial-column-width): Increase to 14, so it will
12688 work well with the default printer of "%.7g" for extreme values
12689 like "-1.234567e+07".
12690
12691 2004-01-29 Kenichi Handa <handa@m17n.org>
12692
12693 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
12694
12695 2004-01-28 Peter 'Luna' Runestig <peter@runestig.com>
12696
12697 * dos-w32.el: Added support for the `default-printer-name' function.
12698
12699 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
12700
12701 * server.el (server-socket-name): Don't use the hostname in the
12702 socket name since /tmp is local to the host anyway.
12703
12704 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
12705 robust check of widening and fix var-naming.
12706
12707 2004-01-27 Eli Tziperman <eli@deas.harvard.edu>
12708
12709 * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
12710 or rmail-spam- to rsf- in all function and variable names.
12711 (rsf-min-region-to-spam-list): New variable.
12712 (rsf-bbdb-auto-delete-spam-entries): Rename from
12713 rmail-bbdb-auto-delete-spam-bbdb-entries. The cc: field is
12714 scanned together with the recipients field for spam testing; Don't
12715 delete spam message if rmail-delete-after-output is non-nil;
12716 (rsf-check-field): New function, extracted from code in
12717 rmail-spam-filter to ease addition of header fields like
12718 content-type:;
12719 (message-content-type): New variable. The content-type: field was
12720 added also in defcustom of rsf-definitions-alist;
12721 (rmail-spam-filter): Replace repeated test code for header fields
12722 by calls to check-field; change the call to
12723 rmail-output-to-rmail-file such that rmail-current-message stays
12724 the same to avoid wrong deletion of unseen flags.
12725 (rmail-use-spam-filter): Add autoload cookie.
12726
12727 2004-01-27 Jari Aalto <jari.aalto@poboxes.com>
12728
12729 * filecache.el (file-cache-find-posix-p): New function. Detect Cygwin.
12730 (file-cache-add-directory-using-find): Add Cygwin support.
12731 (file-cache-find-command-posix-flag): New user variable.
12732
12733 * filecache.el (file-cache-add-directory): Check for
12734 directories an remove them from dir-files.
12735
12736 2004-01-27 Richard M. Stallman <rms@gnu.org>
12737
12738 * man.el (Man-fontify-manpage): Clean up message.
12739
12740 2004-01-27 Kenichi Handa <handa@m17n.org>
12741
12742 * textmodes/paragraphs.el (sentence-end-without-space): New variable.
12743 (sentence-end): Define using sentence-end-without-space.
12744
12745 * textmodes/fill.el (fill-delete-newlines): Don't add a space if
12746 a sentence ends with one of a character in sentence-end-without-space.
12747
12748 2004-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
12749
12750 * font-lock.el (font-lock): Add jit-lock as explicit group member.
12751 (jit-lock): Group declaration moved to jit-lock.el.
12752 (toplevel): Don't explicitly require jit-lock, since it's autoloaded
12753 when necessary.
12754
12755 * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
12756 (jit-lock-context-unfontify-pos): Rename from
12757 jit-lock-first-unfontify-pos.
12758 (jit-lock-defer-buffers): Rename from jit-lock-buffers.
12759
12760 2004-01-25 Glenn Morris <gmorris@ast.cam.ac.uk>
12761
12762 * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
12763 (fortran-break-delimiters-re, fortran-no-break-re): New consts.
12764 (fortran-fill): When filling a string, adjust re-search-backward
12765 argument for special case of string just on fill-column.
12766 When filling non-string, allow one extra char if
12767 fortran-break-before-delimiters is non-nil.
12768 Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
12769 Use fortran-break-delimiters-re and fortran-no-break-re to
12770 correctly handle cases such as "**".
12771
12772 * progmodes/f90.el (f90-break-delimiters): Doc fix.
12773 (f90-no-break-re): Add some extra tokens. Doc fix.
12774
12775 2004-01-24 Thien-Thi Nguyen <ttn@gnu.org>
12776
12777 * mail/rmail-spam-filter.el:
12778 Use two semicolons as Commentary line prefix.
12779 Add ";;; Code:" stylized comment.
12780 Delete end-of-line whitespace.
12781 Wrap (require 'cl) with `eval-when-compile'.
12782
12783 2004-01-23 Benjamin Rutt <brutt@bloomington.in.us>
12784
12785 * vc.el (vc-annotate): Fix improper use of `make-local-variable'
12786 at the top level of vc.el.
12787
12788 2004-01-23 Andre Spiegel <spiegel@gnu.org>
12789
12790 * vc.el (vc-current-line): Function removed. This is now done by
12791 the new function line-at-pos in simple.el.
12792 (vc-annotate-warp-version): Use line-at-pos instead of
12793 vc-current-line.
12794
12795 2004-01-22 Kim F. Storm <storm@cua.dk>
12796
12797 * simple.el (line-at-pos): New defun.
12798 (what-line): Use it. Optimize by only counting lines in narrowed
12799 region once.
12800
12801 2004-01-22 Kenichi Handa <handa@m17n.org>
12802
12803 * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
12804 point (register r1) only for charset mule-unicode-0100-24ff.
12805
12806 2004-01-21 Markus Rost <rost@mathematik.uni-bielefeld.de>
12807
12808 * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
12809 trailing white space and ensure a final newline.
12810
12811 * mail/rmail-spam-filter.el (rmail-use-spam-filter):
12812 Add autoload cookie.
12813
12814 2004-01-21 Benjamin Rutt <brutt@bloomington.in.us>
12815
12816 * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
12817 activate view-mode explicitly.
12818
12819 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12820
12821 * term/x-win.el: Call menu-bar-enable-clipboard and make Paste
12822 use clipboard first.
12823
12824 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
12825
12826 * vc-mcvs.el (vc-mcvs-mode-line-string): Remove. Does not work.
12827 (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
12828 (vc-mcvs-cvs): Remove.
12829 (vc-mcvs-command): Remove use of assert.
12830
12831 * outline.el (outline-insert-heading): Tighten up match.
12832 (outline-demote, outline-move-subtree-down): Don't assume anything
12833 about outline-regexp.
12834
12835 * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
12836 (texinfo-show-structure): Explicitly add ^, and simplify.
12837
12838 2004-01-20 Glenn Morris <gmorris@ast.cam.ac.uk>
12839
12840 * calendar/appt.el (appt-check): Restore usage of
12841 appt-issue-message deleted in previous change.
12842 (top-level): Activate package when loaded (needed for backwards
12843 compatibility).
12844
12845 2004-01-20 Jesper Harder <harder@ifa.au.dk>
12846
12847 * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
12848 following previous change to smtpmail-send-data.
12849
12850 2004-01-20 Benjamin Rutt <brutt@bloomington.in.us>
12851
12852 * vc.el (vc-default-previous-version): Doc enhancement.
12853 (vc-default-next-version): New function.
12854 (vc-print-log): New arg FOCUS-REV.
12855 (vc-annotate-mode): Derive from view-mode.
12856 (vc-annotate): New args REVISION, DISPLAY-MODE.
12857 (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
12858 (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
12859 (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
12860 (vc-annotate-show-diff-revision-at-line, vc-current-line)
12861 (vc-annotate-prev-version, vc-annotate-next-version): New functions.
12862
12863 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
12864
12865 2004-01-19 Karl Berry <karl@gnu.org>
12866
12867 * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
12868 or "TexInfo".
12869
12870 2004-01-19 Luc Teirlinck <teirllm@auburn.edu>
12871
12872 * subr.el (delete-dups): New function.
12873
12874 2004-01-19 Karl Berry <karl@gnu.org>
12875
12876 * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
12877 with ^, since that's what texinfo-show-structure
12878 documentation says (plus it works much better in texinfo.txi).
12879
12880 2004-01-18 Jesper Harder <harder@ifa.au.dk>
12881
12882 * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
12883
12884 2004-01-18 David Ponce <david@dponce.com> (tiny change)
12885
12886 * progmodes/which-func.el (which-function-mode): Don't cancel
12887 which-func-update-timer if not set.
12888
12889 2004-01-17 Thien-Thi Nguyen <ttn@gnu.org>
12890
12891 * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
12892 Remove spurious left square bracket in XX:XXam regexp.
12893
12894 2004-01-16 Luc Teirlinck <teirllm@auburn.edu>
12895
12896 * progmodes/cc-defs.el: Do not require cl at run time.
12897
12898 2004-01-16 Richard M. Stallman <rms@gnu.org>
12899
12900 * emacs-lisp/cl.el (cl-cannot-unload): New function.
12901 (cl-unload-hook): Defvar this to run cl-cannot-unload.
12902
12903 * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
12904 Call rmail-spam-filter. Delete and expunge spam.
12905 Print number of spam messages deleted.
12906 Save and restore the deletion status of old messages when reading
12907 new mail with spam filter, so that expunging spam does not expunge
12908 msgs deleted by the user.
12909 (rmail-only-expunge): Add an optional argument dont-show to
12910 prevent showing message after expunge.
12911
12912 2004-01-15 Luc Teirlinck <teirllm@auburn.edu>
12913
12914 * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
12915 * subr.el (declare): New macro.
12916
12917 2004-01-15 Thien-Thi Nguyen <ttn@gnu.org>
12918
12919 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
12920
12921 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
12922
12923 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
12924 Test window-system rather than system-type (for X11/Mac).
12925
12926 2004-01-12 Luc Teirlinck <teirllm@auburn.edu>
12927
12928 * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
12929
12930 2004-01-12 Richard M. Stallman <rms@gnu.org>
12931
12932 * mail/rmail.el (rmail-convert-to-babyl-format):
12933 Use mail-unquote-printable-region.
12934 (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
12935 (rmail-hex-char-to-integer): Functions deleted.
12936
12937 * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
12938 (mail-unquote-printable-region): New arg NOERROR.
12939 For invalid encoding, either signal an error to just return nil.
12940
12941 2004-01-11 Glenn Morris <gmorris@ast.cam.ac.uk>
12942
12943 * calendar/appt.el: Update copyright and commentary.
12944 (appt-issue-message): Make obsolete.
12945 (appt-visible, appt-msg-window): Make obsolete, in favour of
12946 appt-display-format.
12947 (appt-display-mode-line, appt-display-duration)
12948 (appt-display-diary, appt-time-msg-list, appt-mode-string)
12949 (appt-prev-comp-time, appt-display-count, appt-timer)
12950 (appt-convert-time): Doc change.
12951 (appt-disp-window-function, appt-delete-window-function):
12952 Use defcustom rather than defvar.
12953 (appt-display-format): New variable.
12954 (appt-display-message): New function with display code from appt-check.
12955 (appt-check): Add optional FORCE argument. Doc change.
12956 Add appt-make-list to diary-hook if displaying diary.
12957 Remove checking of view-diary-entries-initially.
12958 Message display section removed to new function appt-display-message.
12959 (appt-display-window): Doc change. Remove unused internal var
12960 this-buffer. Do not beep, since appt-display-message does that.
12961 (appt-make-list): Doc change. Use caar.
12962 (appt-sort-list): Simplify by using builtin sort function.
12963 (appt-update-list): New function for updating appts when diary is
12964 saved.
12965 (appt-activate): New autoloaded function to toggle package
12966 functionality.
12967
12968 * calendar/cal-x.el: (calendar-one-frame-setup)
12969 (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
12970
12971 * calendar/calendar.el: Update copyright.
12972 (view-diary-entries-initially, european-calendar-style): Doc change.
12973 (calendar-setup): Make defcustom rather than defvar.
12974 (mark-visible-calendar-date): Initialize temp-face and faceinfo
12975 in let binding so local to function.
12976
12977 * calendar/diary-lib.el: Update copyright.
12978 (diary, diary-entry-time): Doc change.
12979 (list-diary-entries): Doc change. Trivial logic change.
12980 (fancy-diary-display): Restore make-face command mistakenly
12981 deleted 2003-05-08.
12982 (show-all-diary-entries): Allow to pop-up frame if needed.
12983
12984 2004-01-09 John Paul Wallington <jpw@gnu.org>
12985
12986 * bindings.el (mode-line-change-eol): Add EVENT parameter.
12987 Temporarily select EVENT's window for changing eol type.
12988
12989 2004-01-09 Deepak Goel <deego@gnufans.org>
12990
12991 * calendar/diary-lib.el (diary-entry-time):
12992 Also accept time in the form XX[.XX][am/pm/AM/PM].
12993 (fancy-diary-font-lock-keywords): Likewise.
12994 (diary-font-lock-keywords): Likewise.
12995 * calendar/appt.el (appt-add): Likewise.
12996 (appt-make-list): Likewise.
12997 (appt-convert-time): Likewise.
12998
12999 2004-01-08 Nick Roberts <nick@nick.uklinux.net>
13000
13001 * gdb-ui.el (gdb-ann3): Revert previous change.
13002 (gdb-source-info): Allow for case of where compilation directory
13003 is not recorded.
13004
13005 2004-01-08 John Paul Wallington <jpw@gnu.org>
13006
13007 * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
13008
13009 2004-01-07 Nick Roberts <nick@nick.uklinux.net>
13010
13011 * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
13012
13013 * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
13014 (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
13015 problems.
13016 (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
13017
13018 2004-01-07 Luc Teirlinck <teirllm@auburn.edu>
13019
13020 * files.el (write-file-functions, write-contents-functions):
13021 Clarify docstrings.
13022
13023 2004-01-07 Kenichi Handa <handa@m17n.org>
13024
13025 * international/mule.el (set-auto-coding): Fix for the case that
13026 end-of-line is only CR.
13027
13028 2004-01-07 Kim F. Storm <storm@cua.dk>
13029
13030 * subr.el (event-start, event-end): Doc fix.
13031 (posn-string, posn-image): New defuns.
13032 (posn-object): Return either image or string object.
13033 (posn-object-x-y): Return 8th element of position.
13034 (posn-object-width-height): New defun.
13035
13036 2004-01-06 Andreas Schwab <schwab@suse.de>
13037
13038 * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
13039 output.
13040
13041 2004-01-05 Karl Berry <karl@gnu.org>
13042
13043 * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
13044 / and *, too.
13045
13046 2003-12-31 Simon Josefsson <jas@extundo.com>
13047
13048 * files.el (before-save-hook): Add.
13049 (basic-save-buffer): Use before-save-hook.
13050
13051 * emacs-lisp/copyright.el: Fix comment to recommend
13052 before-save-hook instead of write-file-functions.
13053
13054 2004-01-05 Richard M. Stallman <rms@gnu.org>
13055
13056 * finder.el (finder-commentary): Call delete-other-windows.
13057
13058 * net/ange-ftp.el (ange-ftp-file-attributes):
13059 Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
13060
13061 2004-01-04 Karl Berry <karl@gnu.org>
13062
13063 * emacs-lisp/copyright.el (copyright-regexp): Allow the common
13064 comment characters % and # in the copyright year notice,
13065 as well as ;.
13066
13067 2004-01-04 Per Abrahamsen <abraham@dina.kvl.dk>
13068
13069 * wid-edit.el (default): Define dummy :value-delete.
13070 Reported by Jesper Harder <harder@ifa.au.dk>.
13071
13072 2004-01-03 Richard M. Stallman <rms@gnu.org>
13073
13074 * progmodes/compile.el (compile-internal): Use point, not point-min,
13075 for set-window-point.
13076
13077 * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
13078
13079 * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
13080
13081 * progmodes/grep.el (grep-mode-map):
13082 Don't remap next-line, previous-line.
13083
13084 2004-01-03 Eric M. Ludlam <eric@siege-engine.com>
13085
13086 * speedbar.el (speedbar-edit-line): Change regexp to position
13087 the cursor on the first character of this line's button.
13088
13089 2004-01-03 Luc Teirlinck <teirllm@auburn.edu>
13090
13091 * subr.el (functionp): Doc fix.
13092
13093 2004-01-03 Jesper Harder <harder@ifa.au.dk> (tiny change)
13094
13095 * progmodes/idlwave.el (idlwave-make-tags):
13096 * textmodes/flyspell.el (flyspell-large-region):.
13097 * progmodes/make-mode.el (makefile-query-by-make-minus-q):
13098 * emulation/viper-util.el (viper-glob-unix-files):
13099 * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
13100 * man.el (Man-init-defvars):
13101 * jka-compr.el (jka-compr-call-process):
13102 * files.el (get-free-disk-space,insert-directory):
13103 * ediff-ptch.el (ediff-test-patch-utility):
13104 * ediff-diff.el (ediff-test-utility):
13105 * dired-aux.el (dired-check-process):
13106 * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
13107 test the return value of call-process, because it can be a string.
13108
13109 2003-12-31 John Paul Wallington <jpw@gnu.org>
13110
13111 * bindings.el (completion-ignored-extensions): Add .pfsl.
13112
13113 2003-12-31 Kim F. Storm <storm@cua.dk>
13114
13115 * ido.el (ido-nonreadable-directory-p): New defun to check for
13116 nonreadable directory without activating tramp (to avoid problems
13117 with checking incomplete tramp paths).
13118 (ido-set-current-directory, ido-file-internal)
13119 (ido-file-name-all-completions1): Use it.
13120
13121 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
13122
13123 * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
13124 documentation if the anchor (or node) name is preceded by `info
13125 anchor' or `Info anchor' in addition to earlier `info node' and
13126 `Info node'.
13127 (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
13128
13129 2003-12-30 Eli Zaretskii <eliz@gnu.org>
13130
13131 * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
13132 error in arguments to base64-decode-region. Remove ^M characters
13133 after decoding base64.
13134
13135 2003-12-30 Simon Josefsson <jas@extundo.com>
13136
13137 * textmodes/texinfo.el: Change maintainer to FSF. Suggested by
13138 karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
13139 have only been distributed with Emacs for some years.
13140 (texinfo-mode-hook): Customize.
13141
13142 2003-12-30 Eli Zaretskii <eliz@gnu.org>
13143
13144 * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
13145 cleaner (suggested by Richard Stallman).
13146
13147 * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
13148 for gud-next, gud-nexti, gud-step and gud-stepi to prevent
13149 file-name clashes on 8+3 DOS filesystems.
13150
13151 * toolbar/gud-next.pbm, toolbar/gud-next.xpm
13152 * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
13153 * toolbar/gud-step.pbm, toolbar/gud-step.xpm
13154 * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
13155 gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
13156 file-name clashes on 8+3 filesystems.
13157
13158 * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
13159 Renamed from testcover-unsafep.el and testcover-ses.el to avoid
13160 file-name clashes on 8+3 DOS filesystems.
13161
13162 2003-12-29 Richard M. Stallman <rms@gnu.org>
13163
13164 * mail/mail-utils.el (mail-unquote-printable-hexdigit):
13165 Upcase the character.
13166
13167 * textmodes/flyspell.el (mail-mode-flyspell-verify):
13168 Search for header separator alone on a line, literally,
13169 and search for it backward, not forward.
13170 (flyspell-abbrev-table): Always use global-abbrev-table
13171 if there is no local one.
13172
13173 * progmodes/sh-script.el (sh-get-indent-info):
13174 Don't move point back if at bob.
13175
13176 * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
13177
13178 * play/handwrite.el (handwrite): Make the handwrite credit message
13179 a comment rather than an output command.
13180
13181 * obsolete/sc.el: Display message that this file is obsolete.
13182
13183 * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
13184
13185 * mail/rfc822.el (rfc822-address-start): Declare variable.
13186 Renamed from address-start. All uses changed.
13187
13188 * term.el (term-exec): Set up sentinel.
13189 (term-sentinel): New function.
13190 (term-handle-exit): New function.
13191
13192 * subr.el (assoc-ignore-case, assoc-ignore-representation):
13193 Use assoc-string, and mark them obsolete.
13194 (delay-mode-hooks): Mark as permanent local.
13195
13196 * simple.el (sendmail-user-agent-compose): Use assoc-string.
13197
13198 * register.el (copy-rectangle-to-register): Doc fix.
13199
13200 * info.el (Info-insert-dir): Use assoc-string.
13201
13202 * info-look.el (info-lookup): Use assoc-string.
13203
13204 * frame.el (pop-up-frame-function): Use quote, not `function'.
13205 (frame-notice-user-settings): Calculate ADJUSTED-TOP
13206 copying with lists as coordinate values.
13207
13208 * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
13209
13210 * find-dired.el (kill-find): New command.
13211 (find-dired): Make buffer read-only.
13212 Set up a keymap with C-c C-k running kill-find.
13213 (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
13214
13215 * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
13216
13217 * filecache.el (file-cache-ignore-case): New variable.
13218 (file-cache-assoc-function): Var deleted. Use assoc-string instead.
13219
13220 * comint.el (comint-arguments): Set COUNT after ARGS is complete.
13221 (comint-dynamic-complete-as-filename): Rename local vars.
13222 (comint-dynamic-list-filename-completions): Likewise.
13223
13224 * comint.el (comint-dynamic-list-completions-config): New var.
13225 (comint-dynamic-list-completions): Handle both SPC and TAB right.
13226
13227 * comint.el (comint-file-name-chars): Add [].
13228 (comint-word): Use skip-chars-backward, not search.
13229
13230 * shell.el (shell-file-name-chars): Add [].
13231
13232 * shell.el (shell-dynamic-complete-as-command): Rename local vars.
13233
13234 * bookmark.el (bookmark-get-bookmark): Use assoc-string.
13235
13236 * generic.el (define-generic-mode): Doc fix.
13237
13238 2003-12-29 Eli Zaretskii <eliz@gnu.org>
13239
13240 * files.el (kill-some-buffers): Doc fix.
13241
13242 2003-12-29 David Herring <sdh6@ra.msstate.edu> (tiny change)
13243
13244 * comint.el (comint-watch-for-password-prompt): Pass `string' as
13245 arg to send-invisible
13246 (send-invisible): Doc fix. The argument is now a prompt, not the
13247 string to send.
13248 (comint-read-noecho): Doc fix.
13249
13250 2003-12-29 Michael R. Wolf <MichaelRWolf@att.net> (tiny change)
13251
13252 * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
13253 "@", as required by some ISP hosting service. Fix defcustom
13254 argument syntax errors that prevented use of customization.
13255
13256 2003-12-29 Eli Zaretskii <eliz@gnu.org>
13257
13258 * xml.el (xml-get-attribute-or-nil): Doc fix.
13259
13260 2003-12-29 Peter 'Luna' Runestig <peter@runestig.com>
13261
13262 * net/zone-mode.el (zone-mode): Use write-file-functions, not
13263 write-file-hooks.
13264
13265 2003-12-29 Eric Hanchrow <offby1@blarg.net> (tiny change)
13266
13267 * autorevert.el (auto-revert-interval): Doc fix.
13268
13269 2003-12-29 Mark A. Hershberger <mah@everybody.org>
13270
13271 * xml.el (xml-get-attribute-or-nil): New function, like
13272 xml-get-attribute, but returns nil if the attribute was not found.
13273 (xml-get-attribute): Convert to defsubst, uses
13274 xml-get-attribute-or-nil.
13275
13276 2003-12-29 Eli Zaretskii <eliz@gnu.org>
13277
13278 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
13279
13280 2003-12-29 Alex Schroeder <alex@emacswiki.org> (tiny change)
13281
13282 * custom.el (custom-declare-theme): Use `value' when putting
13283 properties on `theme'.
13284
13285 2003-12-29 Takaaki Ota <Takaaki.Ota@am.sony.com>
13286
13287 * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
13288 for each yank-handler segment.
13289 (insert-for-yank-1): New function, with the body of the previous
13290 insert-for-yank.
13291
13292 * textmodes/table.el (table-yank-handler): New defcustom.
13293 (table--put-cell-indicator-property): Put yank-handler property
13294 that indicates the yank handler for the table cell.
13295
13296 2003-12-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
13297
13298 * generic-x.el (etc-modules-conf-generic-mode): A more complete
13299 set of keywords.
13300
13301 2003-12-29 Eli Zaretskii <eliz@gnu.org>
13302
13303 * international/mule-cmds.el (reset-language-environment)
13304 (set-language-environment): Don't invoke fontset-related functions
13305 if fontset-list is not fboundp.
13306
13307 2003-12-29 Kenichi Handa <handa@m17n.org>
13308
13309 * international/mule-cmds.el (reset-language-environment):
13310 Call set-overriding-fontspec-internal with nil.
13311 (set-language-environment): Call set-overriding-fontspec-internal
13312 if the language environment specify `overriding-fontspec'.
13313 (language-info-alist): Doc added.
13314
13315 * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
13316 characters of mule-unicode-0100-24ff.
13317 (ccl-encode-windows-1251-font): New CCL program.
13318 ("Bulgarian"): Specify overriding-fontspec.
13319 ("Belarusian"): Likewise.
13320
13321 2003-12-28 Sam Steingold <sds@gnu.org>
13322
13323 * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
13324 parameter ID-FORMAT to conform with the 2003-11-30 patch.
13325
13326 2003-12-28 Nick Roberts <nick@nick.uklinux.net>
13327
13328 * progmodes/gud.el (gud-gdb-command-name): Set default to
13329 "gdb --annotate=3".
13330 (gud-gdb-marker-filter): Look out for annotations.
13331 (gdb-first-pre-prompt): New variable.
13332 Remove trailing white space.
13333
13334 * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
13335 if necessary.
13336 (gdb-ann3): New function. Initialise M-x gdb as for M-x gdba if
13337 annotations are detected.
13338 (gud-gdba-marker-filter): Use global variable gud-marker-acc
13339 instead of a local one to allow transition from
13340 gud-gdb-marker-filter.
13341 Remove trailing white space.
13342
13343 2003-12-27 Kim F. Storm <storm@cua.dk>
13344
13345 * ido.el: Handle non-readable directories.
13346 (ido-decorations): Add 9th element for non-readable directory.
13347 (ido-directory-nonreadable): New dynamic var.
13348 (ido-set-current-directory): Set it.
13349 (ido-read-buffer, ido-file-internal):
13350 (ido-read-file-name, ido-read-directory-name): Let-bind it.
13351 (ido-file-name-all-completions1): Return empty list for
13352 non-readable directory.
13353 (ido-exhibit): Print [Not readable] if directory is not readable.
13354 (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
13355 (ido-read-file-name, ido-file-internal, ido-read-directory-name):
13356 Use it.
13357
13358 2003-12-27 Lars Hansen <larsh@math.ku.dk>
13359
13360 * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
13361 calls to directory-files-and-attributes and file-attributes.
13362 (ls-lisp-format): Remove system dependent handling of user and
13363 group id's.
13364
13365 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
13366
13367 * ffap.el (ffap-read-file-or-url): Revert previous change.
13368
13369 2003-12-25 Robert J. Chassell <bob@rattlesnake.com>
13370
13371 * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
13372 new list of included files called `files-with-node-lines', that
13373 only have node lines. This way @include commands can include any
13374 file, such as version and update files without node lines, not
13375 just files that are chapters.
13376
13377 2003-12-25 Andreas Schwab <schwab@suse.de>
13378
13379 * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
13380 file not found.
13381
13382 2003-12-08 Miles Bader <miles@gnu.org>
13383
13384 * dired.el (dired-between-files): Always use dired-move-to-filename,
13385 which is more robust in non-english locales.
13386
13387 2003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
13388
13389 * vc.el (vc-dired-purge): Avoid error from `kill-line'.
13390
13391 2003-12-24 Andreas Schwab <schwab@suse.de>
13392
13393 * shell.el (shell-file-name-quote-list): Add backslash.
13394
13395 * comint.el (comint-quote-filename): Correctly handle backslash
13396 in comint-file-name-quote-list.
13397
13398 2003-12-24 Kenichi Handa <handa@m17n.org>
13399
13400 * international/mule-cmds.el (set-default-coding-systems):
13401 Call ucs-set-table-for-input for all buffers that don't have local
13402 value of buffer-file-coding-system.
13403
13404 * international/ucs-tables.el (ucs-set-table-for-input):
13405 If translation-table-for-encode is a symbol, get its
13406 translation-table property.
13407
13408 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
13409
13410 * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
13411 to `completing-read' on a recently fixed bug.
13412
13413 * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
13414 instead of SPACE, to get the list of possible fringe modes.
13415 SPACE only works if both `partial-completion-mode' and
13416 `completion-auto-help' are nil.
13417
13418 * complete.el (PC-is-complete-p): Delete.
13419 (PC-do-completion): Replace all calls to `PC-is-complete-p' with
13420 calls to `test-completion'.
13421
13422 2003-12-23 Nick Roberts <nick@nick.uklinux.net>
13423
13424 * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
13425 to edit values when there are no children.
13426
13427 * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
13428 a mode called "Assembler" already exists.
13429 (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
13430 (gud-watch): Use format option. Remove font properties from string.
13431 (gdb-var-create-handler, gdb-var-list-children-handler):
13432 Don't bother about properties as there are none.
13433 (gdb-var-create-handler, gdb-var-list-children-handler)
13434 (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
13435 with two arguments.
13436 (gdb-var-evaluate-expression-handler, gdb-post-prompt):
13437 Let speedbar show value changes with a different font.
13438 (gdb-edit-value): New defun.
13439 (gdb-clear-partial-output, gdb-clear-inferior-io)
13440 (def-gdb-auto-update-handler): Use erase-buffer.
13441 (gdb-frame-handler): Display watch expressions in
13442 FUNCTION::VARIABLE format if required.
13443
13444 2003-12-23 John Paul Wallington <jpw@gnu.org>
13445
13446 * info.el (Info-unescape-quotes, Info-split-parameter-string)
13447 (Info-goto-emacs-command-node): Doc fixes.
13448
13449 2003-12-12 Jesper Harder <harder@ifa.au.dk>
13450
13451 * cus-edit.el (custom-add-parent-links): Define "many".
13452
13453 2003-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
13454
13455 * wid-edit.el (widget-child-value-get, widget-child-value-inline)
13456 (widget-child-validate, widget-type-value-create)
13457 (widget-type-default-get, widget-type-match): New functions.
13458 (lazy): New widget.
13459 (menu-choice, checklist, radio-button-choice, editable-list)
13460 (group, documentation-string): Remove redundant (per 2003-10-25
13461 change) calls to `widget-children-value-delete'.
13462 (widget-choice-value-get, widget-choice-value-inline): Remove.
13463 (menu-choice): Update widget.
13464
13465 2003-12-03 Kenichi Handa <handa@m17n.org>
13466
13467 * language/cyrillic.el: Register "microsoft-cp1251" in
13468 ctext-non-standard-encodings-alist.
13469 ("Bulgarian"): Add ctext-non-standard-encodings.
13470 ("Belarusian"): Likewise.
13471
13472 * international/mule-conf.el (compound-text-with-extensions):
13473 Change the type to 2 (iso-2022 base).
13474
13475 * international/mule.el (ctext-non-standard-encodings-alist):
13476 Change the format.
13477 (ctext-non-standard-encodings): New variable.
13478 (ctext-post-read-conversion): Fully re-written.
13479 (ctext-non-standard-designations-alist): Delete it.
13480 (ctext-non-standard-encodings-table): New function.
13481 (ctext-pre-write-conversion): Fully re-written.
13482
13483 2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
13484
13485 * cus-edit.el (custom-add-parent-links): Add documentation links
13486 for parent, if the item has none of its own.
13487
13488 2003-11-30 Richard M. Stallman <rms@gnu.org>
13489
13490 * dired-aux.el (dired-do-query-replace-regexp):
13491 Report files visited read-only.
13492
13493 2003-11-30 Juri Linkov <juri@jurta.org>
13494
13495 * dired-aux.el (dired-compare-directories): New command.
13496 (dired-file-set-difference, dired-files-attributes): New functions.
13497
13498 2003-11-30 Kai Grossjohann <kai.grossjohann@gmx.net>
13499 Version 2.0.38 of Tramp released.
13500
13501 * net/tramp.el (tramp-chunksize): Extend docstring. Suggested by
13502 Charles Curley <charlescurley@charlescurley.com>.
13503 (tramp-multi-connection-function-alist): Add ssht entry which adds
13504 "-e none -t -t" to the list of ssh args. Suggested by Adrian
13505 Aichner.
13506 (tramp-get-method-parameter): New function to retrieve a method
13507 parameter. This allows for omission of method parameters.
13508 Callers adjusted.
13509
13510 2003-11-30 Michael Albinus <Michael.Albinus@alcatel.de>
13511
13512 * net/tramp.el: Add new optional parameter ID-FORMAT to
13513 `file-attributes'. Calls of `file-attributes' won't use this
13514 parameter for backward compatibility reasons.
13515 (tramp-perl-file-attributes): Add a new parameter to Perl script
13516 in order to handle uid/gid as strings, if desired.
13517 (tramp-handle-file-truename, tramp-handle-file-symlink-p):
13518 Apply `file-attributes' instead of `tramp-handle-file-attributes' in
13519 order to make the function more general.
13520 (tramp-handle-file-attributes): Replace proprietary optional
13521 parameter NONNUMERIC by the recently (Emacs 22.1) introduced ID-FORMAT.
13522 (tramp-handle-file-attributes-with-perl): Handle parameter
13523 NONNUMERIC if set. This wasn't done in the past.
13524 (tramp-post-connection): Apply second parameter "$2" if
13525 `tramp-remote-perl' is called.
13526
13527 * net/tramp-smb.el (tramp-smb-handle-delete-file):
13528 Correct cut'n'waste error (`filename' instead of `directory').
13529 (tramp-smb-handle-directory-files-and-attributes)
13530 (tramp-smb-handle-file-attributes): Add recently (Emacs 22.1)
13531 introduced parameter ID-FORMAT.
13532 (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
13533 error (`directory' instead of `ldir').
13534
13535 * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
13536 `file-attributes' has a second parameter. If yes, apply it with
13537 value "'integer". Otherwise, don't use that parameter (default is
13538 integer format).
13539
13540 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
13541
13542 * help.el (help-map): Bind `display-local-help' to `C-h .'.
13543 (help-for-help): Add `C-h .' to the listed Help options.
13544 Remove trailing whitespace.
13545
13546 * help-at-pt.el: New file.
13547
13548 2003-11-30 Jonathan Yavner <jyavner@member.fsf.org>
13549
13550 * subr.el (noreturn, 1value): New macros for test coverage.
13551 See `testcover.el'.
13552
13553 * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.
13554
13555 * emacs-lisp/testcover.el (testcover-reinstrument): Special case
13556 for macro `1value'.
13557 (testcover-1value): New function. Checks that a 1value form
13558 actually returns only one value. Requested by RMS.
13559
13560 2003-11-29 Nick Roberts <nick@nick.uklinux.net>
13561
13562 * gdb-ui.el (gud-watch, gdb-var-create-handler)
13563 (gdb-var-list-children, gdb-var-list-children-handler)
13564 (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
13565 gdb commands that use mi to keep them out of the command history.
13566
13567 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13568
13569 * cus-start.el (all): Add use-file-dialog.
13570
13571 2003-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
13572
13573 * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
13574
13575 2003-11-27 Kim F. Storm <storm@cua.dk>
13576
13577 * subr.el (posn-object-x-y): New defun.
13578
13579 2003-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
13580
13581 * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
13582 Don't use `space' for \\\n.
13583 Be more selective as to which # are comment-starters.
13584
13585 2003-11-26 Luc Teirlinck <teirllm@auburn.edu>
13586
13587 * subr.el (number-sequence): Improve handling of floating point
13588 arguments (suggested by Kim Storm). Allow negative arguments.
13589
13590 2003-11-26 Kenichi Handa <handa@m17n.org>
13591
13592 * international/mule-cmds.el (standard-display-european-internal):
13593 Cancel the standard-display-table setting for ` and '.
13594
13595 2003-11-26 Kim F. Storm <storm@cua.dk>
13596
13597 * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
13598 New defcustoms to add ffap-like functionality to ido.
13599 (ido-saved-vc-hb): Rename from ido-saved-vc-mt. Uses changed.
13600 (ido-no-final-slash): New defun.
13601 (ido-make-prompt, ido-file-internal, ido-toggle-vc)
13602 (ido-read-file-name): ): Toggle VC checking via
13603 vc-handled-backends instead of vc-master-templates.
13604 (ido-file-internal): Handle ido-use-url-at-point and
13605 ido-use-filename-at-point via code borrowed from ffap-guesser.
13606 Handle new ido-exit code ffap.
13607 (ido-sort-list): Ignore final slash when sorting file names.
13608
13609 2003-11-25 Kim F. Storm <storm@cua.dk>
13610
13611 * emulation/cua-base.el (cua--standard-movement-commands):
13612 Add forward-sentence and backward-sentence.
13613
13614 2003-11-25 Stephen Eglen <stephen@gnu.org>
13615
13616 * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
13617 iswitchb-exit is set to 'usefirst when user selects buffer at head
13618 of list using RET. (Selecting buffers at the head of the list was
13619 broken if the substring was also a complete buffername.)
13620
13621 2003-11-23 Kim F. Storm <storm@cua.dk>
13622
13623 * progmodes/compile.el (grep-command, grep-use-null-device)
13624 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
13625 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
13626 (grep-regexp-alist, grep-program, find-program)
13627 (grep-find-use-xargs, grep-history, grep-find-history)
13628 (grep-process-setup, grep-compute-defaults)
13629 (grep-default-command, grep, grep-tag-default, grep-find)
13630 (grep-expand-command-macros, grep-tree-last-regexp)
13631 (grep-tree-last-files, grep-tree): Move grep variables, functions
13632 and commands to new file grep.el.
13633 (compilation-mode-map): Remove grep commands from Compile sub-menu.
13634 (compilation-process-setup-function): Doc fix.
13635 (compilation-highlight-regexp, compilation-highlight-overlay): New
13636 defvars used for highlighting current compile error in source buffer.
13637 (compile-internal): New optional args HIGHLIGHT-REGEXP and
13638 LOCAL-MAP which overrides compilation-highlight-regexp and
13639 compilation-mode-map for this compilation.
13640 Delay calling compilation-set-window-height until after running
13641 compilation-process-setup-function so it can buffer-local override
13642 compilation-window-height.
13643 Check buffer-local value of compilation-scroll-output.
13644 (compilation-set-window-height): Use buffer-local value of
13645 compilation-window-height.
13646 (compilation-revert-buffer): Don't pass (undefined)
13647 preserve-modes arg to revert-buffer.
13648 (next-error-no-select, previous-error-no-select): New commands.
13649 (compilation-goto-locus): Temporarily highlight current match in
13650 source buffer using compilation-highlight-regexp.
13651
13652 * progmodes/grep.el: New file with grep code from compile.el.
13653 (grep): New defcustom group.
13654 (grep-window-height): New defcustom, like compilation-window-height.
13655 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
13656 (grep-scroll-output): New defcustom, like compilation-scroll-output.
13657 (grep-command, grep-use-null-device, grep-find-command)
13658 (grep-tree-files-aliases, grep-tree-ignore-case)
13659 (grep-tree-ignore-CVS-directories): Move to grep custom group.
13660 (grep-setup-hook): New hook variable.
13661 (grep-mode-map): New keymap for grep commands. Add Grep menu.
13662 (grep-last-buffer): New defvar, override compilation-last-buffer.
13663 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
13664 Call compile-internal with args highlight-regexp and grep-mode-map.
13665
13666 2003-11-23 Kim F. Storm <storm@cua.dk>
13667
13668 * subr.el (event-start, event-end): Doc fix.
13669 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
13670 (posn-area, posn-actual-col-row, posn-object): New defuns.
13671 (posn-col-row): Simplify doc. Rewrite to use cond.
13672 (posn-point): Also return buffer position for events outside text
13673 area (that info is now present in the event position).
13674
13675 * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
13676 mouse-set-point so that hscroll still works now that clicks on
13677 fringes generate specific mouse events.
13678 (mouse-set-point): Note that it now works in fringes and margins
13679 too due to new semantics of posn-point in fringes and margins.
13680
13681 * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
13682 (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
13683
13684 2003-11-20 Kim F. Storm <storm@cua.dk>
13685
13686 * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
13687 (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
13688 (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
13689 to 100 for icons to avoid increasing line height when shown.
13690
13691 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
13692
13693 * newcomment.el (comment-normalize-vars): Initialize properly if
13694 comment-start was nil.
13695
13696 2003-11-19 Andreas Schwab <schwab@suse.de>
13697
13698 * simple.el (set-variable): Fix indentation.
13699
13700 2003-11-17 Kenichi Handa <handa@m17n.org>
13701
13702 * international/latin1-disp.el (latin1-display-ucs-per-lynx):
13703 Fix docstring.
13704
13705 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
13706
13707 * international/latin1-disp.el (latin1-display): Fix docstring.
13708
13709 2003-11-16 John Wiegley <johnw@newartisans.com>
13710
13711 * eshell/em-ls.el (eshell-ls-file): There are times with
13712 size-width is nil and uncomputed (when directories are created in
13713 dired, for example); in this case, 4 is reasonable default value,
13714 although it may caused skewed new entries (which could be avoided
13715 by returning the original value of 8 in all cases, but 99% of the
13716 time this is a waste of whitespace).
13717
13718 2003-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
13719
13720 * cc-engine.el (c-guess-continued-construct)
13721 (c-guess-basic-syntax): Check a little more carefully if it's a
13722 function declaration when an unknown construct followed by a block
13723 is found inside a statement context. This avoids macros followed
13724 by blocks to be taken as function declarations.
13725
13726 (c-guess-continued-construct): Change the analysis of a statement
13727 continuation with a brace open to `substatement-block', for
13728 consistency with recognized statements.
13729
13730 (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
13731 start is in a position so that `c-beginning-of-statement-1' jumped
13732 to the beginning of the same statement.
13733
13734 * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
13735 Don't accept binary operators in the arglist if we're in a function
13736 call context, i.e. if `c-restricted-<>-arglists' is set. That avoids
13737 template recognition in cases like "if (a < b || c > d)".
13738
13739 (c-restricted-<>-arglists): New more appropriate name for
13740 `c-disallow-comma-in-<>-arglists'.
13741
13742 Accessing functions updated for the variable name change.
13743
13744 * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
13745 match data could get clobbered if NOT-INSIDE-TOKEN is used.
13746
13747 * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
13748 labels.
13749
13750 (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
13751 instead of duplicating parts of it. This fixes bogus label
13752 recognition.
13753
13754 * cc-align.el (c-gnu-impose-minimum): Revert to the old method
13755 of checking the context in which to apply the minimum indentation,
13756 so that it isn't enforced in e.g. namespace blocks.
13757
13758 * cc-vars.el (c-inside-block-syms): New constant used by
13759 `c-gnu-impose-minimum'. It's defined close to `c-offsets-alist'
13760 to somewhat reduce the risk of becoming stale.
13761
13762 * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
13763 cc-cmds to cc-engine to allow use from cc-align.
13764
13765 * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
13766 qualified identifiers containing "::".
13767
13768 * cc-defs.el (c-make-keywords-re): Add kludge for bug in
13769 `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
13770
13771 * cc-vars.el (c-emacs-features): Use a space in front of the name
13772 of the temporary buffer. That also avoids dumping problems in
13773 XEmacs due to undo info being left around after the buffer is killed.
13774
13775 * cc-engine.el (c-in-knr-argdecl): Look closer at the function
13776 arglist to see if it's a K&R style declaration.
13777
13778 (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
13779 before returning `knr-argdecl-intro'.
13780
13781 2003-11-16 John Wiegley <johnw@newartisans.com>
13782
13783 * eshell/em-ls.el (eshell-ls-file): Instead of making the size
13784 field in a long-listing always 8 characters, use `size-width',
13785 which has already been computed.
13786
13787 2003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
13788
13789 * subr.el (minor-mode-list): Add `hs-minor-mode'.
13790
13791 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
13792
13793 * diff-mode.el (diff-hunk-prev, diff-hunk-next):
13794 Support operation while narrowed, with `diff-restrict-view'.
13795
13796 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
13797
13798 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
13799 Take additional optional arg NARROWFUN. For the generated functions:
13800 Add local var `was-narrowed-p'. Also, if NARROWFUN is specified,
13801 include frags that arrange to check for and save narrowing state before
13802 the move and then conditionally call NARROWFUN after the move.
13803
13804 2003-11-14 John Wiegley <johnw@newartisans.com>
13805
13806 * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
13807 that was optional, but obviously missing based on surrounding code.
13808
13809 * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
13810 string arguments to numbers unless the whole argument was seen as
13811 a number.
13812
13813 2003-11-14 Kenichi Handa <handa@m17n.org>
13814
13815 * international/mule.el (ctext-non-standard-encodings-alist):
13816 Fix coding systems.
13817
13818 2003-11-10 Kenichi Handa <handa@m17n.org>
13819
13820 * language/kannada.el ("Kannada"): Add sample-text.
13821
13822 * language/knd-util.el (kannada-compose-region)
13823 (kannada-compose-string, kannada-post-read-conversion):
13824 Add autoload cookie.
13825
13826 * international/quail.el (quail-completion): Change the message
13827 "corresponding translations" to "corresponding characters".
13828
13829 2003-11-09 Markus Rost <rost@mathematik.uni-bielefeld.de>
13830
13831 * descr-text.el (describe-char): Fix typo.
13832
13833 2003-11-08 Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
13834
13835 These changes are to support Kannada language/script.
13836
13837 * Makefile.in (DONTCOMPILE): Add kannada.el.
13838
13839 * makefile.w32-in (DONTCOMPILE): Add kannada.el.
13840
13841 * loadup.el: Preload kannada.el.
13842
13843 * language/ind-util.el (ucs-kannada-to-is13194-alist)
13844 (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
13845 New variables.
13846
13847 * language/kannada.el: New file.
13848
13849 * language/knd-util.el: New file.
13850
13851 2003-11-07 Andreas Schwab <schwab@suse.de>
13852
13853 * progmodes/autoconf.el (autoconf-font-lock-keywords):
13854 Also highlight AH_*.
13855
13856 * xml.el (xml-parse-dtd): Fix misplaced paren.
13857
13858 2003-11-07 Kenichi Handa <handa@m17n.org>
13859
13860 * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
13861
13862 2003-11-05 Juri Linkov <juri@jurta.org>
13863
13864 * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
13865 (desktop-buffer-file): Use saved buffer-file-coding-system
13866 for file reading. Set auto-insert to nil to prevent automatic
13867 insertion into restored empty files.
13868
13869 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
13870
13871 * files.el (risky-local-variable-p): Make second argument optional.
13872
13873 2003-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
13874
13875 * subr.el (add-hook): Fix last change.
13876
13877 2003-11-03 Eli Zaretskii <eliz@gnu.org>
13878
13879 * mail/rmail.el (rmail-convert-to-babyl-format):
13880 If base64-decode-region signals an error, catch it and silently
13881 ignore it.
13882
13883 2003-11-01 Mark A. Hershberger <mah@everybody.org>
13884
13885 * xml.el (xml-parse-region): Allow comments to appear after the
13886 topmost element has closed.
13887 (xml-ns-parse-ns-attrs, xml-ns-expand-el)
13888 (xml-ns-expand-attr): New functions to do namespace handling.
13889 (xml-intern-attrlist): Back-compatible handling of attribute names.
13890 (xml-parse-tag): Move namespace handling to separate functions.
13891 Now produces elements in the form ((:ns . "element") (attr-list)
13892 children) instead of ('ns:element (attr-list) children).
13893 (xml-parse-attlist): Fix attribute parsing.
13894 (xml-parse-dtd): Change parsing so that it produces strings
13895 instead of interned symbols.
13896
13897 2003-11-01 era@iki.fi <era@iki.fi> (tiny change)
13898
13899 * dired.el (dired-ls-sorting-switches): Doc fix.
13900
13901 2003-11-01 Oliver Scholz <epameinondas@gmx.de>
13902
13903 * emacs-lisp/rx.el (rx-or): Fix the case of
13904 "(rx (and ?a (or ?b ?c) ?d))".
13905
13906 2003-11-01 Christoph Wedler <wedler@users.sourceforge.net> (tiny change)
13907
13908 * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
13909 (texinfo-format-region): Use it.
13910 (texinfo-format-buffer-1): Ditto.
13911
13912 2003-11-01 Alan Mackenzie <acm@muc.de>
13913
13914 Changes to allow scrolling whilst in isearch mode:
13915 * isearch.el (isearch-unread-key-sequence): New function,
13916 extracted from isearch-other-meta-char.
13917 (top level): (put 'foo 'isearch-scroll) on all Emacs's
13918 "scrollable" standard functions.
13919 (isearch-allow-scroll): New customizable variable.
13920 (isearch-string-out-of-window, isearch-back-into-window)
13921 (isearch-reread-key-sequence-naturally)
13922 (isearch-lookup-scroll-key): New functions.
13923 (isearch-other-meta-char): Doc string and functionality enhanced.
13924 Now accepts a prefix argument.
13925 (isearch-lazy-highlight-window-end): New variable.
13926 (isearch-lazy-highlight-new-loop): Pay attention to the window's
13927 end (thru isearch-lazy-highlight-window-end), not only its start.
13928
13929 * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
13930 (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
13931 (universal-argument, universal-argument-more, negative-argument)
13932 (digit-argument, universal-argument-other-key): Minor changes.
13933
13934 2003-11-01 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
13935
13936 * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
13937 recursively if the last message is deleted, thus avoiding an
13938 infinite loop.
13939
13940 2003-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
13941
13942 * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
13943 (tex-main-file): Don't add .tex if the extension is already present.
13944 (tex-uptodate-p): Don't recurse indefinitely with symlinks.
13945
13946 2003-10-29 Lute Kamstra <lute@gnu.org>
13947
13948 * progmodes/octave-inf.el (inferior-octave-prompt):
13949 Recognize version number in prompt.
13950
13951 2003-10-28 Dave Love <fx@gnu.org>
13952
13953 * international/characters.el: Fix some Unicode ranges.
13954
13955 2003-10-28 Kenichi Handa <handa@m17n.org>
13956
13957 * disp-table.el (standard-display-8bit)
13958 (standard-display-default, standard-display-ascii)
13959 (standard-display-g1, standard-display-graphic)
13960 (standard-display-underline): Assure that standard-display-table
13961 is a display table.
13962
13963 2003-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
13964
13965 * simple.el (reindent-then-newline-and-indent): Delete space *after*
13966 reindenting the first line.
13967
13968 2003-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
13969
13970 * wid-edit.el (widget-default-delete): Always delete child widgets.
13971
13972 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13973
13974 * newcomment.el (comment-indent): Don't call indent-according-to-mode
13975 if the line has code.
13976 Don't try to line up with something that's too far left.
13977
13978 * progmodes/octave-mod.el (octave-comment-start): Simplify.
13979 (octave-mode-syntax-table): Add % as a comment starter.
13980 (octave-point): Remove.
13981 (octave-in-comment-p, octave-in-string-p)
13982 (octave-not-in-string-or-comment-p, calculate-octave-indent)
13983 (octave-blink-matching-block-open, octave-auto-fill):
13984 Use line-(beginning|end)-position instead.
13985
13986 2003-10-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
13987
13988 * emacs-lisp/authors.el (authors-aliases): Add correct realname
13989 for Francesco Potort\e,Al\e(B.
13990
13991 2003-10-23 Dave Love <fx@gnu.org>
13992
13993 * international/mule-cmds.el (locale-charset-to-coding-system):
13994 Don't rely on nil being a coding system.
13995
13996 * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
13997 (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
13998 (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
13999
14000 2003-10-21 Nick Roberts <nick@nick.uklinux.net>
14001
14002 * gdb-ui.el (gdb-current-language): New variable.
14003 (gdb-update-flag): Remove variable.
14004 (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
14005 (gdb-take-last-elt): Remove function.
14006 (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
14007 (gdb-post-prompt): Check for variable object changes here.
14008
14009 * progmodes/gud.el (gud-speedbar-buttons): Check for variable
14010 object changes in gdb-ui.el.
14011
14012 2003-10-21 Richard M. Stallman <rms@gnu.org>
14013
14014 * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
14015
14016 * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
14017 Don't check for foo*/ wildcard form here.
14018 (insert-directory): Recognize foo*/ as a wildcard.
14019 Separate wildcard-regexp variable from the arg, wildcard.
14020
14021 * subr.el (add-hook): Correctly detect when make-local-hook was used.
14022 (remove-hook): Correctly handle strange cases about local hooks.
14023
14024 2003-10-21 David Ponce <david@dponce.com>
14025
14026 * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
14027 argument REAL, to return a real number instead of a rounded
14028 integer value. Define as inline function.
14029 (ruler-mode-right-fringe-cols): Likewise.
14030 (ruler-mode-scroll-bar-cols): New function.
14031 (ruler-mode-left-scroll-bar-cols): Use it. Define as macro.
14032 (ruler-mode-right-scroll-bar-cols): Likewise.
14033 (ruler-mode-space): New function.
14034 (ruler-mode-ruler): Use it. Handle variations of fringe style,
14035 scroll bar mode and margins in a more robust way.
14036
14037 2003-10-21 Christoph Wedler <Christoph.Wedler@sap.com>
14038
14039 * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
14040 (antlr-c-init-language-vars): New function.
14041 (antlr-mode): Use it with cc-mode before v5.29.
14042 (antlr-c-common-init): Don't set some local vars here.
14043 (antlr-mode): Set them here.
14044 (antlr-c-forward-sws): New function alias.
14045 (antlr-mode): Redefine with cc-mode before v5.30.
14046 (antlr-skip-sexps): Use it.
14047 (antlr-skip-exception-part): Ditto.
14048 (antlr-skip-file-prelude): Ditto.
14049 (antlr-outside-rule-p): Ditto.
14050 (antlr-end-of-body): Ditto.
14051 (antlr-option-kind): Ditto.
14052 (antlr-insert-option-area): Ditto.
14053 (antlr-file-dependencies): Ditto.
14054
14055 2003-10-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14056
14057 * textmodes/bibtex.el (bibtex-move-outside-of-entry):
14058 Move backward only if point was not inside an entry.
14059
14060 2003-10-21 Richard M. Stallman <rms@gnu.org>
14061
14062 * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
14063
14064 2003-10-21 Juri Linkov <juri@jurta.org>
14065
14066 * compare-w.el: Automatically skip non-matching text to resync.
14067 (compare-windows-whitespace): Doc fix.
14068 (compare-windows-sync, compare-windows-sync-string-size)
14069 (compare-windows-recenter, compare-ignore-whitespace)
14070 (compare-windows-highlight, compare-windows-face): New variables.
14071 (compare-windows): Use compare-windows-sync.
14072 (compare-windows-highlight, compare-windows-dehighlight)
14073 (compare-windows-sync-regexp)
14074 (compare-windows-sync-default-function): New functions.
14075
14076 2003-10-21 Juri Linkov <juri@jurta.org>
14077
14078 * diff.el (diff-parse-differences): Don't visit the files now;
14079 instead, just record the error locus.
14080
14081 2003-10-21 Dave Love <fx@gnu.org>
14082
14083 * progmodes/cfengine.el: New file.
14084
14085 2003-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
14086
14087 * complete.el (PC-do-completion): Do not forget to use `pred' as the
14088 default-directory when completing file names.
14089
14090 2003-10-20 Luc Teirlinck <teirllm@auburn.edu>
14091
14092 * help-mode.el (help-make-xrefs): Make sure that if a symbol is
14093 followed by the word `face', it gets treated as a face, even if
14094 it is also defined as a variable or a function.
14095
14096 2003-10-20 Dave Love <fx@gnu.org>
14097
14098 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
14099 Avoid incf in macro expansion.
14100
14101 2003-10-20 John Paul Wallington <jpw@gnu.org>
14102
14103 * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
14104 `evenp' so we don't implicitly require cl library at runtime.
14105
14106 2003-10-18 Luc Teirlinck <teirllm@auburn.edu>
14107
14108 * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
14109 (help-make-xrefs): Only make cross-references for faces if
14110 preceded or followed by the word `face'. Do not make a
14111 cross-reference for variables without variable documentation,
14112 unless preceded by the word `variable' or `option'. Update doc
14113 string accordingly.
14114
14115 2003-10-18 Thien-Thi Nguyen <ttn@gnu.org>
14116
14117 * progmodes/hideshow.el: Rewrite one-armed `if'
14118 constructs using either `when' or `unless'.
14119 (hs-grok-mode-type): Elide superfluous `progn'; nfc.
14120
14121 2003-10-16 Nick Roberts <nick@nick.uklinux.net>
14122
14123 * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
14124 (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
14125 instead of 12x12.
14126
14127 2003-10-16 Eli Zaretskii <eliz@gnu.org>
14128
14129 * mail/rmail.el (rmail-convert-to-babyl-format): Display a
14130 message while converting to Babyl.
14131
14132 2003-10-16 Vadim Nasardinov <vadimn@redhat.com> (tiny change)
14133
14134 * allout.el (allout-mode): Doc fix.
14135
14136 2003-10-16 Lute Kamstra <lute@gnu.org>
14137
14138 * subr.el (force-mode-line-update): Fix docstring.
14139
14140 2003-10-14 Dave Love <fx@gnu.org>
14141
14142 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
14143 (default-input-method): Add :link, improve :type.
14144 (locale-charset-language-names): Fix utf-8 pattern.
14145 (locale-charset-match-p, locale-charset-alist)
14146 (locale-charset-to-coding-system): New.
14147 (set-locale-environment): Deal with codeset part of locale specs.
14148
14149 2003-10-14 Lute Kamstra <lute@gnu.org>
14150
14151 * fringe.el (fringe-mode): Use active voice in docstring.
14152 (set-fringe-style): Ditto.
14153
14154 2003-10-13 Lute Kamstra <lute@gnu.org>
14155
14156 * fringe.el (fringe-mode): Fix docstring.
14157 (set-fringe-style): Ditto.
14158
14159 2003-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
14160
14161 * ediff-mult.el (ediff-filegroup-action):
14162 Use ediff-default-filtering-regexp.
14163
14164 * ediff-util.el (ediff-recenter): Don't call
14165 ediff-restore-highlighting twice.
14166 (ediff-select-difference): Set current difference.
14167 (ediff-unselect-and-select-difference): Add comment.
14168
14169 * ediff.el (ediff-directories,ediff-directory-revisions)
14170 (ediff-directories3,ediff-merge-directories)
14171 (ediff-merge-directories-with-ancestor)
14172 (ediff-merge-directory-revisions)
14173 (ediff-merge-directory-revisions-with-ancestor):
14174 Use ediff-default-filtering-regexp.
14175
14176 2003-10-12 Andreas Schwab <schwab@suse.de>
14177
14178 * international/mule-cmds.el (locale-charset-language-names):
14179 Simplify regex by removing unused grouping.
14180
14181 2003-10-10 Dave Love <fx@gnu.org>
14182
14183 * bindings.el: Don't bind stop.
14184
14185 2003-10-08 Miles Bader <miles@gnu.org>
14186
14187 * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
14188 face instead of attempting to emulate it.
14189
14190 2003-10-07 Kenichi Handa <handa@m17n.org>
14191
14192 * international/mule-diag.el (list-coding-systems-1): List coding
14193 systems that are loaded automatically.
14194
14195 * international/code-pages.el (iso-8859-11): Add autoload cookie.
14196
14197 * international/mule.el (autoload-coding-system): New function.
14198
14199 2003-10-07 Andreas Schwab <schwab@suse.de>
14200
14201 * log-edit.el (log-edit-changelog-entries): Prefer local value of
14202 change-log-default-name in the buffer visiting the file.
14203
14204 2003-10-06 Dave Love <fx@gnu.org>
14205
14206 * files.el (find-file-hook): Customize.
14207 (auto-mode-alist): Add .stk, .ss, .sch, .orig.
14208
14209 * bindings.el (completion-ignored-extensions): Remove .log.
14210 (global-map): Add again, open, stop keys.
14211
14212 2003-10-05 Richard M. Stallman <rms@gnu.org>
14213
14214 * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
14215 (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
14216 Use sh-modify directly.
14217 (sh-select): Use sh-append, not eval.
14218
14219 * mail/emacsbug.el (report-emacs-bug): Fix previous change.
14220
14221 * info.el (Info-following-node-name): New function.
14222
14223 * loadhist.el (unload-feature-special-hooks):
14224 Rename from loadhist-hook-functions.
14225 (loadhist-hook-functions): Now an alias.
14226
14227 2003-10-04 Eli Zaretskii <eliz@gnu.org>
14228
14229 * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
14230 file-name clashes on 8+3 filesystems.
14231
14232 * Makefile.in (DONTCOMPILE, bootstrap-clean):
14233 Rename loaddefs-boot.el to ldefs-boot.el
14234
14235 * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
14236 (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
14237
14238 2003-10-03 Lute Kamstra <lute@gnu.org>
14239
14240 * info.el (Info-mode): Revert previous change.
14241 (Info-escape-percent): New function.
14242 (Info-fontify-node): Use it.
14243
14244 2003-10-02 Andreas Schwab <schwab@suse.de>
14245
14246 * loaddefs-boot.el: Regenerated.
14247
14248 2003-10-01 Rajesh Vaidheeswarran <rv@gnu.org>
14249
14250 * ffap.el: Remove defadvice related code from CVS since `complete'
14251 provides a `PC-completion-as-file-name-predicate' variable that
14252 ffap can override.
14253
14254 2003-10-02 Kenichi Handa <handa@m17n.org>
14255
14256 * international/utf-8.el (ccl-decode-mule-utf-8):
14257 Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
14258
14259 * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
14260 * international/subst-big5.el: Likewise.
14261 * international/subst-gb2312.el: Likewise.
14262 * international/subst-ksc.el: Likewise.
14263
14264 2003-10-01 Glenn Morris <gmorris@ast.cam.ac.uk>
14265
14266 * calendar/calendar.el (increment-calendar-month)
14267 (calendar-leap-year-p, calendar-absolute-from-gregorian)
14268 (generate-calendar, calendar-read-date, calendar-interval)
14269 (calendar-day-of-week): Handle years BC.
14270 (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
14271
14272 2003-10-01 Dave Love <fx@gnu.org>
14273
14274 * language/cyrillic.el (cp1251): Alias for windows-1251.
14275
14276 * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
14277 bootstrap.
14278
14279 2003-10-01 Lute Kamstra <lute@gnu.org>
14280
14281 * files.el: Fix typo.
14282 * imenu.el (imenu--generic-function): Docstring fix.
14283
14284 2003-09-30 Richard M. Stallman <rms@gnu.org>
14285
14286 * dired.el (dired-mode): Handle dired-directory as a list.
14287
14288 2003-09-30 Nick Roberts <nick@nick.uklinux.net>
14289
14290 * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
14291
14292 * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
14293
14294 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
14295 Replace gud-display with gud-watch.
14296 (gud-speedbar-buttons): Add stuff for watching expressions
14297 in the speedbar when using M-x gdba. Use dolist on old part
14298 of this function.
14299
14300 * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
14301 (gdb-update-flag): New variables.
14302 (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
14303 (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
14304 (gud-watch, gdb-var-create-handler) : New functions.
14305 (gdb-var-list-children, gdb-var-list-children-handler)
14306 (gdb-var-create-regexp, gdb-var-update-regexp)
14307 (gdb-var-list-children-regexp): New constants.
14308 (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
14309 (gdb-annotation-rules): Reduce annotation set (level 3).
14310 (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
14311 (gdb-post-prompt): Don't update GDB buffers every time speedbar
14312 updates.
14313 (gdb-window-height, gdb-window-width, gdb-display-in-progress)
14314 (gdb-expression-buffer-name, gdb-display-number, gdb-point)
14315 (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
14316 (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
14317 (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
14318 (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
14319 (gdb-expressions-mode-menu, gdb-dive): Remove variables.
14320 (gud-display, gud-display1)
14321 (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
14322 (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
14323 (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
14324 (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
14325 (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
14326 (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
14327 (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
14328 (gdb-display-display-buffer, gdb-toggle-display)
14329 (gdb-delete-display, gdb-expressions-popup-menu)
14330 (gdb-expressions-mode, gdb-array-visualise): Remove functions.
14331 (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
14332 to display buffer.
14333
14334 2003-09-30 Richard M. Stallman <rms@gnu.org>
14335
14336 * progmodes/ada-mode.el (ada-mode): Don't use advice.
14337 Instead, set which-func-functions.
14338
14339 * progmodes/which-func.el (which-func-modes): Add ada-mode.
14340 (which-func-functions): New variable.
14341 (which-function): Use that.
14342
14343 * info.el (Info-mode): Double each `%' in header line.
14344
14345 * emacs-lisp/lisp-mnt.el (lm-with-file):
14346 When FILE is nil, run BODY in current buffer.
14347
14348 * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
14349
14350 * help.el (describe-mode): Start with a brief list of minor modes.
14351 Find them thru minor-mode-list so as to find them all.
14352 Show them in alphabetical order.
14353
14354 * mail/sendmail.el (mail-aliases): Doc fix.
14355
14356 * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
14357
14358 2003-09-30 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
14359
14360 * mail/rmailsum.el (rmail-make-summary-line-1):
14361 Change comma after last label to a space.
14362 (rmail-summary-font-lock-keywords): Adapt to that change.
14363
14364 2003-09-30 Thien-Thi Nguyen <ttn@gnu.org>
14365
14366 * progmodes/scheme.el (scheme-mode-variables): When setting
14367 `font-lock-defaults', also specify that "#" should
14368 be interpreted with `word' syntax.
14369 (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
14370
14371 2003-09-30 Lars Hansen <larsh@math.ku.dk>
14372
14373 * desktop.el: A lot of comments updated.
14374 (desktop-save-mode): Minor mode introduced.
14375 (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
14376 (desktop-load-default): Function made obsolete.
14377 (desktop-locals-to-save): Variable made customizable.
14378 (desktop-read): Optional parameter `dirname' added.
14379 (desktop-change-dir, desktop-revert): Parameter `dirname' in
14380 `desktop-read' used.
14381 (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
14382
14383 2003-09-29 Rajesh Vaidheeswarran <rv@gnu.org>
14384
14385 * whitespace.el (whitespace-clean-msg): Add user customizable message
14386 for displaying ``clean'' output.
14387 (whitespace-buffer): Use `whitespace-clean-msg'.
14388 (whitespace-global-mode): Fix typo.
14389
14390 2003-09-29 Thien-Thi Nguyen <ttn@gnu.org>
14391
14392 * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
14393
14394 2003-09-29 Lute Kamstra <lute@gnu.org>
14395
14396 * bindings.el (mode-line-modes): Remove superfluous :propertize
14397 construct in initialization.
14398 (mode-line-position): Change cons cell into proper list in
14399 initialization.
14400
14401 2003-09-29 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
14402
14403 * international/mule.el (decode-coding-inserted-region): Use car
14404 of the return value of find-operation-coding-system.
14405
14406 2003-09-29 Kenichi Handa <handa@m17n.org>
14407
14408 * descr-text.el (describe-char): Fix previous change.
14409
14410 2003-09-28 Kenichi Handa <handa@m17n.org>
14411
14412 * descr-text.el (describe-char-display): New function.
14413 (describe-char): Pay attention to display table on describing how
14414 a character is displayed.
14415
14416 * international/mule-cmds.el (encoded-string-description):
14417 Prepend "0x" to each encoded byte.
14418
14419 2003-09-28 Andreas Schwab <schwab@suse.de>
14420
14421 * find-file.el (ff-special-constructs): Add autoload cookie.
14422
14423 2003-09-28 Kevin Ryde <user42@zip.com.au>
14424
14425 * info.el (Info-find-index-name): Remove any "<n>" suffixes which
14426 makeinfo appends to duplicate index entries.
14427
14428 2003-09-28 Eli Zaretskii <eliz@gnu.org>
14429
14430 * dired-x.el (dired-clean-tex): Doc fix.
14431
14432 * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
14433 using a Chinese tutorial.
14434
14435 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
14436
14437 * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
14438 between "MAIL FROM:" and "RCPT TO:" and the following address.
14439
14440 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
14441
14442 * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
14443
14444 2003-09-28 David Ponce <david@dponce.com>
14445
14446 * recentf.el (recentf-initialize-file-name-history): New defcustom.
14447 (recentf-load-list): When `recentf-initialize-file-name-history'
14448 is non-nil, initialize an empty `file-name-history' with the
14449 recent list.
14450
14451 2003-09-28 Evgeni Dobrev <evgeni_dobrev@developer.bg> (tiny change)
14452
14453 * man.el (Man-default-man-entry): Remove the leading `*' from the
14454 word at point.
14455
14456 2003-09-26 Lute Kamstra <lute@gnu.org>
14457
14458 * bindings.el (mode-line-position): Mention size indication in
14459 docstring.
14460
14461 2003-09-26 Andre Spiegel <spiegel@gnu.org>
14462
14463 * calendar/parse-time.el (parse-time-string): Add autoload cookie.
14464
14465 * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
14466 because it's autoloaded now.
14467
14468 2003-09-25 Glenn Morris <gmorris@ast.cam.ac.uk>
14469
14470 * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
14471 (sh-font-lock-keywords, sh-feature): Fix previous change of
14472 sh-feature to avoid infloop with sh-font-lock-keywords.
14473
14474 2003-09-25 Kim F. Storm <storm@cua.dk>
14475
14476 * frame.el (frame-current-scroll-bars): New defun.
14477
14478 * window.el (window-current-scroll-bars): New defun.
14479
14480 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
14481
14482 * progmodes/cc-engine.el (c-parse-state): Fix bug that could
14483 cause errors when the state cache contains info on parts that have
14484 been narrowed out.
14485
14486 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
14487
14488 * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
14489 `c-setup-paragraph-variables' has to be used when this variable is
14490 changed; it doesn't work to reinitialize the mode since that
14491 typically clobbers the variable.
14492
14493 * progmodes/cc-styles.el (c-setup-paragraph-variables):
14494 Make it interactive.
14495
14496 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
14497
14498 * progmodes/cc-fonts.el (c-font-lock-declarations):
14499 Fix recognition of constructors and destructors for classes whose
14500 names are matched by `*-font-lock-extra-types'.
14501
14502 * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
14503 followed by an identifier in C++ then it's a type.
14504
14505 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
14506
14507 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
14508 problem that primarily affected XEmacs. Don't use faces to find
14509 unterminated strings since Emacs and XEmacs fontify strings
14510 differently - this function should now work better in XEmacs.
14511
14512 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
14513
14514 * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
14515 `expand-abbrev' workaround which caused braces to misbehave inside
14516 macros.
14517
14518 * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
14519 handling. This bug could cause interactive font locking to bail out.
14520
14521 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
14522
14523 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
14524 Handle paren-style types in Pike. Also fixed some cases of
14525 insufficient handling of unbalanced parens.
14526
14527 2003-09-24 Rajesh Vaidheeswarran <rv@gnu.org>
14528
14529 * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
14530 common shell prompts that are not common filename or URL characters.
14531 (ffap-file-at-point): Use the new regexp to strip the prompts from
14532 the file names. This is an issue mostly for user prompts that
14533 don't have a trailing space and find-file-at-point is invoked from
14534 within a shell inside Emacs.
14535
14536 2003-09-24 Andre Spiegel <spiegel@gnu.org>
14537
14538 * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
14539 stamps numerically, rather than textually.
14540
14541 2003-09-24 Kenichi Handa <handa@m17n.org>
14542
14543 * language/devan-util.el (devanagari-post-read-conversion):
14544 * language/mlm-util.el (malayalam-post-read-conversion):
14545 * language/tml-util.el (tamil-post-read-conversion):
14546 Add autoload cookie.
14547
14548 * international/utf-8.el (utf-8-post-read-conversion):
14549 Call post-read-conversion functions for Devanagari, Malayalam,
14550 and Tamil.
14551
14552 2003-09-23 Dave Love <fx@gnu.org>
14553
14554 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
14555
14556 2003-09-22 Nick Roberts <nick@nick.uklinux.net>
14557
14558 * progmodes/gud.el (perldb): Add gud-until to list of commands.
14559 Update gud-remove.
14560
14561 2003-09-22 Richard M. Stallman <rms@gnu.org>
14562
14563 * progmodes/sh-script.el (sh-mode-default-syntax-table):
14564 Rename from sh-mode-syntax-table. Call sh-mode-syntax-table directly.
14565 (sh-mode-syntax-table-input): New variable.
14566 (sh-require-final-newline): Don't use eval.
14567 (sh-builtins, sh-leading-keywords, sh-other-keywords)
14568 (sh-variables, sh-font-lock-keywords): Don't use eval.
14569 (sh-set-shell): When setting require-final-newline,
14570 treat value = `require-final-newline' as don't change it.
14571 Set sh-mode-syntax-table locally based on
14572 sh-mode-syntax-table-input and sh-mode-default-syntax-table.
14573
14574 * progmodes/compile.el (compile-internal):
14575 Call compilation-set-window-height before setting window start.
14576
14577 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change)
14578
14579 * emacs-lisp/bytecomp.el (byte-compile-log-file):
14580 Clear out byte-compile-last-warned-form.
14581
14582 2003-09-22 Richard M. Stallman <rms@gnu.org>
14583
14584 * woman.el (woman-file-name, woman-follow-word):
14585 If current-word returns nil, use "".
14586
14587 * simple.el (eval-expression): Bind standard-output in to-buffer case.
14588
14589 2003-09-22 Richard M. Stallman <rms@gnu.org>
14590
14591 * emacs-lisp/lisp-mnt.el (lm-with-file):
14592 Don't visit the file, just use insert-file-contents in temp buffer.
14593
14594 2003-09-22 Jari Aalto <jari.aalto@poboxes.com>
14595
14596 * emacs-lisp/lisp-mnt.el (lm-get-header-re):
14597 Add surrounding \\( and \\) around the header, as in
14598 for lm-history-header 'Change Log\\|History'.
14599
14600 2003-09-22 John Paul Wallington <jpw@gnu.org>
14601
14602 * progmodes/ld-script.el: Add Commentary section,
14603 minor cleanup of file header.
14604 (ld-script-font-lock-keywords): Doc fix.
14605 (toplevel): Provide `ld-script' feature.
14606
14607 2003-09-21 Kim F. Storm <storm@cua.dk>
14608
14609 * scroll-bar.el (set-scroll-bar-mode): Initialize to
14610 new built-in variable default-frame-scroll-bars.
14611 (scroll-bar-mode): Use default-frame-scroll-bars when enabling
14612 scroll-bar-mode; notably, use it instead of t when we toggle
14613 scroll-bars on.
14614 (toggle-scroll-bar): Use default-frame-scroll-bars.
14615
14616 2003-09-19 Masatake YAMATO <jet@gyve.org>
14617
14618 * pcvs.el (cvs-do-removal): Change the prompt depending on
14619 `filter' value.
14620
14621 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk>
14622
14623 * startup.el (command-line-1): Stop startup-echo-area-message
14624 being hidden by "Loading image..." message.
14625 (use-fancy-splash-screens-p, display-splash-screen):
14626 Move display-graphic-p test from latter to former.
14627
14628 * progmodes/sh-script.el (sh-font-lock-keywords):
14629 Highlight escaped EOLs differently from other backslash constructs.
14630
14631 2003-09-19 Richard M. Stallman <rms@gnu.org>
14632
14633 * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
14634 New functions.
14635 (edebug-enter, edebug-outside-excursion): Use them.
14636
14637 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
14638 Fix the condition for whether to print "In WHERE".
14639
14640 2003-09-19 Jari Aalto <jari.aalto@poboxes.com>
14641
14642 * finder.el (finder-mode-hook): New variable.
14643 (finder-mode): Run hook finder-mode-hook
14644
14645 2003-09-18 Masatake YAMATO <jet@gyve.org>
14646
14647 * progmodes/ebrowse.el: Fix broken magic autoload comments.
14648
14649 2003-09-17 Mario Lang <mlang@delysid.org>
14650
14651 * progmodes/gud.el (perldb): Change gud-print from just "%e" to
14652 "p %e" to actually print the value in the GUD buffer.
14653
14654 2003-09-16 Miles Bader <miles@gnu.ai.mit.edu>
14655
14656 From David Ponce <david.ponce@wanadoo.fr>:
14657 * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
14658 (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
14659 from loaddefs-boot.el if necessary.
14660
14661 2003-09-15 Zoltan Kemenczy <kemenczy@rogers.com>
14662
14663 * progmodes/gud.el (gud-find-class): Make jdb work again since
14664 cc-mode changed the syntactic information.
14665
14666 2003-09-15 David Ponce <david@dponce.com>
14667
14668 * recentf.el: (recentf-exclude): Accept predicates too.
14669 (recentf-file-readable-p): New function.
14670 (recentf-include-p): Handle predicates in recentf-exclude.
14671 (recentf-add-file): Doc fix. Use recentf-file-readable-p.
14672 (recentf-cleanup): Likewise.
14673 (recentf-save-list): Use write-file to handle backup of
14674 recentf-save-file.
14675
14676 2003-09-15 Miles Bader <miles@gnu.ai.mit.edu>
14677
14678 * loaddefs-boot.el: Renamed from `loaddefs.el'
14679 * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
14680 (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
14681 necessary.
14682
14683 2003-09-13 Thien-Thi Nguyen <ttn@gnu.org>
14684
14685 * electric.el (Electric-pop-up-window): For the `one-window' case,
14686 no longer disconcertingly move point in the original buffer.
14687
14688 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14689
14690 * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
14691
14692 2003-09-12 Eric Hanchrow <offby1@blarg.net> (tiny change)
14693
14694 * dired.el (dired-mode-map): Fix typo.
14695
14696 2003-09-11 Richard M. Stallman <rms@gnu.org>
14697
14698 * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
14699
14700 2003-09-11 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
14701
14702 * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
14703 the function is less noisy. Now only `kill-buffer' can ask questions.
14704
14705 2003-09-10 Mario Lang <mlang@delysid.org>
14706
14707 * battery.el: Update Commentary and Copyright.
14708 (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
14709 appear due to wrong ordering of the expressions in `or'.
14710
14711 2003-09-09 Lute Kamstra <lute@gnu.org>
14712
14713 * misc.el (upcase-char): Fix docstring.
14714 (zap-up-to-char): New command.
14715
14716 2003-09-08 David Ponce <david@dponce.com>
14717
14718 Ensure that recentf correctly updates the menu bar.
14719 * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
14720 (recentf-menu-bar): New function.
14721 (recentf-clear-data): Use it
14722 (recentf-update-menu): Likewise. Use easy-menu-add-item instead
14723 of easy-menu-change.
14724
14725 2003-09-08 Lute Kamstra <lute@gnu.org>
14726
14727 * simple.el (size-indication-mode): New.
14728 * bindings.el (mode-line-position): Add buffer size indicator.
14729
14730 2003-09-04 Mario Lang <mlang@delysid.org>
14731
14732 * battery.el (battery-linux-proc-acpi): New function.
14733 (battery-status-function): Modify default value calculation to also
14734 check for availability of ACPI.
14735 (battery-echo-area-format): Ditto.
14736 (battery-mode-line-format): Ditto.
14737
14738 2003-09-06 Dave Love <fx@gnu.org>
14739
14740 * ielm.el (ielm-mode-hook): Add :options.
14741
14742 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
14743 (eldoc-print-current-symbol-info): Use it.
14744
14745 2003-09-04 Nick Roberts <nick@nick.uklinux.net>
14746
14747 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
14748 being displayed in GUD buffer.
14749 (gdb-idle-input-queue): Remove var. Use just one queue.
14750 (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
14751 Remove functions. Use just one queue.
14752 (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
14753 (gdb-invalidate-assembler, gdb-get-current-frame):
14754 Modify functions. Use just one queue.
14755
14756 2003-09-04 Dave Love <fx@gnu.org>
14757
14758 * cus-start.el: Add blink-cursor-alist.
14759
14760 * ruler-mode.el (ruler-mode-fill-column-char)
14761 (ruler-mode-current-column-char): Use char-displayable-p,
14762 not window-system.
14763
14764 * international/codepage.el ("mule-diag"): Add eval-after-load clause.
14765
14766 * language/european.el (windows-1252): Move from code-pages.
14767
14768 * language/cyrillic.el ("Windows-1251"): Delete.
14769 ("Bulgarian", "Belarusian"): Remove `features'.
14770 (windows-1251): Move from code-pages.
14771
14772 * international/mule-diag.el (non-iso-charset-alist):
14773 Remove `codepage' stuff.
14774 (print-designation, list-coding-systems-1): Output fixes.
14775
14776 * international/code-pages.el (cp-make-translation-table)
14777 (cp-valid-codes): Made defsubsts.
14778 (cp-fix-safe-chars): Delete.
14779 (mule-diag): Don't require.
14780 (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
14781 (top-level): Check for defined coding system when defining
14782 cp... aliases. Change w32-add-charset-info test to avoid warning.
14783 (non-iso-charset-alist): Defvar when compiling.
14784 (cp-make-coding-system): Doc fix.
14785
14786 2003-09-02 Jason Rumney <jasonr@gnu.org>
14787
14788 * international/titdic-cnv.el (tsang-quick-converter): Fix broken
14789 line-ends from CVS before doing conversion.
14790
14791 2003-09-02 Glenn Morris <gmorris@ast.cam.ac.uk>
14792
14793 * calendar/diary-lib.el (diary-header-line-flag)
14794 (diary-header-line-format): New variables.
14795 (list-diary-entries): Use them to set header line in simple diary.
14796
14797 * progmodes/sh-script.el (sh-font-lock-keywords): Use something
14798 other than font-lock-string-face to highlight backslashes.
14799
14800 2003-09-01 Jason Rumney <jasonr@gnu.org>
14801
14802 * international/titdic-cnv.el (tit-read-key-value): Include \r in
14803 regexp.
14804
14805 2003-09-01 Dave Love <fx@gnu.org>
14806
14807 * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
14808
14809 * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
14810 and :help; also line and column numbers labels.
14811
14812 * international/mule-util.el (char-displayable-p): Move from
14813 latin1-disp, rename and autoload.
14814
14815 * international/latin1-disp.el (latin1-char-displayable-p):
14816 Now obsolete alias. Replace uses with char-displayable-p.
14817 (latin1-display-ucs-per-lynx): Fix last change.
14818
14819 * international/mule-cmds.el (standard-display-european-internal):
14820 Don't use char code for Latin-1 NBSP.
14821 <XFree86 4>: Unfrob NBSP display table. Set display table to use
14822 U+2018, U+2019 for `'.
14823 (select-safe-coding-system): Message fix.
14824
14825 2003-09-01 Kenichi Handa <handa@m17n.org>
14826
14827 * international/fontset.el (setup-default-fontset): For Thai
14828 font, specify "*" family.
14829
14830 2003-09-01 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
14831
14832 * progmodes/compile.el (previous-error): Accept a prefix
14833 argument, similarly to next-error.
14834
14835 2003-08-31 Masatake YAMATO <jet@gyve.org>
14836
14837 * pcvs.el (cvs-do-removal): Use = instead of eq to check
14838 the number of files. Bind the number of files to a local
14839 variable. Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
14840
14841 2003-08-30 Eli Zaretskii <eliz@gnu.org>
14842
14843 * vc-hooks.el (vc-make-version-backup): Fix the change made on
14844 2003-07-26: msdos-long-file-names is a function, not a variable.
14845
14846 2003-08-29 Richard M. Stallman <rms@gnu.org>
14847
14848 * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
14849 Do nothing with mail-personal-alias-file if it is nil.
14850
14851 * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
14852 Do nothing if mail-personal-alias-file is nil.
14853
14854 * term.el (term-exec-1): Bind coding-system-for-read.
14855
14856 * dired.el (dired-mouse-find-file-other-window):
14857 Use dired-view-command-alist here, as in dired-view-file.
14858 (dired-view-command-alist): Use %s to substitute file name.
14859 Handle .ps_pages, .eps, .jpg, .gif, .png.
14860
14861 2003-08-29 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
14862
14863 * info.el (Info-mode-map): Bind S-tab and <backtab> to
14864 `Info-prev-reference', instead of M-tab.
14865
14866 2003-08-29 Martin Stjernholm <mast@lysator.liu.se>
14867
14868 * simple.el (blink-matching-open): Work correctly on chars that
14869 are designated as parens through the syntax-table text property.
14870
14871 2003-08-29 Thierry Emery <thierry.emery@club-internet.fr> (tiny change)
14872
14873 * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
14874 line break position in the middle of a non-kinsoku (e.g. latin)
14875 word, making it skip until either a space or a character with
14876 category "|".
14877 (kinsoku-longer): Test for end of buffer.
14878
14879 2003-08-28 Eli Zaretskii <eliz@gnu.org>
14880
14881 * mail/rmail.el (rmail-convert-to-babyl-format):
14882 Detect quoted-printable- and base64-encoded messages and decode them
14883 automatically. Set the message's encoding from the charset=
14884 header, if any. Decode base64-encoded messages in Mail format as well.
14885
14886 2003-08-26 Glenn Morris <gmorris@ast.cam.ac.uk>
14887
14888 * mail/smtpmail.el: Fix previous change.
14889 (smtpmail-send-queued-mail): Set smtpmail-mail-address before
14890 calling smtpmail-via-smtp.
14891 (smtpmail-via-smtp): Add fall-back values for envelope-from.
14892
14893 2003-08-26 John Paul Wallington <jpw@gnu.org>
14894
14895 * image.el (image-jpeg-p): Don't search beyond length of data.
14896
14897 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
14898
14899 * progmodes/cc-cmds.el (c-electric-brace): Work around for a
14900 misfeature in `expand-abbrev' which caused electric keywords like
14901 "else" to disappear if an open brace was typed directly afterwards.
14902
14903 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
14904
14905 * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
14906 mandatory in `define-widget'.
14907
14908 * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
14909 Don't align the operators "!=", "<=" and ">=" as assignment operators.
14910
14911 (c-assignment-operators): New language constant that only contains
14912 the assignment operators.
14913
14914 (c-assignment-op-regexp): New language var used by `c-lineup-math'.
14915
14916 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
14917
14918 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
14919 Safeguard against unbalanced sexps.
14920
14921 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
14922
14923 * version.el (emacs-version): Check for gtk. Include gtk version info.
14924
14925 2003-08-25 John Paul Wallington <jpw@gnu.org>
14926
14927 * man.el (Man-default-man-entry): Don't whizz past the section
14928 number before looking for it.
14929
14930 2003-08-24 Nick Roberts <nick@nick.uklinux.net>
14931
14932 * progmodes/gud.el (gud-display-line): Don't set window-point if
14933 source buffer is not visible. (Only happens with M-x gdba.)
14934
14935 * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
14936 documentation.
14937 (gdb-source, gdb-source-info): Update to assembler unnecessary
14938 as its done after each GDB command anyway.
14939 (gdb-pre-prompt): Use with-current-buffer.
14940 (gdb-insert-field): Add help-echo text.
14941 (gdb-invalidate-assembler): Re-display of assembler now done in
14942 gdb-info-breakpoints-custom.
14943 (gdb-info-breakpoints-custom): Force re-display of assembler to
14944 happen *after* update of breakpoints buffer.
14945 (gdb-display-source-buffer): Don't choke if gdb-source-window
14946 isn't visible.
14947 (gdb-put-string, gdb-put-arrow): Remove free variables.
14948
14949 2003-08-24 John Paul Wallington <jpw@gnu.org>
14950
14951 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
14952
14953 * man.el (Man-default-man-entry): Strip text properties when
14954 snarfing parts of entry because `format' preserves properties.
14955
14956 2003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
14957
14958 * files.el (file-newest-backup): Use `expand-file-name'.
14959
14960 * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
14961 Allow the diary to pop up a new frame, if needed.
14962
14963 * mail/sendmail.el (mail-specify-envelope-from): Doc change.
14964 * mail/smtpmail.el (smtpmail-mail-address): Doc change.
14965 (smtpmail-send-it): Make treatment of envelope-from consistent with
14966 sendmail.el.
14967
14968 * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
14969 (sh-leading-keywords): Add the bash `time' reserved word.
14970 (sh-variables): Add some bash variables.
14971 (sh-add-completer): Fix nil branch of case statement.
14972
14973 2003-08-24 Masatake YAMATO <jet@gyve.org>
14974
14975 * progmodes/ld-script.el: New file.
14976
14977 2003-08-23 Markus Rost <rost@math.ohio-state.edu>
14978
14979 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
14980
14981 2003-08-23 Andre Spiegel <spiegel@gnu.org>
14982
14983 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
14984 Better explain obsolescence, and what to use instead.
14985
14986 2003-08-23 Masatake YAMATO <jet@gyve.org>
14987
14988 * pcvs.el (cvs-do-removal): Show the deleted file name
14989 on the prompt.
14990
14991 2003-08-20 Dave Love <fx@gnu.org>
14992
14993 * international/mule.el (make-coding-system)
14994 (set-buffer-file-coding-system): Doc fix.
14995
14996 * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
14997
14998 * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
14999
15000 * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
15001
15002 * international/utf-16.el: Add mime-text-unsuitable coding system
15003 properties.
15004
15005 * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
15006
15007 * cus-edit.el: Add some :links.
15008 (bib): Remove.
15009
15010 * textmodes/bib-mode.el (bib): Add :group external.
15011
15012 2003-08-18 Luc Teirlinck <teirllm@mail.auburn.edu>
15013
15014 * wid-edit.el (widget-echo-help): Make it handle expressions that
15015 evaluate to strings.
15016
15017 2003-08-18 Michael Mauger <mmaug@yahoo.com>
15018
15019 Version 1.8.0 of sql-mode. (Patch submitted 2003-06-21)
15020
15021 Simplify selection of SQL products to define highlighting and
15022 interactive mode. Includes detailed instructions on adding
15023 support for new products.
15024
15025 * progmodes/sql.el (sql-product): New variable. Identifies SQL
15026 product for use in highlighting and interactive mode.
15027 (sql-interactive-product): New variable. SQL product for
15028 sql-interactive-mode.
15029 (sql-product-support): New variable. Specifies product-specific
15030 parameters to drive highlighting and interactive mode.
15031 (sql-imenu-generic-expression): Add more object types.
15032 (sql-sqlite-options): Correct comment.
15033 (sql-ms-program): Use "osql" rather than "isql".
15034 (sql-prompt-regexp, sql-prompt-length): Update comment.
15035 (sql-mode-menu): Add "Start SQLi session" entry.
15036 Replace Highlighting submenu with Product menu. Fix Send Region entry.
15037 (sql-mode-abbrev-table): Add abbreviations. Support of
15038 SYSTEM-FLAG on define-abbrev. Support was removed with last
15039 check-in; it now handles older Emacsen without the SYSTEM-FLAG.
15040 (sql-mode-font-lock-object-name): Add font-lock pattern for object
15041 names.
15042 (sql-mode-ansi-font-lock-keywords): Set as default value.
15043 (sql-mode-oracle-font-lock-keywords): Set as default value.
15044 Support Oracle 9i keywords.
15045 (sql-mode-postgres-font-lock-keywords): Set as default value.
15046 (sql-mode-linter-font-lock-keywords): Set as default value.
15047 (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
15048 SQLServer 2000.
15049 (sql-mode-sybase-font-lock-keywords)
15050 (sql-mode-interbase-font-lock-keywords)
15051 (sql-mode-sqlite-font-lock-keywords)
15052 (sql-mode-strong-font-lock-keywords)
15053 (sql-mode-mysql-font-lock-keywords)
15054 (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
15055 keywords.
15056 (sql-mode-font-lock-defaults): Update comment.
15057 (sql-product-feature): New function. Returns feature associated
15058 with a product from `sql-product-support' alist.
15059 (sql-product-font-lock): New function. Set font-lock support
15060 based on `sql-product'.
15061 (sql-add-product-keywords): New function. Add font-lock rules to
15062 product-specific keyword variables.
15063 (sql-set-product): New function. Set `sql-product' and apply
15064 appropriate font-lock highlighting.
15065 (sql-highlight-product): New function. Set font-lock support
15066 based on a product. Also set mode name to include product name.
15067 (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
15068 (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
15069 Use `sql-set-product'.
15070 (sql-highlight-ms-keywords)
15071 (sql-highlight-sybase-keywords)
15072 (sql-highlight-interbase-keywords)
15073 (sql-highlight-strong-keywords)
15074 (sql-highlight-mysql-keywords)
15075 (sql-highlight-sqlite-keywords)
15076 (sql-highlight-db2-keywords): New functions. Use `sql-set-product'.
15077 (sql-get-login): Prompt in the same order as the tokens.
15078 (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
15079 (sql-product-interactive): New function. Common portions of
15080 product-specific interactive mode wrappers.
15081 (sql-interactive-mode): Rewritten to use product features.
15082 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
15083 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
15084 (sql-db2, sql-linter): Use `sql-product-interactive'.
15085 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
15086 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
15087 (sql-connect-ingres, sql-connect-postgres)
15088 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
15089 New functions. Format command line parameters and invoke comint on
15090 the appropriate interpreter. Code was in the corresponding
15091 `sql-xyz' function before.
15092 (sql-connect-ms): New function. Support -E argument to use
15093 operating system credentials for authentication.
15094
15095 2003-08-18 Kenichi Handa <handa@m17n.org>
15096
15097 * international/mule.el (encode-char): Fix for the ASCII case.
15098
15099 2003-08-15 Kenichi Handa <handa@m17n.org>
15100
15101 * international/fontset.el (setup-default-fontset): Change "*" to
15102 nil in the specifications of font family.
15103
15104 2003-08-18 Kim F. Storm <storm@cua.dk>
15105
15106 * kmacro.el (kmacro-keymap): Group related bindings in
15107 initialization for clarity. Bind C-s to start macro.
15108 Remove C-r binding.
15109 (kmacro-initial-counter-value): New defvar to hold initial counter
15110 value in case we set the value before defining a macro.
15111 (kmacro-insert-counter): Clear kmacro-initial-counter-value..
15112 (kmacro-set-counter): Set kmacro-initial-counter-value if we are
15113 not defining or executing macro. Doc fix.
15114 (kmacro-add-counter): Clear kmacro-initial-counter-value.
15115 (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
15116 temporarily view older elements on the macro ring without cycling
15117 the ring.
15118 (kmacro-display): Doc fix.
15119 (kmacro-exec-ring-item): New helper function.
15120 (kmacro-call-ring-2nd): Use it.
15121 (kmacro-call-ring-2nd-repeat): Doc fix.
15122 (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
15123 (kmacro-end-or-call-macro): Execute last viewed macro (using
15124 kmacro-exec-ring-item) from ring if this follows
15125 kmacro-view-macro. This allows us to find a macro on the ring
15126 with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
15127 the ring to bring it to the head of the ring.
15128 (kmacro-bind-to-key): Doc fix (describe reserved bindings).
15129 Allow binding to reserved keys without specifying C-x C-k prefix.
15130 Ask for confirmation if entered key sequence is already bound to
15131 a non-macro command.
15132 (kmacro-view-macro): Repeating command will show older elements
15133 on the macro ring; C-k will execute the last viewed macro.
15134 (kmacro-view-macro-repeat): Doc fix. Change its kmacro-repeat
15135 property from 'ring to 'head.
15136
15137 2003-08-17 Alan Shutko <ats@acm.org>
15138
15139 * calendar/calendar.el (calendar-make-alist): Correct off-by-one
15140 keeping December out of the alist.
15141
15142 2003-08-17 Edward M. Reingold <reingold@emr.cs.iit.edu>
15143
15144 * calendar/cal-move.el (calendar-goto-day-of-year): New function.
15145 * calendar/calendar.el (calendar-mode-map): Bind it to key.
15146 * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
15147 (calendar-flatten): New function.
15148 (calendar-mouse-view-other-diary-entries)
15149 (calendar-mouse-view-diary-entries): Rewritten to put any holidays
15150 in the menu title and to show multi-line diary entries correctly
15151 in the menu.
15152
15153 2003-08-17 Luc Teirlinck <teirllm@mail.auburn.edu>
15154
15155 * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
15156 defcustom, because the default was recently changed.
15157
15158 2003-08-16 Richard M. Stallman <rms@gnu.org>
15159
15160 * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
15161
15162 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
15163 New subroutine, broken out of eval-last-sexp-1.
15164 (eval-last-sexp-1): Use eval-last-sexp-print-value.
15165
15166 * custom.el (custom-load-symbol): Load cus-load and cus-start first.
15167
15168 * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
15169
15170 * simple.el (eval-expression): Use eval-last-sexp-print-value.
15171
15172 2003-08-14 Jari Aalto <jari.aalto@poboxes.com>
15173
15174 * progmodes/compile.el (compilation-error-regexp-alist):
15175 Add Java ANt error detection as described in document
15176 http://ant.apache.org/faq.html
15177
15178 2003-08-12 Juri Linkov <juri@jurta.org> (tiny change)
15179
15180 * simple.el (backward-word, forward-to-indentation)
15181 (backward-to-indentation): Argument changed to optional.
15182 (next-line, previous-line): Use `or' instead of `unless'.
15183
15184 2003-08-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15185
15186 * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
15187 instead of a constant.
15188
15189 2003-08-12 Markus Rost <rost@math.ohio-state.edu>
15190
15191 * shell.el (shell): With prefix-arg, suggest a new buffer name.
15192
15193 2003-08-12 Andre Spiegel <spiegel@gnu.org>
15194
15195 * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
15196 (vc-sccs-workfile-version): Search the entire delta table, rather
15197 than just the first entry, because that might be a deleted version.
15198
15199 2003-08-11 Karl Fogel <kfogel@red-bean.com>
15200
15201 * menu-bar.el (menu-bar-options-menu): Supply a body for the
15202 [save-place] binding in the Options menu. Have it require
15203 'saveplace' and then toggle the variable manually, to avoid an an
15204 unbound variable error. Thanks to <Sebastien.Kirche@sage.com>
15205 for the bug report.
15206
15207 2003-08-11 Nick Roberts <nick@nick.uklinux.net>
15208
15209 * gdb-ui.el (gdb-insert-field, gdb-array-format1)
15210 (gdb-info-breakpoints-custom, gdb-info-frames-custom)
15211 (gdb-info-threads-custom): Add help-echo text.
15212 (gdb-display-back): Don't use purecopy.
15213 (gdb-info-breakpoints-custom, gdb-reset)
15214 (gdb-assembler-custom): Use display-images-p to test if breakpoint
15215 icons can be displayed.
15216
15217 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
15218
15219 * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
15220
15221 2003-08-11 Stefan Monnier <monnier@cs.yale.edu>
15222
15223 * bookmark.el (bookmark-completing-read):
15224 Return a string, instead of a list of one string.
15225 Use a popup menu if activated from the mouse.
15226 (bookmark-edit-annotation): Remove unused vars.
15227 (bookmark-jump, bookmark-relocate, bookmark-insert-location)
15228 (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
15229 to bookmark-completing-read.
15230 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
15231 (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
15232 (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
15233 and erase-buffer.
15234 (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
15235 (bookmark-menu-jump, bookmark-menu-insert)
15236 (bookmark-popup-menu-and-apply-function)
15237 (bookmark-menu-popup-paned-bookmark-menu): Remove.
15238 (bookmark-menu-build-paned-menu): Remove by folding it into
15239 bookmark-menu-popup-paned-menu.
15240 (menu-bar-bookmark-map): Move the define-key statements here.
15241 Use the "non-menu" commands since they now pop up a menu if needed.
15242 (bookmark-exit-hook-internal): Simplify.
15243
15244 2003-08-11 Carsten Dominik <dominik@sand.science.uva.nl>
15245
15246 * reftex-toc.el (reftex-toc-rename-label): New function.
15247 (reftex-toc-check-docstruct): New function.
15248
15249 * reftex.el (reftex-region-active-p): New function.
15250
15251 * reftex-parse.el (reftex-locate-bibliography-files): Improved the
15252 regexp to find the \bibliography macro.
15253
15254 * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
15255 which does not exist in LaTeX.
15256 (reftex-cite-format-builtin): Added amsrefs support.
15257 (reftex-toc-confirm-promotion): New option
15258
15259 * reftex-toc.el
15260 (reftex-toc): Use `reftex-toc-split-windows-fraction'.
15261 (reftex-toc-demote, reftex-toc-promote)
15262 (reftex-toc-do-promote, reftex-toc-promote-prepare)
15263 (reftex-toc-promote-action, reftex-toc-extract-section-number)
15264 (reftex-toc-newhead-from-alist)
15265 (reftex-toc-load-all-files-for-promotion): New functions.
15266 (reftex-toc-help): Added description of new keys.
15267 (reftex-toc-split-windows-fraction): New option.
15268 (reftex-recenter-toc-when-idle): Search *toc* window on all
15269 visible frames.
15270 (reftex-toc): Additional parameter REUSE
15271 (reftex-toc-recenter): Remember current frame. Call `reftex-toc'
15272 with REUSE argument.
15273 (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
15274 the call of `reftex-toc'.
15275 (reftex-make-separate-toc-frame): New function .
15276 (reftex-toc-recenter): When called with triple prefix arg, call
15277 `reftex-make-separate-toc-frame' first.
15278 (reftex-toc-toggle-dedicated-frame): New command.
15279 (reftex-toc-quit): Adapted to delete frame when called in
15280 dedicated frame.
15281
15282 * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
15283 all enclosing macros.
15284
15285
15286 2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15287
15288 * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
15289 first use.
15290
15291 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15292
15293 * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
15294
15295 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk>
15296
15297 * calendar/calendar.el (list-diary-entries-hook)
15298 (diary-display-hook, nongregorian-diary-listing-hook)
15299 (mark-diary-entries-hook, nongregorian-diary-marking-hook):
15300 Add some customize options for these hooks.
15301 (calendar-abbrev-construct): Don't try to take a substring longer
15302 than the original string.
15303
15304 2003-08-05 Richard M. Stallman <rms@gnu.org>
15305
15306 * emacs-lisp/testcover.el (noreturn): Report error if does return.
15307 (testcover-reinstrument-clauses): Doc fix.
15308
15309 * emacs-lisp/warnings.el: Doc fixes, args renamed.
15310 (warning-type-format): Rename from warning-group-format.
15311
15312 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
15313 (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
15314 (byte-compile-defvar): Bind byte-compile-not-obsolete-var
15315 to prevent warnings about defvar for an obsolete variable.
15316
15317 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
15318 warning-group-format renamed to warning-type-format.
15319
15320 * subr.el (read-passwd): Use clear-string instead of fillarray.
15321
15322 * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
15323 Use vconcat instead of concat.
15324 (edmacro-sanitize-for-string): New function.
15325
15326 2003-08-05 Dave Love <fx@gnu.org>
15327
15328 * cus-start.el: Add open-paren-in-column-0-is-defun-start,
15329 line-number-display-limit-width.
15330
15331 * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
15332
15333 2003-08-05 Kenichi Handa <handa@m17n.org>
15334
15335 * international/code-pages.el: Don't require mule-diag.
15336
15337 * international/mule-diag.el (non-iso-charset-alist):
15338 Add autoload cookie.
15339
15340 * language/devan-util.el (dev-glyph-order): Add an entry for the
15341 glyph code #xC4.
15342
15343 2003-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
15344
15345 * calendar/calendar.el (diary-file, diary-file-name-prefix)
15346 (european-calendar-style, diary-date-forms)
15347 (calendar-day-name-array, calendar-month-name-array): Doc change.
15348 (generate-calendar-month): Adapt for new behaviour of
15349 `calendar-day-name' function.
15350 (calendar-abbrev-length, calendar-day-abbrev-array)
15351 (calendar-month-abbrev-array): New variables.
15352 (calendar-abbrev-construct): New function.
15353 (calendar-day-name, calendar-month-name): Use new abbrev arrays,
15354 rather than fixing abbrevs at some width. Calling syntax change.
15355 (calendar-make-alist): Use abbrev arrays. Calling syntax change.
15356 (calendar-date-string): Adapt for new behaviours of
15357 `calendar-day-name' and `calendar-month-name' functions.
15358
15359 * calendar/diary-lib.el (list-diary-entries): Adapt for new
15360 behaviour of `calendar-day-name' and `calendar-month-name' functions.
15361 (diary-name-pattern): Use abbrev arrays, rather than fixing
15362 abbrevs at three chars. Calling syntax change.
15363 (mark-diary-entries): Adapt for new behaviours of
15364 `diary-name-pattern' and `calendar-make-alist' functions.
15365 (fancy-diary-font-lock-keywords): Adapt for new behaviour of
15366 `diary-name-pattern' function.
15367 (font-lock-diary-date-forms): Use abbrev arrays, rather than
15368 fixing abbrevs at three chars. Calling syntax change.
15369 (cal-hebrew, cal-islam): Require when compiling.
15370 (diary-font-lock-keywords): Adapt for new behaviour of
15371 `font-lock-diary-date-forms' function.
15372
15373 * calendar/cal-hebrew.el: Reposition some code so defined before used.
15374 (calendar-hebrew-month-name-array-common-year)
15375 (calendar-hebrew-month-name-array-leap-year): Add doc strings.
15376 (list-hebrew-diary-entries): Adapt for new behaviours of
15377 `calendar-day-name' and `add-to-diary-list' functions.
15378 (mark-hebrew-diary-entries): Adapt for new behaviours of
15379 `diary-name-pattern' and `calendar-make-alist' functions.
15380
15381 * calendar/cal-islam.el (calendar-islamic-month-name-array):
15382 Add doc string.
15383 (list-islamic-diary-entries): Adapt for new behaviours of
15384 `calendar-day-name' and `add-to-diary-list' functions.
15385 (mark-islamic-diary-entries): Adapt for new behaviours of
15386 `diary-name-pattern' and `calendar-make-alist' functions.
15387
15388 * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
15389 `calendar-month-name' function.
15390
15391 * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
15392
15393 * calendar/solar.el (solar-seasons-data): Move definition before use.
15394
15395 * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
15396 (cal-tex-LaTeX-hourbox): Move definition before use.
15397
15398 * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
15399 cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
15400 lunar.el, solar.el
15401 (displayed-month, displayed-year): Define for compiler.
15402
15403 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
15404
15405 * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
15406 MODE. Renamed from c-init-c-language-vars'.
15407 (c-initialize-cc-mode): Change accordingly.
15408 (c-common-init): Ditto.
15409 (c-mode): Ditto.
15410 (c++-mode): Use `c-init-language-vars-for'.
15411 (objc-mode): Ditto.
15412 (java-mode): Ditto.
15413 (idl-mode): Ditto.
15414 (pike-mode): Ditto.
15415 (awk-mode): Ditto.
15416
15417 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
15418
15419 * progmodes/cc-engine.el (c-end-of-current-token): Return whether
15420 or not the point moved.
15421
15422 (c-search-decl-header-end): Don't trip up on operator identifiers
15423 in C++ and operators like == in all languages.
15424
15425 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
15426 Detect leading labels correctly.
15427
15428 2003-08-02 Andreas Schwab <schwab@suse.de>
15429
15430 * textmodes/ispell.el: Don't redo key bindings on loading, put
15431 them only in loaddefs.el.
15432 * bookmark.el: Likewise.
15433 * dabbrev.el: Likewise.
15434 * emerge.el: Likewise.
15435
15436 * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
15437 has more than one member.
15438
15439 * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
15440
15441 2003-08-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15442
15443 * lpr.el (printify-region): It was ending conversion before the
15444 expected position. Reported by Keiichi Suzuki <keiichi@nanap.org>.
15445
15446 2003-07-31 John Paul Wallington <jpw@gnu.org>
15447
15448 * net/browse-url.el (browse-url-epiphany): Doc fix.
15449
15450 2003-07-30 Kenichi Handa <handa@m17n.org>
15451
15452 * international/fontset.el (setup-default-fontset):
15453 Change registry names of Akurti fonts.
15454
15455 2003-07-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
15456
15457 * comint.el (comint-read-noecho): Use `clear-string' instead of
15458 `fillarray'.
15459
15460 2003-07-29 Thomas W Murphy <twm@andrew.cmu.edu> (tiny change)
15461
15462 * outline.el (outline-mode-hook): Add defvar.
15463
15464 2003-07-28 Nick Roberts <nick@nick.uklinux.net>
15465
15466 * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
15467 Restore assembler in source window if that is what has been selected.
15468 (menu): Add gdb-restore-windows to menu. Make gdba
15469 specific menus only visible from gdba.
15470
15471 2003-07-28 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
15472
15473 * progmodes/compile.el (compilation-environment): New user variable.
15474 (compile-internal): Respect it.
15475
15476 2003-07-23 Masatake YAMATO <jet@gyve.org>
15477
15478 * progmodes/gud.el (gdb-script-font-lock-keywords):
15479 Put `font-lock-function-name-face' on a symbol which includes
15480 `-' like `hook-run'. Put font-lock-variable-name-face
15481 on a symbol starting with $.
15482
15483 2003-07-27 Markus Rost <rost@math.ohio-state.edu>
15484
15485 * files.el (set-visited-file-name): Use truename for buffer-file-name.
15486
15487 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
15488
15489 * vc-hooks.el (vc-file-not-found-hook): Doc fix.
15490
15491 2003-07-26 Andre Spiegel <spiegel@gnu.org>
15492
15493 * vc-hooks.el (vc-default-registered, vc-make-version-backup):
15494 Use with-no-warnings.
15495 (vc-file-not-found-hook): Add this to find-file-not-found-functions,
15496 rather than to find-file-not-found-hook, which doesn't exist.
15497
15498 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
15499
15500 * international/quail.el (quail-translate-key): Fix previous change.
15501
15502 2003-07-25 John Paul Wallington <jpw@gnu.org>
15503
15504 * server.el (server-start): Check `server-process' is non-nil
15505 before killing it to avoid killing current buffer's process.
15506
15507 * simple.el (choose-completion-string): Use `minibufferp';
15508 test `completion-reference-buffer' if `buffer' arg is nil.
15509 (push-mark): Use `when' and `unless'.
15510 (pop-mark): Use `when'.
15511
15512 * mouse-sel.el (mouse-sel-get-selection-function):
15513 Check `x-last-selected-text-primary'. Don't barf if it or
15514 `x-last-selected-text' aren't bound.
15515
15516 2003-07-25 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
15517
15518 * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
15519
15520 2003-07-23 Stefan Monnier <monnier@cs.yale.edu>
15521
15522 * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
15523
15524 2003-07-23 John Paul Wallington <jpw@gnu.org>
15525
15526 * tooltip.el (defface tooltip): Inherit from variable-pitch.
15527
15528 2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
15529
15530 * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
15531 string. Defvar the derived hook.
15532
15533 * macros.el (insert-kbd-macro): Escape double quote character.
15534 From Thomas W Murphy <twm@andrew.cmu.edu>.
15535
15536 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
15537
15538 * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
15539 to match the specific mark rather than reusing comment-start-skip.
15540
15541 2003-07-22 Thien-Thi Nguyen <ttn@gnu.org>
15542
15543 * progmodes/hideshow.el (hs-special-modes-alist):
15544 Clarify MDATA-SELECTOR doc; nfc. Thanks to Michael Ernst.
15545
15546 2003-07-21 Markus Rost <rost@math.ohio-state.edu>
15547
15548 * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
15549 value using ?\s.
15550
15551 2003-07-21 John Paul Wallington <jpw@gnu.org>
15552
15553 * subr.el (with-selected-window): Add closing paren.
15554
15555 2003-07-21 Richard M. Stallman <rms@gnu.org>
15556
15557 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
15558 (lisp-mode): Likewise.
15559
15560 * subr.el (with-selected-window): Copy code form save-selected-window
15561 so as to call select-window with norecord arg.
15562 (dynamic-completion-table): Doc fix.
15563 (lazy-completion-table): Doc fix.
15564
15565 * international/mule-cmds.el (set-locale-environment):
15566 langinfo renamed to locale-info.
15567
15568 * international/mule.el (auto-coding-functions): Doc fix.
15569
15570 2003-07-21 Kenichi Handa <handa@m17n.org>
15571
15572 * international/quail.el (quail-translate-key):
15573 Update quail-current-str correctly.
15574
15575 2003-07-21 Andreas Schwab <schwab@suse.de>
15576
15577 * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
15578 ?, to "_".
15579
15580 2003-07-20 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
15581 Version 2.0.36 of Tramp released.
15582
15583 * net/tramp.el (tramp-default-password-end-of-line): Rename from
15584 tramp-password-end-of-line.
15585 (tramp-password-end-of-line): New method parameter.
15586 (tramp-get-password-end-of-line): Function to access method
15587 parameter `tramp-password-end-of-line', or variable
15588 `tramp-default-password-end-of-line' (default value).
15589 (tramp-methods): Add entries for new parameter
15590 tramp-password-end-of-line.
15591 (tramp-enter-password): Use new function
15592 `tramp-get-password-end-of-line'.
15593 (tramp-handle-insert-file-contents): Do not
15594 unconditionally inhibit the file operation file-local-copy, only
15595 do that when the inhibit-file-name-operation is currently
15596 insert-file-contents. This fixes finding remote CVS-controlled
15597 files. (It would barf on inserting the CVS/Entries file
15598 literally, because the file-local-copy handler wasn't called.)
15599 (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
15600 (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
15601 (tramp-initial-commands): New variable.
15602 (tramp-process-initial-commands): New function, using the variable.
15603 (tramp-open-connection-setup-interactive-shell): Call the new function.
15604 (tramp-buffer-name, tramp-debug-buffer-name): Always put the
15605 method into the buffer name, never use nil. Reported by Hanak
15606 David <dhanak@inf.bme.hu>.
15607 (tramp-open-connection-setup-interactive-shell): Erase buffer
15608 before sending "stty -onlcr".
15609
15610 * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
15611
15612 2003-07-19 Markus Rost <rost@math.ohio-state.edu>
15613
15614 * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
15615
15616 2003-07-19 John Paul Wallington <jpw@gnu.org>
15617
15618 * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
15619 (artist-draw-rect, artist-draw-square): Doc fixes.
15620
15621 * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
15622
15623 * textmodes/two-column.el (2C-mode-line-format): Doc fix.
15624
15625 2003-07-19 Kenichi Handa <handa@m17n.org>
15626
15627 * international/kkc.el (kkc-show-conversion-list-update):
15628 Highlight the correct candidate in the message.
15629
15630 2003-07-18 John Paul Wallington <jpw@gnu.org>
15631
15632 * simple.el (current-word): Don't include punctuation char when
15633 `really-word' arg is non-nil.
15634
15635 2003-07-17 Martin Stjernholm <bug-cc-mode@gnu.org>
15636
15637 * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
15638 moved to the directory obsolete.
15639
15640 2003-07-16 Stefan Monnier <monnier@cs.yale.edu>
15641
15642 * info.el (Info-menu-entry-name-re): Allow newlines in
15643 menu entry names.
15644
15645 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
15646 syntax-ppss-after-change-function.
15647 (syntax-ppss-after-change-function): New alias. Update uses.
15648 (syntax-ppss): Catch the case where the buffer is narrowed.
15649
15650 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
15651
15652 * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
15653 (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
15654
15655 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
15656
15657 * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
15658 since it might be modified.
15659
15660 * progmodes/cc-langs.el (c++-make-template-syntax-table)
15661 (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
15662 names to these language constants.
15663
15664 2003-07-15 Kim F. Storm <storm@cua.dk>
15665
15666 * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
15667 All uses changed.
15668
15669 2003-07-14 Mark A. Hershberger <mah@everybody.org>
15670
15671 * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
15672 Namespace support.
15673
15674 2003-07-13 Juanma Barranquero <lektu@terra.es>
15675
15676 * frame.el (modify-all-frames-parameters): Reinstall (copyright
15677 papers received).
15678
15679 2003-07-13 Karl Eichwalder <ke@suse.de>
15680
15681 * textmodes/po.el (po-find-charset): White space at the start of the
15682 Content-Type field body is non-mandatory.
15683
15684 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
15685
15686 * textmodes/texinfo.el (texinfo-section-list):
15687 Append appendixsection; a synonym for appendixsec.
15688
15689 2003-07-13 Jari Aalto <jari.aalto@poboxes.com>
15690
15691 * man.el (Man-translate-cleanup): New.
15692 (Man-translate-references): Call `Man-translate-cleanup' to clean
15693 leading, trailing and middle spaces.
15694
15695 2003-07-13 Lars Hansen <larsh@math.ku.dk>
15696
15697 * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
15698 Handle `dired-directory' being a list.
15699
15700 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change)
15701
15702 * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
15703 it doesn't exist.
15704
15705 2003-07-12 Richard M. Stallman <rms@gnu.org>
15706
15707 * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
15708
15709 * progmodes/cc-defs.el (c-make-keywords-re):
15710 Don't use delete-duplicates.
15711 (c-lang-const): Don't use mapcan.
15712
15713 * apropos.el (apropos-show-scores): Make it customizable.
15714 Document new meaning.
15715 (apropos): Compute scores from symbols.
15716 (apropos-print): Don't sort by scores if apropos-show-scores is nil.
15717
15718 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15719
15720 * ps-bdf.el: Fix copyright line.
15721 (bdf-directory-list): Fix initialization code.
15722
15723 2003-07-11 John Paul Wallington <jpw@gnu.org>
15724
15725 * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
15726 (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
15727 (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
15728
15729 2003-07-11 NAKAJIMA Mikio <minakaji@namazu.org> (tiny change)
15730
15731 * emacs-lisp/ring.el (ring-elements): Doc fix.
15732
15733 2003-07-11 Glenn Morris <gmorris@ast.cam.ac.uk>
15734
15735 * calendar/timeclock.el (timeclock-relative)
15736 (timeclock-ask-before-exiting, timeclock-use-display-time):
15737 Doc changes.
15738 (timeclock-modeline-display): Give a message if
15739 `timeclock-use-display-time' is non-nil but `display-time-mode'
15740 is not active.
15741
15742 2003-07-11 Kenichi Handa <handa@m17n.org>
15743
15744 * international/mule-cmds.el (set-language-environment):
15745 Set current-language-environment to the correct string.
15746
15747 2003-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15748
15749 * ps-print.el: Print line number correctly in a region. Reported by
15750 Tim Allen <timallen@ls83.fsnet.co.uk>.
15751 (ps-print-version): New version number (6.6.2).
15752 (ps-printing-region): Code fix.
15753
15754 2003-07-10 John Paul Wallington <jpw@gnu.org>
15755
15756 * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
15757 this function can be called from `add-completions-from-tags-table'.
15758
15759 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk>
15760
15761 * calendar/timeclock.el (timeclock-use-display-time)
15762 (timeclock-day-over-hook, timeclock-workday-remaining)
15763 (timeclock-status-string, timeclock-when-to-leave)
15764 (timeclock-when-to-leave-string, timeclock-log-data)
15765 (timeclock-find-discrep, timeclock-day-base)
15766 (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
15767 (timeclock-modeline-display): Set the variable
15768 `timeclock-modeline-display'.
15769 (timeclock-update-modeline): Doc fix. Respect value of
15770 `timeclock-relative'.
15771
15772 2003-07-09 Richard M. Stallman <rms@gnu.org>
15773
15774 * textmodes/reftex-parse.el (reftex-all-document-files):
15775 Add autoload cookie.
15776
15777 * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
15778 (reftex-scanning-info-available-p): Add autoload cookie.
15779
15780 * international/mule-cmds.el
15781 (set-display-table-and-terminal-coding-system): Delete duplicate
15782 aset on standard-display-table.
15783
15784 * view.el (view-file): If existing buffer's major mode is special,
15785 don't go into view mode.
15786
15787 * dired.el (dired-move-to-filename-regexp): Allow quote in months.
15788
15789 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
15790
15791 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
15792 buffer changes; there's third party code that calls this function
15793 directly.
15794
15795 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
15796
15797 * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
15798 (autodoc-font-lock-keywords): Don't byte compile on font lock
15799 initialization when running from byte compiled files.
15800
15801 2003-07-08 Alan Mackenzie <bug-cc-mode@gnu.org>
15802
15803 * progmodes/cc-engine.el: Fix AWK mode indentation when previous
15804 statement ends with auto-increment "++".
15805
15806 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
15807
15808 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
15809 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
15810 these are changed, so declare them as variables and not constants.
15811
15812 2003-07-08 Markus Rost <rost@math.ohio-state.edu>
15813
15814 * subr.el (dolist, dotimes): Doc fix.
15815
15816 2003-07-08 Kim F. Storm <storm@cua.dk>
15817
15818 * international/mule-cmds.el
15819 (set-display-table-and-terminal-coding-system): Don't break
15820 bootstrap if standard-display-table isn't setup yet.
15821
15822 2003-07-07 Richard M. Stallman <rms@gnu.org>
15823
15824 * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
15825 Give it a doc string, and autoload it.
15826
15827 * desktop.el (desktop-buffer-info, desktop-buffer-mh):
15828 Use with-no-warnings.
15829
15830 * info.el (Info-search): If find invisible text, search again.
15831
15832 * isearch.el (search-whitespace-regexp): Add a shy group around it.
15833
15834 * man.el (Man-name-regexp): Match + as part of name.
15835
15836 * simple.el (visible-mode): Rename from vis-mode.
15837 (vis-mode-saved-buffer-invisibility-spec): Doc fix.
15838
15839 * simple.el (current-word): New arg REALLY-WORD specifies
15840 don't include punctuation chars.
15841
15842 * emacs-lisp/debug.el (debug, debugger-env-macro):
15843 Use with-no-warnings while accessing and binding unread-command-char.
15844
15845 * international/mule-cmds.el
15846 (set-display-table-and-terminal-coding-system): Use explicit loop
15847 instead of calling standard-display-default.
15848
15849 * net/ange-ftp.el (ange-ftp-file-symlink-p):
15850 Use condition-case to catch error in ange-ftp-get-files.
15851
15852 * net/browse-url.el (browse-url-browser-function):
15853 Add alternative for Epiphany.
15854 (browse-url-epiphany-program, browse-url-epiphany-arguments)
15855 (browse-url-epiphany-startup-arguments)
15856 (browse-url-epiphany-new-window-is-tab): New variables.
15857 (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
15858
15859 * progmodes/compile.el (compile-auto-highlight): Default now t.
15860 (compile): Doc fix.
15861 (compilation-next-error): Fix previous change.
15862
15863 * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
15864
15865 * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
15866
15867 2003-07-07 Nick Roberts <nick@nick.uklinux.net>
15868
15869 * gdb-ui.el (gdb-source-info): Display current frame when
15870 attaching to an existing process.
15871 (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
15872 while laying out windows when attaching to an existing process.
15873
15874 2003-07-07 Stefan Monnier <monnier@cs.yale.edu>
15875
15876 * info.el (Info-menu): Use Info-menu-entry-name-re.
15877
15878 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
15879
15880 * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
15881 * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
15882
15883 * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
15884 to match the same text.
15885
15886 2003-07-06 John Paul Wallington <jpw@gnu.org>
15887
15888 * vc.el (vc-annotate-offset): Move defvar up.
15889
15890 2003-07-06 Kim F. Storm <storm@cua.dk>
15891
15892 * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
15893 This should fix the infinite loop when extracting menu names.
15894
15895 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
15896
15897 * files.el (auto-mode-alist, interpreter-mode-alist):
15898 Remove entries to CC Mode modes to avoid duplicates; they are now added
15899 with autoload directives in cc-mode.el.
15900
15901 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
15902
15903 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
15904 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
15905 these are changed, so declare them as variables and not constants.
15906
15907 * progmodes/cc-mode.el: Fix some autoload problems: Try to
15908 ensure that the entry for ".c" extension comes before the one for
15909 ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
15910 Fix incorrect entries that were added to `interpreter-mode-alist'.
15911 Move the autoload directives for AWK to the top level since they
15912 aren't recognized anywhere else. Do not use the new AWK mode doc
15913 in the autoload form for the old AWK mode.
15914
15915 2003-06-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15916
15917 * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
15918 (bibtex-sort-ignore-string-entries): Default value t.
15919 (bibtex-entry-kill-ring-max): Reintroduce as it was removed
15920 erroneously in previous version.
15921 (bibtex-string-files): Docstring reflects new parsing scheme.
15922 (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
15923 docstring, add # as one of the chars to crush
15924 (bibtex-autokey-prefix-string, bibtex-autokey-names)
15925 (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
15926 (bibtex-autokey-name-change-strings)
15927 (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
15928 (bibtex-autokey-name-separator, bibtex-autokey-year-length)
15929 (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
15930 (bibtex-autokey-title-terminators)
15931 (bibtex-autokey-titlewords-stretch)
15932 (bibtex-autokey-titleword-ignore)
15933 (bibtex-autokey-titleword-case-convert)
15934 (bibtex-autokey-titleword-abbrevs)
15935 (bibtex-autokey-titleword-abbrevs)
15936 (bibtex-autokey-titleword-change-strings)
15937 (bibtex-autokey-titleword-length)
15938 (bibtex-autokey-titleword-separator)
15939 (bibtex-autokey-name-year-separator)
15940 (bibtex-autokey-year-title-separator)
15941 (bibtex-autokey-before-presentation-function)
15942 (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
15943 Fix docstring.
15944 (bibtex-strings, bibtex-reference-keys):
15945 Use lazy-completion-table and make-variable-buffer-local.
15946 (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
15947 (bibtex-braced-string-syntax-table)
15948 (bibtex-quoted-string-syntax-table): New variables.
15949 (bibtex-parse-nested-braces): Remove.
15950 (bibtex-parse-field-string): Use syntax table and forward-sexp.
15951 (bibtex-parse-association): Simplify.
15952 (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
15953 (bibtex-parse-field-text): Simplify.
15954 (bibtex-search-forward-field, bibtex-search-backward-field):
15955 argument BOUND can take value t.
15956 (bibtex-start-of-field, bibtex-start-of-name-in-field)
15957 (bibtex-end-of-name-in-field, bibtex-end-of-field)
15958 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
15959 (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
15960 (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
15961 (bibtex-skip-to-valid-entry): Return buffer position of beginning
15962 and ending of entry. Update for changes of bibtex-search-entry.
15963 Simplify.
15964 (bibtex-map-entries): FUN is called with three arguments.
15965 (bibtex-search-entry): Return a cons pair with buffer positions of
15966 beginning and end of entry.
15967 (bibtex-enclosing-field): Simplify.
15968 (bibtex-format-entry): Use booktitle to set a missing title.
15969 (bibtex-autokey-get-names): Fiddle with regexps.
15970 (bibtex-generate-autokey): Use identity.
15971 (bibtex-parse-keys): Use simplified parsing algorithm if
15972 bibtex-parse-keys-fast is non-nil. Simplify. Change order of
15973 arguments. Return alist of keys.
15974 (bibtex-parse-strings): Simplify. Return alist of strings.
15975 (bibtex-complete-string-cleanup): Fix docstring.
15976 (bibtex-read-key): New function.
15977 (bibtex-mode): Fix docstring. Do not parse for keys and
15978 strings when the mode is entered. Set fill-paragraph-function to
15979 bibtex-fill-field. Setup font-lock-mark-block-function the way
15980 font-lock intended.
15981 (bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
15982 (bibtex-parse-entry, bibtex-autofill-entry): New functions.
15983 (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
15984 (bibtex-Preamble): Avoid hard coded constants.
15985 (bibtex-make-field): Fix docstring. Simplify.
15986 (bibtex-beginning-of-entry): Always return new position of point.
15987 (bibtex-end-of-entry): Rearrange cond clauses.
15988 (bibtex-count-entries, bibtex-validate, bibtex-reformat):
15989 Update for changes of bibtex-map-entries.
15990 (bibtex-ispell-abstract): Do not move point.
15991 (bibtex-entry-index): Use downcase. Simplify.
15992 (bibtex-lessp): Handle catch-all.
15993 (bibtex-find-crossref): Turn into a command.
15994 (bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
15995 (bibtex-clean-entry): Use bibtex-read-key. Handle string and
15996 preamble entries.
15997 (bibtex-fill-field-bounds): New function.
15998 (bibtex-fill-field): New command. Bound to fill-paragraph-function.
15999 (bibtex-fill-entry): Use bibtex-fill-field-bounds
16000 (bibtex-String): Use bibtex-strings. Always obey
16001 bibtex-sort-ignore-string-entries.
16002
16003 2003-07-05 John Paul Wallington <jpw@gnu.org>
16004
16005 * cus-theme.el (customize-create-theme):
16006 Call `customize-create-theme' in Reset widget's notify function.
16007
16008 * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
16009 (ibuffer-mark-interactive): Use `or' instead of `unless'.
16010 (define-ibuffer-column name): Add summarizer.
16011 (define-ibuffer-column size): Likewise.
16012 (define-ibuffer-column filename): Likewise.
16013 (define-ibuffer-column process): Likewise. Change BODY's output too.
16014 (define-ibuffer-column filename-and-process): Likewise, likewise.
16015 (ibuffer): Remove local vars `already-in' and `need-update'.
16016
16017 * ibuf-ext.el: Don't require `derived' at compile-time.
16018
16019 2003-07-05 Kim F. Storm <storm@cua.dk>
16020
16021 * info.el: Disable paragraph refilling.
16022 (Info-refill-paragraphs): New defcustom.
16023 (Info-fontify-node): Use it.
16024
16025 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
16026
16027 * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
16028 thingies from constructors created by defstruct.
16029
16030 * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
16031 the default value of the variable.
16032 (byte-code-meter): Move declaration to top level.
16033
16034 * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
16035
16036 * info.el (Info-following-node-name-re): New fun.
16037 (Info-following-node-name): Remove.
16038 (Info-insert-dir): Use the new fun.
16039 (Info-extract-pointer): Don't save restriction; use new fun.
16040 (Info-menu-entry-name-re): New const.
16041 (Info-menu-entry-name-re): Use it along with new fun.
16042 (Info-node-spec-re): Use new fun.
16043 (Info-complete-menu-item, Info-fontify-node): Use new const.
16044 (Info-goto-node, Info-follow-reference, Info-menu-update):
16045 Use match-string.
16046 (Info-follow-reference): Use assoc-string.
16047 Use a list of strings for the completion table.
16048 (Info-fontify-node): Use match-string, line-end-position.
16049 Limit the search for `node:' to the first line.
16050
16051 * newcomment.el (uncomment-region): Remove padding coming from
16052 comment-start rather than just from comment-padding.
16053
16054 * vc-cvs.el (vc-cvs-repository-hostname): New operation.
16055 (vc-cvs-stay-local-p): Use vc-stay-local-p.
16056 (vc-cvs-rename-file): Remove (use the default).
16057 (vc-cvs-register): Register parent dir if needed.
16058 (vc-cvs-could-register): Return non-nil if parent can be registered.
16059 (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
16060 (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
16061
16062 * vc-svn.el (vc-svn-use-edit): Make it into a const.
16063 (vc-svn-update): Fix the arguments to `svn'.
16064 (vc-svn-diff-tree): Just use `vc-svn-diff'.
16065 (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
16066 Simple implementations, assuming `name' is a URL.
16067
16068 * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
16069 set of chars allowed unquoted in a case pattern.
16070
16071 * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
16072
16073 * font-lock.el (font-lock-extra-types-widget)
16074 (c-font-lock-extra-types, c++-font-lock-extra-types)
16075 (objc-font-lock-extra-types, java-font-lock-extra-types)
16076 (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
16077 (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
16078 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
16079 (font-lock-match-c++-structor-declaration)
16080 (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
16081 (c++-font-lock-keywords-3, c++-font-lock-keywords)
16082 (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
16083 (objc-font-lock-keywords-3, objc-font-lock-keywords)
16084 (java-font-lock-keywords-1, java-font-lock-keywords-2)
16085 (java-font-lock-keywords-3, java-font-lock-keywords)
16086 (java-font-lock-syntactic-face-function): Remove obsolete code
16087 and constants. It's all in cc-fonts.el now.
16088
16089 2003-07-04 Glenn Morris <gmorris@ast.cam.ac.uk>
16090
16091 * mail/sendmail.el (mail-specify-envelope-from)
16092 (mail-envelope-from): Doc fix.
16093
16094 2003-07-04 Martin Stjernholm <mast@lysator.liu.se>
16095
16096 * generic-x.el: Do away with the dependency on `c-emacs-features'
16097 when populating `rul-generic-mode-syntax-table'; we already know
16098 this isn't XEmacs.
16099
16100 See ChangeLog.10 for earlier changes.
16101
16102 ;; Local Variables:
16103 ;; coding: iso-2022-7bit
16104 ;; End:
16105
16106 Copyright (C) 2001, 02, 04 Free Software Foundation, Inc.
16107 Copying and distribution of this file, with or without modification,
16108 are permitted provided the copyright notice and this notice are preserved.
16109
16110 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1