]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
915f169063a70ed27fd02dc932904869d43e503a
[gnu-emacs] / lisp / ChangeLog
1 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
2
3 * files.el (break-hardlink-on-save): Fix typo in docstring.
4 Add :version tag.
5
6 * emacs-lisp/re-builder.el (reb-mode-map): Fix typo in menu tooltip.
7 (reb-mode): Define with `define-derived-mode'.
8
9 2008-11-29 Karl Fogel <kfogel@red-bean.com>
10
11 * files.el (break-hardlink-on-save): New variable.
12 (basic-save-buffer-2): Honor new variable break-hardlink-on-save.
13 (file-precious-flag): Mention it in doc string.
14
15 2008-11-29 Miles Bader <miles@gnu.org>
16
17 * minibuffer.el (minibuffer-confirm-exit-commands): New variable.
18 (minibuffer-complete-and-exit): Use it.
19
20 2008-11-29 Chong Yidong <cyd@stupidchicken.com>
21
22 * term/x-win.el (x-gtk-stock-cache): New hash table.
23 (x-gtk-map-stock): Perform caching to prevent excess consing during
24
25 2008-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
26
27 * minibuffer.el (completion--try-word-completion): Don't ignore
28 partial-completion if it's the only style.
29
30 2008-11-28 Juanma Barranquero <lekktu@gmail.com>
31
32 * emacs-lisp/re-builder.el (reb-auto-update): Remove redundant code.
33 (re-builder): Reuse window displaying the *RE-Builder* buffer, if any.
34 (reb-initialize-buffer): Update matches, in case we're reentering
35 RE Builder mode.
36
37 2008-11-28 Chong Yidong <cyd@stupidchicken.com>
38
39 * complete.el (PC-do-complete-and-exit): Synch to 2008-11-24 change
40 to minibuffer.el; recognize `confirm' and `confirm-after-completion'
41 values for minibuffer-completion-confirm.
42
43 2008-11-28 Martin Rudalics <rudalics@gmx.at>
44
45 * emacs-lisp/eldoc.el (eldoc-docstring-first-line): Don't match
46 any but the first "*" in a doc-string.
47
48 2008-11-28 Glenn Morris <rgm@gnu.org>
49
50 * format.el (format-write-file): Improve previous doc fix.
51
52 2008-11-27 Chong Yidong <cyd@stupidchicken.com>
53
54 * simple.el (use-empty-active-region, use-region-p)
55 (region-active-p): Doc fix.
56
57 2008-11-27 Martin Rudalics <rudalics@gmx.at>
58
59 * window.el (display-buffer): Fix handling of not-this-window
60 argument. (Bug#1415)
61
62 2008-11-27 Kenichi Handa <handa@m17n.org>
63
64 * international/characters.el: Set category 'C' to characters
65 #x20000..#x2AFFF, #x2F800..#x2FFFF.
66
67 * loadup.el: Set inhibit-load-charset-map to t while preloading
68 files.
69
70 2008-11-27 Chong Yidong <cyd@stupidchicken.com>
71
72 * tool-bar.el (tool-bar-find-image-cache): Var deleted.
73 (tool-bar-find-image): Function deleted.
74 (tool-bar-local-item, tool-bar-local-item-from-menu): Use
75 find-image instead of tool-bar-find-image.
76 (tool-bar-keymap-cache): New hash table.
77 (tool-bar-make-keymap): Use it.
78 (tool-bar-make-keymap-1): Move body of tool-bar-make-keymap here.
79
80 2008-11-26 Michael Albinus <michael.albinus@gmx.de>
81
82 * net/dbus.el (dbus-handle-event): The result of a message call
83 handler can also be an object, which is not a consp.
84
85 2008-11-25 Alan Mackenzie <acm@muc.de>
86
87 * emacs-lisp/lisp.el (forward-sexp, backward-sexp, mark-sexp)
88 (forward-list, backward-list, down-list, backward-up-list)
89 (up-list, kill-sexp, backward-kill-sexp, kill-backward-up-list)
90 (insert-pair, insert-parentheses): State that the command assumes
91 that point is not in a string or comment.
92
93 2008-11-26 Michael Albinus <michael.albinus@gmx.de>
94
95 * net/dbus.el (dbus-string-to-byte-array)
96 (dbus-byte-array-to-string, dbus-escape-as-identifier)
97 (dbus-unescape-from-identifier): New defuns.
98 (dbus-handle-event): The result of a message call is a list of
99 arguments, which must be expanded when passing to
100 `dbus-method-return-internal'.
101
102 * net/tramp.el (tramp-handle-write-region): Improve the check for
103 calling direct copy.
104 (tramp-find-inline-encoding): Don't raise an error but a warning,
105 when no inline encoding is found.
106 (tramp-get-remote-coding): Check for a symbol. The negative check
107 for a string fails, when there is an empty string.
108
109 2008-11-26 Glenn Morris <rgm@gnu.org>
110
111 * vc-git.el (vc-git-diff-switches): New option.
112 (vc-git-diff): Apply diff switches. (Bug#1386)
113 Give it a basic doc string.
114
115 * term/pc-win.el (x-font-family-list): Replace redefinition with
116 ifdef in src/xfaces.c, since it confuses make-docfile. (Bug#1383)
117
118 2008-11-26 Vincent Belaïche <vincent.b.1@hotmail.fr>
119
120 * calc/calc-alg.el (calcFunc-collect): Normalize the coefficients
121 of the polynomial rather than the whole polynomial.
122
123 2008-11-25 Chong Yidong <cyd@stupidchicken.com>
124
125 * mail/mailabbrev.el (define-mail-abbrev): When reading from
126 mailrc, recognize string quoting. When reading from Lisp, accept
127 rfc822-like addresses.
128
129 * mail/mailalias.el (define-mail-alias): Sync code with
130 define-mail-abbrev.
131
132 2008-11-25 Glenn Morris <rgm@gnu.org>
133
134 * eshell/esh-proc.el (eshell-gather-process-output):
135 Revert previous change. (re-opens Bug#1388)
136
137 * select.el (x-set-cut-buffer): Fix signal arguments.
138
139 * speedbar.el (speedbar-restricted-move): Fix signal arguments.
140
141 2008-11-25 Juanma Barranquero <lekktu@gmail.com>
142
143 * play/bubbles.el (bubbles-mode): Define with `define-derived-mode'.
144 (bubbles-shift-mode, bubbles--update-score): Fix typos in docstrings.
145 (bubbles--empty-char): Use "\s".
146
147 2008-11-25 Jay Belanger <jay.p.belanger@gmail.com>
148
149 * calc/calc.el (calc-settings-file, calc-language-alist)
150 (calc-embedded-announce-formula)
151 (calc-embedded-announce-formula-alist)
152 (calc-embedded-open-formula, calc-embedded-close-formula)
153 (calc-embedded-open-close-formula-alist)
154 (calc-embedded-word-regexp-alist, calc-embedded-open-plain)
155 (calc-embedded-close-plain, calc-embedded-open-close-plain-alist)
156 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
157 (calc-embedded-open-close-new-formula-alist)
158 (calc-embedded-open-mode, calc-embedded-close-mode)
159 (calc-embedded-open-close-mode-alist, calc-gnuplot-name)
160 (calc-gnuplot-plot-command, calc-gnuplot-print-command)
161 (calc-multiplication-has-precedence): Remove unnecessary asterisks
162 from docstrings.
163
164 2008-11-25 Juanma Barranquero <lekktu@gmail.com>
165
166 * calculator.el (calculator-op-or-exp): Reflow docstring.
167 (calculator-remove-zeros, calculator-repR, calculator-repL):
168 Fix typos in docstrings.
169
170 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
171
172 * log-view.el (log-view-annotate-version): Let vc-annotate manage
173 windows instead of calling switch-to-buffer.
174
175 * diff.el (diff-sentinel): Take note of diff error return value.
176
177 2008-11-24 Martin Rudalics <rudalics@gmx.at>
178
179 * calendar/appt.el (appt-disp-window): Do a set-buffer when the
180 frame can't be split.
181
182 2008-11-24 Ulf Jasper <ulf@web.de>
183
184 * net/newst-treeview.el (newsticker--treeview-current-feed): Doc
185 string.
186 (newsticker--treeview-item-show): Renamed arg FEED to
187 FEED-NAME-SYMBOL.
188 (newsticker--treeview-tree-update-tag): Removed dead code.
189 (newsticker-treeview-update): Don't update cache.
190 (newsticker-treeview-quit): Don't save cache.
191 (newsticker-treeview-save): Don't save cache. Use `newsticker-dir'.
192 (newsticker-treeview-save): Use `newsticker-dir'.
193 (newsticker--treeview-load): Use `newsticker-dir'.
194 (newsticker--treeview-mark-item): Call `newsticker--cache-save-feed'.
195 Update tags.
196 (newsticker-treeview-tree-do-click): Slightly simplified.
197
198 * net/newst-backend.el (newsticker-dir): New.
199 (newsticker-start): Use `newsticker--cache-read'.
200 (newsticker-stop): Use `newsticker--cache-save'.
201 (newsticker--sentinel-work): Use `newsticker--cache-save-feed'.
202 (newsticker--images-dir): New.
203 (newsticker--image-get, newsticker--image-sentinel): Use
204 `newsticker--images-dir'.
205 (newsticker--cache-save-version1): Backuped version of
206 `newsticker--cache-save'.
207 (newsticker--cache-update): Create newsticker-dir if necessary.
208 (newsticker--cache-dir): New.
209 (newsticker--cache-save): Save feeds separately in `newsticker-dir'.
210 (newsticker--cache-save-feed): New.
211 (newsticker--cache-read-version1): New. Backuped version for reading
212 cache data..
213 (newsticker--cache-read, newsticker--cache-do-read): New.
214
215 * net/newst-reader.el (newsticker--image-read): Use
216 `newsticker--images-dir'.
217
218 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
219
220 * files.el (confirm-nonexistent-file-or-buffer): Allow
221 `after-completion' value to request confirm only after TAB.
222 (confirm-nonexistent-file-or-buffer): New function.
223 (read-buffer-to-switch, find-file, find-file-other-window)
224 (find-file-other-frame, find-file-read-only)
225 (find-file-read-only-other-window)
226 (find-file-read-only-other-frame): Use it.
227 (switch-to-buffer-other-window, switch-to-buffer-other-frame): Doc
228 fix.
229 Thanks to Alan Mackenzie for suggesting the new behavior.
230
231 * minibuffer.el (minibuffer-complete-and-exit): Change
232 `confirm-only' value of minibuffer-completion-confirm to
233 `confirm', and handle a `confirm-after-completion' value.
234
235 2008-11-24 Juanma Barranquero <lekktu@gmail.com>
236
237 * emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'.
238
239 2008-11-24 Andreas Schwab <schwab@suse.de>
240
241 * image.el (image-type-header-regexps): Recognize more xbm format
242 variants.
243
244 2008-11-24 Juanma Barranquero <lekktu@gmail.com>
245
246 * textmodes/artist.el (artist-charlist-to-string): Simplify.
247 (artist-mode-name, artist-mt, artist-vaporize-fuzziness)
248 (artist-prev-next-op-alist, artist-mode-line-show-curr-operation)
249 (artist-replace-string, artist-draw-rect, artist-draw-line)
250 (artist-undraw-line, artist-draw-sline, artist-undraw-rect)
251 (artist-rect-corners-squarify, artist-undraw-square, artist-fill-square)
252 (artist-pen, artist-pen-line, artist-text-insert-common)
253 (artist-text-overwrite, artist-spray-get-interval)
254 (artist-spray-clear-circle, artist-erase-char)
255 (artist-ellipse-generate-quadrant, artist-copy-square, artist-paste)
256 (artist-flood-fill, artist-key-draw-continously, artist-key-draw-poly)
257 (artist-key-draw-1point, artist-key-draw-2points)
258 (artist-mouse-draw-continously): Fix typos in docstrings.
259 (artist-aspect-ratio, artist-mode, artist-go-get-symbol-shift)
260 (artist-go-get-symbol-shift-sub, artist-previous-line, artist-next-line)
261 (artist-backward-char, artist-forward-char): Doc fixes.
262 (artist-vaporize-line, artist-spray-chars, artist-spray-new-char):
263 Reflow docstrings.
264
265 2008-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
266
267 * international/quail.el (quail-vunion): New function.
268 (quail-defrule-internal): Use it to prevent accumulating redundant
269 alternatives when `append' is set.
270 (quail-insert-decode-map): Simplify computation of the max-key-width.
271 Compute it right for multiple-list.
272
273 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
274
275 * emacs-lisp/elp.el (elp-instrument-list): Check argument type
276 explicitly. Doc fix.
277
278 2008-11-24 Martin Rudalics <rudalics@gmx.at>
279
280 * calendar/appt.el (appt-disp-window): Move minibuffer check
281 after binding this-window and do not set-buffer to make sure we
282 won't deselect the minibuffer. (Bug#1413)
283
284 2008-11-24 Dan Nicolaescu <dann@ics.uci.edu>
285
286 * vc-hg.el (vc-hg-program): Remove.
287 (vc-hg-state, vc-hg-working-revision, vc-hg-command):
288 Undo previous change.
289
290 2008-11-23 Martin Rudalics <rudalics@gmx.at>
291
292 * info-look.el (info-lookup): When Info buffer is visible on
293 another frame, raise that frame.
294
295 2008-11-23 Juanma Barranquero <lekktu@gmail.com>
296
297 * allout.el (allout-mode): Fix typo in docstring.
298
299 * vc-annotate.el (vc-annotate-warp-revision): Reflow docstring.
300 (vc-annotate-very-old-color, vc-annotate-display): Fix docstring typos.
301
302 2008-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
303
304 * vc-hooks.el (vc-follow-link): Complete last change.
305
306 2008-11-23 Juanma Barranquero <lekktu@gmail.com>
307
308 * textmodes/remember.el (remember-region): Doc fix.
309 (remember-filter-functions, remember-handler-functions)
310 (remember-save-after-remembering, remember-mailbox)
311 (remember-default-priority, remember-data-file, remember-leader-text)
312 (remember-diary-file): Remove * from defcustom docstrings.
313 (remember-run-all-annotation-functions-flag)
314 (remember-all-handler-functions): Reflow docstrings.
315 (remember-store-in-mailbox): Fix typo in docstring.
316 (remember-mode): Define with `define-derived-mode'. Doc fix.
317
318 2008-11-23 Glenn Morris <rgm@gnu.org>
319
320 * eshell/esh-cmd.el (eshell-in-pipeline-p): Add doc-string.
321 (eshell-do-pipelines): Add optional argument to distinguish recursive
322 calls. Use to set eshell-in-pipeline-p to 'first for the first command
323 in a pipeline.
324
325 * eshell/esh-proc.el (eshell-gather-process-output):
326 Set process-connection-type nil for all but the first element of a
327 pipeline. (Bug#1388)
328
329 2008-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
330
331 * ediff-hook.el: Add tooltips to Emacs menus.
332
333 * ediff.el: Change date of last update.
334
335 2008-11-22 Juri Linkov <juri@jurta.org>
336
337 * dired-aux.el (dired-isearch-filenames): Add new context-dependent
338 option `dwim'. Change non-dwim option from `dired-filename' to `t'.
339 Doc fix.
340 (dired-isearch-filenames-setup): Run filename Isearch only when
341 dired-isearch-filenames is t or dired-isearch-filenames is `dwim'
342 and the text property `dired-filename' at point is non-nil.
343 In this case also set isearch-message-prefix-add to "filename ".
344 (dired-isearch-filenames-end): Set isearch-message-prefix-add to nil.
345 (dired-isearch-filenames, dired-isearch-filenames-regexp):
346 Don't let-bind isearch-message-prefix-add since this is done now
347 in dired-isearch-filenames-setup.
348
349 * isearch.el (isearch-mode): Change the order of calling
350 `isearch-update' and running the `isearch-mode-hook' to call
351 `isearch-update' with Isearch parameters set in this hook.
352
353 * progmodes/compile.el (compilation-auto-jump-to-first-error):
354 Fix docstring - change "during `compile'" to "during compilation".
355
356 * descr-text.el (describe-char-unidata-list): Move `old-name' to
357 be immediately after `name'.
358
359 * startup.el (initial-buffer-choice): Change an abstract file name
360 "file.txt" to more reasonable default file name value "~/.emacs".
361
362 2008-11-22 Juri Linkov <juri@jurta.org>
363
364 * files.el (hack-local-variables-confirm): Rename arg `project' to
365 `dir-name'. Move `(or dir-name name)' to let-binding of `name'.
366 (hack-local-variables-filter): Rename arg `project' to `dir-name'.
367 (hack-local-variables): Rename call of `hack-project-variables' to
368 `hack-dir-local-variables'. Change error text to "Directory-local
369 variables error".
370 (dir-locals-class-alist): Rename from `project-class-alist'.
371 (dir-locals-directory-alist): Rename from `project-directory-alist'.
372 (dir-locals-get-class-variables): Rename from `project-get-alist'.
373 (dir-locals-collect-mode-variables): Rename from
374 `project-collect-bindings-from-alist'. Rename arg `mode-alist' to
375 `mode-variables', and arg `settings' to `variables'.
376 (dir-locals-collect-variables): Rename from
377 `project-collect-binding-list'. Rename arg `binding-list' to
378 `class-variables', and arg `settings' to `variables'.
379 (dir-locals-set-directory-class): Rename from `set-directory-project'.
380 (dir-locals-set-class-variables): Rename from `define-project-bindings'.
381 Rename arg `settings' to `variables'.
382 (dir-locals-file): New defconst.
383 (dir-locals-find-file): Rename from `project-find-settings-file'.
384 Use `dir-locals-file'. Rename let-bound `settings' to `locals-file',
385 and `pda' to `dir-elt'.
386 (dir-locals-read-from-file): Rename from
387 `project-define-from-project-file'. Rename arg `settings-file'
388 to `file'. Rename let-bound `list' to `variables'.
389 (hack-dir-local-variables): Rename from `hack-project-variables'.
390 Rename let-bound `settings' to `variables-file', `root-dir'
391 to `dir-name', and `bindings' to `variables'.
392
393 2008-11-22 Lute Kamstra <lute@gnu.org>
394
395 * simple.el (goto-line): Rename argument.
396
397 2008-11-22 Eli Zaretskii <eliz@gnu.org>
398
399 * makefile.w32-in (compile-first): New target.
400 (recompile): Depend on compile-first.
401
402 * Makefile.in (recompile): Depend on compile-first.
403
404 2008-11-22 Martin Rudalics <rudalics@gmx.at>
405
406 * files.el (switch-to-buffer-other-window)
407 (switch-to-buffer-other-frame): Rename buffer argument to
408 buffer-or-name. Reword and mention new option
409 confirm-nonexistent-file-or-buffer in doc-string.
410
411 2008-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
412
413 * viper.el: Date change.
414
415 * viper-cmd.el (viper-envelop-ESC-key):
416 viper-translate-all-ESC-keysequences is now a function.
417
418 * viper-init (viper-translate-all-ESC-keysequences): Make this variable.
419
420 2008-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
421
422 * vc-hooks.el (vc-follow-link, vc-find-file-hook):
423 Use buffer-file-truename to handle symlinks in any part of the filename.
424
425 2008-11-22 Glenn Morris <rgm@gnu.org>
426
427 * vc-mtn.el (vc-mtn-diff-switches): New option.
428 (vc-mtn-program): Rename from vc-mtn-command, for
429 consistency with other backends. Keep old name as alias.
430 Update callers. Make it a defcustom.
431 (vc-mtn-diff): Give it a doc string. Apply diff switches.
432
433 * vc-arch.el (vc-arch-program): Rename from vc-arch-command, for
434 consistency with other backends. Keep old name as alias.
435 Make it a defcustom.
436 (vc-arch-command, vc-arch-trim-revlib): Adapt for above change.
437
438 * vc-hg.el (vc-hg-program): New option.
439 (vc-hg-state, vc-hg-working-revision, vc-hg-command):
440 Use vc-hg-program rather than hard-coded "hg".
441
442 * vc-svn.el: Remove leading `*' from defcustom doc-strings.
443 (vc-svn-program): Move defcustom to start.
444 (vc-svn-create-repo, vc-svn-modify-change-comment):
445 Use vc-svn-program rather than hard-coded "svn".
446
447 * menu-bar.el: Stylistic consistency fixes for various menu and
448 help texts.
449
450 * kmacro.el (kmacro-insert-counter): Doc fix.
451
452 2008-11-21 Ivan Shmakov <oneingray@gmail.com> (tiny change)
453
454 * progmodes/tcl.el (tcl-filter): Don't forcibly move point.
455
456 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
457
458 * international/quail.el (quail-indent-to): New function.
459 (quail-completion-1, quail-completion-list-translations)
460 (quail-insert-decode-map): Use it to improve alignment.
461 (quail-build-decode-map): Don't ignore latin-1 chars.
462 (quail-help): Increase the max decode-map size so that even the TeX map
463 gets printed.
464
465 * bookmark.el (bookmark-get-bookmark): Add `noerror' arg.
466 Signal error for invalid bookmark.
467 (bookmark-get-bookmark-record): Undo last change.
468 (bookmark-store, bookmark-delete): Use new arg `noerror'.
469
470 * bookmark.el (bookmark-buffer-file-name): Also abbreviate dired-dir.
471 Suggested by Toru TSUNEYOSHI.
472
473 2008-11-21 Shigeru Fukaya <shigeru.fukaya@gmail.com>
474
475 * byte-opt.el (byte-compile-butlast): Move up in file.
476 (byte-optimize-plus): Don't call
477 byte-optimize-delay-constants-math (bug#1334).
478 Use byte-optimize-predicate to optimize constants.
479 (byte-optimize-minus): Don't call byte-optimize-delay-constants-math.
480 Remove zero arguments first
481 if possible. Call byte-optimize-predicate to optimize constants.
482 (byte-optimize-multiply): Remove optimizations for arguments of 0
483 and 2, which may be inaccurate. Optimize (* x -1) to (- x).
484 Call byte-optimize-predicate.
485 (byte-optimize-divide): Leave runtime errors unchanged.
486 Optimize (/ x 1) to (+ x 0). Remove optimizations for arguments of
487 0 and 2.0, which may be inaccurate. Call byte-optimize-predicate.
488
489 2008-11-21 Juanma Barranquero <lekktu@gmail.com>
490
491 * bookmark.el (bookmark-jump-noselect): Add obsolescence
492 declaration and remove redundant info from docstring.
493
494 * isearch.el (isearch-search-string): Doc fix.
495 (search-exit-option, search-slow-window-lines, search-slow-speed)
496 (search-upper-case, search-nonincremental-instead)
497 (search-whitespace-regexp, search-ring-max, regexp-search-ring-max)
498 (search-ring-update, search-highlight, isearch-lazy-highlight)
499 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
500 (lazy-highlight-interval): Remove * from defcustom docstrings.
501 (isearch-resume-in-command-history, lazy-highlight-max-at-a-time):
502 Remove * from defcustom docstrings; fix typos.
503 (isearch-push-state-function, isearch-help-for-help-internal)
504 (isearch-help-for-help, isearch-describe-bindings)
505 (isearch-describe-mode, minibuffer-local-isearch-map, isearch-mode)
506 (isearch-pop-fun-state, isearch-search-fun-function)
507 (isearch-lazy-highlight-search): Fix typos in docstrings.
508 (isearch-yank-internal, isearch-fallback): Reflow docstrings.
509 (isearch-forward): Fix typo and reflow docstring.
510 (isearch-help-map): Remove unused `i' binding. Fix typos in docstring.
511 (isearch-mode-map): Don't use `let*'.
512
513 2008-11-21 Chong Yidong <cyd@stupidchicken.com>
514
515 * files.el (confirm-nonexistent-file-or-buffer): Change default to nil.
516
517 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
518
519 * isearch.el (isearch-search-string): Simplify and convert docstring.
520
521 * buff-menu.el (Buffer-menu-short-ellipsis): Partly undo last change.
522
523 2008-11-20 Juanma Barranquero <lekktu@gmail.com>
524
525 * international/mule-util.el (set-nested-alist): Doc fix. Use `when'.
526 (lookup-nested-alist): Doc fix.
527 (with-coding-priority): Reflow docstring.
528 (detect-coding-with-priority): Fix typos in obsolescence declaration.
529 (char-displayable-p): Reflow docstring. Use `when'.
530
531 2008-11-20 Dan Nicolaescu <dann@ics.uci.edu>
532
533 * calendar/cal-menu.el (cal-menu-scroll-menu): Add bindings for
534 week forward/backward.
535
536 2008-11-20 Juanma Barranquero <lekktu@gmail.com>
537
538 * ehelp.el (electric-help-map, ehelp-map): Define within defvar.
539 (with-electric-help): Fix typo and reflow docstring.
540
541 2008-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
542
543 * buff-menu.el (Buffer-menu-short-ellipsis): New constant.
544 (Buffer-menu-buffer+size): Use it, fix last change, and simplify.
545 (list-buffers-noselect): Don't need to pad.
546
547 2008-11-20 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
548
549 * buff-menu.el (Buffer-menu-buffer+size, list-buffers-noselect):
550 Pay attention to char widths when computing string sizes.
551
552 2008-11-20 Juanma Barranquero <lekktu@gmail.com>
553
554 * emacs-lisp/bytecomp.el (byte-compile-dynamic-docstrings)
555 (byte-compile-output-docform): Reflow docstrings.
556 (no-byte-compile): Fix typo in docstring.
557 (byte-recompile-directory, compile-defun): Doc fixes.
558 (emacs-lisp-file-regexp, byte-compile-verbose)
559 (byte-compile-compatibility, byte-optimize, byte-compile-delete-errors)
560 (byte-compile-dynamic-docstrings, byte-optimize-log)
561 (byte-compile-error-on-warn, byte-compile-warnings)
562 (byte-compile-generate-call-tree, byte-compile-call-tree-sort):
563 Remove * from defcustom docstrings.
564
565 2008-11-20 Glenn Morris <rgm@gnu.org>
566
567 * format.el (format-alist, format-write-file): Doc fix.
568
569 * proced.el (proced-available): New variable.
570 (proced-process-attributes): Move availability check from previous
571 change from here...
572 (proced): ... to here.
573
574 * vc-hg.el (vc-hg-diff-switches): New option.
575 (vc-hg-diff): Apply diff switches. (Bug#1017)
576
577 * calc/calc-units.el (math-additional-units): Doc fix (active voice).
578
579 * progmodes/fortran.el (fortran-mode-map): Add some menu :help.
580
581 2008-11-20 Stephen Berman <Stephen.Berman@gmx.net>
582
583 * files.el (auto-mode-alist): Recognize more OpenOffice.org extensions.
584
585 2008-11-19 Juanma Barranquero <lekktu@gmail.com>
586
587 * calc/calc-units.el (math-units-table): Doc fix.
588 (math-standard-units): Fix typo in constant's description.
589 (math-additional-units): Fix typo in docstring.
590
591 2008-11-19 Ulrich Mueller <ulm@kph.uni-mainz.de>
592
593 * calc/calc-units.el (math-standard-units): Add eps0,
594 permittivity of vacuum.
595
596 2008-11-19 Dan Nicolaescu <dann@ics.uci.edu>
597
598 * files.el (project-settings-file): Remove.
599 (project-find-settings-file): Undo previous change that added the
600 use of project-settings-file.
601
602 2008-11-19 Glenn Morris <rgm@gnu.org>
603
604 * proced.el (proced, proced-format-time): Doc fixes.
605 (proced-process-attributes): Signal an error if unsupported. (Bug#1314)
606
607 2008-11-19 Karl Fogel <kfogel@red-bean.com>
608
609 * bookmark.el (bookmark-jump-noselect): Move the deprecation
610 notice into the doc string, following up to 2008-10-29T17:42:49Z!cyd@stupidchicken.com.
611
612 2008-11-19 Lute Kamstra <lute@gnu.org>
613
614 * autoinsert.el (auto-insert-alist): Don't use match data.
615
616 2008-11-19 Glenn Morris <rgm@gnu.org>
617
618 * progmodes/f90.el (f90-mode-map): Add some menu :help.
619
620 * autoinsert.el (auto-insert-alist): Update template to FDL 1.3+.
621
622 * emacs-lisp/cl.el (floor*, ceiling*, truncate*, round*, mod*):
623 * term/w32-win.el (x-select-font): Declare.
624
625 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Fix a/an typo.
626 Use the imperative for all help strings.
627
628 2008-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
629
630 * textmodes/ispell.el (ispell-dictionary-base-alist): Adjust to the
631 case where the default dictionary is French, Spanish, younameit.
632
633 * window.el (window--frame-usable-p): Consider dedicated windows
634 as usable.
635
636 * files.el (confirm-nonexistent-file-or-buffer):
637 Rename from find-file-confirm-nonexistent-file.
638 (read-buffer-to-switch): Use it.
639
640 2008-11-18 Juanma Barranquero <lekktu@gmail.com>
641
642 * server.el (server-temp-file-p): Use `string-match-p'.
643 (server-socket-dir): Set to nil if local sockets are unsupported.
644 (server-start): Don't try to delete local socket if unsupported.
645 (server-kill-new-buffers): Reflow docstring.
646 (server-delete-client, server-handle-delete-frame)
647 (server-save-buffers-kill-terminal): Doc fixes.
648 (server-send-string): Fix typo in docstring.
649
650 2008-11-18 Sam Steingold <sds@gnu.org>
651
652 * progmodes/compile.el (compilation-start-hook): New hook.
653 (compilation-start): Run it on the compilation process.
654
655 2008-11-18 Juanma Barranquero <lekktu@gmail.com>
656
657 * international/mule-cmds.el (update-leim-list-file): Simplify.
658 (prefer-coding-system, find-coding-systems-for-charsets):
659 Fix docstring typos.
660 (select-safe-coding-system, input-method-exit-on-first-char)
661 (language-info-alist, language-info-custom-alist): Reflow docstrings.
662 (toggle-input-method, read-multilingual-string): Doc fixes.
663 Reflow docstrings.
664 (locale-name-match, sort-coding-systems, find-multibyte-characters)
665 (read-char-by-name): Use `string-match-p'.
666 (get-char-code-property, put-char-code-property)
667 (char-code-property-description): Be silent while loading uni-* files.
668 (ucs-names): Use `dotimes-with-progress-reporter', because loading
669 the Unicode character names is *slow*.
670
671 2008-11-17 Chong Yidong <cyd@stupidchicken.com>
672
673 * wid-edit.el (widget-image-insert): Don't add a mouse-face.
674
675 * cus-edit.el (custom-group-value-create): Don't insert docstring twice.
676
677 2008-11-17 Juanma Barranquero <lekktu@gmail.com>
678
679 * international/mule-cmds.el (ucs-completions): Mark as risky.
680
681 2008-11-17 Martin Rudalics <rudalics@gmx.at>
682
683 * help-macro.el (three-step-help): Remove * from defcustom.
684 (make-help-screen): Don't iconify selected frame. (Bug#1322)
685 Use when instead of if and cond within condition-case.
686
687 * window.el (quit-window): Bind window to selected window when
688 trying to delete it.
689
690 2008-11-17 Glenn Morris <rgm@gnu.org>
691
692 * progmodes/cc-defs.el (c-put-char-property-fun): Add fallback
693 definition of 'ignore, rather than nil. (Bug#1353)
694
695 2008-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
696
697 * window.el (window--frame-usable-p): Allow use for soft-dedication.
698
699 2008-11-17 Juanma Barranquero <lekktu@gmail.com>
700
701 * emulation/viper-cmd.el (viper-harness-minor-mode): Fix docstring typo.
702
703 * simple.el (quoted-insert, minibuffer-history-isearch-pop-state, undo)
704 (undo-only, rotate-yank-pointer, kill-whole-line, push-mark-command)
705 (exchange-point-and-mark, set-goal-column, kill-line, backward-word)
706 (kill-word, backward-kill-word, zap-to-char): Doc fixes.
707 (shell-command, repeat-complex-command): Reflow docstrings.
708 (pop-to-mark-command): Fix typos in docstring.
709
710 2008-11-17 Juri Linkov <juri@jurta.org>
711
712 * isearch.el (isearch-filter-predicate): Rename from
713 `isearch-success-function'. Rename default value from
714 `isearch-success-function-default' to
715 `isearch-filter-invisible'. Doc fix.
716 (isearch-filter-invisible): Rename from
717 `isearch-success-function-default'. Doc fix.
718 (isearch-search, isearch-lazy-highlight-search):
719 Rename `isearch-success-function' to `isearch-filter-predicate'.
720
721 * dired-aux.el (dired-isearch-filter-predicate-orig): Rename from
722 `dired-isearch-orig-success-function'.
723 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
724 (dired-isearch-filenames-end): Rename `isearch-success-function' to
725 `isearch-filter-predicate'. Doc fix.
726 (dired-isearch-filter-filenames): Rename from
727 `dired-isearch-success-function'.
728
729 * info.el (Info-search, Info-mode):
730 Rename `isearch-success-function' to `isearch-filter-predicate'.
731 (Info-isearch-filter-predicate): Rename from
732 `Info-search-success-function'.
733
734 * simple.el (minibuffer-default-add-function): Fix docstring to
735 use clear text "default values" instead of obscure references to
736 the dynamic variable `minibuffer-default'.
737
738 2008-11-16 Glenn Morris <rgm@gnu.org>
739
740 * term/ns-win.el (ns-extended-platform-support-mode):
741 Tweak menu entry from previous change.
742
743 * wid-edit.el (advertised-widget-backward): Remove autoload cookie.
744
745 * cus-edit.el (custom-buffer-create-internal): Always insert the
746 in-buffer buttons, regardless of tool-bar. (Bug#1326)
747
748 2008-11-16 Chong Yidong <cyd@stupidchicken.com>
749
750 * subr.el (read-passwd): Use read-event instead of read-char-exclusive.
751
752 2008-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
753
754 * ielm.el (ielm-eval-input): Fix thinko in last change.
755
756 2008-11-16 Chong Yidong <cyd@stupidchicken.com>
757
758 * subr.el (read-passwd): Yank current kill if the user enters C-y.
759
760 2008-11-16 Michael Albinus <michael.albinus@gmx.de>
761
762 * net/tramp.el (tramp-handle-file-name-as-directory): New defun.
763 (tramp-file-name-handler-alist): Handle `file-name-as-directory'.
764
765 * net/tramp-fish.el (tramp-fish-file-name-handler-alist)
766 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
767 Handle `file-name-as-directory'.
768
769 2008-11-16 Chong Yidong <cyd@stupidchicken.com>
770
771 * startup.el (fancy-startup-text): Give "Emacs tutorial" line the
772 usual variable-pitch face.
773
774 2008-11-16 Juanma Barranquero <lekktu@gmail.com>
775
776 * net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
777 (ange-ftp-try-passive-mode, ange-ftp-data-buffer-name)
778 (ange-ftp-account-hashtable, ange-ftp-ls-cache-lsargs)
779 (ange-ftp-ls-cache-file, ange-ftp-ls-cache-res, ange-ftp-get-user)
780 (ange-ftp-ftp-name-component, ange-ftp-kill-ftp-process)
781 (ange-ftp-quote-string, ange-ftp-process-handle-line)
782 (ange-ftp-start-process, ange-ftp-send-cmd, ange-ftp-add-dumb-unix-host)
783 (ange-ftp-before-parse-ls-hook, ange-ftp-after-parse-ls-hook)
784 (ange-ftp-ls, ange-ftp-add-dl-dir, ange-ftp-get-file-entry)
785 (ange-ftp-set-binary-mode, ange-ftp-set-ascii-mode, ange-ftp-get-pwd)
786 (ange-ftp-file-name-as-directory-alist, ange-ftp-reread-dir)
787 (ange-ftp-vms-filename-regexp, ange-ftp-bs2000-fix-name-regexp-reverse)
788 (ange-ftp-bs2000-fix-name-regexp): Fix typos in docstrings.
789 (ange-ftp-name-format, ange-ftp-gateway-fatal-msgs)
790 (ange-ftp-xfer-size-msgs, ange-ftp-tmp-name-template)
791 (ange-ftp-netrc-filename, ange-ftp-disable-netrc-security-check)
792 (ange-ftp-default-user, ange-ftp-default-password)
793 (ange-ftp-default-account, ange-ftp-netrc-default-password)
794 (ange-ftp-netrc-default-account, ange-ftp-dumb-unix-host-regexp)
795 (ange-ftp-binary-file-name-regexp, ange-ftp-gateway-host)
796 (ange-ftp-gateway-prompt-pattern, ange-ftp-smart-gateway-port)
797 (ange-ftp-send-hash, ange-ftp-binary-hash-mark-size)
798 (ange-ftp-ascii-hash-mark-size, ange-ftp-process-verbose)
799 (ange-ftp-ftp-program-name, ange-ftp-gateway-ftp-program-name)
800 (ange-ftp-ftp-program-args, ange-ftp-nslookup-program)
801 (ange-ftp-make-backup-files, ange-ftp-retry-time)
802 (ange-ftp-bs2000-special-prefix): Remove * from defcustom docstrings.
803 (ange-ftp-skip-msgs, ange-ftp-potential-error-msgs)
804 (ange-ftp-gateway-tmp-name-template)
805 (ange-ftp-generate-anonymous-password, ange-ftp-local-host-regexp)
806 (ange-ftp-gateway-program-interactive, ange-ftp-smart-gateway)
807 (ange-ftp-raw-login): Remove * from defcustom docstrings; fix typos.
808 (ange-ftp-fatal-msgs): Remove * from defcustom docstring; doc fix.
809 (ange-ftp-gateway-program): Remove * from docstring and reflow.
810 (ange-ftp-hash-entry-exists-p, ange-ftp-hash-table-keys)
811 (ange-ftp-raw-send-cmd, ange-ftp-get-files, ange-ftp-canonize-filename)
812 (ange-ftp-file-name-as-directory, ange-ftp-directory-file-name):
813 (ange-ftp-copy-files-async, ange-ftp-rename-remote-to-remote):
814 (ange-ftp-rename-local-to-remote): Doc fixes.
815 (ange-ftp-set-xfer-size, ange-ftp-call-cont, ange-ftp-process-filter):
816 Use `when', `unless'.
817 (ange-ftp-set-passwd): Rename arg PASSWD to PASSWORD.
818 (ange-ftp-process-handle-hash): Rename arg STR to STRING.
819 (ange-ftp-nslookup-host): Rename arg HOST to HOSTNAME.
820 (ange-ftp-smart-login): Rename arg PASS to PASSWORD.
821 (ange-ftp-normal-login): Rename arg PASS to PASSWORD. Fix typo.
822 (ange-ftp-process-sentinel): Use `when'. Fix typo.
823 (ange-ftp-gwp-start): Use `let', not `let*'; use `when'. Fix typo.
824 (ange-ftp-fix-name-func-alist, ange-ftp-fix-dir-name-func-alist)
825 (ange-ftp-parse-list-func-alist, ange-ftp-add-file-entry-alist)
826 (ange-ftp-delete-file-entry-alist): Fix typos and reflow docstring.
827 (ange-ftp-dumb-unix-host, ange-ftp-binary-file)
828 (ange-ftp-directory-files, ange-ftp-file-modtime, ange-ftp-vms-host)
829 (ange-ftp-mts-host, ange-ftp-cms-host, ange-ftp-bs2000-host)
830 (ange-ftp-bs2000-posix-host): Use `string-match-p' instead of
831 `(save-match-data (string-match ...))'.
832 (ange-ftp-use-gateway-p, ange-ftp-use-smart-gateway-p)
833 (ange-ftp-file-name-directory, ange-ftp-file-name-nondirectory):
834 Use `string-match-p' instead of `(save-match-data (string-match ...))'.
835 Doc fixes.
836
837 2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
838
839 * emulation/viper-init.el (viper-ESC-keyseq-timeout): Make it into a
840 function instead of a variable.
841
842 * emulation/viper-util.el (viper-fast-keysequence-p): Change to use
843 viper-ESC-keyseq-timeout as a function.
844 (viper-get-saved-cursor-color-in-replace-mode): Use defun instead of
845 defsubst.
846
847 * emulation/viper-cmd.el: Let line-move-visual to nil when using
848 next-line or previous-line.
849 (viper-R-state-post-command-sentinel): Use defun instead of defsubst.
850
851 * emulation/viper-keym.el (viper-ESC-key): Use (kbd "ESC").
852
853 * ediff-util.el (ediff-toggle-multiframe): Check if control window is
854 live.
855 (ediff-save-buffer): Let window-min-height to 2.
856
857 * ediff-wind.el (ediff-setup-windows-plain-compare): Avoid selecting
858 the minibuffer.
859
860 2008-11-16 Juanma Barranquero <lekktu@gmail.com>
861
862 * ielm.el (ielm-noisy, ielm-dynamic-return, ielm-mode-hook)
863 (ielm-dynamic-multiline-inputs): Remove * from defcustom docstrings.
864 (ielm-prompt-read-only, ielm-font-lock-keywords): Fix docstring typos.
865 (ielm-map): Define within defvar. Add docstring.
866 (ielm-tab, ielm-eval-input, ielm-get-old-input, ielm-return)
867 (ielm-complete-filename): Use `when', `unless'.
868 (ielm-is-whitespace-or-comment): Use `string-match-p'.
869 (ielm-return, ielm-get-old-input): Use `looking-at-p'.
870 (ielm-change-working-buffer): Check that the buffer is live.
871 (inferior-emacs-lisp-mode): Define with `define-derived-mode'.
872 Simplify. Reflow docstring.
873 (inferior-emacs-lisp-mode-hook, inferior-emacs-lisp-mode-map):
874 New aliases, to satisfy `define-derived-mode' expectations.
875
876 2008-11-15 Glenn Morris <rgm@gnu.org>
877 Martin Rudalics <rudalics@gmx.at>
878
879 * emacs-lisp/find-func.el (find-function-advised-original): New.
880 (find-function-C-source, find-function-noselect):
881 Use find-function-advised-original to handle advised funcs. (Bug#789)
882
883 2008-11-15 Glenn Morris <rgm@gnu.org>
884
885 * emacs-lisp/find-func.el (find-function-noselect): Add missing "is" in
886 alias message.
887
888 * uniquify.el (uniquify-maybe-rerationalize-w/o-cb):
889 Remove uniquify-after-kill-buffer-p dependency.
890 (uniquify-kill-buffer-function): New function.
891 (kill-buffer-hook): Use uniquify-kill-buffer-function. (Bug#1315)
892
893 * term/ns-win.el (ns-do-applescript, ns-popup-font-panel): Declare.
894 (ns-show-manual, menu-bar-help-menu): Update for merge of ns-emacs into
895 main Emacs manual.
896
897 2008-11-15 Martin Rudalics <rudalics@gmx.at>
898
899 * window.el (quit-window): Restore delete window with second
900 arg non-nil behavior as of before 2008-10-30 change.
901
902 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
903
904 * help-fns.el (describe-function-1): Do char-range check for
905 self-insert-command.
906
907 2008-11-14 Karl Fogel <kfogel@red-bean.com>
908
909 * files.el (file-precious-flag): Document that this flag is advisory.
910
911 2008-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
912
913 * emacs-lisp/bytecomp.el (byte-compile-associative)
914 (byte-compile-minus, byte-compile-quo): If there are more than two
915 operands, don't use binary operation code (bug#1334).
916
917 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
918
919 * w32-fns.el (w32-shell-dos-semantics):
920 * calendar/diary-lib.el (diary-face-attrs):
921 * international/mule-cmds.el (set-default-coding-systems)
922 (prefer-coding-system):
923 * net/tramp.el (tramp-set-completion-function):
924 * progmodes/vhdl-mode.el (vhdl-file-header):
925 * term/pc-win.el (msdos-show-help): Fix typos in docstrings.
926
927 * emacs-lisp/authors.el (authors-fixed-entries): Fix typo in value.
928
929 * files.el (enable-local-eval, not-modified, kill-buffer-ask)
930 (kill-matching-buffers, save-buffers-kill-emacs)
931 (save-buffers-kill-terminal): Fix typos in docstrings.
932 (switch-to-buffer-other-window): Reflow docstring.
933 (revert-buffer): Doc fix.
934 (define-project-bindings): Rename arg LIST to SETTINGS.
935 (project-find-settings-file): Use `let', not `let*'.
936 Use `when'.
937
938 2008-11-13 Juanma Barranquero <lekktu@gmail.com>
939
940 * files.el (project-settings-file, locate-dominating-file):
941 Fix typos in docstrings.
942 (find-file-visit-truename): Remove * from defcustom docstring.
943
944 2008-11-13 T. V. Raman <raman@users.sourceforge.net> (tiny change)
945
946 * files.el (project-settings-file): New variable.
947 (project-find-settings-file): Use it, instead of hardcoding
948 .dir.settings.el.
949
950 2008-11-13 Glenn Morris <rgm@gnu.org>
951
952 * nxml/nxml-enc.el: Remove some charset code not needed since Emacs 22.
953
954 2008-11-13 Henry Weller <hweller0@gmail.com> (tiny change)
955
956 * net/mairix.el (mairix-widget-fields-list): Fix bug regarding searching
957 in mail bodies.
958
959 2008-11-12 Juanma Barranquero <lekktu@gmail.com>
960
961 * international/mule.el (autoload-coding-system, with-category-table)
962 (ctext-non-standard-encodings-alist): Fix typos in docstrings.
963 (coding-system-equal, set-buffer-process-coding-system): Doc fixes.
964 (set-buffer-file-coding-system, revert-buffer-with-coding-system)
965 (set-file-name-coding-system, ctext-pre-write-conversion)
966 (auto-coding-functions, find-auto-coding, modify-coding-system-alist):
967 Reflow docstrings.
968 (charset-list, set-coding-priority): Remove redundant obsolescence info.
969 (charset-id, charset-bytes, make-coding-system): Add obsolescence info.
970 (char-valid-p): Define with `define-obsolete-function-alias'.
971
972 * textmodes/artist.el (artist-mode): Fix typos in docstring.
973
974 2008-11-12 Sam Steingold <sds@gnu.org>
975
976 * vc-cvs.el (vc-cvs-parse-root): Handle roots without colon
977 between hostname and path.
978
979 2008-11-11 Juri Linkov <juri@jurta.org>
980
981 * dired-aux.el (dired-isearch-filenames)
982 (dired-isearch-filenames-regexp):
983 Let-bind isearch-message-prefix-add to "filename ".
984
985 * isearch.el (isearch-message-prefix-add)
986 (isearch-message-suffix-add): New variables.
987 (isearch-message-prefix): Show additional text from
988 `isearch-message-prefix-add' before "I-search".
989 (isearch-message-suffix): Show additional text from
990 `isearch-message-suffix-add' at the end.
991
992 * isearch.el (isearch-lazy-highlight-search): Use a loop like in
993 `isearch-search'. Call isearch-success-function to skip matches
994 outside the current isearch scope. Let-bind search-invisible to
995 nil to not match invisible text.
996
997 * isearch.el (isearch-query-replace, isearch-highlight-regexp):
998 Let-bind `isearch-recursive-edit' to nil to prevent calling
999 `exit-recursive-edit' in `isearch-done' that terminates the
1000 execution of these commands when it is non-nil. Call
1001 `exit-recursive-edit' explicitly at the end.
1002 (isearch-occur): For word search construct the correct regexp
1003 with word boundaries to proceed with occur.
1004
1005 * isearch.el (isearch-search-fun): Compare the length of the
1006 current search string with the length of the string from the
1007 previous search state to detect the situation when the user
1008 adds or removes characters in the search string.
1009 Use word-search-forward-lax and word-search-backward-lax in this
1010 case, and otherwise word-search-forward and word-search-backward.
1011
1012 2008-11-11 Sam Steingold <sds@gnu.org>
1013
1014 * mouse.el (mouse-buffer-menu-mode-groups): Place "Annotate" into
1015 the "Version Control" group (for C-x v g).
1016
1017 2008-11-11 Juanma Barranquero <lekktu@gmail.com>
1018
1019 * server.el (server-process-filter): Fix typos and reflow docstring.
1020
1021 2008-11-11 Martin Rudalics <rudalics@gmx.at>
1022
1023 * mail/footnote.el (footnote-mode): Improve doc-string.
1024 Suggested by <jidanni@jidanni.org>. (Bug#1318)
1025
1026 2008-11-11 Chong Yidong <cyd@stupidchicken.com>
1027
1028 * cus-edit.el (Custom-mode): Set up tool-bar-map unconditionally.
1029
1030 2008-11-10 Teodor Zlatanov <tzz@lifelogs.com>
1031
1032 * mail/smtpmail.el (smtpmail-open-stream): Use
1033 `starttls-any-program-available'. Auto-load starttls.el for it.
1034
1035 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
1036
1037 * dired.el (dired-read-dir-and-switches): Revert to 2007-11-22
1038 version (bug@1285).
1039
1040 2008-11-08 Eli Zaretskii <eliz@gnu.org>
1041
1042 * startup.el (command-line): Ignore init-file-user when checking
1043 user's home directory on MS-DOS as well.
1044
1045 2008-11-07 Sam Steingold <sds@gnu.org>
1046
1047 * progmodes/cc-cmds.el (c-defun-name): Fix CLISP DEFUN handling.
1048
1049 2008-11-07 Juanma Barranquero <lekktu@gmail.com>
1050
1051 * frame.el (make-frame-on-display): Use `string-match-p'.
1052
1053 2008-11-07 Glenn Morris <rgm@gnu.org>
1054
1055 * progmodes/cc-defs.el (cl-macroexpand-all): Fix declaration.
1056
1057 2008-11-07 Dan Nicolaescu <dann@ics.uci.edu>
1058
1059 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add new argument
1060 to initialize font-lock keyword case sensitivity.
1061 (lisp-mode): Use it.
1062
1063 2008-11-06 Glenn Morris <rgm@gnu.org>
1064
1065 * eshell/esh-maint.el: Remove unused file.
1066
1067 * progmodes/cc-defs.el (cl-macroexpand-all): Declare.
1068
1069 * cus-edit.el (custom-comment-tag): Doc fix.
1070 (custom-comment, custom-variable-value-create, custom-face):
1071 Use face names sans -face suffix rather than aliases.
1072
1073 2008-11-05 Jay Belanger <jay.p.belanger@gmail.com>
1074
1075 * calc/calc.el (calc-quit): Use `window-full-width-p' to check
1076 window width.
1077
1078 2008-11-05 Chong Yidong <cyd@stupidchicken.com>
1079
1080 * server.el (server-process-filter): Only default to emacsclient's
1081 terminal in daemon mode.
1082
1083 2008-11-05 Martin Rudalics <rudalics@gmx.at>
1084
1085 * window.el (quit-window): Restore prefix argument behavior
1086 removed in 2008-10-30 change. (Bug#1308)
1087
1088 2008-11-05 Tassilo Horn <tassilo@member.fsf.org>
1089
1090 * doc-view.el (doc-view-mode): Bugfix: Add conversion killing
1091 function to kill-buffer-hook, not to kill-buffer.
1092 Reported by Markus Triska <markus.triska@gmx.at>
1093
1094 2008-11-04 Jay Belanger <jay.p.belanger@gmail.com>
1095
1096 * calc/calc.el (calc-quit): Make sure that the keypad buffer
1097 exists before deleting its windows.
1098
1099 2008-11-04 Chong Yidong <cyd@stupidchicken.com>
1100
1101 * server.el (server-process-filter): Don't call
1102 server-create-tty-frame when no tty name is specified.
1103
1104 2008-11-04 Christian Faulhammer <opfer@gentoo.org> (tiny change)
1105
1106 * vc-bzr.el (vc-bzr-dir-extra-headers): New function.
1107
1108 2008-11-04 Juanma Barranquero <lekktu@gmail.com>
1109
1110 * international/mule-cmds.el (toggle-enable-multibyte-characters)
1111 (define-char-code-property):
1112 * textmodes/reftex.el (reftex-index):
1113 * textmodes/reftex-index.el (reftex-index): Fix typos in docstrings.
1114
1115 2008-11-04 Chong Yidong <cyd@stupidchicken.com>
1116
1117 * vc-bzr.el (vc-bzr-dir-printer): Rename from
1118 vc-bzr-status-printer.
1119
1120 * startup.el (startup-echo-area-message): Display a different
1121 message in daemon mode. Suggested by Stephen Turnbull.
1122
1123 * frame.el (make-frame-on-display): Ignore DISPLAY argument on
1124 Windows.
1125
1126 2008-11-04 Juanma Barranquero <lekktu@gmail.com>
1127
1128 * dframe.el (dframe-mouse-position-function)
1129 (dframe-reposition-frame-emacs, dframe-pass-event-to-popup-mode-menu)
1130 (dframe-mouse-set-point): Fix typos in docstrings.
1131
1132 2008-11-04 Dan Nicolaescu <dann@ics.uci.edu>
1133
1134 * vc-dir.el (vc-dir-headers): Undo previous change.
1135
1136 2008-11-04 Nick Roberts <nickrob@snap.net.nz>
1137
1138 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
1139 * vc-dir.el (vc-dir-headers): Order headers as in PCL-CVS.
1140
1141 2008-11-04 Martin Rudalics <rudalics@gmx.at>
1142
1143 * subr.el (looking-back): Fix doc-string typo.
1144
1145 * electric.el (Electric-pop-up-window): Call window-end with
1146 UPDATE set to t.
1147
1148 * window.el (save-selected-window): Make it behave like
1149 save-selected-window-norecord.
1150 (save-selected-window-norecord): Remove, since functionality
1151 fully taken over by save-selected-window.
1152 (walk-windows, set-window-text-height, fit-window-to-buffer):
1153 Use save-selected-window instead of save-selected-window-norecord.
1154 * font-lock.el (lisp-font-lock-keywords-2): Remove entry for
1155 save-selected-window-norecord.
1156 * emacs-lisp/lisp-mode.el (save-selected-window): Remove
1157 indent-function for save-selected-window-norecord.
1158
1159 2008-11-03 Alan Mackenzie <acm@muc.de>
1160
1161 * progmodes/cc-engine.el (c-forward-label): Fix for QT macros.
1162
1163 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
1164
1165 * subr.el (looking-back): Doc fix.
1166
1167 * term/x-win.el (x-initialize-window-system):
1168 Call x-wm-set-size-hint after initialization.
1169
1170 * eshell/em-hist.el (eshell-save-history-on-exit): Change default
1171 to t.
1172
1173 * emacs-lisp/lisp-mode.el (lisp-mode): Remove bogus change from
1174 2000-12-08 (bug#1297).
1175
1176 * font-lock.el (font-lock-keywords-case-fold-search): Doc fix.
1177
1178 2008-11-03 Vincent Belaïche <vincent.b.1@hotmail.fr>
1179
1180 * calc/calc-alg.el (calcFunc-collect): Return constant polynomial
1181 when appropriate.
1182
1183 2008-11-02 Martin Rudalics <rudalics@gmx.at>
1184
1185 * window.el (save-selected-window-norecord): New macro.
1186 (walk-windows): Use save-selected-window-norecord and call
1187 select-window with NORECORD set. (Bug#1237)
1188 (set-window-text-height, fit-window-to-buffer):
1189 Use save-selected-window-norecord and call select-window with
1190 NORECORD set.
1191 * subr.el (with-selected-window): Call set-frame-selected-window
1192 with new argument NORECORD set. Update doc-string.
1193 (with-selected-frame): Call select-frame with new argument
1194 NORECORD set. Update doc-string.
1195 * emacs-lisp/lisp-mode.el (save-selected-window-norecord):
1196 Put indent-function for save-selected-window-norecord.
1197 * font-lock.el (lisp-font-lock-keywords-2):
1198 Add save-selected-window-norecord.
1199
1200 2008-11-01 Juanma Barranquero <lekktu@gmail.com>
1201
1202 * cus-edit.el (customize-apropos-options, custom-comment)
1203 (custom-comment-tag, custom-face-edit-attribute-tag):
1204 Fix typos in docstrings.
1205 (custom-buffer-done-kill): Remove * from defcustom docstring.
1206 (custom-file): Fix typo in doc of defcustom choice.
1207
1208 * frame.el (display-visual-class): Fix typo in docstring.
1209 (initial-frame-alist, minibuffer-frame-alist, pop-up-frame-alist)
1210 (special-display-frame-alist, show-trailing-whitespace)
1211 (auto-hscroll-mode, blink-cursor-delay, blink-cursor-interval)
1212 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
1213 Remove * from defcustom docstrings.
1214
1215 * md4.el (md4-buffer): Fix typo in docstring.
1216 (md4, md4-64): Doc fixes.
1217 (md4-pack-int32): Reflow docstring.
1218
1219 * paths.el (rmail-file-name): Remove * from defcustom docstring.
1220 (prune-directory-list, gnus-nntp-service): Fix typos in docstrings.
1221
1222 * rect.el (open-rectangle): Reflow docstring.
1223 (spaces-string): Fix docstring typo. Use "?\s" instead of "? ".
1224
1225 * select.el (x-get-cut-buffer): Fix typo in docstring.
1226
1227 * timezone.el (timezone-zone-to-minute, timezone-time-from-absolute)
1228 (timezone-time-zone-from-absolute, timezone-leap-year-p):
1229 Fix typos in docstrings.
1230
1231 * emacs-lisp/assoc.el (asort, aelement, aput, aget, amake):
1232 Fix typos in docstrings.
1233
1234 2008-10-31 Ulf Jasper <ulf.jasper@web.de>
1235
1236 * net/newst-backend.el (newsticker--cache-update): Fix no-save case.
1237
1238 * net/newst-treeview.el (newsticker--treeview-list-update-faces)
1239 (newsticker--treeview-list-update, newsticker--treeview-item-show)
1240 (newsticker--treeview-tree-update)
1241 (newsticker--treeview-tree-update-highlight)
1242 (newsticker-treeview-update)
1243 (newsticker-treeview-next-item, newsticker-treeview-prev-item)
1244 (newsticker-treeview-next-new-or-immortal-item)
1245 (newsticker-treeview-prev-new-or-immortal-item)
1246 (newsticker-treeview-next-feed, newsticker-treeview-prev-feed)
1247 (newsticker-treeview-tree-click): Watch for layout changes.
1248 (newsticker--treeview-set-current-node): Cleanup.
1249 (newsticker--treeview-restore-layout): Rename from
1250 newsticker--treeview-restore-buffers.
1251 (newsticker--treeview-mark-item): Update cache file.
1252
1253 2008-10-31 Ulf Jasper <ulf.jasper@web.de>
1254
1255 * calendar/icalendar.el (icalendar--uid-count): New.
1256 (icalendar--create-uid): New. Extracted from
1257 `icalendar-export-region' and add uid counter.
1258 (icalendar-export-region): Use `icalendar--create-uid'.
1259
1260 2008-10-31 Juanma Barranquero <lekktu@gmail.com>
1261
1262 * tooltip.el (tooltip-frame-parameters): Doc fix.
1263
1264 2008-10-31 Martin Rudalics <rudalics@gmx.at>
1265
1266 * window.el (window-body-height, window-current-scroll-bars)
1267 (walk-windows, get-window-with-predicate, get-buffer-window-list)
1268 (minibuffer-window-active-p, count-windows)
1269 (window-safely-shrinkable-p, window--splittable-p)
1270 (window--try-to-split-window, window--frame-usable-p)
1271 (window--even-window-heights, window--display-buffer-1)
1272 (window--display-buffer-2, set-window-text-height)
1273 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
1274 (truncated-partial-width-window-p): Rewrite doc-string.
1275 (window-fixed-size-p): Simplify code. Rewrite doc-string.
1276 (split-window-vertically, split-window-horizontally):
1277 Rename args, rewrite doc-string, and simplify code.
1278 (split-window-save-restore-data): Rename args and use
1279 when instead of if.
1280
1281 2008-10-30 Chong Yidong <cyd@stupidchicken.com>
1282
1283 * indent.el (indent-for-tab-command): Use use-region-p.
1284
1285 * vc.el (vc-revert): Limit the length of the query string.
1286
1287 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
1288
1289 * simple.el (idle-update-delay, next-error-highlight)
1290 (next-error-highlight-no-select, next-error-recenter, next-error-hook)
1291 (minibuffer-history-case-insensitive-variables, kill-ring-max)
1292 (kill-read-only-ok, backward-delete-char-untabify-method)
1293 (kill-whole-line, mark-ring-max, global-mark-ring-max)
1294 (set-mark-command-repeat-pop, next-line-add-newlines, track-eol)
1295 (goal-column, line-move-ignore-invisible, fill-prefix)
1296 (auto-fill-inhibit-regexp, blink-matching-paren)
1297 (blink-matching-paren-on-screen, blink-matching-paren-distance)
1298 (blink-matching-delay, blink-matching-paren-dont-ignore-comments)
1299 (read-mail-command, mail-user-agent): Remove * in defcustom docstrings.
1300 (minibuffer-history-isearch-wrap, transient-mark-mode)
1301 (next-logical-line, auto-fill-mode, line-number-mode)
1302 (column-number-mode, size-indication-mode, clone-indirect-buffer)
1303 (normal-erase-is-backspace-mode): Doc fixes.
1304 (current-kill, transient-mark-mode, toggle-truncate-lines)
1305 (visible-mode): Reflow docstrings.
1306 (minibuffer-local-shell-command-map, interprogram-paste-function):
1307 Fix typos in docstrings.
1308
1309 2008-10-30 Chong Yidong <cyd@stupidchicken.com>
1310
1311 * server.el (server-process-filter): In daemon mode, default to
1312 emacsclient's tty if not opening a new frame and only the
1313 terminal-frame is available.
1314
1315 2008-10-30 Martin Rudalics <rudalics@gmx.at>
1316
1317 * window.el (quit-window): Simplify code. Say in doc-string
1318 that it operates on the selected window's buffer. (Bug#1259)
1319
1320 2008-10-30 Nick Roberts <nickrob@snap.net.nz>
1321
1322 * vc-svn.el (vc-svn-diff): If files is nil don't set oldvers to
1323 nil so that log-view-diff-changeset works.
1324
1325 2008-10-30 Glenn Morris <rgm@gnu.org>
1326
1327 * files.el (locate-dominating-stop-dir-regexp): Fix typo.
1328
1329 * resume.el: Move to obsolete/.
1330 * Makefile.in (ELCFILES): Update.
1331
1332 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
1333
1334 * electric.el (Electric-pop-up-window): Don't shrink the window if
1335 it's already big enough.
1336
1337 * minibuffer.el (delete-minibuffer-contents): Delete all
1338 minibuffer contents instead of just the current field.
1339
1340 * tmm.el (tmm-get-keymap): Handle case where keyseq cache is omitted.
1341
1342 * bookmark.el (bookmark-handle-bookmark): Rename from
1343 bookmark-jump-noselect.
1344 (bookmark--jump-via, bookmark-insert): Callers changed.
1345 (bookmark-jump-noselect): Wrapper function for
1346 bookmark-handle-bookmark.
1347 (bookmark-get-bookmark-record): Signal error for invalid bookmark.
1348
1349 * textmodes/ispell.el (ispell-word): Use use-region-p.
1350
1351 2008-10-29 Juanma Barranquero <lekktu@gmail.com>
1352
1353 * tooltip.el (tooltip-functions): Rename from `tooltip-hook',
1354 to follow naming conventions for abnormal hooks. Doc fix.
1355 (tooltip-mode, tooltip-timeout): Use it.
1356 (tooltip-hook): New obsolete alias.
1357 (tooltip-help-tips): Doc fix.
1358
1359 * progmodes/gud.el (gud-tooltip-mode): Use `tooltip-functions'.
1360
1361 2008-10-29 Ulrich Mueller <ulm@gentoo.org>
1362
1363 * server.el (server-socket-dir): Use TMPDIR (default /tmp) instead
1364 of hardcoded /tmp.
1365
1366 2008-10-29 Glenn Morris <rgm@gnu.org>
1367
1368 * net/xesam.el (dbus-get-unique-name, dbus-debug): Declare.
1369
1370 * vc-hooks.el (vc-find-root): Remove bogus alias.
1371
1372 2008-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
1373
1374 * international/quail.el (quail-show-guidance): Don't create
1375 a guidance-frame if current buffer is not a minibuffer, since even if
1376 selected-window is mini-p, the buffer will never be displayed in it, so
1377 it wil be usable for guidance.
1378
1379 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1380
1381 * smerge-mode.el: Require diff-mode at run-time as well.
1382
1383 2008-10-28 Martin Rudalics <rudalics@gmx.at>
1384
1385 * vc-cvs.el (vc-cvs-stay-local): Fix typo in choice.
1386 * vc-hooks.el (vc-stay-local): Likewise.
1387
1388 2008-10-28 Phil Sung <psung@mit.edu>
1389
1390 * follow.el (follow-scroll-down, follow-calc-win-end)
1391 (follow-estimate-first-window-start): Reduce effective window
1392 height when header line is present. (Bug#925)
1393
1394 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
1395
1396 * subr.el (locate-user-emacs-file): Simplify. Don't create
1397 `user-emacs-directory' when Emacs is running in batch mode.
1398
1399 * startup.el (inhibit-startup-screen): Reflow docstring.
1400 (user-mail-address, tool-bar-images-pixel-height): Fix docstring typos.
1401
1402 2008-10-27 Kenichi Handa <handa@m17n.org>
1403
1404 * descr-text.el (describe-char): Fix terminal case (where font is nil).
1405
1406 2008-10-27 Juanma Barranquero <lekktu@gmail.com>
1407
1408 * face-remap.el (text-scale-increase, text-scale-decrease)
1409 (text-scale-adjust): Remove &optional keyword from the arg list;
1410 the INC argument is not really optional, if the functions happen
1411 to be called from elisp.
1412
1413 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
1414
1415 * vc.el: Rename VC methods that were missed when vc-status was
1416 renamed to vc-dir.
1417 * vc-svn.el (vc-svn-dir-extra-headers): Rename from
1418 vc-svn-status-extra-headers.
1419 * vc-hg.el (vc-hg-dir-printer): Rename from vc-hg-status-printer.
1420 (vc-hg-dir-extra-header): Rename from vc-hg-status-extra-headers.
1421 * vc-git.el (vc-git-dir-printer): Rename from vc-dir-status-printer.
1422 (vc-git-dir-extra-headers): Rename from vc-git-status-extra-headers.
1423 * vc-dir.el (vc-dir-mode): Use vc-dir-printer instead of
1424 vc-dir-status-printer.
1425 (vc-dir-headers): Use `dir-extra-headers' instead of
1426 `status-extra-headers'.
1427 (vc-dir-printer): Rename from vc-dir-status-printer.
1428 (vc-default-dir-extra-headers): Rename from
1429 vc-default-status-extra-headers.
1430 * vc-cvs.el (vc-cvs-dir-extra-headers): Rename from
1431 vc-cvs-status-extra-headers.
1432
1433 * startup.el (server-name): Pacify byte compiler.
1434 (command-line): If --daemon=SERVER_NAME was used, set server-name
1435 before calling server-start.
1436
1437 2008-10-26 Romain Francoise <romain@orebokech.com>
1438
1439 * startup.el (command-line): Call daemon-initialized after
1440 starting the server.
1441
1442 2008-10-26 Kenichi Handa <handa@m17n.org>
1443
1444 * help-fns.el (describe-categories): Display the terse legend at
1445 the head.
1446
1447 * international/characters.el: Docstrings of categories improved.
1448
1449 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1450
1451 * progmodes/python.el (python-mode): Don't impose ourselves on hippie.
1452
1453 * faces.el (face-font-family-alternatives): Add "CMU Typewriter Text"
1454 to the courier family.
1455 * textmodes/tex-mode.el (tex-verbatim): Don't use "monospace" which is
1456 usually not serif'd and hence rather unlike verbatim's printed output.
1457
1458 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
1459
1460 * vc-cvs.el (vc-cvs-status-extra-headers): Use full directory name
1461 when reporting the module.
1462
1463 * vc-dir.el (vc-dir-mode-map): Add follow-link behavior.
1464
1465 * wid-edit.el (widget-color-complete): Sort completions alphabetically.
1466
1467 2008-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1468
1469 * files.el (locate-dominating-stop-dir-regexp): New var.
1470 (locate-dominating-file): Change arg from a regexp to a file name.
1471 Rewrite using the vc-find-root code to avoid directory-files which is
1472 too slow. Obey locate-dominating-stop-dir-regexp.
1473 Don't pay attention to changes in owner.
1474 (project-find-settings-file): Adjust call to locate-dominating-file.
1475
1476 * progmodes/flymake.el (flymake-find-buildfile):
1477 Adjust call to locate-dominating-file.
1478
1479 * vc-hooks.el (vc-find-root): Use locate-dominating-file.
1480 (vc-ignore-dir-regexp): Use locate-dominating-stop-dir-regexp.
1481
1482 2008-10-25 Martin Rudalics <rudalics@gmx.at>
1483
1484 * subr.el (with-current-buffer): Rename buffer argument to
1485 buffer-or-name.
1486 * window.el (get-buffer-window-list): Rename buffer argument to
1487 buffer-or-name and make it optional.
1488
1489 2008-10-25 Juanma Barranquero <lekktu@gmail.com>
1490
1491 * completion.el (add-completion-to-head, add-completion): Doc fixes.
1492 (completion-search-next, add-completions-from-file):
1493 Fix typos in docstrings.
1494
1495 * filesets.el (filesets-menu-ensure-use-cached)
1496 (filesets-ingroup-patterns, filesets-filetype-property):
1497 * tutorial.el (get-lang-string):
1498 * play/gamegrid.el (gamegrid-score-file-length, gamegrid-add-score):
1499 Fix typos in docstrings.
1500
1501 * image-dired.el (image-dired-dired-after-readin-hook): Doc fix.
1502 (image-dired-line-up-method, image-dired-thumb-size)
1503 (image-dired-cmd-write-exif-data-options, image-dired-write-tags)
1504 (image-dired-track-original-file, image-dired-track-thumbnail)
1505 (image-dired-dired-next-line, image-dired-dired-previous-line)
1506 (image-dired-write-comments): Reflow docstrings.
1507 (image-dired-show-all-from-dir-max-files)
1508 (image-dired-format-properties-string, image-dired-create-thumbs)
1509 (image-dired-mark-tagged-files, image-dired-gallery-generate):
1510 Fix typos in docstrings.
1511
1512 * savehist.el (savehist-save-minibuffer-history, savehist-file)
1513 (savehist-additional-variables, savehist-ignored-variables)
1514 (savehist-file-modes, savehist-autosave-interval):
1515 * startup.el (inhibit-startup-echo-area-message, inhibit-default-init)
1516 (inhibit-startup-buffer-menu, mail-host-address, user-mail-address)
1517 (fancy-splash-image):
1518 * thumbs.el (thumbs-thumbsdir, thumbs-geometry, thumbs-relief)
1519 (thumbs-conversion-program, thumbs-margin):
1520 Remove spurious * in docstrings.
1521
1522 2008-10-25 Aaron S. Hawley <aaronh@garden.org>
1523
1524 * thingatpt.el (end-of-sexp, beginning-of-sexp)
1525 (forward-same-syntax): Omit default arguments to char-after and
1526 char-before.
1527
1528 2008-10-24 Juanma Barranquero <lekktu@gmail.com>
1529
1530 * subr.el (locate-user-emacs-file): New function.
1531 (user-emacs-directory): Mention it in docstring.
1532
1533 * completion.el (save-completions-file-name):
1534 * filesets.el (filesets-menu-cache-file):
1535 * image-dired.el (image-dired-dir, image-dired-db-file)
1536 (image-dired-temp-image-file, image-dired-gallery-dir)
1537 (image-dired-temp-rotate-image-file):
1538 * savehist.el (savehist-file):
1539 * server.el (server-auth-dir):
1540 * thumbs.el (thumbs-thumbsdir):
1541 * tutorial.el (tutorial--saved-dir):
1542 * play/gamegrid.el (gamegrid-user-score-file-directory): Use it.
1543
1544 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
1545
1546 * edmacro.el (edmacro-eight-bits, edmacro-mode): Fix docstring typos.
1547 (edmacro-mismatch, edmacro-sanitize-for-string): Doc fixes.
1548
1549 2008-10-23 Chong Yidong <cyd@stupidchicken.com>
1550
1551 * filesets.el: Update author email.
1552 (filesets-data): Doc fix.
1553
1554 2008-10-23 Jens Petersen <petersen@redhat.com> (tiny change)
1555
1556 * pcmpl-rpm.el (pcomplete/rpm): Make "rpm -qp" use file completion.
1557
1558 2008-10-23 Ulrich Mueller <ulm@kph.uni-mainz.de>
1559
1560 * international/mule-cmds.el (describe-language-environment):
1561 Indent sample text.
1562
1563 2008-10-23 Glenn Morris <rgm@gnu.org>
1564
1565 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
1566
1567 * emacs-lisp/cl-macs.el (flet): Throw an error when trying to
1568 byte-compile a redefinition of a function with special byte-compile
1569 handling. (Bug#411)
1570
1571 2008-10-22 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1572
1573 * ps-print.el: Deal with page sizes for label printes. Suggested by
1574 Friedrich Delgado Friedrichs <friedel@nomaden.org>.
1575 (ps-print-version): New version 7.3.3.
1576 (ps-page-dimensions-database): New page sizes for label printers.
1577 (ps-n-up-printing): Fix code.
1578
1579 2008-10-22 Chong Yidong <cyd@stupidchicken.com>
1580
1581 * frame.el (make-frame-command): Doc fix. Use display-graphic-p.
1582
1583 * thingatpt.el (sexp-at-point, symbol-at-point, number-at-point)
1584 (list-at-point): Add docstrings.
1585
1586 * dired.el (dired-get-marked-files, dired-map-over-marks): Doc fixes.
1587
1588 * dired-aux.el (dired-do-create-files): Doc fix.
1589
1590 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
1591
1592 * version.el (emacs-version): Change '*Step' to 'NS' for consistency
1593 with other documentation.
1594
1595 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
1596
1597 * replace.el (how-many): Fix typo in docstring.
1598 Reported by Leo <sdl.web@gmail.com>.
1599
1600 2008-10-22 Glenn Morris <rgm@gnu.org>
1601
1602 * international/mule-cmds.el (universal-coding-system-argument):
1603 Check for C-g. (Bug#1205)
1604
1605 2008-10-22 Kenichi Handa <handa@m17n.org>
1606
1607 * international/characters.el: Don't setup
1608 find-word-boundary-function-table.
1609 (next-word-boundary-han, next-word-boundary-kana): Delete them.
1610 (word-combining-categories, word-separating-categories):
1611 Adjust to the change of the docstrings.
1612
1613 2008-10-21 Chong Yidong <cyd@stupidchicken.com>
1614
1615 * simple.el (region-active-p): Doc fix.
1616
1617 2008-10-20 Eli Zaretskii <eliz@gnu.org>
1618
1619 * subr.el (apply-partially): Move from here...
1620
1621 * simple.el (apply-partially): ...to here.
1622
1623 2008-10-20 Andreas Schwab <schwab@suse.de>
1624
1625 * subr.el (split-string-and-unquote): Simplify regexp.
1626
1627 2008-10-20 Eli Zaretskii <eliz@gnu.org>
1628
1629 * subr.el (top-level): Require `cl' when compiling.
1630
1631 2008-10-20 David Reitter <david.reitter@gmail.com>
1632
1633 * info.el (Info-mode): Do not remove an existing header line if
1634 `Info-use-header-line' is nil.
1635
1636 2008-10-19 Juri Linkov <juri@jurta.org>
1637
1638 * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
1639 Add arg `delimited' as in `query-replace' for the case when
1640 isearch-allow-scroll=t and the user types C-u M-%. Doc fix.
1641 Add more indicators to the prompt ("word" and "in region").
1642
1643 * replace.el (query-replace, query-replace-regexp)
1644 (replace-string, replace-regexp, perform-replace): Add "word"
1645 indicatiors to the prompt for word delimited replacements.
1646
1647 * replace.el (read-regexp): Rename arg `default' to `default-value'.
1648 Doc fix.
1649
1650 2008-10-19 Eli Zaretskii <eliz@gnu.org>
1651
1652 * subr.el (apply-partially): Move here from minibuffer.el. Doc fix.
1653
1654 * simple.el (minibuffer-default-add-shell-commands): Doc fix.
1655
1656 2008-10-19 Martin Rudalics <rudalics@gmx.at>
1657
1658 * window.el (enlarge-window-horizontally, shrink-window-horizontally):
1659 Make argument names follow Elisp manual.
1660
1661 2008-10-19 Eli Zaretskii <eliz@gnu.org>
1662
1663 * textmodes/remember.el (remember-data-file):
1664 * shadowfile.el (shadow-initialize)
1665 <shadow-info-file, shadow-todo-file>:
1666 * savehist.el (savehist-file):
1667 * recentf.el (recentf-save-file):
1668 * pcvs-defs.el (cvs-cvsrc-file):
1669 * international/kkc.el (kkc-init-file-name):
1670 * ido.el (ido-save-directory-list-file):
1671 * calendar/todo-mode.el (todo-file-do, todo-file-done)
1672 (todo-file-top): Run file names that begin with a period thru
1673 `convert-standard-filename'.
1674
1675 * dos-fns.el (dos-reevaluate-defcustoms): New function. Add it to
1676 before-init-hook.
1677
1678 Fix Bug #1183:
1679
1680 * ediff-diff.el (ediff-exec-process): For buffer jobs, bind
1681 coding-system-for-read to ediff-coding-system-for-write.
1682
1683 * ediff-util.el (ediff-make-temp-file): Unconditionally bind
1684 coding-system-for-write to ediff-coding-system-for-write.
1685
1686 * ediff-init.el (ediff-coding-system-for-read): Doc fix.
1687 (ediff-coding-system-for-write): Set to emacs-internal.
1688
1689 2008-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1690
1691 * international/mule-conf.el (emacs-internal): New coding system alias.
1692
1693 2008-10-18 Juri Linkov <juri@jurta.org>
1694
1695 * info.el (Info-file-supports-index-cookies-list): New variable.
1696 (Info-file-supports-index-cookies): New function.
1697 (Info-find-node-2, Info-index-nodes, Info-index-node): Use it.
1698 (Info-index-nodes): Let-bind Info-point-loc to nil for files
1699 without an index cookie to ignore it when Info-index-nodes is
1700 called during navigating from an index node with line numbers.
1701 (Info-index-node): Set file to Info-current-file if nil. (Bug#1118)
1702
1703 * info.el (Info-breadcrumbs-depth): Move defcustom higher to the
1704 variable definition section.
1705
1706 * info.el (Info-find-node-2): Put initial point below the header line
1707 and breadcrumbs line.
1708
1709 2008-10-18 Glenn Morris <rgm@gnu.org>
1710
1711 * doc-view.el (doc-view-pdf->txt, doc-view-ps->pdf): Give an error if
1712 the needed external programs were not found.
1713
1714 2008-10-18 Eli Zaretskii <eliz@gnu.org>
1715
1716 * files.el (trash-directory): Run thru `convert-standard-filename'.
1717 (file-modes-char-to-who, file-modes-char-to-right)
1718 (file-modes-rights-to-number, file-modes-symbolic-to-number)
1719 (read-file-modes): Doc fixes.
1720
1721 2008-10-17 Chong Yidong <cyd@stupidchicken.com>
1722
1723 * abbrev.el (define-abbrev): Doc fix.
1724
1725 2008-10-17 Alan Mackenzie <acm@muc.de>
1726
1727 * progmodes/cc-cmds.el (c-defun-name): Make it work for "struct
1728 foo bar [] = { ...".
1729
1730 2008-10-17 Chong Yidong <cyd@stupidchicken.com>
1731
1732 * faces.el (face-spec-set-2): Don't pass invalid attributes to
1733 set-face-attribute.
1734
1735 2008-10-17 Juanma Barranquero <lekktu@gmail.com>
1736
1737 * w32-fns.el (w32-list-locales): Decode output of `w32-get-locale-info'
1738 according to `locale-coding-system'. (This fixes trivial bug reported
1739 as part of bug#1179).
1740 Sort list of valid locale ids (EnumSystemLocales does not guarantee any
1741 particular order). Use `when'.
1742
1743 2008-10-16 Juanma Barranquero <lekktu@gmail.com>
1744
1745 * w32-fns.el (w32-check-shell-configuration): Doc fix.
1746 (w32-add-charset-info): Fix typo in docstring.
1747
1748 2008-10-16 Teodor Zlatanov <tzz@lifelogs.com>
1749
1750 * international/mule-conf.el: Removed `utf8' and `UTF8' aliases
1751 after discussion.
1752
1753 2008-10-16 Magnus Henoch <mange@freemail.hu>
1754
1755 * vc-arch.el (vc-arch-dir-status): New function.
1756 (vc-arch-after-dir-status): New function.
1757
1758 2008-10-16 Glenn Morris <rgm@gnu.org>
1759
1760 * man.el (Man-getpage-in-background): Force recent `man's to output
1761 escape sequences even when stdout is not a tty. (Bug#1142)
1762
1763 2008-10-15 Teodor Zlatanov <tzz@lifelogs.com>
1764
1765 * international/mule-conf.el: Add `utf8' and `UTF8' as
1766 aliases for the `utf-8' coding system.
1767
1768 2008-10-15 Juanma Barranquero <lekktu@gmail.com>
1769
1770 * find-file.el (ff-get-file): Doc fix.
1771 (ff-get-file-name): Use `let', not `let*'.
1772 (ff-search-directories): Fix typo in docstring.
1773 (ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
1774 (ff-not-found-hook, ff-file-created-hook, ff-case-fold-search)
1775 (ff-always-in-other-window, ff-ignore-include, ff-always-try-to-create)
1776 (ff-quiet-mode, ff-other-file-alist, cc-search-directories)
1777 (cc-other-file-alist, modula2-other-file-alist):
1778 Remove spurious * in docstrings.
1779
1780 2008-10-14 Chong Yidong <cyd@stupidchicken.com>
1781
1782 * faces.el (set-face-attribute): Set family and foundry before
1783 other attributes.
1784 (face-spec-set-2): Pass unmodified args to set-face-attribute.
1785
1786 2008-10-14 Juanma Barranquero <lekktu@gmail.com>
1787
1788 * hl-line.el (hl-line-unload-function): New function.
1789 (hl-line-unhighlight, global-hl-line-unhighlight): Use `when'.
1790 (hl-line-sticky-flag): Remove spurious * in docstring.
1791
1792 2008-10-14 Eric Hanchrow <offby1@blarg.net> (tiny change)
1793
1794 * vc-git.el (vc-git-show-log-entry): Include the revision in the
1795 search string.
1796
1797 2008-10-14 Michael Albinus <michael.albinus@gmx.de>
1798
1799 * net/tramp.el (tramp-process-one-action): Embed regexp in
1800 parentheses, before adding end-of-buffer construct. Suggested by
1801 Markus Triska <markus.triska@gmx.at>.
1802
1803 2008-10-13 Ulf Jasper <ulf.jasper@web.de>
1804
1805 * net/newst-plainview.el (w3m-toggle-inline-image):
1806 Define 'declare-function if necessary, for compatibility.
1807
1808 * net/newst-treeview.el (w3m-toggle-inline-images):
1809 Define 'declare-function if necessary, for compatibility.
1810
1811 2008-10-13 Alan Mackenzie <acm@muc.de>
1812
1813 * progmodes/cc-cmds.el (c-indent-region): Fix previous patch
1814 so that the function works on one-line macros.
1815
1816 * progmodes/cc-engine.el: Amend several doc strings and comments.
1817
1818 2008-10-13 Dan Nicolaescu <dann@ics.uci.edu>
1819
1820 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
1821
1822 * vc-cvs.el (vc-cvs-dir-stay-local): Remove.
1823 (vc-cvs-stay-local): Add a new choice and default to it.
1824 (vc-cvs-dir-status): Use the new vc-stay-local choice.
1825
1826 * vc-svn.el (vc-svn-dir-status): Use the new vc-stay-local choice.
1827
1828 2008-10-12 Stephen Leake <stephen_leake@member.fsf.org>
1829
1830 * progmodes/ada-mode.el (ada-get-indent-end, ada-goto-matching-start):
1831 Add support for extended return statement.
1832
1833 * progmodes/ada-xref.el (ada-gnat-parse-gpr): Don't reverse src-dir
1834 and obj-dir; keep user order.
1835
1836 2008-10-12 Glenn Morris <rgm@gnu.org>
1837
1838 * Makefile.in (ELCFILES): Update.
1839
1840 * simple.el (shell-delimiter-argument-list, shell-file-name-chars)
1841 (shell-file-name-quote-list): Declare.
1842
1843 2008-10-12 Michael Albinus <michael.albinus@gmx.de>
1844
1845 * net/dbus.el (dbus-service-emacs, dbus-path-emacs): New defconst.
1846
1847 2008-10-12 Chong Yidong <cyd@stupidchicken.com>
1848
1849 * startup.el (command-line): If toolbar is disabled but ought to
1850 be initialized, call tool-bar-setup.
1851
1852 * tool-bar.el (tool-bar-setup): Variable deleted.
1853 (tool-bar-setup): Set it up unconditionally.
1854
1855 * faces.el (x-create-frame-with-faces): Don't call tool-bar-setup.
1856
1857 * progmodes/grep.el (grep-mode-tool-bar-map): Check if
1858 tool-bar-map has been initialized before setting it up.
1859
1860 * progmodes/compile.el (compilation-mode-tool-bar-map): Check if
1861 tool-bar-map has been initialized before setting it up.
1862
1863 2008-10-11 Chong Yidong <cyd@stupidchicken.com>
1864
1865 * emacs-lisp/warnings.el (display-warning): Issue a message if
1866 called during daemon initialization.
1867
1868 * tool-bar.el (tool-bar-local-item)
1869 (tool-bar-local-item-from-menu): Put the check for number of
1870 display colors into the image expression.
1871 (tool-bar-setup): Don't be a no-op on ttys.
1872
1873 * info.el (info-tool-bar-map):
1874 * progmodes/gud.el (gud-tool-bar-map):
1875 * progmodes/grep.el (grep-mode-tool-bar-map):
1876 * progmodes/compile.el (compilation-mode-tool-bar-map):
1877 Initialize it unconditionally.
1878
1879 2008-10-11 Romain Francoise <romain@orebokech.com>
1880
1881 * help.el (view-lossage): Fix docstring, lossage is now 300 keys.
1882 * kmacro.el (kmacro-edit-lossage): Ditto.
1883 * edmacro.el (edit-kbd-macro): Ditto.
1884
1885 2008-10-11 Ulf Jasper <ulf@web.de>
1886
1887 * net/newst-treeview.el (newsticker--treeview-list-sort-by-column):
1888 Fix variable names.
1889
1890 2008-10-11 Dan Nicolaescu <dann@ics.uci.edu>
1891
1892 * startup.el (command-line): Revert 2008-09-26 change, not
1893 necessary anymore.
1894
1895 2008-10-10 Andreas Schwab <schwab@suse.de>
1896
1897 * simple.el (minibuffer-complete-shell-command):
1898 Bind comint-delimiter-argument-list, comint-file-name-chars and
1899 comint-file-name-quote-list like shell-mode.
1900
1901 2008-10-10 Martin Rudalics <rudalics@gmx.at>
1902
1903 * window.el (pop-to-buffer): Fix misplacement of arg norecord in
1904 call of select-window.
1905
1906 2008-10-10 Jay Belanger <jay.p.belanger@gmail.com>
1907
1908 * calc/calc.el (calc-embedded-word-regexp)
1909 (calc-embedded-word-regexp-alist): New variables.
1910 (calc-embedded-open-word, calc-embedded-close-word)
1911 (calc-embedded-open-close-word-alist): Remove unused variables.
1912
1913 * calc/calc-embed.el (calc-embedded-make-info):
1914 Use `calc-embedded-word-regexp' to find words.
1915
1916 2008-10-10 Martin Rudalics <rudalics@gmx.at>
1917
1918 * info.el (Info-extract-menu-counting): New argument no-detail to
1919 skip detailed node listings.
1920 (Info-forward-node): New argument not-up to inhibit going up.
1921 (Info-final-node): Call Info-extract-menu-counting and
1922 Info-forward-node with the new arguments set to avoid infinite
1923 looping. (Bug#1116)
1924
1925 2008-10-10 Eli Zaretskii <eliz@gnu.org>
1926
1927 * startup.el (command-line): Don't invoke tool-bar-mode if it is
1928 not fboundp.
1929
1930 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
1931
1932 * startup.el (command-line): Enable tool-bar-mode as long as it is
1933 not suppressed by X resources, regardless of the terminal.
1934
1935 * tool-bar.el (tool-bar-mode): Only change tool-bar-lines on
1936 graphical terminals.
1937 (tool-bar-setup): No-op if called on a tty.
1938
1939 2008-10-09 Eli Zaretskii <eliz@gnu.org>
1940
1941 * frame.el (make-frame-on-tty): Use "F" inside interactive.
1942 Support `pc' ``window-system''.
1943
1944 * progmodes/compile.el (compilation-start): Resurrect the version
1945 for systems that don't support asynchronous subprocesses.
1946
1947 2008-10-09 Martin Rudalics <rudalics@gmx.at>
1948
1949 * window.el (pop-up-frames): Add choice graphic-only.
1950 (display-buffer): When pop-up-frames equals graphic-only do
1951 not pop up new frame on text-only terminals. (Bug#1061)
1952
1953 2008-10-09 Dan Nicolaescu <dann@ics.uci.edu>
1954
1955 * vc-cvs.el (vc-cvs-dir-stay-local): New variable.
1956 (vc-cvs-dir-status): Use it.
1957
1958 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
1959
1960 * json.el (json-skip-whitespace): Fix last change.
1961
1962 2008-10-08 Juanma Barranquero <lekktu@gmail.com>
1963
1964 * bs.el (bs-unload-function): New function.
1965
1966 2008-10-08 Sven Joachim <svenjoac@gmx.de>
1967
1968 * eshell/em-cmpl.el, eshell/em-hist.el, eshell/em-ls.el:
1969 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
1970 For clarity, explicitly require cl.
1971
1972 2008-10-08 Michael Olson <mwolson@gnu.org>
1973
1974 * ibuffer.el (ibuffer-shrink-to-fit): Force redisplay, so that we
1975 can avoid a bad interaction with programs that add functions to
1976 the window-scroll-functions hook. This fixes Bug #858.
1977
1978 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
1979
1980 * startup.el (command-line): Use display-warning to warn about an
1981 init file error.
1982 (command-line-1): Remove init file error delay.
1983
1984 2008-10-07 Shigeru Fukaya <shigeru.fukaya@gmail.com>
1985
1986 * rx-new.el (rx-constituents): Change `anything' to call rx-anything.
1987 Change `not-wordchar' assignment to "\\W" from "[^[:word:]]".
1988 (rx-group-if): New function.
1989 (rx-parent): New variable.
1990 (rx-and, rx-or): Put shy groups only when necessary.
1991 (rx-bracket): Remove.
1992 (rx-anything): New function.
1993 (rx-any-delete-from-range, rx-any-condense-range)
1994 (rx-check-any-string): New functions.
1995 (rx-check-any): Return result as a list. Don't convert chars to
1996 strings. Don't prepend "\\" to "^". Don't search for close bracket.
1997 Check char category string. Call rx-form instead of rx-to-string.
1998 (rx-any): Rebuid to complete the function.
1999 (rx-check-not): Fix char category regexp pattern string.
2000 Call rx-form instead of rx-to-string.
2001 (rx-not): Call rx-form instead of rx-to-string. Convert "[^]" to
2002 "[^^]". Call regexp-quote for one char string when not called from
2003 rx-not. Add "\\w", and toggle to upcase. Add the case of
2004 "\\[SCBW]" to toggle.
2005 (rx-=, rx->=, rx-**, rx-repeat, rx-submatch): Call rx-form
2006 instead of rx-to-string.
2007 (rx-kleene): Call rx-form instead of rx-to-string.
2008 Call rx-group-if to adjust putting of shy groups.
2009 (rx-atomic-p): Make check more precisely.
2010 (rx-eval, rx-greedy): Call rx-form instead of rx-to-string.
2011 (rx-regexp): Call rx-group-if.
2012 (rx-form): New function.
2013 (rx-to-string): Call rx-form, rx-group-if.
2014 Refine definition of NO-GROUP.
2015
2016 2008-10-07 T. V. Raman <raman@users.sourceforge.net> (tiny change)
2017
2018 * json.el (json-advance): Use forward-char.
2019 (json-skip-whitespace): Use skip-syntax-forward.
2020
2021 2008-10-07 Alan Mackenzie <acm@muc.de>
2022
2023 * progmodes/cc-cmds.el (c-indent-line-or-region): Fix so that
2024 indenting a macro followed by blank lines doesn't backslash the
2025 following non-blank line into the macro.
2026
2027 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
2028
2029 * startup.el (before-init-time, after-init-time): Move into emacs.c.
2030 (command-line): Set after-init-time to nil before initialization.
2031
2032 2008-10-06 Jay Belanger <jay.p.belanger@gmail.com>
2033
2034 * calc/calc-units.el (math-standard-units): Update the values
2035 of the units.
2036
2037 2008-10-06 Juanma Barranquero <lekktu@gmail.com>
2038
2039 * bookmark.el (bookmark-unload-function): New function.
2040
2041 2008-10-06 Andreas Schwab <schwab@suse.de>
2042
2043 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
2044
2045 2008-10-06 Martin Rudalics <rudalics@gmx.at>
2046
2047 * mail/footnote.el: Remove * in defcustom docstrings and tell
2048 for most options that customizing them doesn't affect buffers
2049 already displaying footnotes.
2050 (Footnote-refresh-footnotes, Footnote-renumber-footnotes):
2051 Fix handling of text properties and identical start/end tags.
2052 Do not use format when renumbering.
2053 (Footnote-set-style): Make it work.
2054 (Footnote-insert-numbered-footnote): Simplify.
2055 (Footnote-narrow-to-footnotes, Footnote-insert-footnote)
2056 (Footnote-goto-footnote): Fix handling of empty section tag.
2057 (Footnote-delete-footnote): Fix handling of identical start/end
2058 tags, empty section tag, and spaced footnotes. Do not use
2059 kill-region.
2060 (footnote-mode): Make most options buffer-local to avoid that
2061 customizing messes up handling of footnotes in buffers that
2062 already display them.
2063
2064 2008-10-06 Dan Nicolaescu <dann@ics.uci.edu>
2065
2066 * faces.el (x-create-frame-with-faces): Undo previous change.
2067
2068 * vc-cvs.el (vc-cvs-after-dir-status): Parse the output for non
2069 existent files.
2070
2071 2008-10-05 Chong Yidong <cyd@stupidchicken.com>
2072
2073 * international/mule-cmds.el (universal-coding-system-argument):
2074 Handle digit-argument too.
2075
2076 2008-10-05 Mario Lang <mlang@delysid.org>
2077
2078 * xml.el (xml-parse-string): Use skip-chars-forward.
2079
2080 2008-10-05 Dan Nicolaescu <dann@ics.uci.edu>
2081
2082 * vc-bzr.el (vc-bzr-after-dir-status): Parse the output for non
2083 existent files.
2084 (vc-bzr-dir-status-files): New function.
2085
2086 2008-10-04 Glenn Morris <rgm@gnu.org>
2087
2088 * files.el (make-temp-file): Handle empty `prefix'. (Bug#1081)
2089
2090 * vc-svn.el (vc-svn-after-dir-status): Handle `svn status -u' output.
2091 (vc-svn-dir-status): Respect vc-stay-local-p. (Bug#1046)
2092
2093 * vc-cvs.el (vc-cvs-dir-status-heuristic): New function.
2094 (vc-cvs-dir-status): Respect vc-stay-local-p. (Bug#1046)
2095
2096 2008-10-04 David J. Biesack <David.Biesack@sas.com> (tiny change)
2097
2098 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
2099 Fix typo. (Bug#1074)
2100
2101 2008-10-04 Martin Rudalics <rudalics@gmx.at>
2102
2103 * progmodes/compile.el (compilation-start): Make sure to move to
2104 point-max only when we are in the compilation buffer. (Bug#1073)
2105
2106 2008-10-04 Dan Nicolaescu <dann@ics.uci.edu>
2107
2108 * faces.el (x-create-frame-with-faces): Only setup the toolbar if
2109 tool-bar-mode is on.
2110
2111 * vc-svn.el (vc-svn-dir-status-files):
2112 * vc-cvs.el (vc-cvs-dir-status-files): New function.
2113
2114 2008-10-03 Dan Nicolaescu <dann@ics.uci.edu>
2115
2116 * vc-hg.el (vc-hg-dir-status-files): New function.
2117
2118 2008-10-03 Martin Rudalics <rudalics@gmx.at>
2119
2120 * window.el (window--display-buffer-1): Don't care about
2121 visibility since raise-frame does.
2122
2123 2008-10-03 Mario Lang <mlang@delysid.org>
2124
2125 * nxml/xmltok.el (xmltok-forward): Simplify.
2126
2127 2008-10-03 Glenn Morris <rgm@gnu.org>
2128
2129 * Makefile.in (ELCFILES): Update.
2130
2131 * frame.el (set-default-font): Make obsolete.
2132 * mouse.el (mouse-set-font): Use set-frame-font.
2133
2134 * jka-cmpr-hook.el (jka-compr-compression-info-list)
2135 (jka-compr-mode-alist-additions): Also match `.tbz2'.
2136
2137 * progmodes/idlwave.el (auto-mode-alist): Remove unnecessary autoload.
2138 * files.el (auto-mode-alist): Add .PRO as per above autoload.
2139
2140 2008-10-03 Dan Nicolaescu <dann@ics.uci.edu>
2141
2142 * vc-dir.el (vc-dir-mode): Don't create the ewoc header here.
2143 (vc-dir-refresh): Set it here instead. (Bug#1067)
2144
2145 2008-10-02 Chong Yidong <cyd@stupidchicken.com>
2146
2147 * faces.el (inhibit-frame-set-background-mode): New var.
2148 (frame-set-background-mode): Use it to avoid a loop in
2149 face-spec-recalc.
2150
2151 2008-10-02 Glenn Morris <rgm@gnu.org>
2152
2153 * vc-bzr.el (vc-bzr-diff): Use vc-switches rather than the obsolete
2154 vc-diff-switches.
2155
2156 2008-10-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2157
2158 * whitespace.el: Eliminate whitespace-kill-buffer-hook functionality,
2159 that is, to take some action when a buffer is killed. Suggested by
2160 Stefan Monnier <monnier@iro.umontreal.ca>. Doc fix. New version
2161 11.2.2.
2162 (whitespace-action): Docstring and :type fix.
2163 (whitespace-turn-on, whitespace-turn-off, whitespace-warn-read-only):
2164 Code fix.
2165 (whitespace-add-local-hook, whitespace-remove-local-hook)
2166 (whitespace-kill-buffer-hook, whitespace-action): Fun eliminated.
2167
2168 2008-10-01 Magnus Henoch <mange@freemail.hu>
2169
2170 * net/tls.el (open-tls-stream): Show the actual command being
2171 executed, instead of the format string.
2172
2173 2008-10-01 Eli Zaretskii <eliz@gnu.org>
2174
2175 * term/internal.el (dos-locale-alist): New alist.
2176 (dos-codepage-setup): Use it to compute a value of locale with
2177 which to call set-locale-environment. Remove code to set
2178 terminal, keyboard, and file-name encoding (done by
2179 set-locale-environment).
2180
2181 * international/mule-cmds.el
2182 (set-language-environment-nonascii-translation): Fix nonascii
2183 value for `pc' ``window-system''.
2184 (set-display-table-and-terminal-coding-system)
2185 (set-default-coding-systems): Don't special-case `pc'.
2186
2187 2008-10-01 Glenn Morris <rgm@gnu.org>
2188
2189 * filesets.el (filesets-menu-name): Fix type.
2190 (filesets-menu-path, filesets-menu-before): Fix types.
2191 Change defaults to be consistent with recentf. (Bug#1056)
2192
2193 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2194
2195 * term/xterm.el (xterm-turn-on-modify-other-keys)
2196 (xterm-turn-off-modify-other-keys, xterm-remove-modify-other-keys):
2197 Don't forget to pass `terminal' to `send-string-to-terminal'.
2198
2199 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
2200
2201 * vc-hooks.el (vc-file-clearprops): Revert change from 2008-09-29.
2202 (vc-file-not-found-hook): Check, that `buffer-file-name' is
2203 non-nil. It is not clear, whether this is only fixing symptoms on
2204 an error. OTOH, in all other cases, the call of `vc-file-clearprops'
2205 is embedded by that check. So it might be TRT. Suggested by Dan
2206 Nicolaescu <dann@ics.uci.edu>.
2207
2208 2008-09-30 Eli Zaretskii <eliz@gnu.org>
2209
2210 * Makefile.in (ELCFILES): Remove codepage.elc.
2211
2212 * international/codepage.el: File removed, as even ms-dos doesn't
2213 need it anymore.
2214
2215 * loadup.el [ms-dos]: Don't load ccl and codepage.
2216
2217 * term/internal.el: Remove coding: cookie and no-byte-compile flag.
2218 (IT-character-translations, cjk-codepages-alist): Remove variables.
2219 (IT-display-table-setup, dos-cpNNN-setup): Remove functions.
2220 (IT-unicode-translations): Remove charset and base elements.
2221 Add translations for Latin-1 characters.
2222 (IT-setup-unicode-display): Accept a CODING argument. Don't use
2223 base and chset elements of IT-unicode-translations. Don't wrap
2224 translation in "{...}". Set up translations only for characters
2225 for which unencodable-char-position returns non-nil.
2226 (dos-codepage-setup): Don't use special-case codepages in
2227 cjk-codepages-alist.
2228
2229 * files.el (locate-dominating-file): Wrap directory-files with
2230 condition-case, instead of calling file-directory-p, which stats
2231 the directory one more time.
2232
2233 * mail/mail-utils.el (mail-unquote-printable-region):
2234 Use insert-byte instead of insert-char, when the UNIBYTE arg is
2235 non-nil.
2236
2237 2008-09-30 Daiki Ueno <ueno@unixuser.org>
2238
2239 * epa-file.el (epa-file-insert-file-contents): Fix typo.
2240
2241 2008-09-30 Glenn Morris <rgm@gnu.org>
2242
2243 * progmodes/which-func.el (which-func-imenu-joiner-function): Doc fix.
2244
2245 2008-09-30 Daniel Colascione <danc@merrillpress.com>
2246
2247 * progmodes/which-func.el (which-func-imenu-joiner-function): New.
2248 (which-function): Handle nested imenu trees.
2249
2250 * imenu.el (imenu--split-menu): Fix bug with shared lists that deleted
2251 some nested menu items.
2252
2253 2008-09-30 Jay Belanger <jay.p.belanger@gmail.com>
2254
2255 * calc/calc-units.el (math-standard-units): Add entries used to
2256 display the the values in the units buffer.
2257 (math-build-units-table): Add entries to the units table to be used
2258 to display the values in the units buffer.
2259 (math-build-units-table-buffer): Use the display entry of the units
2260 table when non-nil.
2261 (calc-define-unit): Add option to enter display value of unit.
2262
2263 2008-09-29 Michael Albinus <michael.albinus@gmx.de>
2264
2265 * vc-hooks.el (vc-file-clearprops): Check, that FILE is a string.
2266
2267 2008-09-29 Eli Zaretskii <eliz@gnu.org>
2268
2269 * files.el (locate-dominating-file): Take file-attributes of
2270 `dir', not of `file' (which never changes).
2271
2272 2008-09-29 Michael Albinus <michael.albinus@gmx.de>
2273
2274 * files.el (file-remote-p): Precise doc string; IDENTIFICATION can
2275 also be `localname'.
2276
2277 * net/ange-ftp.el (ange-ftp-file-remote-p): Handle `localname' as
2278 IDENTIFICATION.
2279
2280 2008-09-28 Glenn Morris <rgm@gnu.org>
2281
2282 * vc.el (vc-switches): Give it a doc string.
2283
2284 2008-09-28 Romain Francoise <romain@orebokech.com>
2285
2286 * comint.el (comint-show-output): Adjust to stickiness changes of
2287 the output field.
2288
2289 * startup.el (command-line): Start the daemon server later.
2290
2291 2008-09-28 Martin Rudalics <rudalics@gmx.at>
2292
2293 * subr.el (read-quoted-char): Call char-resolve-modifiers
2294 instead of char-resolve-modifers.
2295
2296 2008-09-27 Glenn Morris <rgm@gnu.org>
2297
2298 * play/solitaire.el (solitaire-mode-map): Bind "\r" rather
2299 than [return]. (Bug#1031)
2300
2301 2008-09-27 Peter Dyballa <Peter_Dyballa@Freenet.DE>
2302
2303 * calendar/calendar.el (solar-sunrises-buffer): Fix typo.
2304
2305 2008-09-27 Daiki Ueno <ueno@unixuser.org>
2306
2307 * epg.el (epg-wait-for-status): Check if there is no pending status.
2308 Reported by Ted Romer <ted@romerfamily.com>.
2309
2310 2008-09-26 Dan Nicolaescu <dann@ics.uci.edu>
2311
2312 * startup.el (command-line): Turn on menu-bar-mode and
2313 tool-bar-mode when running as a daemon.
2314
2315 2008-09-26 Eli Zaretskii <eliz@gnu.org>
2316
2317 * makefile.w32-in ($(lisp)/progmodes/cc-mode.elc): Remove.
2318 ($(lisp)/progmodes/cc-align.elc, $(lisp)/progmodes/cc-cmds.elc)
2319 ($(lisp)/progmodes/cc-compat.elc, $(lisp)/progmodes/cc-defs.elc)
2320 ($(lisp)/progmodes/cc-engine.elc)
2321 ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
2322 ($(lisp)/progmodes/cc-mode.elc, $(lisp)/progmodes/cc-styles.elc)
2323 ($(lisp)/progmodes/cc-subword.elc)
2324 ($(lisp)/progmodes/cc-vars.elc): New dependencies.
2325
2326 * Makefile.in ($(lisp)/progmodes/cc-mode.elc): Remove.
2327 ($(lisp)/progmodes/cc-align.elc, $(lisp)/progmodes/cc-cmds.elc)
2328 ($(lisp)/progmodes/cc-compat.elc, $(lisp)/progmodes/cc-defs.elc)
2329 ($(lisp)/progmodes/cc-engine.elc)
2330 ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
2331 ($(lisp)/progmodes/cc-mode.elc, $(lisp)/progmodes/cc-styles.elc)
2332 ($(lisp)/progmodes/cc-subword.elc)
2333 ($(lisp)/progmodes/cc-vars.elc): New dependencies.
2334
2335 2008-09-25 Katsumi Yamaoka <yamaoka@jpl.org>
2336
2337 * informat.el (Info-split-threshold): New variable.
2338 (Info-split): Use it.
2339
2340 * textmodes/texinfmt.el (texinfo-format-buffer):
2341 Use Info-split-threshold to decide whether to split Info files.
2342
2343 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
2344
2345 * progmodes/octave-mod.el (octave-mode-menu): Fix incorrect
2346 quoting.
2347
2348 * comint.el (comint-dynamic-complete-as-filename): Quote directory
2349 name when reinserting it.
2350
2351 * isearch.el (isearch-search-fun): Use word-search-forward-lax and
2352 word-search-backward-lax for incremental word search.
2353
2354 2008-09-25 Juanma Barranquero <lekktu@gmail.com>
2355
2356 * generic-x.el (generic-other-modes): Fix typo in docstring.
2357 (generic-use-find-file-hook, generic-lines-to-scan)
2358 (generic-find-file-regexp, generic-ignore-files-regexp)
2359 (generic-define-mswindows-modes, generic-define-unix-modes):
2360 Remove `*' from docstring.
2361 (generic-mode-find-file-hook): Use `string-match-p'.
2362 (apache-log-generic-mode, mailagent-rules-generic-mode)
2363 (prototype-generic-mode, pkginfo-generic-mode, javascript-generic-mode)
2364 (java-manifest-generic-mode, java-properties-generic-mode)
2365 (alias-generic-mode): Doc fix: use "Generic mode" in docstrings
2366 for consistency with other modes in generic-x.el.
2367
2368 2008-09-25 Martin Rudalics <rudalics@gmx.at>
2369
2370 * textmodes/tex-mode.el (latex-handle-escaped-parens): New variable.
2371 (latex-backward-sexp-1, latex-forward-sexp-1): Treat escaped
2372 parens specially only if latex-handle-escaped-parens is non-nil.
2373 (latex-indent-within-escaped-parens): New option.
2374 (latex-find-indent): Bind latex-handle-escaped-parens to
2375 latex-indent-within-escaped-parens. Do not treat escaped parens
2376 specially when this is nil. (Bug#954)
2377
2378 2008-09-25 Glenn Morris <rgm@gnu.org>
2379
2380 * ffap.el (ffap-fixup-url): Don't call url-normalize-url. (Bug#898)
2381
2382 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
2383
2384 * vc.el (vc-mark-resolved): Move message here from
2385 vc-default-mark-resolved.
2386 (vc-default-mark-resolved): Change to an alias for ignore.
2387
2388 2008-09-24 Andreas Politz <politza@fh-trier.de> (tiny change)
2389
2390 * term.el (term-emulate-terminal): Encode input string before
2391 checking its length.
2392
2393 2008-09-24 Chong Yidong <cyd@stupidchicken.com>
2394
2395 * progmodes/sh-script.el (sh-mode-map): Don't assume that skeleton
2396 is loaded.
2397
2398 * server.el (server-buffer-done): Avoid changing the buffer when
2399 deleting the client's frame (bug#640).
2400
2401 * vc.el (vc-default-mark-resolved): New function.
2402
2403 2008-09-24 Stephen Berman <stephen.berman@gmx.net>
2404
2405 * mail/rfc822.el (rfc822-addresses): Prevent rfc822-bad-address
2406 from raising a wrong-type-argument error.
2407
2408 2008-09-24 Martin Rudalics <rudalics@gmx.at>
2409
2410 * help-fns.el (describe-function-1, describe-variable): Print
2411 relative file name in help buffer.
2412 * faces.el (describe-face): Print relative file name in help
2413 buffer.
2414
2415 2008-09-23 Romain Francoise <romain@orebokech.com>
2416
2417 * subr.el (with-output-to-string): Make sure that the temporary
2418 buffer gets killed.
2419
2420 2008-09-23 Markus Sauermann <markus@sauermann-consulting.de> (tiny change)
2421
2422 * emacs-lisp/lisp-mode.el (calculate-lisp-indent): Fix
2423 indentation problem with keyword symbols when a list starts with
2424 ,@ or spaces. (Bug#1012)
2425
2426 2008-09-23 Martin Rudalics <rudalics@gmx.at>
2427
2428 * textmodes/tex-mode.el (latex-find-indent): Try to handle
2429 escaped close parens correctly. (Bug#954)
2430
2431 2008-09-22 Tassilo Horn <tassilo@member.fsf.org>
2432
2433 * play/fortune.el (fortune-in-buffer): Fix a bug which forced
2434 usage of `fortune-file' even though a FILE argument was passed to
2435 the function.
2436
2437 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
2438
2439 * startup.el (command-line): Start the server when in daemon mode.
2440 Remove always true test.
2441
2442 * frame.el (frame-initialize): Remove spurious setting of
2443 special-display-function with the default value.
2444
2445 2008-09-20 Vincent Belaïche <vincent.b.1@hotmail.fr>
2446
2447 * calc/calc-vec.el (calcFunc-venum): Properly handle intervals.
2448
2449 2008-09-20 Glenn Morris <rgm@gnu.org>
2450
2451 * emacs-lisp/lisp-mode.el (lisp-indent-offset):
2452 Fix custom type. (Bug#1011)
2453
2454 2008-09-20 David De La Harpe Golden <david@harpegolden.net>
2455
2456 * files.el (move-file-to-trash): Avoid recursive trashing if
2457 rename-file calls delete-file.
2458
2459 2008-09-20 Glenn Morris <rgm@gnu.org>
2460
2461 * play/fortune.el: Remove leading `*' from defcustom docs.
2462 (fortune-program-options): Doc fix. Allow to be a string again.
2463 Add :version.
2464 (fortune-in-buffer): Handle fortune-program-options as a string.
2465 Don't rely on fortune program accepting options after fortune file.
2466
2467 2008-09-20 Justin Bogner <mail@justinbogner.com> (tiny change)
2468
2469 * play/fortune.el (fortune-program-options): Change to a list.
2470 (fortune-in-buffer): Use apply.
2471
2472 2008-09-20 Ulrich Mueller <ulm@kph.uni-mainz.de>
2473
2474 * emacs-lisp/authors.el: Change encoding of file to utf-8.
2475 (authors-coding-system): Likewise.
2476
2477 2008-09-20 Ami Fischman <ami@fischman.org>
2478
2479 * savehist.el (savehist-save): Handle errors in writing as well as
2480 reading.
2481
2482 2008-09-20 Michael Olson <mwolson@gnu.org>
2483
2484 * emacs-lisp/tq.el (tq-create): Disable undo in tq buffer in order
2485 to provide a minimal performance boost.
2486
2487 2008-09-19 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2488
2489 * proced.el (proced-grammar-alist, proced-custom-attributes)
2490 (proced-format-alist, proced-format, proced-filter-alist)
2491 (proced-filter, proced-sort): Use defcustom.
2492 (proced-mode): Fix docstring.
2493 (proced-process-attributes): Handle return value nil of functions
2494 in proced-custom-attributes.
2495
2496 2008-09-19 Martin Rudalics <rudalics@gmx.at>
2497
2498 * textmodes/sgml-mode.el (sgml-tag-syntax-table): Remove prefix
2499 flag from "'" entry in sgml-tag-syntax-table. (Bug#946)
2500
2501 2008-09-19 Miles Bader <miles@gnu.org>
2502
2503 * comint.el (comint-output-filter): Make field properties for
2504 output text front-sticky.
2505
2506 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
2507
2508 * vc-bzr.el (vc-bzr-show-log-entry):
2509 * vc-git.el (vc-git-show-log-entry): Deal with a nil argument,
2510 C-x v l for a directory uses that.
2511
2512 2008-09-18 Simon Josefsson <simon@josefsson.org>
2513
2514 * files.el (auto-mode-alist): Use sieve-mode for .sv, .siv, and
2515 .sieve files.
2516
2517 2008-09-18 Martin Rudalics <rudalics@gmx.at>
2518
2519 * help-macro.el (make-help-screen): Preserve key bindings
2520 established in help-mode call when exiting this macro.
2521
2522 2008-09-17 Kenichi Handa <handa@m17n.org>
2523
2524 * language/burmese.el: Fix setting of composition-function-table.
2525
2526 2008-09-17 Martin Rudalics <rudalics@gmx.at>
2527
2528 * info.el (Info-follow-nearest-node): Don't raise an error for
2529 mouse-1 clicks.
2530
2531 2008-09-17 Jay Belanger <jay.p.belanger@gmail.com>
2532
2533 * calc/calc-units.el (calc-convert-temperature): Use default
2534 units when appropriate.
2535
2536 2008-09-16 Markus Triska <markus.triska@gmx.at>
2537
2538 * textmodes/flyspell.el (flyspell-math-tex-command-p): Always
2539 catch errors raised in `texmathp'.
2540 (flyspell-tex-math-initialized): Remove.
2541
2542 2008-09-16 Martin Rudalics <rudalics@gmx.at>
2543
2544 * frame.el (select-frame-set-input-focus): With non-nil
2545 mouse-autoselect-window always move mouse cursor to frame's
2546 selected window. Otherwise restore pre 2008-09-13 behavior.
2547 (select-frame-by-name): Use select-frame-set-input-focus.
2548
2549 * files.el (switch-to-buffer-other-frame): Don't raise frame since
2550 pop-to-buffer already does it.
2551 (display-buffer-other-frame): Fix doc-string.
2552
2553 2008-09-16 Glenn Morris <rgm@gnu.org>
2554
2555 * add-log.el (diff-find-source-location): Update declaration.
2556
2557 * progmodes/make-mode.el (makefile-match-function-end):
2558 Move point. (Bug#983)
2559
2560 2008-09-16 Daiki Ueno <ueno@unixuser.org>
2561
2562 * epg.el (epg-start-verify): Pass "--verify" to gpgsm.
2563
2564 2008-09-15 Juanma Barranquero <lekktu@gmail.com>
2565
2566 * vc-rcs.el (vc-rcs-steal-lock, vc-rcs-checkout): Fix docstring typos.
2567 (vc-rcs-fetch-master-state, vc-rcs-system-release): Doc fixes.
2568
2569 2008-09-15 Eduard Wiebe <usenet@pusto.de> (tiny change)
2570
2571 * vc-rcs.el (vc-rcs-rollback): Fix typos in docstring.
2572
2573 2008-09-15 Martin Rudalics <rudalics@gmx.at>
2574
2575 * files.el (file-truename): Don't raise args-out-of-range error
2576 when filename has no separator on windows-nt. (Bug#982)
2577
2578 2008-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2579
2580 * diff-mode.el (diff-find-file-name): Rename `batch' to `noprompt' and
2581 be more honest when we don't know.
2582 (diff-tell-file-name): Don't prompt before the actual prompt.
2583 (diff-mode): Don't prompt in add-log-buffer-file-name-function.
2584 (diff-find-source-location): Add `noprompt' argument.
2585 (diff-current-defun): Don't prompt.
2586
2587 2008-09-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2588
2589 * proced.el (proced-mark-face, proced-marked-face)
2590 (proced-sort-header-face): Remove.
2591 (proced-font-lock-keywords): Simplify.
2592 (proced-format): Use face proced-sort-header.
2593 (proced-format-interactive, proced-sort-interactive)
2594 (proced-filter-interactive): Only call proced-update if the scheme
2595 has changed.
2596 (proced-sort-header): Use posn-actual-col-row.
2597
2598 2008-09-14 Martin Rudalics <rudalics@gmx.at>
2599
2600 * add-log.el (change-log-find-window): New variable.
2601 (change-log-goto-source-1, change-log-goto-source):
2602 Set change-log-find-window to window displaying source.
2603 (change-log-next-error): Select window specified by
2604 change-log-find-window.
2605
2606 2008-09-13 Martin Rudalics <rudalics@gmx.at>
2607
2608 * frame.el (select-frame-set-input-focus): With focus follows
2609 mouse move mouse cursor to right window.
2610 * window.el (pop-to-buffer): Select window before calling
2611 select-frame-set-input-focus.
2612
2613 2008-09-12 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2614
2615 * proced.el (proced-sort-header): New face.
2616 (proced-sort-header-face): New variable.
2617 (proced-format): Allow format value nil.
2618 Use proced-sort-header-face for header of sort column.
2619 (proced-format-args): New function.
2620 (proced-grammar-alist, proced-timer-flag, proced-process-alist)
2621 (proced-header-help-echo, proced-field-help-echo, proced-timer)
2622 (proced-toggle-timer-flag, proced, proced-mode): Doc fix.
2623 (proced-refine): Rename from proced-filter-attribute. Doc fix.
2624 (proced-sort-header): Bind also to mouse-1.
2625 (proced-move-to-goal-column): Return position of point.
2626 (proced-filter-interactive): Always revert listing.
2627 (proced-format-ttname): Simplify.
2628 (proced-update): Do not keep undo information. Put point at
2629 beginning of buffer if we generate the first listing.
2630
2631 2008-09-12 Tassilo Horn <tassilo@member.fsf.org>
2632
2633 * doc-view.el (doc-view-scroll-up-or-next-page)
2634 (doc-view-scroll-down-or-previous-page): Fix scrolling in case of
2635 vertically split windows.
2636
2637 2008-09-12 Glenn Morris <rgm@gnu.org>
2638
2639 * progmodes/f90.el (f90-mode-map): Don't bind \t and \r.
2640
2641 * indent.el (indent-line-function): Doc fix.
2642 * progmodes/sh-script.el (sh-font-lock-open-heredoc): Doc fix.
2643
2644 2008-09-11 Martin Rudalics <rudalics@gmx.at>
2645
2646 * window.el (pop-to-buffer): If the window for buffer-or-name is
2647 not on the selected frame, raise that window's frame and give it
2648 input focus. (Bug#745)
2649
2650 2008-09-11 Glenn Morris <rgm@gnu.org>
2651
2652 * ido.el (ido-mode): Initialize with custom-initialize-default,
2653 rather than a set function. (Bug#947)
2654
2655 2008-09-10 Chong Yidong <cyd@stupidchicken.com>
2656
2657 * replace.el (perform-replace): Don't set inhibit-read-only using
2658 query-replace-skip-read-only (bug#956).
2659
2660 * edmacro.el (edmacro-parse-keys): Fix last change to omit macros
2661 of the <<foo>> form.
2662
2663 2008-09-10 Martin Rudalics <rudalics@gmx.at>
2664
2665 * window.el (display-buffer): Fix doc-string typo.
2666
2667 2008-09-10 Kenichi Handa <handa@m17n.org>
2668
2669 * composite.el (compose-gstring-for-graphic): Fix previous change.
2670
2671 2008-09-10 Glenn Morris <rgm@gnu.org>
2672
2673 * info.el (Info-try-follow-nearest-node): Fix doc typo.
2674
2675 2008-09-10 Stephen Berman <stephen.berman@gmx.net>
2676
2677 * info.el (Info-mouse-follow-nearest-node): Follow links to different
2678 manuals. (Bug#886)
2679
2680 2008-09-09 Juanma Barranquero <lekktu@gmail.com>
2681
2682 * ido.el (ido-unload-function): New function.
2683
2684 2008-09-08 Juanma Barranquero <lekktu@gmail.com>
2685
2686 * ido.el (ido-file-internal): Fix typo in prompt.
2687 (ido-merge-ftp-work-directories, ido-max-work-file-list): Doc fixes.
2688 (ido-max-prospects, ido-max-file-prompt-width, ido-ignore-buffers)
2689 (ido-enable-prefix, ido-setup-hook, ido-rewrite-file-prompt-functions)
2690 (ido-magic-forward-char, ido-magic-delete-char, ido-pop-dir):
2691 Fix typos in docstrings.
2692
2693 2008-09-08 Martin Rudalics <rudalics@gmx.at>
2694
2695 * help-fns.el (describe-function-1): Don't print extra newline
2696 after filling.
2697
2698 2008-09-08 Katsumi Yamaoka <yamaoka@jpl.org>
2699
2700 * help-fns.el (find-lisp-object-file-name): Handle case where
2701 library is compressed.
2702
2703 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
2704
2705 * complete.el (PC-do-completion): Don't replace buffer
2706 contents (bug#227).
2707
2708 2008-09-07 Juanma Barranquero <lekktu@gmail.com>
2709
2710 * loadhist.el (unload-feature-special-hooks):
2711 Add `choose-completion-string-functions'.
2712
2713 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2714
2715 * vc-svn.el (vc-svn-root):
2716 * vc-sccs.el (vc-sccs-root):
2717 * vc-rcs.el (vc-rcs-root):
2718 * vc-cvs.el (vc-cvs-root): Delete.
2719 * vc-hooks.el (vc-find-root): Remove `invert' argument.
2720
2721 2008-09-07 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
2722
2723 * progmodes/flymake.el (flymake-parse-err-lines): Filter out
2724 errors occurring in different files.
2725
2726 2008-09-07 Dan Nicolaescu <dann@ics.uci.edu>
2727
2728 * vc-bzr.el (vc-bzr-extra-fileinfo): New defstruct.
2729 (vc-bzr-status-printer): New function.
2730 (vc-bzr-after-dir-status): Deal with renamed files.
2731
2732 2008-09-07 Johan Euphrosine <proppy@aminche.com> (tiny change)
2733
2734 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Shell quote
2735 buffer's filename.
2736
2737 2008-09-07 Martin Rudalics <rudalics@gmx.at>
2738
2739 * subr.el (cancel-change-group): Widen buffer temporarily when
2740 undoing changes. (Bug#810)
2741
2742 2008-09-07 Nick Roberts <nickrob@snap.net.nz>
2743
2744 * progmodes/gud.el (gud-stop-subjob): Using jdb, suspend threads
2745 with gud-stop-subjob rather than exit debugger.
2746
2747 2008-09-07 Kenichi Handa <handa@m17n.org>
2748
2749 * composite.el: Compose combining characters only when it
2750 follows a character matching with "[[:alpha:]]".
2751
2752 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2753
2754 * proced.el: Require time-date.
2755 (proced-command-alist, proced-command, proced-goal-header-re)
2756 (proced-sorting-schemes-alist, proced-sorting-scheme)
2757 (proced-header-alist, proced-sorting-schemes-re)
2758 (proced-skip-regexp, proced-next-line, proced-previous-line)
2759 (proced-listing-type, proced-sorting-scheme-p): Remove.
2760 (proced-grammar-alist, proced-custom-attributes)
2761 (proced-format-alist, proced-format, proced-filter-alist)
2762 (proced-filter, proced-sort, proced-goal-attribute)
2763 (proced-timer-interval, proced-timer-flag, proced-timer)
2764 (proced-process-alist, proced-sort-internal, proced-process-tree)
2765 (proced-header-help-echo, proced-field-help-echo): New variables.
2766 (proced-pid-at-point, proced-timer, proced-mark-process-alist)
2767 (proced-omit-process, proced-filter, proced-process-tree)
2768 (proced-filter-children, proced-children-pids)
2769 (proced-filter-parents, proced-<, proced-string-lessp)
2770 (proced-time-lessp, proced-xor, proced-sort-p)
2771 (proced-format-time, proced-format-start, proced-format-ttname)
2772 (proced-format, proced-process-attributes): New functions.
2773 (proced-toggle-timer-flag, proced-mark-children)
2774 (proced-mark-parents, proced-filter-interactive)
2775 (proced-filter-attribute, proced-sort-interactive)
2776 (proced-sort-header, proced-format-interactive): New commands.
2777 (proced-move-to-goal-column): Use goal-column.
2778 (proced-mode): Use proced-timer.
2779 (proced-do-mark-all): Display process count. Use use-region-p.
2780 Simplify.
2781 (proced-omit-processes): Use use-region-p.
2782 (proced-sort-pcpu, proced-sort-pmem, proced-sort-pid)
2783 (proced-sort-start, proced-sort-time, proced-sort-user):
2784 Use proced-sort-interactive.
2785 (proced-sort): Make it a function that performs the actual sort.
2786 (proced-update): New arg revert. Use proced-process-alist,
2787 proced-filter, proced-sort, proced-format, and
2788 proced-grammar-alist. Preserve position of point based on fields.
2789 Make header line and fields clickable.
2790 (proced-send-signal): Use proced-pid-at-point and proced-process-alist.
2791 (proced-why): Use save-selected-window.
2792 (proced-log): Use buffer-read-only.
2793
2794 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
2795
2796 * tooltip.el (tooltip-mode): Initialize unconditionally to t.
2797
2798 2008-09-06 Glenn Morris <rgm@gnu.org>
2799
2800 * add-log.el (diff-find-source-location): Declare.
2801 (find-change-log): If called from a diff buffer, try to switch to the
2802 source buffer (e.g. to respect change-log-default-name there).
2803
2804 * progmodes/sh-script.el (sh-get-kw): Remove '()' from the list of
2805 unallowed characters; added 2006-10-10 without comment. (Bug#753)
2806
2807 * Makefile.in (ELCFILES): Update.
2808
2809 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
2810
2811 * textmodes/ispell.el (ispell-command-loop): Suspend ispell if the
2812 user enters a mouse event in another frame, or a special event.
2813
2814 * server.el (server-switch-buffer): New arg.
2815 (server-execute): If reusing an existing window, set file position
2816 if required.
2817
2818 2008-09-06 Kenichi Handa <handa@m17n.org>
2819
2820 * language/lao.el: Fix setting of composition-function-table.
2821
2822 2008-09-06 Eli Zaretskii <eliz@gnu.org>
2823
2824 * term/pc-win.el (msdos-show-help): Don't truncate lines while
2825 displaying help echo messages.
2826
2827 2008-09-06 Martin Rudalics <rudalics@gmx.at>
2828
2829 * subr.el (symbol-file): Fix doc-string.
2830
2831 2008-09-06 Glenn Morris <rgm@gnu.org>
2832
2833 * help-mode.el (help-xref-forward-stack): Doc fix.
2834
2835 * add-log.el (change-log-default-name): Autoload safety.
2836
2837 2008-09-05 Wilson Snyder <wsnyder@wsnyder.org>
2838
2839 * verilog-mode.el (verilog-library-extensions): Enable .sv
2840 filename extensions to call verilog-mode.
2841 (verilog-auto, verilog-auto-inst, verilog-faq)
2842 (verilog-submit-bug-report): Update author support URLs.
2843 (verilog-delete-auto, verilog-auto-inout-module)
2844 (verilog-auto-inout-comp, verilog-auto): Add AUTOINOUTCOMP for
2845 creating complemented testbench modules. Suggested by Yishay Belkind.
2846 (verilog-auto-inst-port, verilog-simplify-range-expression):
2847 When verilog-auto-inst-param-value is set, don't require a
2848 AUTO_TEMPLATE to expand parameter substitutions. Suggested by
2849 Yishay Belkind.
2850 (verilog-auto-inst-param-value): Add safe variable.
2851 (verilog-re-search-forward, verilog-re-search-backward):
2852 Fix returning wrong search results on Emacs 22.1.
2853 (verilog-modi-cache-results, verilog-auto): Fix warning message
2854 about "toggling font-lock-mode."
2855 (verilog-auto): Fix losing font-lock on errors.
2856 (verilog-auto-inst-param-value, verilog-mode-version)
2857 (verilog-mode-version-date, verilog-read-inst-param-value)
2858 (verilog-auto-inst, verilog-auto-inst-param)
2859 (verilog-auto-inst-port, verilog-simplify-range-expression):
2860 Allow parameters to be replaced with their values, on the expansion of
2861 an AUTOINST with Verilog 2001 style parameter settings.
2862 Suggested by David Rogoff.
2863
2864 2008-09-05 Michael McNamara <mac@mail.brushroad.com>
2865
2866 * verilog-mode.el (verilog-beg-block-re-ordered, verilog-calc-1):
2867 Better support for the property statement. Sometimes this keyword
2868 introduces a statement which requires an endproperty keyword, and
2869 sometimes it doesn't, depending on the work before the property
2870 word. If property is prefixed with assert, assume or cover
2871 keyword, then the statement is ended with a ';'. Otherwise,
2872 property is like task or specify, and is followed by some number
2873 of statements, which are ended with an endproperty keyword.
2874 (electric-verilog-tab): Support Emacs 22.2 style handling of tab
2875 in a highlighted region: indent each line in region according to
2876 mode. Supply this so it works in XEmacs and older Emacs.
2877
2878 2008-09-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2879
2880 * whitespace.el (whitespace-kill-buffer-hook, whitespace-action):
2881 Don't clean up a buffer when killing it.
2882
2883 2008-09-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2884
2885 * whitespace.el: Fix auto-cleanup on kill prevents killing read-only
2886 buffers (bug#360). New version 11.2.1.
2887 (whitespace-action): New value `warn-read-only' to give a warning when
2888 buffer is read-only and whitespace action is cleanup or auto-cleanup.
2889 (whitespace-cleanup, whitespace-cleanup-region): Code fix.
2890 (whitespace-warn-read-only): New fun.
2891
2892 2008-09-05 Chong Yidong <cyd@stupidchicken.com>
2893
2894 * international/quail.el: Require help-mode.
2895 (quail-help-init): Function removed.
2896 (quail-keyboard-layout-button, quail-keyboard-customize-button):
2897 Define directly.
2898
2899 * dired.el (dired-get-filename): Rewrite octal escape character
2900 processor (bug#885).
2901
2902 2008-09-05 Eli Zaretskii <eliz@gnu.org>
2903
2904 * cus-edit.el (custom-button-pressed): Default to inverse-video.
2905
2906 * term/pc-win.el (msdos-face-setup): Setup faces for all frames,
2907 not just for terminal-frame.
2908
2909 2008-09-05 Martin Rudalics <rudalics@gmx.at>
2910
2911 * window.el (window--try-to-split-window): Don't split when window
2912 is not splittable in last disjunct. (Bug#888)
2913
2914 2008-09-05 Kenichi Handa <handa@m17n.org>
2915
2916 * language/tibetan.el: Fix setting of composition-function-table.
2917
2918 * composite.el (find-composition): Mention about the automatic
2919 composition in the docstring.
2920 (compose-gstring-for-graphic): Fix handling "above" marks.
2921
2922 * descr-text.el (describe-char): Fix handling of automatic composition.
2923
2924 2008-09-04 Juanma Barranquero <lekktu@gmail.com>
2925
2926 * net/tramp-cache.el (tramp-flush-file-function): Fix docstring typo.
2927 (tramp-parse-connection-properties): Reflow docstring.
2928
2929 2008-09-04 Kim F. Storm <storm@cua.dk>
2930
2931 * ido.el (ido-buffer-internal, ido-file-internal): Pass on other-window
2932 and other-frame methods when switching between file and buffer modes.
2933
2934 2008-09-04 Martin Rudalics <rudalics@gmx.at>
2935
2936 * info.el (Info-dir-remove-duplicates): Narrow buffer when
2937 removing duplicate entries under same heading. Don't skip char
2938 matching anything but a space or tab at bol. (Bug#864)
2939
2940 2008-09-03 Alan Mackenzie <acm@muc.de>
2941
2942 * progmodes/cc-defs.el (c-version): Increment to 5.31.6.
2943
2944 2008-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2945
2946 * minibuffer.el (completion-pcm--pattern->regex): Undo last change.
2947 (completion-pcm--all-completions): Move the case-fold-search binding to
2948 it also applies to completion-regexp-list (used in all-completions).
2949 (completion-pcm--hilit-commonality): Add missing case-fold-search.
2950
2951 2008-09-03 Martin Rudalics <rudalics@gmx.at>
2952
2953 * window.el (pop-up-frame-function): Move ...
2954 * frame.el (pop-up-frame-function): ... here, to avoid
2955 "CHANGED outside Customize;".
2956
2957 2008-09-03 Glenn Morris <rgm@gnu.org>
2958
2959 * buff-menu.el (buffer-menu-mode-hook): Add obsolete alias.
2960
2961 2008-09-03 Chong Yidong <cyd@stupidchicken.com>
2962
2963 * isearch.el (isearch-highlight-regexp): Fix last change, quoting
2964 non-alphabetical characters properly.
2965
2966 2008-09-02 Dan Nicolaescu <dann@ics.uci.edu>
2967
2968 * files.el (auto-mode-alist): Use verilog-mode for SystemVerilog files.
2969
2970 2008-09-02 Martin Rudalics <rudalics@gmx.at>
2971
2972 * calc/calc.el (calc-dispatch-map): Fix handling of upcased and
2973 control-prefixed keys. (Bug#835)
2974
2975 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
2976
2977 * image-mode.el (image-mode): Fix 2008-07-19 change.
2978
2979 2008-09-02 Juanma Barranquero <lekktu@gmail.com>
2980
2981 * tool-bar.el (tool-bar-add-item): Fix typo in docstring.
2982
2983 * emulation/tpu-edt.el (tpu-kill-buffer): Doc fix.
2984
2985 2008-09-02 Glenn Morris <rgm@gnu.org>
2986
2987 * emacs-lisp/lucid.el (try-face-font): Remove dead alias.
2988
2989 * progmodes/cc-langs.el (c-opt-op-identitier-prefix): Fix typo.
2990
2991 2008-09-01 Glenn Morris <rgm@gnu.org>
2992
2993 * vc-hooks.el (vc-previous-version): Move alias to vc.el.
2994 * vc.el (vc-default-previous-version): Move alias here from vc-hooks,
2995 and fix name typos. (Bug#856)
2996
2997 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
2998
2999 * minibuffer.el (completion-pcm--pattern->regex):
3000 When completion-ignore-case is non-nil, generate a regexp that
3001 ignores case.
3002
3003 * window.el (recenter-top-bottom): Doc fix.
3004
3005 2008-09-01 Simon South <ssouth@member.fsf.org>
3006
3007 * progmodes/delphi.el: New maintainer.
3008 (delphi-interface-types): New var.
3009 (delphi-composite-types): Use it.
3010 (delphi-enclosing-indent-of): Distinguish between "interface"
3011 keyword as a unit separator and used like a class declaration.
3012
3013 2008-09-01 Martin Rudalics <rudalics@gmx.at>
3014
3015 * help-fns.el (describe-simplify-lib-file-name)
3016 (find-source-lisp-file): Remove.
3017 (find-lisp-object-file-name): New function giving preference to
3018 files found via load-path instead of loaddefs.el.
3019 (describe-function-1): Use new function instead of the removed
3020 ones. (Bugs #587, #669, #690)
3021 * faces.el (describe-face): Use find-lisp-object-file-name instead
3022 of describe-simplify-lib-file-name.
3023
3024 2008-09-01 Kenichi Handa <handa@m17n.org>
3025
3026 * international/mule-diag.el (font-show-log): Fix previous change.
3027
3028 * international/mule-cmds.el (set-language-environment):
3029 Don't overwrite current-iso639-language if the current language
3030 environment doesn't provide that data.
3031 (set-locale-environment): Set current-iso639-language from the
3032 locale name.
3033
3034 * international/fontset.el (script-representative-chars): Re-add
3035 the entry for symbol, but with vector of characters.
3036 (setup-default-fontset): Cancel previous change.
3037
3038 2008-08-31 Chong Yidong <cyd@stupidchicken.com>
3039
3040 * ido.el: Move provide statement to the end of the file.
3041
3042 2008-08-30 Markus Triska <markus.triska@gmx.at>
3043
3044 * linum.el (linum-mode): `window-size-change-functions' can now be
3045 buffer-local.
3046 (linum-update-window): Use result of `move-overlay'.
3047
3048 2008-08-30 Glenn Morris <rgm@gnu.org>
3049
3050 * subr.el (make-variable-frame-local): Tweak obsolescence message.
3051
3052 * info.el (Info-hide-note-references, Info-refill-paragraphs):
3053 Doc fixes.
3054
3055 * apropos.el (apropos-command): Report documentation errors.
3056 * help-fns.el (describe-function-1): Handle broken aliases. (Bug#825)
3057
3058 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
3059
3060 * isearch.el (isearch-highlight-regexp): Fix case of highlighted
3061 string.
3062
3063 2008-08-29 Eli Zaretskii <eliz@gnu.org>
3064
3065 * bindings.el (mode-line-frame-identification): Fix last change.
3066
3067 2008-08-29 Kenichi Handa <handa@m17n.org>
3068
3069 These changes are to adjust the automatic composition for the new
3070 implementation (avoid using text property).
3071
3072 * composite.el (composition-function-table): Move declaration to
3073 composite.c.
3074 (terminal-composition-base-character-p): Delete it.
3075 (terminal-composition-function): Delete it.
3076 (terminal-composition-function-table): Delete it.
3077 (lgstring-header, lgstring-set-header, lgstring-font)
3078 (lgstring-char, lgstring-char-len, lgstring-shaped-p)
3079 (lgstring-set-id, lgstring-glyph, lgstring-glyph-len)
3080 (lgstring-set-glyph, lglyph-from, lglyph-to, lglyph-char)
3081 (lglyph-code, lglyph-width, lglyph-lbearing, lglyph-rbearing)
3082 (lglyph-ascent, lglyph-descent, lglyph-adjustment)
3083 (lglyph-set-from-to, lglyph-copy, lgstring-insert-glyph)
3084 (compose-glyph-string, compose-glyph-string-relative)
3085 (compose-gstring-for-graphic, compose-gstring-for-terminal):
3086 New functions.
3087 (auto-compose-chars): Argument changed.
3088
3089 * language/european.el: Don't setup composition-function-table.
3090 (diacritic-composition-pattern, diacritic-compose-region)
3091 (diacritic-compose-string, diacritic-compose-buffer)
3092 (diacritic-composition-function): Delete them.
3093
3094 * language/lao-util.el (lao-composition-function): Argument changed.
3095
3096 * language/sinhala.el: Fix setting up of composition-function-table.
3097
3098 * language/thai.el: Fix setting up of composition-function-table.
3099
3100 * language/thai-util.el: Encoding changed to utf-8.
3101 (thai-composition-function): Argument changed.
3102
3103 * language/indian.el: Fix setting up of composition-function-table.
3104 (devanagari-composable-pattern)
3105 (tamil-composable-pattern, kannada-composable-pattern)
3106 (malayalam-composable-pattern): New variables.
3107
3108 * international/characters.el (unicode-category-table):
3109 Setup unicode-category-table.
3110
3111 * international/fontset.el (setup-default-fontset): Prepend
3112 iso10646-1 fonts to the fallback font groups instead of appending.
3113
3114 2008-08-29 Glenn Morris <rgm@gnu.org>
3115
3116 * cus-start.el (truncate-partial-width-windows): Changed in 23.1.
3117
3118 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
3119
3120 * term/x-win.el (x-win-suspend-error): Don't signal error if there
3121 are no X frames active.
3122
3123 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
3124
3125 * net/xesam.el (xesam-kill-buffer-function): Wrap code by
3126 `ignore-errors' (the function must succeed always).
3127
3128 2008-08-28 "Edward O'Connor" <hober0@gmail.com>
3129
3130 * json.el (json-read-number): New arg. Handle explicitly signed
3131 numbers.
3132 (json-readtable): Add `+' and `.'.
3133
3134 2008-08-28 Eli Zaretskii <eliz@gnu.org>
3135
3136 * term/pc-win.el (msdos-previous-message): New variable.
3137 (msdos-show-help): New function.
3138 (msdos-initialize-window-system): Set show-help-function to
3139 msdos-show-help.
3140
3141 2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
3142
3143 * emacs-lisp/debug.el (debug): When killing a noninteractive
3144 Emacs, give an exit status of -1.
3145
3146 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
3147
3148 * vc-hooks.el (vc-workfile-unchanged-p): Revert last change.
3149
3150 2008-08-27 Alex Harsanyi <harsanyi@mac.com> (tiny change)
3151
3152 * vc-hooks.el (vc-workfile-unchanged-p): If the checkout time is
3153 not the same as the last modification time, fall back on the
3154 backend-specific check.
3155
3156 2008-08-27 Teodor Zlatanov <tzz@lifelogs.com>
3157
3158 * add-log.el (change-log-next-error): Run an extra `pop-to-buffer'
3159 to go to the position of interest.
3160
3161 2008-08-27 Tomas Abrahamsson <tab@lysator.liu.se>
3162
3163 * textmodes/artist.el (artist-mode-init): Add comment on the
3164 setting up of the `artist-replacement-table' array.
3165 (artist-get-replacement-char): New defsubst.
3166 (artist-get-char-at-xy-conv, artist-replace-char)
3167 (artist-replace-chars, artist-replace-string): Use it instead of
3168 accessing `artist-replacement-table' directly.
3169 Reported by Rubén Berenguel <ruben@maia.ub.es>.
3170
3171 (artist-mt): Fix structures for cut and copy operations.
3172
3173 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
3174
3175 * shell.el (shell-file-name-quote-list): Quote `$'.
3176
3177 * comint.el (comint-dynamic-complete-as-filename): Generalize last
3178 change to allow quoting of characters before point.
3179 (comint-dynamic-list-filename-completions): Quote common substring.
3180
3181 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
3182
3183 * comint.el (comint-dynamic-complete-as-filename): If case is
3184 ignored while matching, replace the entire filename with completion.
3185
3186 * textmodes/flyspell.el (flyspell-check-pre-word-p): Make sure
3187 flyspell-pre-point is valid to avoid signalling an error in
3188 post-command-hook.
3189
3190 2008-08-26 Johan Bockgård <bojohan@gnu.org>
3191
3192 * linum.el (linum): Inherit remaining face attributes from default
3193 face.
3194
3195 2008-08-26 Markus Triska <markus.triska@gmx.at>
3196
3197 * linum.el (linum-delay): Disable - it should no longer be
3198 necessary, and can lead to longer delays.
3199 (linum-update-window): Renumber if margin width has changed.
3200
3201 2008-08-26 Daiki Ueno <ueno@unixuser.org>
3202
3203 * epa.el (epa--key-widget-action): Save the selected window to
3204 make `widget-button-click-moves-point' work. (Bug#733).
3205
3206 2008-08-26 Glenn Morris <rgm@gnu.org>
3207
3208 * calendar/holidays.el (calendar-holidays): Doc fix.
3209
3210 * progmodes/gud.el (tramp-file-name-localname)
3211 (tramp-dissect-file-name): Declare.
3212
3213 * term/pc-win.el (msdos-setup-keyboard): Fix declaration.
3214
3215 2008-08-25 Eli Zaretskii <eliz@gnu.org>
3216
3217 * bindings.el (mode-line-frame-control): New function, caters to
3218 `pc' ``window system''.
3219 (mode-line-frame-identification): Use it instead of accessing
3220 window-system directly.
3221
3222 2008-08-25 Juri Linkov <juri@jurta.org>
3223
3224 * textmodes/text-mode.el (text-mode-map): Unbind "\es" from
3225 `center-line' and "\eS" from `center-paragraph'.
3226 (facemenu-keymap): Bind "\es" to `center-line' and "\eS" to
3227 `center-paragraph'.
3228
3229 2008-08-25 Ulf Jasper <ulf@web.de>
3230
3231 * net/newst-treeview.el (newsticker-treeview-own-frame): Doc fixed.
3232 (newsticker-treeview-treewindow-width): New.
3233 (newsticker-treeview-listwindow-height): New.
3234 (newsticker-treeview-browse-url-item): New.
3235 (newsticker-treeview-mode-map):
3236 Add newsticker-treeview-browse-url-item.
3237 (newsticker--treeview-window-init):
3238 Use newsticker-treeview-treewindow-width and
3239 newsticker-treeview-listwindow-height.
3240
3241 * net/newst-reader.el (newsticker-browse-url-item): New.
3242
3243 2008-08-25 Dan Nicolaescu <dann@ics.uci.edu>
3244
3245 * vc-dir.el (vc-dir-marked-only-files-and-states):
3246 (vc-dir-child-files-and-states): Reverse the list before returning it.
3247
3248 2008-08-24 Michael Albinus <michael.albinus@gmx.de>
3249
3250 * net/dbus.el (dbus-introspect): Use `dbus-call-method-non-blocking'.
3251
3252 2008-08-24 Romain Francoise <romain@orebokech.com>
3253
3254 * progmodes/python.el (run-python): Remove '' from sys.path.
3255
3256 2008-08-23 Glenn Morris <rgm@gnu.org>
3257
3258 * progmodes/fortran.el (fortran-tab-mode-string)
3259 (fortran-comment-line-start, fortran-continuation-string): Doc fixes.
3260
3261 2008-08-23 Eli Zaretskii <eliz@gnu.org>
3262
3263 * term/pc-win.el (msdos-setup-keyboard) <msdos-setup-keyboard>:
3264 Add declare-function.
3265
3266 * startup.el (command-line): Don't call tty-register-default-colors
3267 if initial-window-system is `pc'.
3268
3269 * term/internal.el (local-function-key-map): Fix unbalanced parens.
3270 (msdos-key-remapping-map): New variable. Move here all the special
3271 keys we will be remapping via local-function-key-map.
3272 (msdos-setup-keyboard): New function.
3273
3274 * term/pc-win.el (msdos-create-frame-with-faces): Rename from
3275 make-msdos-frame.
3276 (terminal-init-internal): New function, errors out if called.
3277 (msdos-initialize-window-system): New function.
3278 (msdos-create-frame-with-faces): Set the terminal's
3279 `terminal-initted' (sic!) parameter.
3280 (frame-creation-function-alist): Add msdos-create-frame-with-faces.
3281 (window-system-initialization-alist):
3282 Add msdos-initialize-window-system.
3283 (handle-args-function-alist): Use tty-handle-args for `pc'
3284 ``window system'' as well.
3285 (pc-win): Provide.
3286
3287 * term/tty-colors.el (tty-register-default-colors): Remove bogus
3288 code for using msdos-color-values.
3289
3290 * loadup.el [ms-dos]: Load term/pc-win.
3291
3292 2008-08-23 Dan Nicolaescu <dann@ics.uci.edu>
3293
3294 * vc-dir.el (vc-dir-prepare-status-buffer): Make sure we use a
3295 directory name.
3296
3297 2008-08-23 Nick Roberts <nickrob@snap.net.nz>
3298
3299 * progmodes/gud.el (gud-common-init): Use absolute file so that
3300 perldb works with tramp (sudo).
3301
3302 * term/x-win.el (x-gtk-map-stock): Don't let the tool bar destroy
3303 match data in process filters.
3304
3305 2008-08-23 Martin Rudalics <rudalics@gmx.at>
3306
3307 * dired.el (dired-buffer-stale-p): Do not revert buffer that
3308 can be written.
3309
3310 2008-08-23 Glenn Morris <rgm@gnu.org>
3311
3312 * dired-x.el (dired-guess-shell-alist-default): Add .mp3 and .ogg.
3313 (dired-guess-shell-alist-user): Doc fix. (Bug#417).
3314
3315 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
3316
3317 * subr.el (temp-buffer-show-hook): Doc fix.
3318
3319 2008-08-22 Michael Albinus <michael.albinus@gmx.de>
3320
3321 * net/tramp.el (tramp-remote-process-environment): Add "EMACS=t"
3322 and "INSIDE_EMACS=...". Reported by Tassilo Horn
3323 <tassilo@member.fsf.org>.
3324
3325 * net/trampver.el: Update release number.
3326
3327 * net/xesam.el (xesam-minor-mode): New minor mode.
3328 (xesam-highlight-buffer): Remove. Code moved to
3329 `xesam-minor-mode'.
3330 (xesam-refresh-entry): Use `xesam-minor-mode'.
3331
3332 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
3333
3334 * minibuffer.el (completion--try-word-completion):
3335 Disable partial-completion when considering the addition of a space
3336 or hyphen.
3337
3338 2008-08-21 John Paul Wallington <jpw@pobox.com>
3339
3340 * mail/rmail.el (rmail-insert-inbox-text): Ensure that the
3341 filename of `tofile' doesn't contain any colons on Windows,
3342 Cygwin, and MS-DOS systems.
3343
3344 2008-08-21 Daiki Ueno <ueno@unixuser.org>
3345
3346 * epg.el (epg-make-context, epg-context-set-passphrase-callback)
3347 (epg-context-set-progress-callback): Make sure the callback is a
3348 cons of a function and a handback. Update all callers.
3349
3350 2008-08-20 David Reitter <david.reitter@gmail.com>
3351
3352 * term/ns-win.el (ns-cursor-blink-rate, ns-cursor-blink-mode): Remove.
3353 Patch applied by Adrian Robert.
3354
3355 2008-08-20 Kevin Ryde <user42@zip.com.au>
3356
3357 * textmodes/nroff-mode.el (nroff-mode): Avoid auto-filling on
3358 directive lines.
3359
3360 2008-08-20 Michael Albinus <michael.albinus@gmx.de>
3361
3362 * net/xesam.el (xesam-highlight-string): Precise doc string.
3363 (xesam-highlight-buffer): New defun.
3364 (xesam-refresh-entry): Use it. Better check for sourceModified.
3365
3366 2008-08-19 Chong Yidong <cyd@stupidchicken.com>
3367
3368 * edmacro.el (edmacro-parse-keys): Catch events with spaces in
3369 their names.
3370
3371 2008-08-19 Kenichi Handa <handa@m17n.org>
3372
3373 * language/european.el ("Esperanto"): Change the preferred
3374 charsets to iso-8859-3.
3375
3376 * language/utf-8-lang.el ("UTF-8"): Add the preferred charsets.
3377
3378 * international/fontset.el (script-representative-chars):
3379 Delete the entry for symbol.
3380 (setup-default-fontset): For symbol characters, don't specify
3381 :script property.
3382
3383 2008-08-19 Chong Yidong <cyd@stupidchicken.com>
3384
3385 * minibuffer.el (completion-table-dynamic): Doc fix.
3386
3387 * cus-edit.el (custom-toggle-hide): Allow hiding only if widget is
3388 saved.
3389
3390 2008-08-18 Chong Yidong <cyd@stupidchicken.com>
3391
3392 * emulation/edt.el (edt-default-emulation-setup):
3393 Share global-buffers-menu-map with the emulated global map.
3394
3395 2008-08-18 Adrian Robert <Adrian.B.Robert@gmail.com>
3396
3397 * term/ns-win.el (global): Uncomment "put backspace
3398 ascii-character..." and friends, they are needed for tramp. (Bug#725)
3399
3400 2008-08-18 Kenichi Handa <handa@m17n.org>
3401
3402 * international/mule-diag.el (font-show-log): Add optional arg N
3403 to control the limit of font listing.
3404
3405 2008-08-18 Chong Yidong <cyd@stupidchicken.com>
3406
3407 * window.el (recenter-top-bottom): Determine top and bottom
3408 positions using scroll-margin instead of scroll-conservatively.
3409
3410 2008-08-17 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3411
3412 * proced.el (proced-send-signal): Use beginning-of-line.
3413
3414 2008-08-17 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3415
3416 * proced.el (proced-signal-list): Add POSIX 1003.1-2001 signals.
3417 (proced-mode-map): Add tooltips for menus. Use radio buttons for
3418 listing types.
3419 (proced-log-buffer): New variable.
3420 (proced-mark-all, proced-unmark-all, proced-do-mark-al): Operate on
3421 region if transient-mark-mode is turned on and the region is active.
3422 (proced-omit-processes): Rename from proced-hide-processes to
3423 avoid key clash with describe-mode (bound to h). Search for
3424 marked processes starting from point-min.
3425 (proced-header-space): Remove.
3426 (proced-send-signal): Handle errors. Operate on current process
3427 if no process is marked.
3428 (proced-why): New command.
3429 (proced-log, proced-log-summary): New functions.
3430 (proced-help): Use proced-why.
3431 * textmodes/bibtex.el (bibtex-entry-format): Mark as safe.
3432 (bibtex-autokey-year-title-separator): Fix docstring.
3433
3434 2008-08-17 Michael Albinus <michael.albinus@gmx.de>
3435
3436 * net/xesam.el (xesam-vendor, xesam-notify-function):
3437 New local variables.
3438 (xesam-mode): Extend docstring. Initialize `xesam-notify-function'.
3439 (xesam-refresh-entry): Use `xesam-notify-function' if set. Remove
3440 Debbugs specific code; it shall be enabled via `xesam-mode-hooks'.
3441 (xesam-new-search): Initialize `xesam-vendor'.
3442
3443 2008-08-15 Glenn Morris <rgm@gnu.org>
3444
3445 * eshell/esh-cmd.el (eshell-do-pipelines): Indicate the last command in
3446 a pipeline.
3447 * eshell/em-ls.el (eshell-ls-files): List one per line in a pipeline,
3448 unless at the end of the pipeline. (Bug#699).
3449
3450 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
3451
3452 * minibuffer.el (completion-boundaries): Doc fix.
3453 (display-completion-list): Only default base-size to zero if
3454 completing in the minibuffer.
3455
3456 * simple.el (completion-base-size): Doc fix.
3457 (choose-completion): Try reselecting completion-reference-buffer.
3458
3459 2008-08-14 Michael Albinus <michael.albinus@gmx.de>
3460
3461 * vc-dispatcher.el (vc-do-command): Let asynchronous processes run
3462 also for remote directories.
3463
3464 2008-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
3465
3466 * emacs-lisp/easymenu.el (easy-menu-add): Don't precompute keybindings
3467 since those precomputed values aren't used any more.
3468 (easy-menu-precalculate-equivalent-keybindings): Obsolete.
3469
3470 2008-08-14 Martin Rudalics <rudalics@gmx.at>
3471
3472 * help.el (with-help-window): Return last value in BODY.
3473
3474 2008-08-14 Michael Albinus <michael.albinus@gmx.de>
3475
3476 * net/xesam.el (xesam-refresh-entry): Use `save-excursion' in the
3477 notify function of the URL.
3478 (xesam-new-search): Encode special characters in the query string.
3479
3480 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
3481
3482 * term/ns-win.el (ns-parse-geometry): Rename from x-parse-geometry.
3483
3484 2008-08-13 Andreas Schwab <schwab@suse.de>
3485
3486 * net/tramp.el (tramp-handle-shell-command): Handle output going
3487 to current buffer like shell-command. Don't disable undo.
3488
3489 2008-08-13 Glenn Morris <rgm@gnu.org>
3490
3491 * eshell/esh-cmd.el (eshell/which): Handle the case where no
3492 description is found.
3493
3494 2008-08-12 Alan Mackenzie <acm@muc.de>
3495
3496 * progmodes/cc-defs.el (c-emacs-features):
3497 argumentative-bod-function: bind mark-ring to avoid accumulating a
3498 spurious mark.
3499
3500 2008-08-12 Chong Yidong <cyd@stupidchicken.com>
3501
3502 * simple.el (visual-line--saved-state): New var.
3503 (visual-line-mode): Save local values of variables, and restore
3504 them when visual-line-mode is disabled.
3505
3506 2008-08-12 NAKAGAWA Makoto <gha03025@nifty.ne.jp> (tiny change)
3507
3508 * net/ldap.el (ldap-search-internal): Tweak URL regexp.
3509
3510 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
3511
3512 * progmodes/cc-defs.el (c-emacs-features):
3513 Check beginning-of-defun-raw instead of beginning-of-defun, and avoid
3514 moving point during the test.
3515
3516 * emacs-lisp/lisp.el (beginning-of-defun): Doc fix.
3517
3518 2008-08-11 Glenn Morris <rgm@gnu.org>
3519
3520 * term/ns-win.el (x-parse-geometry): Doc fix.
3521
3522 * dired.el (x-popup-menu):
3523 * hi-lock.el (x-popup-menu):
3524 * mouse.el (font-face-attributes):
3525 * calendar/cal-menu.el (x-popup-menu):
3526 * calendar/calendar.el (x-popup-menu):
3527 * calendar/holidays.el (x-popup-menu):
3528 * progmodes/cperl-mode.el (x-popup-menu):
3529 * term/ns-win.el (dnd-open-file, tool-bar-mode, scroll-bar-scale)
3530 (x-open-connection):
3531 * term/w32-win.el (x-colors, x-handle-args, x-parse-geometry)
3532 (x-command-line-resources):
3533 * term/x-win.el (x-colors, x-parse-geometry, x-resource-name)
3534 (x-display-name, x-command-line-resources):
3535 Add declarations for builds without X.
3536
3537 2008-08-10 Glenn Morris <rgm@gnu.org>
3538
3539 * calendar/cal-bahai.el (holiday-bahai): Doc fix.
3540
3541 2008-08-10 Dan Nicolaescu <dann@ics.uci.edu>
3542
3543 * vc-bzr.el (vc-bzr-find-revision): Rename from
3544 vc-bzr-find-version, forgotten in the 2007-10-10 renaming.
3545
3546 2008-08-10 Michael Albinus <michael.albinus@gmx.de>
3547
3548 * net/xesam.el (xesam-search-engines): Add Debbugs hit fields.
3549 (xesam-refresh-entry): Add Debbugs handling. Insert a widget
3550 "DONE", when all hits are retrieved.
3551 (xesam-search): Autoload it.
3552
3553 2008-08-11 John Paul Wallington <jpw@pobox.com>
3554
3555 * ibuffer.el (ibuffer-buffer-file-name): Return nil rather than
3556 empty string when no filename.
3557 (define-ibuffer-column filename): Accommodate that change.
3558
3559 * ibuf-ext.el (ibuffer-define-filter filename): Use plain old
3560 `buffer-file-name' instead of `ibuffer-buffer-file-name'.
3561
3562 2008-08-10 Glenn Morris <rgm@gnu.org>
3563
3564 * Makefile.in (ELCFILES): Update.
3565
3566 2008-08-10 John Paul Wallington <jpw@pobox.com>
3567
3568 * pcvs.el (defun-cvs-mode): Add `doc-string' decl.
3569
3570 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
3571
3572 * battery.el (battery-echo-area-format, battery-status-function):
3573 Handle new Linux sysfs format for battery reporting.
3574 (battery-linux-sysfs): New function.
3575
3576 2008-08-07 Martin Rudalics <rudalics@gmx.at>
3577
3578 * add-log.el (change-log-search-tag-name)
3579 (change-log-goto-source): Fix behavior when point is not on tag.
3580
3581 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
3582
3583 * startup.el (command-line-ns-option-alist): Use ignore instead of
3584 ns-ignore-0-arg.
3585
3586 * term/ns-win.el (ns-ignore-0-arg, mouse-extend-region)
3587 (ns-win-suspend-error, ns-yes-or-no-p, colors): Drop.
3588 (ns-alternatives-map): New variable.
3589 (x-set-up-function-keys): Use it.
3590 (global): Comment out "put backspace ascii-character..." and friends.
3591 Move function-key-map into ns-alternatives-map. Don't call
3592 precompute-menubar-bindings. Don't set anything connected with
3593 browse-url.
3594 (after-make-frame-functions): Clarify comment why a hook is added.
3595
3596 2008-08-06 Joakim Verona <joakim@verona.se>
3597
3598 * thingatpt.el (thing-at-point-url-path-regexp): Allow parenthesis
3599 in url:s.
3600
3601 2008-08-06 Dan Nicolaescu <dann@ics.uci.edu>
3602
3603 * vc-svn.el (vc-svn-parse-status): Use when instead of if.
3604 Fix 2008-01-01 change: use a shy group to not affect subsequent
3605 match calls.
3606
3607 2008-08-06 Reto Zimmermann <reto@gnu.org>
3608
3609 * progmodes/vera-mode.el (vera-electric-tab):
3610 * progmodes/vhdl-mode.el (vhdl-electric-tab): Make TAB indent
3611 region when active.
3612
3613 2008-08-06 Kenichi Handa <handa@m17n.org>
3614
3615 * faces.el (face-valid-attribute-values): Fix handling the value
3616 of (font-family-list) and font-XXX-table.
3617
3618 2008-08-06 Dan Nicolaescu <dann@ics.uci.edu>
3619
3620 * proced.el (proced-menu): Bind the correct function to for toggling.
3621
3622 * vc-dir.el (vc-dir-mode): Fix typo.
3623
3624 2008-08-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3625
3626 * whitespace.el (whitespace-newline-mode)
3627 (global-whitespace-newline-mode, whitespace-mode)
3628 (global-whitespace-mode): Improve docstring.
3629
3630 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
3631
3632 * kmacro.el (kmacro-exec-ring-item): Add autoload.
3633
3634 * files.el (auto-save-visited-file-name): Move definition to fileio.c.
3635
3636 * cus-start.el (all): Handle auto-save-visited-file-name.
3637
3638 2008-08-05 Alex Shinn <alexshinn@gmail.com> (tiny change)
3639
3640 * files.el (hack-one-local-variable-eval-safep): Handle
3641 lisp-indent-function and scheme-indent-function in addition to the
3642 deprecated lisp-indent-hook.
3643
3644 2008-08-05 Michael Albinus <michael.albinus@gmx.de>
3645
3646 * net/xesam.el (top): Require `wid-edit' always.
3647 (xesam-mode-line, xesam-highlight): New deffaces.
3648 (xesam-objects): New local variable.
3649 (xesam-search-engines): Fix error in field list.
3650 (xesam-mode): Use `xesam-mode-line' instead of
3651 `font-lock-type-face'. Apply `xesam-mode' to a temp buffer, for
3652 proper initialization (why?).
3653 (xesam-highlight-string, xesam-get-hits)
3654 (xesam-kill-buffer-function): New defuns.
3655 (xesam-refresh-entry): Move code to `xesam-get-hits'. Check
3656 result of "hit.fields", it isn't a string only. Wrap an error of
3657 the strigi search engine ("xesam:size" is returned as string).
3658 Highlight search items.
3659 (xesam-refresh-search-buffer): Make logic of counters more simple.
3660 Prefetch next hits.
3661 (xesam-signal-handler): Use `xesam-mode-line' instead of
3662 `font-lock-type-face'.
3663 (xesam-new-search): Add `xesam-kill-buffer-function' to
3664 `kill-buffer-hook'.
3665
3666 2008-08-05 Teodor Zlatanov <tzz@lifelogs.com>
3667
3668 * add-log.el (change-log-next-error, change-log-mode): Add support
3669 for `next-error' to call `change-log-goto-source' on named files
3670 in a ChangeLog.
3671
3672 2008-08-05 Jay Belanger <jay.p.belanger@gmail.com>
3673
3674 * calc/calc.el (math-read-number): Handle all C-like languages
3675 properly.
3676
3677 2008-08-04 Vincent Belaïche <vincent.b.1@hotmail.fr>
3678
3679 * calc/calc.el (math-read-number): Handle C numbers beginning with
3680 0 correctly.
3681
3682 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
3683
3684 * term/ns-win.el ([ns-new-frame]): New global key.
3685
3686 2008-08-04 Juanma Barranquero <lekktu@gmail.com>
3687
3688 * international/mule-cmds.el (read-char-by-name):
3689 Check UCS names with `assoc-string' and case folding.
3690
3691 2008-08-04 Michael Albinus <michael.albinus@gmx.de>
3692
3693 * net/dbus.el (dbus-call-method-asynchronously)
3694 (dbus-method-return-internal, dbus-method-error-internal):
3695 Declare them with `declare-function'.
3696
3697 2008-08-04 Juanma Barranquero <lekktu@gmail.com>
3698
3699 * descr-text.el (describe-char-display): Fix last change:
3700 don't pass CHARSET to `encoded-string-description'.
3701
3702 2008-08-02 Alex Harsanyi <harsanyi@mac.com> (tiny change)
3703
3704 * vc.el (vc-next-action): Update list var correctly after delete.
3705
3706 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
3707
3708 * ido.el (ido-mode): Add toggle notification.
3709
3710 * cus-edit.el (custom-save-all): Avoid destroying symlink if
3711 already visiting the custom file.
3712
3713 * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
3714 pending output coming after the status change.
3715
3716 2008-08-02 Jason Rumney <jasonr@gnu.org>
3717
3718 * w32-fns.el (tis620-2533): Use as preferred registry for thai fonts.
3719
3720 2008-08-01 Kenichi Handa <handa@m17n.org>
3721
3722 * international/mule-cmds.el (encode-coding-char):
3723 New optional arg CHARSET.
3724
3725 * descr-text.el (describe-char-display): Call encode-coding-char
3726 with the arg CHARSET.
3727 (describe-char): Pay attention to the text-property `charset'.
3728
3729 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
3730
3731 * net/dbus.el (dbus-check-event, dbus-handle-event): Handle D-Bus
3732 error messages.
3733 (dbus-set-property): Call `dbus-introspect-get-property' instead
3734 of `dbus-get-property'.
3735
3736 * net/xesam.el (xesam-all-fields): Remove source and content
3737 identifiers.
3738 (xesam-dbus-unique-names): New defvar.
3739 (xesam-dbus-call-method): New defun. Replace all calls of
3740 `dbus-call-method' by `xesam-dbus-call-method'.
3741 (xesam-get-cached-property, xesam-set-cached-property):
3742 New defuns.
3743 (xesam-get-property, xesam-set-property, xesam-refresh-entry)
3744 (xesam-new-search, xesam-search): Apply `xesam-get-cached-property'.
3745 (xesam-search-engines): Make it an association list. Take changed
3746 layout into account in the corresponding function.
3747 (xesam-delete-search-engine): Remove check for consistency of
3748 `xesam-search-engines', not needed anymore.
3749 (xesam-mode): Show XML query string only in the debug case.
3750
3751 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
3752
3753 * files.el (read-file-modes): Fix typo in docstring.
3754
3755 2008-07-31 Chong Yidong <cyd@stupidchicken.com>
3756
3757 * Makefile.in: Avoid maintainer warning for autogenerated unicode
3758 files.
3759
3760 * apropos.el (apropos-symbol): Don't set button skip by default.
3761 (apropos-print): Set button skip iff searching for multiple types.
3762 (apropos-print-doc): Insert blank label button when searching for
3763 a single type.
3764
3765 * button.el (forward-button): Avoid infloop.
3766
3767 * minibuffer.el (read-file-name-completion-ignore-case):
3768 Add cygwin to the list.
3769
3770 2008-07-31 Sven Joachim <svenjoac@gmx.de>
3771
3772 * files.el (abbreviate-file-name): When replacing $HOME with ~,
3773 turn off case-fold-search.
3774
3775 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
3776
3777 * net/dbus.el (top): Don't register for "NameOwnerChanged".
3778 (dbus-message-type-invalid, dbus-message-type-method-call)
3779 (dbus-message-type-method-return, dbus-message-type-error)
3780 (dbus-message-type-signal): New defconst.
3781 (dbus-ignore-errors): Fix `edebug-form-spec' property.
3782 (dbus-return-values-table): New defvar.
3783 (dbus-call-method-non-blocking-handler, dbus-event-message-type):
3784 New defun.
3785 (dbus-check-event, dbus-handle-event, dbus-event-serial-number):
3786 Extend docstring. Adapt implementation according to new
3787 `dbus-event' layout.
3788 (dbus-event-service-name, dbus-event-path-name)
3789 (dbus-event-interface-name, dbus-event-member-name):
3790 Adapt implementation according to new `dbus-event' layout.
3791 (dbus-set-property): Correct `dbus-introspect-get-attribute' call.
3792
3793 * net/xesam.el (xesam-type, xesam-query, xesam-xml-string): New defvar.
3794 (xesam-mode): Rework implementation.
3795 (xesam-new-search): Additional parameter TYPE.
3796 (xesam-search): Adapt call of `xesam-new-search'.
3797
3798 2008-07-31 Juri Linkov <juri@jurta.org>
3799
3800 * dired-aux.el (dired-do-chmod): Set default value to the original
3801 mode string using absolute notation like u=rwx,g=rx,o=rx.
3802 Use it as a new arg `default' of `dired-mark-read-string'.
3803 (dired-mark-read-string): Add new optional arg `default'.
3804
3805 * files.el (read-file-modes): Set default value to the original
3806 mode string using absolute notation like u=rwx,g=rx,o=rx.
3807 Use it as the `default' arg of `read-string'.
3808
3809 * filesets.el (filesets-cmd-isearch-getargs): Check if the
3810 variable `files' is bound to avoid warnings.
3811
3812 * isearch.el (isearch-forward-regexp, isearch-forward-word)
3813 (isearch-backward, isearch-backward-regexp): Doc fix - make a link
3814 to the command `isearch-forward' instead of displaying "See C-s".
3815 (isearch-highlight-regexp): Remove arguments `regexp' and `face'
3816 with their interactive specifications. Move reading the face name to
3817 the main body after calls to isearch-done and isearch-clean-overlays.
3818
3819 * mb-depth.el: Unify all names under one common name prefix
3820 `minibuffer-depth-'.
3821 (minibuffer-depth-indicator-function): Rename from
3822 `minibuf-depth-indicator-function'.
3823 (minibuffer-depth-overlay): Rename from
3824 `minibuf-depth-overlay'.
3825 (minibuffer-depth-setup): Rename from
3826 `minibuf-depth-setup-minibuffer'.
3827 (minibuffer-depth-indicate-mode): Rename from
3828 `minibuffer-indicate-depth-mode'.
3829
3830 2008-07-31 Juri Linkov <juri@jurta.org>
3831
3832 * dired-aux.el (dired-isearch-filenames-toggle): New command.
3833 (dired-isearch-filenames-setup): Bind "\M-sf" to
3834 dired-isearch-filenames-toggle in isearch-mode-map.
3835 (dired-isearch-filenames-end): Bind "\M-sf" to nil
3836 in isearch-mode-map.
3837
3838 * isearch.el (isearch-edit-string-set-word): New command.
3839 (minibuffer-local-isearch-map): Bind "\C-w" to
3840 isearch-edit-string-set-word.
3841 (isearch-new-word): Temporary internal variable.
3842 (isearch-edit-string): Remove special case of reading the
3843 first character and checking it for C-w.
3844
3845 * simple.el (read-shell-command, shell-command):
3846 Move code that uses minibuffer-with-setup-hook to set
3847 minibuffer-default-add-function to minibuffer-default-add-shell-commands
3848 from the interactive spec of `shell-command' to `read-shell-command'.
3849
3850 * international/mule-cmds.el (read-char-by-name):
3851 Accept hash notation. Doc fix.
3852 (ucs-insert): Doc fix. Convert to number only when `arg' is
3853 a string. Use separate error message when `arg' is not an integer.
3854 Bind `ucs-insert' to `C-x 8 RET'.
3855
3856 2008-07-31 Joachim Nilsson <joachim.nilsson@member.fsf.org> (tiny change)
3857
3858 * progmodes/cc-styles.el (c-style-alist): For the Ellemtel style,
3859 move the (arglist-cont-nonempty) from c-offsets-alist to
3860 c-hanging-braces-alist like other styles already have.
3861
3862 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
3863
3864 * textmodes/texinfmt.el:
3865 * nxml/nxml-enc.el:
3866 * mail/feedmail.el:
3867 * international/mule.el:
3868 * international/latexenc.el:
3869 * emulation/viper-util.el:
3870 * emulation/viper-init.el:
3871 * emulation/viper-ex.el:
3872 * emacs-lisp/bytecomp.el:
3873 * version.el:
3874 * subr.el:
3875 * startup.el:
3876 * sort.el:
3877 * shadowfile.el:
3878 * recentf.el:
3879 * printing.el:
3880 * paths.el:
3881 * minibuffer.el:
3882 * ls-lisp.el:
3883 * loadup.el:
3884 * hippie-exp.el:
3885 * finder.el:
3886 * files.el:
3887 * ediff-util.el:
3888 * ediff-ptch.el:
3889 * ediff-init.el:
3890 * ediff-diff.el:
3891 * dired.el:
3892 * dired-aux.el:
3893 * cus-edit.el:
3894 * bindings.el:
3895 * arc-mode.el:
3896 * add-log.el: Remove VMS support.
3897 * obsolete/vmsproc.el:
3898 * obsolete/vms-pmail.el:
3899 * obsolete/vms-patch.el: Remove file.
3900
3901 2008-07-31 Alan Mackenzie <acm@muc.de>
3902
3903 * progmodes/cc-mode.el (c-before-hack-hook): New function
3904 (Top Level): Install c-before-hack-hook on
3905 before-hack-local-variables-hook, rather than
3906 c-postprocess-file-styles on hack-local-variables-hook.
3907
3908 2008-07-31 Chong Yidong <cyd@stupidchicken.com>
3909
3910 * files.el (normal-mode): Move call to hack-project-variables into
3911 hack-local-variables.
3912 (file-local-variables-alist, before-hack-local-variables-hook):
3913 New vars.
3914 (ignored-local-variables): Add file-local-variables-alist.
3915 (hack-local-variables-filter): Renamed from
3916 hack-local-variables-apply. Add the result to
3917 file-local-variables-alist, without applying them.
3918 (hack-local-variables): Set file-local-variables-alist to nil.
3919 Call hack-project-variables and before-hack-local-variables-hook.
3920 Apply variables here, instead of hack-local-variables-apply.
3921 Based on a patch by Alan Mackenzie.
3922
3923 2008-07-30 Thien-Thi Nguyen <ttn@gnuvola.org>
3924
3925 * info-look.el (autoconf-mode :doc-spec): For
3926 "(autoconf)M4 Macro Index", if the item already
3927 begins with "AS_", don't prefix that string again.
3928
3929 2008-07-30 Juri Linkov <juri@jurta.org>
3930
3931 * info.el (info, Info-mode): Doc fix.
3932
3933 * isearch.el (isearch-mode-map): Bind `M-s r' to
3934 `isearch-toggle-regexp' and `M-s w' to `isearch-toggle-word'.
3935 (search-map): Bind `M-s w' to `isearch-forward-word' globally
3936 in the global map `search-map'.
3937 (isearch-forward): Doc fix.
3938 (isearch-forward-word, isearch-toggle-case-fold): New commands.
3939
3940 * simple.el (quoted-insert): Comment out code that treats
3941 0240-0377 specially.
3942
3943 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
3944
3945 * cus-start.el: Add customization info for
3946 read-buffer-completion-ignore-case.
3947
3948 2008-07-30 Sam Steingold <sds@gnu.org>
3949
3950 * vc-dir.el (vc-dir): Call file-truename on the dir argument.
3951
3952 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
3953
3954 * vc-dir.el (vc-dir-menu-map, vc-at-event): Fix docstring.
3955 (vc-dir-mode): Improve docstring.
3956
3957 2008-07-30 Juri Linkov <juri@jurta.org>
3958
3959 * dired-aux.el (dired-isearch-filenames-setup): Add autoload cookie
3960 for the sake of isearch-mode-hook in dired-mode in dired.el.
3961
3962 2008-07-19 Markus Triska <markus.triska@gmx.at>
3963
3964 * image-mode.el (image-mode): Set image-mode-text-map when image
3965 cannot be displayed.
3966
3967 2008-07-30 Stephen Leake <stephen_leake@stephe-leake.org>
3968
3969 * progmodes/ada-prj.el (ada-prj-initialize-values): Fix use of deleted
3970 ada-xref-set-default-prj-values.
3971 (ada-prj-display-page): Ditto.
3972
3973 * progmodes/ada-xref.el (ada-gnatstub-opts): Fix doc string.
3974 (ada-make-filename-from-adaname): Fix free variable.
3975
3976 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
3977
3978 * vc-git.el (vc-git-status-printer): Synchronize with the default.
3979
3980 2008-07-30 Michael McNamara <mac@mail.brushroad.com>
3981
3982 * progmodes/verilog-mode.el (verilog-do-indent): Remove special indent
3983 for declarations inside a parenthetical list. The code is ill-advised,
3984 and doesn't work given user defined types.
3985 (verilog-set-auto-endcomments): Enhance function automatic
3986 endcomment to support functions that return user defined types.
3987 (verilog-mode): Add code to tell which-function-mode minor mode
3988 that Verilog supports this feature.
3989 (verilog-beg-block-re-ordered, verilog-indent-re)
3990 (verilog-forward-sexp, verilog-forward-wa, verilog-calc-1)
3991 (verilog-leap-to-head): Support the new virtual and/or protected
3992 tasks, as well as extern declarations of tasks for indenting and
3993 for forward/backward expression.
3994
3995 2008-07-30 Wilson Snyder <wsnyder@wsnyder.org>
3996
3997 * progmodes/verilog-mode.el (verilog-read-decls): Allow AUTORESET
3998 to work with SV 'logic' signals. Suggested by Julian Gorfajn.
3999 (verilog-auto-inst-column): Make verilog-auto-inst-column customizable.
4000 (verilog-string-replace-matches): Avoid recursion with small
4001 replacements.
4002 (verilog-auto-inst-param-value, verilog-mode-version)
4003 (verilog-mode-version-date, verilog-read-inst-param-value)
4004 (verilog-auto-inst, verilog-auto-inst-param)
4005 (verilog-auto-inst-port, verilog-simplify-range-expression): Add
4006 verilog-auto-inst-param-value option for AUTOINST. Suggested by
4007 David Rogoff. This allows parameters to be replaced with their
4008 values, on the expansion of an AUTOINST with Verilog 2001 style
4009 parameter settings.
4010
4011 2008-07-30 David Lord <david.lord@phonecoop.coop> (tiny change)
4012
4013 * calendar/timeclock.el (timeclock-day-projects): Change a `cdr'
4014 to `cddr'.
4015
4016 2008-07-29 Chong Yidong <cyd@stupidchicken.com>
4017
4018 * Makefile.in (ELCFILES): Add mairix.elc.
4019
4020 2008-07-29 David Engster <deng@randomsample.de>
4021
4022 * net/mairix.el: New file.
4023
4024 2008-07-29 Juri Linkov <juri@jurta.org>
4025
4026 * cus-edit.el (custom-face-tag): Inherit from custom-variable-tag
4027 instead of variable-pitch with bold and 1.2 height.
4028
4029 * dired-aux.el (dired-do-async-shell-command): New command.
4030
4031 * dired.el (dired-mode-map): Rebind `dired-flag-garbage-files'
4032 from `&' to `%&'. Bind `&' to `dired-do-async-shell-command'.
4033
4034 2008-07-29 Juri Linkov <juri@jurta.org>
4035
4036 * international/mule-cmds.el (ucs-names): New internal variable.
4037 (ucs-names): New function.
4038 (ucs-completions): New lazy completion variable.
4039 (read-char-by-name): New function.
4040 (ucs-insert): Replace interactive spec letter "s" with the call to
4041 `read-char-by-name'.
4042
4043 * replace.el (read-regexp): Add second arg `default'. Doc fix.
4044
4045 * replace.el (occur-read-primary-args):
4046 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
4047 (hi-lock-face-phrase-buffer): Use `(car regexp-history)' as the
4048 second arg of `read-regexp'.
4049
4050 * dired-aux.el (dired-isearch-filenames): New user option.
4051 (dired-isearch-orig-success-function): New internal variable.
4052 (dired-isearch-filenames-setup, dired-isearch-filenames-end)
4053 (dired-isearch-success-function): New functions.
4054 (dired-isearch-filenames, dired-isearch-filenames-regexp):
4055 New commands.
4056
4057 * dired.el (dired-insert-set-properties): Add new text property
4058 `dired-filename' to put on file names.
4059 (dired-mode-map): Bind `M-s f C-s' to `dired-isearch-filenames'
4060 and `M-s f M-C-s' to `dired-isearch-filenames-regexp'.
4061 Add menu items.
4062 (dired-mode): Add hook `dired-isearch-filenames-setup' to
4063 buffer-local `isearch-mode-hook'.
4064
4065 2008-07-29 Juanma Barranquero <lekktu@gmail.com>
4066
4067 * progmodes/ada-mode.el (ada-batch-reformat): Doc fix.
4068 (ada-create-case-exception): Fix typo in docstring.
4069 (ada-no-auto-case): Return nil, not the docstring.
4070 (ada-indent-current): Reflow docstring.
4071
4072 * progmodes/ada-prj.el (ada-prj-edit, ada-prj-initialize-values)
4073 (ada-prj-save-specific-option, ada-prj-field): Fix typos in docstrings.
4074 (ada-prj-load-from-file): Reflow docstring.
4075 (ada-prj-display-page): Fix typo in widget.
4076
4077 * progmodes/ada-stmt.el (ada-case, ada-package-body, ada-private):
4078 Fix typos in docstrings.
4079
4080 * progmodes/ada-xref.el (ada-find-executable, ada-gnat-parse-gpr)
4081 (ada-compile-current, ada-check-current, ada-run-application)
4082 (ada-get-ali-file-name): Fix typos in docstrings.
4083 (ada-xref-confirm-compile, ada-find-references)
4084 (ada-find-local-references, ada-find-any-references): Doc fixes.
4085 (ada-get-all-references): Fix typo in error message.
4086 (ada-xref-current-project): Use `let', not `let*'.
4087 (ada-do-file-completion, ada-xref-change-buffer): Reflow docstring.
4088
4089 2008-07-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4090
4091 * whitespace.el (whitespace-newline): Change initialization to have a
4092 low contrast relative to the background color. Suggested by David
4093 Reitter <david.reitter@gmail.com>.
4094
4095 2008-07-28 Juri Linkov <juri@jurta.org>
4096
4097 * dired-aux.el (dired-do-isearch, dired-do-isearch-regexp):
4098 New functions.
4099
4100 * dired.el (dired-mode-map): Bind dired-do-isearch to `M-s a C-s'
4101 and dired-do-isearch-regexp to `M-s a M-C-s'. Add menu items.
4102
4103 2008-07-28 Seiji Zenitani <zenitani@mac.com>
4104
4105 * help-fns.el (help-C-file-name): Add .m (Obj-C code) for Cocoa port.
4106 * emacs-lisp/find-func.el (find-function-search-for-symbol): Likewise.
4107
4108 2008-07-28 Stephen Leake <stephen_leake@stephe-leake.org>
4109
4110 * progmodes/ada-mode.el (ada-mode): Clean up XEmacs handling.
4111 Add support for add-log.
4112 (ada-end-stmt-re): Fix bug - allow comment after 'when'.
4113
4114 * progmodes/ada-prj.el: Delete 'main_unit' project variable.
4115 (ada-prj-save): Prompt for file name if not given.
4116 (ada-prj-display-page): Display casing exceptions.
4117
4118 * progmodes/ada-xref.el: Add support for GNAT project files as Emacs
4119 Ada mode project files. Delete 'main_unit' project variable;
4120 only need 'main'. Simplify handling of default project values.
4121 Use cross-prefix consistently.
4122 (ada-find-executable): Throw error if not found.
4123 (ada-initialize-runtime-library): Improve error handling when
4124 gnatls not found.
4125 (ada-gnat-parse-gpr): New.
4126 (ada-treat-cmd-string): Allow process environment variables.
4127 (ada-xref-set-default-prj-values): Delete; replace with
4128 ada-default-prj-properties.
4129 (ada-parse-prj-file): Handle GNAT project files.
4130 (ada-parse-prj-file-1): New, factored out of ada-parse-prj-file.
4131 (ada-select-prj-file): New.
4132 (ada-get-absolute-dir-list): Allow project and environment variables.
4133
4134 2008-07-27 Michael Albinus <michael.albinus@gmx.de>
4135
4136 Sync with Tramp 2.1.14.
4137
4138 * net/tramp.el (tramp-perl-directory-files-and-attributes)
4139 (tramp-get-device): Make device number a cons cell.
4140 (tramp-convert-file-attributes): Make inode a cons cell.
4141
4142 * net/trampver.el: Update release number.
4143
4144 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
4145
4146 * faces.el (face-set-after-frame-default): Treat 'ns as all other
4147 window systems.
4148
4149 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
4150
4151 * term/ns-win.el (do-applescript): New alias in carbon-compat section.
4152
4153 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
4154
4155 Remove support for Mac Carbon.
4156 * term/mac-win.el: Remove file
4157 * international/mule-cmds.el:
4158 * version.el:
4159 * startup.el:
4160 * simple.el:
4161 * mwheel.el:
4162 * mouse.el:
4163 * loadup.el:
4164 * isearch.el:
4165 * info.el:
4166 * frame.el:
4167 * faces.el:
4168 * disp-table.el:
4169 * cus-start.el:
4170 * cus-face.el:
4171 * cus-edit.el:
4172 * Makefile.in: Remove code for Carbon.
4173
4174 2008-07-26 Adrian Robert <Adrian.B.Robert@gmail.com>
4175
4176 * term/ns-win.el (ns-extended-platform-support-mode): Get rid of
4177 bindings for functions deleted by Dan N. 2008-07-21. Set
4178 where-is-preferred-modifier. Add show-manual option to Help menu.
4179
4180 2008-07-26 Michael Albinus <michael.albinus@gmx.de>
4181
4182 * net/tramp.el (tramp-handle-start-file-process):
4183 Set query-on-exit flag. Kill temporary buffer.
4184 (tramp-process-sentinel): Remove defun.
4185 (tramp-do-copy-or-rename-file-out-of-band)
4186 (tramp-maybe-open-connection): Don't call it.
4187
4188 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Don't call
4189 `tramp-process-sentinel'.
4190
4191 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Don't call
4192 `tramp-process-sentinel'.
4193
4194 * net/xesam.el (xesam-from): Remove defvar.
4195 (xesam-mode): Derive from `special-mode'. Extend `xesam-mode-map'
4196 and `mode-line-position'.
4197 (xesam-refresh-entry): Remove argument `hit-number'. Add debug
4198 information to the widgets. Don't set `mode-line-position'.
4199 (xesam-refresh-search-buffer): Correct hit number computing.
4200 Don't set `mode-line-position'.
4201 (xesam-new-search): Add debug information to the mode line.
4202
4203 2008-07-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4204
4205 * diff-mode.el (diff-show-trailing-blanks): Renamed to
4206 diff-show-trailing-whitespaces.
4207
4208 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
4209
4210 * textmodes/tex-mode.el (tex-compilation-parse-errors): Check for
4211 invalid filename strings when parsing tex errors (bug#376).
4212
4213 2008-07-25 Dan Nicolaescu <dann@ics.uci.edu>
4214
4215 * menu-bar.el (menu-bar-file-menu): Fix typo.
4216
4217 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
4218
4219 * play/solitaire.el (solitaire-mode-map): Define within defvar.
4220 (solitaire-mode): Define with `define-derived-mode'.
4221 (solitaire-insert-board, solitaire-right, solitaire-left, solitaire-up)
4222 (solitaire-down): Use "?\s" instead of "?\ "; use `when'.
4223 (solitaire-undo, solitaire-check): Use `when'.
4224 (solitaire-solve): Err out if the solitaire is already in progress.
4225 Use `when'.
4226
4227 * descr-text.el (describe-char): Don't overwrite local variable char
4228 when describing characters with display-table entries. Display font
4229 backend when describing composed characters. Simplify: use `let'
4230 instead of `let*', and `or x y' instead of `if x x y'.
4231
4232 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
4233
4234 * image-mode.el (image-minor-mode): Set up winprops.
4235
4236 2008-07-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4237
4238 * diff-mode.el (diff-show-trailing-blanks): New fun.
4239 Show trailing blanks in modified lines for diff-mode.
4240
4241 2008-07-24 Michael Albinus <michael.albinus@gmx.de>
4242
4243 * Makefile.in (ELCFILES): Add net/xesam.el.
4244
4245 * net/tramp.el (tramp-handle-start-file-process): Make NAME a unique
4246 process name. Reported by Markus Triska <markus.triska@gmx.at>.
4247
4248 * net/xesam.el: New file.
4249
4250 2008-07-24 Sven Joachim <svenjoac@gmx.de>
4251
4252 * dired-aux.el (dired-copy-file-recursive): Avoid calling
4253 set-file-modes when creating target directories.
4254
4255 2008-07-24 Juanma Barranquero <lekktu@gmail.com>
4256
4257 * play/solitaire.el (solitaire-mode): Fix typo in docstring.
4258 Set `show-trailing-whitespace' to nil.
4259 (solitaire, solitaire-mode-map, solitaire-mode-hook, solitaire-solve):
4260 Fix typos in docstrings.
4261
4262 2008-07-24 Chong Yidong <cyd@stupidchicken.com>
4263
4264 * textmodes/enriched.el (enriched-mode-map): Bind C-a and C-j via
4265 key remapping, not directly.
4266
4267 2008-07-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4268
4269 * whitespace.el: New version 11.2.
4270 (whitespace-newline-mode, global-whitespace-newline-mode): New newline
4271 minor mode visualization.
4272
4273 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
4274
4275 * progmodes/cc-mode.el (auto-mode-alist): Add .i and .ii files.
4276
4277 * Makefile.in (ELCFILES): Add term/common-win.elc.
4278
4279 * vc-dir.el (vc-dir-search, vc-dir-isearch)
4280 (vc-dir-isearch-regexp): New functions.
4281 (vc-dir-mode-map, vc-dir-menu-map): Bind them.
4282
4283 2008-07-23 Juri Linkov <juri@jurta.org>
4284
4285 * isearch-multi.el: Remove file to avoid dos file name clashes
4286 with isearch-x.el. Move most content to misearch.el.
4287
4288 * misearch.el: New file with most content from isearch-multi.el.
4289 Rename `isearch-buffers' name prefixes to `multi-isearch'.
4290 Remove `isearch-buffers-minor-mode'. Add new function
4291 `multi-isearch-setup' to `isearch-mode-hook'. New top-level
4292 commands `multi-isearch-buffers', `multi-isearch-buffers-regexp',
4293 `multi-isearch-files', `multi-isearch-files-regexp'.
4294
4295 * Makefile.in (ELCFILES): Remove isearch-multi.elc. Add misearch.elc.
4296
4297 * isearch.el (isearch-message-prefix): Display "Multi" when
4298 `multi-isearch-next-buffer-current-function' is non-nil.
4299 (isearch-search-string): Replace `isearch-buffers-next-buffer-function'
4300 with `multi-isearch-next-buffer-current-function', and
4301 `isearch-buffers-current-buffer' with `multi-isearch-current-buffer'.
4302
4303 * add-log.el (change-log-mode): Set `change-log-next-buffer' to
4304 `multi-isearch-next-buffer-function' instead of
4305 `isearch-buffers-next-buffer-function'. Remove call to
4306 `isearch-buffers-minor-mode'.
4307
4308 * buff-menu.el (Buffer-menu-marked-buffers)
4309 (Buffer-menu-isearch-buffers)
4310 (Buffer-menu-isearch-buffers-regexp): New functions.
4311 (Buffer-menu-mode-map): Bind "M-s a C-s" to
4312 `Buffer-menu-isearch-buffers', and "M-s a M-C-s" to
4313 `Buffer-menu-isearch-buffers-regexp'.
4314 (Buffer-menu-mode): Document new commands in docstring.
4315 (list-buffers-noselect): Add one space after Info file name
4316 according to the Info address convention.
4317
4318 * ibuf-ext.el (ibuffer-do-isearch, ibuffer-do-isearch-regexp):
4319 New functions.
4320
4321 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-s" to
4322 `ibuffer-do-isearch' and "M-s a M-C-s" to `ibuffer-do-isearch-regexp'.
4323 (ibuffer-mode): Document new commands in docstring.
4324
4325 * filesets.el (filesets-commands): Add commands for "Isearch" and
4326 "Isearch (regexp)". Replace `query-replace' and `query-replace-regexp'
4327 with `perform-replace' using `filesets-cmd-query-replace-regexp-getargs'.
4328 (filesets-run-cmd): Call `fn' only once if it is `multi-isearch-files'
4329 or `multi-isearch-files-regexp'.
4330 (filesets-cmd-query-replace-getargs): Call standard function
4331 `query-replace-read-args' to read `query-replace' arguments.
4332 Add `multi-query-replace-map'.
4333 (filesets-cmd-query-replace-regexp-getargs)
4334 (filesets-cmd-isearch-getargs): New functions.
4335
4336 2008-07-23 Chong Yidong <cyd@stupidchicken.com>
4337
4338 * international/mule.el (recode-region): Deactivate mark at the end.
4339
4340 2008-07-23 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
4341
4342 * progmodes/flymake.el (flymake-errline, flymake-warnline):
4343 Use more suitable colors on dark displays.
4344
4345 2008-07-23 Michael Albinus <michael.albinus@gmx.de>
4346
4347 * net/tramp.el (tramp-methods): Add "-q" for "scp", "scp1",
4348 "scp2", "ssh", "ssh1", "ssh2", "scpc", "scpx", "sshx".
4349 (tramp-temp-buffer-name): New defconst.
4350 (tramp-handle-start-file-process): Use it. Apply "exec", for the
4351 command. No trailing prompt.
4352 (tramp-process-sentinel): Remove temporary buffer, if existing.
4353 Don't handle trailing prompt.
4354 (tramp-open-connection-setup-interactive-shell):
4355 Use `tramp-temp-buffer-name'.
4356
4357 2008-07-23 Chong Yidong <cyd@stupidchicken.com>
4358
4359 * shell.el (shell-dynamic-complete-functions):
4360 Use comint-dynamic-complete-filename as well (bug#361).
4361
4362 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
4363
4364 * term/ns-win.el:
4365 * version.el (emacs-version):
4366 * loadup.el:
4367 * frame.el (make-frame-on-display): Check for ns instead of
4368 ns-windowing.
4369
4370 * dired.el (dired-mode-map): Show the key binding for wdired.
4371
4372 * menu-bar.el (menu-bar-file-menu): Show the key binding for
4373 exiting Emacs.
4374
4375 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
4376
4377 * term/ns-win.el (x-list-fonts): Drop alias.
4378
4379 2008-07-23 Juri Linkov <juri@jurta.org>
4380
4381 * replace.el (multi-query-replace-map): New variable.
4382 (perform-replace): Add processing of new multi-buffer keys bound
4383 to `automatic-all' and `exit-current'. Set `query-flag' to nil
4384 if last input char was `automatic-all'. Set new local variable
4385 `multi-buffer' to t when one of new two keys were typed. Return
4386 non-nil value of `multi-buffer' that tells to calling functions
4387 to continue replacement on the next file.
4388
4389 * progmodes/etags.el (tags-query-replace): Set arg `map' of
4390 `perform-replace' to `multi-query-replace-map'.
4391
4392 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
4393
4394 * diff-mode.el (diff-auto-refine-mode): Remove lighter, since it's
4395 otherwise displayed in every buffer.
4396
4397 * vc-arch.el (vc-arch-trim-make-sentinel): Use a closure.
4398 (vc-arch-trim-one-revlib): Delete temp directories as well.
4399
4400 2008-07-22 Stephen Eglen <stephen@gnu.org>
4401
4402 * iswitchb.el (iswitchb-delim): New variable. Suggested by Ted Roden.
4403
4404 2008-07-22 Sven Joachim <svenjoac@gmx.de>
4405
4406 * vc-dir.el (vc-dir-recompute-file-state): Fix mismatched parenthesis.
4407
4408 2008-07-22 Miles Bader <miles@gnu.org>
4409
4410 * progmodes/sh-script.el (sh-newline-and-indent): Remove.
4411 (sh-mode-map): Remove remapping of newline-and-indent.
4412
4413 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
4414
4415 * vc.el (Todo): Update.
4416
4417 * vc-hooks.el: Remove obsolete comment.
4418
4419 * vc-git.el (vc-git-status-printer): Update the directory display
4420 to match the default.
4421
4422 * vc-dir.el (vc-dir-recompute-file-state): Add workaround for CVS.
4423
4424 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
4425
4426 * menu-bar.el (menu-bar-line-wrapping-menu): Use Visual Line mode
4427 for "word wrap" command.
4428
4429 * simple.el (visual-line-mode): Disable truncate-partial-width-windows.
4430
4431 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
4432
4433 * term/ns-win.el: Rename ns- functions/variables to the
4434 corresponding x- versions.
4435 (x-select-text, x-cut-buffer-or-selection-value)
4436 (x-disown-selection-internal, x-get-selection-internal)
4437 (x-own-selection-internal, x-defined-colors, xw-defined-colors)
4438 (x-display-mm-width, x-display-mm-height)
4439 (x-display-backing-store, x-display-save-under)
4440 (x-display-visual-class, x-display-screens, x-focus-frame): Remove
4441 defaliases.
4442
4443 * frame.el (ns-display-name): Remove declaration.
4444 (make-frame-on-display): Use x-display-name instead
4445 ns-display-name. Use unless.
4446
4447 * startup.el (command-line-1): Fix indentation.
4448
4449 * term/ns-win.el (up-one, down-one, left-one, right-one): Remove,
4450 checked in inadvertently.
4451
4452 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
4453
4454 * term/ns-win.el: Standardize references to "Nextstep" in
4455 comments, messages, and docstrings.
4456 (ns-handle-args, x-parse-geometry)
4457 (ns-extended-platform-support-mode, x-setup-function-keys)
4458 (ns-select-overlay, ns-unselect-line, ns-yes-or-no-p)
4459 (ns-set-pasteboard, ns-scroll-bar-move, ns-defined-colors)
4460 (ns-initialized, ns-initialize-window-system): Doc fixes.
4461
4462 2008-07-21 Thien-Thi Nguyen <ttn@gnuvola.org>
4463
4464 * diff-mode.el (diff-auto-refine): Delete defcustom.
4465 (diff-auto-refine-mode): New func/var via define-minor-mode.
4466 Update var ref to use diff-auto-refine-mode.
4467 * smerge-mode.el (diff-mode): Require when compiling.
4468 (smerge-auto-refine): Delete defcustom.
4469 Update smerge-auto-refine ref to use diff-auto-refine-mode.
4470
4471 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
4472
4473 * simple.el (visual-line): New custom group.
4474 (visual-line-fringe-indicators): New var.
4475 (visual-line-mode): Set fringe-indicator-alist based on
4476 visual-line-fringe-indicators. Add lighter.
4477
4478 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
4479
4480 * term/x-win.el (x-handle-switch, x-handle-numeric-switch)
4481 (x-handle-initial-switch, x-handle-iconic, x-handle-xrm-switch)
4482 (x-handle-geometry, x-handle-name-switch, x-display-name)
4483 (x-handle-display, x-handle-args, x-colors): Move ...
4484 * term/common-win.el: ... here. New file.
4485 * term/w32-win.el (x-handle-switch, x-handle-numeric-switch)
4486 (x-handle-initial-switch, x-handle-iconic, x-handle-xrm-switch)
4487 (x-handle-geometry, x-handle-name-switch, x-display-name)
4488 (x-handle-display, x-handle-args, x-colors): Remove.
4489 * loadup.el: Load term/common-win before term/x-win and term/w32-win.
4490
4491 2008-07-19 Juri Linkov <juri@jurta.org>
4492
4493 * startup.el (fancy-startup-text): Move the line "To quit
4494 a partially entered command, type Control-g" a few lines below
4495 to be after the line "To start". Add text "at gnu.org" to
4496 "Overview of Emacs features".
4497
4498 * dired.el (dired-mode-map): Fix menu text of
4499 image-dired-display-thumbs.
4500
4501 * image-dired.el (image-dired-cmd-create-thumbnail-options)
4502 (image-dired-cmd-create-temp-image-options)
4503 (image-dired-cmd-create-standard-thumbnail-command): Add > to the
4504 ImageMagick command line to change the dimensions of the image
4505 only if its width or height exceeds the geometry specification.
4506
4507 * longlines.el: Add coding cookie utf-8 for the pilcrow sign.
4508
4509 * proced.el (proced-mode, proced): Add \\<proced-mode-map>
4510 to docstrings.
4511
4512 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
4513
4514 * term/ns-win.el (ns-ps-print-menu-map): Fix typo pointed out by
4515 Vinicius Jose Latorre.
4516
4517 2008-07-19 Glenn Morris <rgm@gnu.org>
4518
4519 * term/ns-win.el (ns-make-command-string): Use mapconcat.
4520 (ns-save-preferences): Fix typo in previous change. (Bug#573)
4521
4522 2008-07-18 Michael Albinus <michael.albinus@gmx.de>
4523
4524 * net/dbus.el (dbus-interface-properties): New defconst.
4525 (dbus-introspect): Update docstring.
4526 (dbus-introspect-xml, dbus-introspect-get-attribute)
4527 (dbus-introspect-get-node-names, dbus-introspect-get-all-nodes)
4528 (dbus-introspect-get-interface-names)
4529 (dbus-introspect-get-interface, dbus-introspect-get-method-names)
4530 (dbus-introspect-get-method, dbus-introspect-get-signal-names)
4531 (dbus-introspect-get-signal, dbus-introspect-get-property-names)
4532 (dbus-introspect-get-property)
4533 (dbus-introspect-get-annotation-names)
4534 (dbus-introspect-get-annotation)
4535 (dbus-introspect-get-argument-names, dbus-introspect-get-argument)
4536 (dbus-introspect-get-signature, dbus-get-property)
4537 (dbus-set-property, dbus-get-all-properties): New defuns.
4538
4539 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
4540
4541 * Makefile.in (ELCFILES): Remove ns-carbon-compat.elc and
4542 ns-grabenv.elc.
4543
4544 * ns-carbon-compat.el: File removed.
4545
4546 * ns-grabenv.el: File removed.
4547
4548 * term/ns-win.el: Contents of ns-carbon-compat.el and
4549 ns-grabenv.el moved here.
4550 (ns-grabenv, ns-open-file-select-line): Doc fixes.
4551 (ns-submit-bug-report): Function removed. Reports go to the main
4552 Emacs bug list.
4553 (ns-handle-args, ns-spi-service-call): Doc fixes.
4554 (info-ns-emacs): Function removed. Nextstep port manual will be
4555 merged into the Emacs manual, so no separate link needed.
4556
4557 2008-07-18 Francesc Rocher <rocher@member.fsf.org>
4558
4559 * startup.el (fancy-splash-head): Fix change of 2008-07-02.
4560
4561 2008-07-18 Glenn Morris <rgm@gnu.org>
4562
4563 * eshell/esh-arg.el (eshell-quote-backslash): Restrict previous change
4564 to XEmacs, since it does nothing for Emacs.
4565
4566 2008-07-18 Katsumi Yamaoka <yamaoka@jpl.org>
4567
4568 * net/tls.el (open-tls-stream): Make it work with the 2nd argument
4569 BUFFER that is a string but does not exist as a buffer object, as
4570 mentioned in the doc-string.
4571
4572 2008-07-17 Chong Yidong <cyd@stupidchicken.com>
4573
4574 * simple.el (line-move-visual): Make it a defcustom.
4575 (line-move-1): Convert temporary-goal-column back to an integer if
4576 it was set as a float by a previous call to line-move-visual.
4577 (end-of-visual-line, beginning-of-visual-line)
4578 (next-logical-line, previous-logical-line): New functions.
4579
4580 2008-07-17 David Reitter <david.reitter@gmail.com>
4581
4582 * simple.el (kill-visual-line, turn-on-visual-line-mode): New
4583 functions.
4584 (visual-line-mode, global-visual-line-mode): New minor mode.
4585 (visual-line-mode-map): New variable.
4586
4587 2008-07-17 Glenn Morris <rgm@gnu.org>
4588
4589 * term/ns-win.el (parameters): Declare for compiler.
4590
4591 2008-07-17 Fan Kai <fktpp@xemacs.org> (tiny change)
4592
4593 * eshell/esh-arg.el (eshell-quote-backslash): Fix eshell path completion
4594 for Windows.
4595
4596 2008-07-17 Daiki Ueno <ueno@unixuser.org>
4597
4598 * epa.el (epa-key-list-mode): Use run-mode-hooks.
4599 (epa-key-mode): Ditto.
4600 (epa-info-mode): Ditto.
4601
4602 2008-07-17 Glenn Morris <rgm@gnu.org>
4603
4604 * term/ns-win.el (ns-handle-switch): Simplify. Handle the numeric case.
4605 (ns-handle-numeric-switch): Just call ns-handle-switch.
4606 (ns-handle-name-switch, ns-handle-nxopen, ns-handle-nxopentemp)
4607 (ns-handle-args): Simplify using `pop'.
4608 (ns-display-name): Define (used in frame.el).
4609 (menu-bar-select-frame): Add (ignored) arg to more closely match the
4610 original definition.
4611 (ns-perform-service): Declare.
4612 (ns-save-preferences): Use fewer `let's.
4613
4614 * frame.el (ns-display-name): Declare for compiler.
4615
4616 2008-07-17 Kenichi Handa <handa@m17n.org>
4617
4618 * descr-text.el (describe-char-unidata-list): Initialize to the
4619 list of name, general-category, decomposition, and old-name.
4620
4621 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
4622
4623 * startup.el (command-line-1): Update processing of NS long options to
4624 mimic recent changes to processing of X long options.
4625
4626 2008-07-16 Nick Roberts <nickrob@snap.net.nz>
4627
4628 * progmodes/gdb-ui.el (gdb-create-define-alist): Don't create a
4629 list of #defines for remote files.
4630 (gdb-source-info): Only show main if it has been found.
4631
4632 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
4633
4634 * term/ns-win.el: Require CL; fix up comment style; reindent.
4635 (ns-define-service): Use subst-char-in-string. Avoid `eval'.
4636 (ns-save-preferences): Use `case'.
4637 (ns-initialize-window-system): Use `dolist'.
4638
4639 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
4640
4641 * loadup.el: Remove load of easy-mmode prior to ns-win when NS
4642 windowing is used.
4643 * term/ns-win.el (ns-extended-platform-support-mode):
4644 Correct/improve documentation.
4645
4646 2008-07-16 Glenn Morris <rgm@gnu.org>
4647
4648 * emacs-lisp/cl-compat.el, emacs-lisp/cl-macs.el, emacs-lisp/cl-seq.el:
4649 Simply require 'cl (see comment in cl-compat.el).
4650 * emacs-lisp/cl-macs.el (cl-compile-time-init): Remove function.
4651 * emacs-lisp/cl.el (cl-do-pop, cl-mapcar-many): Declare for compiler.
4652 (cl-hack-byte-compiler): Load cl-macs and run cl-hack-bytecomp-hook
4653 directly rather by subterfuge. Provide cl before loading cl-macs.
4654
4655 * paths.el (rmail-spool-directory): Remove settings for systems that are
4656 no longer supported.
4657
4658 * frame.el (ns-initialize-window-system): Declare for compiler.
4659
4660 * term/ns-win.el: Add numerous declarations for compiler.
4661 (ns-pop-up-frames): Move definition before use. Doc fix.
4662
4663 * emacs-lisp/check-declare.el (check-declare-locate)
4664 (check-declare-verify): Handle .m files.
4665
4666 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
4667
4668 * ns-carbon-compat.el: New file: user-visible compatibility of
4669 NeXTstep port with Carbon port.
4670 * ns-grabenv.el: New file: functionality useful on OS X platform to
4671 expose environment variables inside Emacs started from icon.
4672 * Makefile.in (ELCFILES): Add ns-carbon-compat, ns-grabenv, ns-win.
4673 * cus-edit.el:
4674 * cus-face.el:
4675 * disp-table.el:
4676 * faces.el:
4677 * info.el:
4678 * mouse.el:
4679 * mwheel.el:
4680 * simple.el: Add ns to window systems treated as GUIs.
4681 * facemenu.el (facemenu-read-color): Don't require a name match under
4682 NS, to allow numeric color entry.
4683 * frame.el (make-frame-on-display): Follow code for 'x in initializing
4684 'ns window system if need be.
4685 (various): Add 'ns as described above.
4686 * loadup.el: Load ns-win.el, easy-menu.el, easy-mmode.el if
4687 ns-windowing is active.
4688 * startup.el (command-line-ns-option-alist): New constant to handle NS
4689 windowing system specific command line args analogous to how they are
4690 handled for X windows.
4691 (command-line-1): Use the above where appropriate.
4692 * version.el: Add NS port version.
4693 * woman.el (woman-man.conf-path): Add /usr/share/misc to init path on
4694 Darwin (usually OS X) systems.
4695 (woman-use-own-frame): Include 'ns in list of GUI window systems.
4696 * emulation/viper-util.el (ns-display-color-p)
4697 (ns-color-defined-p): Remove these (caustically-commented) outdated
4698 compensations for a port that was never itself integrated until now.
4699 * gnus/gnus-util.el (gnus-select-frame-set-input-focus): Add support
4700 for NS window system.
4701 * international/mule-cmds.el: Add 'ns to list of special-cased window
4702 systems (probably most of these, x/w32/mac/ns could be changed to
4703 window-system non-nil).
4704 * term/ns-win.el: New file: lisp-side support for NS windowing system.
4705
4706 2008-07-14 Jason Rumney <jasonr@gnu.org>
4707
4708 * term/w32-win.el (x-handle-switch, x-handle-name-switch)
4709 (x-handle-numeric-switch, x-handle-initial-switch)
4710 (x-handle-xrm-switch, x-handle-args, x-handle-display)
4711 (xw-defined-colors, w32-initialize-window-system):
4712 Avoid use of cl pop and push macros.
4713
4714 2008-07-14 Martin Rudalics <rudalics@gmx.at>
4715
4716 * add-log.el (change-log-goto-source): Avoid wrong-type-argument
4717 error when change-log-search-file-name returns nil.
4718
4719 2008-07-13 Martin Rudalics <rudalics@gmx.at>
4720
4721 * add-log.el (change-log-search-file-name):
4722 Use match-string-no-properties.
4723 (change-log-search-tag-name-1, change-log-search-tag-name)
4724 (change-log-goto-source-1, change-log-goto-source): New functions.
4725 (change-log-tag-re, change-log-find-head, change-log-find-tail):
4726 New variables.
4727 (change-log-mode-map): Bind C-c C-c to change-log-goto-source.
4728
4729 2008-07-13 Jay Belanger <jay.p.belanger@gmail.com>
4730
4731 * calc/calc-help.el (calc-describe-key): Add angles to special key
4732 descriptions.
4733
4734 2008-07-13 Vincent Belaïche <vincent.b.1@hotmail.fr>
4735
4736 * calc/calc-help.el (calc-describe-thing): Use `re-search-forward' to
4737 search for regexp.
4738
4739 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
4740
4741 * simple.el (line-move-visual): Handle null pixel position gracefully.
4742
4743 2008-07-11 Jason Rumney <jasonr@gnu.org>
4744
4745 * files.el (file-truename): Get truename of ancestors if file does
4746 not exist on Windows.
4747
4748 2008-07-11 Chong Yidong <cyd@stupidchicken.com>
4749
4750 * simple.el (line-move-visual): Obey goal-column and no-error arg.
4751 (track-eol, temporary-goal-column, previous-line, next-line):
4752 Update docstring.
4753 (move-end-of-line, move-beginning-of-line): Bind line-move-visual
4754 to nil.
4755
4756 2008-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
4757
4758 * simple.el (line-move-visual): New var.
4759 (line-move-visual): New function.
4760 (line-move): Call line-move-visual.
4761
4762 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
4763
4764 * progmodes/grep.el (grep-files-aliases): Improve the C++ source
4765 pattern and add patterns for C++ header files.
4766
4767 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
4768
4769 * window.el (truncated-partial-width-window-p): New function.
4770
4771 * menu-bar.el: Remove Longlines mode from menu. Add word-wrap option.
4772
4773 * faces.el (x-create-frame-with-faces): Don't pass parameters that
4774 are set later to x-create-frame.
4775 (face-set-after-frame-default): Apply X resources for non-default
4776 faces.
4777
4778 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
4779
4780 * faces.el (face-set-after-frame-default): Simplify. Don't apply
4781 frame-specific X resource settings. Set faces using a list of
4782 frame parameters explicitly passed to the calling
4783 function (e.g. make-frame).
4784 (x-create-frame-with-faces, tty-create-frame-with-faces):
4785 Supply explicit frame parameter list to face-set-after-frame-default.
4786
4787 2008-07-08 Eduard Wiebe <usenet@pusto.de> (tiny change)
4788
4789 * net/browse-url.el (browse-url-default-browser):
4790 Fix argument list in lambda.
4791
4792 2008-07-07 Ulf Jasper <ulf@web.de>
4793
4794 * net/newst-backend.el (newsticker--get-news-by-url): Catch errors
4795 from url-retrieve.
4796 (newsticker--sentinel-work): Fix xerror typo.
4797
4798 2008-07-07 Dan Nicolaescu <dann@ics.uci.edu>
4799
4800 * vc-dir.el (vc-dir-refresh): Only update files.
4801
4802 * vc-git.el (vc-git--ls-files-state): Remove unused function.
4803
4804 * vc-bzr.el (vc-bzr-after-dir-status): Deal with execute bit changes.
4805
4806 2008-07-06 John Paul Wallington <jpw@pobox.com>
4807
4808 * kermit.el (kermit-esc-char, kermit-clean-off): Doc fixes.
4809
4810 2008-07-05 Alexandre Julliard <julliard@winehq.org>
4811
4812 * vc-git.el (vc-git-registered): Return true for removed files.
4813 (vc-git-print-log, vc-git-log-view-mode): Print a single log for
4814 all the files instead of one per file.
4815 (vc-git-previous-revision): Add support for project-wide previous
4816 revision when specified file is nil.
4817
4818 2008-07-05 Dan Nicolaescu <dann@ics.uci.edu>
4819
4820 * vms-patch.el, vmsproc.el, mail/vms-pmail.el: Move to obsolete dir.
4821
4822 * vc-dir.el (vc-dir-find-child-files): New function.
4823 (vc-dir-resync-directory-files): New function.
4824 (vc-dir-recompute-file-state): New function, broken out of ...
4825 (vc-dir-resynch-file): ... here. Also deal with directories.
4826 * vc-dispatcher.el (vc-resynch-buffers-in-directory): New function.
4827 (vc-resynch-buffer): Use it.
4828
4829 * vc-hg.el (vc-hg-registered): Do not set vc-state.
4830
4831 * vc-annotate.el (vc-annotate-mode-menu): Add separator.
4832
4833 2008-07-05 Nick Roberts <nickrob@snap.net.nz>
4834
4835 * progmodes/gdb-ui.el (gdb-display-buffer): Don't split a buffer
4836 if it's not part of gdb-ui, e.g, at start.
4837
4838 * progmodes/gud.el (gud-gdb-get-stackframe): Allow absolute
4839 filenames in stack trace (text command mode).
4840
4841 2008-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4842
4843 * mouse-drag.el (mouse-drag-throw, mouse-drag-drag): Autoload.
4844
4845 * textmodes/sgml-mode.el (sgml-font-lock-syntactic-keywords):
4846 Use syntax-ppss on a position *before* the char we want to change.
4847
4848 2008-07-04 Dan Nicolaescu <dann@ics.uci.edu>
4849
4850 * vc-dir.el (vc-dir-query-replace-regexp): New function.
4851 (vc-dir-tool-bar-map, vc-dir-menu-map): Bind it.
4852 (vc-dir-mode-map): Likewise.
4853
4854 2008-07-03 Juanma Barranquero <lekktu@gmail.com>
4855
4856 * eshell/esh-arg.el (eshell-quote-backslash): Fix typo in docstring.
4857 (eshell-parse-argument-hook, eshell-special-chars-inside-quoting)
4858 (eshell-arg-load-hook, eshell-special-chars-outside-quoting):
4859 Remove spurious * in defcustom docstrings.
4860
4861 * textmodes/fill.el (fill-paragraph): Fix typo in docstring.
4862 (fill-individual-varying-indent, colon-double-space, enable-kinsoku)
4863 (adaptive-fill-mode, adaptive-fill-first-line-regexp)
4864 (default-justification): Remove spurious * in defcustom docstrings.
4865
4866 * textmodes/rst.el (rst, rst-line-homogeneous-p, rst-mode-abbrev-table)
4867 (rst-font-lock-keywords-function, rst-mode, rst-minor-mode)
4868 (rst-compare-decorations, rst-default-indent, rst-update-section)
4869 (rst-decoration-complete-p, rst-section-tree, rst-toc-insert-node)
4870 (rst-toc-insert-find-delete-contents, rst-toc-count-lines)
4871 (rst-toc-mode-goto-section, rst-faces, rst-level-face-base-color):
4872 Fix typos in docstrings.
4873 (rst-mode-lazy): Fix typo in docstring. Remove spurious *.
4874 (rst-adjust, rst-line-homogeneous-p, rst-suggest-new-decoration)
4875 (rst-get-decorations-around, rst-section-tree-point)
4876 (rst-font-lock-adornment-point): Reflow docstrings.
4877 (rst-get-decoration, rst-get-decoration-match, rst-adjust-decoration):
4878 Doc fixes.
4879 (rst-re-enumerations): Comment out.
4880
4881 * nxml/nxml-glyph.el (nxml-glyph-set-hook):
4882 * nxml/nxml-uchnm.el (nxml-unicode-blocks)
4883 (nxml-unicode-block-char-name-set):
4884 * nxml/nxml-util.el (nxml-debug, nxml-make-namespace):
4885 * nxml/rng-nxml.el (rng-set-state-after):
4886 * nxml/rng-uri.el (rng-file-name-uri): Fix typo in docstring.
4887
4888 * nxml/rng-cmpct.el (rng-c-lookup-create, rng-c-parse-primary)
4889 (rng-c-parse-annotation-body):
4890 * nxml/rng-dt.el (rng-dt-namespace-context-getter): Reflow docstrings.
4891
4892 * nxml/nxml-mode.el (nxml, nxml-mode, nxml-after-change1)
4893 (nxml-extend-region, nxml-merge-indent-context-type, nxml-complete)
4894 (nxml-forward-balanced-item, nxml-dynamic-markup-word)
4895 (nxml-define-char-name-set, nxml-toggle-char-ref-extra-display):
4896 Fix typos in docstrings.
4897 (nxml-attribute-indent): Reflow docstring.
4898 (nxml-bind-meta-tab-to-complete-flag, nxml-last-fontify-end)
4899 (nxml-default-buffer-file-coding-system): Doc fixes.
4900
4901 * nxml/nxml-ns.el (nxml-ns-state, nxml-ns-initial-state)
4902 (nxml-ns-set-prefix): Fix typos in docstrings.
4903 (nxml-ns-push-state, nxml-ns-pop-state, nxml-ns-set-default):
4904 Reflow docstring.
4905 (nxml-ns-get-prefix, nxml-ns-get-default): Doc fixes.
4906
4907 * nxml/nxml-outln.el (nxml-hide-all-text-content)
4908 (nxml-show-direct-text-content, nxml-show-direct-subheadings)
4909 (nxml-hide-direct-text-content, nxml-hide-subheadings)
4910 (nxml-hide-text-content, nxml-show-subheadings, nxml-hide-other)
4911 (nxml-outline-display-rest, nxml-outline-set-overlay)
4912 (nxml-section-tag-forward, nxml-section-tag-backward)
4913 (nxml-back-to-section-start): Fix typos in docstrings.
4914
4915 * nxml/nxml-parse.el (nxml-validate-function, nxml-parse-file):
4916 Doc fixes.
4917
4918 * nxml/nxml-rap.el (nxml-scan-end, nxml-move-tag-backwards)
4919 (nxml-scan-element-forward, nxml-scan-element-backward): Doc fixes.
4920 (nxml-scan-after-change): Fix typo in docstring.
4921
4922 * nxml/rng-match.el (rng-being-compiled, rng-normalize-choice-list)
4923 (rng-name-class-possible-names): Doc fixes.
4924 (rng-memo-map-add, rng-intern-group, rng-match-possible-namespace-uris)
4925 (rng-match-possible-start-tag-names, rng-match-possible-value-strings):
4926 Fix typos in docstrings.
4927 (rng-intern-group-shortcut, rng-intern-choice-shortcut):
4928 Reflow docstrings.
4929
4930 * nxml/rng-util.el (rng-uniquify-eq, rng-uniquify-equal): Doc fixes.
4931 (rng-substq, rng-complete-before-point): Fix typos in docstrings.
4932
4933 * nxml/rng-xsd.el (rng-xsd-make-date-time-regexp)
4934 (rng-xsd-convert-date-time): Reflow docstrings.
4935 (rng-xsd-compile): Fix typo in docstring.
4936
4937 * nxml/rng-loc.el (rng-current-schema-file-name)
4938 (rng-locate-schema-file-using, rng-locate-schema-file-from-type-id):
4939 Doc fixes.
4940 (rng-set-schema-file): Fix typo in docstring.
4941
4942 * nxml/rng-valid.el (rng-error-count, rng-validate-mode)
4943 (rng-do-some-validation, rng-process-start-tag, rng-process-text):
4944 Fix typos in docstrings.
4945 (rng-message-overlay, rng-conditional-up-to-date-start)
4946 (rng-conditional-up-to-date-end): Doc fixes.
4947 (rng-next-error, rng-previous-error): Reflow docstrings.
4948
4949 * nxml/xmltok.el (xmltok-attribute-raw-normalized-value): Doc fix.
4950 (xmltok-dtd, xmltok-dependent-regions, xmltok-attribute-refs)
4951 (xmltok-valid-char-p, xmltok-standalone, xmltok-forward-prolog)
4952 (xmltok-merge-attributes): Fix typos in docstrings.
4953 (xmltok-make-attribute, xmltok-forward-special)
4954 (xmltok-get-declared-encoding-position): Reflow docstrings.
4955
4956 * nxml/xsd-regexp.el (xsdre-char-class-to-range-list): Doc fix.
4957 (xsdre-range-list-union, xsdre-check-range-list, xsdre-current-regexp):
4958 Fix typos in docstrings.
4959
4960 2008-07-02 John Paul Wallington <jpw@pobox.com>
4961
4962 * ibuffer.el (ibuffer-buffer-file-name):
4963 Use `list-buffers-directory'. Remove special-casing for `cvs-mode'
4964 and `vc-dir-mode'. Suggested by Dan Nicolaescu.
4965
4966 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
4967
4968 * files.el (backup-extract-version): Handle versioned directories.
4969 (trash-directory): New variable.
4970 (move-file-to-trash): New function.
4971
4972 * cus-start.el (delete-by-moving-to-trash): Declare for custom.
4973
4974 2008-07-02 Magnus Henoch <mange@freemail.hu>
4975
4976 * vc-git.el (vc-git-annotate-command): Use proper option for
4977 specifying revision.
4978
4979 2008-07-02 Francesc Rocher <rocher@member.fsf.org>
4980
4981 * startup.el (fancy-splash-head): Prefer SVG or PNG splash image,
4982 if available.
4983
4984 2008-07-01 Dan Nicolaescu <dann@ics.uci.edu>
4985
4986 * uniquify.el (uniquify-list-buffers-directory-modes): Add vc-dir-mode.
4987
4988 * vc-annotate.el (vc-annotate-mode-map): Use lower case keys.
4989 Add binding for vc-annotate-show-changeset-diff-revision-at-line.
4990
4991 * vc-dir.el (vc-dir-mode): Set list-buffers-directory.
4992
4993 2008-07-01 Nick Roberts <nickrob@snap.net.nz>
4994
4995 * progmodes/gdb-ui.el (gdb-create-source-file-list): New option.
4996 (gdb-init-2): Use it. Don't run gdb-mode-hook again.
4997 (gdb-var-list-children-regexp, gdb-var-update-regexp)
4998 (gdb-info-breakpoints-custom, gdb-stack-list-frames-regexp)
4999 (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
5000 (gdb-stack-list-locals-regexp): Future proof regexps better.
5001
5002 2008-06-30 Juri Linkov <juri@jurta.org>
5003
5004 * faces.el (face-name-history): New variable.
5005 (make-face, make-empty-face): Replace interactive spec "S"
5006 with `read-from-minibuffer' where `read' arg is t and
5007 `hist' arg is `face-name-history'.
5008 (read-face-name): Set `hist' arg of `completing-read-multiple'
5009 to `face-name-history'.
5010 (list-faces-display): Use `read-regexp' instead of `read-string'
5011 to read regexp.
5012
5013 * hi-lock.el (hi-lock-regexp-history): Make it an obsolete alias
5014 to `regexp-history'.
5015 (hi-lock-face-history): Rename to `hi-lock-face-defaults' and
5016 make it an obsolete alias to it.
5017 (hi-lock-face-defaults): New variable renamed from
5018 `hi-lock-face-history'.
5019 (hi-lock-line-face-buffer, hi-lock-face-buffer)
5020 (hi-lock-face-phrase-buffer): Use `read-regexp' instead of
5021 `read-from-minibuffer'. Doc fix.
5022 (hi-lock-read-face-name): Replace `hi-lock-face-history' with
5023 `hi-lock-face-defaults'. Remove `mapcar (lambda (f) (cons f f))'.
5024 Set `hist' arg of `completing-read' to `face-name-history'.
5025 Put a list of default faces to `default' arg instead of `hist' arg.
5026
5027 * bindings.el (abbrev-map, narrow-map): New variables.
5028 Bind `C-x a' to `abbrev-map' and `C-x n' to `narrow-map'.
5029 Rebind related commands to these new maps.
5030 (ctl-x-r-map): New variable for rectangle, register and bookmark
5031 keys. Move rectangle keybindings to rect.el and register
5032 keybindings to register.el.
5033 (next-buffer, previous-buffer): Remove C-x prefix and move
5034 keybindings to ctl-x-map.
5035
5036 * bookmark.el: Rebind three global `C-x r' keys "b", "m", "l"
5037 to the new map `ctl-x-r-map' in autoload cookies.
5038
5039 * expand.el: Rebind two global `C-x a' keys "n", "p"
5040 to the new map `abbrev-map' in autoload cookies.
5041
5042 * rect.el: Bind global keys to ctl-x-r-map in autoload cookies.
5043
5044 * register.el: Bind global keys to ctl-x-r-map in autoload cookies.
5045
5046 2008-06-30 Miles Bader <miles@gnu.org>
5047
5048 * net/rcirc.el (rcirc-markup-attributes): Don't skip a character
5049 after processing an escape sequence.
5050
5051 2008-06-29 Michael Albinus <michael.albinus@gmx.de>
5052
5053 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Revert patch
5054 from 2008-06-28. It does not work on W32.
5055
5056 2008-06-29 Juri Linkov <juri@jurta.org>
5057
5058 * replace.el (read-regexp): New function.
5059 (keep-lines-read-args, occur-read-primary-args):
5060 Call `read-regexp' instead of code moved to new function.
5061 (keep-lines, flush-lines, how-many): Remove parenthesis and colon
5062 from the end of prompt.
5063 (replace-re-search-function): Doc fix.
5064
5065 2008-06-29 Kenichi Handa <handa@m17n.org>
5066
5067 * descr-text.el (describe-char-display): Always return a string.
5068 (describe-char-padded-string): New function.
5069 (describe-char): Adjusted for the change of
5070 describe-char-display. Use describe-char-padded-string.
5071
5072 2008-06-29 Andreas Schwab <schwab@suse.de>
5073
5074 * vc-dir.el (vc-dir): Make backend argument optional and use
5075 vc-responsible-backend when nil. Interactively pass nil for
5076 backend instead of using the backend of what happens to be
5077 default-directory at the time of the call.
5078
5079 * find-dired.el (find-dired-filter): Preserve point.
5080
5081 2008-06-28 Juanma Barranquero <lekktu@gmail.com>
5082
5083 * net/sasl.el (sasl-client-set-property, sasl-make-mechanism)
5084 (sasl-find-mechanism, sasl-next-step):
5085 * net/sasl-ntlm.el (sasl-ntlm-steps, sasl-ntlm-request)
5086 (sasl-ntlm-response): Fix typos in docstrings.
5087
5088 2008-06-28 robert marshall <robert@capuchin.co.uk> (tiny change)
5089
5090 * international/mule-cmds.el (view-hello-file): Doc fix.
5091
5092 2008-06-28 Chong Yidong <cyd@stupidchicken.com>
5093
5094 * faces.el (inhibit-face-set-after-frame-default): Var deleted.
5095 (set-face-attribute, face-set-after-frame-default)): Don't use it.
5096
5097 2008-06-28 John Paul Wallington <jpw@pobox.com>
5098
5099 * calc/calc.el (defmath): Add `doc-string' decl. Add docstring.
5100
5101 2008-06-28 Michael Albinus <michael.albinus@gmx.de>
5102
5103 * net/tramp.el (tramp-handle-file-modes): Handle symlinks.
5104 (tramp-convert-file-attributes): Convert symlinks only when
5105 returned from `tramp-handle-file-attributes-with-stat'.
5106
5107 * net/tramp-ftp.el (top): Delete 'ange-ftp property from
5108 `substitute-in-file-name' when unloading.
5109 (tramp-ftp-file-name-handler): Set `tramp-mode' to nil.
5110
5111 2008-06-28 Dan Nicolaescu <dann@ics.uci.edu>
5112
5113 * vc-dir.el (vc-dir-hide-up-to-date): Also hide empty directories.
5114 (vc-string-prefix-p): Move function ...
5115 * vc.el (vc-string-prefix-p): ... here.
5116
5117 2008-06-27 Juanma Barranquero <lekktu@gmail.com>
5118
5119 * vc-dir.el (vc-dir): Complete only directory names.
5120
5121 2008-06-27 Jason Rumney <jasonr@gnu.org>
5122
5123 * w32-fns.el (top-level): Unconditionally define all charsets.
5124
5125 2008-06-27 Alan Mackenzie <acm@muc.de>
5126
5127 * progmodes/cc-mode.el (c-mode-base-map): Don't bind C-M-[ae] to
5128 the CC Mode specific functions; this is no longer needed, since
5129 {beginning,end}-of-defun now pass ARG to ...-of-defun-function.
5130
5131 * progmodes/cc-defs.el (c-emacs-features): New feature
5132 'argumentative-bod-function.
5133
5134 2008-06-27 John Paul Wallington <jpw@pobox.com>
5135
5136 * chistory.el (list-command-history): Use `bound-and-true-p'.
5137 (command-history-map): Define within defvar. Add docstring.
5138
5139 2008-06-27 Juanma Barranquero <lekktu@gmail.com>
5140
5141 * image.el (image-jpeg-p): Don't fail if the arg cannot be converted
5142 to unibyte; just assume it is not a JPEG. Use `string-match-p'.
5143 (image-type-from-data, image-type-from-file-name): Use `string-match-p'.
5144 (image-type-from-buffer): Use `looking-at-p'.
5145
5146 2008-06-27 Juanma Barranquero <lekktu@gmail.com>
5147
5148 * ibuf-ext.el (diff-sentinel): Declare.
5149
5150 2008-06-27 Glenn Morris <rgm@gnu.org>
5151
5152 * calendar/lunar.el (calendar-lunar-phases): Rename from
5153 calendar-phases-of-moon. Keep old name as alias, update callers.
5154 (lunar-phases): Rename from phases-of-moon. Keep old name as alias.
5155 (diary-lunar-phases): Rename from diary-phases-of-moon.
5156 Keep old name as alias.
5157 * calendar/cal-menu.el (cal-menu-sunmoon-menu)
5158 (cal-menu-global-mouse-menu): Update for lunar name changes.
5159 * calendar/calendar.el (calendar-mode-map): Update for name change.
5160 * calendar/diary-lib.el (diary-list-sexp-entries): Doc update.
5161
5162 2008-06-26 Glenn Morris <rgm@gnu.org>
5163
5164 * calendar/solar.el (solar-sunrise-sunset-string): Add optional
5165 argument `nolocation'.
5166 (calendar-sunrise-sunset-month): New function.
5167 * calendar/cal-menu.el (cal-menu-sunmoon-menu): Rename from
5168 cal-menu-moon-menu. Add calendar-sunrise-sunset-month.
5169 (cal-menu-global-mouse-menu): Add calendar-sunrise-sunset-month.
5170 * calendar/calendar.el (solar-sunrises-buffer): New constant.
5171 (calendar-mode-map): Use cal-menu-sunmoon-menu.
5172 (calendar-buffer-list): Add solar-sunrises-buffer.
5173
5174 * calendar/cal-menu.el (cal-menu-goto-menu): Tweak menu name.
5175
5176 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
5177
5178 * cus-start.el: Add customization types for word-wrap and
5179 shift-select-mode.
5180
5181 2008-06-26 John Paul Wallington <jpw@pobox.com>
5182
5183 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): New function.
5184 (ibuffer-diff-with-file): Use it. Do diff on marked buffers.
5185 (ibuffer-mark-on-buffer): Don't display message when removing marks.
5186 (ibuffer-mark-by-mode): Use `buffer-local-value'.
5187
5188 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
5189
5190 * vc-dir.el (tool-bar): Require.
5191
5192 * vc.el (ewoc, tool-bar): Do not require.
5193
5194 2008-06-26 Kenichi Handa <handa@m17n.org>
5195
5196 * international/mule-cmds.el (encode-coding-char): Fix for ASCII
5197 characters.
5198
5199 * composite.el (terminal-composition-base-character-p): New function.
5200 (terminal-composition-function):
5201 Use terminal-composition-base-character-p. Include the base character
5202 in the composition.
5203 (auto-compose-chars): Don't check font-object for terminal display.
5204
5205 2008-06-26 Glenn Morris <rgm@gnu.org>
5206
5207 * doc-view.el (bookmark-make-record-default):
5208 * image-mode.el (bookmark-make-record-default): Fix declaration.
5209
5210 * calendar/calendar.el (calendar-date-echo-text): Doc fix.
5211 Add default :value for sexp type.
5212 (calendar-month-edges): New variable.
5213 (calendar-month-edges): New function.
5214 (calendar-recompute-layout-variables): Set calendar-month-edges.
5215 (calendar-intermonth-header, calendar-intermonth-text): New options.
5216 (calendar-insert-at-column): New function.
5217 (calendar-generate-month): Use calendar-insert-at-column.
5218 Handle intermonth text. Add 'date property.
5219 (calendar-column-to-month): Remove function.
5220 (calendar-column-to-segment): New function.
5221 (calendar-cursor-to-date): Use calendar-column-to-segment.
5222 Check 'date property.
5223
5224 * calendar/calendar.el (calendar-print-other-dates):
5225 Handle mouse events.
5226 * calendar/cal-menu.el (calendar-mouse-print-dates): Remove function.
5227 (cal-menu-context-mouse-menu): Use calendar-print-other-dates.
5228
5229 * calendar/holidays.el (calendar-cursor-holidays): Handle mouse events.
5230 * calendar/cal-menu.el (calendar-mouse-holidays): Remove function.
5231 (cal-menu-context-mouse-menu): Use calendar-cursor-holidays.
5232
5233 * calendar/cal-move.el (calendar-cursor-to-nearest-date):
5234 Use calendar-column-to-segment, calendar-month-edges, and
5235 the 'date property to handle intermonth text.
5236
5237 * calendar/cal-iso.el (calendar-iso-from-absolute): Add autoload cookie.
5238
5239 * calendar/cal-menu.el (cal-menu-moon-menu, cal-menu-diary-menu)
5240 (cal-menu-holidays-menu, cal-menu-goto-menu, cal-menu-scroll-menu):
5241 Add doc strings.
5242 (cal-menu-context-mouse-menu): Add some :keys.
5243 (calendar-check-holidays): Declare rather than autoloading.
5244 (diary-show-holidays-flag): Remove unneeded declaration.
5245
5246 * calendar/cal-menu.el (cal-menu-moon-menu): Add sunrise/sunset.
5247 * calendar/calendar.el (calendar-cursor-to-date): Handle case where
5248 event-start is nil.
5249
5250 2008-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5251
5252 * minibuffer.el (completion-basic-try-completion): Use the text after
5253 point to constrain the completion candidates.
5254 (completion-basic-all-completions): Adjust accordingly.
5255
5256 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
5257
5258 * textmodes/tex-mode.el (tex-verbatim): Use monospace instead of
5259 courier.
5260
5261 * faces.el (set-face-attribute): Doc fix.
5262
5263 2008-06-25 Juri Linkov <juri@jurta.org>
5264
5265 * bindings.el (goto-map): New variable. Rebind goto-related
5266 commands to this `M-g' prefix keymap.
5267 (search-map): New variable for `M-s' prefix keymap.
5268 Bind `M-s o' to `occur', `M-shr' to `highlight-regexp', `M-shp' to
5269 `highlight-phrase', `M-shl' to `highlight-lines-matching-regexp',
5270 `M-shu' to `unhighlight-regexp', `M-shf' to `hi-lock-find-patterns',
5271 `M-shw' to `hi-lock-write-interactive-patterns'.
5272
5273 * isearch.el (isearch-mode-map): Bind `M-s h r' to
5274 `isearch-highlight-regexp'.
5275 (isearch-highlight-regexp): New function.
5276
5277 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5278
5279 * info.el (Info-bookmark-make-record):
5280 Use bookmark-make-record-default.
5281 (Info-bookmark-jump): Use bookmark-default-handler.
5282
5283 * image-mode.el (image-bookmark-make-record):
5284 Use bookmark-make-record-default.
5285 (image-bookmark-jump): Use bookmark-default-handler.
5286
5287 * doc-view.el (doc-view-bookmark-make-record):
5288 Use bookmark-make-record-default.
5289 (doc-view-bookmark-jump): Use bookmark-default-handler.
5290
5291 * bookmark.el (bookmark-alist): Allow the 2 slightly different formats
5292 used until now in bookmark.el's code.
5293 (bookmark-get-bookmark): Accept bookmark names or bookmark records.
5294 (bookmark-get-bookmark-record): Allow the 2 slightly different formats
5295 used until now in bookmark.el's code.
5296 (bookmark-set-filename): Remove special code, moved to its only caller.
5297 (bookmark-store): Use the newer format.
5298 (bookmark-make-record-default): Add arg `point-only'.
5299 Rename from bookmark-make-record-for-text-file.
5300 (bookmark--jump-via): New function.
5301 (bookmark-jump, bookmark-jump-other-window, bookmark-bmenu-2-window)
5302 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window):
5303 Use it.
5304 (bookmark-jump-noselect, bookmark-default-handler):
5305 Don't return an alist, instead return the data implicitly by changing
5306 current buffer and point. Signal an error if the file doesn't exist.
5307
5308 * buff-menu.el: Use with-current-buffer and inhibit-read-only.
5309 (Buffer-menu-toggle-read-only): Avoid vc-toggle-read-only.
5310
5311 * bs.el: Use with-current-buffer. Simplify.
5312 (bs-toggle-readonly): Avoid vc-toggle-read-only.
5313
5314 * eshell/esh-cmd.el (eshell-manipulate): Check eshell-debug-command
5315 is bound before using it.
5316
5317 2008-06-25 Kenichi Handa <handa@m17n.org>
5318
5319 * image.el (image-jpeg-p): Convert DATA to unibyte at first.
5320
5321 2008-06-25 Dan Nicolaescu <dann@ics.uci.edu>
5322
5323 * vc-hg.el:
5324 * vc-git.el: Require vc-dir when compiling.
5325
5326 * vc-dir.el (vc-dir-marked-only-files-and-states): Rename from
5327 vc-dir-marked-only-files. Change the return value.
5328 (vc-dir-child-files-and-states): Rename from vc-dir-child-files.
5329 Change the return value.
5330 (vc-dir-deduce-fileset): New function broken out from ...
5331 * vc.el (vc-deduce-fileset): ... here and ...
5332 (vc-deduce-fileset): ... here.
5333
5334 * vc-svn.el (vc-annotate-parent-rev): Pacify byte compiler.
5335 (vc-svn-parse-status): Do not set the vc-backend property.
5336
5337 2008-06-25 Andreas Schwab <schwab@suse.de>
5338
5339 * faces.el (face-font-family-alternatives, variable-pitch):
5340 Use "Sans Serif", not "Sans-Serif".
5341
5342 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
5343
5344 * faces.el (face-font-family-alternatives, variable-pitch):
5345 Change "Sans" to the canonical name "Sans-Serif".
5346
5347 2008-06-24 Jay Belanger <jay.p.belanger@gmail.com>
5348
5349 * calc/calc.el (calc-mode-map): Add extra keybindings to
5350 `calc-missing-key'.
5351 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
5352 `kill-ring-save'.
5353
5354 2008-06-24 Miles Bader <miles@gnu.org>
5355
5356 * mouse.el (mouse-appearance-menu): Don't do anything if the user
5357 pops up the menu but doesn't select anything.
5358
5359 2008-06-24 Dan Nicolaescu <dann@ics.uci.edu>
5360
5361 * add-log.el (add-change-log-entry): Add new arg to force each new
5362 entry to be on a new line.
5363 * diff-mode.el (diff-add-change-log-entries-other-window): Use it.
5364
5365 * vc-dir.el (vc-client-object): Remove.
5366 (vc-dir-prepare-status-buffer): Take a backend as an argument and
5367 use it when looking for a buffer.
5368 (vc-dir): Add a backend argument. Set revert-buffer-function.
5369 Don't create a client object. Move bindings ...
5370 (vc-dir-menu-map, vc-dir-mode-map): ... here.
5371 (vc-dir-revert-buffer-function): New function.
5372 (vc-generic-status-printer): Rename to ...
5373 (vc-dir-status-printer): ... this.
5374 (vc-generic-state, vc-generic-status-fileinfo-extra)
5375 (vc-dir-extra-menu, vc-make-backend-object): Remove.
5376 (vc-default-status-printer): Use a different face for
5377 directories. Don't display any text for directories in the state
5378 column. Add tooltips.
5379
5380 * vc.el (Todo): Update.
5381
5382 * vc-hg.el (vc-annotate-convert-time, vc-default-status-printer):
5383 * vc-rcs.el (vc-annotate-convert-time):
5384 * vc-mtn.el (vc-annotate-convert-time):
5385 * vc-git.el (vc-annotate-convert-time):
5386 * vc-cvs.el (vc-annotate-convert-time):
5387 * vc-bzr.el (vc-annotate-convert-time): Declare as functions.
5388
5389 2008-06-23 Dan Nicolaescu <dann@ics.uci.edu>
5390
5391 * vc-annotate.el (vc-annotate-mode): Derive from special-mode
5392 instead of using view-mode.
5393
5394 2008-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5395
5396 * Makefile.in (distclean): Don't delete *.elc and autogen files.
5397
5398 2008-06-22 Dan Nicolaescu <dann@ics.uci.edu>
5399
5400 * vc.el:
5401 * vc-hooks.el:
5402 * vc-dispatcher.el: Move vc-dir variables and functions ...
5403 * vc-dir.el: ... here. New file.
5404 * Makefile.in (ELCFILES): Add vc-dir.elc.
5405
5406 * vc.el: Move vc-annotate variables and functions ...
5407 * vc-annotate.el: ... here. New file.
5408 * Makefile.in (ELCFILES): Add vc-annotate.elc.
5409
5410 * vc-dav.el: Move here from url/vc-dav.el.
5411 (Todo): Note work needed to make this backend functional.
5412
5413 * Makefile.in (ELCFILES): Update vc-dav.el location.
5414
5415 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5416
5417 * Makefile.in (COMPILE_FIRST): Trim down and add autoload.el.
5418
5419 2008-06-21 John Paul Wallington <jpw@pobox.com>
5420
5421 * emacs-lisp/derived.el (define-derived-mode): Add `doc-string' decl.
5422
5423 * textmodes/rst.el (rst-mode): Put docstring in right place.
5424
5425 2008-06-21 Chong Yidong <cyd@stupidchicken.com>
5426
5427 * startup.el (fancy-about-text, fancy-startup-tail): Increase text
5428 size for legibility.
5429
5430 * faces.el (fixed-pitch): Use "Monospace" family.
5431 (variable-pitch): Use "Sans" family.
5432 (face-font-family-alternatives): Define alternatives for "Sans"
5433 and "Monospace".
5434
5435 2008-06-21 Glenn Morris <rgm@gnu.org>
5436
5437 * mail/hashcash.el, net/tramp-smb.el, nxml/nxml-mode.el:
5438 Require 'cl when compiling.
5439
5440 * emacs-lisp/debug.el (help-xref-interned): Declare.
5441
5442 * emacs-lisp/easy-mmode.el (easy-mmode-set-keymap-parents):
5443 Evaluate definition when compiling.
5444
5445 * progmodes/bug-reference.el (bug-reference-map): Bind down-mouse-1
5446 rather than mouse-1.
5447 (bug-reference-url-format): Autoload safe if string.
5448 (bug-reference-bug-regexp): Make space after "bug" optional.
5449
5450 * Makefile.in (all): Explicitly pass EMACS to sub-make,
5451 for some non-GNU makes.
5452
5453 * cus-dep.el (custom-dependencies-no-scan-regexp):
5454 * finder.el (finder-no-scan-regexp): Add ldefs-boot.el
5455
5456 * calendar/cal-move.el (calendar-forward-day): Scroll in one month
5457 increments.
5458
5459 * calendar/calendar.el: Factor out the magic numbers controlling the
5460 calendar layout.
5461 (calendar-month-digit-width, calendar-month-width)
5462 (calendar-right-margin): New variables.
5463 (calendar-recompute-layout-variables, calendar-set-layout-variable):
5464 New functions.
5465 (calendar-left-margin, calendar-intermonth-spacing)
5466 (calendar-column-width, calendar-day-header-width)
5467 (calendar-day-digit-width): New options.
5468 (calendar-first-date-row): New constant.
5469 (calendar-move-to-column, calendar-ensure-newline): New functions,
5470 replacing calendar-insert-indented.
5471 (calendar-insert-indented): Remove function.
5472 (calendar-generate-month): Use calendar-move-to-column and
5473 calendar-ensure-newline. Use layout variables.
5474 (calendar-generate, calendar-update-mode-line)
5475 (calendar-font-lock-keywords): Use layout variables.
5476 (calendar-column-to-month): New function.
5477 (calendar-cursor-to-date): Use calendar-column-to-month.
5478 Use layout variables.
5479 * calendar/cal-move.el (calendar-cursor-to-nearest-date):
5480 Use layout variables. Use calendar-column-to-month.
5481 (calendar-cursor-to-visible-date): Use layout variables.
5482
5483 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5484
5485 * Makefile.in (update-elclist): Don't exclude COMPILE_FIRST.
5486 (all): Run compile-last.
5487 (compile-onefile): New target.
5488 (compile-first): Simplify.
5489 (compile-last): Don't treat COMPILE_FIRST specially.
5490 (COMPILE_FIRST): List the elc files rather than the el files.
5491 (ELCFILES): Update.
5492
5493 2008-06-21 Ulf Jasper <ulf@web.de>
5494
5495 * net/newst-treeview.el: Remove dead code.
5496 (newsticker--window-config): Remove.
5497 (newsticker-treeview-quit): Do not save window config.
5498 (newsticker-treeview): Do not try to restore window config.
5499 (newsticker-groups, newsticker--treeview-list-sort-by-column)
5500 (newsticker--treeview-list-new-items)
5501 (newsticker--treeview-list-immortal-items)
5502 (newsticker--treeview-list-obsolete-items)
5503 (newsticker--treeview-list-all-items)
5504 (newsticker--treeview-list-feed-items): Fix documentation.
5505
5506 2008-06-21 Miles Bader <miles@gnu.org>
5507
5508 * face-remap.el (text-scale-adjust): Bind `echo-keystrokes' to nil.
5509
5510 2008-06-21 Alan Mackenzie <acm@muc.de>
5511
5512 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5D.5): Fix an
5513 infinite loop on invalid syntax.
5514
5515 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5516
5517 * textmodes/rst.el: Run rst-define-level-faces when loading.
5518 (rst-mode): Don't set the font-lock-multiline var.
5519 (rst-font-lock-find-unindented-line, rst-font-lock-handle-adornment):
5520 Set the font-lock-multiline property by hand.
5521
5522 * loadup.el: Don't add emacs-<VERS> name when bootstrapping.
5523
5524 * Makefile.in (emacs-deps): Remove.
5525 ($(lisp)/cus-load.el, $(lisp)/finder-inf.el): Re-add.
5526 (all): Use them.
5527 (autogen-clean): Remove.
5528
5529 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5530
5531 * Makefile.in (all): New target.
5532 (bootstrap-prepare): Remove.
5533
5534 * Makefile.in ($(lisp)/progmodes/cc-mode.elc): Pass the .el file not
5535 the .elc file to batch-byte-compile.
5536
5537 * progmodes/cc-mode.el (c-make-inherited-keymap): Only use
5538 set-keymap-parents if set-keymap-parent doesn't exist.
5539
5540 * vc-bzr.el (vc-bzr-annotate-extract-revision-at-line):
5541 Allow more than one space before the |.
5542
5543 * textmodes/rst.el: Fix up docstring conventions.
5544 Move vars to before their first use.
5545 (rst-mode): Don't mess with font-lock-support-mode.
5546 (rst-suggest-new-decoration, rst-adjust-decoration):
5547 Avoid CL's copy-list.
5548 (rst-delete-entire-line): Use line-beginning-position.
5549 (rst-position): New fun.
5550 (rst-straighten-decorations): Use it instead of CL's position.
5551 (rst-straighten-bullets-region): Avoid CL's mapcar*.
5552 (rst-toc-mode): Use define-derived-mode.
5553 (rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2):
5554 Remove unused var `in-par'. Use `point' rather than `point-marker'.
5555 (rst-line-block-region): Reduce redundancy. Use the `pfxarg' arg.
5556 (rst-replace-lines): Simplify.
5557 (auto-mode-alist): Use rst-mode for *.rst and *.rest files.
5558
5559 * simple.el (special-mode-map): New var.
5560 (special-mode): New major mode.
5561
5562 2008-06-20 Dan Nicolaescu <dann@ics.uci.edu>
5563
5564 * vc-mtn.el (vc-mtn-log-view-mode): Set log-view-per-file-logs and
5565 log-view-file-re.
5566
5567 * vc.el (vc-dir-hide-up-to-date): Undo previous change.
5568 (vc-switch-backend): Simplify.
5569 (Todo): Remove solved items.
5570
5571 * vc-cvs.el (vc-cvs-parse-status, vc-cvs-parse-entry): Do not set
5572 the vc-backend property.
5573
5574 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5575
5576 * emacs-lisp/checkdoc.el (checkdoc-start-section, checkdoc-error):
5577 Bind inhibit-read-only since the buffer is always read-only.
5578
5579 2008-06-20 Ulf Jasper <ulf@web.de>
5580
5581 * net/newst-treeview.el (newsticker-treeview-own-frame):
5582 Change default value to nil.
5583 (newsticker--treeview-list-add-item)
5584 (newsticker--treeview-propertize-tag): Show item title in tooltip.
5585
5586 2008-06-20 Martin Blais <blais@furius.ca>
5587 Stefan Merten <smerten@oekonux.de>
5588 David Goodger <goodger@python.org>
5589
5590 * textmodes/rst.el: New file.
5591
5592 2008-06-20 Sam Steingold <sds@gnu.org>
5593
5594 * vc.el (vc-dir-hide-up-to-date): Accept a prefix argument to also
5595 remove DIRECTORY entries.
5596
5597 2008-06-20 Eli Zaretskii <eliz@gnu.org>
5598
5599 * makefile.w32-in (distclean): Depend on `clean'.
5600 (clean): Delete calc/calc-loaddefs.el~ and eshell/esh-groups.el~.
5601 (AUTOGENEL): Add $(lisp)/nxml/subdirs.el.
5602 ($(lisp)/cus-load.el): Don't use `touch'. Instead, generate an
5603 empty cus-load.el with `echo', and include "Local Variables"
5604 section to prevent the empty file from being compiled.
5605 (cus-load.el-SH, cus-load.el-CMD): New SHELLTYPE-specific targets
5606 that generate an empty cus-load.el.
5607
5608 2008-06-20 Juanma Barranquero <lekktu@gmail.com>
5609
5610 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
5611 Don't copy ldefs-boot.el over loaddefs.el.
5612 (bootstrap-clean): Remove loaddefs.el and don't depend on it.
5613 (loaddefs.el-SH, loaddefs.el-CMD): Don't add autoloads and defvars
5614 to loaddefs.el; they are not needed now. Add coding cookie.
5615
5616 2008-06-20 Miles Bader <miles@gnu.org>
5617
5618 * face-remap.el (face-remap-add-relative, face-remap-set-base):
5619 Strip unnecessary list levels from SPECS.
5620 (buffer-face-set, buffer-face-toggle):
5621 Change argument from FACE to &rest SPECS, and strip unnecessary
5622 list levels from SPECS.
5623 (buffer-face-mode-invoke): Change argument from FACE to SPECS.
5624
5625 2008-06-20 Jason Rumney <jasonr@gnu.org>
5626
5627 * international/fontset.el (setup-default-fontset): Specify script
5628 for latin use of iso10646-1. Fix use of lang tags.
5629
5630 2008-06-19 Miles Bader <miles@gnu.org>
5631
5632 * face-remap.el (text-scale-increase): Start from zero if
5633 text-scale-mode isn't enabled.
5634
5635 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
5636
5637 * faces.el (face-set-after-frame-default): Re-apply explicit `font'
5638 frame parameters after setting up the `default' face.
5639
5640 2008-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5641
5642 * faces.el (face-set-after-frame-default): Don't exclude `default'.
5643
5644 2008-06-18 Glenn Morris <rgm@gnu.org>
5645
5646 * mouse.el (buffer-face-mode-invoke): Declare.
5647
5648 * Makefile.in (ELCFILES): Add org/org-id.elc.
5649
5650 * calendar/holidays.el (calendar-cursor-holidays): Accept optional date.
5651 * calendar/cal-menu.el (cal-menu-holidays-menu):
5652 Use calendar-cursor-holidays rather than cal-menu-today-holidays.
5653 (cal-menu-today-holidays): Remove function.
5654
5655 * calendar/cal-menu.el (cal-menu-holiday-window-suffix): Simplify.
5656 (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
5657 (cal-menu-list-holidays-previous-year, calendar-mouse-goto-date):
5658 Remove unused functions.
5659 (calendar-mouse-view-diary-entries): Use format rather than concat.
5660
5661 * calendar/cal-menu.el (cal-menu-x-popup-menu): Turn it into a macro.
5662 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
5663 (calendar-mouse-print-dates): Adapt for cal-menu-x-popup-menu change.
5664
5665 * calendar/cal-menu.el (cal-menu-event-to-date): Remove function.
5666 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
5667 (calendar-mouse-view-other-diary-entries, calendar-mouse-print-dates)
5668 (cal-menu-set-date-title): Use calendar-cursor-to-date rather than
5669 cal-menu-event-to-date.
5670
5671 * calendar/cal-html.el (cal-html-cursor-month, cal-html-cursor-year):
5672 Handle mouse events.
5673 * calendar/cal-tex.el (cal-tex-cursor-year)
5674 (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
5675 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
5676 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
5677 (cal-tex-cursor-week-monday, cal-tex-cursor-filofax-2week)
5678 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily)
5679 (cal-tex-cursor-day): Handle mouse events. Rename ARG to N.
5680 (cal-tex-cursor-month): Mark N as optional.
5681 * calendar/cal-menu.el (calendar-mouse-tex-day)
5682 (calendar-mouse-tex-week, calendar-mouse-tex-week2)
5683 (calendar-mouse-tex-week-iso, calendar-mouse-tex-week-monday)
5684 (calendar-mouse-tex-filofax-daily, calendar-mouse-tex-filofax-2week)
5685 (calendar-mouse-tex-filofax-week, calendar-mouse-tex-month)
5686 (calendar-mouse-tex-month-landscape, calendar-mouse-tex-year)
5687 (calendar-mouse-tex-filofax-year, calendar-mouse-tex-year-landscape):
5688 Remove functions.
5689 (cal-menu-context-mouse-menu): Replace the above functions with the
5690 cal-tex versions. Add HTML submenu.
5691
5692 2008-06-17 Nick Roberts <nickrob@snap.net.nz>
5693
5694 * progmodes/gdb-ui.el (gud-gdba-marker-filter): Don't switch to
5695 text command mode.
5696 (gdb): Explain that gud-gdb is needed for text command mode.
5697
5698 2008-06-17 Martin Rudalics <rudalics@gmx.at>
5699
5700 * window.el (split-height-threshold): Remove spurious extra line.
5701
5702 2008-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5703
5704 * calendar/calendar.el (calendar-cursor-to-date): Add argument `event'.
5705 (calendar-set-mark):
5706 * calendar/diary-lib.el (diary-insert-entry):
5707 * calendar/solar.el (calendar-sunrise-sunset): Use it.
5708 * calendar/cal-menu.el (calendar-mouse-sunrise/sunset)
5709 (calendar-mouse-insert-diary-entry, calendar-mouse-set-mark): Delete.
5710 (cal-menu-context-mouse-menu): Use calendar-set-mark,
5711 diary-insert-entry, and calendar-sunrise-sunset instead.
5712
5713 * vc.el (vc-deduce-fileset): Add arg `only-files'.
5714 (vc-next-action): Pass the new arg.
5715 (vc-register): Don't use `only-files'.
5716 Don't set `backup-inhibited' in the current buffer.
5717
5718 2008-06-17 Miles Bader <miles@gnu.org>
5719
5720 * mouse.el (mouse-appearance-menu): Use buffer-face-mode.
5721
5722 * face-remap.el (buffer-face-mode-face)
5723 (buffer-face-mode-remapping): New variables.
5724 (buffer-face-mode, buffer-face-set, buffer-face-toggle)
5725 (buffer-face-mode-invoke): New functions.
5726 (variable-pitch-mode-remapping): Variable removed.
5727 (variable-pitch-mode): Rewrite as an interface to `buffer-face-mode'.
5728
5729 * face-remap.el (internal-lisp-face-attributes): New variable.
5730 (face-attrs-more-relative-p, face-remap-order): New functions.
5731 (face-remap-add-relative): Use `face-remap-order'.
5732
5733 2008-06-17 Glenn Morris <rgm@gnu.org>
5734
5735 * mouse.el (x-select-font): Declare.
5736
5737 * calendar/calendar.el (calendar-move-hook):
5738 Add calendar-update-mode-line as an option.
5739 (calendar-date-echo-text): New user option.
5740 (calendar-generate-month): Set `day'. Use calendar-date-echo-text.
5741 (calendar-insert-indented): Simplify newline insertion.
5742 (calendar-describe-mode): Remove unused function.
5743 (calendar-mode-line-entry): New function.
5744 (calendar-mode-line-format): Doc fix. Use calendar-mode-line-entry.
5745 Mark as risky.
5746 (calendar-mouse-other-month): Remove function.
5747 (calendar-other-month): Handle mouse events.
5748 (calendar-goto-info-node): Call fit-window-to-buffer.
5749 (calendar-mode): Use define-derived-mode. Doc fix.
5750 (calendar-update-mode-line): Tweak whitespace.
5751
5752 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
5753
5754 * vc-dispatcher.el (vc-dir-child-files): Use vc-string-prefix-p.
5755 (vc-dir-marked-only-files): vc-string-prefix-p.
5756
5757 2008-06-16 Nick Roberts <nickrob@snap.net.nz>
5758
5759 * progmodes/gdb-ui.el (gdb-memory-set-address)
5760 (gdb-memory-set-repeat-count): Allow keyboard bindings.
5761 (gdb-memory-mode-map): Bind above functions respectively
5762 to 'S' and 'N'.
5763
5764 2008-06-16 Derek Upham <sand@blarg.net> (tiny change)
5765
5766 * nxml/nxml-mode.el (nxml-mode): Use run-mode-hooks.
5767
5768 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
5769
5770 * log-view.el (vc-diff-internal): Declare for compiler.
5771
5772 * vc-bzr.el (log-view-per-file-logs):
5773 * vc-svn.el (log-view-per-file-logs): Pacify byte compiler.
5774
5775 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
5776
5777 * mouse.el (mouse-appearance-menu-map): New var.
5778 (mouse-appearance-menu): New function.
5779 Bind it to S-down-mouse-1.
5780
5781 2008-06-15 Juri Linkov <juri@jurta.org>
5782
5783 * info.el (Info-toc): Call Info-toc-nodes instead of Info-build-toc.
5784 (Info-toc, Info-insert-toc): Increment nth's index to add PARENT
5785 as the second element.
5786 (Info-build-toc): Add PARENT element extracted from the Up pointer.
5787 Don't print progress messages.
5788 (Info-toc-nodes): New variable and function.
5789 (Info-index-nodes): Optimize non-string file name case.
5790 (Info-breadcrumbs-depth): Increment the default value from 3 to 4.
5791 (Info-insert-breadcrumbs): Use the cached document structure instead
5792 of visiting all ancestor nodes. Remove the initial `>'.
5793
5794 2008-06-15 Dan Nicolaescu <dann@ics.uci.edu>
5795
5796 * log-view.el (log-view-diff-changeset): New function.
5797 (log-view-mode-map, log-view-mode-menu): Bind it.
5798 (log-view-per-file-logs, log-view-vc-fileset)
5799 (log-view-vc-backend): New variables.
5800 (log-view-find-revision, log-view-modify-change-comment)
5801 (log-view-annotate-version): Throw an error if the log is for more
5802 than one file and we can't find the current file. Get the current
5803 file from log-view-vc-fileset if necessary.
5804 (log-view-diff): Get the current file from log-view-vc-fileset if
5805 necessary.
5806
5807 * vc.el (vc-print-log): Set log-view-vc-fileset and log-view-vc-backend.
5808
5809 * vc-hg.el (vc-hg-log-view-mode): Call the log method only once.
5810 (vc-hg-log-view-mode): Declare for compiler.
5811 (vc-hg-log-view-mode): Set log-view-per-file-logs and
5812 log-view-file-re.
5813 (vc-hg-diff): If no file is passed, use default-directory for cwd.
5814
5815 * vc-bzr.el (vc-bzr-log-view-mode): Set log-view-per-file-logs.
5816
5817 * vc-svn.el (vc-svn-log-view-mode): New derived mode.
5818
5819 2008-06-15 Michael Albinus <michael.albinus@gmx.de>
5820
5821 * net/tramp.el (tramp-handle-start-file-process):
5822 Clear modification time of the connection buffer.
5823 (tramp-sh-file-name-handler): Reset `tramp-locked' in case of error.
5824 (tramp-open-connection-setup-interactive-shell): Flush cache, and
5825 restart `tramp-maybe-open-connection' when the remote system has
5826 been changed. Throw 'uname-changed event.
5827 (tramp-maybe-open-connection): Catch it.
5828
5829 * net/tramp-cmds.el (tramp-cleanup-all-connections):
5830 Reset `tramp-locked'.
5831
5832 2008-06-15 Ulf Jasper <ulf@web.de>
5833
5834 * net/newst-treeview.el (newsticker--treeview-list-update)
5835 (newsticker--treeview-item-update)
5836 (newsticker--treeview-tree-update)
5837 (newsticker-treeview-jump, newsticker-group-add-group)
5838 (newsticker-group-move-feed, newsticker-group-delete-group):
5839 Remove window dedication.
5840 (newsticker--group-manage-orphan-feeds): Handle ill-valued
5841 newsticker-groups.
5842 (newsticker--treeview-tree-expand): Don't manage orphan feeds here.
5843
5844 2008-06-15 Andreas Schwab <schwab@suse.de>
5845
5846 * vc-cvs.el (vc-cvs-status-extra-headers): Don't match newline
5847 when parsing CVS/Repository.
5848
5849 * wdired.el (wdired-search-and-rename): Fix undocumented change.
5850
5851 2008-06-15 Ulf Jasper <ulf@web.de>
5852
5853 * net/newst-plainview.el (newsticker-faces, newsticker-feed-face)
5854 (newsticker-extra-face, newsticker-enclosure-face): Moved to
5855 net/newst-reader.el.
5856
5857 * net/newst-reader.el (newsticker-faces, newsticker-feed-face)
5858 (newsticker-extra-face, newsticker-enclosure-face): Moved from
5859 net/newst-reader.el.
5860
5861 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5862
5863 * international/encoded-kb.el (encoded-kbd-self-insert-utf-8):
5864 Catch and recover from case when the bytes we thought we were reading
5865 turn out to be something else entirely, such as latin-1 chars from
5866 quail. See bug#396.
5867
5868 2008-06-15 Dan Nicolaescu <dann@ics.uci.edu>
5869
5870 * vc.el (vc-deduce-fileset): Check if the buffer has a file.
5871 (vc-register): Call the backend function only once, instead of
5872 once for each file.
5873 (vc-next-action): Update call to vc-register.
5874 (vc-dir-register): Remove function.
5875 (vc-dir): Bind vc-register instead of vc-dir-register.
5876
5877 2008-06-14 Glenn Morris <rgm@gnu.org>
5878
5879 * Makefile.in (ELCFILES): Add net/newst-*.el.
5880
5881 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
5882
5883 * wdired.el (wdired-do-renames): New function.
5884 (wdired-finish-edit): Use it to.
5885 (wdired-preprocess-files): Don't hardcode (point-min) == 1.
5886
5887 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
5888
5889 * info.el (Info-insert-breadcrumbs): Don't break in apropos and toc.
5890
5891 2008-06-14 Martin Rudalics <rudalics@gmx.at>
5892
5893 * window.el (window--even-window-heights): Even window heights
5894 only if the selected window is higher than WINDOW.
5895 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
5896
5897 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
5898
5899 * info.el (Info-insert-breadcrumbs): Be careful to preserve history.
5900
5901 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5902
5903 * term/linux.el (terminal-init-linux): Load t-mouse.
5904
5905 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5906 Drew Adams <drew.adams@oracle.com>
5907
5908 * info.el (Info-breadcrumbs-depth): New var.
5909 (Info-insert-breadcrumbs): New function.
5910 (Info-fontify-node): Use it.
5911 (Info-mode-map): Move initialization into declaration.
5912
5913 2008-06-13 Ulf Jasper <ulf.jasper@web.de>
5914
5915 Rename net/newsticker-*.el to net/newst-*.el.
5916 * net/newst-backend.el: Rename from net/newsticker-backend.el.
5917 * net/newst-plainview.el: Rename from net/newsticker-plainview.el.
5918 * net/newst-reader.el: Rename from net/newsticker-reader.el.
5919 * net/newst-ticker.el: Rename from net/newsticker-ticker.el.
5920 * net/newst-treeview.el: Rename from net/newsticker-treeview.el.
5921 * net/newsticker-backend.el: Rename to net/newst-backend.el.
5922 * net/newsticker-plainview.el: Rename to net/newst-plainview.el.
5923 * net/newsticker-reader.el: Rename to net/newst-reader.el.
5924 * net/newsticker-ticker.el: Rename to net/newst-ticker.el.
5925 * net/newsticker-treeview.el: Rename to net/newst-treeview.el.
5926
5927 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5928
5929 * progmodes/compile.el (compilation-start): Don't disable undo in
5930 comint buffer. Don't override the comint-filter with our own.
5931 (compilation-filter): Change point's insertion-type.
5932
5933 * comint.el (comint-output-filter): Use copy-marker.
5934
5935 2008-06-13 David Reitter <david.reitter@gmail.com>
5936
5937 * textmodes/flyspell.el (mail-mode-flyspell-verify):
5938 Check message-signature-separator exists before using it.
5939
5940 2008-06-13 Dan Nicolaescu <dann@ics.uci.edu>
5941
5942 * vc.el (vc-delete-file): Bind default-directory before calling
5943 the backend.
5944 (vc-annotate-show-diff-revision-at-line): Move most of the code to ...
5945 (vc-annotate-show-diff-revision-at-line-internal): ... here.
5946 New function.
5947 (vc-annotate-show-changeset-diff-revision-at-line): New function.
5948 (vc-annotate-mode-menu): Bind it.
5949
5950 2008-06-13 Jason Rumney <jasonr@gnu.org>
5951
5952 * term/w32-win.el (mouse-set-font): Remove overridden function.
5953 (w32-select-font): Declare as obsolete alias for x-select-font.
5954
5955 2008-06-13 Daniel Engeler <engeler@gmail.com>
5956
5957 These changes add serial port access.
5958 * term.el (term-update-mode-line): Modify.
5959 (serial-port-is-file-p, serial-nice-speed-history)
5960 (serial-no-speed, serial-mode-line-speed-menu)
5961 (serial-mode-line-config-menu): New variables and constants.
5962 (serial-name-history, serial-speed-history)
5963 (serial-supported-or-barf, serial-read-name, serial-read-speed)
5964 (serial-term, serial-speed, serial-mode-line-speed-menu-1)
5965 (serial-mode-line-speed-menu, serial-update-speed-menu)
5966 (serial-mode-line-config-menu-1, serial-mode-line-config-menu)
5967 (serial-update-config-menu): New functions.
5968
5969 2008-06-13 Glenn Morris <rgm@gnu.org>
5970
5971 * menu-bar.el (menu-set-font): Use fboundp rather than functionp.
5972
5973 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Doc fix.
5974
5975 2008-06-13 Kenichi Handa <handa@m17n.org>
5976
5977 * cus-face.el (custom-face-attributes): Add :foundry.
5978
5979 * faces.el (set-face-attribute): Parse "FOUNDRY-FAMILY" here.
5980 (face-x-resources): Add :foundry.
5981 (face-valid-attribute-values): Likewise.
5982 (face-attribute-name-alist): Likewise.
5983 (describe-face): Likewise.
5984
5985 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5986
5987 * emacs-lisp/map-ynp.el (map-y-or-n-p): Accept non-char events.
5988
5989 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
5990
5991 * longlines.el (longlines-search-forward, longlines-search-backward)
5992 (longlines-re-search-forward): Use a smarter search-spaces-regexp.
5993
5994 2008-06-12 Sam Steingold <sds@gnu.org>
5995
5996 * vc.el (vc-rename-file): DTRT when the destination is a directory
5997 name and the source is a file.
5998
5999 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
6000
6001 * menu-bar.el (menu-set-font): Rename x-font-dialog to x-select-font.
6002
6003 2008-06-12 Glenn Morris <rgm@gnu.org>
6004
6005 * progmodes/f90.el (f90-beginning-of-subprogram)
6006 (f90-end-of-subprogram): Only give a message when interactive.
6007
6008 * term/mac-win.el (x-toolkit-scroll-bars): Check bound.
6009
6010 * progmodes/cperl-mode.el (cperl-info-on-command):
6011 Use display-pixel-height rather than x-display-pixel-height.
6012
6013 * mail/rmailedit.el (rmail-cease-edit):
6014 * vc-dispatcher.el (vc-dir-mode): Check tool-bar-mode is bound.
6015
6016 * emulation/edt.el (edt-xserver):
6017 * emulation/edt-mapper.el (edt-xserver): Use replace-regexp-in-string.
6018
6019 * emulation/edt-mapper.el: Drop test for Emacs < 19.
6020
6021 * mwheel.el (mouse-wheel-follow-mouse, mwheel-event-window):
6022 Evaluate definitions when compiling. Reverse tests.
6023
6024 * dframe.el (dframe-reposition-frame-emacs): Reorder test, and
6025 use unless.
6026
6027 * menu-bar.el (w32-menu-bar-open): Declare for compiler.
6028
6029 * textmodes/artist.el (x-pointer-shape):
6030 * term/x-win.el (x-parse-geometry, x-resource-name, accelerate-menu)
6031 (x-open-connection, x-server-max-request-size, x-get-resource):
6032 * term/w32console.el (x-setup-function-keys):
6033 * term/w32-win.el (x-parse-geometry, x-resource-name)
6034 (generate-fontset-menu, image-library-alist, x-open-connection)
6035 (setup-default-fontset, set-fontset-font, setup-default-fontset)
6036 (create-fontset-from-fontset-spec, create-fontset-from-x-resource)
6037 (x-get-resource):
6038 * term/mac-win.el (x-parse-geometry, x-resource-name)
6039 (x-get-selection-internal, tool-bar-mode, set-fontset-font)
6040 (new-fontset, x-display-list, x-open-connection, x-get-resource):
6041 * progmodes/gud.el (tooltip-last-mouse-motion-event, tooltip-hide)
6042 (tooltip-start-delayed-tip, tooltip-use-echo-area, tooltip-show)
6043 (tooltip-strip-prompt, tooltip-expr-to-print, tooltip-event-buffer):
6044 * progmodes/gdb-ui.el (tooltip-show, tooltip-use-echo-area)
6045 (tooltip-identifier-from-point, define-fringe-bitmap):
6046 * play/gamegrid.el (image-size):
6047 * play/bubbles.el (image-size):
6048 * mail/emacsbug.el (x-server-vendor, x-server-version):
6049 * international/mule-util.el (internal-char-font):
6050 * international/mule-diag.el (font-info, query-fontset, fontset-info)
6051 (fontset-alias-alist, fontset-list, fontset-plain-name):
6052 * international/mule-cmds.el (x-server-vendor, x-server-version):
6053 * international/fontset.el (font-encoding-charset-alist)
6054 (otf-script-alist, new-fontset, set-fontset-font)
6055 (x-pixel-size-width-font-regexp, vertical-centering-font-regexp)
6056 (fontset-list, query-fontset, x-get-resource):
6057 * emulation/edt.el (x-server-vendor):
6058 * emulation/edt-mapper.el (x-server-vendor):
6059 * emacs-lisp/map-ynp.el (x-popup-dialog):
6060 * emacs-lisp/lmenu.el (x-popup-dialog):
6061 * x-dnd.el (x-window-property, x-change-window-property)
6062 (x-get-selection-internal):
6063 * woman.el (x-list-fonts):
6064 * w32-fns.el (x-server-version):
6065 * tooltip.el (x-show-tip, x-hide-tip):
6066 * tool-bar.el (image-mask-p):
6067 * thumbs.el (image-size):
6068 * term.el (overflow-newline-into-fringe):
6069 * subr.el (scroll-bar-scale):
6070 * startup.el (x-get-resource, tool-bar-mode, image-size):
6071 * select.el (x-get-selection-internal, x-own-selection-internal)
6072 (x-disown-selection-internal):
6073 * mouse.el (generate-fontset-menu):
6074 * mouse-sel.el (x-select-text, x-cut-buffer-or-selection-value):
6075 * image.el (image-library-alist):
6076 * image-mode.el (image-size, image-refresh):
6077 * image-dired.el (clear-image-cache):
6078 * gs.el (x-display-mm-width, x-display-pixel-width)
6079 (x-display-mm-height, x-display-pixel-height)
6080 (x-change-window-property, x-display-grayscale-p, x-window-property):
6081 * frame.el (tool-bar-mode, x-display-name, x-close-connection)
6082 (x-focus-frame, x-list-fonts, x-display-screens)
6083 (x-display-pixel-height, x-display-pixel-width, x-display-mm-height)
6084 (x-display-mm-width, x-display-backing-store, x-display-save-under)
6085 (x-display-planes, x-display-color-cells, x-display-visual-class):
6086 * faces.el (internal-face-x-get-resource)
6087 (internal-set-lisp-face-attribute-from-resource, x-bitmap-file-path)
6088 (fontset-list, x-list-fonts, xw-color-defined-p, xw-color-values)
6089 (xw-display-color-p, x-display-grayscale-p, x-get-resource)
6090 (x-parse-geometry, x-create-frame, x-setup-function-keys)
6091 (tool-bar-setup):
6092 * doc-view.el (clear-image-cache, image-size, tooltip-show):
6093 * dired.el (dnd-get-local-file-name, dnd-get-local-file-uri):
6094 * dframe.el (x-display-pixel-width, x-display-pixel-height):
6095 * descr-text.el (internal-char-font):
6096 Define for compiler, for builds without X.
6097
6098 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6099
6100 * vc-rcs.el (vc-rcs-state-heuristic): Don't assume the file exists.
6101
6102 2008-06-11 Glenn Morris <rgm@gnu.org>
6103
6104 * progmodes/fortran.el (fortran-end-of-subprogram): Check for a match
6105 before trying to move there.
6106 (fortran-calculate-indent): When fortran-check-all-num-for-matching-do
6107 is non-nil, indent most terminating statements like loop body.
6108
6109 * calendar/diary-lib.el (diary-list-entries-2): Accept optional
6110 Gregorian date, and add it, not the local date, to diary-entries-list.
6111 (diary-list-entries-1): Pass Gregorian date to diary-list-entries-2.
6112
6113 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6114
6115 * progmodes/compile.el (compilation-filter): Fix up last change.
6116
6117 * term/linux.el (terminal-init-linux): Use gpm-mouse-enable.
6118
6119 * t-mouse.el (gpm-mouse-enable, gpm-mouse-disable): New functions.
6120 (gpm-mouse-mode): Make it into a proper global minor mode.
6121
6122 * files.el (save-some-buffers-action-alist): Only use recursive-edit
6123 if the user enabled recursive-minibuffers.
6124
6125 * emacs-lisp/map-ynp.el (map-y-or-n-p):
6126 Add support for scroll-other-window.
6127
6128 2008-06-11 Jason Rumney <jasonr@gnu.org>
6129
6130 * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
6131 Use tmm-menubar if menu is disabled in this frame.
6132
6133 * menu-bar.el (menu-bar-open): Determine how to open menu bar
6134 from frame type, per documentation. Add w32 case.
6135
6136 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6137
6138 * minibuffer.el (completion--merge-suffix): New function.
6139 (completion-basic-try-completion): Use it.
6140 (completion-pcm--find-all-completions): Add argument `filter'.
6141 (completion-pcm--filename-try-filter, completion-pcm--merge-try):
6142 New functions.
6143 (completion-pcm-try-completion): Use them.
6144
6145 * xt-mouse.el (turn-on-xterm-mouse-tracking)
6146 (turn-off-xterm-mouse-tracking): Use terminal-list.
6147
6148 * cus-start.el (underline-minimum-offset): Rename from
6149 x-underline-minimum-display-offset.
6150
6151 2008-06-10 David De La Harpe Golden <david@harpegolden.net> (tiny change)
6152
6153 * cus-start.el (x-underline-minimum-display-offset): Give it a type.
6154
6155 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
6156
6157 * mouse.el (mouse-select-font): New function.
6158
6159 * faces.el (face-spec-recalc): When the face is set using
6160 Customize, avoid recalculating it twice.
6161
6162 * menu-bar.el (menu-set-font): New function. Bind "Set Default
6163 Font" menu item to it. Apply selected font to all frames, and
6164 make it savable.
6165 (menu-bar-options-save): Save `default' font if changed.
6166
6167 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6168
6169 * ffap.el (ffap-string-at-point-mode-alist):
6170 Use alpha rather than lower.
6171
6172 * dired.el (dired-insert-directory): Don't assume Unix-style dir names.
6173
6174 * subr.el (momentary-string-display): Use an overlay.
6175
6176 * progmodes/compile.el (compilation-mode):
6177 Set window-point-insertion-type.
6178 (compilation-filter): Don't use insert-before-markers any more.
6179 * emacs-lisp/trace.el (trace-make-advice):
6180 Set window-point-insertion-type in the trace buffer.
6181 * startup.el (normal-top-level): Set window-point-insertion-type in
6182 *Messages*.
6183 * net/telnet.el (telnet-mode): Set window-point-insertion-type.
6184 (telnet-filter): Don't use insert-before-markers any more.
6185 * comint.el (comint-mode): Set window-point-insertion-type.
6186 (comint-output-filter): Don't use insert-before-markers any more.
6187 * button.el (make-text-button): Allow `start' to be a string.
6188
6189 2008-06-10 Juanma Barranquero <lekktu@gmail.com>
6190
6191 * emacs-lisp/autoload.el (autoload-rubric):
6192 Fix coding cookie not to force Unix EOL.
6193
6194 2008-06-10 Martin Rudalics <rudalics@gmx.at>
6195
6196 * window.el (window--splittable-p, window--try-to-split-window):
6197 Don't use with-selected-window to avoid messing up get-lru-window.
6198 Reported by David Hansen <david.hansen@gmx.net>.
6199
6200 2008-06-10 Glenn Morris <rgm@gnu.org>
6201
6202 * subr.el (locate-library): Doc fix.
6203
6204 * net/newsticker-treeview.el (w3m-toggle-inline-images): Declare.
6205 (newsticker-treeview-tool-bar-map, newsticker-treeview-mode):
6206 Check tool-bar-map is bound, for non-X builds.
6207
6208 * net/newsticker-reader.el (newsticker--next-item-image)
6209 (newsticker--previous-item-image, newsticker--previous-feed-image)
6210 (newsticker--next-feed-image, newsticker--mark-read-image)
6211 (ewsticker--mark-immortal-image, newsticker--narrow-image)
6212 (newsticker--get-all-image, newsticker--update-image)
6213 (newsticker--browse-image): Check xpm images are available.
6214 (newsticker--mark-read-image, newsticker--mark-immortal-image)
6215 (newsticker--narrow-image, newsticker--get-all-image): Doc fix.
6216
6217 * net/newsticker-plainview.el (tool-bar-map): Don't declare.
6218 (newsticker--plainview-tool-bar-map, newsticker-mode):
6219 Check tool-bar-map is bound, for non-X builds.
6220 (w3m-toggle-inline-image): Declare.
6221
6222 * net/newsticker-backend.el (tool-bar-map): Don't declare.
6223
6224 * emacs-lisp/autoload.el (autoload-rubric): Add coding cookie.
6225
6226 * finder.el (finder-font-lock-keywords): Handle ``quotes''.
6227 (finder-compile-keywords): Move let to where needed.
6228 (finder-mouse-face-on-line): Go back one more line if needed.
6229 (finder-list-matches): Use cadr.
6230 (finder-goto-xref): New function.
6231 (finder-commentary): Add buttons to jump to foo.el libraries.
6232
6233 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6234
6235 * apropos.el (apropos-function, apropos-macro, apropos-command)
6236 (apropos-variable, apropos-face, apropos-group, apropos-widget)
6237 (apropos-plist): Add apropos-short-label property.
6238 (apropos-multi-type): New variables.
6239 (apropos-command, apropos-value): Set it.
6240 (apropos-compact-layout): New custom.
6241 (apropos-print, apropos-print-doc): Use it.
6242 (apropos-print): Truncate lines.
6243
6244 2008-06-09 Kenichi Handa <handa@m17n.org>
6245
6246 * international/fontset.el (font-encoding-alist):
6247 Add an entry for "ascii-0".
6248
6249 2008-06-09 Jihyun Cho <jihyun.jo@gmail.com>
6250
6251 * language/hanja-util.el (hanja-init-load): Show the message only
6252 when loading a table.
6253
6254 2008-06-08 Ulf Jasper <ulf.jasper@web.de>
6255
6256 * net/newsticker-treeview.el (newsticker-treeview):
6257 * net/newsticker-plainview.el (newsticker-plainview):
6258 Add autoload cookie.
6259
6260 2008-06-08 Ulf Jasper <ulf.jasper@web.de>
6261
6262 * net/newsticker.el: Split up into newsticker-backend, -ticker,
6263 -reader, -plainview, and -treeview.
6264 (newsticker-version): Change to 1.99.
6265
6266 * net/newsticker-backend.el: New. Move backend functionality from
6267 newsticker.el to newsticker-backend.el.
6268 (newsticker--download-logos): New.
6269 (newsticker--sentinel-callback): New.
6270 (newsticker--set-customvar): Remove. Split up into specific
6271 functions related to retrieval, ticker, buffer, and display.
6272 (newsticker--set-customvar-retrieval): New. Extracted from
6273 `newsticker--set-customvar'.
6274 (newsticker-retrieval): New. Renamed from `newsticker-feed'.
6275 (newsticker-url-list-defaults):
6276 Use `newsticker--set-customvar-retrieval' for :set. Change :group.
6277 (newsticker-url-list): Doc changed. URL can be a function.
6278 Use `newsticker--set-customvar-retrieval' for :set. Change :group.
6279 (newsticker-retrieval-method): New.
6280 (newsticker-wget-name, newsticker-wget-arguments): Change :group.
6281 (newsticker-retrieval-interval):
6282 Use `newsticker--set-customvar-retrieval' for :set. Change :group.
6283 (newsticker-desc-comp-max): Change :group.
6284 (newsticker--cache): Doc changed.
6285 (newsticker--guid-to-string): New.
6286 (newsticker--guid): Use `newsticker--guid-to-string'.
6287 (newsticker--real-feed-name): New.
6288 (newsticker--start-feed): New. Extracted from `newsticker-start'.
6289 (newsticker-start): Use `insert-file-contents' for reading cache.
6290 Use `newsticker--start-feed'.
6291 (newsticker--stop-feed): New. Extracted from `newsticker-stop'.
6292 (newsticker-stop): Check whether `newsticker-stop-ticker' is fbound.
6293 Use `newsticker--stop-feed'.
6294 (newsticker-save-item): New.
6295 (newsticker--get-news-by-funcall): New.
6296 (newsticker-get-news): Handle new retrieval methods.
6297 (newsticker--sentinel): Use `newsticker--sentinel-work'.
6298 (newsticker--sentinel-work): New. Extracted from
6299 `newsticker--sentinel'. Use `newsticker--download-logos',
6300 `newsticker--sentinel-callback'.
6301 (newsticker--parse-atom-0.3): Use `newsticker--guid-to-string'.
6302 (newsticker--parse-atom-1.0): Fix link determination.
6303 (newsticker--parse-rss-0.91): Fix time determination.
6304 (newsticker--parse-rss-0.92): Fix time determination.
6305 (newsticker--parse-rss-2.0): Use `newsticker--guid-to-string'.
6306 (newsticker--parse-generic-feed): New arg order in
6307 `newsticker--cache-add'.
6308 (newsticker--parse-generic-items): Fix for multiple items.
6309 New arg order in `newsticker--cache-add'.
6310 (newsticker--forget-preformatted): Check whether
6311 `newsticker--buffer-set-uptodate' is fbound.
6312 (newsticker--decode-iso8601-date): Handle fractions of seconds.
6313 (newsticker--decode-rfc822-date): Partial timezone handling.
6314 (newsticker--cache-contains): Fix guid problem.
6315 (newsticker--cache-add): Swap args AGE and TIME. Fix guid problem.
6316 (newsticker--cache-save): New.
6317 (newsticker--cache-update): Use temp buffer.
6318 (newsticker--stat-num-items): Allow multiple AGE args.
6319 (newsticker--stat-num-items-total): New.
6320 (newsticker--opml-import-outlines): New.
6321 (newsticker-opml-import): Use `newsticker--opml-import-outlines'.
6322 (newsticker--do-run-auto-mark-filter): Doc changed.
6323 (newsticker-retrieve-random-message): New.
6324
6325 * net/newsticker-ticker.el: New. Move ticker functionality from
6326 net/newsticker.el to net/newsticker-ticker.el.
6327 (newsticker--ticker-timer): Rename `newsticker--display-timer' to
6328 `newsticker--ticker-timer'.
6329 (newsticker-ticker-running-p): Rename `newsticker--display-timer'
6330 to `newsticker--ticker-timer'.
6331 (newsticker--set-customvar-ticker): New. Extracted from
6332 `newsticker--set-customvar'.
6333 (newsticker-ticker-interval): Rename `newsticker-display-interval'
6334 to `newsticker-ticker-interval'. Use `newsticker--set-customvar-ticker
6335 for :set. Change :group.
6336 (newsticker-scroll-smoothly): Doc changed. Change :group.
6337 (newsticker-hide-immortal-items-in-echo-area)
6338 (newsticker-hide-old-items-in-echo-area)
6339 (newsticker-hide-obsolete-items-in-echo-area):
6340 Use `newsticker--set-customvar-ticker for :set. Change :group.
6341 (newsticker-start-ticker): Rename `newsticker--display-timer' to
6342 `newsticker--ticker-timer'. Rename `newsticker-display-interval'
6343 to `newsticker-ticker-interval'.
6344 (newsticker-stop-ticker): Rename `newsticker--display-timer' to
6345 `newsticker--ticker-timer'.
6346
6347 * net/newsticker-reader.el: New. Move reader functionality from
6348 net/newsticker.el to net/newsticker-reader.el.
6349 (newsticker--set-customvar-formatting): New. Extracted from
6350 `newsticker--set-customvar'.
6351 (newsticker-reader, newsticker-frontend): New.
6352 (newsticker-enable-logo-manipulations): Change :group.
6353 (newsticker-justification): Use `newsticker--set-customvar-formatting'
6354 for :set. Change :group.
6355 (newsticker-use-full-width): Use `newsticker--set-customvar-formatting'
6356 for :set. Change :group.
6357 (newsticker-html-renderer): Doc changed.
6358 Use `newsticker--set-customvar-formatting' for :set. Change :group.
6359 (newsticker-date-format):
6360 Use `newsticker--set-customvar-formatting' for :set. Change :group.
6361 (newsticker--insert-enclosure):
6362 Rename `newsticker--buffer-insert-enclosure' to
6363 `newsticker--insert-enclosure'. Add keymap arg.
6364 (newsticker--print-extra-elements):
6365 Rename `newsticker--buffer-print-extra-elements' to
6366 `newsticker--print-extra-elements'. Add keymap arg.
6367 (newsticker--do-print-extra-element):
6368 Rename `newsticker--buffer-do-print-extra-element' to
6369 `newsticker--do-print-extra-element'. Add keymap arg.
6370 (newsticker-show-news): Use `newsticker-frontend'.
6371
6372 * net/newsticker-plainview.el: New. Move plainview functionality
6373 from net/newsticker.el to net/newsticker-reader.el.
6374 (newsticker-plainview): New.
6375 (newsticker--set-customvar-sorting): New. Extracted from
6376 `newsticker--set-customvar'.
6377 (newsticker-sort-method): Use `newsticker--set-customvar-sorting
6378 for :set. Changed :group.
6379 (newsticker-heading-format, newsticker-item-format)
6380 (newsticker-desc-format, newsticker-statistics-format):
6381 Use `newsticker--set-customvar-formatting for :set. Change :group.
6382 (newsticker-faces): Change :group.
6383 (newsticker-default-face): Enable again.
6384 (newsticker-hide-old-items-in-newsticker-buffer)
6385 (newsticker-show-descriptions-of-new-items):
6386 Use `newsticker--set-customvar-buffer' for :set. Change :group.
6387 (newsticker-show-all-news-elements): Change :group.
6388 (newsticker-plainview-hooks): New.
6389 (newsticker-select-item-hook, newsticker-select-feed-hook)
6390 (newsticker-buffer-change-hook, newsticker-narrow-hook): Change :group.
6391 (newsticker--plainview-tool-bar-map): Rename `newsticker--tool-bar-map'
6392 to `newsticker--plainview-tool-bar-map'.
6393 (newsticker--url-keymap): Add mouse-1 binding.
6394 (newsticker-plainview): New.
6395 (newsticker-mark-all-items-of-feed-as-read): Change doc.
6396 (newsticker--buffer-do-insert-text): Use renamed
6397 newsticker--[buffer-]insert-enclosure and
6398 newsticker--[buffer-]print-extra-elements.
6399 (newsticker--buffer-set-faces): Use newsticker-default-face.
6400
6401 * net/newsticker-treeview.el: New.
6402
6403 2008-06-08 Andreas Schwab <schwab@suse.de>
6404
6405 * vc-dispatcher.el (vc-dir-children-marked-p): Fix child check.
6406
6407 * vc-cvs.el (vc-cvs-dir-status): Pass -f to cvs.
6408
6409 * vc-dispatcher.el (vc-dir-move-to-goal-column): Don't move in an
6410 empty line.
6411
6412 * minibuffer.el (minibuffer-message): Bind inhibit-quit around sit-for.
6413
6414 2008-06-08 Martin Rudalics <rudalics@gmx.at>
6415
6416 * window.el (split-height-threshold, split-width-threshold):
6417 Add choice nil.
6418 (split-window-preferred-function): Allow either nil or a function.
6419 (window--splittable-p, window--try-to-split-window):
6420 Handle changed option values.
6421
6422 (window--frame-usable-p): Handle nil argument.
6423
6424 (display-buffer): Call get-lru-window when pop-up-windows is nil
6425 and window can't be split.
6426
6427 2008-06-08 Michael Albinus <michael.albinus@gmx.de>
6428
6429 * uniquify.el (uniquify-get-proposed-name): Handle remote files.
6430
6431 * net/tramp.el (top): Quote feature names. Remove
6432 `tramp-rfn-eshadow-setup-minibuffer' from
6433 `rfn-eshadow-setup-minibuffer-hook' when unloading.
6434 (tramp-read-passwd): There is only one call to
6435 `auth-source-user-or-password' needed. Pacify byte compiler.
6436
6437 2008-06-08 Andreas Schwab <schwab@suse.de>
6438
6439 * window.el (display-buffer): Use lru window if current window
6440 cannot be split.
6441
6442 2008-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6443
6444 * apropos.el (apropos-library): New command and new button.
6445 (apropos-library-button): New function.
6446
6447 * apropos.el: Remove spurious * in docstrings.
6448 (apropos-label-face): Use variable pitch.
6449 (apropos-print): Use dolist and with-current-buffer.
6450 (apropos-print-doc): Use when.
6451
6452 * window.el (special-display-p, display-buffer):
6453 Fix up C->Elisp transcription error.
6454
6455 2008-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6456
6457 * emacs-lisp/bytecomp.el (byte-compile-current-group): New var.
6458 (byte-compile-file): Initialize it.
6459 (byte-compile-nogroup-warn): Keep track of the current group.
6460
6461 2008-06-08 Glenn Morris <rgm@gnu.org>
6462
6463 * Makefile.in (compile, compile-always, bootstrap-prepare):
6464 Explicitly pass EMACS to sub-makes that use it, for non-GNU makes.
6465
6466 2008-06-07 Jihyun Cho <jihyun.jo@gmail.com>
6467
6468 * language/hanja-util.el (hanja-init-load): Use a char-table for
6469 hanja-table.
6470 (hangul-to-hanja-char): Adjust for the above change.
6471
6472 2008-06-07 Glenn Morris <rgm@gnu.org>
6473
6474 * finder.el (finder-compile-keywords): Use lm-keywords-list rather than
6475 lm-keywords.
6476
6477 * mail/sendmail.el (mail-interactive): Add :version.
6478
6479 * term/linux.el (terminal-init-linux): Use gpm-mouse-mode rather than
6480 obsolete alias.
6481
6482 * ediff-merg.el, strokes.el, wid-edit.el, emacs-lisp/lisp-mnt.el:
6483 * emulation/edt-mapper.el, eshell/em-dirs.el, eshell/em-glob.el:
6484 * eshell/em-ls.el, eshell/em-unix.el, eshell/esh-cmd.el:
6485 * eshell/esh-io.el, eshell/esh-opt.el, eshell/esh-test.el:
6486 * eshell/esh-util.el, international/mule-cmds.el:
6487 * international/mule-diag.el, mail/smtpmail.el, net/netrc.el:
6488 * net/tls.el, progmodes/etags.el, textmodes/page-ext.el:
6489 Remove unnecessary eval-when-compiles and eval-and-compiles.
6490
6491 * Makefile.in (bootstrap-clean): Run autogen-clean.
6492 (maintainer-clean): No need to run autogen-clean now it is included in
6493 bootstrap-clean.
6494
6495 2008-06-06 Miles Bader <miles@gnu.org>
6496
6497 * Makefile.in (ELCFILES): Add gnus/nndir.elc.
6498
6499 2008-06-06 Chong Yidong <cyd@stupidchicken.com>
6500
6501 * menu-bar.el (menu-bar-options-menu): Add Menu entry for
6502 longlines mode.
6503
6504 * replace.el (replace-search-function)
6505 (replace-re-search-function): New vars.
6506 (perform-replace): Use them.
6507
6508 * longlines.el (longlines-re-search-forward): New function.
6509 (longlines-mode): Bind replace-search-function and
6510 replace-re-search-function, to ensure that replacement commands
6511 treat newlines as spaces.
6512 (longlines-show-effect): Default to a pilcrow sign.
6513
6514 2008-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6515
6516 * help.el (function-called-at-point):
6517 * help-fns.el (variable-at-point): Use emacs-lisp-mode-syntax-table
6518 even when calling find-tag-default.
6519
6520 2008-06-06 Daniel Colascione <danc@merrillpress.com>
6521
6522 * nxml/nxml-mode.el (nxml-syntax-highlight-flag)
6523 (nxml-fontify-chunk-size, nxml-clear-face, nxml-set-fontified)
6524 (nxml-clear-fontified, nxml-fontify, nxml-fontify1)
6525 (nxml-fontify-buffer, nxml-do-fontify):
6526 Remove obsolete variables and functions.
6527 (nxml-font-lock-keywords, nxml-set-face, nxml-mode)
6528 (nxml-degrade, nxml-after-change, nxml-after-change1)
6529 (nxml-extend-region, nxml-extend-after-change-region)
6530 (nxml-extend-after-change-region1, nxml-fontify-matcher)
6531 (nxml-toggle-char-ref-extra-display): Use font-lock, and
6532 font-lock-extend-region-functions in particular, to fontify
6533 nxml-mode buffers.
6534 (nxml-debug-region): New debugging helper function.
6535
6536 * nxml/nxml-rap.el (nxml-clear-inside, nxml-set-inside)
6537 (nxml-scan-after-change, nxml-move-tag-backwards):
6538 Adapt for font-lock changes.
6539
6540 * nxml/nxml-util.el (nxml-debug, nxml-debug-change)
6541 (nxml-debug-set-inside, nxml-debug-clear-inside):
6542 New debugging functions.
6543 (nxml-with-degradation-on-error): New helper macro.
6544
6545 2008-06-06 Martin Rudalics <rudalics@gmx.at>
6546
6547 * window.el (display-buffer): Remove dead call to get-lru-window.
6548
6549 2008-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6550
6551 * mail/sendmail.el (mail-interactive): Change default.
6552
6553 2008-06-05 John Paul Wallington <jpw@pobox.com>
6554
6555 * bindings.el (completion-ignored-extensions):
6556 Add .p64fsl, .d64fsl, and .dx64fsl.
6557
6558 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6559
6560 * ffap.el (ffap-prompter): Don't use the region.
6561
6562 2008-06-05 Sam Steingold <sds@gnu.org>
6563
6564 * vc-cvs.el (vc-cvs-registered): Consider a directory with a CVS
6565 subdirectory to be registered.
6566
6567 2008-06-05 Martin Rudalics <rudalics@gmx.at>
6568
6569 * window.el (display-buffer-function, special-display-p)
6570 (special-display-buffer-names, special-display-regexps)
6571 (special-display-function, same-window-p, same-window-buffer-names)
6572 (same-window-regexps, pop-up-frames, display-buffer-reuse-frames)
6573 (pop-up-frame-function, pop-up-windows, even-window-heights)
6574 (split-window-preferred-function, split-height-threshold)
6575 (window--display-buffer-1, display-buffer, pop-to-buffer):
6576 Move from window.c and buffer.c.
6577 (window--splittable-p, window--try-to-split-window)
6578 (window--frame-usable-p, window--display-buffer-2)
6579 (window--even-window-heights): New functions.
6580 (split-width-threshold): New option.
6581 (split-window-preferred-horizontally): Remove.
6582
6583 * cus-start.el: Remove corresponding declarations.
6584
6585 2008-06-05 Sam Steingold <sds@gnu.org>
6586
6587 * vc.el (vc-update): Use `save-some-buffers' instead of signaling
6588 an error on modified buffers.
6589
6590 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6591
6592 * progmodes/etags.el (tags-verify-table): Be careful to use and update
6593 tags-file-name and tags-table-list from the right buffer.
6594 (tags-table-check-computed-list, tags-table-extend-computed-list)
6595 (find-tag-noselect): Use with-current-buffer.
6596
6597 * emacs-lisp/trace.el (trace-entry-message, trace-exit-message):
6598 Use print-circle.
6599
6600 * minibuffer.el (minibuffer-local-must-match-filename-map):
6601 Declare obsolete alias for the old name.
6602
6603 * abbrev.el (unexpand-abbrev): Better preserve markers.
6604
6605 2008-06-05 Glenn Morris <rgm@gnu.org>
6606
6607 * emacs-lisp/autoload.el (autoload-rubric): New function,
6608 extracted from autoload-ensure-default-file.
6609 (autoload-ensure-default-file): Use autoload-rubric.
6610
6611 * cus-dep.el (generated-custom-dependencies-file): Doc fix.
6612 (custom-dependencies-no-scan-regexp): New variable.
6613 (custom-make-dependencies): Use with-temp-buffer and autoload-rubric.
6614 Don't scan files matching custom-dependencies-no-scan-regexp.
6615 Disable undo in the output buffer. Remove kept-new-versions wackiness.
6616
6617 * finder.el (finder-headmark): Initialize and add doc string.
6618 (generated-finder-keywords-file): Doc fix.
6619 (finder-no-scan-regexp): New variable.
6620 (finder-compile-keywords): Use a single let binding.
6621 Disable undo in the output buffer. Use autoload-rubric.
6622 Use mapc rather than mapcar. Don't scan files matching
6623 finder-no-scan-regexp. Use with-temp-buffer. Use expand-file-name
6624 rather than concat. Use directory-files to do regexp matching.
6625 No need to require jka-compr.
6626 (finder-list-keywords): Remove un-needed set-buffer. Disable undo.
6627 (finder-list-matches): Disable undo.
6628 (finder-commentary): Use let rather than let*. Disable undo.
6629 (finder-current-item): Use zerop.
6630 (finder-mode): Use define-derived-mode.
6631 (finder-exit): Doc fix. Use dolist.
6632
6633 * Makefile.in ($(lisp)/cus-load.el): Remove unnecessary rule.
6634 (custom-deps): Don't require $(lisp)/cus-load.el.
6635 (custom-deps, finder-data): Don't depend on autoloads.
6636 Should not be needed now, and doing so was causing make install to
6637 re-dump emacs post-bootstrap.
6638 (bootstrap-after): Don't run update-elclist, since modifying Makefile.in
6639 mid-build forces some things to be rebuilt.
6640
6641 2008-06-05 Miles Bader <miles@gnu.org>
6642
6643 * face-remap.el
6644 (face-remap-add-relative): Renamed from `add-relative-face-remapping'.
6645 (face-remap-remove-relative): Renamed from
6646 `remove-relative-face-remapping'.
6647 (face-remap-reset-base): Renamed from
6648 `set-default-base-face-remapping'.
6649 (face-remap-set-base): Renamed from `set-base-face-remapping'.
6650 (text-scale-increase): Renamed from `increase-buffer-face-height'.
6651 (text-scale-decrease): Renamed from `decrease-buffer-face-height'.
6652 (text-scale-adjust): Renamed from `adjust-buffer-face-height'.
6653
6654 * face-remap.el (variable-pitch-mode): Autoload.
6655
6656 2008-06-04 Sam Steingold <sds@gnu.org>
6657
6658 * vc-hg.el (vc-hg-status-extra-header, vc-hg-status-extra-headers):
6659 Generate extra status headers for a Mercurial tree.
6660
6661 2008-06-04 John Paul Wallington <jpw@pobox.com>
6662
6663 * echistory.el (electric-history-map): Define within defvar.
6664 Add docstring.
6665
6666 * font-lock.el (font-lock-turn-off-thing-lock)
6667 (font-lock-after-fontify-buffer, font-lock-after-unfontify-buffer):
6668 Use `bound-and-true-p'.
6669 (cpp-font-lock-keywords-source-directives, cpp-font-lock-keywords):
6670 Doc fixes.
6671
6672 * international/ccl.el (define-ccl-program): Add `doc-string'
6673 declaration.
6674
6675 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
6676
6677 * face-remap.el (variable-pitch-mode): Reflow docstrings.
6678 (text-scale-mode, adjust-buffer-face-height): Fix typos in docstrings.
6679
6680 2008-06-04 Trent W. Buck <trentbuck@gmail.com> (tiny change)
6681
6682 * emacs-lisp/rx.el (rx): Doc fix.
6683
6684 2008-06-04 Markus Triska <markus.triska@gmx.at>
6685
6686 * image-mode.el (image-mode-map): Add doc-view-inspired bindings.
6687
6688 2008-06-04 Miles Bader <miles@gnu.org>
6689
6690 * face-remap.el (adjust-buffer-face-height): New function.
6691 Add autoloaded keybindings in ctl-x-map.
6692 (increase-buffer-face-height, decrease-buffer-face-height):
6693 Simplify interactive spec to just "p". Remove autoloaded keybindings.
6694
6695 2008-06-03 Chong Yidong <cyd@stupidchicken.com>
6696
6697 * simple.el (line-move-1): If we did not move as far as desired,
6698 ensure that point-left and point-entered hooks are called.
6699
6700 2008-06-03 Sam Steingold <sds@gnu.org>
6701
6702 * vc-cvs.el (vc-cvs-status-extra-headers): Remove extraneous newlines.
6703
6704 2008-06-03 John Paul Wallington <jpw@pobox.com>
6705
6706 * progmodes/make-mode.el (makefile-cleanup-continuations)
6707 (makefile-warn-suspicious-lines, makefile-warn-continuations):
6708 Use `derived-mode-p'.
6709
6710 2008-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6711
6712 * Makefile.in (update-elclist): Impose a fixed collation for sorting.
6713 (ELCFILES): Update.
6714
6715 2008-06-03 Miles Bader <miles@gnu.org>
6716
6717 * face-remap.el: New file.
6718 * Makefile.in (ELCFILES): Add face-remap.elc.
6719
6720 2008-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6721
6722 * progmodes/flymake.el (flymake-process-filter): Make sure the source
6723 buffer isn't dead.
6724
6725 * obsolete/bg-mouse.el, obsolete/float.el, obsolete/hilit19.el,
6726 * obsolete/lselect.el, obsolete/mlsupport.el, obsolete/ooutline.el,
6727 * obsolete/profile.el, obsolete/rsz-mini.el, obsolete/uncompress.el,
6728 * obsolete/auto-show.el, obsolete/hscroll.el:
6729 Remove packages that were obsolete in Emacs-20, or that were obsolete
6730 in Emacs-21 and do not contain any more code.
6731
6732 * vc-dispatcher.el (vc-dir-menu-map-filter): Don't fail if
6733 vc-client-mode is not set.
6734
6735 * image-mode.el (image-mode-map): Suppress key map and bind `q'.
6736 * doc-view.el (doc-view-mode-map): Inherit from image-mode-map.
6737
6738 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords): Try to be
6739 yet a bit more clever at distinguishing / from /.
6740
6741 2008-06-03 Kenichi Handa <handa@m17n.org>
6742
6743 * Makefile.in (ELCFILES): Add $(lisp)/language/hanja-util.elc.
6744
6745 2008-06-03 Jihyun Cho <jihyun.jo@gmail.com>
6746
6747 * language/hanja-util.el: New file.
6748
6749 2008-06-03 Glenn Morris <rgm@gnu.org>
6750
6751 * progmodes/f90.el (f90-typedef-matcher, f90-looking-at-type-like):
6752 Check that end-of-word follows "type".
6753
6754 2008-06-02 Daiki Ueno <ueno@unixuser.org>
6755
6756 * epa-file.el (epa-file-write-region): Write the entire buffer
6757 content if START is nil.
6758
6759 2008-06-01 Thomas Morgan <tlm@thomasmorgan.net> (tiny change)
6760
6761 * select.el (x-get-selection): Fix typo.
6762
6763 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
6764
6765 * descr-text.el (describe-text-sexp): Use `string-match-p'. Simplify.
6766 (describe-char): Use `looking-at-p', `string-match-p' when possible.
6767
6768 2008-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6769
6770 * tar-mode.el (tar-header-block-summarize): Ensure one space around
6771 user&group.
6772
6773 2008-05-31 John Paul Wallington <jpw@pobox.com>
6774
6775 * help-fns.el (describe-variable-custom-version-info):
6776 Handle dotted `package-version' info.
6777
6778 2008-05-31 Juanma Barranquero <lekktu@gmail.com>
6779
6780 * icomplete.el (icomplete-get-keys): Doc fix. Use `when'.
6781
6782 2008-05-31 Dan Nicolaescu <dann@ics.uci.edu>
6783
6784 * vc-cvs.el (vc-cvs-after-dir-status): Support spaces in file
6785 names and improve support for unregistered files.
6786
6787 2008-05-31 Glenn Morris <rgm@gnu.org>
6788
6789 * Makefile.in (compile-last): Replace tr in `els' assignment with sed.
6790 Remove shell variable `elc'. Split tests to hopefully be more portable.
6791 Fix `sel' assignment.
6792
6793 2008-05-30 Juanma Barranquero <lekktu@gmail.com>
6794
6795 * minibuffer.el (completion-table-dynamic): Doc fix.
6796
6797 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6798
6799 * vc-cvs.el (vc-cvs-state-heuristic, vc-cvs-parse-status):
6800 Try and return `unregistered' when applicable.
6801
6802 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
6803 Don't encourage naming variables with "-flag".
6804
6805 2008-05-30 Glenn Morris <rgm@gnu.org>
6806
6807 * Makefile.in (update-elclist): Hide the warning when it does not apply,
6808 make it milder when it does.
6809 (autogen-clean): New target.
6810 (maintainer-clean): Use autogen-clean.
6811
6812 * calendar/diary-lib.el (diary-display-function): New name for
6813 diary-display-hook. Keep old name as obsolete alias. Doc fix.
6814 Change custom type and version.
6815 (diary-list-entries-hook, diary-list-entries, diary-simple-display)
6816 (diary-fancy-display): Doc fixes.
6817 (diary-list-entries, diary-include-other-diary-files)
6818 (diary-mail-entries):
6819 Use diary-display-function rather than diary-display-hook.
6820
6821 * calendar/appt.el (appt-check): Use diary-display-function rather than
6822 diary-display-hook.
6823 * calendar/cal-x.el (calendar-dedicate-diary): Update for
6824 diary-display-function replacing diary-display-hook.
6825 * org/org-agenda.el (org-get-entries-from-diary): Also set
6826 diary-display-function.
6827
6828 * calendar/cal-html.el (cal-html-list-diary-entries):
6829 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
6830 * calendar/cal-tex.el (cal-tex-list-diary-entries): Use LIST-ONLY
6831 argument of diary-list-entries rather than setting diary-display-hook.
6832
6833 2008-05-30 Kenichi Handa <handa@m17n.org>
6834
6835 * international/mule-conf.el (utf-8-with-signature): Renamed from
6836 utf-8-sig.
6837 (utf-8-auto): Adjusted for the above change.
6838
6839 * international/mule-diag.el (describe-font): Don't check fontset
6840 here, and just call font-info. Get the default font by from the
6841 default face.
6842
6843 2008-05-29 Kenichi Handa <handa@m17n.org>
6844
6845 * international/mule-conf.el (utf-8-sig, utf-8-auto):
6846 New coding systems.
6847
6848 * international/mule.el (define-coding-system): Accept :bom for utf-8.
6849
6850 2008-05-29 Espen Wiborg <espen.wiborg@telio.no> (tiny change)
6851
6852 * international/utf-7.el (utf-7-encode): Use the right escape char
6853 depending on imap/nonimap encoding.
6854
6855 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6856
6857 * minibuffer.el (completion-pcm-all-completions): Add the base-size.
6858
6859 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
6860
6861 * icomplete.el (icomplete-prospects-height): Add :group.
6862
6863 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6864
6865 * icomplete.el (icomplete-prospects-length): Make obsolete.
6866 (icomplete-prospects-height): New var.
6867 (icomplete-completions): Use it.
6868
6869 2008-05-29 David Kastrup <dak@gnu.org>
6870
6871 * autoinsert.el (auto-insert): Add :link.
6872
6873 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6874
6875 * tar-mode.el (tar-header): New field `header-start'.
6876 (tar-header-block-tokenize): Set it when useful.
6877 Drop "GNUtar " magic value, which even GNU Tar doesn't know about.
6878 (tar-header-data-end): New function.
6879 (tar-summarize-buffer): Use it.
6880 (tar-next-line): Fix goal column for long usernames.
6881 (tar-expunge-internal): Use header-start.
6882 (tar-rename-entry): Handle ustar-style long names.
6883 (tar-alter-one-field): Add optional `descriptor' argument.
6884 (tar-subfile-save-buffer): Use it.
6885
6886 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6887
6888 * tar-mode.el (tar-header): New field `header-start'.
6889 (tar-header-block-tokenize): Set header-start for longlink entries.
6890 (tar-expunge-internal): Use header-start to expunge longlink entries.
6891
6892 * files.el (hack-local-variables): Don't signal an error if the local
6893 variable section is not properly terminated.
6894
6895 * emacs-lisp/easymenu.el (easy-menu-convert-item)
6896 (easy-menu-convert-item-1): Move the duplicate-generation outside of
6897 the caching so it also works for identical entries.
6898
6899 * tar-mode.el (tar-summarize-buffer): Fix reporter initialization.
6900 (tar-mode): Use write-region-annotate-functions rather than
6901 write-contents-functions.
6902 (tar-extract): Remove unused var `pos'.
6903 (tar-subfile-save-buffer): Remove unused var `following-descs'.
6904 (tar-mode-write-file): Remove.
6905 (tar-write-region-annotate): New function.
6906
6907 * progmodes/flymake.el (flymake-save-buffer-in-file):
6908 * shadowfile.el (shadow-copy-file):
6909 * arc-mode.el (archive-*-write-file-member):
6910 * files.el (diff-buffer-with-file):
6911 * subr.el (with-temp-file): Pass nil to write-region.
6912 * jka-compr.el (jka-compr-write-region): Preserve `start's nullness.
6913
6914 * doc-view.el (doc-view-mode-map): Bind `q' to quit-window, as is
6915 the custom.
6916
6917 * files.el (basic-save-buffer-2): Pass nil rather than (point-min)
6918 to write-region.
6919
6920 2008-05-28 Glenn Morris <rgm@gnu.org>
6921
6922 * Makefile.in (update-elclist): Work around non-portability of "\"
6923 in various implementations of echo.
6924
6925 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6926
6927 * international/mule-diag.el (describe-current-coding-system):
6928 Don't assume selection-coding-system is always defined.
6929
6930 * tar-mode.el: Use defstruct and markers.
6931 (tar-setf): Remove.
6932 (tar-header): Use defstruct. Add `data-start' field.
6933 (make-tar-desc, tar-desc-tokens): Remove, folded into tar-header.
6934 (tar-desc-data-start): Remove (now called tar-header-data-start).
6935 (tar-roundup-512): New fun.
6936 (tar-header-block-tokenize): Receive a buffer position rather than
6937 a string. Handle @longLink here, be more careful about it.
6938 Create a marker for data-start.
6939 (tar-summarize-buffer): Don't handle @LongLink here any more.
6940 (tar-expunge-internal, tar-subfile-save-buffer): Don't update
6941 data-start on the following entries any more.
6942 (tar-chown-entry, tar-chgrp-entry): Use read-number.
6943
6944 * tar-mode.el: Use buffer-swap-text to separate summary and raw data.
6945 (tar-header-offset): Remove.
6946 (tar-parse-info, tar-header-offset, tar-file-name-coding-system):
6947 Not permanent any more.
6948 (tar-data-buffer): New var.
6949 (tar-data-swapped-p, tar-change-major-mode-hook)
6950 (tar-mode-kill-buffer-hook): New funs.
6951 (tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
6952 (tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
6953 (tar-clear-modification-flags, tar-alter-one-field)
6954 (tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
6955 Change accordingly.
6956
6957 2008-05-27 Dan Nicolaescu <dann@ics.uci.edu>
6958
6959 * vc-dispatcher.el (vc-directory-resynch-file): Rename to ...
6960 (vc-dir-resynch-file): ... this. Update callers.
6961 Use vc-string-prefix-p. Ignore directory args.
6962 (vc-string-prefix-p): CSE.
6963 (vc-resynch-buffer): Restore conditional.
6964
6965 * vc-hooks.el (vc-after-save): Improve test.
6966 (vc-mode-line): Fix indentation.
6967
6968 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
6969
6970 * calendar/parse-time.el (parse-time-months)
6971 (parse-time-weekdays): Add long-form month and day names.
6972
6973 2008-05-27 Glenn Morris <rgm@gnu.org>
6974
6975 * Makefile.in (update-elclist): Make errors in final sed non-fatal.
6976
6977 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6978
6979 * vc-dispatcher.el (vc-string-prefix-p): New function.
6980 (vc-dir-parent-marked-p): Use it.
6981
6982 2008-05-27 Dan Nicolaescu <dann@ics.uci.edu>
6983
6984 * vc.el (Problems): Remove fixed issues.
6985 (vc-expand-dirs): Avoid returning directories.
6986 (vc-dir): Fix C-x v v binding.
6987 (vc-make-backend-object): Fix name.
6988 (vc-dir-show-fileentry): Fix docstring.
6989 (vc-dir-refresh): Use vc-dir-backend. Fix docstring.
6990 (vc-dir-refresh-files): Use vc-dir-backend. Fix docstring.
6991 Reset the state for directories.
6992 (vc-dir-headers): Align labels.
6993 (vc-default-status-printer): Do no call prettify-state-info.
6994 (vc-deduce-fileset): Replace implementation with one based on a
6995 working older version.
6996 (vc-next-action): Use the new form of vc-deduce-fileset.
6997 Fix dealing with unregistered files.
6998
6999 * vc-dispatcher.el (vc-resynch-window): Fix mode-line updating.
7000 (vc-dir-menu-map): Fix menu title for the menu bar and the popup menu.
7001 (vc-dir-child-files): New function.
7002 (vc-dir-node-directory): New function.
7003 (vc-dir-update, vc-dir-parent-marked-p)
7004 (vc-dir-children-marked-p, vc-dir-mark-all-files)
7005 (vc-dir-marked-only-files, vc-dispatcher-selection-set): Use it.
7006
7007 * vc-cvs.el (vc-cvs-status-extra-headers): Align labels.
7008
7009 2008-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
7010
7011 * diff-mode.el (diff-context-mid-hunk-header-re): New const.
7012 (diff-font-lock-keywords, diff-context->unified)
7013 (diff-reverse-direction, diff-fixup-modifs, diff-sanity-check-hunk)
7014 (diff-hunk-text, diff-find-source-location): Use it.
7015 (diff-post-command-hook): Let the user edit the hunk headers.
7016
7017 2008-05-26 Andreas Schwab <schwab@suse.de>
7018
7019 * vc.el (vc-default-prettify-state-info): Fix formatting of an
7020 unknown state.
7021
7022 * tar-mode.el (tar-summarize-buffer): Comment fix.
7023
7024 2008-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
7025
7026 * tar-mode.el (tar-summarize-buffer): Handle GNU Tar @LongLink format.
7027
7028 2008-05-26 Glenn Morris <rgm@gnu.org>
7029
7030 * calendar/cal-hebrew.el (diary-ordinal-suffix): Declare for compiler.
7031
7032 2008-05-25 John Paul Wallington <jpw@pobox.com>
7033
7034 * proced.el (proced-next-line, proced-previous-line):
7035 Avoid calling `next-line' and `previous-line' from Lisp code.
7036
7037 2008-05-25 Ed Reingold <reingold@emr.cs.iit.edu>
7038
7039 * calendar/cal-hebrew.el (diary-hebrew-yahrzeit):
7040 Use diary-ordinal-suffix.
7041
7042 2008-05-24 Juanma Barranquero <lekktu@gmail.com>
7043
7044 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-defs)
7045 (edebug-all-forms, edebug-eval-macro-args, edebug-save-windows)
7046 (edebug-save-displayed-buffer-points, edebug-initial-mode)
7047 (edebug-trace, edebug-test-coverage, edebug-continue-kbd-macro)
7048 (edebug-print-length, edebug-print-level, edebug-print-circle)
7049 (edebug-unwrap-results, edebug-on-error, edebug-on-quit)
7050 (edebug-global-break-condition, edebug-sit-for-seconds):
7051 Remove spurious * from defcustom docstrings.
7052 (edebug-unwrap*, edebug-signal, edebug-eval-display):
7053 Improve argument/docstring consistency.
7054 (edebug-test-coverage, edebug-gensym, edebug-read)
7055 (edebug-top-level-nonstop, edebug-eval-result-list)
7056 (edebug-eval-redisplay, edebug-trace): Fix typos in docstring.
7057 (edebug-eval-defun, edebug-eval-top-level-form, edebug)
7058 (edebug-display-freq-count): Reflow docstrings.
7059 (edebug-restore-status): Doc fix.
7060
7061 2008-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7062
7063 * proced.el (proced-header-line): Use the :align-to 0 feature
7064 rather than computing the corresponding position manually.
7065 (proced-update): Don't hardcode point-min==1.
7066
7067 2008-05-24 Alan Mackenzie <acm@muc.de>
7068
7069 * progmodes/cc-mode.el (c-postprocess-file-styles): Throw an error
7070 if c-file-style is set to a non-string.
7071
7072 (c-neutralize-CPP-line): Surround by `save-excursion'.
7073 (c-neutralize-syntax-in-CPP): Optimize for speed.
7074
7075 2008-05-24 Glenn Morris <rgm@gnu.org>
7076
7077 * Makefile.in (update-elclist): New target, to update ELCFILES.
7078 (bootstrap-after): Run update-elclist.
7079
7080 2008-05-24 Ulf Jasper <ulf.jasper@web.de>
7081
7082 * icalendar.el (icalendar-version): Increase to "0.19".
7083 (icalendar--date-style): New function.
7084 (icalendar--datetime-to-diary-date): Doc fix.
7085 Use icalendar--date-style.
7086 (icalendar--datestring-to-isodate): Doc fix. Handle iso date style.
7087 (icalendar--convert-yearly-to-ical)
7088 (icalendar--convert-recurring-to-diary): Handle iso date style,
7089 use icalendar-date-style.
7090
7091 2008-05-23 Dan Nicolaescu <dann@ics.uci.edu>
7092
7093 * vc.el (vc-delete-file): Make sure the buffer is deleted and
7094 vc-dir buffers are updated.
7095
7096 2008-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
7097
7098 * vc.el (vc-delete-file): Don't try to resynch the buffer.
7099
7100 2008-05-23 Paul Rivier <paul.r.ml@gmail.com>
7101
7102 * textmodes/reftex-vars.el (reftex-extra-bindings-prefix): New var.
7103 * textmodes/reftex.el (reftex-extra-bindings-map): New var.
7104 (reftex-extra-bindings): Use it.
7105
7106 * progmodes/mixal-mode.el (mixal-mode-map): Move key-bindings
7107 away from the user-reserved keys.
7108
7109 * progmodes/ada-mode.el (ada-mode-extra-map, ada-mode-extra-prefix):
7110 New vars.
7111 (ada-create-keymap): Use them.
7112
7113 2008-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
7114
7115 * emacs-lisp/regexp-opt.el (regexp-opt): Always return
7116 a properly-grouped regexp.
7117
7118 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
7119
7120 * progmodes/cap-words.el (capitalized-words-mode):
7121 Fix typos in docstring.
7122
7123 2008-05-23 Kenichi Handa <handa@m17n.org>
7124
7125 * international/mule-conf.el: Don't define the charset `emacs'
7126 here, just put :docstring, :short-name, and :long-name.
7127
7128 2008-05-22 Kenichi Handa <handa@m17n.org>
7129
7130 * international/mule-diag.el (font-show-log): Limit each listing
7131 to 20 items.
7132
7133 2008-05-23 Nick Roberts <nickrob@snap.net.nz>
7134
7135 * progmodes/gdb-ui.el (gdb-enable-debug): New function.
7136 (gdb-annotation-rules): New entry for "thread-changed".
7137 (gdb-thread-changed): New function.
7138
7139 2008-05-23 Glenn Morris <rgm@gnu.org>
7140
7141 * Makefile.in (SOURCES): Remove, unused.
7142 (lisptagsfiles1, lisptagsfiles2): Use '*' rather than '[a-zA-Z]*'.
7143 (TAGS, TAGS-LISP): Use a single rule with multiple targets.
7144 Exclude more '*loaddefs' files.
7145 (compile-always): Simplify '.elc' deletion.
7146
7147 2008-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
7148
7149 * vc-bzr.el (vc-bzr-annotate-time): Reduce memory allocation.
7150 (vc-bzr-revision-completion-table): Handle `boundaries' argument.
7151
7152 * minibuffer.el (completion-boundaries): Change calling
7153 convention, so `string' has the same semantics as in
7154 try-completion and all-completions.
7155 (completion-table-with-context, completion--embedded-envvar-table)
7156 (completion--file-name-table)
7157 (completion-pcm--find-all-completions): Adjust code accordingly.
7158
7159 2008-05-22 Chong Yidong <cyd@stupidchicken.com>
7160
7161 * image-mode.el (image-mode-winprops): Add argument CLEANUP to
7162 prune image-mode-winprops-alist, preventing it from growing
7163 indefinitely.
7164 (image-mode-reapply-winprops): Use it.
7165
7166 2008-05-22 Teodor Zlatanov <tzz@lifelogs.com>
7167
7168 * net/netrc.el (netrc-machine): Always match if the port is not given.
7169
7170 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
7171
7172 * minibuffer.el (completion-pcm--find-all-completions):
7173 Don't add pseudo-completions.
7174
7175 * icomplete.el (icomplete-eoinput): Remove.
7176 (icomplete-overlay): New var to replace it.
7177 (icomplete-tidy): Rewrite.
7178 (icomplete-exhibit): Use an overlay.
7179 (icomplete-completions): Use completion-all-sorted-completions.
7180 Obey completion-ignore-case.
7181
7182 * files.el (locate-dominating-file): Accept non-existing argument.
7183 (project-find-settings-file): Rewrite, using locate-dominating-file.
7184
7185 2008-05-22 Kenichi Handa <handa@m17n.org>
7186
7187 * faces.el (font-weight-table, font-slant-table, font-width-table):
7188 Delete them. Don't call internal-set-font-style-table.
7189
7190 * international/mule-diag.el (font-show-log): New function.
7191
7192 * international/fontset.el (script-representative-chars): Add more
7193 chars for latin. Add data for symbol.
7194 (setup-default-fontset): Add entries for phonetic, armenian, and symbol.
7195
7196 2008-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7197
7198 * minibuffer.el (completion-all-sorted-completions): New var.
7199 (completion--flush-all-sorted-completions)
7200 (completion-all-sorted-completions): New functions.
7201 (minibuffer-force-complete): New command.
7202
7203 2008-05-21 Glenn Morris <rgm@gnu.org>
7204
7205 * files.el (c-postprocess-file-styles): Declare for compiler.
7206
7207 * Makefile.in: Allow for parallel byte-compiling.
7208 (ELCFILES): New variable.
7209 (.el.elc): Remove prerequisites from suffix rule. Print a message.
7210 (compile-first, compile-main, compile-last): New targets.
7211 (compile-always): Simplify - delete .elc files, then `make compile'.
7212
7213 * Makefile.in (compile-calc): Use glob rather than find.
7214 ($(lisp)/progmodes/cc-mode.elc): Use $@.
7215
7216 * eshell/esh-module.el: No need for cl when compiling.
7217
7218 * eshell/eshell.el (eshell-defgroup): New alias.
7219 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
7220 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
7221 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
7222 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
7223 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
7224 * eshell/em-xtra.el: Use eshell-defgroup rather than defgroup.
7225 Autoload the custom group. Set generated-autoload-file.
7226 * eshell/em-basic.el, eshell/esh-module.el: Require eshell,
7227 for eshell-defgroup.
7228 * eshell/esh-module.el (eshell-load-defgroups): Remove.
7229 Require esh-groups rather than loading it.
7230
7231 2008-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7232
7233 * proced.el (proced-header-line): New variable and new function.
7234 (proced-mode): Set header-line-format.
7235 (proced-update): Set proced-header-line.
7236 (proced-send-signal): Use proced-header-line.
7237
7238 2008-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7239
7240 * macros.el (insert-kbd-macro): Use prin1-char.
7241
7242 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
7243
7244 * minibuffer.el (completion-boundaries): New function.
7245 (completion--some): Delay errors.
7246 (complete-with-action, completion-table-with-context):
7247 Handle `boundaries' case.
7248 (completion--try-word-completion): Avoid partial-completion
7249 when the user hasn't entered anything yet.
7250 (minibuffer-local-map, minibuffer-local-filename-completion-map)
7251 (minibuffer-local-must-match-map, minibuffer-local-completion-map)
7252 (minibuffer-local-must-match-filename-map, minibuffer-local-ns-map):
7253 Setup default keybindings.
7254 (completion--embedded-envvar-re): New var.
7255 (completion--embedded-envvar-table): Use it. Handle `boundaries' case.
7256 (completion--file-name-table): Handle `boundaries' case.
7257 (completion-pcm--pattern->regex): Avoid pathological backtracking.
7258 (completion-pcm--all-completions): Add a `prefix' arg.
7259 (completion-pcm--find-all-completions): New function.
7260 (completion-pcm-all-completions, completion-pcm-try-completion):
7261 Use it.
7262
7263 * icomplete.el (icomplete-completions): Don't use `predicate' with
7264 a table of a different type than `candidates'.
7265
7266 2008-05-20 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7267
7268 * proced.el (proced-goal-column): Rename from proced-procname-column.
7269 (proced-goal-header-re): Rename from proced-procname-column-regexp.
7270 (proced-move-to-goal-column): Rename from proced-move-to-procname.
7271 (proced-header-face, proced-header-regexp): Remove.
7272 (proced-font-lock-keywords): Remove proced-header-face.
7273 (proced-header-alist, proced-sorting-schemes-re): New variables.
7274 (proced): Rename Proced buffer to *Proced*.
7275 (proced-next-line, proced-previous-line): New commands.
7276 (proced-do-mark, proced-do-mark-all, proced-toggle-marks)
7277 (proced-hide-processes): Do not treat first line as special.
7278 (proced-header-space): New function.
7279 (proced-update): Use header-line-format.
7280 Initialize proced-header-alist and proced-sorting-schemes-re.
7281 Set proced-goal-column. Include proced-command in mode-name.
7282 (proced-send-signal): Use header-line-format for *Marked
7283 Processes* buffer.
7284 (proced-sort): Restrict minibuffer completion to applicable
7285 sorting schemes.
7286 (proced-sorting-scheme-p): Use proced-sorting-schemes-re.
7287
7288 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
7289
7290 * icomplete.el (icomplete-simple-completing-p):
7291 Allow icomplete-with-completion-tables to say "use it everywhere".
7292 (icomplete-completions): Obey completion-styles. Try to accommodate
7293 partial-completion style.
7294
7295 2008-05-20 Michael Olson <mwolson@gnu.org>
7296
7297 * files.el (project-find-settings-file): Change concat to
7298 expand-file-name.
7299
7300 2008-05-19 Tom Tromey <tromey@redhat.com>
7301
7302 * files.el (normal-mode): Call hack-project-variables.
7303 (hack-local-variables-confirm): Add 'project' argument.
7304 (hack-local-variables-apply): New function.
7305 (hack-local-variables): Use it.
7306 (project-class-alist, project-directory-alist): New variables.
7307 (project-get-alist): New function.
7308 (project-collect-bindings-from-alist)
7309 (project-collect-binding-list, set-directory-project)
7310 (project-find-settings-file, project-define-from-project-file)
7311 (hack-project-variables): New functions.
7312
7313 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7314
7315 * emacs-lisp/cl-specs.el (destructuring-bind): Fix spec.
7316
7317 2008-05-19 Juanma Barranquero <lekktu@gmail.com>
7318
7319 * faces.el (font-weight-table): Fix typo in docstring.
7320
7321 2008-05-18 David Hull <david@snap.com> (tiny change)
7322
7323 * vc-hg.el (vc-hg-annotate-re): Recognize the output of --follow.
7324 (vc-hg-annotate-command): Allow white space before version number.
7325
7326 2008-05-18 Jay Belanger <jay.p.belanger@gmail.com>
7327
7328 * calc/calc-yank.el (calc-register-alist): New variable.
7329 (calc-set-register, calc-get-register, calc-copy-to-register)
7330 (calc-insert-register, calc-add-to-register, calc-append-to-register)
7331 (calc-prepend-to-register): New functions.
7332
7333 * calc/calc-ext.el (calc-init-extensions): Add keybindings for
7334 `calc-copy-to-register' and `calc-insert-register'.
7335 Autoload new register functions.
7336
7337 * calc/calc-help.el (calc-r-prefix-help): Add help for register
7338 functions.
7339
7340 2008-05-18 Dan Nicolaescu <dann@ics.uci.edu>
7341
7342 * vc.el (Todo): Add known problems.
7343 (vc-dir-backend): New variable.
7344 (vc-dir): Set it.
7345 (vc-make-backend-object, vc-generic-status-printer)
7346 (vc-generic-state, vc-generic-status-fileinfo-extra)
7347 (vc-dir-extra-menu): Use it.
7348 (vc-generic-dir-headers): Remove, unused.
7349
7350 * vc-dispatcher.el (vc-dir-previous-directory): Rename from
7351 vc-dir-prev-directory for consistency with vc-dir-previous-line.
7352 (vc-dir-mode-map): Fix bindings.
7353
7354 * vc-bzr.el (vc-bzr-after-dir-status): Remove unused binding.
7355
7356 2008-05-18 Jay Belanger <jay.p.belanger@gmail.com>
7357
7358 * calc/calc-yank.el (calc-kill): Make sure that only the stack is
7359 operated on.
7360 (calc-kill-region): Kill entire lines.
7361
7362 2008-05-17 Glenn Morris <rgm@gnu.org>
7363
7364 * ezimage.el (ezimage-use-images): Drop support for Emacs < 21 and
7365 simplify initial value.
7366 (defezimage): Drop support for Emacs without defimage, use a featurep
7367 test rather than fboundp when defining, drop with-no-warnings.
7368 (ezimage-insert-over-text): Move featurep test inside
7369 add-text-properties.
7370
7371 * elide-head.el (elide-head-headers-to-hide): Handle GPLv3 format.
7372
7373 * net/tramp.el (top-level): Load auth-source when compiling.
7374
7375 * progmodes/fortran.el (fortran-font-lock-keywords-2): Add .eqv., .neqv.
7376
7377 2008-05-17 Andreas Schwab <schwab@suse.de>
7378
7379 * vc-dispatcher.el (vc-dir-mode-map): Fix M-down and M-up binding.
7380
7381 2008-05-17 Dan Nicolaescu <dann@ics.uci.edu>
7382
7383 * vc.el (vc-annotate-show-diff-revision-at-line): Change
7384 vc-diff-internal arg to match what vc-deduce-fileset returns now.
7385
7386 2008-05-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7387
7388 * menu-bar.el (menu-bar-select-buffer): Reinsert it as msb.el uses it.
7389
7390 2008-05-17 Jim Meyering <meyering@redhat.com>
7391
7392 * ido.el (ido-save-history): Do not emit a trailing newline at the
7393 end of the ido history file.
7394
7395 2008-05-16 John Paul Wallington <jpw@pobox.com>
7396
7397 * vc-dispatcher.el (top-level): Revert previous change: require cl
7398 when compiling.
7399
7400 2008-05-16 Eric S. Raymond <esr@snark.thyrsus.com>
7401
7402 * vc.el (vc-default-status-printer)
7403 (vc-default-prettify-state-info): Enhance the state prettyprinter
7404 to deal better with unknown states and indirect through it when
7405 painting vc-dir buffers.
7406
7407 2008-05-16 John Paul Wallington <jpw@pobox.com>
7408
7409 * vc-dispatcher.el (top-level): Don't require cl when compiling.
7410 (vc-dir-mode-map): Fix backquote.
7411 (vc-at-event): Doc fix. Use `make-symbol' instead of `gensym'.
7412
7413 2008-05-16 Michael Albinus <michael.albinus@gmx.de>
7414
7415 * net/tramp.el (tramp-handle-write-region): Fix check for short track.
7416 Reported by Glenn Morris <rgm@gnu.org>.
7417
7418 2008-05-16 Eric S. Raymond <esr@snark.thyrsus.com>
7419
7420 * vc.el: Remove my analysis of SCCS/RCS concurrency issues from
7421 the end of the file, it was good work at one time but has been
7422 stale since 1995 and may now be actively misleading.
7423 * vc-cvs.el (vc-cvs-status-extra-headers): Extract and display the
7424 CVS repository and module (assumptions for the latter a bit iffy).
7425 * vc-svn.el (vc-svn-status-extra-headers): Extract and display the
7426 SVN repository.
7427
7428 2008-05-16 Juanma Barranquero <lekktu@gmail.com>
7429
7430 * vc-rcs.el (vc-rcs-create-tag):
7431 * vc-sccs.el (vc-sccs-create-tag):
7432 Fix typo in error message and pass backend arg.
7433
7434 2008-05-15 Michael Albinus <michael.albinus@gmx.de>
7435
7436 * net/tramp.el (tramp-file-name-for-operation): Add `make-temp-name'.
7437
7438 2008-05-15 Teodor Zlatanov <tzz@lifelogs.com>
7439
7440 * net/tramp.el: Load auth-source library.
7441 (tramp-read-passwd): Use it for password, not login.
7442
7443 2008-05-15 Shigeru Fukaya <shugeru.fukaya@gmail.com>
7444
7445 * ses.el (ses-goto-print): Use move-to-column rather than forward-char.
7446 (ses-print-cell): Use string-width, truncate-string-to-width,
7447 delete-region rather than length, substring, delete-char.
7448 (ses-setup): Set inhibit-point-motion-hooks to t.
7449 Calculate position by actually moving point rather than just using
7450 unibyte character length.
7451 (ses-mode): Set indent-tabs-mode to nil.
7452 (ses-center): Use string-width rather than length.
7453
7454 2008-05-15 Eric S. Raymond <esr@snark.thyrsus.com>
7455
7456 * vc-cvs.el, vc-git.el, vc-hg.el, vc-hooks.el, vc-mcvs.el,
7457 * vc-rcs.el, vc-sccs.el, vc-svn.el, vc.el:
7458 Rename vc-*-create-snapshot and vc-*-retrieve-snapshot to
7459 vc-*-create-tag and vc-*-retrieve-tag respectively.
7460
7461 * vc-dispatcher.el: Fix an incorrect buffer name and remove an
7462 unneeded defalias.
7463
7464 * vc.el, vc-dispatcher.el (vc-dir-menu-map-filter): Move.
7465
7466 * vc.el, vc-dispatcher.el (vc-dir-menu-map): Remove assumption
7467 about buffer names.
7468
7469 2008-05-15 Glenn Morris <rgm@gnu.org>
7470
7471 * vc-hooks.el (vc-directory-resynch-file): Fix declaration.
7472
7473 * org/org-exp.el (org-infojs-options-inbuffer-template):
7474 Fix declaration.
7475
7476 * progmodes/cc-mode.el (declare-function): Add compat definition.
7477 (awk-mode-syntax-table, c-awk-unstick-NL-prop): Declare for compiler.
7478
7479 2008-05-14 Eric S. Raymond <esr@snark.thyrsus.com>
7480
7481 * vc-dispatcher.el (vc-dispatcher-selection): Change the returned
7482 list to a cons so the caller can get back both expanded and
7483 unexpanded filesets.
7484 * vc.el (vc-deduce-fileset, vc-next-action, vc-diff-internal)
7485 (vc-merge, vc-version-diff, vc-print-log, vc-revert, vc-rollback):
7486 Change handling of selection-set returns as required.
7487
7488 2008-05-15 John Paul Wallington <jpw@pobox.com>
7489
7490 * add-log.el (top-level): Don't require cl when compiling.
7491
7492 * arc-mode.el (archive-add-new-member): Use `derived-mode-p'.
7493 (archive-*-extract): Use `zerop'.
7494 (archive-*-write-file-member): Use `or', use `zerop'.
7495
7496 * diff-mode.el (diff-current-defun): Use `buffer-local-value'.
7497
7498 * ibuffer.el (ibuffer-assert-ibuffer-mode): New defsubst.
7499 (ibuffer-mark-interactive, ibuffer-set-mark)
7500 (ibuffer-insert-buffer-line, ibuffer-redisplay-current)
7501 (ibuffer-map-lines, ibuffer-switch-format)
7502 (ibuffer-update-title-and-summary)
7503 (ibuffer-redisplay-engine): Use it.
7504
7505 * ibuf-ext.el (ibuffer-interactive-filter-by-mode)
7506 (ibuffer-set-filter-groups-by-mode, ibuffer-list-buffer-modes)
7507 (define-ibuffer-filter mode, define-ibuffer-filter used-mode)
7508 (define-ibuffer-sorter major-mode, ibuffer-mark-unsaved-buffers)
7509 (ibuffer-mark-read-only-buffers)
7510 (ibuffer-mark-dired-buffers): Use `buffer-local-value'.
7511
7512 * ibuf-macs.el (ibuffer-aif, ibuffer-awhen, ibuffer-save-marks)
7513 (define-ibuffer-column, define-ibuffer-sorter)
7514 (define-ibuffer-op, define-ibuffer-filter): Add declarations
7515 containing indentation specs, replacing equivalent top-level
7516 forms that set `lisp-indent-function' properties.
7517 (define-ibuffer-op): Use `derived-mode-p'.
7518 (define-ibuffer-filter): Remove redundant `concat' call.
7519
7520 2008-05-14 Michael Albinus <michael.albinus@gmx.de>
7521
7522 * net/tramp.el (tramp-echo-mark): Update docstring.
7523 (tramp-echo-mark-marker): New defconst.
7524 (tramp-check-for-regexp): Use it.
7525
7526 2008-05-14 Eric S. Raymond <esr@snark.thyrsus.com>
7527
7528 * vc.el (vc-deduce-fileset): Do the right thing when visiting a
7529 buffer (say, a log buffer or diff buffer) with a vc-dir buffer
7530 as parent.
7531
7532 2008-05-14 John Paul Wallington <jpw@pobox.com>
7533
7534 * international/mule.el (convert-define-charset-argument):
7535 Remove period from end of error message.
7536 (coding-system-mnemonic): Doc fix.
7537 (ctext-pre-write-conversion): Doc fix.
7538
7539 2008-05-14 Simon Marshall <simon@gnu.org>
7540
7541 * obsolete/fast-lock.el (fast-lock-cache-directories): Remove "."
7542 from its default value and give it the risky-local-variable
7543 property (CVE-2008-2142).
7544
7545 2008-05-14 Kenichi Handa <handa@m17n.org>
7546
7547 * language/korean.el ("Korean"): Set `iso639-language'
7548 property to `ko'.
7549
7550 * language/japanese.el ("Japanese"): Set `iso639-language'
7551 property to `ja'.
7552
7553 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
7554 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK")
7555 ("Chinese-GB18030"): Set `iso639-language' property to `zh'.
7556
7557 * international/mule-cmds.el (set-language-environment):
7558 Set current-iso639-language.
7559
7560 * international/fontset.el (setup-default-fontset): For kana, han,
7561 hangul, and cjk-misc, move an entry with font-spec at the end.
7562 (generate-fontset-menu): Exclude fontset-auto* from the list.
7563
7564 * composite.el (compose-chars-after): Assume that WINDOW is always
7565 non-nil.
7566
7567 * faces.el (font-weight-table, font-slant-table)
7568 (font-swidth-table): Declare them by defconst. Change the format
7569 of elements. Call internal-set-font-style-table after their
7570 declaration.
7571 (face-valid-attribute-values): Call font-family-list. Get values
7572 for width, weight, and slant from font-xxx-table.
7573
7574 * cus-face.el (custom-face-attributes): Add "thin" for :weight.
7575
7576 2008-05-13 John Paul Wallington <jpw@pobox.com>
7577
7578 * ibuffer.el (ibuffer-buffer-file-name): New function.
7579 (define-ibuffer-column filename): Use it.
7580
7581 * ibuf-ext.el (define-ibuffer-filter filename): Use it.
7582
7583 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
7584
7585 * talk.el (talk): Simplify. Pass display arg to talk-add-display
7586 as a string.
7587 (talk-add-display): Simplify. Accept only string args.
7588
7589 2008-05-13 Jay Belanger <jay.p.belanger@gmail.com>
7590
7591 * calc/calc.el (calc-mode-map): Remove old keybinding for `calc-yank'.
7592
7593 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7594
7595 * Makefile.in (bootstrap-prepare): Don't chmod files.
7596 (autoloads): Do it here instead, where it's actually needed.
7597
7598 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
7599
7600 * tool-bar.el (tool-bar-make-keymap): Account for the optional
7601 KEY-BINDING-DATA field in menu-item list.
7602
7603 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7604
7605 * dired.el (dired-read-dir-and-switches): Move things about to use less
7606 recursion during macroexpansion.
7607
7608 * dired.el (dired-read-dir-and-switches): Use read-file-name.
7609
7610 * dired.el (dired-read-dir-and-switches): Ignore ., .., and
7611 completion-ignored-extension directories if there's something else.
7612 (dired-mark-if, dired-map-over-marks, dired-readin, dired-revert)
7613 (dired-remember-marks, dired-undo, dired-build-subdir-alist)
7614 (dired-internal-do-deletions, dired-mark-files-in-region, dired-mark)
7615 (dired-toggle-marks, dired-change-marks, dired-unmark-all-files):
7616 buffer-read-only -> inhibit-read-only.
7617
7618 2008-05-12 Eric S. Raymond <esr@snark.thyrsus.com>
7619
7620 * vc.el (vc-expand-dirs): Stop this function from tossing out
7621 explicitly specified files.
7622
7623 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
7624
7625 * smerge-mode.el (smerge-apply-resolution-patch): Don't pass nil
7626 to `insert'.
7627
7628 2008-05-12 Dan Nicolaescu <dann@ics.uci.edu>
7629
7630 * vc.el (vc-annotate-show-diff-revision-at-line): Remove incorrect
7631 cons. Use vc-annotate-backend.
7632 (with-vc-file, edit-vc-file): Remove unused macros.
7633
7634 2008-05-12 Teodor Zlatanov <tzz@lifelogs.com>
7635
7636 * mail/smtpmail.el: Add autoload for `auth-source-user-or-password'.
7637 (smtpmail-try-auth-methods): Use it.
7638
7639 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
7640
7641 * emacs-lisp/cl.el (cl-set-nthcdr): Make it a defsubst so that
7642 (setf (nthcdr ..) ..) doesn't require CL at runtime.
7643
7644 2008-05-11 Carsten Dominik <dominik@science.uva.nl>
7645
7646 * org/org.el (org-modules): Repair problems with loading org-jsinfo.org.
7647
7648 2008-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
7649
7650 * vc-bzr.el (vc-bzr-sha1, vc-bzr-command-discarding-stderr)
7651 (vc-bzr-revision-completion-table): Use process-file.
7652 (vc-bzr-working-revision): Pass relative file names.
7653
7654 * diff-mode.el (diff-hunk-header-re): Refine the regexp.
7655
7656 2008-05-11 Juri Linkov <juri@jurta.org>
7657
7658 * wid-edit.el (widget-image-directory): Change default image data
7659 subdirectory from "custom" to "images/custom".
7660
7661 * info.el (Info-next-preorder): Let-bind `Info-history' to nil
7662 before recursive call to `Info-next-preorder' to not add
7663 intermediate nodes to the history.
7664
7665 * isearch.el: Put isearch-scroll property on recenter-top-bottom.
7666
7667 * emulation/cua-base.el: Put isearch-scroll property
7668 on cua-scroll-up and cua-scroll-down.
7669
7670 2008-05-11 Eric S. Raymond <esr@snark.thyrsus.com>
7671
7672 * vc-hooks.el (vc-recompute-state): Remove (dead code).
7673
7674 2008-05-10 Dan Nicolaescu <dann@ics.uci.edu>
7675
7676 * vc-dispatcher.el (ewoc): Require.
7677 (vc-log-edit, vc-buffer-sync): Declare for byte compiler.
7678
7679 * vc-hg.el (vc-hg-diff, vc-hg-annotate-command): Use when not if.
7680
7681 2008-05-10 Chong Yidong <cyd@stupidchicken.com>
7682
7683 * term/w32-win.el (x-colors):
7684 * term/mac-win.el (x-colors):
7685 * term/x-win.el (x-colors): Re-order colors.
7686
7687 2008-05-10 Reiner Steib <reiner.steib@gmx.de>
7688
7689 * smerge-mode.el (smerge-command-prefix): Fix custom type.
7690
7691 2008-05-10 Eric S. Raymond <esr@snark.thyrsus.com>
7692
7693 * vc-dispatcher.el (vc-dir-next-directory, vc-dir-prev-directory):
7694 New functions implementing motion to next and previous directory.
7695
7696 * vc-arch.el (vc-arch-command):
7697 * vc-bzr.el (vc-bzr-command):
7698 * vc-cvs.el (vc-cvs-command):
7699 * vc-dispatcher.el (vc-do-command):
7700 * vc-git.el (vc-git-command):
7701 * vc-hg.el (vc-hg-command):
7702 * vc-mcvs.el (vc-mvcs-command):
7703 * vc-mtn.el (vc-mtn-command):
7704 * vc-sccs.el (vc-sccs-command, vc-sccs-workfile)
7705 (vc-sccs-workfile-unchanged-p):
7706 * vc-svn.el (vc-svn-command, vc-svn-create-repo):
7707 * vc-rcs.el (all methods): Remove assumption about what a nil
7708 argument to vc-do-command means. This means no buffer name needs
7709 to be hardcoded into the dispatcher layer, and it's better to be
7710 explicit anyway.
7711
7712 * vc-svn.el (vc-svn-dir-state-heuristic): Remove.
7713
7714 2008-05-10 Dan Nicolaescu <dann@ics.uci.edu>
7715
7716 * vc.el: Update todo.
7717
7718 * vc-sccs.el (vc-sccs-dir-status):
7719 * vc-rcs.el (vc-rcs-dir-status): Avoid using results from multiple
7720 backends and returning up to date files.
7721
7722 * vc-hooks.el (vc-prefix-map): Remove duplicate binding.
7723
7724 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com>
7725
7726 * vc.el (vc-dir):
7727 * vc-hooks.el: Tweak the VC directory bindings. These are now
7728 documented in the manual.
7729
7730 * vc-dispatcher.el (vc-dir-update, vc-dir-parent-marked-p)
7731 (vc-dir-children-marked-p): Remove the vc-dir-insert-directories global.
7732 (vc-dispatcher-selection-set): Allow callers to pass in an
7733 observer flag that says no buffer sync is required.
7734 * vc.el (vc-deduce-fileset, vc-print-log, vc-version-diff):
7735 Use the observer flag.
7736
7737 2008-05-09 Michael Albinus <michael.albinus@gmx.de>
7738
7739 * simple.el (start-file-process): Clarify docstring.
7740
7741 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com>
7742
7743 * vc-sccs.el, vc-svn.el, vc-git.el, vc-hg.el, vc-mtn.el:
7744 Remove stub implementations of, and references to, wash-log.
7745 * vc-rcs.el (vc-rcs-comment-history):
7746 * vc-cvs.el (vc-cvs-comment-history):
7747 Inline the code that used to be wash-log.
7748
7749 * vc-sccs.el (vc-sccs-checkin, vc-sccs-checkout, vc-sccs-rollback)
7750 (vc-sccs-revert, vc-sccs-steal-lock, vc-sccs-modify-change-comment)
7751 (vc-sccs-print-log, vc-sccs-diff): Grok directories.
7752 * vc-rcs.el (vc-sccs-checkin, vc-sccs-checkout)
7753 (vc-rcs-revert, vc-rcs-steal-lock, vc-rcs-modify-change-comment)
7754 (vc-rcs-print-log): Grok directories.
7755
7756 2008-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7757
7758 * vc.el (vc-mark-resolved): Add `backend' argument.
7759 (vc-next-action): Pass it the backend.
7760 (vc-next-action, vc-checkout, vc-mark-resolved, vc-version-diff)
7761 (vc-merge, vc-rollback, vc-update, vc-transfer-file, vc-delete-file)
7762 (vc-default-comment-history, vc-default-create-snapshot)
7763 (vc-default-retrieve-snapshot, vc-default-revert, vc-annotate)
7764 (vc-annotate-revision-previous-to-line)
7765 (vc-annotate-show-diff-revision-at-line, vc-annotate-warp-revision):
7766 * vc-svn.el (vc-svn-checkout):
7767 * vc-mcvs.el (vc-mcvs-checkout):
7768 * vc-hooks.el (vc-state, vc-default-workfile-unchanged-p)
7769 (vc-working-revision, vc-before-save, vc-mode-line):
7770 Prefer vc-call-backend to vc-call so as not to recompute the backend.
7771
7772 * vc.el (vc-deduce-fileset): Don't require the checkout-model and the
7773 state to be consistent since it's often an unwarranted restriction.
7774 Don't return the state either.
7775 (vc-next-action): Check that the state is consistent.
7776 (vc-diff-internal, vc-version-diff, vc-print-log, vc-revert)
7777 (vc-rollback, vc-update): Adapt to new return value of
7778 vc-deduce-fileset.
7779
7780 * vc-dispatcher.el (vc-dispatcher-browsing): Use derived-mode-p.
7781 (vc-dir-prepare-status-buffer): Use vc-dispatcher-browsing.
7782 (vc-dispatcher-in-fileset-p): New fun.
7783 (vc-dispatcher-selection-set): Use it to properly handle directories.
7784
7785 2008-05-09 Dan Nicolaescu <dann@ics.uci.edu>
7786
7787 * vc.el (vc-version-diff, vc-print-log, vc-revert, vc-rollback)
7788 (vc-update): Remove unused let bindings.
7789
7790 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com>
7791
7792 * vc.el (vc-deduce-fileset, vc-next-action, vc-version-diff)
7793 (vc-diff, vc-revert, vc-rollback, vc-update):
7794 * vc-dispatcher.el (vc-dispatcher-selection-set):
7795 Get rid of 4 special cases in fileset selection. This involved
7796 changing the return value of (vc-deduce-fileset) so that it passes
7797 back a deduced state as well as a deduced back end.
7798
7799 2008-05-08 Sam Steingold <sds@gnu.org>
7800
7801 * progmodes/compile.el (compilation-minor-mode-map)
7802 (compilation-mode-map): Bind "g" to recompile and "q" to quit-window.
7803 * progmodes/grep.el (grep-mode-map): Use `set-keymap-parent' to connect
7804 it to `compilation-minor-mode-map' (instead of an explicit `cons').
7805
7806 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
7807
7808 * org/org.el (org-modules, org-format-latex-options):
7809 * org/org-archive.el (org-archive-stamp-time)
7810 (org-archive-save-context-info):
7811 * org/org-faces.el (org-hide):
7812 * org/org-irc.el (org-irc-parse-link):
7813 * org/org-macs.el (org-call-with-arg, org-autoload):
7814 * org/org-mew.el (org-mew-store-link):
7815 * org/org-remember.el (org-remember-store-without-prompt)
7816 (org-remember-templates): Fix typos in docstrings.
7817
7818 * org/org-info.el (org-info-store-link): Remove leftover docstring.
7819
7820 * org/org-bbdb.el (org-bbdb-export): Remove leftover docstring.
7821 (org-bbdb-anniversary-field, org-bbdb-extract-date-fun)
7822 (org-bbdb-anniv-split): Fix typos in docstrings.
7823
7824 * org/org-publish.el (org-publish-project-alist): Doc fixes.
7825 (org-publish-use-timestamps-flag): Reflow docstring.
7826 (org-publish-files-alist): Fix typos in docstring.
7827
7828 2008-05-07 Sam Steingold <sds@gnu.org>
7829
7830 * pcvs-util.el (cvs-bury-buffer): Revert my patch: quit-window
7831 appears to be too aggressive with window removal.
7832
7833 2008-05-08 Michael McNamara <mac@mail.brushroad.com>
7834
7835 * progmodes/verilog-mode.el (verilog-type-font-keywords):
7836 Add leda and 0in as pragma keywords.
7837 (verilog-pretty-expr): Support lining up assignments which include
7838 part selects.
7839 (verilog-mode): More portable check for the availability of
7840 hideshow support.
7841 (verilog-do-indent): Remove special indent for declarations inside
7842 a parenthetical list. The code is ill-advised, and doesn't work
7843 given the new user defined types.
7844 (verilog-set-auto-endcomments): Enhance function automatic
7845 endcomment to support functions that return user defined types.
7846 (verilog-mode): Add code to tell which-function-mode minor mode
7847 that Verilog supports this feature.
7848
7849 2008-05-08 Eli Zaretskii <eliz@gnu.org>
7850
7851 * epa-file.el: Require epa-hook.
7852
7853 * loadup.el ("epa-hook"): Load epa-hook instead of epa-file-hook.
7854
7855 * epa-hook.el: Renamed from epa-file-hook.el, to avoid
7856 file-names clashes on 8+3 filesystems. Provide epa-hook.
7857
7858 * org/org-jsinfo.el: Renamed from org-infojs.el, to avoid
7859 file-names clashes on 8+3 filesystems.
7860
7861 2008-05-08 Carsten Dominik <dominik@science.uva.nl>
7862
7863 * org/org.el (org-read-date-get-relative): Interpret lone
7864 weekday abbreviation as relative to today.
7865
7866 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
7867
7868 * abbrev.el (define-abbrev-table):
7869 * composite.el (toggle-auto-composition):
7870 * json.el (json-alist-p, json-plist-p):
7871 * minibuffer.el (completion-table-with-predicate):
7872 * ps-mule.el (ps-mule-external-libraries):
7873 * emacs-lisp/advice.el (ad-special-form-p):
7874 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7875 * eshell/em-smart.el (eshell-review-quick-commands):
7876 * progmodes/python.el (python-comment-line-p, python-blank-line-p)
7877 (python-skip-out, python-check-comint-prompt):
7878 Don't use `iff' in docstrings.
7879
7880 * international/robin.el (robin-package-alist): Fix typo in docstring.
7881 (robin-current-package-name): Doc fix.
7882 (robin-activate): Don't use `iff' in docstring.
7883
7884 2008-05-07 Eric S. Raymond <esr@snark.thyrsus.com>
7885
7886 * vc.el, vc-dispatcher.el: VC-Dired support removed.
7887 The code uses a ewoc-based implementation now.
7888 * vc-hooks.el: Support for Meta-CVS has been removed.
7889
7890 2008-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7891
7892 * tool-bar.el: Choose images dynamically.
7893 (tool-bar-make-keymap, tool-bar-find-image): New function.
7894 (tool-bar-find-image-cache): New var.
7895 (tool-bar-local-item, tool-bar-local-item-from-menu):
7896 Don't select the image yet, do it later in tool-bar-make-keymap.
7897
7898 2008-05-07 Andreas Schwab <schwab@suse.de>
7899
7900 * window.el: Require 'cl when compiling.
7901
7902 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
7903
7904 * vc-dispatcher.el (vc-dir-insert-directories): Default to t.
7905
7906 2008-05-07 Glenn Morris <rgm@gnu.org>
7907
7908 * subr.el (ignore-errors): Move here from cl-macs.el.
7909 * emacs-lisp/cl-macs.el (ignore-errors): Move to subr.el.
7910
7911 * progmodes/fortran.el (fortran-mode): Fix font-lock-syntactic-keywords
7912 oddness.
7913
7914 2008-05-06 Eric S. Raymond <esr@snark.thyrsus.com>
7915
7916 * vc-hooks.el (vc-find-file-hook):
7917 * vc-dispatcher.el (vc-resynch-window): Decouple vc-dispatcher
7918 further from vc.el.
7919 * vc.el (vc-dir-mode): Move VC-specific context menu entries here.
7920
7921 2008-05-06 Wilson Snyder <wsnyder@wsnyder.org>
7922
7923 * progmodes/verilog-mode.el (verilog-getopt-file):
7924 Cleanup warning message format.
7925 (verilog-auto, verilog-auto-arg, verilog-auto-ascii-enum)
7926 (verilog-auto-inout, verilog-auto-inout-module)
7927 (verilog-auto-input, verilog-auto-inst, verilog-auto-inst-param)
7928 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
7929 (verilog-auto-reg-input, verilog-auto-reset, verilog-auto-sense)
7930 (verilog-auto-sense-sigs, verilog-auto-tieoff)
7931 (verilog-auto-unused, verilog-auto-wire)
7932 (verilog-decls-get-assigns, verilog-decls-get-consts)
7933 (verilog-decls-get-gparams, verilog-decls-get-inouts)
7934 (verilog-decls-get-inputs, verilog-decls-get-outputs)
7935 (verilog-decls-get-ports, verilog-decls-get-regs)
7936 (verilog-decls-get-signals, verilog-decls-get-wires)
7937 (verilog-dir-cache-lib-filenames, verilog-dir-cache-list)
7938 (verilog-dir-cache-preserving, verilog-dir-file-exists-p)
7939 (verilog-dir-files, verilog-expand-dirnames, verilog-getopt-file)
7940 (verilog-inject-sense, verilog-library-filenames)
7941 (verilog-mode-release-date, verilog-mode-version)
7942 (verilog-modi-cache-add, verilog-modi-cache-preserve-buffer)
7943 (verilog-modi-cache-preserve-tick, verilog-modi-cache-results)
7944 (verilog-modi-get-assigns, verilog-modi-get-consts)
7945 (verilog-modi-get-gparams, verilog-modi-get-inouts)
7946 (verilog-modi-get-inputs, verilog-modi-get-outputs)
7947 (verilog-modi-get-ports, verilog-modi-get-regs)
7948 (verilog-modi-get-signals, verilog-modi-get-sub-inouts)
7949 (verilog-modi-get-sub-inputs, verilog-modi-get-sub-outputs)
7950 (verilog-modi-get-wires, verilog-preserve-cache)
7951 (verilog-preserve-dir-cache, verilog-preserve-modi-cache)
7952 (verilog-read-sub-decls, verilog-read-sub-decls-line)
7953 (verilog-read-sub-decls-sig, verilog-subdecls-get-inouts)
7954 (verilog-subdecls-get-inputs, verilog-subdecls-get-outputs):
7955 Add caching of additional state, and rework signal extraction
7956 routines to improve AUTO expansion performance by 300%++.
7957
7958 2008-05-06 Chong Yidong <cyd@stupidchicken.com>
7959
7960 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7961 Tweak Open Watcom regexp to distinguish between errors and warnings.
7962
7963 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7964
7965 * dired.el (dired-read-dir-and-switches): Fix up last change.
7966
7967 2008-05-05 Eric S. Raymond <esr@snark.thyrsus.com>
7968
7969 * vc.el (vc-deduce-fileset): Lift all the policy and UI stuff
7970 out of this function, move it to vc-dispatcher-selection-set.
7971
7972 2008-05-05 Sam Steingold <sds@gnu.org>
7973
7974 * window.el (delete-other-windows-vertically): New function.
7975
7976 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7977
7978 * dired.el (dired-read-dir-and-switches):
7979 Obey read-file-name-completion-ignore-case.
7980
7981 2008-05-05 Nick Roberts <nickrob@snap.net.nz>
7982
7983 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7984 Add regexp for Open Watcom compiler output.
7985
7986 2008-05-05 Phil Sung <psung@mit.edu> (tiny change)
7987
7988 * progmodes/python.el (python-block-pairs): Align finally with except.
7989
7990 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7991
7992 * vc-rcs.el (vc-rcs-fetch-master-state): Fix inf-loop.
7993
7994 2008-05-05 Tom Tromey <tromey@redhat.com>
7995
7996 * smerge-mode.el (smerge-start-session): Don't call smerge-next if
7997 looking at conflict marker.
7998
7999 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8000
8001 * vc-dispatcher.el (vc-dir-mark-buffer-changed): Fix typo
8002 client-mode -> vc-client-object, and guess `funcall' was meant.
8003 (vc-dir-mode): Rename client-mode -> vc-client-mode.
8004
8005 2008-05-05 Dan Nicolaescu <dann@ics.uci.edu>
8006
8007 * net/zeroconf.el (dbus-call-method, dbus-register-signal)
8008 (dbus-debug): Move declarations outside eval-when-compile.
8009
8010 2008-05-04 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8011
8012 * proced.el (proced-command-alist): Fix system-type values.
8013 Fix defcustom.
8014 (proced-sorting-schemes-alist, proced-sorting-scheme): New variables.
8015 (proced-sort-pcpu, proced-sort-pmem, proced-sort-pid)
8016 (proced-sort-start, proced-sort, proced-sort-time): New commands.
8017 (proced-update): Use proced-sorting-scheme. Update modeline.
8018 (proced-send-signal): Use nreverse.
8019 (proced-sorting-scheme-p): New function.
8020
8021 2008-05-04 Andreas Schwab <schwab@suse.de>
8022
8023 * vc.el: Require dired when compiling.
8024
8025 * minibuffer.el (completion--insert-strings): Don't delete past bol.
8026
8027 2008-05-03 Glenn Morris <rgm@gnu.org>
8028
8029 * ediff-diff.el, ediff-help.el, ediff-merg.el, ediff-mult.el:
8030 * ediff-ptch.el, ediff-util.el, ediff-wind.el, ediff.el:
8031 Simplify compilation requirements.
8032 * ediff-init.el, ediff-vers.el: Remove unnecessary variable
8033 declarations.
8034
8035 2008-05-03 Dave Love <fx@gnu.org>
8036
8037 * progmodes/python.el (python-beginning-of-statement):
8038 Loop at least once (fixes 2008-02-21 change).
8039
8040 2008-05-03 Eli Zaretskii <eliz@gnu.org>
8041
8042 * ls-lisp.el (ls-lisp-insert-directory): Use `string-width'
8043 instead of `length' for comparing length of user and group names.
8044
8045 2008-05-03 Eric S. Raymond <esr@snark.thyrsus.com>
8046
8047 * vc-dispatcher.el: New file, separates out the UI and command
8048 execution machinery from VCS-specific logic left in vc.el.
8049 The separation is not yet completely clean, but it's a good start.
8050 * vc.el: This file is about 1700 lines shorter now.
8051 Remove obsolete logentry-check from the backend API.
8052 * vc-sccs.el (vc-sccs-logentry-check): Remove. This was the only
8053 implementation of the logentry-check method, and it guarded against
8054 a log length limit that has probably been obsolete for 15 years (!).
8055
8056 2008-05-02 Sam Steingold <sds@gnu.org>
8057
8058 * progmodes/compile.el (compilation-start): Move setting of
8059 compilation-directory after (funcall mode) as that resets local
8060 variables, this fixes recompile in grep buffers.
8061 * progmodes/grep.el (grep-mode-map): Bind "g" to recompile (like
8062 in dired &c).
8063
8064 2008-05-02 Eric S. Raymond <esr@snark.thyrsus.com>
8065
8066 * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
8067 * vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
8068 * vc-svn.el, vc.el (vc-*-checkout-model): Make sure every backend
8069 has one of these and that all are called in compatible ways.
8070 * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
8071 * vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
8072 * vc-svn.el, vc.el (vc-*-revision-granularity): Make sure every
8073 backend has one of these.
8074
8075 2008-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
8076
8077 * progmodes/octave-mod.el (octave-abbrev-table): Move defvar and
8078 initialization into define-abbrev-table. Use :regexp.
8079 (octave-mode-syntax-table): Don't set word syntax for `.
8080
8081 * files.el (minibuffer-with-setup-hook): Allow `fun' expressions rather
8082 than only value.
8083
8084 * dired.el (dired-read-dir-and-switches):
8085 Set minibuffer-completing-file-name and call substitute-in-file-name.
8086 (dired-format-columns-of-files): Use completion--insert-strings.
8087
8088 * minibuffer.el (completion-hilit-commonality): Revert last change:
8089 the leftover code was actually useful.
8090 (completion--insert-strings): Use string-width rather than length.
8091
8092 2008-05-02 Sam Steingold <sds@gnu.org>
8093
8094 * vc.el (vc-dir-mode-map): Enable mouse bindings.
8095 (vc-at-event): New macro: run the body at the even location.
8096 (vc-dir-menu, vc-dir-toggle-mark): Use it.
8097 (vc-dir-mark-file, vc-dir-unmark-file): Move only on non-mouse events.
8098 * subr.el (mouse-event-p): Check if the event is mouse-related.
8099
8100 2008-05-02 Nick Roberts <nickrob@snap.net.nz>
8101
8102 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
8103 Don't throw error if no file is found.
8104
8105 2008-05-02 Juanma Barranquero <lekktu@gmail.com>
8106
8107 * vc-hooks.el (vc-call, vc-state): Fix typos in docstrings.
8108 (vc-default-state-heuristic): Doc fix.
8109
8110 2008-05-02 Richard Sharman <rsharman@pobox.com>
8111
8112 * hilit-chg.el (highlight-changes-mode): Remove references to
8113 hooks that no longer exist. Because define-minor-mode is used the
8114 hook highlight-changes-mode-hook exists and can do what both the
8115 old hooks used to do. The documentation at the top of the file
8116 was updated to demonstrate this.
8117 (highlight-changes-mode): Remove commented out call to a hook
8118 function that is no longer there.
8119 (hilit-chg-set): Remove running of highlight-changes-enable-hook.
8120
8121 2008-05-02 Eric S. Raymond <esr@snark.thyrsus.com>
8122
8123 * vc.el (vc-default-dired-state-info): Change name of primitive
8124 to prettify-state-info, in preparation for ripping out dired mode.
8125 * vc-bzr.el (vc-bzr-dired-state-info): Change name of primitive
8126 to prettify-state-info, in preparation for ripping out dired mode.
8127 * vc-hooks.el (vc-toggle-read-only): Throw an error when a user
8128 tries this on a version-controlled buffer. It will do useless or
8129 actively bad things on any version control system newer than RCS.
8130 * vc-hooks.el (vc-dired-resynch-file):
8131 * vc.el (vc-dired-resynch-file): Change name of primitive to
8132 vc-directory-resynch-file, preparing to remove dired.
8133
8134 2008-05-02 Dan Nicolaescu <dann@ics.uci.edu>
8135
8136 * vc-rcs.el (vc-rcs-state): Fix typos.
8137
8138 * vc.el (vc-register): Change argument order so that the prefix
8139 argument is assigned correctly.
8140 (vc-next-action, vc-dir-register): Update for the above change.
8141
8142 2008-05-01 Juri Linkov <juri@jurta.org>
8143
8144 * replace.el (occur-read-primary-args): Set default to the car of
8145 regexp-history and display it in the prompt, but don't add to the
8146 list of minibuffer defaults. Bind history-add-new-input to nil to
8147 not add automatically `default'. For empty input return `default'.
8148 Otherwise, add `input' to regexp-history and return it.
8149 (occur-1): Signal an error for the empty regexp.
8150
8151 * progmodes/compile.el (compilation-auto-jump):
8152 Set window point to `pos' explicitly.
8153
8154 2008-05-01 Eric S. Raymond <esr@snark.thyrsus.com>
8155
8156 * vc-bzr.el (vc-bzr-state): Allow this to return 'ignored
8157 when appropriate.
8158 * vc-sccs.el (vc-sccs-state): Call vc-sccs-unregistered so
8159 we report the 'unregistered state reliably.
8160 * vc-rcs.el (vc-rcs-state): Call vc-rcs-unregistered so
8161 we report the 'unregistered state reliably.
8162 * vc-git.el (vc-git-state): Call vc-git-unregistered so
8163 we report the 'unregistered state reliably.
8164 * vc-hooks.el (vc-state): Document that vc-unregistered is
8165 now expected to be returned reliably.
8166 * vc.el (vc-default-dired-state): Change needs-patch state to
8167 needs-update, since the name now shows up in dir-status listings
8168 and was somewhat misleading.
8169 * vc-cvs.el (vc-cvs-delete-file): Don't do a "cvs commit"
8170 immediately after removing the file.
8171 * vc.el (vc-next-action): More informative messages when a fileset
8172 is in a mixed state or files are missing.
8173
8174 2008-05-01 Sam Steingold <sds@gnu.org>
8175
8176 * vc.el (vc-delete-file): Check if the file has uncommitted changes.
8177
8178 2008-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8179
8180 * Makefile.in: Revert incorrect fix for claimed bootstrap breakage.
8181
8182 2008-05-01 Daiki Ueno <ueno@unixuser.org>
8183
8184 * epa-file-hook.el: New file split from epa-file.el.
8185 * epa-file.el: Require 'epa-file-hook.
8186 (epa-file-handler): Add autoload cookie.
8187 * loadup.el: Load epa-file-hook.
8188 * startup.el (command-line): Eval the body of auto-encryption-mode.
8189
8190 2008-05-01 Dan Nicolaescu <dann@ics.uci.edu>
8191
8192 * vc.el (vc-dir-mode-map): Don't bind "r".
8193
8194 * vc-hg.el (vc-hg-extra-fileinfo): New defstruct.
8195 (vc-hg-status-printer): New function.
8196 (vc-hg-after-dir-status): Deal with copied and renamed files.
8197 (vc-hg-dir-status): Add flag to show copied files.
8198
8199 2008-05-01 John Paul Wallington <jpw@pobox.com>
8200
8201 * ibuffer.el (ibuffer-last-sorting-mode): New variable.
8202 (ibuffer-do-sort-by-recency): Reverse sorting order if last
8203 sorting mode was recency.
8204
8205 * ibuf-macs.el (define-ibuffer-sorter): Define the sorter to
8206 reverse sorting order if last sorting mode was the sorter's.
8207
8208 2008-05-01 Jason Rumney <jasonr@gnu.org>
8209
8210 * w32-fns.el (w32-charset-info-alist): Map vietnamese to windows-1258.
8211
8212 2008-04-30 John Paul Wallington <jpw@pobox.com>
8213
8214 * ibuffer.el (define-ibuffer-column filename): When the major mode
8215 is `vc-dir-mode' show the buffer's default directory.
8216
8217 * ibuf-ext.el (define-ibuffer-filter filename): Likewise when the
8218 major mode is `vc-dir-mode' use the buffer's default directory.
8219
8220 2008-04-30 Sam Steingold <sds@gnu.org>
8221
8222 * vc.el (vc-dir-delete-file): Add.
8223 (vc-dir-mode-map): Bind "r" to vc-dir-delete-file, like in PCL-CVS.
8224 (vc-delete-file): Do not barf when the file has been already deleted.
8225
8226 2008-04-30 Dan Nicolaescu <dann@ics.uci.edu>
8227
8228 * emacs-lisp/lisp-mode.el (lisp-mode-map): Add menu.
8229
8230 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
8231
8232 * progmodes/octave-mod.el (octave-help): New function.
8233 * progmodes/octave-hlp.el: Delete.
8234 * info-look.el (octave-mode): Add operator index.
8235
8236 * vc.el (vc-checkout): Typo.
8237
8238 2008-04-30 Dan Nicolaescu <dann@ics.uci.edu>
8239
8240 * menu-bar.el (menu-bar-tools-menu): Reorder, place Games last.
8241 Add "..." in the appropriate places.
8242
8243 * epa.el (epa-key-list-mode-map): Add more menu entries.
8244 Add "..." in the appropriate places.
8245
8246 * dired.el (dired-mode-map): Add :help.
8247
8248 * vc.el (vc-deduce-fileset): Add new parameter.
8249 (vc-dir-marked-only-files): New function.
8250 (vc-next-action): Don't ignore directories, look at the files
8251 inside them.
8252 (vc-dir-mode): Document how the mark/unmark commands work.
8253
8254 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
8255
8256 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
8257 Rule out trailing spaces in file and directory names as well.
8258
8259 * minibuffer.el (completion--do-completion): Move point even if the
8260 completion makes no change.
8261 (completion-pcm-try-completion): Fix computation of new point.
8262
8263 2008-04-30 David Hansen <david.hansen@gmx.net>
8264
8265 * dired.el: Require 'cl.
8266
8267 2008-04-30 Nick Roberts <nickrob@snap.net.nz>
8268
8269 * progmodes/gdb-ui.el (gdb-frame-handler-1): Make overlay arrow
8270 hollow if not in innermost frame.
8271
8272 2008-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
8273 Make `checkout-model' apply to filesets.
8274 * vc-hooks.el (vc-checkout-model): Rewrite.
8275 (vc-before-save, vc-after-save): Adjust callers accordingly.
8276 * vc.el (vc-editable-p, vc-next-action, vc-checkout, vc-update)
8277 (vc-transfer-file): Adjust callers accordingly.
8278 * vc-rcs.el (vc-rcs-checkout-model): Adjust arg.
8279 (vc-rcs-state, vc-rcs-state-heuristic, vc-rcs-receive-file)
8280 (vc-rcs-checkout, vc-rcs-fetch-master-state): Use vc-rcs-checkout-model
8281 instead of vc-checkout-model.
8282 * vc-mcvs.el (vc-mcvs-revert):
8283 Use vc-mcvs-checkout-model i.s.o vc-checkout-model.
8284 * vc-cvs.el (vc-cvs-checkout-model): Adjust arg.
8285 (vc-cvs-revert): Use vc-cvs-checkout-model i.s.o vc-checkout-model.
8286 * vc-svn.el (vc-svn-checkout-model):
8287 * vc-hg.el (vc-hg-checkout-model):
8288 * vc-git.el (vc-git-checkout-model):
8289 * vc-bzr.el (vc-bzr-checkout-model): Adjust arg.
8290
8291 * dired.el (dired-read-dir-and-switches): Replace last change with
8292 a new approach that mixes read-file-name and read-directory-name.
8293
8294 * files.el (read-buffer-to-switch):
8295 Avoid making assumptions about `other-buffer'.
8296
8297 2008-04-29 Sam Steingold <sds@gnu.org>
8298
8299 * vc.el (vc-dir-mode-hook): Add normal hook.
8300 (vc-dir-mode): Run it.
8301
8302 2008-04-29 Nick Roberts <nickrob@snap.net.nz>
8303
8304 * progmodes/gdb-ui.el (gdb-display-buffer): Don't pop up GUD buffer.
8305 Always split windows.
8306 (gdb-speedbar-timer-fn): Only raise frame after user input.
8307 (gdb-same-frame): Reverse initial value.
8308 (gdb-display-gdb-buffer): Check for GUD buffer in other frames.
8309
8310 * progmodes/gud.el (gud-speedbar-buttons): Raise frame in
8311 gdb-speedbar-timer-fn.
8312
8313 2008-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
8314
8315 * uniquify.el (uniquify-rationalize-a-list): Beware of side-effects.
8316
8317 2008-04-29 Daiki Ueno <ueno@unixuser.org>
8318
8319 * epa.el (epa-key-list-mode-map): Add menu.
8320 (epa-delete-keys, epa-import-keys): Fix typo.
8321
8322 2008-04-29 Glenn Morris <rgm@gnu.org>
8323
8324 * find-cmd.el (top-level): Does not need cl when compiling.
8325
8326 2008-04-29 Phil Jackson <phil@shellarchive.co.uk>
8327
8328 * find-cmd.el: New file.
8329
8330 2008-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
8331
8332 * minibuffer.el (completion-hilit-commonality): Remove leftover code.
8333 (completion-pcm--pattern->regex): Let `group' be a list of symbols.
8334 (completion-pcm--hilit-commonality): New function.
8335 (completion-pcm-all-completions): Use it.
8336
8337 * minibuffer.el (completion-common-substring): Mark obsolete.
8338 (completions-first-difference, completions-common-part):
8339 Move from simple.el.
8340 (completion-hilit-commonality): New fun.
8341 (display-completion-list, completion-emacs21-all-completions)
8342 (completion-emacs22-all-completions): Use it.
8343 * simple.el (completions-first-difference, completions-common-part):
8344 Move to minibuffer.el.
8345 (choose-completion-string): Use field functions and minibufferp.
8346 (completion-setup-function): Don't set completions faces.
8347
8348 2008-04-29 Glenn Morris <rgm@gnu.org>
8349
8350 * calendar/calendar.el (calendar-nth-named-absday)
8351 (calendar-nth-named-day):
8352 * calendar/diary-lib.el (diary-list-sexp-entries, diary-float):
8353 * calendar/holidays.el (holiday-float): Doc fixes.
8354
8355 * emacs-lisp/check-declare.el (check-declare-errmsg): Fix counting in
8356 the `full' case.
8357
8358 * org/org-agenda.el (calendar-iso-from-absolute):
8359 * org/org.el (calendar-absolute-from-iso, calendar-iso-from-absolute):
8360 Fix declarations.
8361
8362 2008-04-28 Nick Roberts <nickrob@snap.net.nz>
8363
8364 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Make breakpoint
8365 icons work for assembler, i.e. FILE.s, FILE.S (not disassembly).
8366 (gdb-goto-breakpoint): Likewise for visiting breakpoints.
8367 (gdb-assembler-custom): Be careful not to match other addresses.
8368
8369 2008-04-29 Jason Rumney <jasonr@gnu.org>
8370
8371 * battery.el (battery-status-function): Use w32-battery-status
8372 on Windows.
8373 (battery-echo-area-format): Make apm format the general case.
8374 (battery-mode-line-format): Merge apm and pmset formats as the
8375 general case.
8376
8377 2008-04-29 Nick Roberts <nickrob@snap.net.nz>
8378
8379 * progmodes/gdb-ui.el (gdb-info-stack-custom):
8380 Use gud-tool-bar-item-visible-no-fringe.
8381 (gdb-display-buffer): Don't pop new buffer if gud-comint-buffer
8382 is already visible in frame. Remove optional size parameter
8383 and add optional frame parameter.
8384
8385 * progmodes/gud.el (gud-display-line): Only consider visible
8386 frames when looking for source buffer.
8387
8388 2008-04-28 Chong Yidong <cyd@stupidchicken.com>
8389
8390 * doc-view.el (doc-view-new-window-function): Avoid using WINDOW
8391 argument to get-char-property, in case the current buffer hasn't
8392 been assigned to that window yet.
8393 (doc-view-display): Default to selected window if the current
8394 buffer hasn't been assigned to a window yet.
8395
8396 2008-04-28 Vinicius Jose Latorre <bzg@altern.org>
8397
8398 * whitespace.el (whitespace-trailing-regexp): Fix docstring.
8399
8400 2008-04-28 Michael Albinus <michael.albinus@gmx.de>
8401
8402 * net/tramp.el (tramp-mode): New defcustom.
8403 (tramp-file-name-handler, tramp-completion-file-name-handler):
8404 Use it.
8405 (tramp-replace-environment-variables): Handle "$$".
8406
8407 2008-04-28 Sam Steingold <sds@gnu.org>
8408
8409 * vc-hg.el (vc-hg-rename-file): Fix argument order.
8410
8411 2008-04-28 Bastien Guerry <bzg@altern.org>
8412
8413 * whitespace.el (whitespace-trailing): Fix typo.
8414
8415 2008-04-28 Sam Steingold <sds@gnu.org>
8416
8417 * textmodes/remember.el (diary-make-entry): Update the autoload.
8418
8419 2008-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8420
8421 * minibuffer.el (completion-pcm--all-completions): Don't pass nil to
8422 all-completions.
8423
8424 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
8425
8426 * desktop.el (desktop-minor-mode-table): Add `savehist-mode'.
8427
8428 2008-04-27 Dan Nicolaescu <dann@ics.uci.edu>
8429
8430 * vc.el (vc-dir-mode-map): Change bindings for unmark all and revert.
8431 (vc-dir-parent-marked-p, vc-dir-children-marked-p): Implement.
8432 (vc-dir-mark-file): Add an optional argument.
8433 (vc-dir-mark-all-files, vc-dir-unmark-all-files): Deal with directories.
8434
8435 2008-04-27 Daiki Ueno <ueno@unixuser.org>
8436
8437 * epa-file.el (epa-file-enable, epa-file-disable): Use find-file-hook
8438 rather than obsolete alias find-file-hooks.
8439 (auto-encryption-mode): Rename from epa-file-mode. Default to on.
8440 Use find-file-hook rather than obsolete alias find-file-hooks.
8441 Add to find-file-not-found-functions.
8442 (epa-file-handler): Put 'safe-magic and 'operations properties.
8443
8444 * epa.el (epa-global-minor-modes, epa-mode, epa-menu)
8445 (epa-menu-items): Remove.
8446
8447 * epa-dired.el (epa-dired-do-decrypt, epa-dired-do-verify)
8448 (epa-dired-do-sign, epa-dired-do-encrypt): Add autoload cookie.
8449 (epa-dired-mode, epa-global-dired-mode): Remove.
8450
8451 * dired.el (dired-mode-map): Bind encryption/decryption commands.
8452
8453 * menu-bar.el (menu-bar-encryption-decryption-menu): New menu item.
8454
8455 * files.el (insert-file-contents-literally): Inhibit epa-file-handler.
8456
8457 2008-04-27 Glenn Morris <rgm@gnu.org>
8458
8459 * textmodes/reftex-global.el (reftex-isearch-switch-to-next-file):
8460 Remove un-needed local `orig-list'. Replace cl `copy-list'.
8461
8462 2008-04-27 Carsten Dominik <dominik@science.uva.nl>
8463
8464 * org/org.el (org-html-level-start): Always have id's in HTML.
8465 (org-export-as-html): Use `org-link-protocols' to
8466 retrieve the export form of the link.
8467 (org-add-link-type): Final parameter renamed from PUBLISH.
8468 Better documentation of how it is to be used. Avoid double entries for
8469 the same link type.
8470 (org-add-link-props): New function.
8471 (org-modules-loaded): New variable.
8472 (org-load-modules-maybe, org-set-modules): New function.
8473 (org-modules): New option.
8474 (org-mode, org-cycle, orgstruct-mode, org-run-like-in-org-mode)
8475 (orgtbl-mode, org-store-link, org-insert-link-global)
8476 (org-open-at-point): Call `org-load-modules-maybe'.
8477 (org-search-view): Add more text properties.
8478 (org-agenda-schedule, org-agenda-deadline): Allow also in
8479 search-type agendas.
8480 (org-search-view): Order of arguments has been changed.
8481 Interpret prefix-arg as TODO-ONLY.
8482 (org-agenda, org-run-agenda-series, org-agenda-manipulate-query):
8483 Take new argument order of `org-search-view' into account.
8484 (org-todo-only): New variable.
8485 (org-search-syntax-table): New variable and function.
8486 (org-search-view): Do the search with the special syntax table.
8487 (define-obsolete-function-alias): Make work with XEmacs.
8488 (org-add-planning-info): Use old date as default when modifying an
8489 existing deadline or scheduled item.
8490 (org-agenda-compute-time-span): Make argument N optional.
8491 (org-agenda-format-date-aligned): Require `cal-iso'.
8492 (org-agenda-list): Include week into agenda heading, don't
8493 list it at each date (only on Mondays).
8494 (org-read-date-analyze): Define local variable `iso-date'.
8495 (org-agenda-format-date-aligned): Remove dependency on
8496 `calendar-time-from-absolute'.
8497 (org-remember-apply-template, org-go-to-remember-target):
8498 Interpret filenames relative to `org-directory'.
8499 (org-complete): Silently fail when trying to complete
8500 keywords that don't have a default value.
8501 (org-get-current-options): Add a #+DATE: option.
8502 (org-additional-option-like-keywords): Remove "DATE:" from the
8503 list of additional keywords.
8504 (org-export-as-html): Remove (current-time) as unnecessary second
8505 argument of `format-time-string'.
8506 (org-clock-find-position): Handle special case at end of buffer.
8507 (org-agenda-day-view): New argument DAY-OF-YEAR, pass it on to
8508 `org-agenda-change-time-span'.
8509 (org-agenda-week-view): New argument ISO-WEEK, pass it on to
8510 `org-agenda-change-time-span'.
8511 (org-agenda-month-view): New argument MONTH, pass it on to
8512 `org-agenda-change-time-span'.
8513 (org-agenda-year-view): New argument YEAR, pass it on to
8514 `org-agenda-change-time-span'.
8515 (org-agenda-change-time-span): New optional argument N, pass it on
8516 to `org-agenda-compute-time-span'.
8517 (org-agenda-compute-time-span): New argument N, interpret it by
8518 changing the starting day.
8519 (org-small-year-to-year): New function.
8520 (org-scheduled-past-days): Respect `org-scheduled-past-days'.
8521 (org-auto-repeat-maybe): Make sure that repeating dates are pushed
8522 into the future, and that the shift is at least one interval, never 0.
8523 (org-update-checkbox-count): Fix bug with checkbox counting.
8524 (org-add-note): New command.
8525 (org-add-log-setup): Rename from `org-add-log-maybe'.
8526 (org-log-note-headings): New entry for plain notes (i.e. notes not
8527 related to state changes or clocking).
8528 (org-get-org-file): Check for availability of `remember-data-file'.
8529 (org-cached-entry-get): Allow a regexp value for
8530 `org-use-property-inheritance'.
8531 (org-use-property-inheritance): Allow regexp value. Fix bug in
8532 customization type.
8533 (org-use-tag-inheritance): Allow a list and a regexp value for
8534 this variable.
8535 (org-scan-tags, org-get-tags-at): Implement selective tag inheritance.
8536 (org-entry-get): Respect value `selective' for the INHERIT argument.
8537 (org-tag-inherit-p, org-property-inherit-p): New functions.
8538 (org-agenda-format-date-aligned): Allow 10 characters for
8539 weekday, to accommodate German locale.
8540 (org-add-archive-files): New function.
8541 (org-agenda-files): New argument `ext', to get archive files as well.
8542 (org-tbl-menu): Protect the use of variables that
8543 are only available when org-table.el gets loaded.
8544 (org-read-agenda-file-list): Error if `org-agenda-files' is a
8545 single directory.
8546 (org-open-file): Allow a batch process to trigger
8547 waiting after executing a system command.
8548 (org-store-link): Link to headline when there is not
8549 target and no region in an org-mode buffer when creating a link.
8550 (org-link-types-re): New variable.
8551 (org-make-link-regexps): Compute `org-link-types-re'.
8552 (org-make-link-description-function): New option.
8553 (org-agenda-date, org-agenda-date-weekend): New faces.
8554 (org-archive-sibling-heading): New option.
8555 (org-archive-to-archive-sibling): New function.
8556 (org-iswitchb): New command.
8557 (org-buffer-list): New function.
8558 (org-agenda-columns): Also try the #+COLUMNS line in
8559 the buffer associated with the entry at point (or with the first
8560 entry in the agenda view).
8561 (org-modules): Add entry for org-bibtex.el.
8562 (org-completion-fallback-command): Move into `org-completion' group.
8563 (org-clock-heading-function): Move to `org-progress' group.
8564 (org-auto-repeat-maybe): Make sure that a note can
8565 be enforces if `org-log-repeat' is `note'.
8566 (org-modules): Allow additional symbols for external packages.
8567 (org-ctrl-c-ctrl-c): Allow for `org-clock-overlays' to be undefined.
8568 (org-clock-goto): Hide drawers after showing an
8569 entry with `org-clock-goto'.
8570 (org-shiftup, org-shiftdown, org-shiftright, org-shiftleft):
8571 Try also a clocktable block shift.
8572 (org-clocktable-try-shift): New function.
8573 (org-columns-hscoll-title): New function.
8574 (org-columns-previous-hscroll): New variable.
8575 (org-columns-full-header-line-format): New variable.
8576 (org-columns-display-here-title, org-columns-remove-overlays):
8577 Install `org-columns-hscoll-title' in post-command-hook.
8578
8579 * org/org.el: Split into many small files.
8580
8581 * org/org-agenda.el: New file, split off from org.el.
8582
8583 * org/org-archive.el: New file, split off from org.el.
8584
8585 * org/org-bbdb.el: New file.
8586
8587 * org/org-bibtex.el: New file, split off from org.el.
8588
8589 * org/org-clock.el: New file, split off from org.el.
8590
8591 * org/org-colview.el: New file, split off from org.el.
8592
8593 * org/org-compat.el: New file, split off from org.el.
8594
8595 * org/org-exp.el: New file, split off from org.el.
8596
8597 * org/org-faces.el: New file, split off from org.el.
8598
8599 * org/org-gnus.el: New file, split off from org.el.
8600
8601 * org/org-info.el: New file, split off from org.el.
8602
8603 * org/org-infojs.el: New file.
8604
8605 * org/org-irc.el: New file.
8606
8607 * org/org-macs.el: New file, split off from org.el.
8608
8609 * org/org-mew.el: New file.
8610
8611 * org/org-mhe.el: New file, split off from org.el.
8612
8613 * org/org-publish.el: New file, split off from org.el.
8614
8615 * org/org-remember.el: New file, split off from org.el.
8616
8617 * org/org-rmail.el: New file, split off from org.el.
8618
8619 * org/org-table.el: New file, split off from org.el.
8620
8621 * org/org-vm.el: New file, split off from org.el.
8622
8623 * org/org-wl.el: New file, split off from org.el.
8624
8625 2008-04-27 Jason Riedy <jason@acm.org>
8626
8627 * org/org-table.el (orgtbl-to-generic): Add a :remove-nil-lines
8628 parameter that suppresses lines that evaluate to NIL.
8629 (orgtbl-get-fmt): New inline function for
8630 picking apart formats that may be lists.
8631 (orgtbl-apply-fmt): New inline function for applying formats that
8632 may be functions.
8633 (orgtbl-eval-str): New inline function for strings that may be
8634 functions.
8635 (orgtbl-format-line, orgtbl-to-generic): Use and document.
8636 (orgtbl-to-latex, orgtbl-to-texinfo): Document.
8637 (*orgtbl-llfmt*, *orgtbl-llstart*)
8638 (*orgtbl-llend*): Dynamic variables for last-line formatting.
8639 (orgtbl-format-section): Shift formatting to support detecting the
8640 last line and formatting it specially.
8641 (orgtbl-to-generic): Document :ll* formats. Set to the non-ll
8642 formats unless overridden.
8643 (orgtbl-to-latex): Suggest using :llend to suppress the final \\.
8644 (*orgtbl-table*, *orgtbl-rtn*): Dynamically
8645 bound variables to hold the input collection of lines and output
8646 formatted text.
8647 (*orgtbl-hline*, *orgtbl-sep*, *orgtbl-fmt*, *orgtbl-efmt*)
8648 (*orgtbl-lfmt*, *orgtbl-lstart*, *orgtbl-lend*): Dynamically bound
8649 format parameters.
8650 (orgtbl-format-line): New function encapsulating formatting for a
8651 single line.
8652 (orgtbl-format-section): Similar for each section. Rebinding the
8653 dynamic vars customizes the formatting for each section.
8654 (orgtbl-to-generic): Use orgtbl-format-line and
8655 orgtbl-format-section.
8656 (org-get-param): Now unused, so delete.
8657 (orgtbl-gather-send-defs): New function to
8658 gather all the SEND definitions before a table.
8659 (orgtbl-send-replace-tbl): New function to find the RECEIVE
8660 corresponding to the current name.
8661 (orgtbl-send-table): Use the previous two functions and implement
8662 multiple destinations for each table.
8663
8664 * doc/org.texi (A LaTeX example): Note that fmt may be a
8665 one-argument function, and efmt may be a two-argument function.
8666 (Radio tables): Document multiple destinations.
8667
8668 2008-04-27 Carsten Dominik <dominik@science.uva.nl>
8669
8670 * org/org-agenda.el (org-add-to-diary-list): New function.
8671 (org-prefix-has-effort): New variable.
8672 (org-sort-agenda-noeffort-is-high): New option.
8673 (org-agenda-columns-show-summaries)
8674 (org-agenda-columns-compute-summary-properties): New options.
8675 (org-format-agenda-item): Compute the duration of the item.
8676 (org-agenda-weekend-days): New variable.
8677 (org-agenda-list, org-timeline): Use the proper faces for dates in
8678 the agenda and timeline buffers.
8679 (org-agenda-archive-to-archive-sibling): New command.
8680 (org-agenda-start-with-clockreport-mode): New option.
8681 (org-agenda-clockreport-parameter-plist): New option.
8682 (org-agenda-clocktable-mode): New variable.
8683 (org-agenda-deadline-leaders): Allow a function value for the
8684 deadline leader.
8685 (org-agenda-get-deadlines): Deal with new function value.
8686
8687 * org/org-clock.el (org-clock): New customization group.
8688 (org-clock-into-drawer, org-clock-out-when-done)
8689 (org-clock-in-switch-to-state, org-clock-heading-function):
8690 Move into the new group.
8691 (org-clock-out-remove-zero-time-clocks): New option.
8692 (org-clock-out): Use `org-clock-out-remove-zero-time-clocks'.
8693 (org-dblock-write:clocktable): Allow a Lisp form for the scope
8694 parameter.
8695 (org-dblock-write:clocktable): Fix bug with total time calculation.
8696 (org-dblock-write:clocktable): Request the unrestricted list of files.
8697 (org-get-clocktable): New function.
8698 (org-dblock-write:clocktable): Make sure :tstart and :tend can not only
8699 be strings but also integers (an absolute day number) and lists (m d y).
8700
8701 * org/org-colview.el (org-columns-next-allowed-value)
8702 (org-columns-edit-value): Limit the effort for updating in the
8703 agenda to recomputing a single file.
8704 (org-columns-compute): Only write property value if it has changed.
8705 This avoids raising the buffer-change-flag unnecessarily.
8706 (org-agenda-colview-summarize)
8707 (org-agenda-colview-compute): New functions.
8708 (org-agenda-columns): Call `org-agenda-colview-summarize'.
8709
8710 * org/org-exp.el (org-export-run-in-background): New option.
8711 (org-export-icalendar): Allow a batch process to trigger waiting
8712 after executing a system command.
8713 (org-export-preprocess-string): Rename from
8714 `org-cleaned-string-for-export'.
8715 (org-export-html-style): Made target class look like normal text.
8716 (org-export-as-html): Make use of the better preprocessing in
8717 `org-cleaned-string-for-export'.
8718 (org-cleaned-string-for-export): Better treatment of heuristic
8719 targets, many more internal links will now work in HTML export.
8720 (org-get-current-options): Incorporate LINK_UP, LINK_HOME, and INFOJS.
8721 (org-export-inbuffer-options-extra): New variable.
8722 (org-export-options-filters): New hook.
8723 (org-infile-export-plist): Find also the settings keywords in
8724 `org-export-inbuffer-options-extra'.
8725 (org-infile-export-plist): Allow multiple #+OPTIONS lines and
8726 multiple #+INFOJS_OPT lines.
8727 (org-export-html-handle-js-options): New function.
8728 (org-export-html-infojs-setup): New option.
8729 (org-export-as-html): Call `org-export-html-handle-js-options'.
8730 Add autoload to all entry points.
8731 (org-skip-comments): Function removed.
8732
8733 * org/org-table.el (org-table-make-reference): Extra parenthesis
8734 around single fields, to make sure that algebraic formulas get
8735 correctly interpreted by calc.
8736 (org-table-current-column): No longer interactive.
8737
8738 * org/org-export-latex.el (org-export-latex-preprocess):
8739 Rename from `org-export-latex-cleaned-string'.
8740
8741 2008-04-27 Bastien Guerry <bzg@altern.org>
8742
8743 * org/org-publish.el (org-publish-get-base-files-1): New function.
8744 (org-publish-get-base-files): Use it.
8745 (org-publish-temp-files): New variable.
8746 Don't require 'dired-aux anymore.
8747 (org-publish-initial-buffer): New variable.
8748 (org-publish-org-to, org-publish): Use it.
8749 (org-publish-get-base-files-1): Bug fix: get
8750 the proper list of files when recursing thru a directory.
8751 (org-publish-get-base-files): Use the :exclude property to skip
8752 both files and directories.
8753
8754 2008-04-27 Michael Albinus <michael.albinus@gmx.de>
8755
8756 * net/tramp.el (tramp-handle-make-symbolic-link)
8757 (tramp-handle-file-name-directory)
8758 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
8759 (tramp-do-copy-or-rename-file-directly)
8760 (tramp-handle-insert-directory, tramp-handle-expand-file-name)
8761 (tramp-handle-substitute-in-file-name)
8762 (tramp-handle-insert-file-contents, tramp-handle-write-region)
8763 * net/tramp-cache.el (tramp-get-file-property)
8764 (tramp-set-file-property, tramp-flush-file-property)
8765 (tramp-flush-directory-property)
8766 * net/tramp-compat.el (tramp-compat-make-temp-file)
8767 * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
8768 Disable `file-name-handler-alist' when handling localname.
8769 It could have a remote file syntax, like a VMS file name.
8770
8771 2008-04-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8772
8773 * whitespace.el: New version 11.1.
8774 (whitespace-trailing-regexp): Option fix, now trailing regexp must be
8775 enclosed by \\( and \\)$. Docstring fix.
8776 (whitespace-trailing-regexp): Fun removed.
8777 (whitespace-report-list): Const initialization fix.
8778 (whitespace-color-on): Code fix.
8779
8780 2008-04-27 Andreas Schwab <schwab@suse.de>
8781
8782 * Makefile.el: Unbreak bootstrap.
8783
8784 2008-04-27 Michael Albinus <michael.albinus@gmx.de>
8785
8786 * net/tramp.el (tramp-replace-environment-variables): New defun.
8787 (tramp-handle-substitute-in-file-name, tramp-file-name-handler):
8788 Use it.
8789
8790 2008-04-27 Glenn Morris <rgm@gnu.org>
8791
8792 * emacs-lisp/bytecomp.el (byte-compile-file): Doc fix.
8793
8794 * calculator.el (calculator-expt): Replace cl function `oddp'.
8795
8796 2008-04-27 Johan Bockgård <bojohan@gnu.org>
8797
8798 * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
8799 Simplify. Collect `defun' and `autoload' entries.
8800 Avoid modifying load-history.
8801
8802 2008-04-26 Glenn Morris <rgm@gnu.org>
8803
8804 * textmodes/ispell.el (ispell-insert-word): Revert previous change.
8805
8806 * simple.el (quoted-insert, zap-to-char): Revert previous change.
8807
8808 2008-04-26 John Paul Wallington <jpw@pobox.com>
8809
8810 * hexl.el (hexl-mode): Stash `eldoc-documentation-function' in
8811 `hexl-mode-old-eldoc-documentation-function'.
8812 (hexl-mode-exit): Restore it.
8813 (hexl-mode-old-eldoc-documentation-function): Declare for compiler.
8814
8815 * w32-fns.el (top-level): Don't set `completion-ignore-case' to t.
8816
8817 2008-04-26 Juanma Barranquero <lekktu@gmail.com>
8818
8819 * minibuffer.el (completion-pcm-word-delimiters): Add :group.
8820 (completion-pcm--all-completions): Doc fix.
8821 (completion-styles-alist, completion-all-completions):
8822 Fix typos in docstrings.
8823
8824 2008-04-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8825
8826 * whitespace.el: There is now only one variable (whitespace-style) to
8827 specify which kind of blank is visualized. Doc and docstring fix.
8828 New version 11.0.
8829 (whitespace-style): New option, replace whitespace-style-mark and
8830 whitespace-style-color.
8831 (whitespace-style-mark, whitespace-style-color): Options removed.
8832 (whitespace-hspace, whitespace-tab, whitespace-newline)
8833 (whitespace-trailing, whitespace-line, whitespace-space-before-tab)
8834 (whitespace-indentation, whitespace-empty, whitespace-space-after-tab)
8835 (whitespace-hspace-regexp, whitespace-space-regexp)
8836 (whitespace-tab-regexp, whitespace-trailing-regexp)
8837 (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
8838 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
8839 (whitespace-space-after-tab-regexp, whitespace-line-column)
8840 (whitespace-display-mappings, whitespace-report): Docstring fix.
8841 (whitespace-color-value-list, whitespace-mark-value-list)
8842 (whitespace-active-color, whitespace-active-mark)
8843 (whitespace-toggle-color, whitespace-toggle-mark): Vars removed.
8844 (whitespace-style-value-list, whitespace-active-style)
8845 (whitespace-toggle-style): New vars.
8846 (whitespace-toggle-option-alist, whitespace-help-text):
8847 Var initialization and docstring fix.
8848 (whitespace-toggle-options, global-whitespace-toggle-options)
8849 (whitespace-cleanup, whitespace-cleanup-region)
8850 (whitespace-report-region, whitespace-interactive-char)
8851 (whitespace-toggle-list): Docstring and code fix.
8852 (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
8853 (whitespace-turn-off, whitespace-color-on, whitespace-color-off)
8854 (whitespace-display-char-on, whitespace-display-char-off): Code fix.
8855 (whitespace-style-face-p, whitespace-style-mark-p): New fun.
8856
8857 2008-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8858
8859 * diff-mode.el (diff-hunk-header-re-unified): Allow elided line counts.
8860 (diff-end-of-hunk, diff-unified->context, diff-fixup-modifs)
8861 (diff-sanity-check-hunk): Adjust code accordingly.
8862
8863 2008-04-26 Glenn Morris <rgm@gnu.org>
8864
8865 * abbrev.el (define-abbrev): Don't use `iff' in doc-strings.
8866
8867 * forms-d2.dat: Move to ../etc.
8868 * forms-d2.el (forms-file): Adapt for above change.
8869
8870 * simple.el (quoted-insert, zap-to-char): Remove uses of obsolete
8871 `translation-table-for-input'.
8872
8873 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): New function.
8874 (byte-compile-obsolete, byte-compile-variable-ref): Use it.
8875
8876 * progmodes/fortran.el (fortran-mode-syntax-table): Change `;'
8877 to punctuation now it's not needed for abbrevs.
8878 (fortran-mode-abbrev-table): Remove defvar, make use of new
8879 define-abbrev-table :regexp feature.
8880
8881 * textmodes/ispell.el (ispell-insert-word): Remove, and replace with
8882 insert, now that translation-table-for-input is not needed.
8883
8884 2008-04-26 Johannes Weiner <hannes@saeurebad.de>
8885
8886 * emacs-lisp/pp.el (pp-display-expression): New function,
8887 extracted from pp-eval-expression.
8888 (pp-eval-expression): Use pp-display-expression.
8889 (pp-macroexpand-expression, pp-macroexpand-last-sexp): New functions.
8890 (pp-last-sexp): New function, extracted from pp-eval-last-sexp.
8891 (pp-eval-last-sexp): Use pp-last-sexp.
8892
8893 2008-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8894
8895 * abbrev.el (define-abbrev-table): Apply props even if the table
8896 exists already.
8897
8898 * minibuffer.el (completion-table-with-context): Fix `pred' for the
8899 various kinds of completion tables.
8900 (completion-emacs22-try-completion): Place cursor after the /, as was
8901 done in Emacs-22's minibuffer-complete-word.
8902 Fix bug reported by David Hansen <david.hansen@gmx.net>.
8903 (completion-emacs22-try-completion): Merge all mergeable text rather
8904 than just /.
8905 (completion-pcm--delim-wild-regex): New var.
8906 (completion-pcm-word-delimiters): New custom.
8907 (completion-pcm--prepare-delim-re, completion-pcm--pattern-trivial-p)
8908 (completion-pcm--string->pattern, completion-pcm--pattern->regex)
8909 (completion-pcm--all-completions, completion-pcm-all-completions)
8910 (completion-pcm--merge-completions, completion-pcm--pattern->string)
8911 (completion-pcm-try-completion): New functions.
8912 (completion-styles-alist): Add them.
8913 (completion-styles): Add it to the default.
8914
8915 2008-04-25 Nick Roberts <nickrob@snap.net.nz>
8916
8917 * progmodes/gdb-ui.el (gud-watch): Don't create speedbar...
8918 (gdb-var-create-handler): ...until here when there are values.
8919 (gdb-post-prompt): Don't do -var-update with no watch expressions.
8920 (gdb-info-locals-handler): Don't match "struct {...}" as an array.
8921
8922 2008-04-25 Eli Zaretskii <eliz@gnu.org>
8923
8924 * ls-lisp.el (ls-lisp-format): Fix last change.
8925 (ls-lisp-uid-d-fmt, ls-lisp-uid-s-fmt, ls-lisp-gid-d-fmt)
8926 (ls-lisp-gid-s-fmt, ls-lisp-filesize-d-fmt)
8927 (ls-lisp-filesize-f-fmt): New defvars.
8928 (ls-lisp-insert-directory): Dynamically compute format specifiers
8929 for displaying UID, GID, and file size, and store them in the
8930 above variables.
8931 (ls-lisp-format): Use ls-lisp-filesize-f-fmt, ls-lisp-uid-s-fmt,
8932 ls-lisp-uid-d-fmt, ls-lisp-gid-s-fmt, and ls-lisp-gid-d-fmt
8933 instead of constant format strings.
8934 (ls-lisp-format-file-size): Use ls-lisp-filesize-f-fmt and
8935 ls-lisp-filesize-d-fmt instead of constant format strings.
8936
8937 2008-04-24 Nick Roberts <nickrob@snap.net.nz>
8938
8939 * progmodes/gdb-ui.el (gdb-invalidate-assembler): Compare numeric
8940 value of addresses rather than (partial) string value.
8941 (gdb-frame-handler): Change regexp according to above change.
8942 (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
8943 (gdb-registers-mode, gdb-memory-mode, gdb-locals-mode)
8944 (gdb-assembler-mode): Disable undo in these buffers.
8945
8946 2008-04-24 Michael Albinus <michael.albinus@gmx.de>
8947
8948 * net/tramp.el (tramp-get-remote-stat): Test whether stat supports %s.
8949 Reported by Loris Bennett <loris.bennett@fu-berlin.de>.
8950
8951 2008-04-24 Sam Steingold <sds@gnu.org>
8952
8953 * textmodes/remember.el (remember-diary-extract-entries): Use
8954 diary-make-entry instead of the obsolete make-diary-entry.
8955
8956 2008-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8957
8958 * subr.el (translation-table-for-input): Mark as obsolete.
8959
8960 * isearch.el (isearch-search-string): Avoid string-bytes and aset.
8961
8962 * international/quail.el (quail-build-decode-map): Avoid string-bytes.
8963
8964 * textmodes/ispell.el (ispell-dictionary-alist-1)
8965 (ispell-dictionary-alist-2, ispell-dictionary-alist-3)
8966 (ispell-dictionary-alist-4, ispell-dictionary-alist-5)
8967 (ispell-dictionary-alist-6): Remove.
8968 (ispell-dictionary-base-alist): New var, merges the above.
8969 (ispell-find-aspell-dictionaries, ispell-set-spellchecker-params):
8970 Use it.
8971 (ispell-dictionary-alist): Default to nil. Remove autoload.
8972 (ispell-local-dictionary-alist): Remove autoload.
8973
8974 * progmodes/f90.el (f90-mode-syntax-table): Don't set ` as word syntax.
8975 (f90-mode-abbrev-table): Use the new :regexp feature.
8976 Merge defvar and mapc into define-abbrev-table.
8977 (f90-imenu-type-matcher): Remove unused `l'.
8978 (f90-imenu-generic-expression): Remove unused `not-ib'.
8979 (f90-prepare-abbrev-list-buffer): Use with-current-buffer.
8980 (f90-change-keywords): Use restore-buffer-modified-p.
8981
8982 2008-04-24 Glenn Morris <rgm@gnu.org>
8983
8984 * net/goto-addr.el (goto-address-prog-mode):
8985 * progmodes/bug-reference.el (bug-reference-prog-mode):
8986 Define for compiler.
8987
8988 * minibuffer.el (x-file-dialog): Declare as function.
8989
8990 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file): Use
8991 dframe-update-speed rather than obsolete alias speedbar-update-speed.
8992
8993 * calendar/cal-menu.el (cal-menu-diary-menu): Fix typo.
8994 (cal-menu-scroll-menu): Use commands rather than key macros, which don't
8995 work with easymenu. Add :keys where needed.
8996
8997 * calendar/cal-move.el (calendar-scroll-left): Handle case when
8998 event-start is nil.
8999
9000 * calendar/calendar.el (calendar-mode-map): Fix typo.
9001
9002 2008-04-24 Tom Tromey <tromey@redhat.com>
9003
9004 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
9005 Document keywords. Add :suppress.
9006 * pcvs-defs.el (cvs-mode-map): Use :suppress.
9007
9008 * net/goto-addr.el (goto-address-unfontify): New function.
9009 (goto-address-fontify): Use it. Respect goto-address-prog-mode.
9010 (goto-address-fontify-region, goto-address-mode)
9011 (goto-address-prog-mode): New functions.
9012
9013 * progmodes/bug-reference.el: New file.
9014
9015 2008-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9016
9017 * term/mac-win.el (mac-ts-active-input-buf): Move defvar to macterm.c.
9018
9019 2008-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
9020
9021 * emacs-lisp/easymenu.el (easy-menu-make-symbol): Don't wrap keyboard
9022 macros within lambdas.
9023
9024 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9025
9026 * minibuffer.el (completion-try-completion): Add `point' argument.
9027 Change return value.
9028 (completion-all-completions): Add `point' argument.
9029 (minibuffer-completion-help): Pass the new `point' argument.
9030 (completion--do-completion): Pass the whole field to try-completion.
9031 (completion--try-word-completion): Rewrite, making fewer assumptions.
9032 (completion-emacs21-try-completion, completion-emacs21-all-completions)
9033 (completion-emacs22-try-completion, completion-emacs22-all-completions)
9034 (completion-basic-try-completion, completion-basic-all-completions):
9035 New functions.
9036 (completion-styles-alist): Use them.
9037
9038 2008-04-23 Agustín Martín <agustin.martin@hispalinux.es>
9039
9040 * textmodes/ispell.el (ispell-set-spellchecker-params):
9041 New function to make sure right params and dictionary alists are used
9042 after spellchecker changes.
9043 (ispell-aspell-dictionary-alist, ispell-last-program-name)
9044 (ispell-initialize-spellchecker-hook): New variables and hook.
9045 (ispell-find-aspell-dictionaries): Use ispell-aspell-dictionary-alist.
9046 (ispell-maybe-find-aspell-dictionaries): Remove.
9047 Calls replaced by (ispell-set-spellchecker-params) calls.
9048 (ispell-have-aspell-dictionaries): Remove.
9049
9050 * textmodes/flyspell.el: Replace ispell-maybe-find-aspell-dictionaries
9051 by ispell-set-spellchecker-params.
9052
9053 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9054
9055 * complete.el (PC-do-completion): Be more robust in the presence of
9056 unexpected values in minibuffer-completion-predicate.
9057
9058 * minibuffer.el (read-file-name): Don't let-bind default-directory.
9059 Only abbreviate default-filename if it's a file.
9060
9061 * minibuffer.el (read-file-name-function, read-file-name-predicate)
9062 (read-file-name-completion-ignore-case, insert-default-directory):
9063 New vars, moved from fileio.c.
9064 (read-file-name): New fun, moved from fileio.c.
9065 * cus-start.el: Remove insert-default-directory and
9066 read-file-name-completion-ignore-case.
9067
9068 2008-04-23 Magnus Henoch <mange@freemail.hu>
9069
9070 * tar-mode.el (tar-untar-buffer): If the entry has directory
9071 link type, extract it as a directory even if its file name doesn't
9072 end with a slash. Fixes extraction of NetBSD tar archives.
9073
9074 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9075
9076 * server.el (server-start): Also don't get confused by CRs since we
9077 don't quote them.
9078
9079 2008-04-23 Nick Roberts <nickrob@snap.net.nz>
9080
9081 * progmodes/gdb-ui.el (gdb-init-buffer): New function.
9082 (gdb-set-gud-minor-mode-existing-buffers)
9083 (gdb-info-breakpoints-custom, gdb-get-location)
9084 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
9085 Previously gdb-create-define-alist wasn't always run and added to
9086 after-save-hook.
9087
9088 * progmodes/gud.el (gud-tooltip-tips): Use tooltip-event-buffer.
9089
9090 2008-04-23 Kevin Ryde <user42@zip.com.au>
9091
9092 * progmodes/make-mode.el (makefile-fill-paragraph): Treat indented
9093 comments like unindented ones.
9094
9095 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9096
9097 * term/mac-win.el (mac-ae-open-documents): Adjust selection range
9098 parameter origins.
9099
9100 2008-04-23 Kevin Ryde <user42@zip.com.au>
9101
9102 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9103 Bind print-level to ensure output forms aren't truncated if
9104 print-level is set to eval-expression-print-level when going via
9105 eval-defun and friends, or has been otherwise fiddled with.
9106
9107 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9108
9109 * progmodes/cc-mode.el (c-basic-common-init): Don't set
9110 font-lock-extend-after-change-region-function globally.
9111
9112 2008-04-23 Juanma Barranquero <lekktu@gmail.com>
9113
9114 * speedbar.el (speedbar-use-tool-tips-flag)
9115 (speedbar-ignored-directory-regexp, speedbar-file-unshown-regexp)
9116 (speedbar-file-regexp, speedbar-message, speedbar-item-info)
9117 (speedbar-files-item-info, speedbar-maybe-add-localized-support)
9118 (speedbar-insert-files-at-point, speedbar-dynamic-tags-function-list)
9119 (speedbar-generic-list-positioned-group-p, speedbar-insert-generic-list)
9120 (speedbar-fetch-replacement-function, speedbar-extract-one-symbol)
9121 (speedbar-separator-face): Fix typos in docstrings.
9122 (speedbar-stealthy-function-list, speedbar-verbosity-level)
9123 (speedbar-supported-extension-expressions, speedbar-update-current-file)
9124 (speedbar-add-indicator, speedbar-tag-expand): Reflow docstring.
9125 (speedbar-use-imenu-flag, speedbar-ignored-directory-expressions)
9126 (speedbar-directory-unshown-regexp, speedbar-handle-delete-frame)
9127 (speedbar-show-info-under-mouse, speedbar-directory-buttons)
9128 (speedbar-check-vc-this-line, speedbar-files-line-directory)
9129 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
9130 (speedbar-buffers-line-directory, speedbar-recenter-to-top)
9131 (speedbar-recenter): Doc fixes.
9132 (speedbar-update-speed, speedbar-navigating-speed): Add obsolescence
9133 declaration and remove redundant info in docstring.
9134
9135 2008-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9136
9137 * vc-git.el (vc-git-status-printer): Deal with directories.
9138
9139 * vc.el (vc-next-action): Look at more than the first file to
9140 determine the state.
9141
9142 2008-04-23 Glenn Morris <rgm@gnu.org>
9143
9144 * dframe.el (dframe-have-timer-flag): Drop support for Emacs without
9145 timers. Doc fix.
9146 (dframe-update-speed): Drop support for XEmacs < 20.
9147 (dframe-frame-mode): Drop support for Emacs < 20.
9148 (dframe-set-timer-internal): Drop support for Emacs without timers.
9149 (dframe-popup-kludge): Use mouse-menu-major-mode-map if defined.
9150
9151 * ediff-init.el (ediff-check-version): Drop support for very old Emacs
9152 versions. Add doc-string. Mark as obsolete.
9153
9154 * ps-def.el (ps-color-device): Drop support for XEmacs < 19.12.
9155
9156 * speedbar.el (speedbar-use-tool-tips-flag): Check for tooltip-mode,
9157 rather than using an Emacs version test.
9158
9159 * tree-widget.el (tree-widget-image-enable): Use display-images-p
9160 rather than an Emacs version test.
9161
9162 * calendar/cal-china.el (holiday-chinese-qingming)
9163 (holiday-chinese-winter-solstice, holiday-chinese): New functions.
9164 * calendar/calendar.el (calendar-chinese-all-holidays-flag): New.
9165 * calendar/holidays.el (holiday-oriental-holidays): Add more holidays.
9166
9167 * calendar/cal-islam.el (holiday-islamic): Doc fix.
9168
9169 * calendar/diary-lib.el (diary-list-sexp-entries): Doc fix.
9170 (diary-remind): Allow negative DAYS to represent a range 1:DAYS.
9171 Suggested by Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
9172
9173 2008-04-23 Nick Roberts <nickrob@snap.net.nz>
9174
9175 * progmodes/gdb-ui.el (gdb-previous-frame-address): Rename...
9176 (gdb-previous-frame-pc-address): ...to this.
9177 (gdb-get-selected-frame): Use MI command -stack-info-frame instead
9178 of "info frame" with Gdb 6.4+.
9179 (gdb-stack-list-frames-regexp): New regexp.
9180 (gdb-frame-handler-1): Parse output of -stack-info-frame.
9181
9182 2008-04-22 David Glasser <glasser@davidglasser.net> (tiny change)
9183
9184 * tar-mode.el (tar-prefix-offset): New constant.
9185 (tar-header-block-tokenize): Support paths with long names
9186 which use the "ustar" standard.
9187
9188 2008-04-22 Mathias Dahl <mathias.dahl@gmail.com>
9189
9190 * image-dired.el (image-dired-track-original-file)
9191 (image-dired-modify-mark-on-thumb-original-file):
9192 Use `dired-goto-file' instead of `search-forward'. This solves
9193 a bug with finding files where the file name is a subset of other
9194 file names. Doc fix.
9195
9196 2008-04-22 Juri Linkov <juri@jurta.org>
9197
9198 * menu-bar.el (buffers-menu-max-size): Move its definition down to
9199 the "Buffers Menu" section. Change group name `mouse' to `menu'.
9200 (yank-menu-length): Change group name `mouse' to `menu'.
9201 (buffers-menu-buffer-name-length): New user option.
9202 (menu-bar-update-buffers): Use buffers-menu-buffer-name-length
9203 instead of the hard-coded number 27.
9204
9205 2008-04-22 Juri Linkov <juri@jurta.org>
9206
9207 * isearch.el (eval-when-compile): Require `help-macro'.
9208 (isearch-help-for-help-internal): Isearch specific Help screen
9209 created by `make-help-screen'.
9210 (isearch-help-map): New variable that binds "b", "k", "m" to
9211 isearch-specific commands, and binds other keys to
9212 isearch-other-control-char, thus allowing other Help keys to
9213 exit isearch mode and execute their global definitions.
9214 (isearch-help-for-help, isearch-describe-bindings)
9215 (isearch-describe-key, isearch-describe-mode): New commands.
9216 (isearch-mode-help): Define alias to isearch-describe-mode
9217 and remove its old function definition.
9218 (isearch-mode-map): Bind "\C-h" to isearch-help-map.
9219 Remove old comments because this issue is settled now.
9220 (isearch-forward): Describe three new Help commands in the docstring.
9221 (isearch-mode): Remove \\{isearch-mode-map} from the docstring,
9222 leave the single sentence at the first line of the docstring,
9223 and prepend the word "function" before `isearch-forward'
9224 to make the Help link to the function instead of variable.
9225
9226 2008-04-22 Juri Linkov <juri@jurta.org>
9227
9228 * isearch.el (isearch-success-function): New variable with default
9229 to `isearch-success-function-default'.
9230 (isearch-search): Call a function from `isearch-success-function'
9231 instead of calling the hard-coded `isearch-range-invisible'.
9232 (isearch-success-function-default): New function that calls
9233 `isearch-range-invisible' and inverts its return value.
9234
9235 * info.el (Info-search): In two similar places that skip
9236 undesired search matches move code to Info-search-success-function,
9237 and call `isearch-success-function' instead.
9238 (Info-search-success-function): New function copied from code
9239 in Info-search. Replace isearch-range-invisible with
9240 text-property-not-all that checks for 'invisible and 'display
9241 properties to skip partially invisible matches (whose display
9242 properties were set by Info-fontify-node).
9243 (Info-mode): Set buffer-local isearch-success-function
9244 to Info-search-success-function.
9245
9246 2008-04-22 Juri Linkov <juri@jurta.org>
9247
9248 * minibuffer.el (internal-complete-buffer-except): New function.
9249
9250 * files.el (read-buffer-to-switch): New function.
9251 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
9252 Change interactive spec to call read-buffer-to-switch instead of
9253 using the letter "B".
9254
9255 * simple.el (minibuffer-default-add-shell-commands): New function.
9256 Use declare-function for mailcap-file-default-commands from "mailcap".
9257 (shell-command): Set local minibuffer-default-add-function to
9258 minibuffer-default-add-shell-commands in minibuffer-with-setup-hook
9259 before calling read-shell-command. Set 4th arg default-value of
9260 read-shell-command to relative buffer-file-name in file buffers.
9261
9262 * dired-aux.el (dired-read-shell-command-default): Move it to
9263 gnus/mailcap.el and change its name to more general name
9264 mailcap-file-default-commands.
9265 (minibuffer-default-add-dired-shell-commands): New function.
9266 Use declare-function for mailcap-file-default-commands from "mailcap".
9267 (dired-read-shell-command): Set local minibuffer-default-add-function
9268 to minibuffer-default-add-dired-shell-commands in minibuffer-with-setup-hook
9269 before calling read-shell-command. Remove dired-read-shell-command-default
9270 from the default value arg because default values are not set in
9271 minibuffer-default-add-dired-shell-commands. Doc fix.
9272
9273 * dired-x.el (dired-smart-shell-command): Sync arguments and
9274 interactive spec with changes in `shell-command'.
9275 Use dired-get-filename to get the dired file name at point
9276 as the default value in dired mode.
9277
9278 2008-04-22 Juanma Barranquero <lekktu@gmail.com>
9279
9280 * info.el (Info-complete-menu-item): Add missing parenthesis.
9281
9282 2008-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
9283
9284 * info.el (Info-complete-menu-item): Save point.
9285
9286 2008-04-22 Juanma Barranquero <lekktu@gmail.com>
9287
9288 * minibuffer.el (minibuffer-complete-and-exit): Fix last change.
9289
9290 2008-04-22 Andreas Schwab <schwab@suse.de>
9291
9292 * Makefile.in (emacs-deps): Define.
9293 Use it instead of $(lisp)/subdirs.el.
9294
9295 2008-04-22 Dan Nicolaescu <dann@ics.uci.edu>
9296
9297 * vc.el (vc-next-action): Do not consider directories when
9298 checking for state compatibility.
9299 (vc-transfer-file): Use when not if.
9300 (vc-dir-parent-marked-p, vc-dir-children-marked-p): New functions.
9301 (vc-dir-mark-file): Use them.
9302 (vc-deduce-fileset): Also return the backend.
9303 (vc-diff-internal): Take as argument the value returned by
9304 vc-deduce-fileset instead of just the fileset.
9305 (vc-next-action, vc-finish-logentry, vc-version-diff, vc-diff)
9306 (vc-dir-mark-file, vc-print-log, vc-revert, vc-rollback)
9307 (vc-update): Update the vc-deduce-fileset and vc-diff-internal calls.
9308
9309 2008-04-22 Tassilo Horn <tassilo@member.fsf.org>
9310
9311 * doc-view.el (doc-view-scroll-up-or-next-page): Don't use
9312 set-window-vscroll but image-scroll-down. Fixes a bug where a
9313 command following SPC scrolled up again.
9314
9315 2008-04-22 Nick Roberts <nickrob@snap.net.nz>
9316
9317 * progmodes/gdb-ui.el (gdb-locals-header): New variable.
9318 (gdb-locals-mode, gdb-registers-mode): Use it for header line.
9319 (gud-watch): Add "$" prefix when in registers buffer.
9320
9321 2008-04-22 Glenn Morris <rgm@gnu.org>
9322
9323 * progmodes/gdb-ui.el (gdbmi-invalidate-frames): Declare as function.
9324
9325 * whitespace.el (whitespace-display-table)
9326 (whitespace-display-table-was-local): Move definitions before use.
9327
9328 * emacs-lisp/copyright.el (copyright-at-end-flag): New option.
9329 (copyright-limit): Respect copyright-at-end-flag.
9330 (copyright-re-search, copyright-start-point)
9331 (copyright-offset-too-large-p): New functions.
9332 (copyright-update-year): Use copyright-re-search.
9333 (copyright-update, copyright-fix-years): Use copyright-start-point,
9334 and copyright-re-search.
9335 (copyright): Use copyright-offset-too-large-p.
9336 * add-log.el (change-log-mode): Set copyright-at-end-flag.
9337
9338 * add-log.el (top-level): Require 'cl when compiling.
9339
9340 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
9341
9342 * complete.el (PC-complete-as-file-name, PC-read-file-name-internal):
9343 Treat minibuffer-completion-predicate as a predicate.
9344
9345 * minibuffer.el (completion--file-name-table): Accept both the old
9346 `dir' arg or the new `pred' arg.
9347
9348 * ffap.el (ffap-read-file-or-url): Do not abuse completing-read's
9349 `predicate' argument to pass non-predicate data.
9350 (ffap-read-url-internal, ffap-read-file-or-url-internal):
9351 Use second arg as proper predicate.
9352
9353 * vc-bzr.el (vc-bzr-complete-with-prefix): Remove.
9354 (vc-bzr-revision-completion-table): Use completion-table-with-context
9355 instead.
9356
9357 * simple.el (choose-completion-string): Use minibuffer-completion-table.
9358
9359 2008-04-21 Chong Yidong <cyd@stupidchicken.com>
9360
9361 * term.el (term-emulate-terminal): Perform redisplay after the
9362 process filter has finished running.
9363
9364 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
9365
9366 * vc.el (vc-dir): Use pop-to-buffer, so it can be customized.
9367
9368 * minibuffer.el (completion-try-completion): Change magic symbol
9369 property name. Rename from minibuffer-try-completion.
9370 (completion-all-completions): Rename from minibuffer-all-completions.
9371 Remove hide-spaces argument.
9372 (completion--do-completion): Rename from minibuffer--do-completion.
9373 (minibuffer-complete-and-exit): Call just try-completion rather than
9374 completion-try-completion to fix up the case.
9375 (completion--try-word-completion): Try to add space or hyphen before
9376 making `string' a prefix of `completion'.
9377 (completion--insert-strings): Rename from minibuffer--insert-strings.
9378
9379 2008-04-22 Naohiro Aota <nao.aota@gmail.com> (tiny change)
9380
9381 * net/tls.el (tls-program): Add -ign_eof argument to call the
9382 openssl commands.
9383 (tls-checktrust): Ditto.
9384
9385 2008-04-21 Dan Nicolaescu <dann@ics.uci.edu>
9386
9387 * vc-cvs.el (vc-cvs-status-extra-headers): New function.
9388
9389 * vc-hooks.el (vc-insert-file, vc-state, vc-working-revision)
9390 (vc-check-master-templates, vc-file-not-found-hook)
9391 (vc-kill-buffer-hook):
9392 * vc.el (vc-process-sentinel, vc-exec-after, vc-do-command)
9393 (vc-find-position-by-context, vc-buffer-context)
9394 (vc-restore-buffer-context, vc-responsible-backend)
9395 (vc-expand-dirs, vc-ensure-vc-buffer, vc-buffer-sync)
9396 (vc-next-action, vc-register, vc-register-with, vc-steal-lock)
9397 (vc-finish-logentry, vc-coding-system-for-diff, vc-switches)
9398 (vc-version-diff, vc-diff, vc-insert-headers)
9399 (vc-dired-buffers-for-dir, vc-dired-resynch-file)
9400 (vc-snapshot-precondition, vc-create-snapshot, vc-print-log)
9401 (vc-revert, vc-rollback, vc-version-backup-file)
9402 (vc-rename-master, vc-delete-file, vc-rename-file)
9403 (vc-branch-part, vc-default-retrieve-snapshot)
9404 (vc-annotate-display-autoscale, vc-annotate-display-select)
9405 (vc-annotate, vc-annotate-warp-revision, vc-annotate-difference)
9406 (vc-annotate-lines, vc-file-tree-walk-internal): Use when instead of if.
9407 (vc-dir-update): Handle directories.
9408 (vc-default-status-printer): Simplify.
9409
9410 * progmodes/asm-mode.el (asm-mode-map):
9411 * progmodes/hideif.el (hide-ifdef-mode-menu): Add :help.
9412
9413 * progmodes/m4-mode.el (m4-mode-map): Add menu.
9414
9415 2008-04-21 Kenichi Handa <handa@m17n.org>
9416
9417 * select.el (xselect-convert-to-string): Send a C_STRING only if
9418 the polymorphic target TEXT is requested.
9419
9420 2008-04-21 Juanma Barranquero <lekktu@gmail.com>
9421
9422 * minibuffer.el (completion-setup-hook, display-completion-list)
9423 (completion--file-name-table): Fix typos in docstrings.
9424 (completion-table-dynamic): Fix typo, and reflow docstring.
9425
9426 2008-04-20 Andreas Schwab <schwab@suse.de>
9427
9428 * server.el (server-switch-buffer): Also consider clients in the
9429 selected frame.
9430
9431 2008-04-19 Nick Roberts <nickrob@snap.net.nz>
9432
9433 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
9434 Select window clicked on first.
9435 (gdb): Display thread number in mode-line.
9436 (gdb-make-header-line-mouse-map): Move to avoid byte compiler warnings.
9437 (gdb-breakpoints-header): New variable.
9438 (gdb-breakpoints-mode, gdb-threads-mode): Use it for header line.
9439
9440 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9441
9442 * vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
9443 (vc-sccs-register, vc-sccs-checkin, vc-sccs-find-revision)
9444 (vc-sccs-checkout, vc-sccs-rollback, vc-sccs-revert)
9445 (vc-sccs-steal-lock, vc-sccs-modify-change-comment)
9446 (vc-sccs-print-log): Use it.
9447
9448 * vc-hooks.el (vc-path): Remove SCCS-specific hack.
9449
9450 * emacs-lisp/lisp-mode.el (lisp-mode-auto-fill): Make it an alias.
9451 * progmodes/scheme.el (scheme-mode-variables): Don't use it.
9452
9453 * tooltip.el (tooltip-previous-message): New var.
9454 (tooltip-show-help-non-mode): Rewrite to better follow the behavior of
9455 the C code (avoid overwriting a minibuffer, restore previous echo
9456 message, ...).
9457 (tooltip-delay, tooltip-process-prompt-regexp, tooltip-strip-prompt):
9458 Simplify.
9459
9460 2008-04-19 Nick Roberts <nickrob@snap.net.nz>
9461
9462 * progmodes/gdb-ui.el (gdb-thread-indicator): New variable.
9463 (gdb-init-1): Initialise it.
9464 (gdb-annotation-rules): New entry for "new-thread".
9465 (gdb-thread-identification): New function to customize
9466 mode-line-buffer-identification.
9467 (gdb-frames-mode, gdb-registers-mode, gdb-locals-mode)
9468 (gdb-assembler-mode): Use it.
9469 (gdb-threads-mode): Force "info threads" onto queue.
9470
9471 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9472
9473 * files.el (locate-file-completion-table): Rename from
9474 locate-file-completion and make it use `pred' in the normal way.
9475 (locate-file-completion): New compatibility wrapper.
9476 (load-library): Use locate-file-completion-table.
9477 * finder.el (finder-commentary):
9478 * subr.el (locate-library):
9479 * emacs-lisp/find-func.el (find-library): Likewise.
9480 * info.el: Use with-current-buffer and inhibit-read-only.
9481 (Info-read-node-name-2): Change to use `predicate' in the normal way.
9482 (Info-read-node-name-1): Adjust uses accordingly.
9483
9484 * minibuffer.el (completion-table-with-context): Add support for `pred'.
9485 (completion-table-with-terminator): Don't use complete-with-action
9486 since we have to distinguish all three cases anyway.
9487 (completion-table-with-predicate): New function.
9488 (dynamic-completion-table): Add obsolete alias.
9489
9490 * emacs-lisp/trace.el (trace-make-advice): Don't change selected-window.
9491
9492 2008-04-18 Sam Steingold <sds@gnu.org>
9493
9494 * vc.el (vc-dir-menu-map, vc-dir-mode-map, vc-dir-tool-bar-map):
9495 Use quit-window instead of bury-buffer.
9496
9497 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
9498
9499 * minibuffer.el (completion-table-with-terminator): Fix last fix.
9500
9501 2008-04-18 Andreas Schwab <schwab@suse.de>
9502
9503 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
9504 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
9505 Depend on $(lisp)/subdirs.el.
9506
9507 2008-04-18 Juanma Barranquero <lekktu@gmail.com>
9508
9509 * descr-text.el (describe-char-after):
9510 Use `define-obsolete-function-alias'.
9511
9512 * dired-x.el (dired-omit-files-p): Use `define-obsolete-variable-alias'.
9513
9514 * facemenu.el (facemenu-unlisted-faces): Fix obsolescence description.
9515
9516 * savehist.el (savehist-load): Add WHEN to obsolescence declaration.
9517 Remove redundant obsolescence info in docstring.
9518
9519 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
9520 (vc-header-alist): Add WHEN to obsolescence declaration.
9521 (vc-state): Fix typo in docstring.
9522
9523 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap):
9524 Use `define-obsolete-variable-alias'.
9525
9526 * emulation/tpu-edt.el (tpu-have-ispell):
9527 * international/codepage.el (codepage-setup):
9528 Fix typo in obsolescence declaration.
9529
9530 * international/mule.el (char-coding-system-table):
9531 Remove redundant obsolescence info in docstring.
9532 (charset-list, generic-char-p, set-char-table-default):
9533 Fix typos in obsolescence declarations.
9534
9535 * international/mule-diag.el (non-iso-charset-alist):
9536 Fix typo in obsolescence declaration.
9537 (decode-codepage-char): Remove redundant obsolescence info in docstring.
9538
9539 * font-core.el (font-lock-defaults-alist):
9540 * font-lock.el (font-lock-reference-face):
9541 * frame.el (screen-height, screen-width, set-screen-width)
9542 (set-screen-height):
9543 * hilit-chg.el (highlight-changes-initial-state):
9544 * isearch.el (isearch-return-char):
9545 * log-edit.el (cvs-commit-buffer-require-final-newline)
9546 (cvs-changelog-full-paragraphs):
9547 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
9548 (mouse-popup-menubar-stuff):
9549 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button)
9550 (mouse-wheel-click-button):
9551 * outline.el (outline-visible):
9552 * pcvs-defs.el (cvs-diff-ignore-marks, cvs-diff-buffer-name):
9553 * pcvs-info.el (cvs-display-full-path, cvs-fileinfo->full-path):
9554 * emacs-lisp/lisp-mode.el (lisp-comment-indent):
9555 * progmodes/compile.el (compile-internal):
9556 Add WHEN to obsolescence declarations.
9557
9558 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
9559
9560 * emacs-lisp/debug.el (debug): Revert to bury-buffer since quit-window
9561 is not better anyway.
9562
9563 2008-04-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9564
9565 * whitespace.el (whitespace-report-region): Handle whitespace-tab-width
9566 properly.
9567
9568 2008-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
9569
9570 * progmodes/python.el (python-mode-map): Use abbrev-table-menu.
9571 (python-use-skeletons): Remove, unused.
9572 (python-skeletons): Remove. Use the abbrev table instead.
9573 (python-mode-abbrev-table): Fix regexp;
9574 add enable-function and case-fixed.
9575 (def-python-skeleton): Simplify.
9576 (python-expand-template): Use the abbrev-table and abbrev-insert.
9577 (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
9578 Remove.
9579 (python-mode): Don't set pre-abbrev-expand-hook.
9580
9581 * skeleton.el: Set coding-tag.
9582
9583 * abbrev.el (abbrev-insert): New function extracted from expand-abbrev.
9584 (expand-abbrev): Use it.
9585 (abbrev-table-menu): New function.
9586
9587 * abbrev.el (define-abbrev-table): Fontify dosctrings as such.
9588
9589 * minibuffer.el (completion-table-with-terminator): Fix paren typo.
9590
9591 2008-04-17 Sam Steingold <sds@gnu.org>
9592
9593 * pcvs-util.el (cvs-bury-buffer): Use quit-window instead of the
9594 idiosyncratic bury-buffer/delete-window logic.
9595
9596 2008-04-17 Juanma Barranquero <lekktu@gmail.com>
9597
9598 * emacs-lisp/crm.el (crm-completion-help, crm-complete)
9599 (crm-complete-word, crm-complete-and-exit): Fix typo in previous change.
9600
9601 2008-04-17 Kenichi Handa <handa@m17n.org>
9602
9603 * international/characters.el: Don't make the width of U+00AD to 0.
9604
9605 2008-04-17 Nick Roberts <nickrob@snap.net.nz>
9606
9607 * progmodes/gdb-ui.el (gdb-stack-update): New variable.
9608 (gdb, gdb-starting, gdb-frames-mode): Use it.
9609 (gdb-invalidate-frames): Advise to call "info stack" only if
9610 execution has occurred.
9611 (gdb-info-breakpoints-custom): Only update overlay-arrow pointing to
9612 selected frame if no execution has occurred.
9613 (gdb-frames-force-update): New interactive function.
9614 (gdb-frames-mode-map): Bind it to "F".
9615
9616 2008-04-17 Michael Olson <mwolson@gnu.org>
9617
9618 * textmodes/remember.el (remember-version): Release Remember 2.0.
9619
9620 2008-04-16 Yoni Rabkin <yoni@rabkins.net>
9621
9622 * textmodes/artist.el:
9623 * progmodes/vhdl-mode.el:
9624 * progmodes/verilog-mode.el:
9625 * progmodes/vera-mode.el:
9626 * progmodes/simula.el:
9627 * progmodes/ps-mode.el:
9628 * progmodes/cmacexp.el:
9629 * obsolete/hilit19.el:
9630 * emulation/viper.el:
9631 * ediff.el: Cleanup the bug-report email addresses and make sure the
9632 maintainer is still willing to handle bug reports.
9633
9634 2008-04-16 Dan Nicolaescu <dann@ics.uci.edu>
9635
9636 * vc.el (vc-dir-kill-query): Fix thinko.
9637
9638 2008-04-16 Glenn Morris <rgm@gnu.org>
9639
9640 * calendar/diary-lib.el (diary-remind): Don't clobber `date' passed
9641 by diary-sexp-entry.
9642
9643 2008-04-16 Markus Triska <markus.triska@gmx.at>
9644
9645 * proced.el (proced-command-alist): Add support for darwin.
9646
9647 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
9648
9649 * proced.el (proced-mode): Redefine as just the major-mode.
9650 (proced): Separate it from proced-mode.
9651
9652 * vc.el: Rename vc-status to vc-dir and the vc-status var to vc-ewoc.
9653
9654 2008-04-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9655
9656 * whitespace.el: Honor the `indent-tabs-mode' setting from user.
9657 Suggested by Stephen Deasey <sdeasey@gmail.com>. Honor also the
9658 `tab-width' setting from user. New version 10.0. Doc and docstring
9659 fix.
9660 (whitespace-style, whitespace-chars): Remove options.
9661 (whitespace-style-mark): New option, replace whitespace-style deleted
9662 option. Fix docstring.
9663 (whitespace-style-color): New option, replace whitespace-chars deleted
9664 option. Fix docstring.
9665 (whitespace-space, whitespace-hspace, whitespace-tab)
9666 (whitespace-newline, whitespace-trailing, whitespace-line)
9667 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
9668 (whitespace-space-after-tab, whitespace-hspace-regexp)
9669 (whitespace-space-regexp, whitespace-tab-regexp)
9670 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
9671 (whitespace-empty-at-eob-regexp, whitespace-line-column)
9672 (whitespace-toggle-option-alist): Fix docstring.
9673 (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
9674 (whitespace-space-after-tab-regexp, whitespace-display-mappings): Fix
9675 docstring and initialization.
9676 (global-whitespace-mode): Autoloaded global minor mode.
9677 (whitespace-chars-value-list, whitespace-style-value-list)
9678 (whitespace-active-chars, whitespace-active-style)
9679 (whitespace-toggle-chars, whitespace-toggle-style): Remove vars.
9680 (whitespace-color-value-list): New var, replace
9681 whitespace-chars-value-list removed var.
9682 (whitespace-mark-value-list): New var, replace
9683 whitespace-style-value-list removed var.
9684 (whitespace-active-color): New var, replace whitespace-active-chars
9685 removed var.
9686 (whitespace-active-mark): New var, replace whitespace-active-style
9687 removed var.
9688 (whitespace-toggle-color): New var, replace whitespace-toggle-chars
9689 removed var.
9690 (whitespace-toggle-mark): New var, replace whitespace-toggle-style
9691 removed var.
9692 (whitespace-toggle-option-alist, whitespace-report-list)
9693 (whitespace-report-text, whitespace-help-text): Fix initialization.
9694 (whitespace-indent-tabs-mode, whitespace-tab-width): New vars.
9695 (whitespace-toggle-options, global-whitespace-toggle-options)
9696 (whitespace-cleanup-region, whitespace-report-region)
9697 (whitespace-interactive-char): Fix docstring and code.
9698 (whitespace-cleanup, whitespace-report): Fix docstring.
9699 (whitespace-replace-spaces-by-tabs): Remove fun.
9700 (whitespace-replace-action): New fun, replace
9701 whitespace-replace-spaces-by-tabs removed fun.
9702 (whitespace-regexp, whitespace-indentation-regexp)
9703 (whitespace-space-after-tab-regexp, whitespace-insert-value)
9704 (whitespace-kill-buffer): New funs.
9705 (whitespace-insert-option-mark, whitespace-help-on)
9706 (whitespace-help-off, whitespace-turn-on, whitespace-turn-off)
9707 (whitespace-color-on, whitespace-color-off)
9708 (whitespace-display-char-on): Fix code.
9709
9710 2008-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
9711
9712 * mouse-drag.el (mouse-throw-magnifier-with-scroll-bar)
9713 (mouse-throw-magnifier-with-mouse-movement): Remove.
9714 (mouse-throw-magnifier-base): New const.
9715 (mouse-drag-scroll-delta): New fun.
9716 (mouse-drag-throw): Use it.
9717
9718 2008-04-15 Juanma Barranquero <lekktu@gmail.com>
9719
9720 * international/uni-bidi.el, international/uni-category.el:
9721 * international/uni-combining.el, international/uni-comment.el:
9722 * international/uni-decimal.el, international/uni-decomposition.el:
9723 * international/uni-digit.el, international/uni-lowercase.el:
9724 * international/uni-mirrored.el, international/uni-name.el:
9725 * international/uni-numeric.el, international/uni-old-name.el:
9726 * international/uni-titlecase.el, international/uni-uppercase.el:
9727 * international/charprop.el: Regenerate.
9728
9729 2008-04-15 Dan Nicolaescu <dann@ics.uci.edu>
9730
9731 * vc.el (vc-status-fileinfo): Add new member directoryp.
9732 (vc-default-status-printer): Print directories.
9733 (vc-status-update): Sort files before subdirectories.
9734
9735 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
9736 Add alternative implementation based on "cvs update".
9737
9738 2008-04-15 Tassilo Horn <tassilo@member.fsf.org>
9739
9740 * doc-view.el: Changed requirements section to tell that only one
9741 of dvipdf or dvipdfm is needed.
9742 (doc-view-already-converted-p): Fix bug that forced reconversion
9743 if doc was already converted.
9744
9745 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9746
9747 * minibuffer.el (minibuffer-message):
9748 Make sure we can put-text-property.
9749
9750 * emacs-lisp/crm.el: Complete rewrite.
9751
9752 * tmm.el (tmm-completion-delete-prompt): Don't hardcode point-min==1.
9753 (tmm-add-prompt): Make sure completion-setup-hook is preserved even in
9754 case of an error in display-completion-list.
9755
9756 * filecache.el (file-cache-completions-keymap): Move init from
9757 file-cache-completion-setup-function into declaration.
9758 (file-cache-minibuffer-complete): Simplify.
9759 (file-cache-completion-setup-function): Use standard-output,
9760 preserve current-buffer.
9761
9762 * vc.el (vc-status-update): Fix typo.
9763 (vc-status-update): Set needs-update.
9764 (vc-status-refresh): η-reduce.
9765
9766 2008-04-14 Tassilo Horn <tassilo@member.fsf.org>
9767
9768 * doc-view.el (doc-view-mode-map): Bind C-a to image-bol and C-e
9769 to image-eol.
9770
9771 2008-04-14 Alexandre Julliard <julliard@winehq.org>
9772
9773 * vc.el (vc-status-update): Undo the previous revert.
9774
9775 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9776
9777 * minibuffer.el (completion-table-with-terminator): Those completions
9778 are never valid w.r.t test-completion.
9779 (completion--file-name-table):
9780 Check completion-all-completions-with-base-size.
9781
9782 2008-04-14 Tassilo Horn <tassilo@member.fsf.org>
9783
9784 * doc-view.el (doc-view-dvipdf-program): New variable.
9785 (doc-view-dvipdfm-program): Mention doc-view-dvipdf-program.
9786 (doc-view-mode-p): Check for doc-view-dvipdf-program as
9787 alternative for doc-view-dvipdfm-program.
9788 (doc-view-dvi->pdf): Prefer dvipdf over dvipdfm.
9789
9790 * doc-view.el (doc-view-start-process): Don't set
9791 default-directory to "~/" if the current value is valid.
9792 This broke PS files that run other files in the same directory.
9793
9794 2008-04-14 Dan Nicolaescu <dann@ics.uci.edu>
9795
9796 * vc.el (vc-status-kill-query): New function.
9797 (vc-status-mode): Add it to kill-buffer-query-functions.
9798 (vc-status-show-fileentry): New function.
9799 (vc-status-menu-map): Bind it. Bind vc-next-action.
9800
9801 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9802
9803 * minibuffer.el (minibuffer-message): Put cursor at the right place.
9804
9805 2008-04-13 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9806
9807 * proced.el (proced-send-signal): Fix error recognition.
9808
9809 2008-04-13 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9810
9811 * proced.el (proced-command-alist): Remove sort column.
9812 (proced-command, proced-procname-column):
9813 Use make-variable-buffer-local.
9814 (proced-signal-function): Rename from proced-kill-program.
9815 Allow for elisp symbols and string values representing system calls.
9816 (proced-marker-regexp, proced-success-message): New functions.
9817 (proced): Use defalias. Add autoload cookie.
9818 (proced-unmark-backward, proced-toggle-marks)
9819 (proced-hide-processes): New commands.
9820 (proced-do-mark): Simplify code.
9821 (proced-insert-mark): Use optional arg BACKWARD instead of line number.
9822 (proced-update): Remove sorting.
9823 (proced-send-signal): Display number of processes to operate on.
9824 Allow for system calls or elisp functions to send signals.
9825 Check if signal was sent successfully.
9826
9827 2008-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9828
9829 * minibuffer.el (completion-all-completion-with-base-size): New var.
9830 (completion--some): New function.
9831 (completion-table-with-context, completion--file-name-table):
9832 Return the base-size if requested.
9833 (completion-table-in-turn): Generalize to multiple arguments.
9834 (complete-in-turn): Compatibility alias.
9835 (completion-styles-alist): New var.
9836 (completion-styles): New customization.
9837 (minibuffer-try-completion, minibuffer-all-completions):
9838 New functions.
9839 (minibuffer--do-completion, minibuffer-complete-and-exit)
9840 (minibuffer-try-word-completion): Use them.
9841 (display-completion-list, minibuffer-completion-help): Use them.
9842 Handle all-completions's new base-size info to set completion-base-size.
9843 * info.el (Info-read-node-name-1): Use completion-table-with-context,
9844 completion-table-with-terminator and complete-with-action.
9845 Remove the now obsolete completion-base-size-function property.
9846 * simple.el (completion-list-mode-map): Move init into declaration.
9847 (completion-list-mode): Use define-derived-mode.
9848 (completion-setup-function): Use any completion-base-size that may
9849 have been set before. Remove handling of completion-base-size-function.
9850 * loadup.el: Move abbrev.el up earlier.
9851
9852 2008-04-13 Alexandre Julliard <julliard@winehq.org>
9853
9854 * vc-git.el (vc-git-after-dir-status-stage)
9855 (vc-git-dir-status-goto-stage): New functions.
9856 (vc-git-after-dir-status-stage1)
9857 (vc-git-after-dir-status-stage1-empty-db)
9858 (vc-git-after-dir-status-stage2): Remove, functionality moved
9859 into the new generic stage functions.
9860 (vc-git-dir-status-files): New function.
9861
9862 * vc.el (vc-status-update): Revert an incorrect rewrite.
9863 Add some comments.
9864 (vc-status-refresh-files): New function.
9865 (vc-status-refresh): Use `vc-status-refresh-files' to refresh the
9866 state of up-to-date files.
9867 (vc-default-dir-status-files): New function.
9868
9869 2008-04-13 Juanma Barranquero <lekktu@gmail.com>
9870
9871 * minibuffer.el (completion--embedded-envvar-table)
9872 (read-file-name-internal): Fix typos in 2008-04-11 change.
9873
9874 * faces.el (read-face-name): Use `completion-table-in-turn',
9875 not `complete-in-turn'.
9876
9877 2008-04-13 Andreas Schwab <schwab@suse.de>
9878
9879 * progmodes/etags.el: Require 'cl when compiling.
9880
9881 2008-04-12 Nick Roberts <nickrob@snap.net.nz>
9882
9883 * progmodes/gud.el (gud-menu-map): Expand tooltip.
9884
9885 * progmodes/gdb-ui.el (gdb-find-source-frame): Improve doc string.
9886 (menu): Add/expand menu tooltips.
9887
9888 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
9889
9890 * progmodes/sh-script.el (sh-show-indent): Fix typo.
9891 (sh-mode-map): Add a toggle for inserting braces and quotes in pairs.
9892
9893 * vc-cvs.el (vc-cvs-registered): Allow removed files to be
9894 considered registered.
9895
9896 2008-04-12 Reiner Steib <Reiner.Steib@gmx.de>
9897
9898 * emacs-lisp/copyright.el (copyright-update-directory): New command.
9899
9900 * ediff-wind.el (ediff-split-window-function)
9901 (ediff-merge-split-window-function): Improve custom type.
9902
9903 2008-04-12 Eli Zaretskii <eliz@gnu.org>
9904
9905 * loadup.el ("minibuffer"): Move after "faces".
9906
9907 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9908
9909 * progmodes/hideif.el (hif-factor): Handle unary minus.
9910
9911 2008-04-12 Glenn Morris <rgm@gnu.org>
9912
9913 * calendar/cal-china.el (chinese-calendar-time-zone):
9914 Mark obsolete name as risky too.
9915
9916 * calendar/calendar.el (calendar-faces): New custom group.
9917 (calendar-today, diary, holiday): Doc fix.
9918 Move to calendar-faces group.
9919 * calendar/diary-lib.el (diary-face, diary-anniversary, diary-time)
9920 (diary-button): Doc fix. Move to calendar-faces group.
9921
9922 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
9923 * desktop.el, files.el, hilit-chg.el, ibuffer.el, iswitchb.el:
9924 * pcvs-info.el, recentf.el, speedbar.el, calendar/cal-china.el:
9925 * calendar/cal-hebrew.el, calendar/cal-x.el, calendar/calendar.el
9926 * calendar/diary-lib.el, net/net-utils.el, progmodes/gud.el:
9927 Move non-autoloaded define-obsolete-variable-alias calls for defcustoms
9928 not in dumped files before the associated defcustom.
9929
9930 2008-04-11 Johan Bockgård <bojohan@gnu.org>
9931
9932 * minibuffer.el (lazy-completion-table): Fix debug spec.
9933
9934 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9935
9936 * minibuffer.el (complete-with-action, lazy-completion-table):
9937 Move from subr.el.
9938 (apply-partially, completion-table-dynamic)
9939 (completion-table-with-context, completion-table-with-terminator)
9940 (completion-table-in-turn): New funs.
9941 (completion--make-envvar-table, completion--embedded-envvar-table):
9942 New funs.
9943 (read-file-name-internal): Use them.
9944 (completion-setup-hook): Move from simple.el.
9945 * subr.el (complete-with-action, lazy-completion-table):
9946 * simple.el (completion-setup-hook): Move to minibuffer.el.
9947
9948 2008-04-11 Glenn Morris <rgm@gnu.org>
9949
9950 * Makefile.in (AUTOGENEL): Add calc/calc-loaddefs.el.
9951
9952 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9953
9954 * progmodes/python.el (python-mode): Don't mess with hippie-expand.
9955
9956 * Makefile.in (bootstrap-prepare): Make tpu-edt.el writable as well.
9957
9958 * textmodes/fill.el (fill-forward-paragraph-function): New var.
9959 (fill-forward-paragraph): New fun.
9960 (fill-paragraph, fill-region): Use it.
9961
9962 * vc.el: Change `dir-status' to not take (and pass) status-buffer.
9963 (vc-status-create-fileinfo): Make `extra' optional.
9964 (vc-status-busy): New fun.
9965 (vc-status-menu-map): Use it.
9966 (vc-status-crt-marked): Remove.
9967 (vc-status-update): Rename from vc-status-add-entries.
9968 Add argument so as to prevent addition of entries. Rewrite.
9969 (vc-update-vc-status-buffer): Remove.
9970 (vc-status-refresh): Don't remove old entries, set them to
9971 up-to-date instead. Also do it after the update is complete.
9972 (vc-status-marked-files): η-reduce.
9973
9974 * dired.el (dired-read-dir-and-switches): Use read-directory-name even
9975 for non-dialogs.
9976
9977 * Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
9978
9979 * loadup.el: Load ldefs-boot.el if loaddefs.el doesn't exist.
9980
9981 2008-04-11 Jan Djärv <jan.h.d@swipnet.se>
9982
9983 * tooltip.el (tooltip-show-help-non-mode): Set message-truncate-lines
9984 to t and don't truncate msg.
9985
9986 2008-04-11 Glenn Morris <rgm@gnu.org>
9987
9988 * calendar/calendar.el (diary, holidays):
9989 Move custom groups to other files.
9990 (holiday-general-holidays, holiday-oriental-holidays)
9991 (holiday-local-holidays, holiday-other-holidays, hebrew-holidays-1)
9992 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
9993 (holiday-hebrew-holidays, holiday-christian-holidays)
9994 (holiday-islamic-holidays, holiday-bahai-holidays)
9995 (holiday-solar-holidays, calendar-holidays): Move to holidays.el.
9996 * calendar/diary-lib.el: Move custom group here from calendar.el.
9997 * calendar/holidays.el: Move custom group and variables here
9998 from calendar.el.
9999
10000 * calendar/cal-china.el (calendar-chinese-time-zone): Mark as risky.
10001
10002 * calendar/cal-dst.el (calendar-dst-check-each-year-flag):
10003 Fix custom group.
10004 (calendar-current-time-zone-cache): Autoload riskiness.
10005
10006 * calendar/cal-tex.el (cal-tex-preamble-extra): Fix custom type.
10007
10008 2008-04-11 Chong Yidong <cyd@stupidchicken.com>
10009
10010 * woman.el (woman2-TH): Use string-equal instead of string-match.
10011
10012 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
10013
10014 * smerge-mode.el (smerge-apply-resolution-patch): Fix typo.
10015 (smerge-resolve): Merge the "2-way refinement" case with one half of
10016 the "mere whitespace" resolution.
10017
10018 2008-04-10 Dan Nicolaescu <dann@ics.uci.edu>
10019
10020 * vc-bzr.el (vc-bzr-after-dir-status): Detect the conflict state.
10021
10022 2008-04-10 Juanma Barranquero <lekktu@gmail.com>
10023
10024 * subr.el (assoc-ignore-case, assoc-ignore-representation):
10025 Add WHEN to obsolescence declaration.
10026
10027 * makefile.w32-in (AUTOGENEL): Add calc-loaddefs.el.
10028
10029 2008-04-10 Dan Nicolaescu <dann@ics.uci.edu>
10030
10031 * vc-hooks.el (vc-state): Add new state `conflict'.
10032 (vc-after-save): Use when not if.
10033 (vc-default-mode-line-string): Deal with the conflict state.
10034 (vc-prefix-map, vc-menu-map): Bind vc-status instead of vc-directory.
10035
10036 * vc.el (vc-editable-p, vc-default-status-printer)
10037 (vc-next-action): Deal with the conflict state.
10038 (vc-mark-resolved): New function.
10039 (vc-status-mode): Fix mode name.
10040 (vc-default-comment-history): Use when not if.
10041 (Todo): Add new entries, remove old ones.
10042
10043 * vc-cvs.el (vc-cvs-merge, vc-cvs-merge-news): Set conflict state.
10044 (vc-cvs-parse-status, vc-cvs-after-dir-status):
10045 * vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
10046 Detect the conflict state.
10047
10048 * vc-hg.el (vc-hg-dir-status): Remove unneeded call.
10049
10050 2008-04-10 Glenn Morris <rgm@gnu.org>
10051
10052 * menu-bar.el (menu-bar-options-menu) <truncate-lines>:
10053 Respect truncate-partial-width-windows in non-full windows,
10054 with regards to :toggle and :enable state.
10055
10056 * simple.el (toggle-truncate-lines): Doc fix.
10057
10058 * Makefile.in (MH_E_DIR): New variable.
10059 (MH_E_SRC): Restore variable removed 2008-03-13.
10060 (mh-loaddefs.el): Depend on $MH_E_SRC.
10061 (CAL_DIR, CAL_SRC): New variables.
10062 (cal-loaddefs.el, diary-loaddefs.el, hol-loaddefs.el):
10063 Depend on CAL_SRC.
10064
10065 * calendar/calendar.el (calendar, diary): Add :prefix.
10066 (holidays): Change :prefix.
10067 (calendar-today, holiday, calendar-holiday-marker)
10068 (european-calendar-style): Change custom groups.
10069
10070 * calendar/calendar.el (diary-hook, diary-display-hook):
10071 Move to diary-lib.el.
10072 * calendar/diary-lib.el (diary-hook, diary-display-hook):
10073 Move here from calendar.el.
10074 * calendar/appt.el: Require diary-lib rather than calendar.
10075 * calendar/cal-x.el (diary-display-hook): Declare for compiler.
10076
10077 * calendar/appt.el (appt): Add :prefix.
10078
10079 * calendar/diary-lib.el (diary-hook): Doc fix.
10080 (diary-mark-sexp-entries): Fix replacement of calendar-for-loop.
10081
10082 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
10083
10084 * minibuffer.el (minibuffer--double-dollars, read-file-name-internal):
10085 New functions.
10086
10087 * minibuffer.el (minibuffer--do-completion): Don't forget to propagate
10088 the arg to recursive calls.
10089
10090 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
10091
10092 * minibuffer.el (completion-auto-help): Fix typo.
10093
10094 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
10095
10096 * vc-cvs.el (vc-cvs-diff-tree): Remove unused function.
10097
10098 2008-04-09 Michael Albinus <michael.albinus@gmx.de>
10099
10100 * net/tramp.el (tramp-find-file-name-coding-system-alist): New defun.
10101 (tramp-handle-insert-file-contents, tramp-handle-write-region): Use it.
10102
10103 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
10104
10105 * vc-hooks.el (vc-default-mode-line-string): Use ? for missing.
10106
10107 * minibuffer.el (minibuffer): Move group from cus-edit.el.
10108 (completion-auto-help): Move from C code.
10109 (minibuffer--maybe-completion-help): Remove.
10110 (minibuffer--bitset): New function.
10111 (minibuffer--do-completion): Rename from minibuffer-do-completion.
10112 Renumber a bit. Really complete on string *before* point.
10113 Add argument used for word-completion.
10114 Join trailing / in completion with following text, as done in
10115 minibuffer-complete-word.
10116 Handle new value `lazy' for completion-auto-help.
10117 (minibuffer-try-word-completion): New function extracted from
10118 minibuffer-complete-word.
10119 (minibuffer-complete-word): Use minibuffer--do-completion.
10120 (minibuffer--insert-strings): Rename from
10121 minibuffer-complete-insert-strings.
10122 (exit-minibuffer): Fix typo.
10123 * cus-edit.el (minibuffer): Move group to minibuffer.el.
10124 * cus-start.el: Remove completion-auto-help.
10125
10126 2008-04-09 Alexandre Julliard <julliard@winehq.org>
10127
10128 * vc.el (vc-status-add-entries): New function.
10129 (vc-status-add-entry): Remove.
10130 (vc-update-vc-status-buffer, vc-status-mark-buffer-changed):
10131 Use vc-status-add-entries.
10132
10133 * emacs-lisp/ewoc.el (ewoc-collect): Return results in the correct
10134 order.
10135
10136 2008-04-09 Jason Rumney <jasonr@gnu.org>
10137
10138 * makefile.w32-in (LOADDEFS): Add mh-loaddefs.el.
10139 ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule.
10140 (pre-mh-loaddefs.el-CMD, pre-mh-loaddefs.el-SH): Remove.
10141 (AUTOGENEL): New variable.
10142 (distclean, maintainer-clean): New targets.
10143
10144 2008-04-09 Chong Yidong <cyd@stupidchicken.com>
10145
10146 * emacs-lisp/regexp-opt.el (regexp-opt):
10147 Reduce max-lisp-eval-depth and max-specpdl-size to 10000.
10148
10149 2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
10150
10151 * nxml/nxml-mode.el (nxml-cleanup): New function.
10152 (nxml-mode): Add it to change-major-mode-hook.
10153
10154 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
10155
10156 * term/x-win.el (x-gtk-stock-map): Map info to gtk-info.
10157
10158 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
10159
10160 * calc/.cvsignore: New file.
10161
10162 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
10163
10164 * vc.el (vc-status-tool-bar-map): Add vc-print-log to tool bar.
10165
10166 * tooltip.el (tooltip-mode): Set tooltip-show-help-non-mode as
10167 show-help-function when turning tooltip off.
10168 (tooltip-show): Call tooltip-show-help-non-mode if use-echo-area.
10169 (tooltip-trunc-str, tooltip-show-help-non-mode): New.
10170
10171 2008-04-09 Alan Mackenzie <acm@muc.de>
10172
10173 * font-lock.el (font-lock-extend-after-change-region-function):
10174 Make it buffer local.
10175
10176 2008-04-09 Glenn Morris <rgm@gnu.org>
10177
10178 * calendar/calendar.el (diary-file, european-calendar-style):
10179 Remove autoload cookies.
10180
10181 2008-04-09 Dan Nicolaescu <dann@ics.uci.edu>
10182
10183 * outline.el (outline-mode-menu-bar-map):
10184 * log-view.el (log-view-mode-menu):
10185 * log-edit.el (log-edit-menu): Add :help.
10186
10187 2008-04-09 Chong Yidong <cyd@stupidchicken.com>
10188
10189 * emacs-lisp/regexp-opt.el (regexp-opt-group):
10190 Use substring-no-properties for correct handling of unibyte strings.
10191
10192 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
10193
10194 * add-log.el (change-log-next-buffer): Handle the case where version<
10195 signals an error.
10196
10197 * mouse.el (mouse-menu-major-mode-map): New fun extracted from
10198 mouse-major-mode-menu.
10199 (mouse-menu-bar-map): New fun extracted from mouse-popup-menubar.
10200 (mouse-major-mode-menu, mouse-popup-menubar)
10201 (mouse-popup-menubar-stuff): Use them.
10202 (C-down-mouse-3): Bind to a dynamic map rather than to
10203 mouse-popup-menubar-stuff.
10204
10205 * bindings.el (mode-line-major-mode-keymap): Bind down-mouse-1
10206 to mouse-menu-major-mode-map rather than to mouse-major-mode-menu.
10207
10208 2008-04-09 Dan Nicolaescu <dann@ics.uci.edu>
10209
10210 * vc-svn.el (vc-svn-modify-change-comment): Add support for the
10211 file:// access method.
10212
10213 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
10214
10215 * minibuffer.el: New file.
10216 * loadup.el: Load it.
10217
10218 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
10219
10220 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el
10221 rather than subdirs.el. It introduces an ugly circular dependency, tho.
10222
10223 * calc/calc.el: Load "calc-loaddefs" rather than set up manual autoloads.
10224 (calc-mode-map, calc-digit-map, calc-dispatch-map):
10225 Move initialization into declaration.
10226 * calc/calc-yank.el:
10227 * calc/calc-misc.el:
10228 * calc/calc-embed.el:
10229 * calc/calc-aent.el: Add autoload cookies. Set generated-autoload-file.
10230
10231 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
10232
10233 * ps-samp.el (ps-add-printer, ps-remove-printer)
10234 (ps-make-dynamic-printer-menu): New functions.
10235
10236 * net/zeroconf.el: New file.
10237
10238 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
10239
10240 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits): Typo.
10241
10242 2008-04-08 Dan Nicolaescu <dann@ics.uci.edu>
10243
10244 * vc-rcs.el (vc-rcs-modify-change-comment):
10245 * vc-cvs.el (vc-cvs-modify-change-comment): Fix argument order.
10246
10247 * log-view.el (log-view-mode-menu): Bind log-view-modify-change-comment.
10248
10249 2008-04-08 Juanma Barranquero <lekktu@gmail.com>
10250
10251 * international/mule-cmds.el (set-locale-environment): Don't warn if
10252 coding system doesn't agree with system locale (this reverts changes
10253 by Dave Love, dated 2002-10-27 and 2002-10-09).
10254
10255 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
10256 * emacs-lisp/cl-macs.el (get-setf-method): Use `string-match-p'.
10257
10258 * emacs-lisp/copyright.el (copyright-update-year): Use `looking-at-p'.
10259
10260 2008-04-08 Glenn Morris <rgm@gnu.org>
10261
10262 * calendar/calendar.el (calendar-date-style): Remove autoload cookie.
10263 * textmodes/remember.el (remember-diary-convert-entry):
10264 Require calendar.
10265
10266 * textmodes/remember.el (remember-diary-extract-entries): Don't pass
10267 diary-file, since it is the default for make-diary-entry anyway.
10268
10269 * calendar/cal-menu.el (cal-menu-event-to-date):
10270 Rename calendar-event-to-date. Update callers.
10271 (calendar-mouse-tex-day): Rename cal-tex-mouse-day.
10272 (calendar-mouse-tex-week): Rename cal-tex-mouse-week.
10273 (calendar-mouse-tex-week2): Rename cal-tex-mouse-week2.
10274 (calendar-mouse-tex-week-iso): Rename cal-tex-mouse-week-iso.
10275 (calendar-mouse-tex-week-monday): Rename cal-tex-mouse-week-monday.
10276 (calendar-mouse-tex-filofax-daily): Rename cal-tex-mouse-filofax-daily.
10277 (calendar-mouse-tex-filofax-2week): Rename cal-tex-mouse-filofax-2week.
10278 (calendar-mouse-tex-filofax-week): Rename cal-tex-mouse-filofax-week.
10279 (calendar-mouse-tex-month): Rename cal-tex-mouse-month.
10280 (calendar-mouse-tex-month-landscape):
10281 Rename cal-tex-mouse-month-landscape.
10282 (calendar-mouse-tex-year): Rename cal-tex-mouse-year.
10283 (calendar-mouse-tex-filofax-year): Rename cal-tex-mouse-filofax-year.
10284 (calendar-mouse-tex-year-landscape):
10285 Rename cal-tex-mouse-year-landscape.
10286 (cal-menu-context-mouse-menu): Update for above name changes.
10287
10288 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
10289 * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
10290 * calendar/cal-iso.el, calendar/cal-julian.el, calendar/cal-move.el:
10291 * calendar/cal-persia.el, calendar/cal-tex.el, calendar/calendar.el:
10292 * calendar/holidays.el: Replace int-to-string with number-to-string.
10293
10294 2008-04-08 Chong Yidong <cyd@stupidchicken.com>
10295
10296 * mwheel.el (mwheel-scroll): Deactivate any temporarily active
10297 region if point moves.
10298
10299 2008-04-08 Kenichi Handa <handa@m17n.org>
10300
10301 * faces.el (font-slant-table): Change numeric values for `r',
10302 `roman', and `normal'.
10303
10304 2008-04-07 Vincent Belaïche <vincent.b.1@hotmail.fr>
10305
10306 * calc/calc-vec.el (calcFunc-kron, calc-kron): New functions.
10307
10308 2008-04-07 Jay Belanger <jay.p.belanger@gmail.com>
10309
10310 * calc/calc-ext.el (calc-init-extensions): Add `calc-kron' and
10311 `calcFunc-kron' to autoloads. Add keybinding for `calc-kron'.
10312
10313 2008-04-07 Michael Albinus <michael.albinus@gmx.de>
10314
10315 * net/tramp.el (tramp-methods): Fix again tramp-copy-args of
10316 "pscp" and "psftp". Reported by Gilles Pion <gpion@lfdj.com>.
10317
10318 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
10319
10320 * dired-aux.el (dired-read-shell-command): Use read-shell-command.
10321
10322 2008-04-07 Sam Steingold <sds@gnu.org>
10323
10324 * progmodes/inf-lisp.el (lisp-compile-string, lisp-eval-string):
10325 Add helper functions.
10326 (lisp-do-defun): Extract the common part of lisp-eval-defun and
10327 lisp-compile-defun; DEFVAR forms reset the variables to the init
10328 values, just like in emacs-lisp mode eval-defun.
10329 (lisp-eval-defun, lisp-compile-defun): Use lisp-do-defun.
10330 (lisp-compile-region): Use lisp-compile-string.
10331
10332 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
10333
10334 * subr.el (combine-and-quote-strings): Also quote strings that contain
10335 the separator.
10336
10337 * pcvs-util.el (cvs-map): Avoid recursion :-(
10338
10339 2008-04-07 Glenn Morris <rgm@gnu.org>
10340
10341 * calendar/calendar.el (calendar-mode-map): Replace use of kbd.
10342
10343 * calendar/calendar.el (diary-view-entries-initially-flag): Rename
10344 view-diary-entries-initially. Keep old name as alias, update users.
10345 (calendar-mark-diary-entries-flag): Rename
10346 mark-diary-entries-in-calendar. Keep old name as alias, update users.
10347 (calendar-view-holidays-initially-flag): Rename
10348 view-calendar-holidays-initially. Keep old name as alias, update users.
10349 (calendar-mark-holidays-flag): Rename mark-holidays-in-calendar.
10350 Keep old name as alias, update users.
10351 (calendar-initial-window-hook): Rename initial-calendar-window-hook.
10352 Keep old name as alias, update users.
10353 (calendar-today-visible-hook): Rename today-visible-calendar-hook.
10354 Keep old name as alias, update users.
10355 (calendar-today-invisible-hook): Rename today-invisible-calendar-hook.
10356 Keep old name as alias, update users.
10357 (diary-iso-date-forms): Rename iso-date-diary-pattern. Update users.
10358 (diary-american-date-forms): Rename american-date-diary-pattern.
10359 Keep old name as alias, update users.
10360 (diary-european-date-forms): Rename european-date-diary-pattern.
10361 Keep old name as alias, update users.
10362 (calendar-iso-date-display-form): Rename iso-calendar-display-form.
10363 Keep old name as alias, update users.
10364 (calendar-european-date-display-form): Rename
10365 european-calendar-display-form. Keep old name as alias, update users.
10366 (calendar-american-date-display-form): Rename
10367 european-calendar-display-form. Keep old name as alias, update users.
10368 (diary-show-holidays-flag): Rename holidays-in-diary-buffer.
10369 Keep old name as alias, update users.
10370 (holiday-general-holidays): Rename general-holidays.
10371 Keep old name as alias, update users.
10372 (holiday-oriental-holidays): Rename oriental-holidays.
10373 Keep old name as alias, update users.
10374 (holiday-local-holidays): Rename local-holidays.
10375 Keep old name as alias, update users.
10376 (holiday-other-holidays): Rename other-holidays.
10377 Keep old name as alias, update users.
10378 (holiday-hebrew-holidays): Rename hebrew-holidays.
10379 Keep old name as alias, update users.
10380 (holiday-christian-holidays): Rename christian-holidays.
10381 Keep old name as alias, update users.
10382 (holiday-islamic-holidays): Rename islamic-holidays.
10383 Keep old name as alias, update users.
10384 (holiday-bahai-holidays): Rename bahai-holidays.
10385 Keep old name as alias, update users.
10386 (holiday-solar-holidays): Rename solar-holidays.
10387 Keep old name as alias, update users.
10388 (diary-fancy-buffer): Rename fancy-diary-buffer.
10389 Keep old name as alias, update users.
10390 (calendar-other-calendars-buffer): Rename other-calendars-buffer.
10391 Update users.
10392 (calendar-hebrew-yahrzeit-buffer): Rename cal-hebrew-yahrzeit-buffer.
10393 Update users.
10394 (calendar-increment-month): Rename increment-calendar-month.
10395 Keep old name as alias, update callers.
10396 (calendar-increment-month-cons): Rename old calendar-increment-month.
10397 Update callers.
10398 (calendar-extract-month): Rename extract-calendar-month.
10399 Keep old name as alias, update callers.
10400 (calendar-extract-day): Rename extract-calendar-day.
10401 Keep old name as alias, update callers.
10402 (calendar-extract-year): Rename extract-calendar-year.
10403 Keep old name as alias, update callers.
10404 (calendar-generate-window): Rename generate-calendar-window.
10405 Update callers.
10406 (calendar-generate): Rename generate-calendar. Update callers.
10407 (calendar-generate-month): Rename generate-calendar-month.
10408 Update callers.
10409 (calendar-redraw): Rename redraw-calendar. Update callers.
10410 (calendar-describe-mode): Rename describe-calendar-mode. Update uses.
10411 (calendar-mouse-other-month): Rename mouse-calendar-other-month.
10412 Update callers.
10413 (calendar-update-mode-line): Rename update-calendar-mode-line.
10414 Update callers.
10415 (calendar-exit): Rename exit-calendar. Keep old name as alias,
10416 update callers.
10417 (calendar-mark-visible-date): Rename mark-visible-calendar-date.
10418 Keep old name as alias, update callers.
10419 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
10420 * calendar/cal-dst.el, calendar/cal-french.el, calendar/cal-hebrew.el:
10421 * calendar/cal-html.el, calendar/cal-islam.el, calendar/cal-iso.el:
10422 * calendar/cal-julian.el, calendar/cal-menu.el, calendar/cal-move.el:
10423 * calendar/cal-persia.el, calendar/cal-tex.el, calendar/cal-x.el:
10424 * calendar/diary-lib.el, calendar/holidays.el, calendar/lunar.el:
10425 * calendar/solar.el: Update for calendar.el name changes.
10426 * org/org.el (org-agenda-format-date-aligned)
10427 (org-agenda-execute-calendar-command): Access date elements directly
10428 rather than using calendar functions.
10429 (org-read-date, org-goto-calendar, org-agenda-goto-calendar):
10430 Also set calendar-view-diary-initially-flag,
10431 calendar-view-holidays-initially-flag.
10432 (org-get-entries-from-diary): Also set diary-fancy-buffer.
10433 (org-agenda-execute-calendar-command): No need to set displayed-day.
10434
10435 2008-04-06 Alan Mackenzie <acm@muc.de>
10436
10437 * progmodes/cc-langs.el (c-before-font-lock-function): Correct a
10438 typo in the doc string.
10439
10440 * progmodes/cc-mode.el (c-basic-common-init):
10441 Set font-lock-extend-after-change-region-function.
10442 (c-extend-after-change-region): New function, used in
10443 font-lock-extend-after-change-region-function, thus superseding
10444 advice on the Font Lock after change functions.
10445 (c-advise-fl-for-region): Remove this macro.
10446
10447 2008-04-06 Reiner Steib <Reiner.Steib@gmx.de>
10448
10449 * textmodes/flyspell.el (flyspell-duplicate-distance):
10450 Improve custom type.
10451
10452 2008-04-06 Glenn Morris <rgm@gnu.org>
10453
10454 * calendar/diary-lib.el (diary-sexp-entry-symbol):
10455 Rename sexp-diary-entry-symbol. Keep old name as alias, update users.
10456 (diary-list-entries-hook): Rename list-diary-entries-hook.
10457 Keep old name as alias, update users.
10458 (diary-mark-entries-hook): Rename mark-diary-entries-hook.
10459 Keep old name as alias, update users.
10460 (diary-nongregorian-listing-hook): Rename
10461 nongregorian-diary-listing-hook. Keep old name as alias, update users.
10462 (diary-nongregorian-marking-hook): Rename
10463 nongregorian-diary-marking-hook. Keep old name as alias, update users.
10464 (diary-print-entries-hook): Rename print-diary-entries-hook.
10465 Keep old name as alias, update users.
10466 (diary-abbreviated-year-flag): Rename abbreviated-calendar-year.
10467 Keep old name as alias, update users.
10468 (diary-number-of-entries): Rename number-of-diary-entries.
10469 Keep old name as alias, update users.
10470 (view-diary-entries, list-diary-entries, show-all-diary-entries):
10471 Give version of obsolescence.
10472 (diary-view-other-diary-entries): Rename view-other-diary-entries.
10473 Keep old name as alias, update callers.
10474 (diary-add-to-list): Rename add-to-diary-list. Keep old name as alias,
10475 update callers.
10476 (diary-include-other-diary-files): Rename include-other-diary-files.
10477 Keep old name as alias, update callers.
10478 (diary-simple-display): Rename simple-diary-display.
10479 Keep old name as alias, update callers.
10480 (diary-fancy-display): Rename fancy-diary-display.
10481 Keep old name as alias, update callers.
10482 (diary-print-entries): Rename print-diary-entries.
10483 Keep old name as alias, update callers.
10484 (diary-marking-entries-flag): Rename marking-diary-entries.
10485 Update users.
10486 (diary-marking-entry-flag): Rename marking-diary-entry. Update users.
10487 (diary-mark-entries): Rename mark-diary-entries.
10488 Keep old name as alias, update callers.
10489 (diary-mark-sexp-entries): Rename mark-sexp-diary-entries.
10490 Keep old name as alias, update callers.
10491 (diary-mark-included-diary-files): Rename mark-included-diary-files.
10492 Keep old name as alias, update callers.
10493 (calendar-mark-days-named): Rename mark-calendar-days-named.
10494 Keep old name as alias, update callers.
10495 (calendar-mark-month): Rename mark-calendar-month.
10496 Keep old name as alias, update callers.
10497 (calendar-mark-date-pattern): Rename mark-calendar-date-pattern.
10498 Keep old name as alias, update callers.
10499 (diary-sort-entries): Rename sort-diary-entries.
10500 Keep old name as alias, update callers.
10501 (diary-list-sexp-entries): Rename list-sexp-diary-entries.
10502 Keep old name as alias, update callers.
10503 (diary-make-entry): Rename make-diary-entry. Keep old name as alias,
10504 update callers.
10505 (diary-insert-entry): Rename insert-diary-entry.
10506 Keep old name as alias.
10507 (diary-insert-weekly-entry): Rename insert-weekly-diary-entry.
10508 Keep old name as alias.
10509 (diary-insert-monthly-entry): Rename insert-monthly-diary-entry.
10510 Keep old name as alias.
10511 (diary-insert-yearly-entry): Rename insert-yearly-diary-entry.
10512 Keep old name as alias.
10513 (diary-insert-anniversary-entry): Rename insert-anniversary-diary-entry.
10514 Keep old name as alias.
10515 (diary-insert-block-entry): Rename insert-block-diary-entry.
10516 Keep old name as alias.
10517 (diary-insert-cyclic-entry): Rename insert-cyclic-diary-entry.
10518 Keep old name as alias.
10519 (diary-fancy-font-lock-keywords): Rename fancy-diary-font-lock-keywords.
10520 Keep old name as alias, update users.
10521 (diary-fancy-display-mode): Rename fancy-diary-display-mode.
10522 Keep old name as alias, update callers.
10523 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
10524 * calendar/cal-menu.el, calendar/cal-x.el, calendar/calendar.el:
10525 * calendar/icalendar.el: Update for diary-lib name changes.
10526
10527 2008-04-06 Chong Yidong <cyd@stupidchicken.com>
10528
10529 * dired-aux.el (dired-overwrite-confirmed): Revert last change.
10530
10531 * dired.el (dired-dnd-handle-local-file): Obey dired-backup-overwrite
10532 for copy, move, and link operations.
10533
10534 2008-04-06 Michael Kifer <kifer@cs.stonybrook.edu>
10535
10536 * emulation/viper-init.el, emulation/viper-ex.el, emulation/viper-cmd.el
10537 (viper-search-wrap-around-t): Replace with viper-search-wrap-around.
10538
10539 * ediff-util.el, ediff-vers.el, ediff-wind.el: Replace 3-argument
10540 'require' statements with 1-argument ones (wrapped in if's).
10541 For compatibility with the current stable version of XEmacs.
10542
10543 2008-04-06 Dan Nicolaescu <dann@ics.uci.edu>
10544
10545 * vc.el (vc-status-prepare-status-buffer): Reset vc-parent-buffer-name.
10546
10547 2008-04-06 Jason Rumney <jasonr@gnu.org>
10548
10549 * language/burmese.el ("Burmese"): Make sample text consistent with
10550 language name.
10551
10552 2008-04-06 Nick Roberts <nickrob@snap.net.nz>
10553
10554 * progmodes/gdb-ui.el (gdb): New group.
10555 (gdb-debug-log-max, gdb-enable-debug)
10556 (gdb-cpp-define-alist-program, gdb-cpp-define-alist-flags)
10557 (gdb-show-main, gdb-many-windows, gdb-use-separate-io-buffer)
10558 (gdb-speedbar-auto-raise, gdb-use-colon-colon-notation)
10559 (gdb-show-changed-values, gdb-max-children)
10560 (gdb-delete-out-of-scope, gdb-same-frame, gdb-find-source-frame)
10561 (breakpoint-enabled, breakpoint-disabled, gdb-max-frames)
10562 (gdb-all-registers, gdb-memory-repeat-count, gdb-memory-format)
10563 (gdb-memory-unit): Move to new group from GUD group.
10564 (menu): Allow customization from GDB-UI menu-item.
10565
10566 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
10567
10568 * dired-aux.el (dired-overwrite-confirmed): Supply initial value.
10569
10570 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
10571
10572 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-annotate-command)
10573 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
10574 Revision numbers can include ".".
10575
10576 * diff-mode.el (diff-end-of-hunk): Be careful not to overlook trailing
10577 "+" lines not accounted for by counting "-" and context lines.
10578
10579 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10580
10581 * term/mac-win.el (mac-service-open-file): Use file URL instead of
10582 file name string.
10583
10584 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
10585
10586 * vc-bzr.el (vc-bzr-annotate-command): Preserve line alignment.
10587 (vc-bzr-annotate-time): Accept space used to preserve alignment.
10588
10589 2008-04-05 Richard Stallman <rms@gnu.org>
10590
10591 * emacs-lisp/advice.el (defadvice): Add usage pattern.
10592
10593 2008-04-05 Nick Roberts <nickrob@snap.net.nz>
10594
10595 * progmodes/gdb-ui.el: Add advice about using Cygwin GDB (from a
10596 thread in [h-e-w]).
10597
10598 2008-04-05 Juanma Barranquero <lekktu@gmail.com>
10599
10600 * files.el (abort-if-file-too-large): Fix typo in docstring.
10601
10602 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
10603
10604 * subr.el (functionp): Return nil for special forms.
10605
10606 2008-04-05 Glenn Morris <rgm@gnu.org>
10607
10608 * emacs-lisp/autoload.el (autoload-ensure-default-file):
10609 Provide a feature.
10610 * calendar/calendar.el, calendar/diary-lib.el, calendar/holidays.el:
10611 Require loaddefs file rather than loading it.
10612 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule now that
10613 autoload-ensure-default-file provides a feature.
10614
10615 * Makefile.in (LOADDEFS): Add mh-loaddefs.el.
10616 (AUTOGENEL): mh-loaddefs is in $LOADDEFS now.
10617 (compile, compile-always, recompile): Use $LOADDEFS.
10618 (cal-autoloads): Remove.
10619
10620 * calendar/cal-x.el (calendar-dedicate-diary): Use get-buffer rather
10621 than buffer-live-p. Reported by David Koppelman <koppel@ece.lsu.edu>.
10622
10623 * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
10624 (hebrew-holidays-3, hebrew-holidays-4): Don't autoload obsolescence.
10625
10626 * calendar/calendar.el (diary-hebrew-entry-symbol):
10627 Rename hebrew-diary-entry-symbol. Keep old name as alias.
10628 (diary-islamic-entry-symbol): Rename islamic-diary-entry-symbol.
10629 Keep old name as alias.
10630 (diary-bahai-entry-symbol): Rename bahai-diary-entry-symbol.
10631 Keep old name as alias.
10632 * calendar/cal-bahai.el: Update for rename bahai-diary-entry-symbol
10633 to diary-bahai-entry-symbol.
10634 * calendar/cal-hebrew.el: Update for rename hebrew-diary-entry-symbol
10635 to diary-hebrew-entry-symbol.
10636 * calendar/cal-islam.el: Update for rename islamic-diary-entry-symbol
10637 to diary-islamic-entry-symbol.
10638 * calendar/diary-lib.el: Update for diary-entry-symbol renames.
10639
10640 * calendar/solar.el (diary-sabbath-candles-minutes)
10641 (diary-sabbath-candles): Move to cal-hebrew.
10642 * calendar/cal-hebrew.el (diary-hebrew-sabbath-candles-minutes)
10643 (diary-hebrew-sabbath-candles): Move here from solar.el and rename.
10644 Doc fix. Keep old name as alias.
10645 (diary-hebrew-sabbath-candles): Simplify.
10646 (solar-setup, solar-sunrise-sunset, calendar-latitude)
10647 (calendar-longitude, calendar-time-zone): Declare for compiler.
10648 * calendar/diary-lib.el (list-sexp-diary-entries): Update doc for
10649 rename.
10650
10651 * calendar/cal-coptic.el (calendar-coptic-month-name-array):
10652 Rename coptic-calendar-month-name-array. Update callers.
10653 (calendar-coptic-epoch): Rename coptic-calendar-epoch. Update callers.
10654 (calendar-coptic-name): Rename coptic-name. Update callers.
10655 (calendar-coptic-leap-year-p): Rename coptic-calendar-leap-year-p.
10656 Update callers.
10657 (calendar-coptic-last-day-of-month):
10658 Rename coptic-calendar-last-day-of-month. Update callers.
10659 (calendar-coptic-to-absolute): Rename calendar-absolute-from-coptic.
10660 Keep old name as alias, update callers.
10661 (calendar-coptic-print-date): Rename calendar-print-coptic-date.
10662 Keep old name as alias, update callers.
10663 (calendar-coptic-goto-date): Rename calendar-goto-coptic-date.
10664 Keep old name as alias.
10665 (calendar-ethiopic-month-name-array):
10666 Rename ethiopic-calendar-month-name-array. Update callers.
10667 (calendar-ethiopic-epoch): Rename ethiopic-calendar-epoch.
10668 Update callers.
10669 (calendar-ethiopic-name): Rename ethiopic-name. Update callers.
10670 (calendar-ethiopic-to-absolute): Rename calendar-absolute-from-ethiopic.
10671 Keep old name as alias, update callers.
10672 (calendar-ethiopic-print-date): Rename calendar-print-ethiopic-date.
10673 Keep old name as alias, update callers.
10674 (calendar-ethiopic-goto-date): Rename calendar-goto-ethiopic-date.
10675 Keep old name as alias.
10676
10677 * calendar/cal-french.el (calendar-french-epoch):
10678 Rename french-calendar-epoch. Update callers.
10679 (calendar-french-month-name-array): Rename variable and function
10680 french-calendar-month-name-array. Update callers.
10681 (calendar-french-multibyte-month-name-array):
10682 Rename french-calendar-multibyte-month-name-array. Update callers.
10683 (calendar-french-day-name-array): Rename variable and function
10684 french-calendar-day-name-array. Update callers.
10685 (calendar-french-special-days-array): Rename variable and function
10686 french-calendar-special-days-array. Update callers.
10687 (calendar-french-multibyte-special-days-array):
10688 Rename french-calendar-multibyte-special-days-array. Update callers.
10689 (calendar-french-accents-p): Rename french-calendar-accents.
10690 Update callers.
10691 (calendar-french-leap-year-p): Rename french-calendar-leap-year-p.
10692 Update callers.
10693 (calendar-french-last-day-of-month):
10694 Rename french-calendar-last-day-of-month. Update callers.
10695 (calendar-french-to-absolute): Rename calendar-absolute-from-french.
10696 Keep old name as alias, update callers.
10697 (calendar-french-print-date): Rename calendar-print-french-date.
10698 Keep old name as alias, update callers.
10699 (calendar-french-goto-date): Rename calendar-goto-french-date.
10700 Keep old name as alias.
10701
10702 * calendar/cal-menu.el, calendar/calendar.el:
10703 Update for Coptic and French name changes.
10704
10705 * calendar/cal-china.el (calendar-chinese): Rename custom group
10706 from chinese-calendar. Update users.
10707 (calendar-chinese-time-zone): Rename chinese-calendar-time-zone.
10708 Keep old name as alias, update users.
10709 (calendar-chinese-location-name): Rename chinese-calendar-location-name.
10710 Keep old name as alias.
10711 (calendar-chinese-daylight-time-offset):
10712 Rename chinese-calendar-daylight-time-offset. Keep old name as alias,
10713 update users.
10714 (calendar-chinese-standard-time-zone-name):
10715 Rename chinese-calendar-standard-time-zone-name.
10716 Keep old name as alias, update users.
10717 (calendar-chinese-daylight-saving-start):
10718 Rename chinese-calendar-daylight-savings-starts.
10719 Keep old name as alias, update users.
10720 (calendar-chinese-daylight-saving-end):
10721 Rename chinese-calendar-daylight-savings-ends. Keep old name as alias,
10722 update users.
10723 (calendar-chinese-daylight-saving-start-time):
10724 Rename chinese-calendar-daylight-savings-starts-time.
10725 Keep old name as alias, update users.
10726 (calendar-chinese-daylight-saving-end-time):
10727 Rename chinese-calendar-daylight-savings-ends-time.
10728 Keep old name as alias, update users.
10729 (calendar-chinese-celestial-stem): Rename
10730 calendar-chinese-celestial-stem. Keep old name as alias, update users.
10731 (calendar-chinese-terrestrial-branch):
10732 Rename calendar-chinese-terrestrial-branch. Keep old name as alias,
10733 update users.
10734 (calendar-chinese-zodiac-sign-on-or-after):
10735 Rename chinese-zodiac-sign-on-or-after. Update callers.
10736 (calendar-chinese-new-moon-on-or-after):
10737 Rename chinese-new-moon-on-or-after. Update callers.
10738 (calendar-chinese-month-list): Rename chinese-month-list.
10739 Update callers.
10740 (calendar-chinese-number-months): Rename number-chinese-months.
10741 Update callers.
10742 (calendar-chinese-compute-year): Rename compute-chinese-year.
10743 Update callers.
10744 (calendar-chinese-year-cache): Rename chinese-year-cache. Update users.
10745 (calendar-chinese-year): Rename chinese-year. Update callers.
10746 (calendar-chinese-year-cache-init): Rename chinese-year-cache-init.
10747 (calendar-chinese-to-absolute): Rename calendar-absolute-from-chinese.
10748 Keep old name as alias, update callers.
10749 (calendar-chinese-print-date): Rename calendar-print-chinese-date.
10750 Keep old name as alias, update callers.
10751 (calendar-chinese-months-to-alist):
10752 Rename make-chinese-month-assoc-list. Update callers.
10753 (calendar-chinese-months): Rename chinese-months. Update callers.
10754 (calendar-chinese-goto-date): Rename calendar-goto-chinese-date.
10755 Keep old name as alias, update callers.
10756
10757 * calendar/cal-hebrew.el (calendar-hebrew-leap-year-p):
10758 Rename hebrew-calendar-leap-year-p. Update callers.
10759 (calendar-hebrew-last-month-of-year):
10760 Rename hebrew-calendar-last-month-of-year. Update callers.
10761 (calendar-hebrew-elapsed-days): Rename hebrew-calendar-elapsed-days.
10762 Update callers.
10763 (calendar-hebrew-days-in-year): Rename hebrew-calendar-days-in-year.
10764 Update callers.
10765 (calendar-hebrew-long-heshvan-p): Rename hebrew-calendar-long-heshvan-p.
10766 Update callers.
10767 (calendar-hebrew-short-kislev-p): Rename hebrew-calendar-short-kislev-p.
10768 Update callers.
10769 (calendar-hebrew-last-day-of-month):
10770 Rename hebrew-calendar-last-day-of-month. Update callers.
10771 (calendar-hebrew-to-absolute): Rename calendar-absolute-from-hebrew.
10772 Keep old name as alias, update callers.
10773 (calendar-hebrew-print-date): Rename calendar-print-hebrew-date.
10774 Keep old name as alias, update callers.
10775 (calendar-hebrew-yahrzeit): Rename hebrew-calendar-yahrzeit.
10776 Keep old name as alias, update callers.
10777 (calendar-hebrew-goto-date): Rename calendar-goto-hebrew-date.
10778 Keep old name as alias.
10779 (holiday-hebrew-rosh-hashanah): Rename holiday-rosh-hashanah-etc.
10780 Keep old name as alias.
10781 (holiday-hebrew-hanukkah): Rename holiday-hanukkah.
10782 Keep old name as alias.
10783 (holiday-hebrew-passover): Rename holiday-passover-etc.
10784 Keep old name as alias.
10785 (holiday-hebrew-tisha-b-av): Rename holiday-tisha-b-av-etc.
10786 Keep old name as alias, update callers.
10787 (diary-hebrew-list-entries): Rename list-hebrew-diary-entries.
10788 Keep old name as alias.
10789 (calendar-hebrew-mark-date-pattern):
10790 Rename mark-hebrew-calendar-date-pattern. Keep old name as alias,
10791 update callers.
10792 (diary-hebrew-mark-entries): Rename mark-hebrew-diary-entries.
10793 Keep old name as alias.
10794 (diary-hebrew-insert-entry): Rename insert-hebrew-diary-entry.
10795 Keep old name as alias.
10796 (diary-hebrew-insert-monthly-entry):
10797 Rename insert-monthly-hebrew-diary-entry. Keep old name as alias.
10798 (diary-hebrew-insert-yearly-entry):
10799 Rename insert-yearly-hebrew-diary-entry. Keep old name as alias.
10800 (calendar-hebrew-list-yahrzeits): Rename list-yahrzeit-dates.
10801 Keep old name as alias.
10802 (diary-hebrew-omer): Rename diary-omer. Keep old name as alias.
10803 (diary-hebrew-yahrzeit): Rename diary-yahrzeit. Keep old name as alias.
10804 (diary-hebrew-rosh-hodesh): Rename diary-rosh-hodesh.
10805 Keep old name as alias.
10806 (calendar-hebrew-parashiot-names):
10807 Rename hebrew-calendar-parashiot-names. Update callers.
10808 (calendar-hebrew-parasha-name): Rename hebrew-calendar-parasha-name.
10809 (calendar-hebrew-year-Saturday-incomplete-Sunday):
10810 Rename hebrew-calendar-year-Saturday-incomplete-Sunday.
10811 (calendar-hebrew-year-Saturday-complete-Tuesday):
10812 Rename hebrew-calendar-year-Saturday-complete-Tuesday.
10813 (calendar-hebrew-year-Monday-incomplete-Tuesday):
10814 Rename hebrew-calendar-year-Monday-incomplete-Tuesday.
10815 (calendar-hebrew-year-Monday-complete-Thursday):
10816 Rename hebrew-calendar-year-Monday-complete-Thursday.
10817 (calendar-hebrew-year-Tuesday-regular-Thursday):
10818 Rename hebrew-calendar-year-Tuesday-regular-Thursday.
10819 (calendar-hebrew-year-Thursday-regular-Saturday):
10820 Rename hebrew-calendar-year-Thursday-regular-Saturday.
10821 (calendar-hebrew-year-Thursday-complete-Sunday):
10822 Rename hebrew-calendar-year-Thursday-complete-Sunday.
10823 (calendar-hebrew-year-Saturday-incomplete-Tuesday):
10824 Rename hebrew-calendar-year-Saturday-incomplete-Tuesday.
10825 (calendar-hebrew-year-Saturday-complete-Thursday):
10826 Rename hebrew-calendar-year-Saturday-complete-Thursday.
10827 (calendar-hebrew-year-Monday-incomplete-Thursday):
10828 Rename hebrew-calendar-year-Monday-incomplete-Thursday.
10829 (calendar-hebrew-year-Monday-complete-Saturday):
10830 Rename hebrew-calendar-year-Monday-complete-Saturday.
10831 (calendar-hebrew-year-Tuesday-regular-Saturday):
10832 Rename hebrew-calendar-year-Tuesday-regular-Saturday.
10833 (calendar-hebrew-year-Thursday-incomplete-Sunday):
10834 Rename hebrew-calendar-year-Thursday-incomplete-Sunday.
10835 (calendar-hebrew-year-Thursday-complete-Tuesday):
10836 Rename hebrew-calendar-year-Thursday-complete-Tuesday.
10837 (diary-hebrew-parasha): Rename diary-parasha. Keep old name as alias.
10838 Update for above name changes of constants.
10839
10840 * calendar/cal-menu.el, calendar/calendar.el:
10841 Update for chinese and hebrew name changes.
10842 * calendar/diary-lib.el: Update for hebrew name changes.
10843
10844 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
10845
10846 * subr.el (keymap-canonicalize): Correct thinko.
10847
10848 * server.el: Undo part of the multi-tty change, which is only
10849 needed if server.el is preloaded, and broke server-running-p.
10850 (server-socket-dir): Initialize in the defvar, as before.
10851 (server-start): Remove initialization of server-socket-dir.
10852
10853 2008-04-05 Eli Zaretskii <eliz@gnu.org>
10854
10855 * ls-lisp.el (ls-lisp-format): Support inodes that are 2- or
10856 3-member cons cells.
10857
10858 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
10859
10860 * cus-face.el (custom-face-attributes): Handle roman slant.
10861
10862 * faces.el (default): Ensure the face-defface-spec property is set.
10863
10864 2008-04-05 Adrian Robert <Adrian.B.Robert@gmail.com>
10865
10866 * files.el (abort-if-file-too-large): New function.
10867 (find-file-noselect, insert-file-1): Use it.
10868
10869 2008-04-05 Reto Zimmermann <reto@gnu.org>
10870
10871 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
10872 Replace C-c[a-zA-Z] key bindings.
10873
10874 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
10875
10876 * progmodes/hideif.el (hif-token-alist): New var.
10877 (hif-token-regexp, hif-tokenize): Use it.
10878 (hif-mathify-binop): New macro.
10879 (hif-plus, hif-minus, hif-notequal, hif-greater, hif-less)
10880 (hif-greater-equal, hif-less-equal): Use it.
10881 (hif-logior, hif-logand): New functions.
10882 (hif-math): Accept | and & as well.
10883
10884 * progmodes/etags.el: Fix problem with completion for buffer-local
10885 tables. Reported by Radey Shouman <shouman@comcast.net>.
10886 (tags-complete-tag): Remove.
10887 (tags-lazy-completion-table): New function to replace it.
10888 (find-tag-tag, complete-tag): Update users.
10889
10890 2008-04-04 Dan Nicolaescu <dann@ics.uci.edu>
10891
10892 * vc-rcs.el (vc-rcs-dir-status):
10893 * vc-sccs.el (vc-sccs-dir-status): New function.
10894
10895 * outline.el (outline-mode-menu-bar-map):
10896 * term.el (terminal-signal-menu): Add :help.
10897
10898 * net/eudc.el (eudc-mode-map): Declare and define in one step.
10899 (eudc-tail-menu, eudc-server-menu, eudc-tools-menu): Add :help.
10900
10901 * emacs-lisp/re-builder.el (reb-mode-map):
10902 * textmodes/nroff-mode.el (nroff-mode-map): Add menus.
10903
10904 * diff-mode.el (diff-file-junk-re): Recognize the git format for
10905 new files, deleted files and for changing permissions.
10906 (diff-mode): Set beginning-of-defun-function and
10907 end-of-defun-function.
10908
10909 * vc-bzr.el (vc-bzr-state): Use when instead of if.
10910
10911 * vc.el (vc-default-status-fileinfo-extra): New function.
10912 (vc-status-mark-buffer-changed): Use it.
10913 (vc-update-vc-status-buffer): Allow for partial updates.
10914
10915 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
10916
10917 * net/tramp.el (after-init-hook): Don't wrap a lambda around
10918 tramp-register-completion-file-name-handler.
10919
10920 * subr.el (keymap-canonicalize): New function.
10921 * mouse.el (mouse-menu-non-singleton): Use it.
10922 (mouse-major-mode-menu): Remove hack made unnecessary.
10923
10924 * simple.el (set-fill-column): Prompt rather than error by default.
10925
10926 2008-04-04 Andreas Schwab <schwab@suse.de>
10927
10928 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
10929 Reset new-rules after each round.
10930
10931 * Makefile.in (cal-autoloads): New target.
10932 (compile, compile-always, recompile): Depend on it.
10933 ($(lisp)/calendar/cal-loaddefs.el)
10934 ($(lisp)/calendar/diary-loaddefs.el)
10935 ($(lisp)/calendar/hol-loaddefs.el): Depend on calendar/*.el.
10936
10937 2008-04-04 Michael Kifer <kifer@cs.stonybrook.edu>
10938
10939 * ediff*.el: Replace load with require in eval-when-compile.
10940
10941 * ediff-hook.el: Delete all invocations of (autoload ...).
10942
10943 * ediff-util.el (ediff-setup): Make window-min-height a local variable
10944 in ediff control window, and set its min height to 2.
10945 (ediff-setup-control-buffer): Dedicate the control window.
10946 (ediff-toggle-multiframe): Undedicate control window.
10947 Work directly with ediff-setup-windows-multiframe and
10948 ediff-setup-windows-plain.
10949
10950 * ediff-wind.el (ediff-choose-window-setup-function-automatically):
10951 New function.
10952 (ediff-window-setup-function): Change initialization.
10953 (ediff-setup-windows-automatic): Delete.
10954 (ediff-setup-windows-plain-merge): Make control window dedicated.
10955 (ediff-destroy-control-frame): Do not skip frames if working in a
10956 single frame.
10957
10958 * emulation/viper-ex.el: Move provide's forward, prevent recursion in
10959 eval-when-compile.
10960
10961 * emulation/viper-util.el: Move provide's forward, prevent recursion in
10962 eval-when-compile.
10963
10964 2008-04-04 Glenn Morris <rgm@gnu.org>
10965
10966 * calendar/cal-bahai.el (calendar-bahai-to-absolute): Rename
10967 calendar-absolute-from-bahai. Update callers, keep old name as alias.
10968
10969 * calendar/cal-islam.el (calendar-islamic-leap-year-p):
10970 Rename islamic-calendar-leap-year-p. Update callers.
10971 (calendar-islamic-last-day-of-month):
10972 Rename islamic-calendar-last-day-of-month. Update callers.
10973 (calendar-islamic-day-number):
10974 Rename islamic-calendar-day-number. Update callers.
10975 (calendar-islamic-to-absolute): Rename calendar-absolute-from-islamic.
10976 Update callers, keep old name as alias.
10977 (calendar-islamic-print-date): Rename calendar-print-islamic-date.
10978 Update callers, keep old name as alias.
10979 (calendar-islamic-goto-date): Rename calendar-goto-islamic-date.
10980 Keep old name as alias.
10981 (diary-islamic-list-entries): Rename list-islamic-diary-entries.
10982 Update callers, keep old name as alias.
10983 (calendar-islamic-mark-date-pattern):
10984 Rename mark-islamic-calendar-date-pattern. Update callers, keep old
10985 name as alias.
10986 (diary-islamic-insert-entry): Rename insert-islamic-diary-entry.
10987 Keep old name as alias.
10988 (diary-islamic-insert-monthly-entry):
10989 Rename insert-monthly-islamic-diary-entry. Keep old name as alias.
10990 (diary-islamic-insert-yearly-entry):
10991 Rename insert-yearly-islamic-diary-entry. Keep old name as alias.
10992
10993 * calendar/cal-iso.el (calendar-iso-to-absolute): Rename
10994 calendar-absolute-from-iso. Update callers, keep old name as alias.
10995 (calendar-iso-print-date): Rename calendar-print-iso-date.
10996 Update callers, keep old name as alias.
10997 (calendar-iso-goto-date): Rename calendar-goto-iso-date.
10998 Keep old name as alias.
10999 (calendar-iso-goto-week): Rename calendar-goto-iso-week.
11000 Keep old name as alias.
11001
11002 * calendar/cal-julian.el (calendar-julian-to-absolute): Rename
11003 calendar-absolute-from-julian. Update callers, keep old name as alias.
11004 (calendar-julian-print-date): Rename calendar-print-julian-date.
11005 Update callers, keep old name as alias.
11006 (calendar-julian-goto-date): Rename calendar-goto-julian-date.
11007 Update callers, keep old name as alias.
11008 (calendar-astro-to-absolute): Rename calendar-absolute-from-astro.
11009 Update callers, keep old name as alias.
11010 (calendar-astro-print-day-number):
11011 Rename calendar-print-astro-day-number. Update callers, keep old
11012 name as alias.
11013 (calendar-astro-goto-day-number): Rename calendar-goto-astro-day-number.
11014 Update callers, keep old name as alias.
11015
11016 * calendar/cal-mayan.el (calendar-mayan-string-from-long-count):
11017 Rename calendar-string-to-mayan-long-count. Update callers.
11018 (calendar-mayan-print-date): Rename calendar-print-mayan-date.
11019 Update callers, keep old name as alias.
11020 (calendar-mayan-read-haab-date): Rename calendar-read-mayan-haab-date.
11021 Update callers.
11022 (calendar-mayan-read-tzolkin-date):
11023 Rename calendar-read-mayan-tzolkin-date. Update callers.
11024 (calendar-mayan-next-haab-date): Rename calendar-next-haab-date.
11025 Keep old name as alias.
11026 (calendar-mayan-previous-haab-date): Rename calendar-previous-haab-date.
11027 Keep old name as alias.
11028 (calendar-mayan-next-tzolkin-date): Rename calendar-next-tzolkin-date.
11029 Keep old name as alias.
11030 (calendar-mayan-previous-tzolkin-date):
11031 Rename calendar-previous-tzolkin-date. Keep old name as alias.
11032 (calendar-mayan-next-round-date):
11033 Rename calendar-next-calendar-round-date. Keep old name as alias.
11034 (calendar-mayan-previous-round-date):
11035 Rename calendar-previous-calendar-round-date. Keep old name as alias.
11036 (calendar-mayan-long-count-to-absolute): Rename
11037 calendar-absolute-from-mayan-long-count. Keep old name as alias.
11038 (calendar-mayan-goto-long-count-date):
11039 Rename calendar-goto-mayan-long-count-date. Keep old name as alias.
11040
11041 * calendar/cal-persia.el (calendar-persian-month-name-array):
11042 Rename persian-calendar-month-name-array. Update callers.
11043 (calendar-persian-epoch): Rename persian-calendar-epoch.
11044 Update callers.
11045 (calendar-persian-leap-year-p): Rename persian-calendar-leap-year-p.
11046 Update callers.
11047 (calendar-persian-last-day-of-month):
11048 Rename persian-calendar-last-day-of-month. Update callers.
11049 (calendar-persian-to-absolute): Rename calendar-absolute-from-persian.
11050 Update callers, keep old name as alias.
11051 (calendar-persian-print-date): Rename calendar-print-persian-date.
11052 Update callers, keep old name as alias.
11053 (calendar-persian-goto-date): Rename calendar-goto-persian-date.
11054 Keep old name as alias.
11055
11056 * calendar/cal-china.el, calendar/cal-coptic.el, calendar/cal-islam.el:
11057 * calendar/cal-persia.el, calendar/holidays.el, calendar/lunar.el:
11058 * calendar/solar.el: Update for cal-julian name changes.
11059
11060 * calendar/cal-dst.el: Update for persian name changes.
11061
11062 * calendar/cal-menu.el, calendar/calendar.el:
11063 Update for islamic, iso, julian, mayan, persian name changes.
11064
11065 * calendar/diary-lib.el: Update for islamic name changes.
11066
11067 * calendar/calendar.el (calendar-hebrew-all-holidays-flag):
11068 Rename all-hebrew-calendar-holidays. Update callers, keep old name
11069 as alias.
11070 (calendar-christian-all-holidays-flag):
11071 Rename all-christian-calendar-holidays. Update callers, keep old
11072 name as alias.
11073 (calendar-islamic-all-holidays-flag):
11074 Rename all-islamic-calendar-holidays. Update callers, keep old
11075 name as alias.
11076 (calendar-bahai-all-holidays-flag): Rename all-bahai-calendar-holidays.
11077 Update callers, keep old name as alias.
11078 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/holidays.el:
11079 Update for the above name changes.
11080
11081 2008-04-04 Juanma Barranquero <lekktu@gmail.com>
11082
11083 * hilit-chg.el (global-highlight-changes-mode)
11084 (highlight-changes-passive-string, highlight-changes-active-string):
11085 Mark as obsolete since 23.1, not 22.1.
11086
11087 2008-04-03 Juanma Barranquero <lekktu@gmail.com>
11088
11089 * hilit-chg.el (highlight-changes-visibility-initial-state)
11090 (hilit-chg-update, highlight-changes-mode-turn-on):
11091 Fix typos in docstrings.
11092
11093 2008-04-03 Stephen Berman <Stephen.Berman@gmx.net>
11094
11095 * newcomment.el (comment-enter-backward): Be careful to restore
11096 position changed during narrowing.
11097
11098 2008-04-03 Giuliano Procida <giuliano.procida@googlemail.com> (tiny change)
11099
11100 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
11101 Recognize `sub ($$)'.
11102
11103 2008-04-03 Richard Sharman <rsharman@pobox.com>
11104
11105 * hilit-chg.el (highlight-changes-mode): Rename from
11106 highlight-changes; no longer uses sub-modes active and passive;
11107 implemented by define-minor-mode.
11108 (highlight-changes-toggle-visibility): New function, to replace
11109 the old passive/active submodes of global-highlight-changes-mode;
11110 implemented by define-minor-mode.
11111 (global-highlight-changes-mode): Rename from global-highlight-changes;
11112 rewrite using define-globalized-minor-mode.
11113 (hilit-chg-major-mode-hook, hilit-chg-check-global)
11114 (hilit-chg-post-command-hook, hilit-chg-check-global)
11115 (hilit-chg-update-all-buffers, hilit-chg-turn-off-maybe): Remove due
11116 to use of define-globalized-minor-mode.
11117 (highlight-changes-global-initial-state): Change to be boolean.
11118 (highlight-changes-visible-string, highlight-changes-invisible-string):
11119 Rename from highlight-changes-active-string and
11120 highlight-changes-passive-string.
11121 (hilit-chg-update, hilit-chg-set): Use them.
11122 (global-highlight-changes-mode): Rename from global-highlight-changes.
11123 (hilit-chg-map-changes, hilit-chg-display-changes): Add arguments to
11124 docstring.
11125 (hilit-chg-hide-changes): Rewrite to use dolist.
11126 (hilit-chg-set-face-on-change, hilit-chg-update)
11127 (highlight-changes-rotate-faces): Use highlight-changes-visible-mode
11128 variable instead of testing highlight-changes-mode.
11129 (highlight-markup-buffers): Add require ediff-util; argument on calls
11130 to highlight-changes-mode changed.
11131 (highlight-compare-with-file): Fix problems with interactive
11132 call giving invalid default file.
11133
11134 2008-04-03 Nick Roberts <nickrob@snap.net.nz>
11135
11136 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
11137 Fix in disassembly buffer (regression in 22.2).
11138
11139 2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
11140
11141 * emulation/viper-macs.el (viper-read-fast-keysequence):
11142 Use viper-read-event instead of viper-read-key.
11143
11144 * emulation/viper.el (viper-mode): Move the check for fundamental mode.
11145
11146 * emulation/viper-util.el (viper-get-saved-cursor-color-in-insert-mode)
11147 (viper-get-saved-cursor-color-in-replace-mode): Get rid of redundant
11148 let-statements.
11149
11150 * emulation/viper-ex.el, emulation/viper-macs.el:
11151 * emulation/viper-mous.el:
11152 Replace load with require in eval-when-compile.
11153
11154 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
11155
11156 * files.el (auto-mode-alist): Use archive-mode for Debian packages.
11157
11158 * arc-mode.el (archive-mode-map): Obey mouse-1-click-follows-link.
11159 (archive-try-jka-compr): New function.
11160 (archive-set-buffer-as-visiting-file): Use it.
11161
11162 * tar-mode.el (tar-mode-map): Obey mouse-1-click-follows-link.
11163
11164 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
11165
11166 * simple.el (handle-shift-selection): New arg.
11167
11168 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
11169
11170 * emacs-lisp/cl-macs.el (defsetf): Accept a lambda for the 2-arg form.
11171
11172 * vc-bzr.el (vc-bzr-previous-revision, vc-bzr-next-revision): New funs.
11173
11174 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
11175
11176 * shell.el (shell-dynamic-complete-filename): New fun.
11177 (shell-dynamic-complete-functions): Use it.
11178
11179 * help-fns.el (describe-variable): Undo 2008-02-25 change.
11180
11181 2008-04-03 Kenichi Handa <handa@m17n.org>
11182
11183 * international/fontset.el (create-fontset-from-x-resource):
11184 Handle the error of X resource more gracefully.
11185
11186 * international/latin1-disp.el (latin1-display): Don't use make-char.
11187 Fix the argument to set-char-table-range.
11188 (latin1-display-identities): Don't use make-char.
11189 (latin1-display-reset): Use map-charset-chars instead of directly
11190 calling standard-display-default.
11191 (latin1-display-check-font): Don't use make-char.
11192 (latin1-display-setup): Likewise.
11193 (latin1-display-ucs-per-lynx): Likewise.
11194
11195 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
11196
11197 * emacs-lisp/timer.el (timer): Define as a defstruct, so we can
11198 name the fields, to make the code clearer.
11199 Rewrite all `aset' and `aref' using the defined accessors.
11200 (timer--time): New pseudo-field.
11201 (timer-set-time, timer-set-idle-time, timer-inc-time)
11202 (timer-set-time-with-usecs, with-timeout-suspend): Use it.
11203 (timer--time-less-p): New function.
11204 (timer--activate): New function, extracted from timer-activate.
11205 (timer-activate-when-idle, timer-activate): Use it.
11206 (cancel-function-timers): Use dolist.
11207
11208 2008-04-03 Glenn Morris <rgm@gnu.org>
11209
11210 * add-log.el (c-beginning-of-defun, c-end-of-defun):
11211 Remove declarations; no longer used.
11212 (c-cpp-define-name, c-defun-name): Declare as functions.
11213
11214 * calendar/cal-bahai.el (holiday-fixed): Autoload it.
11215 (holiday-bahai-new-year, holiday-bahai-ridvan): New functions.
11216
11217 * calendar/cal-hebrew.el (holiday-rosh-hashanah-etc)
11218 (holiday-passover-etc, holiday-hanukkah): Doc fix.
11219 Add optional argument. Simplify.
11220 (holiday-tisha-b-av-etc): Use memq rather than unless.
11221 (holiday-julian): Autoload it.
11222 (holiday-hebrew-misc): New function.
11223
11224 * calendar/cal-islam.el (holiday-islamic-new-year): New function.
11225
11226 * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
11227 (hebrew-holidays-3, hebrew-holidays-4): Make obsolete.
11228 (hebrew-holidays-2): Just use holiday-hanukkah now it respects
11229 all-hebrew-calendar-holidays.
11230 (hebrew-holidays, christian-holidays, islamic-holidays, bahai-holidays):
11231 Simplify using new functions.
11232 (calendar-holidays): Doc fix.
11233 (generate-calendar-window): Use bound-and-true-p.
11234
11235 * calendar/diary-lib.el (diary-mail-addr): Use bound-and-true-p.
11236
11237 * calendar/holidays.el (calendar-holiday-list): Fix previous change.
11238 (holiday-filter-visible-calendar): Doc fix. Use mapcar.
11239 (holiday-easter-etc): Fix nesting of result. Tweak holiday order.
11240 Use calendar-date-is-visible-p, not holiday-filter-visible-calendar.
11241
11242 * net/tramp.el (tramp-drop-volume-letter): Move definition before use.
11243
11244 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
11245
11246 * vc-mtn.el (vc-mtn-command): Avoid localization of messages.
11247
11248 * vc-bzr.el (vc-bzr-checkout): Simplify.
11249
11250 * image-mode.el (image-mode-fit-frame): New command.
11251
11252 * simple.el (beginning-of-buffer, end-of-buffer, goto-line, undo)
11253 (copy-region-as-kill, kill-ring-save, use-region-p, mark-word)
11254 (keyboard-escape-quit): Check region-active-p i.s.o
11255 transient-mark-mode.
11256
11257 2008-04-02 Simon Josefsson <simon@josefsson.org>
11258
11259 * net/imap.el (imap-enable-exchange-bug-workaround): New variable.
11260 (imap-message-copyuid-1): Use it.
11261 (imap-message-appenduid-1): Likewise. Based on patch by Nathan
11262 J. Williams in
11263 <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
11264
11265 2008-04-02 Alan Mackenzie <acm@muc.de>
11266
11267 * progmodes/cc-cmds.el (c-defun-name, c-cpp-define-name):
11268 New optimised functions to get the name of the current defun/macro.
11269
11270 * add-log.el (add-log-current-defun): Move the functionality which
11271 gets the current function name for C like modes to cc-cmds.el,
11272 thus optimising for speed.
11273
11274 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
11275
11276 * simple.el (deactivate-mark): When the mark is temporarily
11277 active, restore the original value of transient-mark-mode.
11278 (set-mark-command): First deactivate the mark if was temporarily active.
11279 (exchange-point-and-mark): Reactivate the mark if it was
11280 temporarily active.
11281 (handle-shift-selection): New fun.
11282 (transient-mark-mode): Move var documentation here from buffer.c.
11283 (next-line, previous-line, backward-word, move-end-of-line)
11284 (move-beginning-of-line, forward-to-indentation)
11285 (backward-to-indentation, back-to-indentation)
11286 (beginning-of-buffer, end-of-buffer): Add ^ interactive spec.
11287
11288 * mouse.el (mouse-set-region-1): Save the old value of
11289 transient-mark-mode.
11290 (mouse-drag-track): Ignore the now-obsolete value `identity' for
11291 transient-mark-mode.
11292
11293 * textmodes/paragraphs.el (forward-paragraph)
11294 (backward-paragraph, forward-sentence, backward-sentence): Add ^
11295 interactive spec.
11296
11297 * emulation/cua-base.el (cua-mode): Turn off shift-select-mode.
11298
11299 2008-04-02 Michael Albinus <michael.albinus@gmx.de>
11300
11301 * net/tramp.el (tramp-make-tramp-temp-file):
11302 Use `tramp-drop-volume-letter' for the local file name part.
11303
11304 2008-04-02 Dan Nicolaescu <dann@ics.uci.edu>
11305
11306 * progmodes/sh-script.el (sh-mode-map): Rename the menu. Add :help.
11307 Add menu entries corresponding to all the key bindings.
11308
11309 * emacs-lisp/debug.el (debugger-mode-map):
11310 * textmodes/conf-mode.el (conf-mode-map): Add a menu.
11311 (conf-align-assignments): Only work on the region if it is active.
11312 (conf-quote-normal): Use when instead of if. Remove redundant test.
11313
11314 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
11315 for tracing and re-builder.
11316
11317 2008-04-02 Glenn Morris <rgm@gnu.org>
11318
11319 * calendar/appt.el (appt-disp-window-function): Doc fix.
11320 (appt-display-message): Move beep before display.
11321 (appt-check): Make interactive. Reduce the number of lets.
11322 Use string-equal to compare mode-line strings.
11323 (appt-disp-window): Pluralize "minute" as needed. Make appt buffer
11324 read-only.
11325 (appt-select-lowest-window, appt-make-list): Reduce the number of lets.
11326 (appt-delete): Simplify.
11327
11328 * calendar/cal-china.el (holiday-chinese-new-year): Use a single let.
11329
11330 * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
11331
11332 * calendar/cal-hebrew.el (list-yahrzeit-dates):
11333 * calendar/cal-tex.el (cal-tex-insert-blank-days-at-end)
11334 (cal-tex-last-blank-p, cal-tex-daily-page): Expand calendar-for-loops.
11335
11336 * calendar/calendar.el (diary-entry-marker, calendar-today-marker)
11337 (calendar-holiday-marker, mark-visible-calendar-date):
11338 * calendar/diary-lib.el (fancy-diary-display):
11339 Check for font-lock-mode before using faces.
11340
11341 * calendar/calendar.el (hebrew-holidays-3, generate-calendar-month)
11342 (calendar-gregorian-from-absolute): Reduce the number of lets.
11343 (hebrew-holidays-4, generate-calendar-window): Simplify.
11344 (calendar-for-loop): Make obsolete.
11345 (calendar-nth-named-day): Doc fix.
11346
11347 * calendar/diary-lib.el (diary-list-entries, fancy-diary-display)
11348 (print-diary-entries, mark-sexp-diary-entries, calendar-mark-complex)
11349 (calendar-mark-1, list-sexp-diary-entries, diary-remind):
11350 Reduce the number of lets.
11351 (mark-sexp-diary-entries, calendar-mark-complex):
11352 Expand calendar-for-loops.
11353
11354 2008-04-01 Chong Yidong <cyd@stupidchicken.com>
11355
11356 * find-dired.el (find-dired-filter): Fix last patch to handle
11357 multi-line process input. Pad link numbers too.
11358
11359 2008-04-01 Jari Aalto <jari.aalto@cante.net>
11360
11361 * find-dired.el (find-dired-filter): Align columns by padding file sizes.
11362
11363 2008-04-01 Jason Rumney <jasonr@gnu.org>
11364
11365 * international/characters.el (script-list): Add phonetic script,
11366 covering IPA (previously Latin), Phonetic Extensions and
11367 Phonetic Extensions Supplement (both previously unassigned).
11368
11369 * international/fontset.el (setup-default-fontset): Use unicode fonts
11370 that cover bopomofo script for bopomofo.
11371 Likewise for braille and mathematical.
11372 Use unicode scripts that cover the phonetic script for IPA.
11373
11374 2008-04-01 Johan Bockgård <bojohan@gnu.org>
11375
11376 * emacs-lisp/cl-macs.el (frame-parameter) <defsetf>: Make it
11377 return the assigned value.
11378
11379 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
11380
11381 * abbrev.el (abbrev-mode): Use define-minor-mode.
11382
11383 * mouse.el (mouse-major-mode-menu-prefix): Remove. Remove uses.
11384 (mouse-menu-non-singleton): Rename from mouse-major-mode-menu-1.
11385 Use map-keymap.
11386 (minor-mode-menu-from-indicator): Use it. Simplify.
11387
11388 * bindings.el (mode-line-mode-menu): Move before (new) first use.
11389 (mode-line-major-mode-keymap, mode-line-minor-mode-keymap):
11390 Bind the key directly to the menu.
11391 (mode-line-mode-menu-1, mode-line-mode-menu): Remove functions.
11392
11393 2008-04-01 Daiki Ueno <ueno@unixuser.org>
11394
11395 * epa.el (epa-decrypt-region): Explain the reason why this
11396 function should not be used in Lisp programs.
11397 (epa-decrypt-armor-in-region): Ditto.
11398 (epa-verify-region): Ditto.
11399 (epa-verify-cleartext-in-region): Ditto.
11400 (epa-sign-region): Ditto.
11401 (epa-encrypt-region): Ditto.
11402
11403 * epg.el (epg-start-receive-keys): Fix typo in docstring.
11404
11405 * epa.el (epa-select-keys): Show menu even if there is no key in
11406 GnuPG's keyring.
11407
11408 2008-04-01 Glenn Morris <rgm@gnu.org>
11409
11410 * calendar/calendar.el (calendar-make-temp-face): New function.
11411 (mark-visible-calendar-date):
11412 * calendar/diary-lib.el (fancy-diary-display): Use it.
11413
11414 * vc-hooks.el (vc-responsible-backend): Declare as function.
11415
11416 * calendar/calendar.el (calendar-nongregorian-visible-p): New function.
11417 * calendar/cal-hebrew.el (calendar-hebrew-date-is-visible-p):
11418 * calendar/cal-julian.el (holiday-julian): Use it.
11419
11420 * calendar/cal-hebrew.el (hebrew-calendar-elapsed-days): Doc fix.
11421 (calendar-hebrew-date-is-visible-p): Extract some common code into
11422 separate function.
11423 (holiday-hebrew, mark-hebrew-calendar-date-pattern): Use it.
11424
11425 * calendar/cal-menu.el (cal-menu-holidays-menu):
11426 * calendar/calendar.el (calendar-mode-map): Use calendar-mark-holidays
11427 rather than obsolete alias.
11428
11429 * calendar/calendar.el (mark-visible-calendar-date): Also use overlay
11430 for mark characters.
11431 (calendar-unmark): Unmark by removing all overlays, rather than
11432 redrawing.
11433 (calendar-starred-day): Remove.
11434 (calendar-mode): Disable undo. Don't make calendar-starred-day local.
11435 (calendar-cursor-to-date): No need for special star handling now
11436 using overlays.
11437 (calendar-star-date): Use overlays.
11438
11439 * calendar/cal-french.el (calendar-goto-french-date):
11440 * calendar/cal-hebrew.el (calendar-hebrew-from-absolute)
11441 (holiday-hanukkah, mark-hebrew-calendar-date-pattern):
11442 * calendar/cal-move.el (calendar-forward-month, calendar-end-of-month):
11443 * calendar/cal-persia.el (calendar-persian-date-string):
11444 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
11445 (cal-tex-cursor-month, cal-tex-LaTeXify-string):
11446 * calendar/lunar.el (lunar-phase-list, lunar-new-moon-on-or-after):
11447 * calendar/solar.el (solar-equinoxes-solstices):
11448 Reduce nesting of some lets.
11449
11450 * calendar/cal-mayan.el (calendar-string-to-mayan-long-count)
11451 (calendar-goto-mayan-long-count-date): Simplify.
11452
11453 * calendar/holidays.el (calendar-holiday-list, holiday-easter-etc):
11454 Simplify by using mapcar.
11455 (calendar-list-holidays): Return holiday-list.
11456 (list-holidays): Use let rather than let*. Remove un-needed locals
11457 `d', `never'.
11458 (calendar-check-holidays): Return result from dolist.
11459 (holiday-float): Use a single let*. Simplify if-and to and.
11460 (holiday-sexp, holiday-advent, holiday-greek-orthodox-easter): Use a
11461 single let*.
11462
11463 2008-04-01 Jay Belanger <jay.p.belanger@gmail.com>
11464
11465 * calc/calc.el: Autoload `calc-yank'.
11466 (calc-mode-map): Add keybindings for `calc-yank'.
11467 * calc/calc-ext.el (calc-init-extensions): Remove keybinding
11468 assignments for `calc-yank'.
11469
11470 2008-03-31 Dan Nicolaescu <dann@ics.uci.edu>
11471
11472 * vc.el (vc-status-add-entry): Assume ENTRY is a list, not a cons.
11473 (vc-status-mark-buffer-changed): Handle the extra field.
11474
11475 * vc-bzr.el (vc-bzr-after-dir-status):
11476 * vc-cvs.el (vc-cvs-after-dir-status):
11477 * vc-hg.el (vc-hg-after-dir-status):
11478 * vc-svn.el (vc-svn-after-dir-status): Return a list, not a cons.
11479
11480 2008-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
11481
11482 * doc-view.el: Compute displayed pages first (in PDF).
11483 (doc-view-current-converter-processes): Rename from
11484 doc-view-current-converter-process. Update users.
11485 (doc-view-sentinel): Test buffer's liveness.
11486 (doc-view-pdf/ps->png-sentinel): Remove.
11487 (doc-view-start-process): New function.
11488 (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
11489 (doc-view-ps->pdf): Use it.
11490 (doc-view-pdf->png-1, doc-view-pdf->png, doc-view-active-pages):
11491 New functions.
11492 (doc-view-convert-current-doc, doc-view-goto-page): Use them.
11493 (doc-view-mode): Kill the processes when leaving the mode.
11494
11495 2008-03-31 Juanma Barranquero <lekktu@gmail.com>
11496
11497 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p):
11498 Use `byte-compile-warning-types'. Add docstring.
11499
11500 2008-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
11501
11502 * smerge-mode.el (smerge-apply-resolution-patch): New fun.
11503 (smerge-resolve): Add various resolution heuristics.
11504
11505 * smerge-mode.el (smerge-refine): Allow highlighting other subparts
11506 in 3-way conflicts.
11507
11508 2008-03-31 Glenn Morris <rgm@gnu.org>
11509
11510 * calendar/cal-bahai.el (diary-bahai-mark-entries):
11511 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
11512 * calendar/cal-islam.el (mark-islamic-diary-entries):
11513 Fix argument order in call to diary-mark-entries-1.
11514
11515 * calendar/cal-bahai.el (calendar-bahai-date-string): Avoid an error for
11516 pre-Bahai dates.
11517 (holiday-bahai): Use an algorithm actually relevant to this calendar
11518 system.
11519
11520 * calendar/cal-china.el (holiday-chinese-new-year): Doc fix.
11521
11522 * calendar/cal-islam.el (holiday-islamic): Remove un-needed let.
11523 Use and.
11524
11525 * calendar/cal-julian.el (holiday-julian): Fix a problem with holidays
11526 in the last fortnight in Julian October.
11527
11528 * calendar/calendar.el (increment-calendar-month): Optionally handle
11529 systems without 12 months per year.
11530
11531 (calendar-date-is-visible-p): Doc fix. Simplify.
11532
11533 * calendar/holidays.el (holiday-filter-visible-calendar): Return result
11534 from dolist.
11535
11536 2008-03-30 Juanma Barranquero <lekktu@gmail.com>
11537
11538 * hi-lock.el (hi-lock-mode): Fix typos in docstring.
11539 (hi-lock-unload-function): New function.
11540
11541 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
11542
11543 * net/tramp.el (tramp-do-copy-or-rename-file): Fix check for
11544 overwriting when NEWNAME is a local file.
11545
11546 * net/trampver.el: Update release number.
11547
11548 2008-03-30 Alexandre Julliard <julliard@winehq.org>
11549
11550 * vc-git.el: Make vc-status display information about copies,
11551 renames and permission changes.
11552 (vc-git-extra-fileinfo): New defstruct.
11553 (vc-git-escape-file-name, vc-git-file-type-as-string)
11554 (vc-git-rename-as-string, vc-git-permissions-as-string)
11555 (vc-git-status-printer): New functions.
11556 (vc-git-after-dir-status-stage2): Also return vc-git-extra-fileinfo.
11557 (vc-git-after-dir-status-stage1): Look for copies, renames and
11558 permission changes.
11559 (vc-git-after-dir-status-stage1-empty-db): Set permissions.
11560 (vc-git-dir-status): Ask for staged files and renames.
11561
11562 2008-03-30 Dan Nicolaescu <dann@ics.uci.edu>
11563
11564 * vc.el: Allow backends to display backend specific information in
11565 the vc-status listing.
11566 (vc-status-fileinfo): Add a field for backend specific information.
11567 (vc-status-printer): Rename to ...
11568 (vc-default-status-printer): ... this.
11569 (vc-status-printer): New function.
11570 (vc-update-vc-status-buffer): Set the backend specific file info
11571 if provided.
11572
11573 2008-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
11574
11575 * textmodes/remember.el (remember-diary-convert-entry): Revert last
11576 change (ill-conceived).
11577
11578 2008-03-29 Glenn Morris <rgm@gnu.org>
11579
11580 * calendar/cal-hebrew.el (holiday-hebrew): Simplify.
11581 * calendar/cal-julian.el (holiday-julian): Simplify.
11582
11583 * calendar/holidays.el (list-holidays): Use or.
11584
11585 2008-03-29 Juri Linkov <juri@jurta.org>
11586
11587 * window.el (split-window-preferred-horizontally): New function.
11588
11589 * cus-start.el (split-window-preferred-function):
11590 Set choice for "vertically" to nil instead of split-window.
11591 Set choice for "horizontally" to split-window-preferred-horizontally
11592 instead of lambda.
11593
11594 2008-03-29 Juri Linkov <juri@jurta.org>
11595
11596 * simple.el (minibuffer-default-add-function): New variable with
11597 the default to minibuffer-default-add-completions.
11598 (minibuffer-default-add-done): New variable. Make it buffer-local.
11599 (minibuffer-default-add-completions): New function.
11600 (goto-history-element): Set minibuffer-default-add-done to t and
11601 call a function in minibuffer-default-add-function when the
11602 specified absolute history position is greater than the length of
11603 the minibuffer-default list and minibuffer-default-add-done is nil.
11604 Change "^End of history; no next item$" to "^End of defaults;
11605 no next item$".
11606
11607 * bindings.el (debug-ignored-errors): Change "^End of history;
11608 no next item$" to "^End of defaults; no next item$".
11609
11610 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
11611
11612 * subr.el (with-temp-buffer): Assume kill-buffer can change cur-buf.
11613
11614 * textmodes/remember.el (remember-diary-convert-entry): Prefer boundp
11615 to with-no-warnings.
11616
11617 2008-03-29 Michael Albinus <michael.albinus@gmx.de>
11618
11619 Sync with Tramp 2.1.13.
11620
11621 * net/tramp-ftp.el: Require 'cl when byte-compiling.
11622
11623 * net/trampver.el: Update release number.
11624
11625 2008-03-29 Dan Nicolaescu <dann@ics.uci.edu>
11626
11627 * vc-hooks.el (vc-menu-map-filter): Be more careful when finding
11628 the current backend.
11629
11630 * vc.el (vc-status-menu-map, vc-status-mode-map): Bind vc-revert.
11631 (vc-status-refresh): Create a temporary buffer and call the
11632 `dir-status' backend function from that buffer.
11633
11634 * vc-bzr.el (vc-bzr-dir-status): Don't create a buffer.
11635 (vc-bzr-after-dir-status): Don't kill the buffer.
11636
11637 * vc-cvs.el (vc-cvs-dir-status): Don't create a buffer.
11638 (vc-cvs-after-dir-status): Don't kill the buffer.
11639
11640 * vc-git.el (vc-git-dir-status): Don't create a buffer.
11641 (vc-git-after-dir-status-stage2): Don't kill the buffer.
11642
11643 * vc-hg.el (vc-hg-dir-status): Don't create a buffer.
11644 (vc-hg-after-dir-status): Don't kill the buffer.
11645
11646 * vc-svn.el (vc-svn-dir-status): Don't create a buffer.
11647 (vc-svn-after-dir-status): Don't kill the buffer.
11648
11649 2008-03-29 Glenn Morris <rgm@gnu.org>
11650
11651 * calendar/calendar.el (diary-file, american-date-diary-pattern)
11652 (european-date-diary-pattern, european-calendar-display-form)
11653 (american-calendar-display-form, diary-display-hook): Doc fixes.
11654 (european-calendar-style): Doc fix. Use calendar-set-date-style for
11655 custom :set. Mark as obsolete.
11656 (calendar-date-style, iso-date-diary-pattern)
11657 (iso-calendar-display-form): New user variables.
11658 (diary-date-forms, calendar-date-display-form): Set using
11659 calendar-date-style. Doc fix.
11660 (calendar-set-date-style): New command.
11661 (european-calendar, american-calendar): Use calendar-set-date-style.
11662 Mark as obsolete.
11663
11664 * calendar/diary-lib.el (number): Move declaration where needed.
11665 (diary-mail-entries, list-sexp-diary-entries): Doc fixes.
11666 (diary-make-date): New function.
11667 (diary-date, diary-block, diary-anniversary, diary-cyclic): Doc fix.
11668 Use diary-make-date.
11669 (diary-date-display-form, diary-insert-entry-1): New functions.
11670 (insert-monthly-diary-entry, insert-yearly-diary-entry):
11671 Use diary-insert-entry-1.
11672 (insert-anniversary-diary-entry, insert-block-diary-entry)
11673 (insert-cyclic-diary-entry): Use diary-date-display-form.
11674
11675 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
11676 Autoload diary-insert-entry-1.
11677 * calendar/cal-bahai.el (diary-bahai-insert-entry)
11678 (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
11679 * calendar/cal-hebrew.el (insert-hebrew-diary-entry)
11680 (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry)
11681 * calendar/cal-islam.el (insert-islamic-diary-entry)
11682 (insert-monthly-islamic-diary-entry, insert-yearly-islamic-diary-entry):
11683 Use diary-insert-entry-1.
11684
11685 * calendar/cal-hebrew.el (diary-make-date): Autoload it.
11686 (diary-yahrzeit): Doc fix. Use diary-make-date.
11687
11688 * calendar/icalendar.el (icalendar--datetime-to-american-date):
11689 New name for icalendar--datetime-to-noneuropean-date. Make old name
11690 obsolete alias.
11691 (icalendar--datetime-to-iso-date): New function.
11692 (icalendar--datetime-to-diary-date): Doc fix. Respect
11693 calendar-date-style if bound.
11694
11695 * textmodes/remember.el (remember-diary-convert-entry):
11696 Respect calendar-date-style if bound.
11697
11698 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
11699
11700 * xt-mouse.el (xterm-mouse-mode): Use delete-terminal-functions.
11701 (xterm-mouse-handle-delete-frame): Delete.
11702
11703 * term/xterm.el (terminal-init-xterm): Use delete-terminal-functions.
11704 (xterm-turn-on-modify-other-keys, xterm-turn-off-modify-other-keys)
11705 (xterm-remove-modify-other-keys): Lookup terminal rather than frame
11706 in xterm-modify-other-keys-terminal-list.
11707
11708 * vc-bzr.el (vc-bzr-state-heuristic): Fix last change for when there
11709 are conflicts.
11710
11711 2008-03-29 Dan Nicolaescu <dann@ics.uci.edu>
11712
11713 * vc.el (vc-update): Check if the buffer is unsaved only if it
11714 actually exists.
11715 (vc-status-mode-map, vc-status-menu-map): Bind vc-update and
11716 vc-print-log.
11717
11718 2008-03-28 Magnus Henoch <mange@freemail.hu>
11719
11720 * net/dns.el (dns-write): Use set-buffer-multibyte.
11721
11722 2008-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
11723
11724 * vc-bzr.el (vc-bzr-sha1): New fun.
11725 (vc-bzr-state-heuristic): New fun, extracted from vc-bzr-registered.
11726 (vc-bzr-registered): Use it.
11727
11728 2008-03-28 Dan Nicolaescu <dann@ics.uci.edu>
11729
11730 * vc.el (vc-status-kill-dir-status-process): Simplify.
11731 (vc-status-refresh): Make sure the buffer is live.
11732 (ring): Don't require it, not used.
11733
11734 2008-03-28 Wilson Snyder <wsnyder@wsnyder.org>
11735
11736 * progmodes/verilog-mode.el (verilog-auto-inout-module):
11737 Add optional regular expression to AUTOINOUTMODULE.
11738 (verilog-inject-auto, verilog-auto-arg, verilog-auto-inst)
11739 (verilog-auto-inst-param, verilog-auto-reg)
11740 (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
11741 (verilog-auto-output-every, verilog-auto-input)
11742 (verilog-auto-inout, verilog-auto-sense, verilog-auto-tieoff)
11743 (verilog-auto-unused, verilog-auto): Update documentation to use
11744 more obvious instance module names versus cell names.
11745
11746 2008-03-28 Jan Djärv <jan.h.d@swipnet.se>
11747
11748 * progmodes/compile.el (compilation-mode-tool-bar-map): Only enable
11749 kill if a process is running.
11750
11751 * progmodes/grep.el (grep-mode-tool-bar-map): The same.
11752
11753 2008-03-28 Dan Nicolaescu <dann@ics.uci.edu>
11754
11755 * vc.el: Add new backend function 'status-extra-headers.
11756 (vc-default-status-extra-headers): New function.
11757 (vc-status-headers): Call 'status-extra-headers. Add colors.
11758
11759 * vc-git.el (vc-git-status-extra-headers): New function.
11760
11761 2008-03-28 Glenn Morris <rgm@gnu.org>
11762
11763 * calendar/cal-menu.el (cal-menu-holidays-menu)
11764 (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
11765 (cal-menu-list-holidays-previous-year): Simplify now that 2nd arg of
11766 holiday-list is optional.
11767 (calendar-mouse-holidays): Remove un-needed local `l'.
11768
11769 * calendar/cal-move.el (calendar-cursor-to-nearest-date):
11770 Remove un-needed local `date'.
11771 (calendar-cursor-to-visible-date): Use let rather than let*.
11772 Remove un-needed local `first-of-month-weekday'.
11773
11774 * calendar/calendar.el (abbreviated-calendar-year): Move to diary-lib.
11775
11776 * calendar/diary-lib.el (print-diary-entries-hook, diary-list-entries):
11777 Doc fixes.
11778 (abbreviated-calendar-year): Move here from calendar.el. Doc fix.
11779 (diary-header-line-flag, diary-header-line-format): Declare.
11780 (diary-pull-attrs): Check for multiple matches.
11781 (diary-list-entries-2): Simplify finding start of date.
11782 (diary-show-all-entries, make-diary-entry): Respect non-nil values of
11783 pop-up-frames.
11784 (diary-mark-entries-1): Re-use offset in abbreviated-year case.
11785 (mark-sexp-diary-entries): Remove superfluous call to diary-pull-attrs.
11786
11787 2008-03-27 Dan Nicolaescu <dann@ics.uci.edu>
11788
11789 * vc-hg.el (vc-hg-state, vc-hg-dir-state): Deal with 'missing files.
11790
11791 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Fix predicate.
11792
11793 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
11794
11795 * vc-hooks.el (vc-before-save): Don't prevent saving the file.
11796
11797 * image-mode.el (image-mode-reapply-winprops): Fix last change.
11798
11799 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
11800
11801 * international/mule-conf.el (define-iso-single-byte-charset):
11802 Don't make latin-iso8859-* supplementary.
11803 (#'set-charset-priority): Don't change the priority of charsets
11804 `unicode' and `emacs'.
11805
11806 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
11807
11808 * vc.el (vc-do-command): Don't pop to the buffer if it's an internal
11809 temp buffer.
11810
11811 2008-03-27 Glenn Morris <rgm@gnu.org>
11812
11813 * calendar/cal-bahai.el (diary-bahai-list-entries):
11814 * calendar/cal-hebrew.el (list-hebrew-diary-entries):
11815 * calendar/cal-islam.el (list-islamic-diary-entries): Doc fix.
11816
11817 * calendar/calendar.el (diary-file): Doc fix.
11818
11819 * calendar/diary-lib.el (diary-face-attrs): Fix `height' regexp.
11820 (list-diary-entries-hook, mark-diary-entries-hook)
11821 (include-other-diary-files, diary-mail-entries)
11822 (mark-included-diary-files, list-sexp-diary-entries): Doc fixes.
11823 (diary-set-header): New function.
11824 (diary-header-line-flag, diary-header-line-format):
11825 Use diary-set-header for custom :set function.
11826 (diary-set-maybe-redraw): Use symbol-value rather than eval.
11827 (diary-attrtype-convert): Use intern-soft rather than read.
11828 (diary-display-no-entries): New function.
11829 (simple-diary-display, fancy-diary-display): Use it.
11830 (fancy-diary-display): Doc fix. Remove unneeded local entry-list.
11831 (diary-mark-entries-1): Fix position offsets in non-gregorian case.
11832
11833 * calendar/holidays.el (list-holidays): Doc fix.
11834
11835 2008-03-26 Jay Belanger <jay.p.belanger@gmail.com>
11836
11837 * calc/calc-store.el (calc-read-var-name-history): New variable.
11838 (calc-read-var-name): Use `calc-read-var-name-history'.
11839
11840 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11841
11842 * image-mode.el (image-mode-reapply-winprops): Simplify now that
11843 window-configuration-change-hook works buffer-locally.
11844
11845 2008-03-26 Johan Bockgård <bojohan@gnu.org>
11846
11847 * emacs-lisp/lisp-mnt.el (lm-with-file): Use mode and syntax table
11848 for Emacs Lisp, not Lisp.
11849
11850 2008-03-26 Juanma Barranquero <lekktu@gmail.com>
11851
11852 * help-fns.el (describe-function-1, describe-variable):
11853 If CURRENT-NAME is nil, don't end obsolescence info with semicolon.
11854
11855 * emacs-lisp/bytecomp.el (byte-compile-obsolete): If no
11856 replacement is provided, don't print "use nil instead".
11857
11858 2008-03-26 Johan Bockgård <bojohan@gnu.org>
11859
11860 * complete.el (PC-do-completion): Use regexp-quote.
11861
11862 2008-03-26 Dan Nicolaescu <dann@ics.uci.edu>
11863
11864 * vc-cvs.el (vc-cvs-parse-status, vc-cvs-after-dir-status):
11865 Detect missing files.
11866
11867 * vc-git.el (vc-git-extra-menu-map): New key map.
11868 (vc-git-extra-menu, vc-git-extra-status-menu, vc-git-grep):
11869 New functions.
11870
11871 * vc-hooks.el (vc-default-mode-line-string): Deal with 'removed
11872 and 'missing files.
11873
11874 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11875
11876 * calendar/holidays.el (list-holidays): Make Y2 optional.
11877
11878 * calendar/appt.el (appt-buffer-name): Don't use a leading space for
11879 buffers shown to the user.
11880 (appt-disp-window): Disable undo explicitly now that the leading space
11881 is gone.
11882
11883 * simple.el (activate-mark): New function.
11884 (set-mark-command): Use it with region-active-p to clean up the code.
11885 (exchange-point-and-mark): Invert the meaning of C-u when
11886 transient-mark-mode is active.
11887
11888 * dired-aux.el (dired-create-files): Use dolist.
11889
11890 * bindings.el (mode-line-change-eol): Use with-selected-window.
11891
11892 * apropos.el (apropos-command): Include macros.
11893
11894 2008-03-26 Glenn Morris <rgm@gnu.org>
11895
11896 * calendar/cal-bahai.el: Require calendar, not cal-julian.
11897 (calendar-bahai-epoch): Doc fix.
11898
11899 * calendar/cal-china.el: Explicitly require calendar.
11900
11901 * calendar/cal-coptic.el, calendar/cal-islam.el, calendar/cal-persia.el:
11902 Require calendar rather than cal-julian.
11903 Autoload calendar-absolute-from-julian.
11904 * calendar/cal-coptic.el (coptic-calendar-epoch):
11905 * calendar/cal-islam.el (calendar-islamic-epoch):
11906 * calendar/cal-persia.el (persian-calendar-epoch): Set when compiling.
11907
11908 * calendar/cal-islam.el (calendar-islamic-epoch): Doc fix.
11909
11910 * calendar/cal-dst.el: Don't require cal-persia.
11911 (calendar-absolute-from-persian): Autoload it.
11912 (dst-adjust-time): Doc fix.
11913
11914 * calendar/cal-menu.el (cal-menu-diary-menu): Remove menu headings that
11915 cause cal-bahai, cal-islam, cal-hebrew to be loaded on starting the
11916 calendar.
11917
11918 * calendar/cal-menu.el: Require calendar rather than declaring
11919 functions.
11920 * calendar/calendar.el: Provide calendar before requiring cal-menu.
11921
11922 * calendar/cal-x.el (calendar-after-frame-setup-hook): New name for
11923 calendar-after-frame-setup-hooks. Update callers, make old name an
11924 obsolete alias. Doc fix.
11925 (calendar-frame-1): Doc fix.
11926
11927 * calendar/calendar.el (solar-holidays): Simplify holiday-sexp calls.
11928
11929 * calendar/calendar.el (oriental-holidays, solar-holidays):
11930 * calendar/holidays.el (list-holidays): Assume atan always bound.
11931
11932 * calendar/lunar.el, calendar/solar.el: Remove floating-point check.
11933 Explicitly require calendar, not cal-julian.
11934 * calendar/lunar.el: Explicitly require cal-dst.
11935
11936 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11937
11938 * autorevert.el (auto-revert-buffers): Use buffer-live-p.
11939
11940 * help-fns.el (describe-function-1, describe-variable): If no
11941 replacement is provided, don't print "use nil instead".
11942
11943 2008-03-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
11944
11945 * proced.el: New file.
11946
11947 2008-03-25 Tetsurou Okazaki <okazaki@be.to> (tiny change)
11948
11949 * emacs-lisp/byte-opt.el (side-effect-free-fns): Fix typo.
11950
11951 2008-03-25 Juri Linkov <juri@jurta.org>
11952
11953 * battery.el: Add file cookie coding:iso-8859-1 for the degree sign
11954 in battery-mode-line-format.
11955
11956 * bindings.el (minibuffer-local-map): For the command
11957 file-cache-minibuffer-complete replace keymap minibuffer-local-map
11958 with map which is already locally bound to minibuffer-local-map.
11959
11960 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
11961
11962 * subr.el (map-keymap-sorted): Rename from map-keymap-internal.
11963 Remove `sort-first' argument.
11964
11965 * subr.el (redisplay-end-trigger-functions)
11966 (window-redisplay-end-trigger, set-window-redisplay-end-trigger)
11967 (process-filter-multibyte-p, set-process-filter-multibyte):
11968 Mark as obsolete.
11969
11970 2008-03-25 Juanma Barranquero <lekktu@gmail.com>
11971
11972 * emacs-lisp/re-builder.el (reb-mode-common): Remove reference to
11973 bogus variable `reb-kill-buffer'; don't make hooks buffer-local,
11974 use the LOCAL arg of `add-hook'.
11975 (reb-blink-delay, reb-mode-hook, reb-re-syntax, reb-auto-match-limit):
11976 Remove spurious * from defcustom docstrings.
11977 (reb-next-match, reb-prev-match, reb-enter-subexp-mode):
11978 Fix typos in messages.
11979 (reb-mode-buffer-p): New function.
11980 (re-builder, reb-kill-buffer): Use `reb-mode-buffer-p'. Use `when'.
11981 (top, reb-show-subexp, reb-auto-update, reb-delete-overlays)
11982 (reb-cook-regexp, reb-update-regexp, reb-update-overlays):
11983 Use `unless', `when'.
11984 (re-builder-unload-function): New function.
11985
11986 2008-03-25 Dan Nicolaescu <dann@ics.uci.edu>
11987
11988 * vc-hooks.el (vc-state): Add documentation for 'missing.
11989
11990 2008-03-25 Wilson Snyder <wsnyder@wsnyder.org>
11991
11992 * progmodes/verilog-mode.el (verilog-auto-output)
11993 (verilog-auto-input, verilog-auto-inout, verilog-auto)
11994 (verilog-delete-auto): Add optional regular expression to
11995 AUTOINPUT/AUTOOUTPUT/AUTOINOUT.
11996 (verilog-signals-matching-regexp): New internal function for
11997 signal matching.
11998
11999 2008-03-25 Johan Bockgård <bojohan@gnu.org>
12000
12001 * info.el (Info-isearch-search): Always return point.
12002
12003 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
12004
12005 * diff-mode.el (diff-remembered-defdir): New var.
12006 (diff-find-file-name): Use it to flush diff-remembered-files-alist.
12007
12008 2008-03-25 Glenn Morris <rgm@gnu.org>
12009
12010 * calendar/cal-bahai.el (calendar-bahai-read-date): New name for
12011 calendar-bahai-prompt-for-date. Update callers, make old name an
12012 obsolete alias. Doc fix.
12013 * calendar/cal-coptic.el (calendar-coptic-read-date): New name for
12014 coptic-prompt-for-date. Update callers, make old name an
12015 obsolete alias. Doc fix.
12016 * calendar/cal-hebrew.el (calendar-hebrew-read-date): New name for
12017 calendar-hebrew-prompt-for-date. Update callers. Doc fix.
12018 * calendar/cal-islam.el (calendar-islamic-read-date): New name for
12019 calendar-islamic-prompt-for-date. Update callers. Doc fix.
12020 * calendar/cal-iso.el (calendar-iso-read-date): New name for
12021 calendar-iso-read-args. Update callers, make old name an obsolete
12022 alias.
12023 * calendar/cal-persia.el (calendar-persian-read-date): New name for
12024 persian-prompt-for-date. Update callers, make old name an
12025 obsolete alias. Doc fix. Move definition before use.
12026
12027 * calendar/cal-x.el (diary-frame-parameters)
12028 (calendar-frame-parameters, calendar-and-diary-frame-parameters)
12029 (calendar-frame-1): Doc fixes.
12030 (make-fancy-diary-buffer): Remove declaration.
12031 (calendar-dedicate-diary): Replace call to deleted function
12032 make-fancy-diary-buffer.
12033 (calendar-frame-setup): New function.
12034 (calendar-one-frame-setup, calendar-only-one-frame-setup)
12035 (calendar-two-frame-setup): Call calendar-frame-setup to do the actual
12036 work, and mark as obsolete.
12037 (special-display-buffer-names): Don't mess with this; it's not our
12038 business.
12039 (cal-x-load-hook): Defvar it, and mark as obsolete.
12040
12041 * calendar/calendar.el (calendar-remove-frame-by-deleting):
12042 Default to t. Add to 'calendar group.
12043 (calendar): Doc fix. Use calendar-frame-setup.
12044 (calendar-basic-setup): Doc fix. Add optional NODISPLAY argument.
12045 (generate-calendar-window): Doc fix.
12046
12047 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
12048
12049 * vc-bzr.el (vc-bzr-print-log, vc-bzr-diff): Do it asynchronously.
12050
12051 2008-03-24 Drew Adams <drew.adams@oracle.com>
12052
12053 * finder.el (finder-mode-syntax-table, finder-font-lock-keywords):
12054 New variables.
12055 (finder-mode): Use finder-mode-syntax-table. Set font-lock-defaults.
12056 (finder-exit): Ignore errors rather than avoiding them.
12057 Kill *Finder-package* buffer also.
12058
12059 2008-03-24 Andreas Schwab <schwab@suse.de>
12060
12061 * xt-mouse.el (xterm-mouse-event): Avoid error with buttons > 5.
12062
12063 2008-03-24 Dan Nicolaescu <dann@ics.uci.edu>
12064
12065 * vc-hg.el (vc-hg-after-dir-status):
12066 * vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
12067
12068 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-parse-status):
12069 Detect removed files.
12070
12071 * vc.el (vc-status-printer): Use a different face for missing files.
12072 (vc-status-hide-up-to-date): Rename from
12073 vc-status-remove-up-to-date. Update all callers.
12074 (vc-status-mode-map): Bind C-m.
12075
12076 2008-03-24 Alexandre Julliard <julliard@winehq.org>
12077
12078 * vc-git.el (vc-git-after-dir-status-stage1): Move state matching
12079 code ...
12080 (vc-git--state-code): ... to this new function.
12081 (vc-git-state): Use it.
12082
12083 2008-03-24 Trent Buck <trentbuck@gmail.com> (tiny change)
12084
12085 * textmodes/remember.el (remember-mail-date)
12086 (remember-store-in-mailbox): Write date and From line in such a
12087 way that Mutt can read it.
12088
12089 2008-03-23 Chong Yidong <cyd@stupidchicken.com>
12090
12091 * simple.el (transient-mark-mode): Turn on by default.
12092
12093 2008-03-23 Dan Nicolaescu <dann@ics.uci.edu>
12094
12095 * vc-bzr.el (vc-bzr-state): Return 'removed for removed files and
12096 'unregistered for unregistered files.
12097
12098 * vc-hg.el (vc-hg-state): Return 'removed for removed files.
12099
12100 * bindings.el (standard-mode-line-modes): Avoid duplicating a string.
12101
12102 * vc-cvs.el (vc-cvs-parse-status): Note there are problems with
12103 subdirectories.
12104
12105 * vc.el (vc-status-prepare-status-buffer): Fix thinko.
12106 (vc-status-menu-map): Add binding for vc-status-kill-dir-status-process.
12107 Add :enable for vc-status-refresh.
12108 (vc-status-menu-map-filter): Remove vc-ignore-menu-filter test.
12109 (vc-status-tool-bar-map): Add binding for
12110 vc-status-kill-dir-status-process.
12111 Don't test display-graphic-p and don't bind vc-ignore-menu-filter.
12112 (vc-update-vc-status-buffer, vc-status-kill-dir-status-process):
12113 Reset vc-status-process-buffer.
12114 (vc-status-refresh): Don't run two refreshes at a time.
12115 (vc-status): If the buffer is already in vc-status-mode only refresh.
12116 (vc-status-mark-buffer-changed): Add an optional file parameter.
12117 (vc-resynch-buffer): Use it.
12118 (vc-delete-file): Expand the file name before using it.
12119 Be careful to not create a new buffer with the old file contents.
12120 Update the VC state after performing the operation.
12121
12122 2008-03-23 Andreas Schwab <schwab@suse.de>
12123
12124 * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]:
12125 Fix radio button condition.
12126 [box]: Likewise.
12127 [customize]: Add radio button.
12128
12129 2008-03-23 Jay Belanger <jay.p.belanger@gmail.com>
12130
12131 * calc/calc.el (calc-was-keypad-mode, calc-full-mode)
12132 (calc-user-parse-tables, calc-gnuplot-default-device)
12133 (calc-gnuplot-default-output, calc-gnuplot-print-device)
12134 (calc-gnuplot-print-output, calc-gnuplot-geometry)
12135 (calc-graph-default-resolution, calc-graph-default-resolution-3d)
12136 (calc-invocation-macro, calc-trail-pointer, calc-trail-overlay)
12137 (calc-undo-list, calc-redo-list, calc-main-buffer)
12138 (calc-trail-buffer, calc-why, calc-last-kill, calc-dollar-values)
12139 (calc-dollar-used, calc-hashes-used, calc-quick-prev-results)
12140 (calc-said-hello, calc-executing-macro, calc-any-selections)
12141 (calc-help-phase, calc-full-help-flag, calc-refresh-count)
12142 (calc-display-dirty, calc-embedded-info, calc-embedded-active)
12143 (calc-standalone-flag, var-EvalRules, math-expr-function-mapping)
12144 (math-expr-variable-mapping, calc-mode-map, calc-digit-map)
12145 (calc-dispatch-map, calc-do-dispatch, calc-read-key-sequence)
12146 (calc-create-buffer, calc-quit): Add docstrings.
12147
12148 2008-03-23 Juanma Barranquero <lekktu@gmail.com>
12149
12150 * makefile.w32-in (WINS_ALMOST): Add org.
12151
12152 2008-03-23 Dan Nicolaescu <dann@ics.uci.edu>
12153
12154 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
12155 New functions to implement vc-status support.
12156
12157 2008-03-22 Dan Nicolaescu <dann@ics.uci.edu>
12158
12159 * vc.el (vc-status-prepare-status-buffer): New function.
12160 (vc-status): Use it.
12161
12162 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add ... where
12163 appropriate.
12164
12165 2008-03-22 Alexandre Julliard <julliard@winehq.org>
12166
12167 * vc-git.el (vc-git--empty-db-p)
12168 (vc-git-after-dir-status-stage1-empty-db): New functions.
12169 (vc-git-dir-status, vc-git-after-dir-status-stage1, vc-git-state):
12170 Add support for empty repositories.
12171
12172 2008-03-22 Dan Nicolaescu <dann@ics.uci.edu>
12173
12174 * vc-git.el (vc-git-annotate-extract-revision-at-line):
12175 Allow "^" in a version name.
12176
12177 * vc-mtn.el (vc-mtn-state): Support the added state.
12178
12179 2008-03-22 Carsten Dominik <dominik@science.uva.nl>
12180
12181 * org: New directory for Org-mode.
12182
12183 * org/org-export-latex.el: Moved from lisp/texmodes.
12184
12185 * org/org-irc.el: Moved from lisp/texmodes.
12186
12187 * org/org-mac-message.el: Moved from lisp/texmodes.
12188
12189 * org/org-mouse.el: Moved from lisp/texmodes.
12190
12191 * org/org-publish.el: Moved from lisp/texmodes.
12192
12193 2008-03-21 Juri Linkov <juri@jurta.org>
12194
12195 * comint.el (comint-dynamic-simple-complete):
12196 Use variable `stub' for the second arg `common-substring'
12197 of `comint-dynamic-list-completions'.
12198 (comint-dynamic-list-filename-completions):
12199 Use variable `filenondir' for the second arg `common-substring'
12200 of `comint-dynamic-list-completions'.
12201 (comint-dynamic-list-completions): Add new optional arg
12202 `common-substring'. Add `common-substring' as the second arg of
12203 the call to `display-completion-list'. Doc fix.
12204
12205 * comint.el (comint-dynamic-complete-as-filename)
12206 (comint-dynamic-list-filename-completions)
12207 (comint-dynamic-simple-complete): Use `minibuffer-message'
12208 to display message "No completions of %s" when a command
12209 is called in the minibuffer.
12210 (comint-dynamic-simple-complete): Don't display other
12211 completion messages when a command is called in the minibuffer.
12212 (comint-dynamic-list-completions): Use `minibuffer-message'
12213 to display message " [Type space to flush ...]" when a command
12214 is called in the minibuffer.
12215
12216 * shell.el (shell-dynamic-complete-command)
12217 (shell-dynamic-complete-environment-variable): Don't display
12218 completion messages when command is called in the minibuffer.
12219
12220 * emacs-lisp/lisp.el (lisp-complete-symbol):
12221 Use `minibuffer-message' to display message "No completions of %s"
12222 when this command is called in the minibuffer.
12223
12224 * bindings.el (standard-mode-line-modes): Put special help-echo
12225 tooltip on recursive edit %[ %] mode-line constructs.
12226
12227 * dabbrev.el (debug-ignored-errors): Remove $ from the end of
12228 "^No dynamic expansion for .* found$" to allow error messages like
12229 "No dynamic expansion for \"%s\" found in this-buffer".
12230
12231 2008-03-21 Michael Albinus <michael.albinus@gmx.de>
12232
12233 * net/tramp.el (tramp-methods): Fix tramp-copy-args of "pscp" and
12234 "psftp".
12235
12236 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12237
12238 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
12239 * vc.el (vc-default-dired-state-info): Use just "modified".
12240 * vc-cvs.el (vc-cvs-state-heuristic): Turn rev 0 into `added'.
12241 (vc-cvs-mode-line-string): Make use of the better default.
12242 (vc-cvs-parse-entry): Use the new `added'.
12243 (vc-cvs-dired-state-info): Remove.
12244 * vc-svn.el (vc-svn-dired-state-info): Remove.
12245 * vc-hg.el (vc-hg-dired-state-info): Remove.
12246 * vc-git.el (vc-git-dired-state-info): Remove.
12247
12248 2008-03-21 Dan Nicolaescu <dann@ics.uci.edu>
12249
12250 * vc-git.el (vc-git-status-result): New variable.
12251 (vc-git-dir-status): Split out ...
12252 (vc-git-after-dir-status-stage1, vc-git-after-dir-status-stage2):
12253 ... these new functions and work asynchronously.
12254
12255 2008-03-21 Alexandre Julliard <julliard@winehq.org>
12256
12257 * vc-git.el (vc-git-after-dir-status): Remove.
12258 (vc-git-dired-state-info): Reimplement.
12259
12260 2008-03-21 Dan Nicolaescu <dann@ics.uci.edu>
12261
12262 * replace.el (occur-mode-map): Add :help.
12263
12264 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entry
12265 for disassemble.
12266
12267 * vc.el (vc-status-mark-buffer-changed): Better deal with files in
12268 the 'added state.
12269 (vc-status-remove-up-to-date): New function.
12270 (vc-status-mode-map, vc-status-menu-map): Bind it.
12271 (vc-status-printer): Use a different face up-to-date files.
12272 (vc-resynch-buffer): Update the vc-status buffer if it exists.
12273 (Todo): Remove solved entries.
12274
12275 * vc-hg.el (vc-hg-state):
12276 * vc-git.el (vc-git-state):
12277 * vc-cvs.el (vc-cvs-parse-status):
12278 * vc-bzr.el (vc-bzr-state): Return 'added when the file is in that
12279 state.
12280
12281 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12282
12283 * progmodes/compile.el (compile):
12284 * progmodes/grep.el (grep, grep-find): Use read-shell-command.
12285
12286 * simple.el (minibuffer-local-shell-command-map): New var.
12287 (minibuffer-complete-shell-command, read-shell-command): New funs.
12288 (shell-command, shell-command-on-region): Use them.
12289
12290 2008-03-20 Dan Nicolaescu <dann@ics.uci.edu>
12291
12292 * vc.el (vc-status-mark-buffer-changed): New function to implement
12293 updating of the *vc-status* buffer when a buffer is saved.
12294 (vc-status-mode): Use it for after-change-hook.
12295 (vc-add-to-vc-status-buffer): Rename to ...
12296 (vc-status-add-entry): ... this.
12297 (Todo): Add new entry.
12298
12299 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12300
12301 * sort.el (sort-reorder-buffer): Preserve the buffer's multibyteness.
12302
12303 2008-03-20 Juanma Barranquero <lekktu@gmail.com>
12304
12305 * icomplete.el (icomplete-prospects-length, icomplete-max-delay-chars)
12306 (icomplete-show-key-bindings, icomplete-minibuffer-setup-hook):
12307 Remove spurious * from defcustom docstrings.
12308 (icomplete-compute-delay): Fix docstring and remove spurious *.
12309 (icomplete-delay-completions-threshold): Fix typo in docstring and
12310 remove spurious *.
12311 (icomplete-completions): While collecting the list of prospective
12312 candidates, don't overshoot `icomplete-prospects-length'.
12313
12314 2008-03-20 Dan Nicolaescu <dann@ics.uci.edu>
12315
12316 * textmodes/refbib.el:
12317 * textmodes/reftex.el:
12318 * textmodes/reftex-global.el:
12319 * textmodes/reftex-vars.el:
12320 * textmodes/reftex-toc.el: Don't use eval-and-compile for byte
12321 compiler pacifying defvars.
12322 (reftex-toc-mode): Only make zmacs-regions local on XEmacs.
12323 * textmodes/reftex-index.el (zmacs-regions): Remove pacifier,
12324 not needed.
12325
12326 2008-03-20 Wilson Snyder <wsnyder@wsnyder.org>
12327
12328 * progmodes/verilog-mode.el (verilog-easy-menu-filter): New function.
12329 (verilog-stmt-menu, verilog-menu): Add :help and filter it.
12330 (verilog-customize, verilog-font-customize)
12331 (electric-verilog-backward-sexp, electric-verilog-forward-sexp)
12332 (verilog-mode): Update documentation strings to match tool tips.
12333 (verilog-auto-search-do, verilog-auto-re-search-do)
12334 (verilog-skip-forward-comment-or-string): Fix verilog-auto
12335 expansion when a .* appears inside a string.
12336 (verilog-re-search-forward, verilog-re-search-backward):
12337 Add comment to recall how this works.
12338 (verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including genvars.
12339
12340 2008-03-20 Glenn Morris <rgm@gnu.org>
12341
12342 * calendar/calendar.el (calendar-other-dates): New function.
12343 (calendar-print-other-dates): Use calendar-other-dates.
12344 * calendar/cal-menu.el (calendar-other-dates): Declare it, and remove
12345 the declarations it replaces.
12346 (calendar-mouse-print-dates): Use calendar-other-dates.
12347
12348 * calendar/cal-bahai.el (calendar-bahai-leap-year-p)
12349 (calendar-bahai-leap-base, calendar-bahai-from-absolute): Doc fixes.
12350 (calendar-absolute-from-bahai): Fix the leap-year case.
12351 (calendar-bahai-from-absolute): Re-use the Gregorian month.
12352 (calendar-bahai-date-string, calendar-bahai-print-date):
12353 Handle pre-Bahai dates.
12354
12355 * calendar/cal-china.el (chinese-calendar-celestial-stem)
12356 (chinese-calendar-terrestrial-branch): Make defcustoms.
12357
12358 * calendar/cal-menu.el (calendar-mouse-holidays): Re-use the title.
12359 (calendar-mouse-view-diary-entries): Use or.
12360 (calendar-mouse-chinese-date): Remove unused command.
12361 (cal-menu-load-hook): Mark as obsolete.
12362
12363 * calendar/solar.el (calendar-location-name, calendar-latitude)
12364 (calendar-longitude, solar-arctan, sunrise-sunset)
12365 (solar-mean-equinoxes/solstices): Use the appropriate equality test.
12366
12367 2008-03-20 Jay Belanger <jay.p.belanger@gmail.com>
12368
12369 * calc/calc.el: Remove outdated comments.
12370 (defcalcmodevar, calc-mode-var-list-restore-default-values)
12371 (calc-mode-var-list-restore-saved-values, calc-autorange-units):
12372 Add docstrings.
12373
12374 2008-03-19 Jason Rumney <jasonr@gnu.org>
12375
12376 * w32-fns.el (x-alternatives-map): Add S-tab mapping.
12377
12378 2008-03-19 Reiner Steib <Reiner.Steib@gmx.de>
12379
12380 * net/tls.el (open-tls-stream): Reindent.
12381
12382 2008-03-19 Michael Albinus <michael.albinus@gmx.de>
12383
12384 * net/tramp.el (tramp-let-maybe): Removed.
12385 (tramp-drop-volume-letter): Don't use `replace-regexp-in-string'.
12386 It does not exist under XEmacs.
12387 (tramp-handle-file-truename, tramp-handle-expand-file-name)
12388 (tramp-completion-file-name-handler): Let-bind
12389 `directory-sep-char'.
12390
12391 * net/tramp-fish.el (tramp-fish-handle-expand-file-name): Let-bind
12392 `directory-sep-char'.
12393
12394 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
12395
12396 * help-fns.el (describe-function-1): Don't signal "missing arglist"
12397 for autoloaded keymaps.
12398
12399 * progmodes/verilog-mode.el (verilog-syntax-ppss): New function.
12400 (electric-verilog-terminate-line, verilog-in-struct-region-p)
12401 (verilog-backward-ws&directives, verilog-forward-ws&directives)
12402 (verilog-in-comment-p, verilog-in-star-comment-p)
12403 (verilog-in-slash-comment-p, verilog-skip-backward-comments)
12404 (verilog-parenthesis-depth, verilog-skip-backward-comment-or-string)
12405 (verilog-skip-forward-comment-or-string, verilog-in-paren)
12406 (verilog-skip-forward-comment-p): Use it.
12407
12408 2008-03-19 Juanma Barranquero <lekktu@gmail.com>
12409
12410 * textmodes/org.el (org-link-store, org-link-follow, org-latex)
12411 (org-remember-templates, org-time-stamp-rounding-minutes)
12412 (org-back-over-empty-lines, org-find-base-buffer-visiting)
12413 (org-columns-new): Fix typos in docstrings.
12414
12415 2008-03-19 Glenn Morris <rgm@gnu.org>
12416
12417 * net/tramp.el (tramp-drop-volume-letter): Evaluate when compiling.
12418 (tramp-handle-shell-command): Use condition-case rather than
12419 ignore-errors.
12420
12421 2008-03-19 Dan Nicolaescu <dann@ics.uci.edu>
12422
12423 * diff-mode.el (diff-header): Make the color louder.
12424 (diff-refine-change): Tone the color down.
12425
12426 2008-03-19 Juanma Barranquero <lekktu@gmail.com>
12427
12428 * descr-text.el (describe-char): When `describe-char-unidata-list'
12429 is set to show all properties, list them in the right order.
12430
12431 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
12432
12433 * international/mule.el (load-with-code-conversion): Avoid setting
12434 default-enable-multibyte-characters.
12435
12436 2008-03-19 Gustav Hållberg <gustav@virtutech.com> (tiny change)
12437
12438 * vc.el (vc-annotate-background): Fix custom type.
12439
12440 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
12441
12442 * descr-text.el (describe-char-unidata-list): Allow specifying
12443 just all properties.
12444 (describe-char): Handle that new value.
12445
12446 * emulation/cua-base.el (cua-paste): Signal an error in read-only buf.
12447
12448 2008-03-18 Tassilo Horn <tassilo@member.fsf.org>
12449
12450 * doc-view.el (doc-view-initiate-display): Use doc-view-doc-type
12451 instead of file name extension to make docs with uncommon
12452 extensions work.
12453
12454 2008-03-18 Tassilo Horn <tassilo@member.fsf.org>
12455
12456 * doc-view.el (require): Require cl at compile time because
12457 `assert' needs it.
12458
12459 2008-03-18 Glenn Morris <rgm@gnu.org>
12460
12461 * calendar/calendar.el (initial-calendar-window-hook)
12462 (today-visible-calendar-hook): Doc fixes.
12463
12464 2008-03-17 Michael Albinus <michael.albinus@gmx.de>
12465
12466 * net/tramp.el (tramp-root-regexp): Simplify.
12467 (tramp-completion-file-name-regexp-separate): Don't insist on
12468 leading "[". This prevents method or user or host completion.
12469 (tramp-let-maybe): Autoload it.
12470 (tramp-drop-volume-letter): Don't autoload. When not on W32, it
12471 is an alias for `identity'.
12472 (tramp-handle-write-region): Protect `last-coding-system-used'
12473 over the trailing statements.
12474 (tramp-completion-file-name-handler-post-function): Remove.
12475 (tramp-completion-file-name-handler): Let-bind `directory-sep-char'
12476 instead of calling `tramp-drop-volume-letter'.
12477
12478 * net/tramp.el:
12479 * net/tramp-uu.el:
12480 * net/trampver.el: Move coding cookie at the end.
12481
12482 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
12483
12484 * net/tramp.el (tramp-completion-mode-p): Don't use char-equal for
12485 elements which may be something else than characters.
12486
12487 2008-03-17 Dan Nicolaescu <dann@ics.uci.edu>
12488
12489 * vc-bzr.el (vc-bzr-dir-status, vc-bzr-after-dir-status):
12490 New functions to implement vc-status support.
12491
12492 * vc.el (vc-default-extra-status-menu)
12493 (vc-add-to-vc-status-buffer): New functions.
12494
12495 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
12496 for eldoc and ielm.
12497
12498 2008-03-17 Glenn Morris <rgm@gnu.org>
12499
12500 * calendar/cal-x.el (diary-frame-parameters)
12501 (calendar-frame-parameters, calendar-and-diary-frame-parameters):
12502 Fix custom type; add options.
12503 (calendar-frame, diary-frame): Doc fixes.
12504 (calendar-dedicate-diary, calendar-frame-1): Extract common code into
12505 new functions.
12506 (calendar-one-frame-setup, calendar-two-frame-setup): Doc fixes.
12507 Use calendar-frame-1 and calendar-dedicate-diary.
12508 (calendar-one-frame-setup): Also handle only-one-frame case.
12509 (calendar-only-one-frame-setup): Doc fix. Just call
12510 calendar-one-frame-setup.
12511
12512 * calendar/diary-lib.el: Re-order some definitions before their use.
12513 (nongregorian-diary-listing-hook, nongregorian-diary-marking-hook)
12514 (diary-list-entries): Doc fixes.
12515 (make-fancy-diary-display): Remove function.
12516
12517 * calendar/calendar.el (calendar-today-marker)
12518 (initial-calendar-window-hook, today-visible-calendar-hook)
12519 (today-invisible-calendar-hook, diary-file, calendar-basic-setup)
12520 (calendar-star-date, calendar-mark-today): Doc fixes.
12521 (today-visible-calendar-hook): Add options.
12522 (calendar-in-read-only-buffer): New macro.
12523 (calendar-basic-setup): Adapt for change in calendar-read-date.
12524 Place holiday let inside if.
12525 (calendar-day-name-array, calendar-month-name-array): Make defcustoms.
12526 (calendar-read-date): Set day to 1 rather than nil in the NODAY case.
12527 (calendar-print-other-dates): Use one let rather than many.
12528
12529 * calendar/calendar.el (calendar-in-read-only-buffer): New macro.
12530 (calendar-print-other-dates):
12531 * calendar/cal-hebrew.el (list-yahrzeit-dates):
12532 * calendar/diary-lib.el (simple-diary-display, fancy-diary-display):
12533 * calendar/holidays.el (calendar-list-holidays, list-holidays)
12534 (calendar-cursor-holidays):
12535 * calendar/lunar.el (calendar-phases-of-moon): Use
12536 calendar-in-read-only-buffer to replace previous code and disable undo.
12537
12538 2008-03-16 Juri Linkov <juri@jurta.org>
12539
12540 * isearch.el (isearch-edit-string): Use search-ring-yank-pointer
12541 and regexp-search-ring-yank-pointer for the HISTPOS argument of
12542 read-from-minibuffer to provide the correct initial minibuffer
12543 history position in isearch-edit-string when it is called from
12544 isearch-ring-adjust.
12545
12546 * menu-bar.el (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
12547 to check if the current buffer is the minibuffer, and in this case
12548 call abort-recursive-edit to kill the minibuffer. Doc fix.
12549 (kill-this-buffer-enabled-p): Allow this function to return non-nil
12550 when the current buffer is the minibuffer.
12551
12552 * simple.el (goto-line): Leave mark at previous position. Doc fix.
12553
12554 2008-03-16 Tassilo Horn <tassilo@member.fsf.org>
12555
12556 * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
12557 Use non-nil PARENTS attribute of make-directory instead of
12558 explicitly checking existence the current cache directory.
12559
12560 2008-03-16 Daiki Ueno <ueno@unixuser.org>
12561
12562 * epa-file.el (epa-file-select-keys): Fix bug with C-x C-s after
12563 M-x epa-file-select-keys.
12564
12565 2008-03-16 Kenichi Handa <handa@m17n.org>
12566
12567 * international/mule.el (auto-coding-alist):
12568 Use no-conversion-multibyte for archive files.
12569
12570 2008-03-16 Glenn Morris <rgm@gnu.org>
12571
12572 * calendar/diary-lib.el (calendar-mark-complex, calendar-mark-1):
12573 New functions.
12574 * calendar/cal-bahai.el (calendar-mark-1): Autoload it.
12575 (calendar-bahai-mark-date-pattern): Add optional argument `color'.
12576 Use calendar-mark-1.
12577 * calendar/cal-hebrew.el (calendar-mark-complex): Autoload it.
12578 (mark-hebrew-calendar-date-pattern): Add optional argument `color'.
12579 Use calendar-mark-complex.
12580 * calendar/cal-islam.el (calendar-mark-1): Autoload it.
12581 (mark-islamic-calendar-date-pattern): Add optional argument `color'.
12582 Use calendar-mark-1.
12583
12584 * calendar/calendar.el (calendar-mod): Remove.
12585 * calendar/cal-china.el (calendar-chinese-from-absolute)
12586 (calendar-chinese-date-string): Expand calendar-mod calls.
12587 * calendar/cal-mayan.el (calendar-mayan-tzolkin-from-absolute):
12588 Expand calendar-mod calls.
12589
12590 * calendar/cal-bahai.el (calendar-bahai-date-string): Use a single let.
12591 (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
12592 (diary-bahai-insert-yearly-entry): Use let rather than let*.
12593 Move obsolete aliases after the functions that replaced them.
12594
12595 * calendar/cal-hebrew.el (calendar-absolute-from-hebrew)
12596 (hebrew-calendar-yahrzeit, insert-hebrew-diary-entry)
12597 (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry):
12598 Use let rather than let*.
12599 (calendar-hebrew-prompt-for-date): New function.
12600 (calendar-goto-hebrew-date): Use calendar-hebrew-prompt-for-date.
12601 (holiday-tisha-b-av-etc): Use unless, let.
12602
12603 * calendar/cal-islam.el (calendar-islamic-prompt-for-date): New func.
12604 (calendar-goto-islamic-date): Use calendar-islamic-prompt-for-date.
12605
12606 * calendar/cal-mayan.el (calendar-mayan-haab-to-string): Simplify.
12607
12608 * calendar/calendar.el (calendar-for-loop): Add indent spec.
12609
12610 * calendar/diary-lib.el (diary-remind-message, mark-sexp-diary-entries)
12611 (list-sexp-diary-entries, diary-font-lock-sexps): Use format rather
12612 than concat.
12613 (diary): Remove un-needed let.
12614 (view-other-diary-entries): Rename argument.
12615 (diary-list-entries-2): New function.
12616 (diary-list-entries-1, diary-list-entries): Use diary-list-entries-2.
12617 (print-diary-entries): Use unless.
12618 (diary-mark-entries-1): Change argument order, make all but
12619 markfunc optional. Handle the standard (Gregorian) case.
12620 Use match-string-no-properties. Handle marks.
12621 (mark-diary-entries): Use diary-mark-entries-1.
12622 (diary-font-lock-keywords-1): New macro.
12623 (diary-font-lock-keywords): Use diary-font-lock-keywords-1.
12624
12625 2008-03-16 Ulf Jasper <ulf.jasper@web.de>
12626
12627 * calendar/icalendar.el (icalendar-version): Increase to 0.18.
12628 (icalendar-export-hidden-diary-entries): New variable.
12629 (icalendar-export-region): Use icalendar-export-hidden-diary-entries.
12630 In case of error, insert full error-val.
12631 (icalendar-first-weekday-of-year): Remove `offset' argument. Doc fix.
12632 Use calendar-day-of-week. Return the day number.
12633 (icalendar--convert-weekly-to-ical): Use funcall rather than apply.
12634
12635 2008-03-16 Craig Markwardt <Craig.Markwardt@nasa.gov>
12636
12637 * calendar/icalendar.el (icalendar-recurring-start-year): New variable.
12638 (icalendar--diarytime-to-isotime): Fix treatment of 12:00pm - 12:59pm.
12639 (icalendar-export-region): Ignore hidden diary entries.
12640 (icalendar--convert-ordinary-to-ical): Fix case where event
12641 spans across midnight boundary.
12642 (icalendar-first-weekday-of-year): New function.
12643 (icalendar--convert-weekly-to-ical): Allow user-selectable start
12644 year for recurring events (Mozilla calendars do not propagate
12645 recurring events forever, so year 2000 start date was not working).
12646 (icalendar--convert-yearly-to-ical): Remove extra spaces in
12647 formatting of BYMONTH and BYMONTHDAY (not allowed by ical spec).
12648
12649 2008-03-15 Michael Albinus <michael.albinus@gmx.de>
12650
12651 * net/tramp.el (tramp-root-regexp): New defconst.
12652 (tramp-completion-file-name-regexp-unified)
12653 (tramp-completion-file-name-regexp-separate)
12654 (tramp-completion-file-name-regexp-url): Use it.
12655 (tramp-do-copy-or-rename-file-via-buffer):
12656 Set `enable-multibyte-characters' to nil. Set `jka-compr-inhibit' to
12657 t for `insert-file-contents-literally'.
12658 (tramp-drop-volume-letter): Rewrite, using `tramp-root-regexp'.
12659 Autoload it.
12660 (tramp-completion-file-name-handler-post-function): New defconst.
12661 (tramp-completion-file-name-handler): Use it.
12662 (tramp-maybe-open-connection): Update calls to
12663 `tramp-flush-connection-property' for removed 2nd argument.
12664
12665 2008-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
12666
12667 * vc-bzr.el (vc-bzr-diff): Use a faster invocation when possible.
12668 (vc-bzr-complete-with-prefix, vc-bzr-revision-completion-table):
12669 New functions.
12670
12671 2008-03-15 Glenn Morris <rgm@gnu.org>
12672
12673 * calendar/diary-lib.el (diary-list-entries-1, diary-mark-entries-1):
12674 New functions.
12675 * calendar/cal-bahai.el (number, original-date, add-to-diary-list)
12676 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
12677 (diary-list-entries-1, diary-mark-entries-1): Autoload.
12678 (diary-bahai-list-entries): Use diary-list-entries-1.
12679 (diary-bahai-mark-entries): Doc fix. Use diary-mark-entries-1.
12680 * calendar/cal-hebrew.el (number, original-date, add-to-diary-list)
12681 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
12682 (diary-list-entries-1, diary-mark-entries-1): Autoload.
12683 (list-hebrew-diary-entries): Use diary-list-entries-1.
12684 (mark-hebrew-diary-entries): Doc fix. Use diary-mark-entries-1.
12685 * calendar/cal-islam.el (number, original-date, add-to-diary-list)
12686 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
12687 (diary-list-entries-1, diary-mark-entries-1): Autoload.
12688 (list-islamic-diary-entries): Use diary-list-entries-1.
12689 (mark-islamic-diary-entries): Doc fix. Use diary-mark-entries-1.
12690
12691 * calendar/appt.el (appt-check, appt-delete, appt-make-list): Use caar.
12692
12693 * calendar/cal-bahai.el (calendar-bahai-epoch): Doc fix.
12694
12695 * calendar/cal-china.el (number-chinese-months)
12696 (calendar-chinese-from-absolute): Use nth, caar.
12697
12698 * calendar/cal-coptic.el (coptic-calendar-epoch): Doc fix.
12699
12700 * calendar/cal-french.el (french-calendar-accents): Doc fix.
12701
12702 * calendar/cal-hebrew.el (calendar-hebrew-month-name-array-common-year)
12703 (calendar-hebrew-month-name-array-leap-year)
12704 (hebrew-calendar-parashiot-names): Make constants.
12705 (diary-parasha): Move definition after constants it uses.
12706
12707 * calendar/cal-html.el (cal-html-insert-link-yearpage)
12708 (cal-html-htmlify-list): Doc fix.
12709 (cal-html-htmlify-entry): Use nth.
12710
12711 * calendar/cal-islam.el (calendar-islamic-month-name-array)
12712 (calendar-islamic-epoch): Make constants.
12713 (calendar-islamic-epoch): Doc fix.
12714
12715 * calendar/cal-menu.el (cal-menu-goto-menu): Use "Go To".
12716
12717 * calendar/cal-tex.el (cal-tex-hook, cal-tex-insert-preamble)
12718 (cal-tex-month-name): Doc fix.
12719 (cal-tex-last-blank-p): Use zerop.
12720
12721 * calendar/calendar.el (european-calendar-style, calendar-for-loop)
12722 (calendar-sum, calendar-insert-indented, mouse-calendar-other-month)
12723 (calendar-cursor-to-date): Doc fix.
12724 (hebrew-holidays-1, hebrew-holidays-4): Simplify.
12725 (extract-calendar-day, extract-calendar-year): Use cadr, nth.
12726 (calendar-day-number): Use when.
12727 (generate-calendar-month): Use dotimes.
12728 (exit-calendar, calendar-print-other-dates): Use let rather than let*.
12729 (calendar-set-mark): Reverse conditional.
12730 (calendar-make-alist): Move definition before use.
12731
12732 * calendar/diary-lib.el (diary-face-attrs)
12733 (diary-glob-file-regexp-prefix, diary-selective-display)
12734 (number-of-diary-entries, diary-list-entries, diary-goto-entry)
12735 (list-sexp-diary-entries, diary-date, diary-block, diary-float)
12736 (diary-anniversary, diary-cyclic)
12737 (diary-fancy-font-lock-fontify-region-function): Doc fixes.
12738 (diary-header-line-format): Change wording.
12739 (diary-list-entries): Set `date-start' in let.
12740 (include-other-diary-files, mark-included-diary-files): Use format.
12741 (simple-diary-display, fancy-diary-display): Use cadr, unless.
12742 (mark-diary-entries): Use 1+.
12743 (mark-sexp-diary-entries, list-sexp-diary-entries): Use when.
12744 (mark-calendar-month): Use dotimes.
12745
12746 * calendar/holidays.el (displayed-month, displayed-year):
12747 Move declarations where needed.
12748 (calendar-list-holidays): Doc fix.
12749
12750 * calendar/parse-time.el (parse-time-string): Simplify.
12751
12752 * calendar/solar.el (solar-n-hemi-seasons, solar-s-hemi-seasons):
12753 Make constants.
12754 (solar-sunrise-sunset): Rename some local variables for clarity.
12755 (sunrise-sunset): Use zerop.
12756 (solar-mean-equinoxes/solstices): Doc fix.
12757
12758 * calendar/timeclock.el (timeclock-time-to-seconds, timeclock-log-data):
12759 Use nth.
12760 (timeclock-completing-read, timeclock-generate-report): Use zerop.
12761 (timeclock-mean, timeclock-generate-report): Use dolist.
12762
12763 * calendar/todo-mode.el (todo-add-category): Simplify.
12764 (todo-more-important-p, todo-delete-item, todo-file-item):
12765 Use unless, when.
12766 (todo-top-priorities): Use zerop.
12767
12768 2008-03-14 Nick Roberts <nickrob@snap.net.nz>
12769
12770 * buff-menu.el (list-buffers-noselect): Display buffer name in
12771 tooltip instead of mouse binding when it doesn't fit in the list.
12772
12773 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
12774
12775 * faces.el (xw-defined-colors):
12776 * simple.el (widget-convert, shell-mode): Declare as functions
12777 instead of autoloading.
12778
12779 * abbrev.el:
12780 * button.el:
12781 * cus-face.el:
12782 * ediff-hook.el:
12783 * emacs-lisp/backquote.el:
12784 * emacs-lisp/timer.el:
12785 * facemenu.el:
12786 * faces.el:
12787 * menu-bar.el:
12788 * simple.el:
12789 * subr.el:
12790 * textmodes/fill.el:
12791 * textmodes/paragraphs.el: Remove autoloads, redundant when the
12792 files are preloaded.
12793
12794 2008-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
12795
12796 * desktop.el (desktop-create-buffer): Don't catch errors if
12797 debug-on-error is set.
12798
12799 2008-03-14 Eli Zaretskii <eliz@gnu.org>
12800
12801 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
12802 ($(lisp)/calendar/diary-loaddefs.el)
12803 ($(lisp)/calendar/hol-loaddefs.el): New targets.
12804 (LOADDEFS): New macro.
12805 (autoloads): Depend on $(LOADDEFS).
12806
12807 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
12808
12809 * font-lock.el (featurep): Remove test, not useful anymore.
12810 (facemenu-keymap): Move key binding ...
12811 * facemenu.el (facemenu-keymap): ... here.
12812
12813 * vc-bzr.el (vc-bzr-print-log): Insert a file marker. Run the log
12814 for each file in the list.
12815 (vc-bzr-log-view-mode): Recognize the file marker.
12816
12817 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
12818 for checkdoc and profiling.
12819
12820 2008-03-14 Bastien Guerry <bzg@altern.org>
12821
12822 * textmodes/flyspell.el (nxml-mode): Add the right
12823 `flyspell-mode-predicate'.
12824
12825 * wid-edit.el (link): Use 'mouse-face for :follow-link.
12826
12827 2008-03-14 Glenn Morris <rgm@gnu.org>
12828
12829 * calendar/solar.el: Reorder so that functions are defined before use.
12830 (displayed-month, displayed-year): Move declarations where needed.
12831 (solar-get-number): Move definition before use. Use unless.
12832 (solar-equatorial-coordinates): Simplify.
12833 (solar-sunrise-and-sunset): Use let rather than let*.
12834 (solar-longitude, solar-equinoxes-solstices): Use cadr, nth.
12835
12836 * startup.el (command-line-1): Rename -internal-script back to
12837 -scriptload (reverts previous change).
12838
12839 * calendar/cal-bahai.el (calendar-bahai-month-name-array)
12840 (calendar-bahai-leap-base): Add doc strings.
12841 (calendar-bahai-prompt-for-date, calendar-bahai-mark-date-pattern):
12842 Move definition before use.
12843 (calendar-bahai-goto-date, diary-bahai-list-entries): Doc fix.
12844 (diary-bahai-list-entries, diary-bahai-mark-entries): Move some constant
12845 variables outside the loop. Use dolist.
12846 (holiday-bahai, calendar-bahai-mark-date-pattern): Use unless.
12847
12848 * calendar/cal-china.el: Re-order so that functions are defined before
12849 use.
12850 (displayed-month, displayed-year): Move declarations where needed.
12851 (chinese-calendar-time-zone, calendar-goto-chinese-date): Doc fix.
12852 (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
12853 Add doc strings.
12854 (chinese-year-cache): Recenter on 2010. Doc fix.
12855 (chinese-year, number-chinese-months, calendar-absolute-from-chinese):
12856 Doc fix. Simplify.
12857 (chinese-year-cache-init): New function.
12858 (compute-chinese-year, holiday-chinese-new-year)
12859 (calendar-chinese-date-string, calendar-goto-chinese-date)
12860 (make-chinese-month-assoc-list): Use cadr, nth.
12861 (chinese-months): Remove un-needed let.
12862
12863 * calendar/cal-coptic.el (coptic-calendar-month-name-array)
12864 (ethiopic-calendar-month-name-array, ethiopic-name): Add doc strings.
12865 (coptic-prompt-for-date): Move definition before use.
12866
12867 * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
12868 (calendar-dst-find-data, calendar-daylight-time-offset)
12869 (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
12870 (calendar-daylight-savings-starts-time)
12871 (calendar-daylight-savings-ends-time): Use cadr, nth.
12872
12873 * calendar/cal-french.el (french-calendar-epoch)
12874 (calendar-goto-french-date): Doc fix.
12875 (french-calendar-month-name-array)
12876 (french-calendar-multibyte-month-name-array)
12877 (french-calendar-day-name-array, french-calendar-special-days-array):
12878 Add doc strings.
12879
12880 * calendar/cal-hebrew.el (displayed-month, displayed-year)
12881 (original-date): Move declarations where needed.
12882 (calendar-goto-hebrew-date, list-hebrew-diary-entries, diary-yahrzeit):
12883 Doc fix.
12884 (list-hebrew-diary-entries, mark-hebrew-diary-entries): Move some
12885 constant variables outside the loop. Use dolist.
12886
12887 * calendar/cal-islam.el (displayed-month, displayed-year)
12888 (original-date): Move declarations where needed.
12889 (islamic-calendar-day-number): Remove unused local variable `day'.
12890 (calendar-goto-islamic-date): Doc fix.
12891 (holiday-islamic): Use unless.
12892 (list-islamic-diary-entries, mark-islamic-diary-entries): Move some
12893 constant variables outside the loop. Use dolist.
12894 (mark-islamic-calendar-date-pattern): Move definition before use.
12895 Use unless.
12896 (mark-islamic-diary-entries): Doc fix.
12897 (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
12898 (insert-yearly-islamic-diary-entry): Use let rather than let*.
12899
12900 * calendar/cal-julian.el (calendar-absolute-from-julian):
12901 Move definition before use. Remove un-needed local `day'.
12902 (calendar-goto-julian-date, calendar-goto-astro-day-number): Doc fix.
12903
12904 * calendar/cal-mayan.el (calendar-mayan-haab-month-name-array)
12905 (calendar-mayan-tzolkin-names-array): Add doc strings.
12906 (calendar-mayan-long-count-from-absolute): Use a single let.
12907 (calendar-string-to-mayan-long-count): Simplify.
12908 (calendar-next-haab-date, calendar-previous-haab-date)
12909 (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
12910 (calendar-previous-calendar-round-date)
12911 (calendar-goto-mayan-long-count-date, calendar-mayan-date-string):
12912 Doc fix.
12913 (calendar-mayan-tzolkin-haab-on-or-before): Use zerop.
12914 (calendar-mayan-date-string, calendar-print-mayan-date)
12915 (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
12916 (calendar-mayan-long-count-common-era): Move definitions before use.
12917
12918 * calendar/cal-menu.el (displayed-year): Move declaration where needed.
12919 (calendar-event-to-date, cal-tex-mouse-week, cal-tex-mouse-week-iso):
12920 Doc fix.
12921 (calendar-mouse-goto-date): Move definition before use.
12922
12923 * calendar/cal-move.el (calendar-cursor-to-nearest-date): Use or, when.
12924 Move definition before use.
12925 (calendar-cursor-to-visible-date): Move definition before use.
12926 (calendar-scroll-left): Use unless and zerop. Combine lets into one,
12927 and place inside the conditional.
12928 (calendar-forward-day): Simplify.
12929 (calendar-end-of-month): Use unless.
12930 (calendar-goto-day-of-year): Doc fix.
12931 Relocate obsolete aliases after their replacements.
12932
12933 * calendar/cal-persia.el (calendar-goto-persian-date): Doc fix.
12934
12935 * calendar/diary-lib.el (mark-diary-entries): Move some constant
12936 variables outside the diary-date-forms loop.
12937
12938 * calendar/calendar.el (diary-file): Doc fix.
12939 (calendar-buffer-list): Return buffers rather than strings (fixes
12940 previous change).
12941 (hebrew-holidays-4): Fix typo.
12942
12943 * calendar/holidays.el (displayed-month, displayed-year):
12944 Move declarations where needed.
12945 (calendar-holiday-list, calendar-list-holidays)
12946 (holiday-filter-visible-calendar): Move definitions before use.
12947 (list-holidays): Use cadr.
12948 Relocate obsolete aliases after their replacements.
12949
12950 * calendar/lunar.el (date, displayed-month, displayed-year):
12951 Move declarations where needed.
12952 (lunar-phase-list): Move definition after functions it uses.
12953 (calendar-phases-of-moon, diary-phases-of-moon)
12954 (lunar-new-moon-on-or-after): Use cadr, nth.
12955 (lunar-new-moon-on-or-after): Doc fix.
12956
12957 * textmodes/org-irc.el (top-level): CL not required when compiling.
12958 (org-irc-visit-erc): Replace runtime CL functions.
12959
12960 * textmodes/org-publish.el (declare-function): Add compatibility stub.
12961 (org-publish-delete-dups): Declare as function.
12962
12963 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
12964
12965 * vc-bzr.el (vc-bzr-log-view-mode): "." can be part of a revno.
12966 (vc-bzr-show-log-entry): Make regexp match more cases.
12967 (vc-diff-switches-list): Remove autoload, not needed.
12968
12969 2008-03-14 Juri Linkov <juri@jurta.org>
12970
12971 * isearch.el (isearch-edit-string): Remove one call to
12972 `isearch-push-state' not to push an inconsistent state,
12973 but keep another correct call to `isearch-push-state'.
12974 (isearch-ring-adjust): Call `isearch-push-state' only when
12975 `search-ring-update' is non-nil since `isearch-edit-string'
12976 already pushes its state.
12977 (isearch-message): Improve matching the failed part by checking
12978 if the original message starts with the last successful message.
12979
12980 * dired.el (dired-warn-writable): Rename to `dired-perm-write'.
12981 (dired-perm-write): Rename from `dired-warn-writable'.
12982 Change parent face from `font-lock-warning-face' to
12983 `font-lock-comment-delimiter-face'.
12984 (dired-warn-writable-face): Rename to `dired-perm-write-face'.
12985 (dired-perm-write-face): Rename from `dired-warn-writable-face'.
12986 (dired-font-lock-keywords): Replace `dired-warn-writable-face'
12987 with `dired-perm-write-face'.
12988
12989 2008-03-13 Tassilo Horn <tassilo@member.fsf.org>
12990
12991 * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
12992 Create cache dir only if it doesn't already exist.
12993
12994 2008-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
12995
12996 * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Fix handling
12997 of \ and '.
12998
12999 2008-03-13 Johan Bockgård <bojohan@gnu.org>
13000
13001 * net/browse-url.el (browse-url-text-xterm):
13002 Unquote browse-url-text-browser.
13003
13004 2008-03-13 Carsten Dominik <dominik@science.uva.nl>
13005
13006 * textmodes/org-mouse.el: Version number change.
13007
13008 * textmodes/org-publish.el (org-publish-expand-components):
13009 Remove null projects from the list of components.
13010 (org-publish-attachment): Bugfix: handle mandatory argument pub-dir.
13011 Remove unused retrieval of the :publishing-directory property.
13012 (org-publish-file): Bugfix: when using a relative directory as the
13013 publishing directory, convert it to a directory filename.
13014 (org-publish-project): New alias.
13015 (org-publish-get-files): Protect against empty p.
13016 (org-publish-file): Send an error when file is not part of any project.
13017 (org-publish-file): Offer to refresh the list of files in known
13018 project when the current file is not part of any project.
13019 (org-publish-before-export-hook)
13020 (org-publish-after-export-hook): New hooks.
13021 (org-publish-org-to): Use new hooks and kill buffers.
13022 (org-publish-file): Remove the code for killing buffers.
13023 (org-publish-initialize-files-alist): Use interactive.
13024 (org-publish-file): If the publishing function creates a new
13025 buffer, kill it after publishing.
13026 (org-publish-timestamp-filename): Protect ":" in file name path
13027 under windows.
13028
13029 * textmodes/org-export-latex.el (org-export-as-latex): Revert the
13030 change that killed the LaTeX buffer.
13031
13032 * textmodes/org.el (org-ctrl-c-star): Implement a missing branch
13033 in the decision tree.
13034 (org-select-remember-template): Clean the code.
13035 (org-prepare-dblock): Add the extra :content parameter.
13036 (org-write-agenda): New output type ".ics" files.
13037 (org-write-agenda): Call `org-icalendar-verify-function', both for
13038 time stamps and for TODO entries.
13039 (org-agenda-collect-markers, org-create-marker-find-array)
13040 (org-check-agenda-marker-table): New functions.
13041 (org-agenda-marker-table): New variable.
13042 (org-export-as-html): Revert the change that killed the html
13043 buffer. Side effects first need to be studied carefully.
13044 (org-get-tags-at): Fix the structure of the condition-case statement.
13045 (org-ts-regexp0, org-repeat-re, org-display-custom-time)
13046 (org-timestamp-change): Fix regular expressions to swallow the
13047 extra character for repeat-shift control.
13048 (org-auto-repeat-maybe): Implement the new repeater mechanisms.
13049 (org-get-legal-level): Alias to `org-get-valid-level'.
13050 (org-dblock-write:clocktable): Add a :link parameter, linking
13051 headlines to their location in the Org agenda files.
13052 (org-get-tags-at): Bugfix: prevent `org-back-to-heading' from
13053 throwing an error when getting tags before headlines.
13054 (org-timestamp-change, org-modify-ts-extra)
13055 (org-ts-regexp1): Fix timestamp editing.
13056 (org-agenda-custom-commands-local-options): New constant.
13057 (org-agenda-custom-commands):
13058 Use `org-agenda-custom-commands-local-options' to improve customize
13059 type. "htmlize": Removed hack to fix face problem with htmlize,
13060 it no longer seem necessary.
13061 (org-follow-link-hook): New hook.
13062 (org-agenda-custom-commands): Add "Component" as a tag for each
13063 item in a command series.
13064 (org-open-at-point): Run `org-follow-link-hook'.
13065 (org-agenda-schedule): Bugfix: don't display marker type when it
13066 is nil.
13067 (org-store-link): org-irc required.
13068 (org-set-regexps-and-options): Parse the new logging options.
13069 (org-extract-log-state-settings): New function.
13070 (org-todo): Handle the new ways of recording state change stuff.
13071 (org-local-logging): New function.
13072 (org-columns-open-link): Fix bug with opening link in column view.
13073 (org-local-logging): New function.
13074 (org-todo): Make sure that LOGGING properties are honoured.
13075 (org-todo-keywords): Improve docstring.
13076 (org-startup-options): Cleanup startup options.
13077 (org-set-regexps-and-options): Process the "!" markers.
13078 (org-todo): Respect the new logging stuff.
13079 (org-log-note-how): New variable.
13080 (org-add-log-maybe): New parameter HOW that defines how logging
13081 should be done and also overrides PURPOSE. Add a docstring.
13082 (org-add-log-note): Check if we really need to ask for a note.
13083 (org-get-current-options): Digest the new keyword.
13084 (org-agenda-reset-markers): Rename from
13085 `org-agenda-maybe-reset-markers'. Remove FORCE argument.
13086 (org-diary, org-agenda-quit, org-prepare-agenda): Call the renamed
13087 function, without force argument.
13088 (org-buffer-property-keys): Bind local variables s and p.
13089 (org-make-tags-matcher): Allow "" to match an empty or
13090 non-existent property value.
13091 (org-export-as-html): Join unsorted lists when they directly
13092 follow each other. Such lists may be created by headlines that
13093 are converted to lists.
13094 (org-nofm-to-completion): New function.
13095 (org-export-as-html): Use :html-extension instead of
13096 org-export-html-extension.
13097 (org-store-link): Support for links from `rmail-summary-mode'.
13098 (org-columns-new, org-complete, org-set-property): Set the
13099 `include-columns' argument in the call to
13100 `org-buffer-property-keys'.
13101 (org-buffer-property-keys): New argument `include-columns', to
13102 include properties expected by any of the COLUMNS formats in the
13103 current buffer.
13104 (org-cleaned-string-for-export): Get rid of drawers first, so that
13105 they will be removed also in the text before the first headline.
13106 (org-clock-report): Show the clocktable when found.
13107 (org-refile): Fix positioning bug when `org-reverse-note-order' is nil.
13108 (org-version): With prefix argument, insert `org-version' at point.
13109 (org-agenda-goto): Recenter the window after finding the target
13110 location, to make sure the correct position will be displayed.
13111 (org-agenda-get-deadlines): Don't scale priority with the warning
13112 period.
13113 (org-insert-heading): Don't break line in the middle of the line.
13114 (org-agenda-get-deadlines): Allow `org-deadline-warning-days' to
13115 be 0.
13116 (org-update-checkbox-count): Revamp to deal with hierarchical
13117 checkboxes. This was a patch from Miguel A. Figueroa-Villanueva.
13118 (org-remove-timestamp-with-keyword): New function.
13119 (org-schedule, org-deadline):
13120 Use `org-remove-timestamp-with-keyword' to make sure all such time
13121 stamps are removed.
13122 (org-mode): Support for `align'.
13123 (org-agenda-get-deadlines): Make sure priorities increase as the
13124 due date approaches and is passed.
13125 (org-remember-apply-template): Fix problem with tags that
13126 contain "_" or "@".
13127 (org-make-link-regexps): Improve the regular expression for plain links.
13128 (org-agenda-get-closed): List each clocking entry.
13129 (org-set-tags): Only tabify before tags if indent-tabs-mode is t.
13130 (org-special-ctrl-k): New option.
13131 (org-kill-line): New function.
13132 (org-archive-all-done): Fix incorrect number of stars in regexp.
13133 (org-refile-get-location): New function.
13134 (org-refile-goto-last-stored): New function.
13135 (org-global-tags-completion-table): Add the value of org-tag-alist
13136 in each buffer, to make sure that also unused tags will be
13137 available for completion.
13138 (org-columns-edit-value)
13139 (org-columns-next-allowed-value): Only update if not in agenda.
13140 (org-clocktable-steps): New function.
13141 (org-dblock-write:clocktable): Call `org-clocktable-steps'.
13142 (org-archive-subtree): Add the outline tree context as a property.
13143 (org-closest-date): New optional argument `prefer'.
13144 (org-goto-auto-isearch): New option.
13145 (org-goto-map, org-get-location): Implement auto-isearch.
13146 (org-goto-local-auto-isearch-map): New variable.
13147 (org-goto-local-search-forward-headings)
13148 (org-goto-local-auto-isearch): New functions.
13149
13150 2008-03-13 Philip Jackson <emacs@shellarchive.co.uk>
13151
13152 * textmodes/org-irc.el: New file.
13153
13154 2008-03-13 John Wiegley <johnw@gnu.org>
13155
13156 * textmodes/org-mac-message.el: New file.
13157
13158 2008-03-13 Dan Nicolaescu <dann@ics.uci.edu>
13159
13160 * font-lock.el (font-lock-comment-face): Set the foreground for
13161 the light background 8 colors case.
13162
13163 2008-03-13 Glenn Morris <rgm@gnu.org>
13164
13165 * font-lock.el (lisp-font-lock-keywords-1): Support wider range of
13166 generate-autoload-cookie patterns.
13167
13168 * startup.el (command-line-1): Rename -scriptload to -internal-script.
13169
13170 * Makefile.in ($(lisp)/loaddefs.el): Remove this target.
13171 (MH_E_SRC): Remove variable.
13172 ($(lisp)/mh-e/mh-loaddefs.el): Remove $MH_E_SRC dependency.
13173 Simplify file header. Use $@ for generated-autoload-file.
13174
13175 * Makefile.in (LOADDEFS): New variable.
13176 (AUTOGENEL): Use $LOADDEFS.
13177 (autoloads): Remove $(lisp)/loaddefs.el dependency; add $LOADDEFS.
13178 ($(lisp)/calendar/cal-loaddefs.el, $(lisp)/calendar/diary-loaddefs.el)
13179 ($(lisp)/calendar/hol-loaddefs.el): New targets.
13180 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
13181 * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-html.el:
13182 * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
13183 * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
13184 * calendar/cal-tex.el, calendar/cal-x.el, calendar/diary-lib.el:
13185 * calendar/holidays.el, calendar/lunar.el, calendar/solar.el:
13186 Add calendar-specific autoload cookies, and remove any setting of
13187 generated-autoload-file.
13188 * calendar/calendar.el: Remove explicit autoloads now in cal-loaddefs.
13189 * calendar/diary-lib.el: Replace explicit autoloads with reading of
13190 diary-loaddefs.
13191 * calendar/holidays.el: Replace explicit autoloads with reading of
13192 hol-loaddefs.
13193
13194 * calendar/calendar.el (cal-hebrew-yahrzeit-buffer): New constant.
13195 (calendar-buffer-list): Simplify.
13196 (generate-calendar-window): Use calendar-mark-holidays rather than
13197 obsolete alias.
13198
13199 * calendar/cal-hebrew.el (list-yahrzeit-dates):
13200 Use cal-hebrew-yahrzeit-buffer.
13201
13202 * calendar/cal-x.el (calendar-only-one-frame-setup)
13203 (calendar-two-frame-setup): Doc fixes.
13204 (special-display-buffer-names): Use cal-hebrew-yahrzeit-buffer.
13205
13206 * calendar/appt.el (appt-mode-string): Mark as risky.
13207 (appt-check): Apply mode-line-emphasis face to appt-mode-string.
13208
13209 * calendar/cal-html.el (diary-list-entries):
13210 * calendar/cal-tex.el (calendar-holiday-list, diary-list-entries)
13211 (calendar-iso-from-absolute): Fix autoloads.
13212
13213 * calendar/cal-iso.el (calendar-absolute-from-iso)
13214 (calendar-iso-read-args): Simplify.
13215 (calendar-iso-date-string, calendar-iso-read-args)
13216 (calendar-goto-iso-date, calendar-goto-iso-week): Doc fixes.
13217
13218 * calendar/cal-julian.el (calendar-julian-from-absolute): Use zerop.
13219 (displayed-month, displayed-year): Move declarations where needed.
13220 (calendar-print-astro-day-number): Doc fix.
13221
13222 * calendar/cal-persia.el (persian-calendar-month-name-array)
13223 (persian-calendar-epoch, calendar-persian-date-string): Doc fixes.
13224 (persian-prompt-for-date): Remove local variable `today'.
13225
13226 * calendar/diary-lib.el (mark-calendar-month): Use zerop.
13227
13228 * calendar/solar.el (solar-moment, solar-exact-local-noon)
13229 (solar-sunrise-sunset, solar-sunrise-sunset-string)
13230 (solar-ephemeris-time, solar-date-next-longitude, solar-sidereal-time)
13231 (diary-sabbath-candles, solar-equinoxes/solstices)
13232 (solar-equinoxes-solstices): Use cadr, cdar, nth, zerop.
13233 (solar-time-equation, solar-date-to-et): Simplify.
13234
13235 * mail/supercite.el: Remove the `function' in `(function (lambda'.
13236 Replace `(car (cdr' with cadr'.
13237
13238 * progmodes/f90.el (f90-font-lock-n): New function.
13239 (f90-font-lock-1, f90-font-lock-2, f90-font-lock-3, f90-font-lock-4):
13240 Use f90-font-lock-n.
13241 (f90-indent-region, f90-indent-subprogram, f90-match-end): Use cadr.
13242
13243 * progmodes/f90.el (f90-mode-abbrev-table):
13244 * progmodes/fortran.el (fortran-mode-abbrev-table):
13245 Use newer form of define-abbrev, where supported. No need to bind
13246 abbrevs-changed for system abbrevs.
13247
13248 2008-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
13249
13250 * term/xterm.el (terminal-init-xterm): delete-frame-hook ->
13251 delete-frame-functions.
13252
13253 * bookmark.el (Info-current-node): Remove.
13254
13255 2008-03-12 Juri Linkov <juri@jurta.org>
13256
13257 * help.el (describe-project): Remove defaliases for view-todo and
13258 describe-project that are now unnecessary after the merge from
13259 emacs--rel--22 that added define-obsolete-function-alias.
13260
13261 * startup.el (inhibit-startup-screen): Revert incomplete
13262 2008-03-10 merge from emacs--rel--22 that partly reverted
13263 2008-02-28 change that added initial message to *scratch* buffer
13264 regardless of the value of `inhibit-startup-screen'.
13265 Now keep this change in the trunk, but not in the 22 branch.
13266
13267 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13268
13269 * international/quail.el (quail-setup-completion-buf, quail-help):
13270 * mail/binhex.el (binhex-decode-region-internal):
13271 * mail/uudecode.el (uudecode-decode-region-internal):
13272 * net/dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
13273 * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
13274 setting default-enable-multibyte-characters.
13275
13276 * emulation/viper-util.el (viper-file-remote-p): Remove, unused.
13277
13278 * comint.el: Fix up indentation and comment style. Remove `function'.
13279
13280 * international/mule-cmds.el (reset-language-environment)
13281 (set-language-environment-nonascii-translation):
13282 Don't set-unibyte-charset.
13283
13284 * doc-view.el: Remove all cb-args, use closures instead.
13285 (doc-view-sentinel): Merge doc-view-dvi->pdf-sentinel,
13286 doc-view-ps->pdf-sentinel, and doc-view-pdf->txt-sentinel (which was
13287 doing an incorrect check). Update all callers to use the new name.
13288 (doc-view-doc->txt): Add missing `txt' argument.
13289
13290 2008-03-12 Tassilo Horn <tassilo@member.fsf.org>
13291
13292 * doc-view.el (doc-view-current-cache-dir): Set buffer used for
13293 md5 sum calculation to single-byte.
13294
13295 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13296
13297 * doc-view.el (doc-view-new-window-function): Add assertion.
13298 (doc-view-doc-type): New var.
13299 (doc-view-convert-current-doc, doc-view-doc->txt): Use it.
13300 (doc-view-intersection): New fun.
13301 (doc-view-mode): Use it to set the new var.
13302
13303 2008-03-12 Tassilo Horn <tassilo@member.fsf.org>
13304
13305 * doc-view.el (doc-view-doc->txt, doc-view-open-text)
13306 (doc-view-already-converted-p): New functions.
13307 (doc-view-clear-cache): Don't recreate doc-view-cache-directory.
13308 (doc-view-mode-map): Bind C-c C-t to doc-view-open-text.
13309 (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
13310 (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
13311 (doc-view-ps->pdf-sentinel, doc-view-ps->pdf)
13312 (doc-view-convert-current-doc): Don't hardwire the functions the
13313 sentinels call. Now they're provided by two args CALLBACK and
13314 CB-ARGS to the functions.
13315 (doc-view-search): Use doc-view-doc->txt.
13316 (doc-view-initiate-display): Use doc-view-already-converted-p.
13317 Mention new binding C-c C-t if doc-view-mode doesn't work.
13318
13319 2008-03-12 Dan Nicolaescu <dann@ics.uci.edu>
13320
13321 * diff-mode.el (diff-refine-change): Adjust colors to be more visible.
13322
13323 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13324
13325 * textmodes/sgml-mode.el (sgml-font-lock-syntactic-keywords):
13326 Mark " outside of tags as punctuation.
13327
13328 2008-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
13329
13330 * menu-bar.el (minibuffer-local-map): Use the same command for the
13331 "Quit" menu as used for the C-g key, so the shortcut displayed is C-g.
13332 Prefer RET over C-j for exit-minibuffer.
13333
13334 * files.el (display-buffer-other-frame): Eliminate problematic code.
13335
13336 * menu-bar.el (menu-bar-update-buffers-maxbuf): Remove.
13337 (menu-bar-select-buffer): Remove.
13338 (menu-bar-select-frame): Make non-interactive and take a frame arg.
13339 (menu-bar-update-buffers): Don't use buffer-names or frame names as events.
13340
13341 2008-03-11 Juanma Barranquero <lekktu@gmail.com>
13342
13343 * icomplete.el (icomplete-completions): Remove obsolete code.
13344
13345 * net/net-utils.el (iwconfig-program-options): Doc fix.
13346 (net-utils-run-program, run-network-program): Define as functions.
13347
13348 2008-03-11 Dan Nicolaescu <dann@ics.uci.edu>
13349
13350 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Fix typo.
13351
13352 2008-03-11 Glenn Morris <rgm@gnu.org>
13353
13354 * faces.el (mode-line-emphasis): New face.
13355 * vc.el (vc-set-mode-line-busy-indicator): Use mode-line-emphasis face.
13356
13357 * calendar/calendar.el (top-level): Load cal-loaddefs when compiling.
13358
13359 2008-03-11 Chong Yidong <cyd@stupidchicken.com>
13360
13361 * simple.el (set-mark-command): Doc fix.
13362
13363 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
13364
13365 * Makefile.in (bootstrap-prepare): Don't chmod cal-loaddefs.el.
13366
13367 * emacs-lisp/autoload.el (autoload-find-destination):
13368 Don't force raw-text.
13369
13370 * calendar/calendar.el ("cal-loaddefs"): Load, rather than require.
13371 * calendar/cal-loaddefs.el: Don't version control.
13372
13373 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
13374
13375 * progmodes/make-mode.el (makefile-mode-abbrev-table): Add menu
13376 entries and add :help to the existing ones.
13377
13378 2008-03-10 Glenn Morris <rgm@gnu.org>
13379
13380 * calendar/cal-hebrew.el (date, entry, number): Move declarations
13381 to where they are needed.
13382
13383 * calendar/calendar.el (diary-file, hebrew-holidays-1)
13384 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
13385 (calendar, calendar-basic-setup, calendar-mode-map, calendar-set-mark)
13386 (calendar-version): Doc fixes.
13387 (calendar-absolute-from-gregorian): Use zerop.
13388 (calendar-mode-line-format): Make it a defcustom.
13389
13390 * calendar/diary-lib.el (diary-face-attrs): Fix custom :type.
13391 (diary-face-attrs, diary-glob-file-regexp-prefix, diary-unknown-time)
13392 (diary-pull-attrs, diary-header-line-flag, diary-list-entries)
13393 (diary-unhide-everything, include-other-diary-files, diary-goto-entry)
13394 (mark-included-diary-files, mark-calendar-days-named)
13395 (mark-calendar-date-pattern, mark-calendar-month, diary-entry-compare)
13396 (diary-remind, insert-diary-entry, insert-weekly-diary-entry)
13397 (insert-monthly-diary-entry, insert-yearly-diary-entry)
13398 (insert-anniversary-diary-entry, insert-block-diary-entry)
13399 (insert-cyclic-diary-entry, fancy-diary-font-lock-keywords)
13400 (diary-font-lock-sexps): Doc fixes.
13401 (diary-remind-message, mark-calendar-month): Use zerop.
13402 (diary-attrtype-convert, diary-pull-attrs): Simplify.
13403 (diary-list-entries): Revert let to let* (previous change).
13404
13405 * Makefile.in (bootstrap-prepare): Also chmod cal-loaddefs.el.
13406
13407 2008-03-10 Kim F. Storm <storm@cua.dk>
13408
13409 * help.el (view-emacs-todo, describe-gnu-project): Define obsolete
13410 function aliases for the old names.
13411
13412 2008-03-10 Juanma Barranquero <lekktu@gmail.com>
13413
13414 * iswitchb.el (iswitchb-use-faces): Doc fix.
13415 (iswitchb-buffer-ignore, iswitchb-read-buffer):
13416 Fix typos in docstrings.
13417
13418 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
13419
13420 * progmodes/verilog-mode.el (verilog-highlight-grouping-keywords):
13421 Fix typo.
13422 (verilog-type-font-keywords): Reindent.
13423
13424 2008-03-10 Michael McNamara <mac@mail.brushroad.com>
13425
13426 * progmodes/verilog-mode.el (verilog-font-grouping-keywords):
13427 Fix bug in the grouping-keyword regular expression.
13428 (verilog-font-lock-keywords): Allow users to toggle special
13429 highlight of grouping-keywords.
13430 (verilog-highlight-grouping-keywords): The toggle for special
13431 highlighting of grouping keywords.
13432
13433 2008-03-10 Juri Linkov <juri@jurta.org>
13434
13435 * startup.el: Revert 2008-02-28 change that adds initial message
13436 to *scratch* buffer regardless of the value of
13437 `inhibit-startup-screen'.
13438
13439 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
13440
13441 * textmodes/css-mode.el (css-indent-offset, css-electric-keys):
13442 * textmodes/bibtex-style.el (bibtex-style-indent-basic):
13443 * progmodes/verilog-mode.el (verilog-mode):
13444 * net/socks.el (socks):
13445 * vc-mtn.el (vc-mtn-mode-line-rewrite): Add :version.
13446
13447 2008-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
13448
13449 * doc-view.el (bookmark-buffer-file-name, bookmark-prop-get): Declare.
13450 (doc-view-bookmark-make-record): Use them.
13451 (doc-view-bookmark-jump): Use them. Fix find-file ->find-file-noselect.
13452 (bookmark-get-filename, bookmark-get-bookmark-record): Remove.
13453
13454 * bookmark.el (bookmark-make-record-function): Change expected return
13455 value to include a suggested bookmark name.
13456 (bookmark-make): Split into bookmark-make-record and bookmark-store.
13457 Fix reversed `overwrite' semantics.
13458 (bookmark-set): Call bookmark-make-record before prompting the user.
13459 Then pass the result to bookmark-store later on.
13460 (bookmark-make-name-function): Remove.
13461 (bookmark-buffer-file-name, bookmark-buffer-name): Don't use it.
13462 * info.el (bookmark-make-name-function): Remove.
13463 (Info-mode): Don't set it.
13464 (Info-bookmark-make-name): Remove.
13465 (Info-bookmark-make-record): Use Info-current-node as suggested default
13466 bookmark name.
13467
13468 * bookmark.el (bookmark-set): Make bookmark before reading annotations.
13469 I.e. use bookmark-edit-annotation rather than bookmark-read-annotation.
13470 (bookmark-read-annotation-mode-map, bookmark-annotation-paragraph)
13471 (bookmark-annotation-buffer, bookmark-annotation-file)
13472 (bookmark-annotation-point, bookmark-send-annotation)
13473 (bookmark-read-annotation-mode, bookmark-read-annotation): Remove.
13474 (bookmark-edit-annotation-text-func): Rename from
13475 bookmark-read-annotation-text-func. Keep old name as an obsolete alias.
13476 (bookmark-edit-annotation-mode-map): Move initialization into
13477 declaration.
13478
13479 * bookmark.el: Remove spurious * in docstrings.
13480 (bookmark-minibuffer-read-name-map): New var.
13481 (bookmark-set): Use it. Also pass the default value as it should.
13482 (bookmark-send-edited-annotation): Take no chances with text properties.
13483 (bookmark-insert-current-bookmark): Inline bookmark-insert-buffer-name.
13484 (bookmark-insert-buffer-name): Remove.
13485 (bookmark-buffer-file-name): Signal an error rather than returning nil.
13486
13487 2008-03-09 Thomas Hühn <xf27@arcor.de> (tiny change)
13488
13489 * tutorial.el (tutorial--default-keys): Update `C-l' binding.
13490
13491 2008-03-09 Dan Nicolaescu <dann@ics.uci.edu>
13492
13493 * diff-mode.el (diff-mode-menu): Add :help.
13494
13495 2008-03-09 Glenn Morris <rgm@gnu.org>
13496
13497 * calendar/calendar.el (general-holidays, oriental-holidays)
13498 (local-holidays, other-holidays, hebrew-holidays-1, hebrew-holidays-2)
13499 (hebrew-holidays-3, hebrew-holidays-4, hebrew-holidays)
13500 (christian-holidays, islamic-holidays, bahai-holidays, solar-holidays)
13501 (calendar-holidays): Restore autoload cookies, because people are
13502 used to using these variables without loading calendar.el.
13503
13504 * calendar/cal-islam.el (diary-islamic-date): Move to end.
13505 (date, number): Declare where needed.
13506
13507 * calendar/diary-lib.el (nongregorian-diary-marking-hook)
13508 (list-sexp-diary-entries): Doc fixes.
13509 (diary-list-entries): Doc fix. Remove free variable `entry'.
13510 (fancy-diary-display): Use dolist, bobp. Remove free variable `entry'.
13511 Simplify setting of `date-holiday-list'.
13512 (mark-diary-entries): Remove free variable `entry'.
13513 (diary-list-entries, include-other-diary-files, fancy-diary-display):
13514 Use let where let* is not needed.
13515
13516 2008-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
13517
13518 * bookmark.el (bookmark-make): Don't pass the `annotation' to the
13519 make-record function, instead paste it in afterwards.
13520 (bookmark-make-record-for-text-file):
13521 * doc-view.el (doc-view-bookmark-make-record):
13522 * info.el (Info-bookmark-make-record): Don't mess with annotations.
13523
13524 2008-03-08 Glenn Morris <rgm@gnu.org>
13525
13526 * calendar/diary-lib.el (entry): Declare for compiler part-way through.
13527
13528 2008-03-08 Stefan Monnier <monnier@iro.umontreal.ca>
13529
13530 * calendar/diary-lib.el (diary-list-entries)
13531 (include-other-diary-files, mark-diary-entries)
13532 (mark-sexp-diary-entries, mark-included-diary-files)
13533 (diary-entry-time, list-sexp-diary-entries): Remove the special
13534 handling of ^M that dates back to the use of selective-display.
13535 (simple-diary-display): Obey setting of pop-up-frames.
13536 (body, entry): Remove unnecessary declarations.
13537
13538 * bookmark.el (bookmark-prop-get, bookmark-prop-set): New funs.
13539 (bookmark-get-annotation, bookmark-set-annotation)
13540 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
13541 (bookmark-set-position, bookmark-get-front-context-string)
13542 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
13543 (bookmark-set-rear-context-string, bookmark-get-handler): Use them.
13544 * info.el (Info-bookmark-make-record): Don't bother recording point.
13545 (bookmark-get-filename, bookmark-get-front-context-string)
13546 (bookmark-get-rear-context-string, bookmark-get-position):
13547 Don't declare any more.
13548 (bookmark-get-info-node): Remove.
13549 (bookmark-prop-get): Declare.
13550 (Info-bookmark-jump): Use it.
13551
13552 2008-03-08 Johan Bockgård <bojohan@gnu.org>
13553
13554 * subr.el (while-no-input): Don't splice BODY directly into the
13555 `or' form.
13556
13557 2008-03-08 Dan Nicolaescu <dann@ics.uci.edu>
13558
13559 * diff-mode.el (diff-ignore-whitespace-hunk):
13560 Bind inhibit-read-only before trying to change the buffer.
13561
13562 2008-03-08 Glenn Morris <rgm@gnu.org>
13563
13564 * calendar/appt.el (appt): Move custom group here from calendar.el.
13565 (appt-disp-window, appt-convert-time): Doc fixes.
13566
13567 * calendar/cal-bahai.el (calendar-bahai-prompt-for-date)
13568 (calendar-bahai-mark-date-pattern):
13569 * calendar/cal-hebrew.el (mark-hebrew-calendar-date-pattern):
13570 * calendar/cal-islam.el (mark-islamic-calendar-date-pattern):
13571 * calendar/cal-julian.el (calendar-absolute-from-julian):
13572 * calendar/cal-persia.el (persian-prompt-for-date): Use zerop.
13573
13574 * calendar/cal-china.el (chinese-calendar): Move custom group here from
13575 calendar.el.
13576 (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
13577 Make constants.
13578 (chinese-calendar-time-zone, chinese-calendar-daylight-time-offset)
13579 (chinese-calendar-daylight-savings-starts)
13580 (chinese-calendar-daylight-savings-ends)
13581 (chinese-calendar-daylight-savings-starts-time)
13582 (chinese-calendar-daylight-savings-ends-time)
13583 (chinese-zodiac-sign-on-or-after, chinese-new-moon-on-or-after):
13584 Doc fixes.
13585
13586 * calendar/cal-coptic.el (coptic-name): Add doc string.
13587
13588 * calendar/cal-french.el (french-calendar-month-name-array)
13589 (french-calendar-day-name-array, french-calendar-special-days-array):
13590 Add doc strings.
13591
13592 * calendar/cal-bahai.el (diary-bahai-mark-entries)
13593 (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
13594 (diary-bahai-insert-yearly-entry):
13595 * calendar/cal-dst.el (calendar-next-time-zone-transition)
13596 (calendar-time-zone):
13597 * calendar/cal-hebrew.el (hebrew-calendar-leap-year-p)
13598 (hebrew-calendar-elapsed-days, hebrew-calendar-long-heshvan-p)
13599 (hebrew-calendar-short-kislev-p, mark-hebrew-diary-entries)
13600 (insert-hebrew-diary-entry, insert-monthly-hebrew-diary-entry)
13601 (insert-yearly-hebrew-diary-entry, diary-yahrzeit):
13602 * calendar/cal-islam.el (islamic-calendar-leap-year-p)
13603 (list-islamic-diary-entries, mark-islamic-diary-entries)
13604 (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
13605 (insert-yearly-islamic-diary-entry):
13606 * calendar/cal-iso.el (calendar-iso-read-args):
13607 * calendar/cal-mayan.el (calendar-string-to-mayan-long-count)
13608 (calendar-mayan-haab-to-string, calendar-mayan-tzolkin-to-string)
13609 (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
13610 (calendar-next-calendar-round-date)
13611 (calendar-mayan-long-count-common-era):
13612 * calendar/cal-menu.el (cal-menu-holiday-window-suffix)
13613 (cal-menu-x-popup-menu, calendar-mouse-holidays)
13614 (calendar-mouse-view-diary-entries, calendar-mouse-print-dates)
13615 (calendar-mouse-goto-date):
13616 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
13617 * calendar/holidays.el (holidays):
13618 * calendar/lunar.el (phases-of-moon, lunar-new-moon-on-or-after):
13619 * calendar/time-date.el (date-to-time, time-subtract, time-add)
13620 (safe-date-to-time): Doc fixes.
13621
13622 * calendar/cal-persia.el (persian-calendar-month-name-array)
13623 (persian-calendar-epoch): Make constants.
13624
13625 * calendar/cal-tex.el (calendar-tex): Move custom group here from
13626 calendar.el.
13627
13628 * calendar/cal-x.el (diary-frame-parameters)
13629 (calendar-frame-parameters, calendar-and-diary-frame-parameters)
13630 (calendar-after-frame-setup-hooks): Make defcustoms.
13631 (calendar-one-frame-setup, calendar-only-one-frame-setup)
13632 (calendar-two-frame-setup): Doc fix.
13633
13634 * calendar/cal-loaddefs.el: New file.
13635
13636 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
13637 * calendar/cal-french.el, calendar/cal-html.el:
13638 * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
13639 * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
13640 * calendar/cal-tex.el, calendar/cal-x.el:
13641 Unquote lambda functions. Add autoload cookies to functions formerly
13642 autoloaded in calendar.el. Set `generated-autoload-file' to
13643 "cal-loaddefs.el".
13644
13645 * calendar/calendar.el: Move many autoloads to separate file,
13646 cal-loaddefs.el. Move defcustoms to start and re-order.
13647 (calendar-month-name-array, calendar-starred-day): No need to
13648 declare for compiler.
13649 (cal-loaddefs): Require it.
13650 (appt, chinese-calendar, calendar-tex): Move custom groups to the
13651 appropriate file.
13652 (diary-entry-marker, calendar-today-marker, calendar-holiday-marker):
13653 Reverse logic.
13654 (diary-face, diary-file-name-prefix-function, diary-include-string)
13655 (diary-glob-file-regexp-prefix, diary-face-attrs)
13656 (diary-file-name-prefix, sexp-diary-entry-symbol)
13657 (print-diary-entries-hook, list-diary-entries-hook)
13658 (nongregorian-diary-listing-hook, mark-diary-entries-hook)
13659 (nongregorian-diary-marking-hook, diary-list-include-blanks):
13660 Move to diary-lib.
13661 (all-christian-calendar-holidays, all-islamic-calendar-holidays)
13662 (all-bahai-calendar-holidays): Doc fix.
13663 (calendar-insert-indented): Doc fix. Use when rather than if.
13664 (exit-calendar): Use mapc rather than mapcar.
13665 (calendar-cursor-to-date): Use zerop.
13666 (calendar-mark-ring): Add doc-string.
13667 (calendar-starred-day): Defvar it.
13668 (calendar-mode): Make calendar-starred-day local.
13669 (calendar-star-date): No need to make calendar-starred-day local.
13670
13671 * calendar/diary-lib.el: Move defcustoms to start.
13672 (diary-include-string, diary-list-include-blanks)
13673 (diary-glob-file-regexp-prefix, diary-face, diary-face-attrs)
13674 (diary-file-name-prefix, diary-file-name-prefix-function)
13675 (sexp-diary-entry-symbol, list-diary-entries-hook)
13676 (mark-diary-entries-hook, nongregorian-diary-listing-hook)
13677 (nongregorian-diary-marking-hook, print-diary-entries-hook):
13678 Move here from calendar.el.
13679 (diary-file-name-prefix-function): Use 'identity.
13680 (diary-face): Make it a defcustom, and mark as obsolete.
13681 (top-level): No need to require cal-hebrew, cal-islam when compiling.
13682 (calendar-hebrew-month-name-array-leap-year)
13683 (calendar-islamic-month-name-array, calendar-bahai-month-name-array):
13684 Define for compiler.
13685 (diary-font-lock-keywords): Use format rather than concat.
13686 Add bahai-diary-entry-symbol.
13687
13688 * calendar/cal-hebrew.el, calendar/holidays.el, calendar/lunar.el:
13689 * calendar/solar.el: Unquote lambda functions.
13690
13691 * calendar/solar.el (calendar-location-name, calendar-latitude)
13692 (calendar-longitude, solar-setup, solar-sin-degrees)
13693 (solar-cosine-degrees, solar-tangent-degrees, solar-xy-to-quadrant)
13694 (solar-degrees-to-quadrant, solar-atn2, solar-arccos)
13695 (solar-sunrise-and-sunset, solar-moment, solar-daylight)
13696 (solar-exact-local-noon, solar-julian-ut-centuries)
13697 (solar-ephemeris-time, solar-date-next-longitude)
13698 (solar-horizontal-coordinates, solar-equatorial-coordinates)
13699 (solar-ecliptic-coordinates, solar-data-list, solar-longitude)
13700 (solar-ephemeris-correction, solar-sidereal-time, solar-date-to-et)
13701 (sunrise-sunset, solar-seasons-data, solar-equinoxes/solstices):
13702 Doc fixes.
13703 (solar-horizontal-coordinates, solar-equatorial-coordinates)
13704 (solar-ecliptic-coordinates): Rename argument `for-sunrise-sunset'.
13705 (solar-ecliptic-coordinates): Use unless.
13706 (calendar-sunrise-sunset, diary-sunrise-sunset, diary-sabbath-candles):
13707 Use or.
13708
13709 * calendar/timeclock.el: Add doc-strings to all functions.
13710 (timeclock-workday, timeclock-in, timeclock-completing-read): Doc fixes.
13711 (timeclock-entry-list-length, timeclock-entry-list-projects)
13712 (timeclock-day-list-projects, timeclock-day-list): Use dolist.
13713
13714 * calendar/todo-mode.el: Remove un-needed eval-when-compile.
13715
13716 * textmodes/org.el (list-diary-entries-hook): Declare for compiler.
13717 (org-get-entries-from-diary): Require diary-lib.
13718
13719 2008-03-08 Juanma Barranquero <lekktu@gmail.com>
13720
13721 * info.el (bookmark-make-name-function, bookmark-get-bookmark-record):
13722 Pacify byte-compiler.
13723
13724 2008-03-07 Alan Mackenzie <acm@muc.de>
13725
13726 * progmodes/cc-engine.el (c-in-knr-argdecl): Limit number of
13727 paren/bracket pairs parsed, to solve performance problem.
13728
13729 2008-03-07 Bastien Guerry <bzg@altern.org>
13730
13731 * bookmark.el (bookmark-set): Don't check for
13732 `bookmark-make-name-function' since `bookmark-buffer-file-name'
13733 already takes care of this.
13734 (bookmark-buffer-name, bookmark-buffer-file-name):
13735 Remove Info-mode specific code.
13736
13737 * info.el (bookmark-get-info-node): Define this function in
13738 info.el, not in bookmark.el.
13739 (Info-mode): Set `bookmark-make-name-function' to
13740 `Info-bookmark-make-name' locally.
13741 (Info-bookmark-make-name): New function.
13742
13743 * bookmark.el (bookmark-make-name-function): New variable.
13744
13745 2008-03-07 Karl Fogel <kfogel@red-bean.com>
13746
13747 * bookmark.el (bookmark-set): Make `bookmark-make-record-function'
13748 buffer-local, not `bookmark-make-cell-function' (the old name).
13749
13750 2008-03-07 Tassilo Horn <tassilo@member.fsf.org>
13751
13752 * doc-view.el (doc-view-bookmark-make-record):
13753 * image-mode.el (image-bookmark-make-record):
13754 * info.el (Info-bookmark-make-record): Delete obsolete second arg.
13755
13756 2008-03-07 Jan Djärv <jan.h.d@swipnet.se>
13757
13758 * vc.el (vc-status-menu-map-filter): Return orig-binding if
13759 boundp 'vc-ignore-menu-filter.
13760 (vc-status-tool-bar-map): Make it defvar.
13761 (vc-status-mode): vc-status-tool-bar-map now variable.
13762 (vc-status-toggle-mark): toggle-mark-file => vc-status-toggle-mark-file.
13763
13764 2008-03-07 Karl Fogel <kfogel@red-bean.com>
13765
13766 Give a better name to part of the bookmark interface.
13767
13768 This was originally a much larger change, but halfway through I
13769 updated and discovered that Stefan Monnier had done the rest.
13770 It looks like he anticipated the new name too, because he used
13771 `the-record' instead of `the-cell' for some internal variable names.
13772
13773 * bookmark.el (bookmark-make-record-function): Was
13774 `bookmark-make-cell-function'.
13775 (bookmark-make, bookmark-send-annotation): Update for above.
13776 (bookmark-make-record-for-text-file):
13777 Was `bookmark-make-cell-for-text-file'. Fix doc string re 2008-03-07T05:00:18Z!monnier@iro.umontreal.ca.
13778
13779 * info.el: Adjust accordingly.
13780 (Info-bookmark-make-record): Was `Info-bookmark-make-cell'.
13781
13782 * image-mode.el: Adjust accordingly.
13783 (image-bookmark-make-record): Was `image-bookmark-make-cell'.
13784
13785 * doc-view.el: Adjust accordingly.
13786 (doc-view-bookmark-make-record): Was `doc-view-bookmark-make-cell'.
13787
13788 2008-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
13789
13790 * bookmark.el (bookmark-map, bookmark-read-annotation-mode-map):
13791 Move initialization into declaration.
13792 (bookmark-get-info-node, bookmark-set-info-node): Remove.
13793 (bookmark-make, bookmark-make-cell-for-text-file): Remove info-node arg.
13794 (bookmark-info-current-node): Remove.
13795 (bookmark-jump-noselect): Rename from bookmark-jump-internal.
13796 Add relocation fallback. Set bookmark-current-bookmark.
13797 (bookmark-default-handler): Rename from bookmark-jump-noselect.
13798 Remove relocation fallback. Don't set bookmark-current-bookmark.
13799 (bookmark-set): Let it be used even if there's no buffer-file-name
13800 as long as there is a bookmark-make-cell-function.
13801 * info.el (Info-bookmark-jump): Remove relocation fallback.
13802 Don't set bookmark-current-bookmark.
13803
13804 2008-03-07 Glenn Morris <rgm@gnu.org>
13805
13806 * calendar/appt.el (appt-issue-message)
13807 (appt-message-warning-time, appt-audible, appt-visible)
13808 (appt-msg-window, appt-display-mode-line, appt-display-duration)
13809 (appt-display-diary): Remove autoload cookies.
13810
13811 * calendar/cal-china.el, calendar/timeclock.el, calendar/todo-mode.el:
13812 Remove leading `*' from defcustom doc-strings.
13813
13814 * calendar/cal-dst.el (calendar-dst): New custom group.
13815 (calendar-daylight-savings-starts, calendar-daylight-savings-ends)
13816 (calendar-time-zone, calendar-daylight-time-offset)
13817 (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
13818 (calendar-daylight-savings-starts-time)
13819 (calendar-daylight-savings-ends-time): Convert from defvar to defcustom.
13820 (calendar-daylight-savings-starts, calendar-daylight-savings-ends):
13821 Move to start.
13822
13823 * calendar/cal-menu.el (holidays-in-diary-buffer): Declare for compiler.
13824
13825 * calendar/calendar.el (calendar-version): Use emacs-version and
13826 make it obsolete. Move to end.
13827 (calendar-offset, view-diary-entries-initially)
13828 (mark-diary-entries-in-calendar, calendar-remove-frame-by-deleting)
13829 (view-calendar-holidays-initially, all-hebrew-calendar-holidays)
13830 (all-christian-calendar-holidays, all-islamic-calendar-holidays)
13831 (all-bahai-calendar-holidays, calendar-load-hook)
13832 (initial-calendar-window-hook, today-visible-calendar-hook)
13833 (today-invisible-calendar-hook, calendar-move-hook)
13834 (diary-nonmarking-symbol, hebrew-diary-entry-symbol)
13835 (islamic-diary-entry-symbol, bahai-diary-entry-symbol)
13836 (diary-include-string, sexp-diary-entry-symbol)
13837 (abbreviated-calendar-year, american-date-diary-pattern)
13838 (european-date-diary-pattern, european-calendar-display-form)
13839 (american-calendar-display-form, print-diary-entries-hook)
13840 (list-diary-entries-hook, diary-hook, diary-display-hook)
13841 (nongregorian-diary-listing-hook, mark-diary-entries-hook)
13842 (nongregorian-diary-marking-hook, diary-list-include-blanks)
13843 (holidays-in-diary-buffer, general-holidays, oriental-holidays)
13844 (local-holidays, other-holidays, hebrew-holidays-1)
13845 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
13846 (hebrew-holidays, christian-holidays, islamic-holidays)
13847 (bahai-holidays, solar-holidays, calendar-setup)
13848 (calendar-week-start-day): Remove autoload cookies.
13849 (diary-glob-file-regexp-prefix): Doc fix.
13850 (calendar-goto-info-node): Use `info' rather than `Info-find-node'.
13851 (Info-find-emacs-command-nodes, Info-find-node): Remove declarations.
13852 (calendar-week-start-day, calendar-debug-sexp): Move to start.
13853
13854 * calendar/solar.el: Remove leading `*' from defcustom doc-strings.
13855 (calendar-time-display-form, calendar-latitude)
13856 (calendar-longitude, solar-equinoxes-solstices): Remove autoload
13857 cookies.
13858 (calendar-latitude, calendar-longitude): Move functions after
13859 variables.
13860 (diary-sabbath-candles-minutes): Move to start.
13861 (solar-setup): Use or rather than if.
13862 (solar-sin-degrees, solar-cosine-degrees, solar-tangent-degrees):
13863 Remove condition-case.
13864 (solar-atn2): Use zerop.
13865 (solar-equinoxes-solstices): Doc fix.
13866
13867 * mail/supercite.el: Remove leading `*' from defcustom doc-strings.
13868 (sc-mode-map-prefix): Doc fix. Make it a defcustom.
13869
13870 * textmodes/org.el (org-agenda-sunrise-sunset): Require solar.
13871 (calendar-longitude, calendar-latitude, calendar-location-name):
13872 Declare for compiler.
13873
13874 2008-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
13875
13876 * arc-mode.el (archive-ar-file-header-re): New const.
13877 (archive-ar-summarize, archive-ar-extract): New funs.
13878 (archive-find-type): Recognize ar archives.
13879
13880 * vc-bzr.el (vc-bzr-resolve-when-done, vc-bzr-find-file-hook):
13881 New functions.
13882
13883 * info.el (Info-bookmark-make-cell): Don't use the info-node argument.
13884
13885 2008-03-06 Lennart Borgman <lennart.borgman@gmail.com>
13886
13887 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
13888 Replace :enable (mark-active) with :enable mark-active.
13889
13890 2008-03-06 Juanma Barranquero <lekktu@gmail.com>
13891
13892 * vms-patch.el (make-legal-file-name): New obsolete alias.
13893 (make-valid-file-name): Rename from `make-legal-file-name'.
13894 (make-auto-save-file-name): Use it.
13895
13896 * calendar/calendar.el (calendar-date-is-legal-p): New obsolete alias.
13897 (calendar-date-is-valid-p): Rename from `calendar-date-is-legal-p'.
13898 (calendar-date-is-visible-p, mark-visible-calendar-date): Use it.
13899
13900 * textmodes/org.el (org-export-html-style): Doc fix.
13901 (org-get-legal-level): New obsolete alias.
13902 (org-get-valid-level): Rename from `org-get-legal-level'.
13903 (org-promote, org-demote, org-archive-subtree)
13904 (org-remember-handler, org-refile, org-put-clock-overlay): Use it.
13905
13906 2008-03-06 Jan Djärv <jan.h.d@swipnet.se>
13907
13908 * term/x-win.el (x-gtk-stock-map): Add bookmark_add.
13909
13910 * vc.el (vc-status-tool-bar-map, vc-status-toggle-mark-file)
13911 (vc-status-toggle-mark): New functions.
13912 (vc-status-mode): Set tool bar map.
13913
13914 2008-03-05 Chong Yidong <cyd@stupidchicken.com>
13915
13916 * emacs-lisp/lisp.el (parens-require-spaces): Doc fix.
13917 Reported by Drew Adams <drew.adams@oracle.com>.
13918
13919 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
13920
13921 * subr.el (read-quoted-char): Resolve modifiers of the character
13922 event.
13923
13924 * comint.el (comint-exec-1): Don't change the coding-system for
13925 decoding to dos-like EOL.
13926 (comint-carriage-motion): Fully rewrite.
13927
13928 2008-03-05 Juanma Barranquero <lekktu@gmail.com>
13929
13930 * epg.el (epg-context-include-certs): Reflow docstring.
13931 (epg-start-sign-keys, epg-sign-keys, epg-context-armor)
13932 (epg-context-signers, epg-context-sig-notations, epg-context-set-armor)
13933 (epg-context-set-signers, epg-context-set-sig-notations)
13934 (epg-make-import-status, epg-make-import-result)
13935 (epg-start-delete-keys): Fix typos in docstrings.
13936 (epg-start-sign-keys, epg-sign-keys):
13937 Fix typos in obsolescence declarations.
13938
13939 * iswitchb.el: Don't check for `cadr' and `last'.
13940 (iswitchb-define-mode-map, iswitchb-default-keybindings):
13941 Add obsolescence declaration and remove redundant info from docstring.
13942 (iswitchb-set-common-completion, iswitchb-set-matches)
13943 (iswitchb-get-matched-buffers, iswitchb-visit-buffer): Use `let'.
13944 (recentf-list, most-len, most-is-exact):
13945 Don't wrap defvars within `eval-when-compile'.
13946
13947 2008-03-05 Glenn Morris <rgm@gnu.org>
13948
13949 * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
13950 * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
13951 * ediff-diff.el, ediff-help.el, ediff-hook.el, ediff-init.el:
13952 * ediff-mult.el, ediff-util.el, ediff-wind.el: Expand all
13953 ediff-cond-compile-for-xemacs-or-emacs calls to a featurep test.
13954
13955 * ediff-hook.el (ediff-window-setup-function): Don't autoload
13956 declaration for compiler.
13957 (ediff-xemacs-init-menus): Use when rather than if.
13958
13959 * ediff-init.el (top-level, ediff-frame-iconified-p): Simplify
13960 if+and to just and.
13961 (ediff-read-event, ediff-overlayp, ediff-make-overlay)
13962 (ediff-delete-overlay): Move the XEmacs test inside the definition.
13963
13964 * ediff-mult.el (ediff-get-meta-info): Use or and unless rather than if.
13965
13966 * ediff-util.el (ediff-kill-bottom-toolbar): Place (ediff-use-toolbar-p)
13967 test inside XEmacs test.
13968 (ediff-make-bottom-toolbar): Place whole cond inside XEmacs test,
13969 since it was doing nothing on Emacs.
13970 (ediff-make-bullet-proof-overlay): Use when rather than if.
13971
13972 * ediff-wind.el (ediff-select-lowest-window): Use when rather than if.
13973 (ediff-setup-control-frame): Remove
13974 ediff-cond-compile-for-xemacs-or-emacs, since it is already inside
13975 a (featurep 'xemacs) test.
13976
13977 2008-03-05 Jay Belanger <jay.p.belanger@gmail.com>
13978
13979 * calc/calc-ext.el (calc-extended-command-history): New variable.
13980 (calc-execute-extended-command): Use `calc-extended-command-history'.
13981
13982 2008-03-05 Dan Nicolaescu <dann@ics.uci.edu>
13983
13984 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
13985 (standard-mode-line-position): Add mouse-face.
13986
13987 * progmodes/compile.el (compilation-menu-map, compilation-mode-map):
13988 * progmodes/grep.el (grep-mode-map): Add :help.
13989
13990 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Define and
13991 initialize in one step. Add :help. Use :enable to activate menu
13992 items. Show the key binding for edebug-defun.
13993 (lisp-interaction-mode-map): Add a menu.
13994
13995 * term.el (term-mode-map): Define and initialize in one step.
13996
13997 * ediff-init.el (ediff-color-display-p): Simplify.
13998 (Xor): Remove unused function.
13999 (ediff-with-syntax-table): Simplify for Emacs.
14000
14001 * ediff-hook.el (menu-bar-ediff-menu): Don't depend on the
14002 menu-bar being loaded, it always is.
14003
14004 2008-03-05 Glenn Morris <rgm@gnu.org>
14005
14006 * textmodes/tex-mode.el (tex-mode): Suppress warning about
14007 multiple definitions when compiling.
14008
14009 2008-03-04 Alan Mackenzie <acm@muc.de>
14010
14011 * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix coding bug.
14012
14013 * progmodes/cc-langs.el (c-before-font-lock-function): Fix bug in
14014 doc-string, "c-old-LEN" -> "c-old-END".
14015
14016 2008-03-04 Jason Rumney <jasonr@gnu.org>
14017
14018 * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add dublin core
14019 namespaces.
14020
14021 2008-03-04 Glenn Morris <rgm@gnu.org>
14022
14023 * textmodes/tex-mode.el (tex-cmd-bibtex-args): Add :version and :group.
14024
14025 * ediff-init.el (ediff-clear-fine-diff-vector): Use mapc rather
14026 than mapcar.
14027
14028 2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
14029
14030 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
14031 (byte-compile-nilconstp): Can't use recursion in a defsubst.
14032
14033 * textmodes/tex-mode.el (latex-mode): Remove % from paragraph-separate
14034 so that M-q can fill comments.
14035 (tex-executable-exists-p, tex-compile): Extend with special syntax for
14036 commands implemented in elisp.
14037 (tex-compile-commands): Add an entry to use doc-view for pdf files.
14038 (tex-format-cmd): New function.
14039 (tex-compile): Use it to let the user specify default arguments.
14040 (tex-cmd-bibtex-args): New var.
14041 (tex-cmd-doc-view): New function.
14042
14043 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
14044
14045 * faces.el (face-spec-set): Fix typos in docstring.
14046
14047 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
14048
14049 * bindings.el (mode-line-column-line-number-mode-map): New variable.
14050 (standard-mode-line-position): Use it to add a menu for toggling
14051 column number and line number display.
14052
14053 2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
14054
14055 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
14056 Remove optimization that was working around the form-code-walker bug.
14057
14058 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
14059 Walk into the body of lambdas after byte-compile-unfold-lambda.
14060
14061 2008-03-03 Glenn Morris <rgm@gnu.org>
14062
14063 * emulation/viper-util.el (viper-frame-value): Prefer buffer-local
14064 value, if set, over frame value.
14065
14066 * simple.el (transient-mark-mode): Don't turn on by default.
14067
14068 * net/tls.el (open-tls-stream): Restore the 2007-11-04 change
14069 accidentally removed by the 2007-12-05 merge from Gnus.
14070
14071 2008-03-02 Dan Nicolaescu <dann@ics.uci.edu>
14072
14073 * progmodes/compile.el (compilation-menu-map): Add menu entries
14074 for useful options.
14075
14076 2008-03-01 Dan Nicolaescu <dann@ics.uci.edu>
14077 Glenn Morris <rgm@gnu.org>
14078
14079 * emacs-lisp/bytecomp.el (byte-recompile-directory)
14080 (byte-compile-file, batch-byte-compile, batch-byte-compile-file):
14081 Give a `bytecomp-' prefix to local variables with common names.
14082
14083 2008-03-01 Glenn Morris <rgm@gnu.org>
14084
14085 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
14086 Restore code commented out 2007-11-10.
14087
14088 * emulation/edt.el (zmacs-region-stays): Define for compiler once only.
14089
14090 * emulation/viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
14091 Delete macro.
14092 * emulation/viper-cmd.el, emulation/viper-ex.el:
14093 * emulation/viper-init.el, emulation/viper-keym.el:
14094 * emulation/viper-mous.el, emulation/viper-util.el:
14095 * emulation/viper.el:
14096 Expand all viper-cond-compile-for-xemacs-or-emacs calls to a
14097 featurep test.
14098
14099 Replace obsolete frame-local variables with frame-parameters.
14100 * emulation/viper-init.el (viper-replace-overlay-cursor-color)
14101 (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
14102 (viper-vi-state-cursor-color): Only call make-variable-frame-local
14103 on XEmacs.
14104 * emulation/viper-util.el (viper-frame-value): New macro.
14105 * emulation/viper-cmd.el (viper-insert-state-post-command-sentinel)
14106 (viper-R-state-post-command-sentinel)
14107 (viper-replace-state-post-command-sentinel)
14108 (viper-change-state-to-insert, viper-change-state-to-emacs):
14109 * emulation/viper-util.el (viper-set-cursor-color-according-to-state)
14110 (viper-save-cursor-color, viper-get-saved-cursor-color-in-replace-mode)
14111 (viper-get-saved-cursor-color-in-insert-mode)
14112 (viper-get-saved-cursor-color-in-emacs-mode, viper-set-replace-overlay):
14113 Use viper-frame-value for viper-replace-overlay-cursor-color,
14114 viper-emacs-state-cursor-color, viper-insert-state-cursor-color, and
14115 viper-vi-state-cursor-color values.
14116
14117 * emulation/viper-cmd.el (zmacs-region-stays):
14118 * emulation/viper-util.el (zmacs-region-stays): No need to define
14119 for compiler.
14120
14121 * emulation/viper-keym.el (viper-add-keymap): Use mapc rather than
14122 mapcar on Emacs.
14123
14124 * emulation/viper-mous.el (viper-counting-clicks-p): Only define
14125 on XEmacs.
14126
14127 * emulation/viper-util.el (viper-set-minibuffer-overlay): Use when
14128 rather than if.
14129
14130 2008-03-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14131
14132 * whitespace.el: New version 9.3. As the glyph code generation was
14133 fixed, it is possible now to use character code above ?\x1FFFF in the
14134 display table. Fix `whitespace-indentation-regexp' to not include an
14135 extra ending character. Reported by Michael Welsh Duggan
14136 <mwd@cert.org>. Added hook actions when buffer is written or killed as
14137 the original whitespace package had. Suggested by Eric Cooper
14138 <ecc@cmu.edu>. Doc fix.
14139 (whitespace-action): New option.
14140 (whitespace-display-mappings): Changed default newline visualization to
14141 display downwards arrow, as the glyph code generation was fixed.
14142 (whitespace-unload-function): Assure that all local whitespace mode is
14143 turned off.
14144 (whitespace-global-modes): Fix type customization.
14145 (whitespace-mode, global-whitespace-mode, whitespace-cleanup-region)
14146 (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
14147 (whitespace-turn-off, whitespace-color-on, whitespace-display-char-on):
14148 Fix code.
14149 (whitespace-buffer): Command removed.
14150 (whitespace-trailing-regexp, whitespace-mark-x)
14151 (whitespace-display-window, whitespace-action-when-on)
14152 (whitespace-add-local-hook, whitespace-remove-local-hook)
14153 (whitespace-write-file-hook, whitespace-kill-buffer-hook)
14154 (whitespace-action): New funs.
14155 (whitespace-report-list, whitespace-report-text)
14156 (whitespace-report-buffer-name): New consts.
14157 (whitespace-report, whitespace-report-region): New commands.
14158
14159 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
14160
14161 * disp-table.el (make-glyph-code): Don't test the result of
14162 `face-id', which already signals an error for invalid faces.
14163 (glyph-face): Simplify.
14164
14165 * desktop.el (desktop-read): Set `desktop-dirname' to nil before
14166 running `desktop-not-loaded-hook' to allow modifying it.
14167 Don't show warning message if `desktop-dirname' was modified.
14168
14169 2008-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
14170
14171 * diff-mode.el (diff-sanity-check-hunk): Only accept an empty line if
14172 we still expect more lines.
14173
14174 * textmodes/fill.el (fill-comment-paragraph): Don't try to do
14175 comment-paragraph filling if the commark doesn't match
14176 comment-start-skip.
14177
14178 2008-03-01 Daiki Ueno <ueno@unixuser.org>
14179
14180 * international/utf-7.el (utf-7-encode): Never skip the trailing - for
14181 the `imap' variant.
14182
14183 2008-03-01 Jason Rumney <jasonr@gnu.org>
14184
14185 * files.el (make-auto-save-file-name): Encode more characters in
14186 non-file buffer names. Use url-encoding.
14187
14188 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
14189
14190 * net/net-utils.el (ftp-program): Fix typo in docstring.
14191 (ifconfig-program-options, netstat-program-options)
14192 (arp-program-options, route-program-options, nslookup-program-options)
14193 (ftp-program-options, smbclient-program-options)
14194 (dns-lookup-program-options, arp, route): Doc fixes.
14195
14196 * progmodes/gdb-ui.el (gdb-pc-address, gdb-source-file-list)
14197 (gdb-cpp-define-alist-program, gdb-mouse-jump, gdb-get-buffer-create)
14198 (gdb-set-gud-minor-mode-existing-buffers-1, gdb-debug-log):
14199 Fix typos in docstrings.
14200 (gdb-pending-triggers): Reflow docstring.
14201 (gdb, gdb-init-1): Fix typos in docstrings of gud-def definitions.
14202
14203 2008-03-01 Alan Mackenzie <acm@muc.de>
14204
14205 * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix a bug on
14206 typing "#" at EOB.
14207
14208 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
14209
14210 * emulation/cua-base.el (cua-remap-control-z): Fix typo in docstring.
14211
14212 2008-02-29 Kim F. Storm <storm@cua.dk>
14213
14214 * emulation/cua-base.el (cua-remap-control-v)
14215 (cua-remap-control-z): New defcustoms.
14216 (cua-mode): Add them to set-after property.
14217 (cua--init-keymaps): Use them.
14218 Add C-x/C-c home, end, next, and prior to cua--prefix-repeat-keymap.
14219
14220 * help.el (view-emacs-todo): Rename from view-todo.
14221 (describe-gnu-project): Rename from describe-project. Users changed.
14222 (view-help-file): New helper function.
14223 (describe-distribution, describe-copying, describe-gnu-project)
14224 (view-todo, view-order-manuals, view-emacs-problems): Use it.
14225 (view-emacs-debugging, view-external-packages): New commands.
14226 (help-map): Move describe-distribution to C-h C-o (ordering).
14227 Move view-emacs-problems to C-h C-p (problems).
14228 Bind view-emacs-debugging to C-h C-d (debugging).
14229 Bind view-external-packages to C-h C-e (extras).
14230 (help-for-help-internal): Cleanup and align descriptions.
14231 Remove command names to reduce clutter.
14232
14233 2008-02-29 Nick Roberts <nickrob@snap.net.nz>
14234
14235 * vc.el (vc-set-mode-line-busy-indicator): Use shorter message
14236 and quieter face (not a warning).
14237
14238 2008-02-29 Dan Nicolaescu <dann@ics.uci.edu>
14239
14240 * vc.el (vc-status-crt-marked): New variable.
14241 (vc-status-mode): Make it local.
14242 (vc-status-refresh): Use it to save the marked files.
14243 (vc-update-vc-status-buffer): Use it to restore the marked files.
14244
14245 * vc-svn.el (vc-svn-after-dir-status):
14246 * vc-hg.el (vc-hg-after-dir-status): Clean up the temporary buffer.
14247
14248 2008-02-29 Glenn Morris <rgm@gnu.org>
14249
14250 * allout.el (allout-topic-encryption-bullet)
14251 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling)
14252 (allout-encrypt-unencrypted-on-saves): Change defcustom :version
14253 from 22.0 to 22.1.
14254
14255 * net/imap.el (imap-ping-server):
14256 * net/tls.el (tls-checktrust, tls-untrusted, tls-hostmismatch):
14257 Change defcustom :version from 23.0 to 23.1.
14258
14259 2008-02-29 Juanma Barranquero <lekktu@gmail.com>
14260
14261 * desktop.el (desktop-save): Save the buffer name if the
14262 uniquified base name is empty.
14263
14264 2008-02-29 Nick Roberts <nickrob@snap.net.nz>
14265
14266 * progmodes/gdb-ui.el (gdb-info-stack-custom): Apply function-name-face
14267 correctly when user has "set print address off".
14268
14269 2008-02-28 Juanma Barranquero <lekktu@gmail.com>
14270
14271 * cus-edit.el (custom-mode, custom-mode-hook): Use 23.1 as
14272 version number of the next major Emacs release, not 23.0.
14273
14274 * longlines.el (longlines-unload-function): New function.
14275
14276 2008-02-28 Juri Linkov <juri@jurta.org>
14277
14278 * startup.el (normal-splash-screen): Add argument `concise'.
14279 Remove unused binding `prev-buffer'. Let-bind `splash-buffer'
14280 to the created buffer. If `concise' is non-nil, call
14281 `display-buffer', otherwise `switch-to-buffer'. Doc fix.
14282 (display-startup-screen): Add argument `concise' to the call to
14283 `normal-splash-screen'.
14284
14285 2008-02-28 Kim F. Storm <storm@cua.dk>
14286
14287 * startup.el (startup-echo-area-message): Check for about-emacs.
14288
14289 2008-02-28 Juri Linkov <juri@jurta.org>
14290
14291 * startup.el: Always add initial message to *scratch* buffer if
14292 `initial-scratch-message' is non-nil regardless of the value of
14293 `inhibit-startup-screen'.
14294 (inhibit-startup-screen, initial-scratch-message): Doc fix.
14295 (command-line-1): Move code that inserts `initial-scratch-message'
14296 up before the if-form that checks for `inhibit-startup-screen'.
14297 Suggested by Jonathan Rockway <jon@jrock.us>.
14298
14299 2008-02-28 Juri Linkov <juri@jurta.org>
14300
14301 * cus-edit.el (custom-mode-map, custom-mode-link-map):
14302 Rename `custom-mode' to `Custom-mode' in docstrings.
14303 (custom-buffer-create-internal, customize-browse):
14304 Rename `custom-mode' to `Custom-mode'.
14305 (custom-mode-hook): Rename to `Custom-mode-hook'.
14306 (Custom-mode-hook): Renamed from `custom-mode-hook'.
14307 (custom-mode): Rename to `Custom-mode'.
14308 (Custom-mode): Renamed from `custom-mode'. Doc fix.
14309 (custom-mode): Add backward-compatible non-interactive variant of
14310 `Custom-mode' that simply calls `Custom-mode'. Mark it obsoleted.
14311 (custom-mode-hook): Mark it as obsolete alias of `Custom-mode-hook'.
14312
14313 * info-look.el: Rename `custom-mode' to `Custom-mode'.
14314
14315 * emulation/viper.el (viper-emacs-state-mode-list):
14316 Rename `custom-mode' to `Custom-mode'.
14317
14318 * menu-bar.el (menu-bar-search-menu, menu-bar-replace-menu):
14319 Capitalize "Tagged Files".
14320 (minibuffer-local-map): Add menu items for next/previous
14321 history elements and isearch history forward/backward.
14322
14323 * progmodes/hideshow.el (hs-minor-mode-menu): Compare
14324 `hs-isearch-open' with t instead of `comment' in :selected
14325 for "Code and Comment blocks" menu item.
14326
14327 2008-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
14328
14329 * uniquify.el (uniquify-buffer-base-name): Undo last change.
14330 Should be done in desktop.el instead.
14331
14332 2008-02-28 Glenn Morris <rgm@gnu.org>
14333
14334 * autoinsert.el (auto-insert-alist): Update to FDL 1.2.
14335
14336 * emacs-lisp/byte-run.el (make-obsolete): Doc fix.
14337
14338 * mail/emacsbug.el: Remove leading `*' from defcustom doc-strings.
14339 (Info-menu, Info-goto-node): Remove declarations.
14340 (report-emacs-bug-info): Use info rather than Info-goto-node.
14341
14342 * progmodes/idlwave.el (Info-goto-node): Remove declaration.
14343 (idlwave-convert-xml-system-routine-info): Don't require xml.
14344 (idlwave-show-commentary, idlwave-shell-show-commentary):
14345 Don't require finder.
14346 (idlwave-info): Don't require info. Use info rather than
14347 Info-goto-node.
14348
14349 * textmodes/org.el (Info-goto-node): Remove declaration.
14350 (org-info): Use info rather than Info-goto-node.
14351
14352 * textmodes/reftex.el (reftex-show-commentary): Don't require finder.
14353 (reftex-info): Don't require info. Use info rather than Info-goto-node.
14354
14355 2008-02-28 Dan Nicolaescu <dann@ics.uci.edu>
14356
14357 * progmodes/hideshow.el (hs-minor-mode-menu): Add some options to
14358 the menu.
14359
14360 * vc.el (vc-deduce-fileset, vc-next-action, vc-start-entry)
14361 (vc-finish-logentry): Check for vc-status-mode, not only for
14362 vc-dired-mode.
14363
14364 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
14365
14366 * isearch.el (isearch-printing-char): Don't check
14367 keyboard-coding-system.
14368 Call isearch-process-search-multibyte-characters only when
14369 current-input-method is non-nil.
14370
14371 2008-02-27 Kim F. Storm <storm@cua.dk>
14372
14373 * disp-table.el (make-glyph-code): Encode as cons if face id > 63.
14374 (glyph-char, glyph-face): Handle cons encoding.
14375
14376 2008-02-27 Juanma Barranquero <lekktu@gmail.com>
14377
14378 * uniquify.el (uniquify-buffer-base-name): If the base name is an
14379 empty string, return nil to allow the caller to default to the
14380 buffer name. Reported by Martin Fischer <parozusa@web.de>.
14381
14382 * tool-bar.el (tool-bar-setup): Doc fix.
14383
14384 * mail/supercite.el (sc-describe):
14385 Fix typos in obsolescence declaration.
14386
14387 2008-02-27 Glenn Morris <rgm@gnu.org>
14388
14389 * autoinsert.el (auto-insert-alist): Change permission text to
14390 match FSF's GPLv3 form.
14391
14392 * mail/supercite.el (sc-cite-original): Doc fix.
14393 (sc-version): Make obsolete.
14394 (sc-describe): Show the SC info page. Make obsolete.
14395
14396 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
14397
14398 * simple.el (set-mark-command): Deactivate mark on second C-SPC C-SPC
14399 when using transient-mark-mode.
14400 (default-indicate-unused-lines): Remove unused var.
14401
14402 2008-02-26 Jan Djärv <jan.h.d@swipnet.se>
14403
14404 * progmodes/grep.el (grep-mode-tool-bar-map): Change place on next
14405 and previous.
14406
14407 * progmodes/compile.el (compilation-mode-tool-bar-map): The same.
14408
14409 2008-02-26 Glenn Morris <rgm@gnu.org>
14410
14411 * net/net-utils.el (top-level): Don't require comint when compiling.
14412 (nslookup-font-lock-keywords): Don't require font-lock.
14413 Use font-lock faces rather than variables.
14414 (nslookup, ftp, smbclient, network-service-connection):
14415 Don't require comint.
14416 (comint-prompt-regexp, comint-input-autoexpand)
14417 (comint-input-ring): Declare for compiler.
14418 (comint-mode, ffap-string-at-point, comint-exec): Autoload.
14419 (dns-lookup-host): Don't require ffap. Remove `with-no-warnings'.
14420
14421 * ibuffer.el (ibuffer-do-toggle-read-only): Don't use `iff' in
14422 doc-string.
14423
14424 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
14425
14426 * doc-view.el (doc-view-current-page): Add a `win' argument.
14427
14428 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
14429
14430 * doc-view.el (doc-view-conversion-buffer): Give it an internal name.
14431 Demote it to plain defvar.
14432 (doc-view-conversion-refresh-interval): Reduce interval.
14433 (doc-view-goto-page): Allow moving to pages not yet rendered.
14434 (doc-view-goto-page): Construct a file name rather than extracting it
14435 from doc-view-current-files.
14436 (doc-view-kill-proc): Ignore errors from kill-process.
14437 (doc-view-pdf/ps->png-sentinel): Die gracefully if the buffer is dead.
14438 (doc-view-insert-image): Use appropriate text if the page hasn't been
14439 rendered yet. Adjust scrolling so the text is displayed.
14440 (doc-view-display): Detect not just that a page is available, but also
14441 that it wasn't available before, so as to avoid refreshing all pages
14442 repeatedly.
14443 (doc-view-mode): Make doc-view-cache-directory if needed.
14444
14445 2008-02-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14446
14447 * ibuffer.el (ibuffer-do-toggle-read-only): New optional arg as in
14448 toggle-read-only.
14449
14450 * textmodes/bibtex.el (bibtex-format-entry): Handle error message
14451 refering to a missing required field with the OPT prefix.
14452 Make unwindform more robust.
14453
14454 * textmodes/bibtex.el: Remove support for hideshow minor mode as
14455 it duplicates the bibtex support in progmodes/hideshow.el.
14456 * progmodes/hideshow.el (hs-special-modes-alist): Allow bibtex
14457 entries that do not start at the beginning of a line.
14458
14459 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
14460
14461 * files.el (shell-quote-wildcard-pattern): Quote ' and " as well.
14462
14463 2008-02-25 Robert J. Chassell <bob@rattlesnake.com>
14464
14465 * help-fns.el (describe-variable): Add phrases about
14466 initialization file with and without customization;
14467 use new button type help-info-variable.
14468
14469 * help-mode.el (help-info-variable):
14470 New button able to read Info files for help-fns.el.
14471
14472 2008-02-25 Jan Djärv <jan.h.d@swipnet.se>
14473
14474 * progmodes/grep.el (grep-mode-tool-bar-map): New variable.
14475 (grep-mode): Use grep-mode-tool-bar-map.
14476
14477 * progmodes/compile.el (tool-bar): Require tool-bar.
14478 (compilation-mode-tool-bar-map): New variable.
14479 (compilation-mode): Use compilation-mode-tool-bar-map.
14480
14481 * term/x-win.el (x-gtk-stock-map): Add cancel. Remove extensions.
14482
14483 2008-02-25 Glenn Morris <rgm@gnu.org>
14484
14485 * vc-sccs.el (vc-sccs-diff): Fix setting of oldvers and newvers.
14486
14487 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
14488
14489 * diff-mode.el (diff-file-junk-re): New const.
14490 (diff-beginning-of-file-and-junk): Use it.
14491 (diff-file-kill): Make sure we were really inside a file diff.
14492
14493 * diff-mode.el: Make it more robust in the presence of empty context
14494 lines in unified hunks.
14495 (diff-valid-unified-empty-line): New var.
14496 (diff-unified->context, diff-sanity-check-hunk): Obey it.
14497 (diff-end-of-hunk): Obey it. New arg `donttrustheader'.
14498 (diff-fixup-modifs, diff-post-command-hook): Use this new arg.
14499 (diff-hunk-header-re-unified): New const.
14500 (diff-font-lock-keywords, diff-hunk-header-re, diff-split-hunk)
14501 (diff-fixup-modifs, diff-unified->context, diff-next-complex-hunk)
14502 (diff-sanity-check-hunk): Use it.
14503
14504 * diff-mode.el (diff-beginning-of-file-and-junk): If we're on the
14505 Index: line, don't search backward for the previous one.
14506
14507 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
14508
14509 * international/fontset.el (setup-default-fontset): Add non-OTF
14510 lao font for lao script.
14511
14512 * language/tibetan.el: Register tibetan-composition-function in
14513 composition-function-table.
14514
14515 * language/tibet-util.el (tibetan-composition-function):
14516 Adjust for the new calling way (argument changed). Try font-shape-text
14517 if possible.
14518
14519 * language/lao.el: Register lao-composition-function in
14520 composition-function-table.
14521
14522 * language/lao-util.el (lao-composition-function): Adjust for the new
14523 calling way (argument changed). Try font-shape-text if possible.
14524
14525 2008-02-25 Jason Rumney <jasonr@gnu.org>
14526
14527 * files.el (file-name-invalid-regexp): Fix octal/decimal confusion.
14528
14529 2008-02-25 Juri Linkov <juri@jurta.org>
14530
14531 * isearch.el (isearch-fail): Use "RosyBrown1" for a light
14532 background, "red4" for a dark background, "red" for 16 and
14533 8 colors, "grey" for grayscale, and inverse video otherwise.
14534 Add :version tag.
14535 (isearch-message): Keep the original isearch-message intact, and
14536 add text properties to it where necessary. Add `isearch-error' to
14537 the condition that checks if isearch is unsuccessful.
14538
14539 2008-02-24 Juri Linkov <juri@jurta.org>
14540
14541 * progmodes/compile.el (compilation-handle-exit):
14542 Use compilation-error face instead of font-lock-warning-face.
14543 Display the same message in the minibuffer as is inserted
14544 at the end of the compilation buffer.
14545
14546 2008-02-24 Glenn Morris <rgm@gnu.org>
14547
14548 * vc-cvs.el (vc-cvs-register): Fix registering of directories in
14549 multiple file case.
14550
14551 * vc-mcvs.el (vc-mcvs-register): Fix let-binding (for use of `file').
14552
14553 * vc-rcs.el (vc-rcs-register): Fix treatment of directories in
14554 multiple file case. Use a single `let' rather than two.
14555
14556 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
14557
14558 * progmodes/compile.el (compilation-start): Specify a face for
14559 mode-line-process.
14560 (compilation-handle-exit): Specify a face and a tooltip for
14561 mode-line-process.
14562
14563 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
14564
14565 * hilit-chg.el: Remove spurious * in defcustom docstrings.
14566 (hilit-chg-make-ov): Simplify.
14567 (hilit-chg-fixup): Use remove-overlays.
14568 (hilit-chg-set-face-on-change): Remove redundant call to
14569 `remove-text-properties'.
14570
14571 * dired.el (dired-mark-prompt): Don't count/display the t element.
14572 Reported by Carsten Blaauw <it-media.blaauw@daimler.com>.
14573
14574 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
14575
14576 * progmodes/verilog-mode.el (eval-when-compile): Don't define
14577 add-submenu.
14578 (verilog-xemacs-menu): Add :keys for C-M-a, C-M-e and C-M-h.
14579 Remove. Move contents to the only use ...
14580 (verilog-menu): ... here.
14581 (verilog-statement-menu): Remove. Move contents to the only use ...
14582 (verilog-stmt-menu): ... here.
14583 (verilog-mark-defun): Simply call mark-defun for emacs.
14584 (occur-pos-list): Declare for byte compiler.
14585 (mode-popup-menu): Don't defvar.
14586 (verilog-add-statement-menu): Remove.
14587 (verilog-mode-hook): Don't add verilog-add-statement-menu.
14588 (verilog-mode): Call easy-menu-add and set mode-popup-menu for XEmacs.
14589
14590 2008-02-24 Michael McNamara <mac@mail.brushroad.com>
14591
14592 * progmodes/verilog-mode.el (verilog-xemacs-menu): Remove XEmacs
14593 conditional.
14594 (verilog-font-grouping-keywords-face): Make the begin..end
14595 keywords standout more than other verilog keywords.
14596 (verilog-type-font-keywords): Move the begin..end out of this list
14597 to facilitate making them to (potentially) stand out more.
14598 (verilog-backward-token): Fix indent of bare always{_*}?, initial,
14599 function & task blocks.
14600 (verilog-behavioral-block-beg-re): Fix indent of bare always{_*}?,
14601 initial, function & task blocks.
14602 (verilog-forward-sexp): Handle the new "disable fork" statement of
14603 IEEE-1800 Verilog.
14604 (verilog-beg-block-re-ordered): Handle the new "disable fork"
14605 statement of IEEE-1800 Verilog.
14606 (verilog-calc-1): Handle the new "disable fork" statement of
14607 IEEE-1800 Verilog.
14608 (verilog-disable-fork-re): Add const to help handle the new
14609 "disable fork" statement of IEEE-1800 Verilog.
14610 (verilog-declaration-core-re): Add port directions by themselves,
14611 with no qualification, as base item of a declaration.
14612 (verilog-pretty-declarations): Add new flag to ask it to refrain
14613 from printing to the message buffer.
14614 (verilog-pretty-expr): Add a QUIET flag to ask it to refrain from
14615 printing to the message buffer. Improve handling of the many
14616 types of expression line up.
14617 (verilog-just-one-space): Remove printing of an empty message.
14618 (verilog-get-lineup-indent): Rework to support the better handling
14619 of expression lineup for verilog-pretty-expr.
14620 (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
14621
14622 2008-02-24 Alan Mackenzie <acm@muc.de>
14623
14624 * progmodes/cc-mode.el (c-extend-region-for-CPP): Bug fix from
14625 yesterday's commit.
14626
14627 2008-02-24 Nick Roberts <nickrob@snap.net.nz>
14628
14629 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint): Fall back
14630 to mouse-set-point in buffers that aren't associated with files.
14631
14632 * progmodes/gud.el: Rename menu item to "Show GUD tooltips".
14633
14634 2008-02-24 Alan Mackenzie <acm@muc.de>
14635
14636 Set of changes so that "obtrusive" syntactic elements in a
14637 C/C++/ObjC preprocessor line (e.g. an unbalanced string quote or
14638 unmatched paren) don't interact syntactically with stuff outside
14639 the CPP line.
14640
14641 * progmodes/cc-awk.el (c-awk-beyond-logical-line, c-awk-old-ByLL):
14642 Replace c-awk-end-of-logical-line and c-awk-old-EoLL to solve an
14643 off-by-one bug.
14644 (c-awk-record-region-clear-NL): Replaces c-awk-before-change, with
14645 a bit of refactoring.
14646 (c-awk-extend-and-syntax-tablify-region): Takes some of the
14647 functionality of c-awk-advise-fl-for-awk-region, which has been
14648 refactored away.
14649
14650 * progmodes/cc-defs.el (c-clear-char-property-with-value-function)
14651 (c-clear-char-property-with-value): New function and macro which
14652 remove text-properties `equal' to a supplied value.
14653
14654 * progmodes/cc-engine.el: Comment about text properties amended.
14655
14656 * progmodes/cc-fonts.el (c-cpp-matchers): Make it put regexp
14657 parens around "error\\|warning".
14658
14659 * progmodes/cc-langs.el (c-get-state-before-change-function)
14660 (c-before-font-lock-function, c-anchored-cpp-prefix):
14661 New language variables.
14662 (c-cpp-message-directives): Handle "#warning" in C, C++ and ObjC.
14663
14664 * progmodes/cc-mode.el (c-basic-common-init): C and ObjC now use
14665 syntax-table text properties.
14666 (c-common-init): Call language specific before/after-change
14667 functions at mode initialisation.
14668 (c-new-BEG, c-new-END, c-old-BOM, c-old-EOM): New variables.
14669 (c-extend-region-for-CPP, c-neutralize-CPP-line)
14670 (c-neutralize-syntax-in-CPP): New functions.
14671 (c-before-change, c-after-change): Call the new language specific
14672 change functions defined in cc-langs.el.
14673 (c-advise-fl-for-region): New macro.
14674 (awk-mode): Remove AWK specific stuff which has been refactored
14675 into language independent stuff.
14676
14677 2008-02-24 Nick Roberts <nickrob@snap.net.nz>
14678
14679 * progmodes/gdb-ui.el (gdba): Recreate as an alias for gdb.
14680 (gdb): (Re)set gdb-flush-pending-output to nil here...
14681 (gdb-init-1): ...instead of here (before gdb-prompt).
14682
14683 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
14684
14685 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
14686 Recognize ''' just like any other char-constant.
14687
14688 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
14689
14690 * vc-hooks.el (vc-find-root): Remove initial loop because it's not
14691 careful enough. Detect the uid-change all within the main loop.
14692
14693 2008-02-24 Stefan Monnier <monnier@pastel.home>
14694
14695 * textmodes/sgml-mode.el (sgml-mode): Fix comment syntax.
14696
14697 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
14698
14699 * hilit-chg.el (highlight-save-buffer-state): New macro.
14700 (highlight-save-buffer-state, hilit-chg-set-face-on-change)
14701 (hilit-chg-clear): Use it to preserve the modified-p flag.
14702 (highlight-changes-rotate-faces): Don't mess with the undo-list.
14703
14704 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
14705
14706 * font-lock.el (font-lock-set-defaults): Unset previously set variables
14707 when needed.
14708
14709 2008-02-24 Ævar Arnfjörð Bjarmason <avar@cpan.org> (tiny change)
14710
14711 * net/rcirc.el (rcirc-url-regexp): Replace definition by copying
14712 from gnus-button-url-regexp.
14713
14714 2008-02-24 Eli Zaretskii <eliz@gnu.org>
14715
14716 * progmodes/compile.el (compilation-next-error): Doc fix.
14717 (compilation-find-file): Doc fix.
14718
14719 2008-02-24 Glenn Morris <rgm@gnu.org>
14720
14721 * net/net-utils.el (ipconfig-program, ipconfig-program-options):
14722 Add obsolete aliases to the old names.
14723
14724 2008-02-24 Richard Stallman <rms@gnu.org>
14725
14726 * net/net-utils.el (ifconfig): Rename from ipconfig.
14727 (ipconfig): Alias to ifconfig.
14728 (ifconfig-program): Rename from ipconfig-program.
14729 (ifconfig-program-options): Rename from ipconfig-program-options.
14730
14731 2008-02-24 Michael McNamara <mac@mail.brushroad.com>
14732
14733 * progmodes/verilog-mode.el (verilog-declaration-core-re):
14734 Add port directions by themselves, with no qualification, as base
14735 item of a declaration.
14736 (verilog-pretty-declarations): Add new flag that inhibits printing
14737 to the message buffer.
14738 (verilog-pretty-expr): Add new flag that inhibits printing to the
14739 message buffer. Improve handling of the many types of expression
14740 line up.
14741 (verilog-just-one-space): Don't print an empty message.
14742 (verilog-get-lineup-indent): Rework to support the better handling
14743 of expression lineup for verilog-pretty-expr.
14744 (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
14745 (verilog-mode-version, verilog-mode-release-date): Update.
14746
14747 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
14748
14749 * subr.el (cancel-change-group): Don't move point.
14750
14751 2008-02-23 Markus Triska <markus.triska@gmx.at>
14752
14753 * linum.el (linum-after-config): Update all visible windows.
14754
14755 2008-02-23 Glenn Morris <rgm@gnu.org>
14756
14757 * menu-bar.el (menu-bar-games-menu): Add Bubbles and Pong.
14758 Add :help for Solitaire and Tetris.
14759
14760 * tree-widget.el (tree-widget-lookup-image): Let-bind `file'.
14761
14762 * mail/smtpmail.el: Remove leading `*' from defcustom doc-strings.
14763 (smtpmail-code-conv-from): Doc fix. Fix custom type.
14764 (smtpmail-queue-index-file): Make it a defcustom.
14765 (smtpmail-queue-index): Delete.
14766 (smtpmail-send-it, smtpmail-send-queued-mail):
14767 Use smtpmail-queue-index-file and smtpmail-queue-dir rather than
14768 smtpmail-queue-index.
14769
14770 * net/net-utils.el (iwconfig-program, iwconfig-program-options):
14771 Add :version.
14772
14773 2008-02-23 Yoni Rabkin <yoni@rabkins.net> (tiny change)
14774
14775 * net/net-utils.el (iwconfig-program, iwconfig-program-options):
14776 New variables.
14777 (iwconfig): New function.
14778
14779 2008-02-23 Dan Nicolaescu <dann@ics.uci.edu>
14780
14781 * vc.el (vc-find-revision): Make vc-parent-buffer local before
14782 setting it.
14783 (vc-status-menu-map): Do not define using easy-menu.
14784 (vc-status-menu-map): New defalias.
14785 (vc-status-mode-map): Hook up the menu.
14786 (top-level): Update TODO.
14787
14788 * vc-hg.el (vc-hg-extra-status-menu): Return a keymap.
14789
14790 * vc-bzr.el (vc-bzr-init-version): Rename to ...
14791 (vc-bzr-init-revision): ... this.
14792
14793 2008-02-23 Jason Rumney <jasonr@gnu.org>
14794
14795 * makefile.w32-in (WINS_ALMOST): Remove term.
14796 (WINS): Add term here.
14797 (custom-deps, finder-data): Use WINS_ALMOST.
14798
14799 2008-02-22 Juanma Barranquero <lekktu@gmail.com>
14800
14801 * faces.el (font-weight-table): Fix value of `semi-light'.
14802
14803 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
14804
14805 * faces.el (font-weight-table, font-slant-table, font-swidth-table):
14806 Make those tables bijective.
14807
14808 2008-02-22 Ken Manheimer <ken.manheimer@gmail.com>
14809
14810 Finish pdbtrack integration cleanup, settling missing-functions
14811 byte compiler warnings appropriately.
14812
14813 * progmodes/python.el (python-point): Remove this - beginning-of-line
14814 was all that was necessary for `python-pdbtrack-overlay-arrow'.
14815 (python-end-of-def-or-class, python-beginning-of-def-or-class)
14816 (python-goto-initial-line): Drop these - they were only needed for
14817 python-point.
14818 (python-comint-output-filter-function): Use condition-case and
14819 beginning-of-line directly, instead of python-mode.el functions
14820 which require all sorts of baggage.
14821 (point-safe): Unnecessary - we're using condition-case directly,
14822 instead.
14823 (python-execute-file): Include for python-shell, which I'm leaving
14824 in keeping despite it being unnecessary for pdb tracking.
14825
14826 2008-02-22 Peter Danenberg <pcd@wikitex.org> (tiny change)
14827
14828 * progmodes/scheme.el (scheme-font-lock-keywords-2):
14829 Add SRFI 11 support.
14830 (let-values, let*-values): Specify scheme-indent-function.
14831
14832 2008-02-22 Dan Nicolaescu <dann@ics.uci.edu>
14833
14834 * vc.el (vc-exec-after): Move setting mode-line-process in the
14835 busy case ...
14836 (vc-set-mode-line-busy-indicator): ... in this new function.
14837 (vc-status-refresh): Call vc-set-mode-line-busy-indicator.
14838 (vc-update-vc-status-buffer): Reset mode-line-process.
14839 (vc-status-mark-all-files, vc-status-unmark-all-files): Change to
14840 mark/unmark all the files with the same state as the current one.
14841 With a prefix argument mark/unmark all files.
14842 (vc-status-mode-menu): Adjust strings.
14843 (vc-update-vc-status-buffer): Only do something when the argument
14844 is not nil.
14845 (vc-status-kill-dir-status-process): New function.
14846 (vc-status-mode-map): Bind it.
14847 (vc-status-process-buffer): New variable.
14848 (vc-status-mode): Make it local.
14849 (vc-status-refresh): Set it.
14850
14851 * vc-hg.el (vc-hg-dir-status):
14852 * vc-git.el (vc-git-dir-status):
14853 * vc-svn.el (vc-svn-dir-status): Return the buffer in which the
14854 command is run.
14855
14856 2008-02-22 Glenn Morris <rgm@gnu.org>
14857
14858 * json.el (top-level): No need to require thingatpt.
14859 (json-read-keyword): Use thing-at-point rather than word-at-point.
14860
14861 * time.el (top-level): No need to require time-date when compiling.
14862
14863 * emacs-lisp/copyright.el (copyright-update-year):
14864 Fix subexpression numbering for the case when years are split over
14865 lines, and for the replace case.
14866
14867 * emulation/tpu-edt.el (tpu-have-ispell): Doc fix. Make obsolete.
14868 (tpu-caar, tpu-cadr): Delete functions.
14869 (zmacs-regions): No need to declare for compiler.
14870 (tpu-goto-breadcrumb): Use cadr rather than tpu-cadr.
14871 (tpu-spell-check): Rewrite, and handle mark after point.
14872 (tpu-special-insert): Use or rather than if.
14873
14874 * emulation/vip.el (vip-special-prefix-com): Use ispell-region
14875 rather than spell-region.
14876
14877 * textmodes/spell.el (spell-buffer, spell-word): Suppress compiler
14878 warnings about spell-region.
14879
14880 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
14881
14882 * ldefs-boot.el: Regenerated.
14883
14884 * loadup.el: Don't load language/devanagari, language/kannada,
14885 language/malayalam, and language/tamil. Load language/sinhala.
14886
14887 * language/indian.el (indian-font-foundry)
14888 (indian-script-language-alist, indian-font-char-index-table)
14889 (indian-font-char, indian-font-char-range, indian-script-table)
14890 (indian-default-script, indian-composable-pattern): Delete them.
14891 ("Devanagari", "Kannada", "Malayalam", "Tamil"): Definitions of
14892 language environments moved to here.
14893 ("Bengali", "Punjabi", "Gujarati", "Oriya", "Telugu"):
14894 New language environments.
14895
14896 * language/devanagari.el, language/devan-util.el,
14897 * language/kannada.el, language/knd-util.el, language/malayalam.el,
14898 * language/mlm-util.el, language/tamil.el, language/tml-util.el:
14899 Delete them.
14900
14901 * language/sinhala.el: New file.
14902
14903 2008-02-21 Ken Manheimer <ken.manheimer@gmail.com>
14904
14905 Update Nick Robert's port of pdb tracking from python-mode.el.
14906
14907 * progmodes/python.el (python-pdbtrack-toggle-stack-tracking):
14908 Clarify docstring.
14909 (python-pdbtrack-minor-mode-string): A sign indicating that pdb
14910 tracking is happening.
14911 (python-pdbtrack-stack-entry-regexp): Better recognize stack traces.
14912 (python-pdbtrack-input-prompt): Better recognize PDB prompts.
14913 (comint-output-filter-functions): Add python-pdbtrack-track-stack-file.
14914 Tracking is plugged in to all comint buffers once python.el is loaded.
14915 (python-pdbtrack-overlay-arrow): Toggle activation of
14916 `python-pdbtrack-minor-mode-string' in addition to the overlay arrow.
14917 (python-pdbtrack-track-stack-file): Use new
14918 `python-pdbtrack-get-source-buffer' for more flexible access to
14919 debugging source files.
14920 (python-pdbtrack-get-source-buffer): Identify debugging target buffer
14921 according to pdb stack trace, optionally using new
14922 `python-pdbtrack-grub-for-buffer' if file is not locally available.
14923 (python-pdbtrack-grub-for-buffer): Find most recent python-mode
14924 named buffer, or having function with indicated name.
14925 (python-shell): Remove comint-output-filter-functions hook
14926 addition, it's being done elsewhere. Wrap long line.
14927
14928 2008-02-21 Michael Olson <mwolson@gnu.org>
14929
14930 * json.el: Replace XEmacs compatibility code to get rid of
14931 compiler warnings.
14932
14933 * time.el: Fix compiler warning.
14934
14935 2008-02-21 Edward O'Connor <ted@oconnor.cx>
14936
14937 * json.el: New file (JavaScript Object Notation parser / generator).
14938
14939 2008-02-21 Dave Love <fx@gnu.org>
14940
14941 * progmodes/sym-comp.el: New file.
14942
14943 * progmodes/python.el: Merge from Dave Love's 2008-01-20 version.
14944 Require sym-comp. Add Python buffer to same-window-buffer-names.
14945 Fixup whitespaces.
14946 (python-font-lock-keywords): Add highlighting for Python builtins.
14947 (python-font-lock-syntactic-keywords): Rewrite.
14948 (python-quote-syntax): Use syntax-ppss-context instead of parsing
14949 ppss directly.
14950 (python-mode-map): Add binding for python-find-function.
14951 (python-calculate-indentation): Clean up the logic.
14952 (python-beginning-of-defun): Explicitly set return value.
14953 (python-beginning-of-statement): Stop looping if we get stuck
14954 going backwards.
14955 (python-next-statement): Stop looping if we somehow end up inside
14956 a string while advancing.
14957 (python-preoutput-continuation, python-version-checked): New vars.
14958 (python-check-version): New function.
14959 (run-python): Set default command to python-command instead of
14960 python-python-command.
14961 (run-python): Use python-check-version. Give PYTHONPATH
14962 precedence over data-directory in the process environment.
14963 Load function definitions in python process after.
14964 (python-check-comint-prompt): New function.
14965 (python-send-command, python-send-receive): Use it.
14966 (python-complete-symbol, python-try-complete): Functions deleted.
14967 Use symbol-complete instead of python-complete-symbol throughout.
14968 (python-fill-paragraph): Further refine the fenced-string regexp.
14969 (def-python-skeleton): Expand to the original abbrev instead if in
14970 a comment or string. Tweak skeletons for `if', `while', `for',
14971 `try/except', `try/finally', `name'.
14972 (python-pea-hook, python-abbrev-pc-hook): New functions.
14973 (python-abbrev-syntax-table): New var.
14974 (python-mode): Add python-pea-hook to pre-abbrev-expand-hook.
14975 Use symbol-completion-try-complete for hippie expansion.
14976 Turn on font lock unconditionally.
14977 (python-mode-hook): Defcustom it. No need to use make-local
14978 variable on indent-tabs-mode in "Turn off Indent Tabs mode"
14979 option, since it's buffer-local.
14980
14981 2008-02-21 Juanma Barranquero <lekktu@gmail.com>
14982
14983 * play/hanoi.el (hanoi-internal): Set `show-trailing-whitespace' to nil.
14984
14985 2008-02-21 Drew Adams <drew.adams@oracle.com>
14986
14987 * mouse.el (minor-mode-menu-from-indicator): Create a menu with a
14988 "Turn off" and a "Help" entry when the minor mode has no menu.
14989
14990 2008-02-21 Dan Nicolaescu <dann@ics.uci.edu>
14991
14992 * vc.el (vc-status-mark, vc-status-unmark): New functions.
14993 (vc-status-mode-map, vc-status-mode-menu): Bind them instead of
14994 vc-status-mark-file and vc-status-unmark-file.
14995 (vc-status-mark-unmark): New function.
14996 (vc-status-previous-line, vc-status-next-line): No longer interactive.
14997
14998 2008-02-21 Glenn Morris <rgm@gnu.org>
14999
15000 * composite.el (encode-composition-rule): Fix typo in error message.
15001 (composition-function-table, auto-composition-mode): Doc fixes.
15002
15003 * subr.el (sit-for): Fix obsolete form for nil second argument.
15004
15005 * textmodes/spell.el (spell-buffer, spell-word, spell-region)
15006 (spell-string): Make obsolete, in favor of ispell.
15007
15008 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
15009
15010 * language/devanagari.el: Don't setup composition-function-table
15011 here.
15012 ("Devanagari"): Change charset, coding-system, coding-priority to
15013 Unicode-based ones. Don't require the feature devan-util.
15014
15015 * composite.el (compose-chars-after): Fix arguments for a function
15016 in composition-function-table.
15017 (auto-compose-region): Likewise.
15018
15019 * ps-mule.el (ps-mule-font-info-database-bdf): Use ethio16f-uni.bdf
15020 for Ethiopic.
15021 (ps-mule-plot-string): Ignore glyph-string based compositions.
15022
15023 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
15024
15025 * doc-view.el: Allow different windows to show different pages.
15026 (doc-view-current-page, doc-view-current-slice, doc-view-current-info)
15027 (doc-view-current-image, doc-view-current-overlay): Remove variables,
15028 add them back as macros instead, using image-mode-winprops instead.
15029 Update all users of those variables.
15030 (doc-view-new-window-function): New function to create a new overlay
15031 for each new window.
15032 (doc-view-mode): Use it and image-mode-setup-winprops.
15033 (doc-view-clone-buffer-hook): Rewrite accordingly.
15034
15035 * image-mode.el: Extend [hv]scroll support to per-window properties.
15036 (image-mode-current-vscroll, image-mode-current-hscroll): Remove.
15037 (image-mode-winprops-alist): New var to replace them.
15038 (image-mode-new-window-functions): New hook.
15039 (image-mode-winprops, image-mode-window-get, image-mode-window-put):
15040 New funs.
15041 (image-set-window-vscroll, image-set-window-hscroll): Use them.
15042 Remove the `window' argument, update callers.
15043 (image-mode-reapply-winprops): Rename image-reset-current-vhscroll.
15044 Use the new functions.
15045 (image-mode-reapply-winprops): New fun.
15046 (image-mode): Use it.
15047
15048 2008-02-20 Jay Belanger <jay.p.belanger@gmail.com>
15049
15050 * calc/calc-math.el (math-sin-raw): Add optional argument
15051 to keep track of original argument.
15052 (math-cos-raw): Use optional argument when calling math-sin-raw.
15053 (math-sin-raw-2, math-cos-raw-2): Check for a zero argument
15054 with close to original precision.
15055
15056 2008-02-20 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15057
15058 * textmodes/bibtex.el (bibtex-convert-alien): Do not use optional
15059 args in calls of sit-for.
15060
15061 2008-02-20 Juanma Barranquero <lekktu@gmail.com>
15062
15063 * vc-svn.el (vc-svn-program): Fix typo in docstring.
15064 (vc-svn-checkin): Fix typo in error message.
15065
15066 * help-mode.el: Require easymenu when compiling.
15067
15068 2008-02-20 Dan Nicolaescu <dann@ics.uci.edu>
15069
15070 * help-mode.el (help-mode-menu): New menu.
15071
15072 2008-02-20 Glenn Morris <rgm@gnu.org>
15073
15074 * mail/rmail.el (rmail-autodetect): Add .exe extension to movemail
15075 on Windows.
15076
15077 2008-02-20 Kenichi Handa <handa@ni.aist.go.jp>
15078
15079 * ps-mule.el (ps-mule-encode-region): Return a single string.
15080 (ps-mule-plot-string): Adjust for the above change.
15081 (ps-mule-encode-header-string): Likewise.
15082
15083 * international/latin1-disp.el (latin1-display): Don't use
15084 ucs-mule-8859-to-mule-unicode. Fix the way of resetting
15085 standard-display-table.
15086 (latin1-display-identities): Adjust for the change of what is
15087 returned by (get-language-info charset 'charset).
15088
15089 * international/mule-util.el (char-displayable-p): Fix for Latin-1
15090 characters and terminal case.
15091
15092 2008-02-19 Ken Manheimer <ken.manheimer@gmail.com>
15093
15094 Minor Adaptions by Nick Roberts <nickrob@snap.net.nz> for Emacs.
15095
15096 * progmodes/python.el: Also require comint when loading.
15097 (python-mode-map): Bind python-pdbtrack-toggle-stack-tracking.
15098 Replace python-shell with run-python on menu bar.
15099 (python-shell-map): New map.
15100 (python-default-interpreter, python-python-command-args)
15101 (python-jython-command-args, python-pdbtrack-do-tracking-p):
15102 New options.
15103 (python-which-shell, python-which-args, python-which-bufname):
15104 New buffer local variables.
15105 (python-file-queue, python-pdbtrack-is-tracking-p): New variables.
15106
15107 * progmodes/python.el (python-pdbtrack-stack-entry-regexp)
15108 (python-pdbtrack-input-prompt, python-pdbtrack-track-range):
15109 New constants.
15110
15111 Pdbtrack features:
15112
15113 (python-point, python-end-of-def-or-class)
15114 (python-beginning-of-def-or-class, python-goto-initial-line)
15115 (python-comint-output-filter-function)
15116 (python-pdbtrack-overlay-arrow)
15117 (python-pdbtrack-track-stack-file, python-toggle-shells)
15118 (python-shell, python-pdbtrack-toggle-stack-tracking)
15119 (turn-on-pdbtrack, turn-off-pdbtrack, python-sentinel):
15120 New functions.
15121
15122 2008-02-19 Katsumi Yamaoka <yamaoka@jpl.org>
15123
15124 * net/ange-ftp.el (ange-ftp-quote-string): Return the null string
15125 when the argument is nil.
15126
15127 2008-02-19 Dan Nicolaescu <dann@ics.uci.edu>
15128
15129 * vc.el (dir-status): Add a brief description.
15130
15131 2008-02-19 Thien-Thi Nguyen <ttn@gnuvola.org>
15132
15133 * vc-hooks.el (vc-find-root): Take optional arg INVERT.
15134 If non-nil, reverse the sense of the check.
15135
15136 * vc-rcs.el (vc-rcs-root): New func.
15137 * vc-cvs.el (vc-cvs-root): New func.
15138 * vc-svn.el (vc-svn-root): New func.
15139 * vc-sccs.el (vc-sccs-root): New func.
15140
15141 2008-02-18 Kenichi Handa <handa@ni.aist.go.jp>
15142
15143 * language/japan-util.el (setup-japanese-environment-internal):
15144 Call use-cjk-char-width-table.
15145
15146 * language/japanese.el ("Japanese"): Set exit-function to
15147 use-default-char-width-table.
15148
15149 * international/characters.el: Delete occurrences of non-Unicode
15150 tibetan and ethiopic characters.
15151 (cjk-char-width-table): New variable.
15152 (use-cjk-char-width-table, use-default-char-width-table):
15153 New functions.
15154
15155 2008-02-19 Dan Nicolaescu <dann@ics.uci.edu>
15156
15157 * vc.el (vc-status-menu, vc-status-menu-map-filter): New functions.
15158 (vc-status-mode-menu): Add a :filter.
15159 (vc-status-printer): Add faces.
15160
15161 * vc-hg.el (vc-hg-extra-status-menu): New function.
15162 (vc-hg-dir-status): Clean up the buffer before using it.
15163
15164 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
15165
15166 * progmodes/gdb-ui.el (gdb-output-sink): Define with an invalid value.
15167 (gdb): Initialize it here instead.
15168
15169 * files.el (locate-dominating-file): Fix thinko in last change.
15170 Reported by Bruce Stephens <bruce.stephens@isode.com>.
15171
15172 2008-02-18 Dan Nicolaescu <dann@ics.uci.edu>
15173
15174 * vc.el (vc-status-mode-menu): New menu for vc-status.
15175
15176 2008-02-18 Juanma Barranquero <lekktu@gmail.com>
15177
15178 * progmodes/verilog-mode.el (customize): Fix typo in error message.
15179 (verilog-mode, verilog-mode-indent, verilog-mode-actions)
15180 (verilog-mode-auto, verilog-indent-level-module)
15181 (verilog-minimum-comment-distance, verilog-library-flags)
15182 (verilog-library-directories, verilog-library-files)
15183 (verilog-auto-reset-widths, verilog-imenu-generic-expression)
15184 (verilog-xemacs-menu, verilog-set-compile-command)
15185 (verilog-set-compile-command, verilog-mode-syntax-table, verilog-mode)
15186 (verilog-get-expr, verilog-strip-comments, verilog-one-line)
15187 (verilog-lint-off, verilog-batch-auto, verilog-batch-delete-auto)
15188 (verilog-batch-inject-auto, verilog-batch-indent)
15189 (verilog-continued-line, verilog-type-keywords)
15190 (verilog-read-sub-decls-sig, verilog-read-sub-decls-line)
15191 (verilog-read-inst-pins, verilog-read-arg-pins)
15192 (verilog-read-auto-template, verilog-read-signals, verilog-getopt-file)
15193 (verilog-add-list-unique, verilog-symbol-detick, verilog-modi-filename)
15194 (verilog-auto-star, verilog-auto-inst, verilog-auto-wire)
15195 (verilog-enum-ascii, verilog-sk-begin, verilog-sk-fork)
15196 (verilog-sk-datadef, verilog-colorize-include-files-buffer)
15197 (verilog-mode-version, verilog-mode-release-date)
15198 (verilog-mode-release-emacs, verilog-linter, verilog-coverage)
15199 (verilog-simulator, verilog-compiler)
15200 (verilog-auto-sense-defines-constant, verilog-company)
15201 (verilog-project, verilog-mark-defun, verilog-submit-bug-report):
15202 Fix typos in docstrings.
15203 (verilog-set-auto-endcomments, verilog-calculate-indent)
15204 (verilog-inject-auto, verilog-auto-arg, verilog-auto-inout-module):
15205 Reflow docstrings.
15206 (verilog-tab-always-indent, verilog-highlight-p1800-keywords)
15207 (verilog-auto-star-save, verilog-auto-inst-vector, verilog-mode-hook)
15208 (electric-verilog-forward-sexp, verilog-in-case-region-p)
15209 (verilog-in-struct-region-p, verilog-in-generate-region-p)
15210 (verilog-leap-to-head, verilog-current-indent-level)
15211 (verilog-case-indent-level, verilog-cpp-keywords)
15212 (verilog-defun-keywords, verilog-block-keywords, verilog-tf-keywords)
15213 (verilog-case-keywords, verilog-separator-keywords, verilog-completion)
15214 (verilog-signals-not-in, verilog-symbol-detick-text)
15215 (verilog-modi-cache-preserve-tick, verilog-modi-cache-preserve-buffer)
15216 (verilog-forward-close-paren, verilog-backward-open-paren)
15217 (verilog-backward-open-bracket): Doc fixes.
15218
15219 * progmodes/gud.el (gud-def, gud-last-speedbar-stackframe): Doc fixes.
15220 (gud-symbol, gud-expansion-speedbar-buttons, gud-speedbar-buttons)
15221 (gud-gdb-run-command-fetch-lines, gud-dbx-use-stopformat-p)
15222 (gud-jdb-classpath, gud-jdb-find-source-using-classpath, jdb)
15223 (gud-find-class, gdb-script-mode, gud-tooltip-event, gud-tooltip-tips):
15224 Fix typos in docstrings.
15225
15226 * w32-vars.el (w32-system-shells): Add TCC (new name for 4NT).
15227
15228 2008-02-18 Bastien Guerry <Bastien.Guerry@ens.fr>
15229
15230 * info.el (Info-read-node-name): Removed unused `default' arg.
15231
15232 2008-02-18 Thien-Thi Nguyen <ttn@gnuvola.org>
15233
15234 * vc-git.el (vc-git-after-dir-status, vc-git-dir-status): New funcs.
15235
15236 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
15237
15238 * image-mode.el (image-get-display-property): New fun.
15239 (image-forward-hscroll, image-next-line, image-eol, image-eob)
15240 (image-mode, image-minor-mode, image-toggle-display-text)
15241 (image-toggle-display): Use it.
15242
15243 2008-02-18 Jason Rumney <jasonr@gnu.org>
15244
15245 * international/mule.el (xml-find-file-coding-system): Don't warn
15246 about utf-16 with BOM.
15247
15248 * nxml/nxml-mode.el (nxml-mode): Don't add a write-contents-hook.
15249
15250 * international/mule.el (sgml-xml-auto-coding-function): Detect and
15251 warn if file encoding is not utf-8 and encoding not specified.
15252 (xml-find-file-coding-system): New function.
15253 * international/mule-conf.el (file-coding-system-alist): Use it.
15254
15255 2008-02-17 Glenn Morris <rgm@gnu.org>
15256
15257 * international/mule-cmds.el (set-locale-environment):
15258 Pass `frame' to getenv for LC_MESSAGES.
15259
15260 2008-02-17 Juri Linkov <juri@jurta.org>
15261
15262 * time.el (emacs-init-time): Use format instead of format-seconds.
15263
15264 2008-02-17 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15265
15266 * textmodes/bibtex.el (bibtex-search-entry): Rename from
15267 bibtex-find-entry. Add autoload cookie.
15268 (bibtex-find-entry): Alias for bibtex-search-entry.
15269 (bibtex-search-crossref): Rename from bibtex-find-crossref.
15270 (bibtex-find-crossref): Alias for bibtex-search-crossref.
15271 (bibtex-clean-entry): atomic-change-group removed.
15272 (bibtex-format-entry): Use atomic-change-group. Use unwind-protect
15273 to locate buffer location where error occurred.
15274 Make error messages more specific.
15275 (bibtex-parse-keys): Only parse if buffer uses bibtex-mode.
15276
15277 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
15278
15279 * progmodes/hideshow.el (hs-minor-mode-map): Move menu creation to
15280 top level.
15281
15282 * simple.el (transient-mark-mode): Add an :init-value.
15283
15284 * startup.el (command-line): Use custom-reevaluate-setting for
15285 transient-mark-mode.
15286
15287 2008-02-17 Michaël Cadilhac <michael@cadilhac.name>
15288
15289 * wdired.el (wdired-allow-to-change-permissions): Fix typo.
15290
15291 2008-02-16 Juri Linkov <juri@jurta.org>
15292
15293 * startup.el (after-init-time): New variable.
15294 (command-line): Set `after-init-time' to the current time.
15295
15296 * time.el (emacs-init-time): New function.
15297
15298 2008-02-16 Stefan Monnier <monnier@iro.umontreal.ca>
15299
15300 * files.el (locate-dominating-file): Remove initial loop because it's
15301 not careful enough. Detect the uid-change all within the main loop.
15302
15303 2008-02-16 Lawrence Mitchell <wence@gmx.li> (tiny change)
15304
15305 * ielm.el (ielm-is-whitespace-or-comment): Docstring fix.
15306
15307 2008-02-16 Dan Nicolaescu <dann@ics.uci.edu>
15308
15309 * vc.el (vc-annotate): Add new argument.
15310 (vc-annotate-warp-revision): Pass the current line to vc-annotate.
15311
15312 * progmodes/hideshow.el: Remove the minor-mode bookkeeping.
15313 Move make-variable-buffer-local code after the corresponding defvar.
15314 (hs-minor-mode-map): Define and initialize in one step.
15315 (hs-minor-mode): Change from defun to define-minor-mode.
15316
15317 2008-02-16 Nick Roberts <nickrob@snap.net.nz>
15318
15319 * progmodes/gud.el (gud-gdb): Don't reset gdb-ready.
15320 (gdb-ready): Move declaration...
15321
15322 * progmodes/gdb-ui.el (gdb-ready): ...to here.
15323 (gdb-early-user-input): New variable.
15324 (gdb): Reset gdb-flush-pending-output to nil and set
15325 comint-input-sender here (before gdb-prompt), instead of...
15326 (gdb-init-1): ...here.
15327 (gdb-send): If Emacs is not ready, defer user input to...
15328 (gdb-prompt): ...here.
15329
15330 2008-02-16 Glenn Morris <rgm@gnu.org>
15331
15332 * nxml/test.invalid.xml, nxml/test.valid.xml: Move to etc/nxml.
15333
15334 * startup.el (emacs-startup-time): Rename to `before-init-time'.
15335 (before-init-time): New name for `emacs-startup-time'.
15336 (command-line): Use before-init-time rather than emacs-startup-time.
15337 * time.el (emacs-uptime): Use before-init-time rather than
15338 emacs-startup-time.
15339
15340 * composite.el (composition-function-table): Doc fix.
15341
15342 * calendar/time-date.el (format-seconds): Remove `nonzero' argument
15343 in favor of `%z' specifier.
15344 (emacs-uptime): Move to time.el.
15345 * time.el (emacs-uptime): Move here from time-date.el. Add optional
15346 `format' argument. Doc fix. Use `%z' rather than removed `nonzero'
15347 argument of format-seconds.
15348
15349 2008-02-16 Dan Nicolaescu <dann@ics.uci.edu>
15350
15351 * bindings.el (mode-line-mule-info): Make the tooltips more explicit.
15352
15353 2008-02-15 Lawrence Mitchell <wence@gmx.li> (tiny change)
15354
15355 * ielm.el (ielm-is-whitespace): Remove.
15356 (ielm-is-whitespace-or-comment): New function.
15357 (ielm-eval-input): Use it.
15358
15359 2008-02-15 Jason Rumney <jasonr@gnu.org>
15360
15361 * term/mac-win.el: Fix coding tag.
15362
15363 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
15364
15365 * vc-hooks.el (vc-menu-map):
15366 * bindings.el (mode-line-mode-menu): Add tooltips.
15367
15368 * bindings.el (help-echo): Add more tooltips. Use a less
15369 telegraphic style for existing tooltips.
15370
15371 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
15372
15373 * frame.el (frame-notice-user-settings): Distinguish explicit parent-id
15374 from the auto-generated one.
15375
15376 2008-02-14 Glenn Morris <rgm@gnu.org>
15377
15378 * mail/rmail-spam-filter.el (rmail-spam-filter):
15379 Let-bind message-spam-status.
15380
15381 * mail/smtpmail.el (password-cache-add): Declare as function.
15382
15383 2008-02-14 Justus Piater <Justus-bulk@Piater.name> (tiny change)
15384
15385 * mail/smtpmail.el: Use password-cache.
15386
15387 2008-02-14 Juanma Barranquero <lekktu@gmail.com>
15388
15389 * uniquify.el (uniquify-buffer-base-name): New function.
15390 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
15391
15392 * desktop.el (uniquify-managed): Don't defvar.
15393 (desktop-buffer-info): Use `uniquify-buffer-base-name', not
15394 `uniquify-managed'. Return also the buffer's base name.
15395 (desktop-save): When saving the buffer info, filter out the base name,
15396 and save it as buffer name if the buffer is managed by uniquify.
15397 (uniquify-item-base): Don't declare; not called anymore.
15398
15399 2008-02-14 Dan Nicolaescu <dann@ics.uci.edu>
15400
15401 * vc.el (vc-annotate-find-revision-at-line): New function.
15402 (vc-annotate-mode-map): Bind it.
15403 (vc-annotate-mode-menu): Add a menu entry for it. Add :help for
15404 some entries.
15405
15406 2008-02-14 Glenn Morris <rgm@gnu.org>
15407
15408 * calendar/time-date.el (format-seconds): New function.
15409 (emacs-uptime): Use format-seconds.
15410
15411 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
15412 Remove `LC_ALL=C', since it's included in $(emacs) now.
15413
15414 2008-02-14 Zhang Wei <id.brep@gmail.com>
15415
15416 * textmodes/org-publish.el (org-publish-timestamp-filename):
15417 Replace colon characters in filename too.
15418
15419 2008-02-13 Bastien Guerry <bzg@altern.org>
15420
15421 * mail/rmail.el (rmail-header-name): New face.
15422 (rmail-font-lock-keywords): Use rmail-header-name.
15423
15424 * mail/rmail-spam-filter.el (rsf-definitions-alist): Allow check
15425 against X-Spam-Status header field.
15426 (rmail-spam-filter): Also check X-Spam-Status header field.
15427
15428 2008-02-14 Mark A. Hershberger <mah@everybody.org>
15429
15430 * progmodes/flymake.el (flymake-allowed-file-name-masks):
15431 Add support for .pm files and .php files.
15432 (flymake-err-line-patterns): Add pattern for PHP errors.
15433 (flymake-php-init): New function. PHP support for flymake.
15434
15435 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15436 Add regular expression for PHP errors.
15437
15438 2008-02-13 Michael Albinus <michael.albinus@gmx.de>
15439
15440 * net/ange-ftp.el (ange-ftp-quote-string): Use `shell-quote-argument'.
15441 This DTRT even on w32 machines.
15442 (ange-ftp-cf1): Quote FILENAME.
15443
15444 2008-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
15445
15446 * smerge-mode.el (smerge-auto-combine-max-separation): New var.
15447 (smerge-auto-combine): New fun.
15448
15449 2008-02-12 Juri Linkov <juri@jurta.org>
15450
15451 * startup.el (fancy-startup-screen, normal-splash-screen):
15452 Set default-directory to command-line-default-directory.
15453
15454 * desktop.el (after-init-hook): Set inhibit-startup-screen to t
15455 after reading the desktop.
15456
15457 * progmodes/compile.el (compilation-auto-jump):
15458 Call compile-goto-error only when compilation-auto-jump-to-first-error
15459 is non-nil.
15460 (compilation-scroll-output): Replace :type 'boolean with a choice
15461 that has three options including a third option `first-error'.
15462 Doc fix.
15463 (compilation-start, compilation-forget-errors): Add an alternate
15464 condition comparing compilation-scroll-output with `first-error'
15465 in addition to compilation-auto-jump-to-first-error (to call
15466 compilation-auto-jump in the proper place).
15467
15468 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
15469
15470 * international/mule.el (sgml-html-meta-auto-coding-function):
15471 Make sure the search limit is ahead.
15472
15473 * tar-mode.el: Fix broken indentation.
15474 (tar-mouse-extract, tar-extract, tar-subfile-save-buffer):
15475 Use with-current-buffer.
15476
15477 2008-02-12 Juanma Barranquero <lekktu@gmail.com>
15478
15479 * hexl.el (hexl-mode): Don't make `font-lock-defaults' buffer-local;
15480 it is already automatically buffer-local.
15481
15482 2008-02-12 Drew Adams <drew.adams@oracle.com>
15483
15484 * help.el (describe-key): Join some split lines to facilitate filling.
15485 * help-fns.el (describe-function-1): Fill text of overlong lines.
15486
15487 2008-02-12 Kenichi Handa <handa@ni.aist.go.jp>
15488
15489 * emacs-lisp/bytecomp.el (byte-compile-lapcode):
15490 Use unibyte-string instead of string-make-unibyte.
15491
15492 * Makefile.in (AUTOGENEL): Remove charprop.el and uni-*.el.
15493
15494 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
15495
15496 * doc-view.el (doc-view-display): Change file arg to buffer arg, so it
15497 works also for buffers w/o buffer-file-name. Update callers.
15498 (doc-view-clone-buffer-hook): New fun.
15499 (doc-view-mode): Use it for indirect clones. Mark the overlays with
15500 the `doc-view' property so they can be recognized.
15501
15502 * simple.el (clone-indirect-buffer-hook): New hook.
15503 (clone-indirect-buffer): Run it.
15504
15505 2008-02-11 Michael Olson <mwolson@gnu.org>
15506
15507 * epa-setup.el:
15508 * epg-package-info.el: Files removed.
15509
15510 2008-02-11 Daiki Ueno <ueno@unixuser.org>
15511
15512 * epa.el (epa-menu-mode): Merge into epa-mode.
15513 (epa-menu-items): Rename the label "EasyPG Assistant" to
15514 "Encryption/Decryption".
15515
15516 * epa-dired.el: Define a new minor-mode epa-dired-mode for dired.
15517 (epa-dired-mode-map): Rename from epa-dired-map.
15518 (epa-global-dired-mode): Rename the global minor mode.
15519
15520 2008-02-11 Drew Adams <drew.adams@oracle.com>
15521
15522 * isearch.el (isearch-fail): New face.
15523 (isearch-message): Highlight failure part of input.
15524
15525 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
15526
15527 * ibuffer.el (ibuffer-header-line-format): New var.
15528 (ibuffer-mode): Set it instead of header-line-format.
15529 (ibuffer-update): Use it to set header-line-format.
15530
15531 * international/mule-cmds.el (ucs-insert): Inherit surrounding
15532 properties like self-insert-command.
15533
15534 2008-02-11 Drew Adams <drew.adams@oracle.com>
15535
15536 * progmodes/etags.el: Add many doc strings.
15537
15538 2008-02-11 Jason Rumney <jasonr@gnu.org>
15539
15540 * ldefs-boot.el: Regenerated.
15541
15542 2008-02-11 Glenn Morris <rgm@gnu.org>
15543
15544 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15545 Shorten some names.
15546
15547 * ffap.el (ffap-rfc-directories): Add :version.
15548
15549 2008-02-11 Chris Moore <christopher.ian.moore@gmail.com>
15550
15551 * jka-cmpr-hook.el (jka-compr-compression-info-list): Handle .sifz
15552 files, and backup files of same.
15553
15554 2008-02-11 Kevin Ryde <user42@zip.com.au>
15555
15556 * ffap.el (ffap-rfc-directories): New variable.
15557 (ffap-rfc): Look in those dirs before offering ffap-rfc-path.
15558
15559 * info.el (Info-next-reference, Info-prev-reference)
15560 (Info-try-follow-nearest-node): Move to and follow https:// links too.
15561
15562 * simple.el (completion-list-mode): Show full completion-list-mode-map
15563 in the docstring.
15564
15565 2008-02-11 Sam Steingold <sds@gnu.org>
15566
15567 * vc-hooks.el (vc-prefix-key): Remove (undo 2008-02-06 patch).
15568
15569 2008-02-11 Glenn Morris <rgm@gnu.org>
15570
15571 * startup.el (emacs-startup-time): New variable.
15572 (command-line): Set emacs-startup-time.
15573
15574 * calendar/time-date.el (emacs-uptime): New function.
15575
15576 2008-02-10 Bastien Guerry <bzg@altern.org>
15577
15578 * mail/rmail.el (rmail-nonignored-headers): Allow to be nil.
15579 (rmail-clear-headers): Don't check `rmail-nonignored-headers' when
15580 it is nil.
15581
15582 2008-02-10 Daiki Ueno <ueno@unixuser.org>
15583
15584 * epg-config.el: Expand the contents of epg-package-info.el.
15585 (epg-package-name): New constant.
15586 (epg-version-number): New constant.
15587 (epg-bug-report-address): New constant.
15588
15589 * epa-mail.el (epa-mail-mode): Add autoload cookie.
15590 (epa-global-mail-mode): New global minor mode.
15591
15592 * epa-file.el (epa-file-mode): New global minor mode.
15593
15594 * epa-dired.el (epa-dired-mode): New global minor mode.
15595
15596 * epa.el (epa-menu): New variable.
15597 (epa-menu-items): New variable.
15598 (epa-menu-mode): New global minor mode.
15599 (epa-global-minor-modes): New user option.
15600 (epa-mode): New global minor mode.
15601
15602 2008-02-10 Michael Albinus <michael.albinus@gmx.de>
15603
15604 * net/dbus.el: Remove `no-byte-compile' cookie.
15605 (dbus-call-method, dbus-register-signal, dbus-debug)
15606 (dbus-registered-functions-table): Declare them with
15607 `declare-function' or `defvar', respectively.
15608 (top): Don't assert any longer. Require 'cl when compiling.
15609 Apply `ignore-errors' but `dbus-ignore-errors'.
15610
15611 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
15612
15613 * diff-mode.el (diff-add-change-log-entries-other-window):
15614 Use add-change-log-entry.
15615
15616 2008-02-09 Jason Rumney <jasonr@gnu.org>
15617
15618 * button.el (button-map):
15619 * wid-edit.el (widget-keymap): Avoid line-end confusion in autoloads.
15620 * ldefs-boot.el: Regenerate.
15621
15622 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
15623
15624 * epa.el (epa-faces, epa):
15625 * epa-file.el (epa-file):
15626 * epg-config.el (epg): Add :version.
15627
15628 2008-02-09 Thien-Thi Nguyen <ttn@gnuvola.org>
15629
15630 * vc.el (vc-exec-after): Append CODE to previous fragments.
15631 (vc-diff-finish): Take BUFFER directly, not BUFFER-NAME;
15632 take MESSAGES instead of VERBOSE; use it when non-nil.
15633 (vc-diff-internal): Compute messages once; use them;
15634 update call to vc-diff-finish.
15635
15636 2008-02-09 Michael Olson <mwolson@gnu.org>
15637
15638 * net/tramp.el (tramp-process-sentinel): Avoid error when process
15639 buffer has been killed, such as by
15640 `tramp-cleanup-all-connections'.
15641
15642 2008-02-09 Miles Bader <miles@gnu.org>
15643
15644 * net/rcirc.el (rcirc-omit-mode): Suppress invisibility ellipsis.
15645
15646 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
15647
15648 * diff-mode.el (diff-add-change-log-entries-other-window): Avoid the
15649 splitter in context hunks.
15650
15651 2008-02-08 Kenichi Handa <handa@ni.aist.go.jp>
15652
15653 * international/fontset.el (setup-default-fontset): Fix arabic otf
15654 font specification.
15655
15656 2008-02-08 Daiki Ueno <ueno@unixuser.org>
15657
15658 * epa-dired.el:
15659 * epa-file.el:
15660 * epa-mail.el:
15661 * epa-setup.el:
15662 * epa.el:
15663 * epg-config.el:
15664 * epg-package-info.el:
15665 * epg.el: Initial check-in of EasyPG.
15666
15667 2008-02-08 Glenn Morris <rgm@gnu.org>
15668
15669 * woman.el (woman-locale): New defcustom.
15670 (woman-expand-locale, woman-manpath-add-locales): New functions.
15671 (woman-manpath): Call woman-manpath-add-locales. Bump :version.
15672
15673 * international/mule-cmds.el (locale-translate): New function,
15674 with old code extracted from set-locale-environment.
15675 (set-locale-environment): Use locale-translate. Set woman-locale.
15676
15677 * cus-start.el (selection-coding-system): Remove, since it's now
15678 defined in select.el rather than in xselect.c.
15679 * select.el (selection-coding-system): Make it a defcustom, and
15680 add the properties from cus-start.el. Bump :version.
15681
15682 * custom.el (custom-theme-set-variables): Sort symbols that are
15683 dependencies before symbols that depend on them.
15684 (custom-enabled-themes): Set after custom-theme-directory.
15685
15686 * pcmpl-unix.el (top-level): Move provide statement to end.
15687 (pcmpl-unix-group-file, pcmpl-unix-passwd-file): Remove leading
15688 `*' from doc-string. Allow to be nil.
15689 (pcmpl-ssh-known-hosts-file): Convert comment into expanded doc-string.
15690 Allow to be nil. Add :version.
15691 (pcmpl-ssh-hosts): Move definition before use. Handle lines
15692 without hostnames, and multiple hostnames per line.
15693
15694 * term/x-win.el (x-handle-parent-id): Remove free variable `parent-id'.
15695
15696 2008-02-08 Phil Hagelberg <phil@evri.com>
15697
15698 * pcmpl-unix.el (pcmpl-ssh-known-hosts-file): New defcustom.
15699 (pcomplete/ssh, pcomplete/scp, pcmpl-ssh-hosts): New functions.
15700
15701 2008-02-07 Timo Savola <timo.savola@iki.fi>
15702
15703 * startup.el (command-line-x-option-alist): Add --parent-id.
15704
15705 * term/x-win.el (x-handle-parent-id): New function.
15706
15707 2008-02-07 Chris Moore <christopher.ian.moore@gmail.com>
15708
15709 * mouse.el (x-fixed-font-alist): Use consistent capitalization for
15710 "Font Menu".
15711
15712 2008-02-06 Michael Albinus <michael.albinus@gmx.de>
15713
15714 * net/dbus.el (dbus-interface-peer): New defconst.
15715 (dbus-ping): New defun.
15716
15717 2008-02-06 Sam Steingold <sds@gnu.org>
15718
15719 * vc-hooks.el (vc-prefix-key): New user-customizable variable.
15720
15721 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
15722
15723 * net/ange-ftp.el (ange-ftp-unhandled-file-name-directory):
15724 Just return nil and let the C code provide a fallback.
15725
15726 2008-02-05 Glenn Morris <rgm@gnu.org>
15727
15728 * net/tramp-cmds.el (tramp-cleanup-connection): Update calls to
15729 tramp-flush-connection-property for removed 2nd argument.
15730
15731 2008-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
15732
15733 * diff-mode.el (diff-add-change-log-entries-other-window):
15734 Rename from diff-create-changelog. Change users.
15735 Minor change to hopefully work with plain diffs.
15736 (diff-mode-map): Add binding for it.
15737
15738 2008-02-04 Dan Nicolaescu <dann@ics.uci.edu>
15739
15740 * diff-mode.el: Add new TODO entry.
15741 (diff-create-changelog): New function.
15742 (diff-mode-menu): Bind it.
15743
15744 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
15745
15746 * international/mule-diag.el (print-fontset-element): Handle the
15747 case of inhibiting the fallback fonts.
15748
15749 2008-02-04 Kim F. Storm <storm@cua.dk>
15750
15751 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
15752 (ido-magic-delete-char): Use prefix arg.
15753
15754 2008-02-03 Juanma Barranquero <lekktu@gmail.com>
15755
15756 * term/w32-win.el (image-library-alist): Prefer libpng12 to libpng13,
15757 because the latter is in fact a 1.2.8 build distributed with GTK+ (as
15758 of today, the most recent libpng is 1.2.24).
15759
15760 2008-02-03 Michael Albinus <michael.albinus@gmx.de>
15761
15762 * ediff-util.el (ediff-compute-custom-diffs-maybe): Handle remote files.
15763
15764 * net/dbus.el (top): Check (featurep 'dbusbind).
15765
15766 * net/tramp.el (tramp-process-sentinel): New defun.
15767 (tramp-do-copy-or-rename-file-out-of-band)
15768 (tramp-maybe-open-connection): Use it as process sentinel.
15769 (tramp-handle-delete-directory): Don't use the "-f" option; it
15770 isn't portable.
15771 (tramp-handle-start-file-process): Echo `tramp-end-of-output'
15772 after the command.
15773 (tramp-handle-shell-command): Set `mode-line-process' in the
15774 asynchronous case.
15775
15776 * net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
15777
15778 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
15779 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
15780 Use `tramp-process-sentinel' as process sentinel.
15781
15782 2008-02-02 Juanma Barranquero <lekktu@gmail.com>
15783
15784 * whitespace.el (global-whitespace-mode): Revert last change.
15785 (whitespace-unload-function): Force `global-whitespace-mode'
15786 to deactivate local modes in a slightly less intrusive way.
15787
15788 2008-02-02 Eli Zaretskii <eliz@gnu.org>
15789
15790 * view.el (kill-buffer-if-not-modified): Add an autoload cookie.
15791
15792 2008-02-02 Glenn Morris <rgm@gnu.org>
15793
15794 * international/latin1-disp.el (latin1-display):
15795 * progmodes/fortran.el (fortran-comment-indent-char):
15796 * progmodes/idlw-shell.el (top-level):
15797 * term/mac-win.el (mac-keyboard-translate-char):
15798 * whitespace.el (whitespace-char-valid-p):
15799 * wid-edit.el (widget-key-sequence-read-event):
15800 Use characterp rather than char-valid-p.
15801
15802 * progmodes/cap-words.el (capitalized-next-word-boundary): Rename
15803 to capitalized-find-word-boundary. Doc fix. Update callers.
15804 (capitalized-next-word-boundary-function-table): Rename to
15805 capitalized-find-word-boundary-function-table. Doc fix. Update users.
15806
15807 * ps-bdf.el (bdf-read-font-info): Use string-to-number rather than
15808 string-to-int.
15809
15810 * ps-def.el (declare-function): Add compatibility definition.
15811 (ps-plot-with-face, ps-plot-string): Declare as functions.
15812 (ps-bold-faces, ps-italic-faces): Declare variables.
15813
15814 * ps-print.el (ps-mule-initialize, ps-mule-begin-job)
15815 (ps-mule-end-job): Declare as functions.
15816
15817 * wid-edit.el (widget-string-complete): Use assoc-string rather
15818 than assoc-ignore-case.
15819
15820 See ChangeLog.13 for earlier changes.
15821
15822 ;; Local Variables:
15823 ;; coding: utf-8
15824 ;; add-log-time-zone-rule: t
15825 ;; bug-reference-url-format: "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s"
15826 ;; End:
15827
15828 Copyright (C) 2008 Free Software Foundation, Inc.
15829
15830 This file is part of GNU Emacs.
15831
15832 GNU Emacs is free software: you can redistribute it and/or modify
15833 it under the terms of the GNU General Public License as published by
15834 the Free Software Foundation, either version 3 of the License, or
15835 (at your option) any later version.
15836
15837 GNU Emacs is distributed in the hope that it will be useful,
15838 but WITHOUT ANY WARRANTY; without even the implied warranty of
15839 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15840 GNU General Public License for more details.
15841
15842 You should have received a copy of the GNU General Public License
15843 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
15844
15845 ;; arch-tag: c241c1f9-d668-48bf-920a-2897ed0340bc