Require 'cl when compiling.
[emacs.git] / lisp / ChangeLog
blobdd2d6aef8c20de71810ed40f67e55d27c643f456
1 2008-06-21  John Paul Wallington  <jpw@pobox.com>
3         * emacs-lisp/derived.el (define-derived-mode): Add `doc-string' decl.
5         * textmodes/rst.el (rst-mode): Put docstring in right place.
7 2008-06-21  Chong Yidong  <cyd@stupidchicken.com>
9         * startup.el (fancy-about-text, fancy-startup-tail): Increase text
10         size for legibility.
12         * faces.el (fixed-pitch): Use "Monospace" family.
13         (variable-pitch): Use "Sans" family.
14         (face-font-family-alternatives): Define alternatives for "Sans"
15         and "Monospace".
17 2008-06-21  Glenn Morris  <rgm@gnu.org>
19         * mail/hashcash.el, nxml/nxml-mode.el: Require 'cl when compiling.
21         * progmodes/bug-reference.el (bug-reference-map): Bind down-mouse-1
22         rather than mouse-1.
23         (bug-reference-url-format): Autoload safe if string.
24         (bug-reference-bug-regexp): Make space after "bug" optional.
26         * Makefile.in (all): Explicitly pass EMACS to sub-make,
27         for some non-GNU makes.
29         * cus-dep.el (custom-dependencies-no-scan-regexp):
30         * finder.el (finder-no-scan-regexp): Add ldefs-boot.el
32         * calendar/cal-move.el (calendar-forward-day): Scroll in one month
33         increments.
35         * calendar/calendar.el: Factor out the magic numbers controlling the
36         calendar layout.
37         (calendar-month-digit-width, calendar-month-width)
38         (calendar-right-margin): New variables.
39         (calendar-recompute-layout-variables, calendar-set-layout-variable):
40         New functions.
41         (calendar-left-margin, calendar-intermonth-spacing)
42         (calendar-column-width, calendar-day-header-width)
43         (calendar-day-digit-width): New options.
44         (calendar-first-date-row): New constant.
45         (calendar-move-to-column, calendar-ensure-newline): New functions,
46         replacing calendar-insert-indented.
47         (calendar-insert-indented): Remove function.
48         (calendar-generate-month): Use calendar-move-to-column and
49         calendar-ensure-newline.  Use layout variables.
50         (calendar-generate, calendar-update-mode-line)
51         (calendar-font-lock-keywords): Use layout variables.
52         (calendar-column-to-month): New function.
53         (calendar-cursor-to-date): Use calendar-column-to-month.
54         Use layout variables.
55         * calendar/cal-move.el (calendar-cursor-to-nearest-date):
56         Use layout variables.  Use calendar-column-to-month.
57         (calendar-cursor-to-visible-date): Use layout variables.
59 2008-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
61         * Makefile.in (update-elclist): Don't exclude COMPILE_FIRST.
62         (all): Run compile-last.
63         (compile-onefile): New target.
64         (compile-first): Simplify.
65         (compile-last): Don't treat COMPILE_FIRST specially.
66         (COMPILE_FIRST): List the elc files rather than the el files.
67         (ELCFILES): Update.
69 2008-06-21  Ulf Jasper  <ulf@web.de>
71         * net/newst-treeview.el: Remove dead code.
72         (newsticker--window-config): Remove.
73         (newsticker-treeview-quit): Do not save window config.
74         (newsticker-treeview): Do not try to restore window config.
75         (newsticker-groups, newsticker--treeview-list-sort-by-column)
76         (newsticker--treeview-list-new-items)
77         (newsticker--treeview-list-immortal-items)
78         (newsticker--treeview-list-obsolete-items)
79         (newsticker--treeview-list-all-items)
80         (newsticker--treeview-list-feed-items): Fix documentation.
82 2008-06-21  Miles Bader  <miles@gnu.org>
84         * face-remap.el (text-scale-adjust): Bind `echo-keystrokes' to nil.
86 2008-06-21  Alan Mackenzie  <acm@muc.de>
88         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5D.5): Fix an
89         infinite loop on invalid syntax.
91 2008-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
93         * textmodes/rst.el: Run rst-define-level-faces when loading.
94         (rst-mode): Don't set the font-lock-multiline var.
95         (rst-font-lock-find-unindented-line, rst-font-lock-handle-adornment):
96         Set the font-lock-multiline property by hand.
98         * loadup.el: Don't add emacs-<VERS> name when bootstrapping.
100         * Makefile.in (emacs-deps): Remove.
101         ($(lisp)/cus-load.el, $(lisp)/finder-inf.el): Re-add.
102         (all): Use them.
103         (autogen-clean): Remove.
105 2008-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
107         * Makefile.in (all): New target.
108         (bootstrap-prepare): Remove.
110         * Makefile.in ($(lisp)/progmodes/cc-mode.elc): Pass the .el file not
111         the .elc file to batch-byte-compile.
113         * progmodes/cc-mode.el (c-make-inherited-keymap): Only use
114         set-keymap-parents if set-keymap-parent doesn't exist.
116         * vc-bzr.el (vc-bzr-annotate-extract-revision-at-line):
117         Allow more than one space before the |.
119         * textmodes/rst.el: Fix up docstring conventions.
120         Move vars to before their first use.
121         (rst-mode): Don't mess with font-lock-support-mode.
122         (rst-suggest-new-decoration, rst-adjust-decoration):
123         Avoid CL's copy-list.
124         (rst-delete-entire-line): Use line-beginning-position.
125         (rst-position): New fun.
126         (rst-straighten-decorations): Use it instead of CL's position.
127         (rst-straighten-bullets-region): Avoid CL's mapcar*.
128         (rst-toc-mode): Use define-derived-mode.
129         (rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2):
130         Remove unused var `in-par'.  Use `point' rather than `point-marker'.
131         (rst-line-block-region): Reduce redundancy.  Use the `pfxarg' arg.
132         (rst-replace-lines): Simplify.
133         (auto-mode-alist): Use rst-mode for *.rst and *.rest files.
135         * simple.el (special-mode-map): New var.
136         (special-mode): New major mode.
138 2008-06-20  Dan Nicolaescu  <dann@ics.uci.edu>
140         * vc-mtn.el (vc-mtn-log-view-mode): Set log-view-per-file-logs and
141         log-view-file-re.
143         * vc.el (vc-dir-hide-up-to-date): Undo previous change.
144         (vc-switch-backend): Simplify.
145         (Todo): Remove solved items.
147         * vc-cvs.el (vc-cvs-parse-status, vc-cvs-parse-entry): Do not set
148         the vc-backend property.
150 2008-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
152         * emacs-lisp/checkdoc.el (checkdoc-start-section, checkdoc-error):
153         Bind inhibit-read-only since the buffer is always read-only.
155 2008-06-20  Ulf Jasper  <ulf@web.de>
157         * net/newst-treeview.el (newsticker-treeview-own-frame):
158         Change default value to nil.
159         (newsticker--treeview-list-add-item)
160         (newsticker--treeview-propertize-tag): Show item title in tooltip.
162 2008-06-20  Martin Blais  <blais@furius.ca>
163             Stefan Merten  <smerten@oekonux.de>
164             David Goodger  <goodger@python.org>
166         * textmodes/rst.el: New file.
168 2008-06-20  Sam Steingold  <sds@gnu.org>
170         * vc.el (vc-dir-hide-up-to-date): Accept a prefix argument to also
171         remove DIRECTORY entries.
173 2008-06-20  Eli Zaretskii  <eliz@gnu.org>
175         * makefile.w32-in (distclean): Depend on `clean'.
176         (clean): Delete calc/calc-loaddefs.el~ and eshell/esh-groups.el~.
177         (AUTOGENEL): Add $(lisp)/nxml/subdirs.el.
178         ($(lisp)/cus-load.el): Don't use `touch'.  Instead, generate an
179         empty cus-load.el with `echo', and include "Local Variables"
180         section to prevent the empty file from being compiled.
181         (cus-load.el-SH, cus-load.el-CMD): New SHELLTYPE-specific targets
182         that generate an empty cus-load.el.
184 2008-06-20  Juanma Barranquero  <lekktu@gmail.com>
186         * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
187         Don't copy ldefs-boot.el over loaddefs.el.
188         (bootstrap-clean): Remove loaddefs.el and don't depend on it.
189         (loaddefs.el-SH, loaddefs.el-CMD): Don't add autoloads and defvars
190         to loaddefs.el; they are not needed now.  Add coding cookie.
192 2008-06-20  Miles Bader  <miles@gnu.org>
194         * face-remap.el (face-remap-add-relative, face-remap-set-base):
195         Strip unnecessary list levels from SPECS.
196         (buffer-face-set, buffer-face-toggle):
197         Change argument from FACE to &rest SPECS, and strip unnecessary
198         list levels from SPECS.
199         (buffer-face-mode-invoke): Change argument from FACE to SPECS.
201 2008-06-20  Jason Rumney  <jasonr@gnu.org>
203         * international/fontset.el (setup-default-fontset): Specify script
204         for latin use of iso10646-1.  Fix use of lang tags.
206 2008-06-19  Miles Bader  <miles@gnu.org>
208         * face-remap.el (text-scale-increase): Start from zero if
209         text-scale-mode isn't enabled.
211 2008-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
213         * faces.el (face-set-after-frame-default): Re-apply explicit `font'
214         frame parameters after setting up the `default' face.
216 2008-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
218         * faces.el (face-set-after-frame-default): Don't exclude `default'.
220 2008-06-18  Glenn Morris  <rgm@gnu.org>
222         * mouse.el (buffer-face-mode-invoke): Declare.
224         * Makefile.in (ELCFILES): Add org/org-id.elc.
226         * calendar/holidays.el (calendar-cursor-holidays): Accept optional date.
227         * calendar/cal-menu.el (cal-menu-holidays-menu):
228         Use calendar-cursor-holidays rather than cal-menu-today-holidays.
229         (cal-menu-today-holidays): Remove function.
231         * calendar/cal-menu.el (cal-menu-holiday-window-suffix): Simplify.
232         (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
233         (cal-menu-list-holidays-previous-year, calendar-mouse-goto-date):
234         Remove unused functions.
235         (calendar-mouse-view-diary-entries): Use format rather than concat.
237         * calendar/cal-menu.el (cal-menu-x-popup-menu): Turn it into a macro.
238         (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
239         (calendar-mouse-print-dates): Adapt for cal-menu-x-popup-menu change.
241         * calendar/cal-menu.el (cal-menu-event-to-date): Remove function.
242         (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
243         (calendar-mouse-view-other-diary-entries, calendar-mouse-print-dates)
244         (cal-menu-set-date-title): Use calendar-cursor-to-date rather than
245         cal-menu-event-to-date.
247         * calendar/cal-html.el (cal-html-cursor-month, cal-html-cursor-year):
248         Handle mouse events.
249         * calendar/cal-tex.el (cal-tex-cursor-year)
250         (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
251         (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
252         (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
253         (cal-tex-cursor-week-monday, cal-tex-cursor-filofax-2week)
254         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily)
255         (cal-tex-cursor-day): Handle mouse events.  Rename ARG to N.
256         (cal-tex-cursor-month): Mark N as optional.
257         * calendar/cal-menu.el (calendar-mouse-tex-day)
258         (calendar-mouse-tex-week, calendar-mouse-tex-week2)
259         (calendar-mouse-tex-week-iso, calendar-mouse-tex-week-monday)
260         (calendar-mouse-tex-filofax-daily, calendar-mouse-tex-filofax-2week)
261         (calendar-mouse-tex-filofax-week, calendar-mouse-tex-month)
262         (calendar-mouse-tex-month-landscape, calendar-mouse-tex-year)
263         (calendar-mouse-tex-filofax-year, calendar-mouse-tex-year-landscape):
264         Remove functions.
265         (cal-menu-context-mouse-menu): Replace the above functions with the
266         cal-tex versions.  Add HTML submenu.
268 2008-06-17  Nick Roberts  <nickrob@snap.net.nz>
270         * progmodes/gdb-ui.el (gud-gdba-marker-filter): Don't switch to
271         text command mode.
272         (gdb): Explain that gud-gdb is needed for text command mode.
274 2008-06-17  Martin Rudalics  <rudalics@gmx.at>
276         * window.el (split-height-threshold): Remove spurious extra line.
278 2008-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
280         * calendar/calendar.el (calendar-cursor-to-date): Add argument `event'.
281         (calendar-set-mark):
282         * calendar/diary-lib.el (diary-insert-entry):
283         * calendar/solar.el (calendar-sunrise-sunset): Use it.
284         * calendar/cal-menu.el (calendar-mouse-sunrise/sunset)
285         (calendar-mouse-insert-diary-entry, calendar-mouse-set-mark): Delete.
286         (cal-menu-context-mouse-menu): Use calendar-set-mark,
287         diary-insert-entry, and calendar-sunrise-sunset instead.
289         * vc.el (vc-deduce-fileset): Add arg `only-files'.
290         (vc-next-action): Pass the new arg.
291         (vc-register): Don't use `only-files'.
292         Don't set `backup-inhibited' in the current buffer.
294 2008-06-17  Miles Bader  <miles@gnu.org>
296         * mouse.el (mouse-appearance-menu): Use buffer-face-mode.
298         * face-remap.el (buffer-face-mode-face)
299         (buffer-face-mode-remapping): New variables.
300         (buffer-face-mode, buffer-face-set, buffer-face-toggle)
301         (buffer-face-mode-invoke): New functions.
302         (variable-pitch-mode-remapping): Variable removed.
303         (variable-pitch-mode): Rewrite as an interface to `buffer-face-mode'.
305         * face-remap.el (internal-lisp-face-attributes): New variable.
306         (face-attrs-more-relative-p, face-remap-order): New functions.
307         (face-remap-add-relative): Use `face-remap-order'.
309 2008-06-17  Glenn Morris  <rgm@gnu.org>
311         * mouse.el (x-select-font): Declare.
313         * calendar/calendar.el (calendar-move-hook):
314         Add calendar-update-mode-line as an option.
315         (calendar-date-echo-text): New user option.
316         (calendar-generate-month): Set `day'.  Use calendar-date-echo-text.
317         (calendar-insert-indented): Simplify newline insertion.
318         (calendar-describe-mode): Remove unused function.
319         (calendar-mode-line-entry): New function.
320         (calendar-mode-line-format): Doc fix.  Use calendar-mode-line-entry.
321         Mark as risky.
322         (calendar-mouse-other-month): Remove function.
323         (calendar-other-month): Handle mouse events.
324         (calendar-goto-info-node): Call fit-window-to-buffer.
325         (calendar-mode): Use define-derived-mode.  Doc fix.
326         (calendar-update-mode-line): Tweak whitespace.
328 2008-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
330         * vc-dispatcher.el (vc-dir-child-files): Use vc-string-prefix-p.
331         (vc-dir-marked-only-files): vc-string-prefix-p.
333 2008-06-16  Nick Roberts  <nickrob@snap.net.nz>
335         * progmodes/gdb-ui.el (gdb-memory-set-address)
336         (gdb-memory-set-repeat-count): Allow keyboard bindings.
337         (gdb-memory-mode-map): Bind above functions respectively
338         to 'S' and 'N'.
340 2008-06-16  Derek Upham  <sand@blarg.net>  (tiny change)
342         * nxml/nxml-mode.el (nxml-mode): Use run-mode-hooks.
344 2008-06-16  Juanma Barranquero  <lekktu@gmail.com>
346         * log-view.el (vc-diff-internal): Declare for compiler.
348         * vc-bzr.el (log-view-per-file-logs):
349         * vc-svn.el (log-view-per-file-logs): Pacify byte compiler.
351 2008-06-15  Chong Yidong  <cyd@stupidchicken.com>
353         * mouse.el (mouse-appearance-menu-map): New var.
354         (mouse-appearance-menu): New function.
355         Bind it to S-down-mouse-1.
357 2008-06-15  Juri Linkov  <juri@jurta.org>
359         * info.el (Info-toc): Call Info-toc-nodes instead of Info-build-toc.
360         (Info-toc, Info-insert-toc): Increment nth's index to add PARENT
361         as the second element.
362         (Info-build-toc): Add PARENT element extracted from the Up pointer.
363         Don't print progress messages.
364         (Info-toc-nodes): New variable and function.
365         (Info-index-nodes): Optimize non-string file name case.
366         (Info-breadcrumbs-depth): Increment the default value from 3 to 4.
367         (Info-insert-breadcrumbs): Use the cached document structure instead
368         of visiting all ancestor nodes.  Remove the initial `>'.
370 2008-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
372         * log-view.el (log-view-diff-changeset): New function.
373         (log-view-mode-map, log-view-mode-menu): Bind it.
374         (log-view-per-file-logs, log-view-vc-fileset)
375         (log-view-vc-backend): New variables.
376         (log-view-find-revision, log-view-modify-change-comment)
377         (log-view-annotate-version): Throw an error if the log is for more
378         than one file and we can't find the current file.  Get the current
379         file from log-view-vc-fileset if necessary.
380         (log-view-diff): Get the current file from log-view-vc-fileset if
381         necessary.
383         * vc.el (vc-print-log): Set log-view-vc-fileset and log-view-vc-backend.
385         * vc-hg.el (vc-hg-log-view-mode): Call the log method only once.
386         (vc-hg-log-view-mode): Declare for compiler.
387         (vc-hg-log-view-mode): Set log-view-per-file-logs and
388         log-view-file-re.
389         (vc-hg-diff): If no file is passed, use default-directory for cwd.
391         * vc-bzr.el (vc-bzr-log-view-mode): Set log-view-per-file-logs.
393         * vc-svn.el (vc-svn-log-view-mode): New derived mode.
395 2008-06-15  Michael Albinus  <michael.albinus@gmx.de>
397         * net/tramp.el (tramp-handle-start-file-process):
398         Clear modification time of the connection buffer.
399         (tramp-sh-file-name-handler): Reset `tramp-locked' in case of error.
400         (tramp-open-connection-setup-interactive-shell): Flush cache, and
401         restart `tramp-maybe-open-connection' when the remote system has
402         been changed. Throw 'uname-changed event.
403         (tramp-maybe-open-connection): Catch it.
405         * net/tramp-cmds.el (tramp-cleanup-all-connections):
406         Reset `tramp-locked'.
408 2008-06-15  Ulf Jasper  <ulf@web.de>
410         * net/newst-treeview.el (newsticker--treeview-list-update)
411         (newsticker--treeview-item-update)
412         (newsticker--treeview-tree-update)
413         (newsticker-treeview-jump, newsticker-group-add-group)
414         (newsticker-group-move-feed, newsticker-group-delete-group):
415         Remove window dedication.
416         (newsticker--group-manage-orphan-feeds): Handle ill-valued
417         newsticker-groups.
418         (newsticker--treeview-tree-expand): Don't manage orphan feeds here.
420 2008-06-15  Andreas Schwab  <schwab@suse.de>
422         * vc-cvs.el (vc-cvs-status-extra-headers): Don't match newline
423         when parsing CVS/Repository.
425         * wdired.el (wdired-search-and-rename): Fix undocumented change.
427 2008-06-15  Ulf Jasper  <ulf@web.de>
429         * net/newst-plainview.el (newsticker-faces, newsticker-feed-face)
430         (newsticker-extra-face, newsticker-enclosure-face): Moved to
431         net/newst-reader.el.
433         * net/newst-reader.el (newsticker-faces, newsticker-feed-face)
434         (newsticker-extra-face, newsticker-enclosure-face): Moved from
435         net/newst-reader.el.
437 2008-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
439         * international/encoded-kb.el (encoded-kbd-self-insert-utf-8):
440         Catch and recover from case when the bytes we thought we were reading
441         turn out to be something else entirely, such as latin-1 chars from
442         quail.  See bug#396.
444 2008-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
446         * vc.el (vc-deduce-fileset): Check if the buffer has a file.
447         (vc-register): Call the backend function only once, instead of
448         once for each file.
449         (vc-next-action): Update call to vc-register.
450         (vc-dir-register): Remove function.
451         (vc-dir): Bind vc-register instead of vc-dir-register.
453 2008-06-14  Glenn Morris  <rgm@gnu.org>
455         * Makefile.in (ELCFILES): Add net/newst-*.el.
457 2008-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
459         * wdired.el (wdired-do-renames): New function.
460         (wdired-finish-edit): Use it to.
461         (wdired-preprocess-files): Don't hardcode (point-min) == 1.
463 2008-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
465         * info.el (Info-insert-breadcrumbs): Don't break in apropos and toc.
467 2008-06-14  Martin Rudalics  <rudalics@gmx.at>
469         * window.el (window--even-window-heights): Even window heights
470         only if the selected window is higher than WINDOW.
471         Reported by Stephen Berman <Stephen.Berman at gmx.net>.
473 2008-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
475         * info.el (Info-insert-breadcrumbs): Be careful to preserve history.
477 2008-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
479         * term/linux.el (terminal-init-linux): Load t-mouse.
481 2008-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
482                 Drew Adams  <drew.adams@oracle.com>
484         * info.el (Info-breadcrumbs-depth): New var.
485         (Info-insert-breadcrumbs): New function.
486         (Info-fontify-node): Use it.
487         (Info-mode-map): Move initialization into declaration.
489 2008-06-13  Ulf Jasper  <ulf.jasper@web.de>
491         Rename net/newsticker-*.el to net/newst-*.el.
492         * net/newst-backend.el: Rename from net/newsticker-backend.el.
493         * net/newst-plainview.el: Rename from net/newsticker-plainview.el.
494         * net/newst-reader.el: Rename from net/newsticker-reader.el.
495         * net/newst-ticker.el: Rename from net/newsticker-ticker.el.
496         * net/newst-treeview.el: Rename from net/newsticker-treeview.el.
497         * net/newsticker-backend.el: Rename to net/newst-backend.el.
498         * net/newsticker-plainview.el: Rename to net/newst-plainview.el.
499         * net/newsticker-reader.el: Rename to net/newst-reader.el.
500         * net/newsticker-ticker.el: Rename to net/newst-ticker.el.
501         * net/newsticker-treeview.el: Rename to net/newst-treeview.el.
503 2008-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
505         * progmodes/compile.el (compilation-start): Don't disable undo in
506         comint buffer.  Don't override the comint-filter with our own.
507         (compilation-filter): Change point's insertion-type.
509         * comint.el (comint-output-filter): Use copy-marker.
511 2008-06-13  David Reitter  <david.reitter@gmail.com>
513         * textmodes/flyspell.el (mail-mode-flyspell-verify):
514         Check message-signature-separator exists before using it.
516 2008-06-13  Dan Nicolaescu  <dann@ics.uci.edu>
518         * vc.el (vc-delete-file): Bind default-directory before calling
519         the backend.
520         (vc-annotate-show-diff-revision-at-line): Move most of the code to ...
521         (vc-annotate-show-diff-revision-at-line-internal): ... here.
522         New function.
523         (vc-annotate-show-changeset-diff-revision-at-line): New function.
524         (vc-annotate-mode-menu): Bind it.
526 2008-06-13  Jason Rumney  <jasonr@gnu.org>
528         * term/w32-win.el (mouse-set-font): Remove overridden function.
529         (w32-select-font): Declare as obsolete alias for x-select-font.
531 2008-06-13  Daniel Engeler  <engeler@gmail.com>
533         These changes add serial port access.
534         * term.el (term-update-mode-line): Modify.
535         (serial-port-is-file-p, serial-nice-speed-history)
536         (serial-no-speed, serial-mode-line-speed-menu)
537         (serial-mode-line-config-menu): New variables and constants.
538         (serial-name-history, serial-speed-history)
539         (serial-supported-or-barf, serial-read-name, serial-read-speed)
540         (serial-term, serial-speed, serial-mode-line-speed-menu-1)
541         (serial-mode-line-speed-menu, serial-update-speed-menu)
542         (serial-mode-line-config-menu-1, serial-mode-line-config-menu)
543         (serial-update-config-menu): New functions.
545 2008-06-13  Glenn Morris  <rgm@gnu.org>
547         * menu-bar.el (menu-set-font): Use fboundp rather than functionp.
549         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Doc fix.
551 2008-06-13  Kenichi Handa  <handa@m17n.org>
553         * cus-face.el (custom-face-attributes): Add :foundry.
555         * faces.el (set-face-attribute): Parse "FOUNDRY-FAMILY" here.
556         (face-x-resources): Add :foundry.
557         (face-valid-attribute-values): Likewise.
558         (face-attribute-name-alist): Likewise.
559         (describe-face): Likewise.
561 2008-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
563         * emacs-lisp/map-ynp.el (map-y-or-n-p): Accept non-char events.
565 2008-06-12  Chong Yidong  <cyd@stupidchicken.com>
567         * longlines.el (longlines-search-forward, longlines-search-backward)
568         (longlines-re-search-forward): Use a smarter search-spaces-regexp.
570 2008-06-12  Sam Steingold  <sds@gnu.org>
572         * vc.el (vc-rename-file): DTRT when the destination is a directory
573         name and the source is a file.
575 2008-06-12  Chong Yidong  <cyd@stupidchicken.com>
577         * menu-bar.el (menu-set-font): Rename x-font-dialog to x-select-font.
579 2008-06-12  Glenn Morris  <rgm@gnu.org>
581         * progmodes/f90.el (f90-beginning-of-subprogram)
582         (f90-end-of-subprogram): Only give a message when interactive.
584         * term/mac-win.el (x-toolkit-scroll-bars): Check bound.
586         * progmodes/cperl-mode.el (cperl-info-on-command):
587         Use display-pixel-height rather than x-display-pixel-height.
589         * mail/rmailedit.el (rmail-cease-edit):
590         * vc-dispatcher.el (vc-dir-mode): Check tool-bar-mode is bound.
592         * emulation/edt.el (edt-xserver):
593         * emulation/edt-mapper.el (edt-xserver): Use replace-regexp-in-string.
595         * emulation/edt-mapper.el: Drop test for Emacs < 19.
597         * mwheel.el (mouse-wheel-follow-mouse, mwheel-event-window):
598         Evaluate definitions when compiling.  Reverse tests.
600         * dframe.el (dframe-reposition-frame-emacs): Reorder test, and
601         use unless.
603         * menu-bar.el (w32-menu-bar-open): Declare for compiler.
605         * textmodes/artist.el (x-pointer-shape):
606         * term/x-win.el (x-parse-geometry, x-resource-name, accelerate-menu)
607         (x-open-connection, x-server-max-request-size, x-get-resource):
608         * term/w32console.el (x-setup-function-keys):
609         * term/w32-win.el (x-parse-geometry, x-resource-name)
610         (generate-fontset-menu, image-library-alist, x-open-connection)
611         (setup-default-fontset, set-fontset-font, setup-default-fontset)
612         (create-fontset-from-fontset-spec, create-fontset-from-x-resource)
613         (x-get-resource):
614         * term/mac-win.el (x-parse-geometry, x-resource-name)
615         (x-get-selection-internal, tool-bar-mode, set-fontset-font)
616         (new-fontset, x-display-list, x-open-connection, x-get-resource):
617         * progmodes/gud.el (tooltip-last-mouse-motion-event, tooltip-hide)
618         (tooltip-start-delayed-tip, tooltip-use-echo-area, tooltip-show)
619         (tooltip-strip-prompt, tooltip-expr-to-print, tooltip-event-buffer):
620         * progmodes/gdb-ui.el (tooltip-show, tooltip-use-echo-area)
621         (tooltip-identifier-from-point, define-fringe-bitmap):
622         * play/gamegrid.el (image-size):
623         * play/bubbles.el (image-size):
624         * mail/emacsbug.el (x-server-vendor, x-server-version):
625         * international/mule-util.el (internal-char-font):
626         * international/mule-diag.el (font-info, query-fontset, fontset-info)
627         (fontset-alias-alist, fontset-list, fontset-plain-name):
628         * international/mule-cmds.el (x-server-vendor, x-server-version):
629         * international/fontset.el (font-encoding-charset-alist)
630         (otf-script-alist, new-fontset, set-fontset-font)
631         (x-pixel-size-width-font-regexp, vertical-centering-font-regexp)
632         (fontset-list, query-fontset, x-get-resource):
633         * emulation/edt.el (x-server-vendor):
634         * emulation/edt-mapper.el (x-server-vendor):
635         * emacs-lisp/map-ynp.el (x-popup-dialog):
636         * emacs-lisp/lmenu.el (x-popup-dialog):
637         * x-dnd.el (x-window-property, x-change-window-property)
638         (x-get-selection-internal):
639         * woman.el (x-list-fonts):
640         * w32-fns.el (x-server-version):
641         * tooltip.el (x-show-tip, x-hide-tip):
642         * tool-bar.el (image-mask-p):
643         * thumbs.el (image-size):
644         * term.el (overflow-newline-into-fringe):
645         * subr.el (scroll-bar-scale):
646         * startup.el (x-get-resource, tool-bar-mode, image-size):
647         * select.el (x-get-selection-internal, x-own-selection-internal)
648         (x-disown-selection-internal):
649         * mouse.el (generate-fontset-menu):
650         * mouse-sel.el (x-select-text, x-cut-buffer-or-selection-value):
651         * image.el (image-library-alist):
652         * image-mode.el (image-size, image-refresh):
653         * image-dired.el (clear-image-cache):
654         * gs.el (x-display-mm-width, x-display-pixel-width)
655         (x-display-mm-height, x-display-pixel-height)
656         (x-change-window-property, x-display-grayscale-p, x-window-property):
657         * frame.el (tool-bar-mode, x-display-name, x-close-connection)
658         (x-focus-frame, x-list-fonts, x-display-screens)
659         (x-display-pixel-height, x-display-pixel-width, x-display-mm-height)
660         (x-display-mm-width, x-display-backing-store, x-display-save-under)
661         (x-display-planes, x-display-color-cells, x-display-visual-class):
662         * faces.el (internal-face-x-get-resource)
663         (internal-set-lisp-face-attribute-from-resource, x-bitmap-file-path)
664         (fontset-list, x-list-fonts, xw-color-defined-p, xw-color-values)
665         (xw-display-color-p, x-display-grayscale-p, x-get-resource)
666         (x-parse-geometry, x-create-frame, x-setup-function-keys)
667         (tool-bar-setup):
668         * doc-view.el (clear-image-cache, image-size, tooltip-show):
669         * dired.el (dnd-get-local-file-name, dnd-get-local-file-uri):
670         * dframe.el (x-display-pixel-width, x-display-pixel-height):
671         * descr-text.el (internal-char-font):
672         Define for compiler, for builds without X.
674 2008-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
676         * vc-rcs.el (vc-rcs-state-heuristic): Don't assume the file exists.
678 2008-06-11  Glenn Morris  <rgm@gnu.org>
680         * progmodes/fortran.el (fortran-end-of-subprogram): Check for a match
681         before trying to move there.
682         (fortran-calculate-indent): When fortran-check-all-num-for-matching-do
683         is non-nil, indent most terminating statements like loop body.
685         * calendar/diary-lib.el (diary-list-entries-2): Accept optional
686         Gregorian date, and add it, not the local date, to diary-entries-list.
687         (diary-list-entries-1): Pass Gregorian date to diary-list-entries-2.
689 2008-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
691         * progmodes/compile.el (compilation-filter): Fix up last change.
693         * term/linux.el (terminal-init-linux): Use gpm-mouse-enable.
695         * t-mouse.el (gpm-mouse-enable, gpm-mouse-disable): New functions.
696         (gpm-mouse-mode): Make it into a proper global minor mode.
698         * files.el (save-some-buffers-action-alist): Only use recursive-edit
699         if the user enabled recursive-minibuffers.
701         * emacs-lisp/map-ynp.el (map-y-or-n-p):
702         Add support for scroll-other-window.
704 2008-06-11  Jason Rumney  <jasonr@gnu.org>
706         * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
707         Use tmm-menubar if menu is disabled in this frame.
709         * menu-bar.el (menu-bar-open): Determine how to open menu bar
710         from frame type, per documentation.  Add w32 case.
712 2008-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
714         * minibuffer.el (completion--merge-suffix): New function.
715         (completion-basic-try-completion): Use it.
716         (completion-pcm--find-all-completions): Add argument `filter'.
717         (completion-pcm--filename-try-filter, completion-pcm--merge-try):
718         New functions.
719         (completion-pcm-try-completion): Use them.
721         * xt-mouse.el (turn-on-xterm-mouse-tracking)
722         (turn-off-xterm-mouse-tracking): Use terminal-list.
724         * cus-start.el (underline-minimum-offset): Rename from
725         x-underline-minimum-display-offset.
727 2008-06-10  David De La Harpe Golden  <david@harpegolden.net>  (tiny change)
729         * cus-start.el (x-underline-minimum-display-offset): Give it a type.
731 2008-06-10  Chong Yidong  <cyd@stupidchicken.com>
733         * mouse.el (mouse-select-font): New function.
735         * faces.el (face-spec-recalc): When the face is set using
736         Customize, avoid recalculating it twice.
738         * menu-bar.el (menu-set-font): New function.  Bind "Set Default
739         Font" menu item to it.  Apply selected font to all frames, and
740         make it savable.
741         (menu-bar-options-save): Save `default' font if changed.
743 2008-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
745         * ffap.el (ffap-string-at-point-mode-alist):
746         Use alpha rather than lower.
748         * dired.el (dired-insert-directory): Don't assume Unix-style dir names.
750         * subr.el (momentary-string-display): Use an overlay.
752         * progmodes/compile.el (compilation-mode):
753         Set window-point-insertion-type.
754         (compilation-filter): Don't use insert-before-markers any more.
755         * emacs-lisp/trace.el (trace-make-advice):
756         Set window-point-insertion-type in the trace buffer.
757         * startup.el (normal-top-level): Set window-point-insertion-type in
758         *Messages*.
759         * net/telnet.el (telnet-mode): Set window-point-insertion-type.
760         (telnet-filter): Don't use insert-before-markers any more.
761         * comint.el (comint-mode): Set window-point-insertion-type.
762         (comint-output-filter): Don't use insert-before-markers any more.
763         * button.el (make-text-button): Allow `start' to be a string.
765 2008-06-10  Juanma Barranquero  <lekktu@gmail.com>
767         * emacs-lisp/autoload.el (autoload-rubric):
768         Fix coding cookie not to force Unix EOL.
770 2008-06-10  Martin Rudalics  <rudalics@gmx.at>
772         * window.el (window--splittable-p, window--try-to-split-window):
773         Don't use with-selected-window to avoid messing up get-lru-window.
774         Reported by David Hansen <david.hansen@gmx.net>.
776 2008-06-10  Glenn Morris  <rgm@gnu.org>
778         * subr.el (locate-library): Doc fix.
780         * net/newsticker-treeview.el (w3m-toggle-inline-images): Declare.
781         (newsticker-treeview-tool-bar-map, newsticker-treeview-mode):
782         Check tool-bar-map is bound, for non-X builds.
784         * net/newsticker-reader.el (newsticker--next-item-image)
785         (newsticker--previous-item-image, newsticker--previous-feed-image)
786         (newsticker--next-feed-image, newsticker--mark-read-image)
787         (ewsticker--mark-immortal-image, newsticker--narrow-image)
788         (newsticker--get-all-image, newsticker--update-image)
789         (newsticker--browse-image): Check xpm images are available.
790         (newsticker--mark-read-image, newsticker--mark-immortal-image)
791         (newsticker--narrow-image, newsticker--get-all-image): Doc fix.
793         * net/newsticker-plainview.el (tool-bar-map): Don't declare.
794         (newsticker--plainview-tool-bar-map, newsticker-mode):
795         Check tool-bar-map is bound, for non-X builds.
796         (w3m-toggle-inline-image): Declare.
798         * net/newsticker-backend.el (tool-bar-map): Don't declare.
800         * emacs-lisp/autoload.el (autoload-rubric): Add coding cookie.
802         * finder.el (finder-font-lock-keywords): Handle ``quotes''.
803         (finder-compile-keywords): Move let to where needed.
804         (finder-mouse-face-on-line): Go back one more line if needed.
805         (finder-list-matches): Use cadr.
806         (finder-goto-xref): New function.
807         (finder-commentary): Add buttons to jump to foo.el libraries.
809 2008-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
811         * apropos.el (apropos-function, apropos-macro, apropos-command)
812         (apropos-variable, apropos-face, apropos-group, apropos-widget)
813         (apropos-plist): Add apropos-short-label property.
814         (apropos-multi-type): New variables.
815         (apropos-command, apropos-value): Set it.
816         (apropos-compact-layout): New custom.
817         (apropos-print, apropos-print-doc): Use it.
818         (apropos-print): Truncate lines.
820 2008-06-09  Kenichi Handa  <handa@m17n.org>
822         * international/fontset.el (font-encoding-alist):
823         Add an entry for "ascii-0".
825 2008-06-09  Jihyun Cho  <jihyun.jo@gmail.com>
827         * language/hanja-util.el (hanja-init-load): Show the message only
828         when loading a table.
830 2008-06-08  Ulf Jasper  <ulf.jasper@web.de>
832         * net/newsticker-treeview.el (newsticker-treeview):
833         * net/newsticker-plainview.el (newsticker-plainview):
834         Add autoload cookie.
836 2008-06-08  Ulf Jasper  <ulf.jasper@web.de>
838         * net/newsticker.el: Split up into newsticker-backend, -ticker,
839         -reader, -plainview, and -treeview.
840         (newsticker-version): Change to 1.99.
842         * net/newsticker-backend.el: New.  Move backend functionality from
843         newsticker.el to newsticker-backend.el.
844         (newsticker--download-logos): New.
845         (newsticker--sentinel-callback): New.
846         (newsticker--set-customvar): Remove.  Split up into specific
847         functions related to retrieval, ticker, buffer, and display.
848         (newsticker--set-customvar-retrieval): New.  Extracted from
849         `newsticker--set-customvar'.
850         (newsticker-retrieval): New.  Renamed from `newsticker-feed'.
851         (newsticker-url-list-defaults):
852         Use `newsticker--set-customvar-retrieval' for :set.  Change :group.
853         (newsticker-url-list): Doc changed. URL can be a function.
854         Use `newsticker--set-customvar-retrieval' for :set.  Change :group.
855         (newsticker-retrieval-method): New.
856         (newsticker-wget-name, newsticker-wget-arguments): Change :group.
857         (newsticker-retrieval-interval):
858         Use `newsticker--set-customvar-retrieval' for :set.  Change :group.
859         (newsticker-desc-comp-max): Change :group.
860         (newsticker--cache): Doc changed.
861         (newsticker--guid-to-string): New.
862         (newsticker--guid): Use `newsticker--guid-to-string'.
863         (newsticker--real-feed-name): New.
864         (newsticker--start-feed): New.  Extracted from `newsticker-start'.
865         (newsticker-start): Use `insert-file-contents' for reading cache.
866         Use `newsticker--start-feed'.
867         (newsticker--stop-feed): New.  Extracted from `newsticker-stop'.
868         (newsticker-stop): Check whether `newsticker-stop-ticker' is fbound.
869         Use `newsticker--stop-feed'.
870         (newsticker-save-item): New.
871         (newsticker--get-news-by-funcall): New.
872         (newsticker-get-news): Handle new retrieval methods.
873         (newsticker--sentinel): Use `newsticker--sentinel-work'.
874         (newsticker--sentinel-work): New.  Extracted from
875         `newsticker--sentinel'.  Use `newsticker--download-logos',
876         `newsticker--sentinel-callback'.
877         (newsticker--parse-atom-0.3): Use `newsticker--guid-to-string'.
878         (newsticker--parse-atom-1.0): Fix link determination.
879         (newsticker--parse-rss-0.91): Fix time determination.
880         (newsticker--parse-rss-0.92): Fix time determination.
881         (newsticker--parse-rss-2.0): Use `newsticker--guid-to-string'.
882         (newsticker--parse-generic-feed): New arg order in
883         `newsticker--cache-add'.
884         (newsticker--parse-generic-items): Fix for multiple items.
885         New arg order in `newsticker--cache-add'.
886         (newsticker--forget-preformatted): Check whether
887         `newsticker--buffer-set-uptodate' is fbound.
888         (newsticker--decode-iso8601-date): Handle fractions of seconds.
889         (newsticker--decode-rfc822-date): Partial timezone handling.
890         (newsticker--cache-contains): Fix guid problem.
891         (newsticker--cache-add): Swap args AGE and TIME.  Fix guid problem.
892         (newsticker--cache-save): New.
893         (newsticker--cache-update): Use temp buffer.
894         (newsticker--stat-num-items): Allow multiple AGE args.
895         (newsticker--stat-num-items-total): New.
896         (newsticker--opml-import-outlines): New.
897         (newsticker-opml-import): Use `newsticker--opml-import-outlines'.
898         (newsticker--do-run-auto-mark-filter): Doc changed.
899         (newsticker-retrieve-random-message): New.
901         * net/newsticker-ticker.el: New.  Move ticker functionality from
902         net/newsticker.el to net/newsticker-ticker.el.
903         (newsticker--ticker-timer): Rename `newsticker--display-timer' to
904         `newsticker--ticker-timer'.
905         (newsticker-ticker-running-p): Rename `newsticker--display-timer'
906         to `newsticker--ticker-timer'.
907         (newsticker--set-customvar-ticker): New.  Extracted from
908         `newsticker--set-customvar'.
909         (newsticker-ticker-interval): Rename `newsticker-display-interval'
910         to `newsticker-ticker-interval'.  Use `newsticker--set-customvar-ticker
911         for :set.  Change :group.
912         (newsticker-scroll-smoothly): Doc changed.  Change :group.
913         (newsticker-hide-immortal-items-in-echo-area)
914         (newsticker-hide-old-items-in-echo-area)
915         (newsticker-hide-obsolete-items-in-echo-area):
916         Use `newsticker--set-customvar-ticker for :set.  Change :group.
917         (newsticker-start-ticker): Rename `newsticker--display-timer' to
918         `newsticker--ticker-timer'.  Rename `newsticker-display-interval'
919         to `newsticker-ticker-interval'.
920         (newsticker-stop-ticker): Rename `newsticker--display-timer' to
921         `newsticker--ticker-timer'.
923         * net/newsticker-reader.el: New.  Move reader functionality from
924         net/newsticker.el to net/newsticker-reader.el.
925         (newsticker--set-customvar-formatting): New.  Extracted from
926         `newsticker--set-customvar'.
927         (newsticker-reader, newsticker-frontend): New.
928         (newsticker-enable-logo-manipulations): Change :group.
929         (newsticker-justification): Use `newsticker--set-customvar-formatting'
930         for :set.  Change :group.
931         (newsticker-use-full-width): Use `newsticker--set-customvar-formatting'
932         for :set.  Change :group.
933         (newsticker-html-renderer): Doc changed.
934         Use `newsticker--set-customvar-formatting' for :set.  Change :group.
935         (newsticker-date-format):
936         Use `newsticker--set-customvar-formatting' for :set.  Change :group.
937         (newsticker--insert-enclosure):
938         Rename `newsticker--buffer-insert-enclosure' to
939         `newsticker--insert-enclosure'.  Add keymap arg.
940         (newsticker--print-extra-elements):
941         Rename `newsticker--buffer-print-extra-elements' to
942         `newsticker--print-extra-elements'.  Add keymap arg.
943         (newsticker--do-print-extra-element):
944         Rename `newsticker--buffer-do-print-extra-element' to
945         `newsticker--do-print-extra-element'.  Add keymap arg.
946         (newsticker-show-news): Use `newsticker-frontend'.
948         * net/newsticker-plainview.el: New.  Move plainview functionality
949         from net/newsticker.el to net/newsticker-reader.el.
950         (newsticker-plainview): New.
951         (newsticker--set-customvar-sorting): New.  Extracted from
952         `newsticker--set-customvar'.
953         (newsticker-sort-method): Use `newsticker--set-customvar-sorting
954         for :set. Changed :group.
955         (newsticker-heading-format, newsticker-item-format)
956         (newsticker-desc-format, newsticker-statistics-format):
957         Use `newsticker--set-customvar-formatting for :set.  Change :group.
958         (newsticker-faces): Change :group.
959         (newsticker-default-face): Enable again.
960         (newsticker-hide-old-items-in-newsticker-buffer)
961         (newsticker-show-descriptions-of-new-items):
962         Use `newsticker--set-customvar-buffer' for :set.  Change :group.
963         (newsticker-show-all-news-elements): Change :group.
964         (newsticker-plainview-hooks): New.
965         (newsticker-select-item-hook, newsticker-select-feed-hook)
966         (newsticker-buffer-change-hook, newsticker-narrow-hook): Change :group.
967         (newsticker--plainview-tool-bar-map): Rename `newsticker--tool-bar-map'
968         to `newsticker--plainview-tool-bar-map'.
969         (newsticker--url-keymap): Add mouse-1 binding.
970         (newsticker-plainview): New.
971         (newsticker-mark-all-items-of-feed-as-read): Change doc.
972         (newsticker--buffer-do-insert-text): Use renamed
973         newsticker--[buffer-]insert-enclosure and
974         newsticker--[buffer-]print-extra-elements.
975         (newsticker--buffer-set-faces): Use newsticker-default-face.
977         * net/newsticker-treeview.el: New.
979 2008-06-08  Andreas Schwab  <schwab@suse.de>
981         * vc-dispatcher.el (vc-dir-children-marked-p): Fix child check.
983         * vc-cvs.el (vc-cvs-dir-status): Pass -f to cvs.
985         * vc-dispatcher.el (vc-dir-move-to-goal-column): Don't move in an
986         empty line.
988         * minibuffer.el (minibuffer-message): Bind inhibit-quit around sit-for.
990 2008-06-08  Martin Rudalics  <rudalics@gmx.at>
992         * window.el (split-height-threshold, split-width-threshold):
993         Add choice nil.
994         (split-window-preferred-function): Allow either nil or a function.
995         (window--splittable-p, window--try-to-split-window):
996         Handle changed option values.
998         (window--frame-usable-p): Handle nil argument.
1000         (display-buffer): Call get-lru-window when pop-up-windows is nil
1001         and window can't be split.
1003 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
1005         * uniquify.el (uniquify-get-proposed-name): Handle remote files.
1007         * net/tramp.el (top): Quote feature names.  Remove
1008         `tramp-rfn-eshadow-setup-minibuffer' from
1009         `rfn-eshadow-setup-minibuffer-hook' when unloading.
1010         (tramp-read-passwd): There is only one call to
1011         `auth-source-user-or-password' needed.  Pacify byte compiler.
1013 2008-06-08  Andreas Schwab  <schwab@suse.de>
1015         * window.el (display-buffer): Use lru window if current window
1016         cannot be split.
1018 2008-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1020         * apropos.el (apropos-library): New command and new button.
1021         (apropos-library-button): New function.
1023         * apropos.el: Remove spurious * in docstrings.
1024         (apropos-label-face): Use variable pitch.
1025         (apropos-print): Use dolist and with-current-buffer.
1026         (apropos-print-doc): Use when.
1028         * window.el (special-display-p, display-buffer):
1029         Fix up C->Elisp transcription error.
1031 2008-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1033         * emacs-lisp/bytecomp.el (byte-compile-current-group): New var.
1034         (byte-compile-file): Initialize it.
1035         (byte-compile-nogroup-warn): Keep track of the current group.
1037 2008-06-08  Glenn Morris  <rgm@gnu.org>
1039         * Makefile.in (compile, compile-always, bootstrap-prepare):
1040         Explictly pass EMACS to sub-makes that use it, for non-GNU makes.
1042 2008-06-07  Jihyun Cho  <jihyun.jo@gmail.com>
1044         * language/hanja-util.el (hanja-init-load): Use a char-table for
1045         hanja-table.
1046         (hangul-to-hanja-char): Adjust for the above change.
1048 2008-06-07  Glenn Morris  <rgm@gnu.org>
1050         * finder.el (finder-compile-keywords): Use lm-keywords-list rather than
1051         lm-keywords.
1053         * mail/sendmail.el (mail-interactive): Add :version.
1055         * term/linux.el (terminal-init-linux): Use gpm-mouse-mode rather than
1056         obsolete alias.
1058         * ediff-merg.el, strokes.el, wid-edit.el, emacs-lisp/lisp-mnt.el:
1059         * emulation/edt-mapper.el, eshell/em-dirs.el, eshell/em-glob.el:
1060         * eshell/em-ls.el, eshell/em-unix.el, eshell/esh-cmd.el:
1061         * eshell/esh-io.el, eshell/esh-opt.el, eshell/esh-test.el:
1062         * eshell/esh-util.el, international/mule-cmds.el:
1063         * international/mule-diag.el, mail/smtpmail.el, net/netrc.el:
1064         * net/tls.el, progmodes/etags.el, textmodes/page-ext.el:
1065         Remove unnecessary eval-when-compiles and eval-and-compiles.
1067         * Makefile.in (bootstrap-clean): Run autogen-clean.
1068         (maintainer-clean): No need to run autogen-clean now it is included in
1069         bootstrap-clean.
1071 2008-06-06  Miles Bader  <miles@gnu.org>
1073         * Makefile.in (ELCFILES): Add gnus/nndir.elc.
1075 2008-06-06  Chong Yidong  <cyd@stupidchicken.com>
1077         * menu-bar.el (menu-bar-options-menu): Add Menu entry for
1078         longlines mode.
1080         * replace.el (replace-search-function)
1081         (replace-re-search-function): New vars.
1082         (perform-replace): Use them.
1084         * longlines.el (longlines-re-search-forward): New function.
1085         (longlines-mode): Bind replace-search-function and
1086         replace-re-search-function, to ensure that replacement commands
1087         treat newlines as spaces.
1088         (longlines-show-effect): Default to a pilcrow sign.
1090 2008-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1092         * help.el (function-called-at-point):
1093         * help-fns.el (variable-at-point): Use emacs-lisp-mode-syntax-table
1094         even when calling find-tag-default.
1096 2008-06-06  Daniel Colascione  <danc@merrillpress.com>
1098         * nxml/nxml-mode.el (nxml-syntax-highlight-flag)
1099         (nxml-fontify-chunk-size, nxml-clear-face, nxml-set-fontified)
1100         (nxml-clear-fontified, nxml-fontify, nxml-fontify1)
1101         (nxml-fontify-buffer, nxml-do-fontify):
1102         Remove obsolete variables and functions.
1103         (nxml-font-lock-keywords, nxml-set-face, nxml-mode)
1104         (nxml-degrade, nxml-after-change, nxml-after-change1)
1105         (nxml-extend-region, nxml-extend-after-change-region)
1106         (nxml-extend-after-change-region1, nxml-fontify-matcher)
1107         (nxml-toggle-char-ref-extra-display): Use font-lock, and
1108         font-lock-extend-region-functions in particular, to fontify
1109         nxml-mode buffers.
1110         (nxml-debug-region): New debugging helper function.
1112         * nxml/nxml-rap.el (nxml-clear-inside, nxml-set-inside)
1113         (nxml-scan-after-change, nxml-move-tag-backwards):
1114         Adapt for font-lock changes.
1116         * nxml/nxml-util.el (nxml-debug, nxml-debug-change)
1117         (nxml-debug-set-inside, nxml-debug-clear-inside):
1118         New debugging functions.
1119         (nxml-with-degradation-on-error): New helper macro.
1121 2008-06-06  Martin Rudalics  <rudalics@gmx.at>
1123         * window.el (display-buffer): Remove dead call to get-lru-window.
1125 2008-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1127         * mail/sendmail.el (mail-interactive): Change default.
1129 2008-06-05  John Paul Wallington  <jpw@pobox.com>
1131         * bindings.el (completion-ignored-extensions):
1132         Add .p64fsl, .d64fsl, and .dx64fsl.
1134 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1136         * ffap.el (ffap-prompter): Don't use the region.
1138 2008-06-05  Sam Steingold  <sds@gnu.org>
1140         * vc-cvs.el (vc-cvs-registered): Consider a directory with a CVS
1141         subdirectory to be registered.
1143 2008-06-05  Martin Rudalics  <rudalics@gmx.at>
1145         * window.el (display-buffer-function, special-display-p)
1146         (special-display-buffer-names, special-display-regexps)
1147         (special-display-function, same-window-p, same-window-buffer-names)
1148         (same-window-regexps, pop-up-frames, display-buffer-reuse-frames)
1149         (pop-up-frame-function, pop-up-windows, even-window-heights)
1150         (split-window-preferred-function, split-height-threshold)
1151         (window--display-buffer-1, display-buffer, pop-to-buffer):
1152         Move from window.c and buffer.c.
1153         (window--splittable-p, window--try-to-split-window)
1154         (window--frame-usable-p, window--display-buffer-2)
1155         (window--even-window-heights): New functions.
1156         (split-width-threshold): New option.
1157         (split-window-preferred-horizontally): Remove.
1159         * cus-start.el: Remove corresponding declarations.
1161 2008-06-05  Sam Steingold  <sds@gnu.org>
1163         * vc.el (vc-update): Use `save-some-buffers' instead of signaling
1164         an error on modified buffers.
1166 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1168         * progmodes/etags.el (tags-verify-table): Be careful to use and update
1169         tags-file-name and tags-table-list from the right buffer.
1170         (tags-table-check-computed-list, tags-table-extend-computed-list)
1171         (find-tag-noselect): Use with-current-buffer.
1173         * emacs-lisp/trace.el (trace-entry-message, trace-exit-message):
1174         Use print-circle.
1176         * minibuffer.el (minibuffer-local-must-match-filename-map):
1177         Declare obsolete alias for the old name.
1179         * abbrev.el (unexpand-abbrev): Better preserve markers.
1181 2008-06-05  Glenn Morris  <rgm@gnu.org>
1183         * emacs-lisp/autoload.el (autoload-rubric): New function,
1184         extracted from autoload-ensure-default-file.
1185         (autoload-ensure-default-file): Use autoload-rubric.
1187         * cus-dep.el (generated-custom-dependencies-file): Doc fix.
1188         (custom-dependencies-no-scan-regexp): New variable.
1189         (custom-make-dependencies): Use with-temp-buffer and autoload-rubric.
1190         Don't scan files matching custom-dependencies-no-scan-regexp.
1191         Disable undo in the output buffer.  Remove kept-new-versions wackiness.
1193         * finder.el (finder-headmark): Initialize and add doc string.
1194         (generated-finder-keywords-file): Doc fix.
1195         (finder-no-scan-regexp): New variable.
1196         (finder-compile-keywords): Use a single let binding.
1197         Disable undo in the output buffer.  Use autoload-rubric.
1198         Use mapc rather than mapcar.  Don't scan files matching
1199         finder-no-scan-regexp.  Use with-temp-buffer.  Use expand-file-name
1200         rather than concat.  Use directory-files to do regexp matching.
1201         No need to require jka-compr.
1202         (finder-list-keywords): Remove un-needed set-buffer.  Disable undo.
1203         (finder-list-matches): Disable undo.
1204         (finder-commentary): Use let rather than let*.  Disable undo.
1205         (finder-current-item): Use zerop.
1206         (finder-mode): Use define-derived-mode.
1207         (finder-exit): Doc fix.  Use dolist.
1209         * Makefile.in ($(lisp)/cus-load.el): Remove unnecessary rule.
1210         (custom-deps): Don't require $(lisp)/cus-load.el.
1211         (custom-deps, finder-data): Don't depend on autoloads.
1212         Should not be needed now, and doing so was causing make install to
1213         re-dump emacs post-bootstrap.
1214         (bootstrap-after): Don't run update-elclist, since modifying Makefile.in
1215         mid-build forces some things to be rebuilt.
1217 2008-06-05  Miles Bader  <miles@gnu.org>
1219         * face-remap.el
1220         (face-remap-add-relative): Renamed from `add-relative-face-remapping'.
1221         (face-remap-remove-relative): Renamed from
1222         `remove-relative-face-remapping'.
1223         (face-remap-reset-base): Renamed from
1224         `set-default-base-face-remapping'.
1225         (face-remap-set-base): Renamed from `set-base-face-remapping'.
1226         (text-scale-increase): Renamed from `increase-buffer-face-height'.
1227         (text-scale-decrease): Renamed from `decrease-buffer-face-height'.
1228         (text-scale-adjust): Renamed from `adjust-buffer-face-height'.
1230         * face-remap.el (variable-pitch-mode): Autoload.
1232 2008-06-04  Sam Steingold  <sds@gnu.org>
1234         * vc-hg.el (vc-hg-status-extra-header, vc-hg-status-extra-headers):
1235         Generate extra status headers for a Mercurial tree.
1237 2008-06-04  John Paul Wallington  <jpw@pobox.com>
1239         * echistory.el (electric-history-map): Define within defvar.
1240         Add docstring.
1242         * font-lock.el (font-lock-turn-off-thing-lock)
1243         (font-lock-after-fontify-buffer, font-lock-after-unfontify-buffer):
1244         Use `bound-and-true-p'.
1245         (cpp-font-lock-keywords-source-directives, cpp-font-lock-keywords):
1246         Doc fixes.
1248         * international/ccl.el (define-ccl-program): Add `doc-string'
1249         declaration.
1251 2008-06-04  Juanma Barranquero  <lekktu@gmail.com>
1253         * face-remap.el (variable-pitch-mode): Reflow docstrings.
1254         (text-scale-mode, adjust-buffer-face-height): Fix typos in docstrings.
1256 2008-06-04  Trent W. Buck  <trentbuck@gmail.com>  (tiny change)
1258         * emacs-lisp/rx.el (rx): Doc fix.
1260 2008-06-04  Markus Triska  <markus.triska@gmx.at>
1262         * image-mode.el (image-mode-map): Add doc-view-inspired bindings.
1264 2008-06-04  Miles Bader  <miles@gnu.org>
1266         * face-remap.el (adjust-buffer-face-height): New function.
1267         Add autoloaded keybindings in ctl-x-map.
1268         (increase-buffer-face-height, decrease-buffer-face-height):
1269         Simplify interactive spec to just "p".  Remove autoloaded keybindings.
1271 2008-06-03  Chong Yidong  <cyd@stupidchicken.com>
1273         * simple.el (line-move-1): If we did not move as far as desired,
1274         ensure that point-left and point-entered hooks are called.
1276 2008-06-03  Sam Steingold  <sds@gnu.org>
1278         * vc-cvs.el (vc-cvs-status-extra-headers): Remove extraneous newlines.
1280 2008-06-03  John Paul Wallington  <jpw@pobox.com>
1282         * progmodes/make-mode.el (makefile-cleanup-continuations)
1283         (makefile-warn-suspicious-lines, makefile-warn-continuations):
1284         Use `derived-mode-p'.
1286 2008-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1288         * Makefile.in (update-elclist): Impose a fixed collation for sorting.
1289         (ELCFILES): Update.
1291 2008-06-03  Miles Bader  <miles@gnu.org>
1293         * face-remap.el: New file.
1294         * Makefile.in (ELCFILES): Add face-remap.elc.
1296 2008-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1298         * progmodes/flymake.el (flymake-process-filter): Make sure the source
1299         buffer isn't dead.
1301         * obsolete/bg-mouse.el, obsolete/float.el, obsolete/hilit19.el,
1302         * obsolete/lselect.el, obsolete/mlsupport.el, obsolete/ooutline.el,
1303         * obsolete/profile.el, obsolete/rsz-mini.el, obsolete/uncompress.el,
1304         * obsolete/auto-show.el, obsolete/hscroll.el:
1305         Remove packages that were obsolete in Emacs-20, or that were obsolete
1306         in Emacs-21 and do not contain any more code.
1308         * vc-dispatcher.el (vc-dir-menu-map-filter): Don't fail if
1309         vc-client-mode is not set.
1311         * image-mode.el (image-mode-map): Suppress key map and bind `q'.
1312         * doc-view.el (doc-view-mode-map): Inherit from image-mode-map.
1314         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords): Try to be
1315         yet a bit more clever at distinguishing / from /.
1317 2008-06-03  Kenichi Handa  <handa@m17n.org>
1319         * Makefile.in (ELCFILES): Add $(lisp)/language/hanja-util.elc.
1321 2008-06-03  Jihyun Cho  <jihyun.jo@gmail.com>
1323         * language/hanja-util.el: New file.
1325 2008-06-03  Glenn Morris  <rgm@gnu.org>
1327         * progmodes/f90.el (f90-typedef-matcher, f90-looking-at-type-like):
1328         Check that end-of-word follows "type".
1330 2008-06-02  Daiki Ueno  <ueno@unixuser.org>
1332         * epa-file.el (epa-file-write-region): Write the entire buffer
1333         content if START is nil.
1335 2008-06-01  Thomas Morgan  <tlm@thomasmorgan.net>  (tiny change)
1337         * select.el (x-get-selection): Fix typo.
1339 2008-06-01  Juanma Barranquero  <lekktu@gmail.com>
1341         * descr-text.el (describe-text-sexp): Use `string-match-p'.  Simplify.
1342         (describe-char): Use `looking-at-p', `string-match-p' when possible.
1344 2008-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1346         * tar-mode.el (tar-header-block-summarize): Ensure one space around
1347         user&group.
1349 2008-05-31  John Paul Wallington  <jpw@pobox.com>
1351         * help-fns.el (describe-variable-custom-version-info):
1352         Handle dotted `package-version' info.
1354 2008-05-31  Juanma Barranquero  <lekktu@gmail.com>
1356         * icomplete.el (icomplete-get-keys): Doc fix.  Use `when'.
1358 2008-05-31  Dan Nicolaescu  <dann@ics.uci.edu>
1360         * vc-cvs.el (vc-cvs-after-dir-status): Support spaces in file
1361         names and improve support for unregistered files.
1363 2008-05-31  Glenn Morris  <rgm@gnu.org>
1365         * Makefile.in (compile-last): Replace tr in `els' assignment with sed.
1366         Remove shell variable `elc'.  Split tests to hopefully be more portable.
1367         Fix `sel' assignment.
1369 2008-05-30  Juanma Barranquero  <lekktu@gmail.com>
1371         * minibuffer.el (completion-table-dynamic): Doc fix.
1373 2008-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
1375         * vc-cvs.el (vc-cvs-state-heuristic, vc-cvs-parse-status):
1376         Try and return `unregistered' when applicable.
1378         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
1379         Don't encourage naming variables with "-flag".
1381 2008-05-30  Glenn Morris  <rgm@gnu.org>
1383         * Makefile.in (update-elclist): Hide the warning when it does not apply,
1384         make it milder when it does.
1385         (autogen-clean): New target.
1386         (maintainer-clean): Use autogen-clean.
1388         * calendar/diary-lib.el (diary-display-function): New name for
1389         diary-display-hook.  Keep old name as obsolete alias.  Doc fix.
1390         Change custom type and version.
1391         (diary-list-entries-hook, diary-list-entries, diary-simple-display)
1392         (diary-fancy-display): Doc fixes.
1393         (diary-list-entries, diary-include-other-diary-files)
1394         (diary-mail-entries):
1395         Use diary-display-function rather than diary-display-hook.
1397         * calendar/appt.el (appt-check): Use diary-display-function rather than
1398         diary-display-hook.
1399         * calendar/cal-x.el (calendar-dedicate-diary): Update for
1400         diary-display-function replacing diary-display-hook.
1401         * org/org-agenda.el (org-get-entries-from-diary): Also set
1402         diary-display-function.
1404         * calendar/cal-html.el (cal-html-list-diary-entries):
1405         * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
1406         * calendar/cal-tex.el (cal-tex-list-diary-entries): Use LIST-ONLY
1407         argument of diary-list-entries rather than setting diary-display-hook.
1409 2008-05-30  Kenichi Handa  <handa@m17n.org>
1411         * international/mule-conf.el (utf-8-with-signature): Renamed from
1412         utf-8-sig.
1413         (utf-8-auto): Adjusted for the above change.
1415         * international/mule-diag.el (describe-font): Don't check fontset
1416         here, and just call font-info.  Get the default font by from the
1417         default face.
1419 2008-05-29  Kenichi Handa  <handa@m17n.org>
1421         * international/mule-conf.el (utf-8-sig, utf-8-auto):
1422         New coding systems.
1424         * international/mule.el (define-coding-system): Accept :bom for utf-8.
1426 2008-05-29  Espen Wiborg  <espen.wiborg@telio.no>  (tiny change)
1428         * international/utf-7.el (utf-7-encode): Use the right escape char
1429         depending on imap/nonimap encoding.
1431 2008-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1433         * minibuffer.el (completion-pcm-all-completions): Add the base-size.
1435 2008-05-29  Juanma Barranquero  <lekktu@gmail.com>
1437         * icomplete.el (icomplete-prospects-height): Add :group.
1439 2008-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1441         * icomplete.el (icomplete-prospects-length): Make obsolete.
1442         (icomplete-prospects-height): New var.
1443         (icomplete-completions): Use it.
1445 2008-05-29  David Kastrup  <dak@gnu.org>
1447         * autoinsert.el (auto-insert): Add :link.
1449 2008-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1451         * tar-mode.el (tar-header): New field `header-start'.
1452         (tar-header-block-tokenize): Set it when useful.
1453         Drop "GNUtar " magic value, which even GNU Tar doesn't know about.
1454         (tar-header-data-end): New function.
1455         (tar-summarize-buffer): Use it.
1456         (tar-next-line): Fix goal column for long usernames.
1457         (tar-expunge-internal): Use header-start.
1458         (tar-rename-entry): Handle ustar-style long names.
1459         (tar-alter-one-field): Add optional `descriptor' argument.
1460         (tar-subfile-save-buffer): Use it.
1462 2008-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1464         * tar-mode.el (tar-header): New field `header-start'.
1465         (tar-header-block-tokenize): Set header-start for longlink entries.
1466         (tar-expunge-internal): Use header-start to expunge longlink entries.
1468         * files.el (hack-local-variables): Don't signal an error if the local
1469         variable section is not properly terminated.
1471         * emacs-lisp/easymenu.el (easy-menu-convert-item)
1472         (easy-menu-convert-item-1): Move the duplicate-generation outside of
1473         the caching so it also works for identical entries.
1475         * tar-mode.el (tar-summarize-buffer): Fix reporter initialization.
1476         (tar-mode): Use write-region-annotate-functions rather than
1477         write-contents-functions.
1478         (tar-extract): Remove unused var `pos'.
1479         (tar-subfile-save-buffer): Remove unused var `following-descs'.
1480         (tar-mode-write-file): Remove.
1481         (tar-write-region-annotate): New function.
1483         * progmodes/flymake.el (flymake-save-buffer-in-file):
1484         * shadowfile.el (shadow-copy-file):
1485         * arc-mode.el (archive-*-write-file-member):
1486         * files.el (diff-buffer-with-file):
1487         * subr.el (with-temp-file): Pass nil to write-region.
1488         * jka-compr.el (jka-compr-write-region): Preserve `start's nullness.
1490         * doc-view.el (doc-view-mode-map): Bind `q' to quit-window, as is
1491         the custom.
1493         * files.el (basic-save-buffer-2): Pass nil rather than (point-min)
1494         to write-region.
1496 2008-05-28  Glenn Morris  <rgm@gnu.org>
1498         * Makefile.in (update-elclist): Work around non-portability of "\"
1499         in various implementations of echo.
1501 2008-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1503         * international/mule-diag.el (describe-current-coding-system):
1504         Don't assume selection-coding-system is always defined.
1506         * tar-mode.el: Use defstruct and markers.
1507         (tar-setf): Remove.
1508         (tar-header): Use defstruct.  Add `data-start' field.
1509         (make-tar-desc, tar-desc-tokens): Remove, folded into tar-header.
1510         (tar-desc-data-start): Remove (now called tar-header-data-start).
1511         (tar-roundup-512): New fun.
1512         (tar-header-block-tokenize): Receive a buffer position rather than
1513         a string.  Handle @longLink here, be more careful about it.
1514         Create a marker for data-start.
1515         (tar-summarize-buffer): Don't handle @LongLink here any more.
1516         (tar-expunge-internal, tar-subfile-save-buffer): Don't update
1517         data-start on the following entries any more.
1518         (tar-chown-entry, tar-chgrp-entry): Use read-number.
1520         * tar-mode.el: Use buffer-swap-text to separate summary and raw data.
1521         (tar-header-offset): Remove.
1522         (tar-parse-info, tar-header-offset, tar-file-name-coding-system):
1523         Not permanent any more.
1524         (tar-data-buffer): New var.
1525         (tar-data-swapped-p, tar-change-major-mode-hook)
1526         (tar-mode-kill-buffer-hook): New funs.
1527         (tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
1528         (tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
1529         (tar-clear-modification-flags, tar-alter-one-field)
1530         (tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
1531         Change accordingly.
1533 2008-05-27  Dan Nicolaescu  <dann@ics.uci.edu>
1535         * vc-dispatcher.el (vc-directory-resynch-file): Rename to ...
1536         (vc-dir-resynch-file): ... this.  Update callers.
1537         Use vc-string-prefix-p.  Ignore directory args.
1538         (vc-string-prefix-p): CSE.
1539         (vc-resynch-buffer): Restore conditional.
1541         * vc-hooks.el (vc-after-save): Improve test.
1542         (vc-mode-line): Fix indentation.
1544 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
1546         * calendar/parse-time.el (parse-time-months)
1547         (parse-time-weekdays): Add long-form month and day names.
1549 2008-05-27  Glenn Morris  <rgm@gnu.org>
1551         * Makefile.in (update-elclist): Make errors in final sed non-fatal.
1553 2008-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1555         * vc-dispatcher.el (vc-string-prefix-p): New function.
1556         (vc-dir-parent-marked-p): Use it.
1558 2008-05-27  Dan Nicolaescu  <dann@ics.uci.edu>
1560         * vc.el (Problems): Remove fixed issues.
1561         (vc-expand-dirs): Avoid returning directories.
1562         (vc-dir): Fix C-x v v binding.
1563         (vc-make-backend-object): Fix name.
1564         (vc-dir-show-fileentry): Fix docstring.
1565         (vc-dir-refresh): Use vc-dir-backend.  Fix docstring.
1566         (vc-dir-refresh-files): Use vc-dir-backend.  Fix docstring.
1567         Reset the state for directories.
1568         (vc-dir-headers): Align labels.
1569         (vc-default-status-printer): Do no call prettify-state-info.
1570         (vc-deduce-fileset): Replace implementation with one based on a
1571         working older version.
1572         (vc-next-action): Use the new form of vc-deduce-fileset.
1573         Fix dealing with unregistered files.
1575         * vc-dispatcher.el (vc-resynch-window): Fix mode-line updating.
1576         (vc-dir-menu-map): Fix menu title for the menu bar and the popup menu.
1577         (vc-dir-child-files): New function.
1578         (vc-dir-node-directory): New function.
1579         (vc-dir-update, vc-dir-parent-marked-p)
1580         (vc-dir-children-marked-p, vc-dir-mark-all-files)
1581         (vc-dir-marked-only-files, vc-dispatcher-selection-set): Use it.
1583         * vc-cvs.el (vc-cvs-status-extra-headers): Align labels.
1585 2008-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1587         * diff-mode.el (diff-context-mid-hunk-header-re): New const.
1588         (diff-font-lock-keywords, diff-context->unified)
1589         (diff-reverse-direction, diff-fixup-modifs, diff-sanity-check-hunk)
1590         (diff-hunk-text, diff-find-source-location): Use it.
1591         (diff-post-command-hook): Let the user edit the hunk headers.
1593 2008-05-26  Andreas Schwab  <schwab@suse.de>
1595         * vc.el (vc-default-prettify-state-info): Fix formatting of an
1596         unknown state.
1598         * tar-mode.el (tar-summarize-buffer): Comment fix.
1600 2008-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1602         * tar-mode.el (tar-summarize-buffer): Handle GNU Tar @LongLink format.
1604 2008-05-26  Glenn Morris  <rgm@gnu.org>
1606         * calendar/cal-hebrew.el (diary-ordinal-suffix): Declare for compiler.
1608 2008-05-25  John Paul Wallington  <jpw@pobox.com>
1610         * proced.el (proced-next-line, proced-previous-line):
1611         Avoid calling `next-line' and `previous-line' from Lisp code.
1613 2008-05-25  Ed Reingold  <reingold@emr.cs.iit.edu>
1615         * calendar/cal-hebrew.el (diary-hebrew-yahrzeit):
1616         Use diary-ordinal-suffix.
1618 2008-05-24  Juanma Barranquero  <lekktu@gmail.com>
1620         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-defs)
1621         (edebug-all-forms, edebug-eval-macro-args, edebug-save-windows)
1622         (edebug-save-displayed-buffer-points, edebug-initial-mode)
1623         (edebug-trace, edebug-test-coverage, edebug-continue-kbd-macro)
1624         (edebug-print-length, edebug-print-level, edebug-print-circle)
1625         (edebug-unwrap-results, edebug-on-error, edebug-on-quit)
1626         (edebug-global-break-condition, edebug-sit-for-seconds):
1627         Remove spurious * from defcustom docstrings.
1628         (edebug-unwrap*, edebug-signal, edebug-eval-display):
1629         Improve argument/docstring consistency.
1630         (edebug-test-coverage, edebug-gensym, edebug-read)
1631         (edebug-top-level-nonstop, edebug-eval-result-list)
1632         (edebug-eval-redisplay, edebug-trace): Fix typos in docstring.
1633         (edebug-eval-defun, edebug-eval-top-level-form, edebug)
1634         (edebug-display-freq-count): Reflow docstrings.
1635         (edebug-restore-status): Doc fix.
1637 2008-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1639         * proced.el (proced-header-line): Use the :align-to 0 feature
1640         rather than computing the corresponding position manually.
1641         (proced-update): Don't hardcode point-min==1.
1643 2008-05-24  Alan Mackenzie  <acm@muc.de>
1645         * progmodes/cc-mode.el (c-postprocess-file-styles): Throw an error
1646         if c-file-style is set to a non-string.
1648         (c-neutralize-CPP-line): Surround by `save-excursion'.
1649         (c-neutralize-syntax-in-CPP): Optimize for speed.
1651 2008-05-24  Glenn Morris  <rgm@gnu.org>
1653         * Makefile.in (update-elclist): New target, to update ELCFILES.
1654         (bootstrap-after): Run update-elclist.
1656 2008-05-24  Ulf Jasper  <ulf.jasper@web.de>
1658         * icalendar.el (icalendar-version): Increase to "0.19".
1659         (icalendar--date-style): New function.
1660         (icalendar--datetime-to-diary-date): Doc fix.
1661         Use icalendar--date-style.
1662         (icalendar--datestring-to-isodate): Doc fix.  Handle iso date style.
1663         (icalendar--convert-yearly-to-ical)
1664         (icalendar--convert-recurring-to-diary): Handle iso date style,
1665         use icalendar-date-style.
1667 2008-05-23  Dan Nicolaescu  <dann@ics.uci.edu>
1669         * vc.el (vc-delete-file): Make sure the buffer is deleted and
1670         vc-dir buffers are updated.
1672 2008-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1674         * vc.el (vc-delete-file): Don't try to resynch the buffer.
1676 2008-05-23  Paul Rivier  <paul.r.ml@gmail.com>
1678         * textmodes/reftex-vars.el (reftex-extra-bindings-prefix): New var.
1679         * textmodes/reftex.el (reftex-extra-bindings-map): New var.
1680         (reftex-extra-bindings): Use it.
1682         * progmodes/mixal-mode.el (mixal-mode-map): Move key-bindings
1683         away from the user-reserved keys.
1685         * progmodes/ada-mode.el (ada-mode-extra-map, ada-mode-extra-prefix):
1686         New vars.
1687         (ada-create-keymap): Use them.
1689 2008-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1691         * emacs-lisp/regexp-opt.el (regexp-opt): Always return
1692         a properly-grouped regexp.
1694 2008-05-23  Juanma Barranquero  <lekktu@gmail.com>
1696         * progmodes/cap-words.el (capitalized-words-mode):
1697         Fix typos in docstring.
1699 2008-05-23  Kenichi Handa  <handa@m17n.org>
1701         * international/mule-conf.el: Don't define the charset `emacs'
1702         here, just put :docstring, :short-name, and :long-name.
1704 2008-05-22  Kenichi Handa  <handa@m17n.org>
1706         * international/mule-diag.el (font-show-log): Limit each listing
1707         to 20 items.
1709 2008-05-23  Nick Roberts  <nickrob@snap.net.nz>
1711         * progmodes/gdb-ui.el (gdb-enable-debug): New function.
1712         (gdb-annotation-rules): New entry for "thread-changed".
1713         (gdb-thread-changed): New function.
1715 2008-05-23  Glenn Morris  <rgm@gnu.org>
1717         * Makefile.in (SOURCES): Remove, unused.
1718         (lisptagsfiles1, lisptagsfiles2): Use '*' rather than '[a-zA-Z]*'.
1719         (TAGS, TAGS-LISP): Use a single rule with multiple targets.
1720         Exclude more '*loaddefs' files.
1721         (compile-always): Simplify '.elc' deletion.
1723 2008-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1725         * vc-bzr.el (vc-bzr-annotate-time): Reduce memory allocation.
1726         (vc-bzr-revision-completion-table): Handle `boundaries' argument.
1728         * minibuffer.el (completion-boundaries): Change calling
1729         convention, so `string' has the same semantics as in
1730         try-completion and all-completions.
1731         (completion-table-with-context, completion--embedded-envvar-table)
1732         (completion--file-name-table)
1733         (completion-pcm--find-all-completions): Adjust code accordingly.
1735 2008-05-22  Chong Yidong  <cyd@stupidchicken.com>
1737         * image-mode.el (image-mode-winprops): Add argument CLEANUP to
1738         prune image-mode-winprops-alist, preventing it from growing
1739         indefinitely.
1740         (image-mode-reapply-winprops): Use it.
1742 2008-05-22  Teodor Zlatanov  <tzz@lifelogs.com>
1744         * net/netrc.el (netrc-machine): Always match if the port is not given.
1746 2008-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1748         * minibuffer.el (completion-pcm--find-all-completions):
1749         Don't add pseudo-completions.
1751         * icomplete.el (icomplete-eoinput): Remove.
1752         (icomplete-overlay): New var to replace it.
1753         (icomplete-tidy): Rewrite.
1754         (icomplete-exhibit): Use an overlay.
1755         (icomplete-completions): Use completion-all-sorted-completions.
1756         Obey completion-ignore-case.
1758         * files.el (locate-dominating-file): Accept non-existing argument.
1759         (project-find-settings-file): Rewrite, using locate-dominating-file.
1761 2008-05-22  Kenichi Handa  <handa@m17n.org>
1763         * faces.el (font-weight-table, font-slant-table, font-width-table):
1764         Delete them.  Don't call internal-set-font-style-table.
1766         * international/mule-diag.el (font-show-log): New function.
1768         * international/fontset.el (script-representative-chars): Add more
1769         chars for latin.  Add data for symbol.
1770         (setup-default-fontset): Add entries for phonetic, armenian, and symbol.
1772 2008-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1774         * minibuffer.el (completion-all-sorted-completions): New var.
1775         (completion--flush-all-sorted-completions)
1776         (completion-all-sorted-completions): New functions.
1777         (minibuffer-force-complete): New command.
1779 2008-05-21  Glenn Morris  <rgm@gnu.org>
1781         * files.el (c-postprocess-file-styles): Declare for compiler.
1783         * Makefile.in: Allow for parallel byte-compiling.
1784         (ELCFILES): New variable.
1785         (.el.elc): Remove prerequisites from suffix rule.  Print a message.
1786         (compile-first, compile-main, compile-last): New targets.
1787         (compile-always): Simplify - delete .elc files, then `make compile'.
1789         * Makefile.in (compile-calc): Use glob rather than find.
1790         ($(lisp)/progmodes/cc-mode.elc): Use $@.
1792         * eshell/esh-module.el: No need for cl when compiling.
1794         * eshell/eshell.el (eshell-defgroup): New alias.
1795         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1796         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
1797         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
1798         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
1799         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
1800         * eshell/em-xtra.el: Use eshell-defgroup rather than defgroup.
1801         Autoload the custom group.  Set generated-autoload-file.
1802         * eshell/em-basic.el, eshell/esh-module.el: Require eshell,
1803         for eshell-defgroup.
1804         * eshell/esh-module.el (eshell-load-defgroups): Remove.
1805         Require esh-groups rather than loading it.
1807 2008-05-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
1809         * proced.el (proced-header-line): New variable and new function.
1810         (proced-mode): Set header-line-format.
1811         (proced-update): Set proced-header-line.
1812         (proced-send-signal): Use proced-header-line.
1814 2008-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1816         * macros.el (insert-kbd-macro): Use prin1-char.
1818 2008-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1820         * minibuffer.el (completion-boundaries): New function.
1821         (completion--some): Delay errors.
1822         (complete-with-action, completion-table-with-context):
1823         Handle `boundaries' case.
1824         (completion--try-word-completion): Avoid partial-completion
1825         when the user hasn't entered anything yet.
1826         (minibuffer-local-map, minibuffer-local-filename-completion-map)
1827         (minibuffer-local-must-match-map, minibuffer-local-completion-map)
1828         (minibuffer-local-must-match-filename-map, minibuffer-local-ns-map):
1829         Setup default keybindings.
1830         (completion--embedded-envvar-re): New var.
1831         (completion--embedded-envvar-table): Use it.  Handle `boundaries' case.
1832         (completion--file-name-table): Handle `boundaries' case.
1833         (completion-pcm--pattern->regex): Avoid pathological backtracking.
1834         (completion-pcm--all-completions): Add a `prefix' arg.
1835         (completion-pcm--find-all-completions): New function.
1836         (completion-pcm-all-completions, completion-pcm-try-completion):
1837         Use it.
1839         * icomplete.el (icomplete-completions): Don't use `predicate' with
1840         a table of a different type than `candidates'.
1842 2008-05-20  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
1844         * proced.el (proced-goal-column): Rename from proced-procname-column.
1845         (proced-goal-header-re): Rename from proced-procname-column-regexp.
1846         (proced-move-to-goal-column): Rename from proced-move-to-procname.
1847         (proced-header-face, proced-header-regexp): Remove.
1848         (proced-font-lock-keywords): Remove proced-header-face.
1849         (proced-header-alist, proced-sorting-schemes-re): New variables.
1850         (proced): Rename Proced buffer to *Proced*.
1851         (proced-next-line, proced-previous-line): New commands.
1852         (proced-do-mark, proced-do-mark-all, proced-toggle-marks)
1853         (proced-hide-processes): Do not treat first line as special.
1854         (proced-header-space): New function.
1855         (proced-update): Use header-line-format.
1856         Initialize proced-header-alist and proced-sorting-schemes-re.
1857         Set proced-goal-column.  Include proced-command in mode-name.
1858         (proced-send-signal): Use header-line-format for *Marked
1859         Processes* buffer.
1860         (proced-sort): Restrict minibuffer completion to applicable
1861         sorting schemes.
1862         (proced-sorting-scheme-p): Use proced-sorting-schemes-re.
1864 2008-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1866         * icomplete.el (icomplete-simple-completing-p):
1867         Allow icomplete-with-completion-tables to say "use it everywhere".
1868         (icomplete-completions): Obey completion-styles.  Try to accommodate
1869         partial-completion style.
1871 2008-05-20  Michael Olson  <mwolson@gnu.org>
1873         * files.el (project-find-settings-file): Change concat to
1874         expand-file-name.
1876 2008-05-19  Tom Tromey  <tromey@redhat.com>
1878         * files.el (normal-mode): Call hack-project-variables.
1879         (hack-local-variables-confirm): Add 'project' argument.
1880         (hack-local-variables-apply): New function.
1881         (hack-local-variables): Use it.
1882         (project-class-alist, project-directory-alist): New variables.
1883         (project-get-alist): New function.
1884         (project-collect-bindings-from-alist)
1885         (project-collect-binding-list, set-directory-project)
1886         (project-find-settings-file, project-define-from-project-file)
1887         (hack-project-variables): New functions.
1889 2008-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1891         * emacs-lisp/cl-specs.el (destructuring-bind): Fix spec.
1893 2008-05-19  Juanma Barranquero  <lekktu@gmail.com>
1895         * faces.el (font-weight-table): Fix typo in docstring.
1897 2008-05-18  David Hull  <david@snap.com>  (tiny change)
1899         * vc-hg.el (vc-hg-annotate-re): Recognize the output of --follow.
1900         (vc-hg-annotate-command): Allow white space before version number.
1902 2008-05-18  Jay Belanger  <jay.p.belanger@gmail.com>
1904         * calc/calc-yank.el (calc-register-alist): New variable.
1905         (calc-set-register, calc-get-register, calc-copy-to-register)
1906         (calc-insert-register, calc-add-to-register, calc-append-to-register)
1907         (calc-prepend-to-register): New functions.
1909         * calc/calc-ext.el (calc-init-extensions): Add keybindings for
1910         `calc-copy-to-register' and `calc-insert-register'.
1911         Autoload new register functions.
1913         * calc/calc-help.el (calc-r-prefix-help): Add help for register
1914         functions.
1916 2008-05-18  Dan Nicolaescu  <dann@ics.uci.edu>
1918         * vc.el (Todo): Add known problems.
1919         (vc-dir-backend): New variable.
1920         (vc-dir): Set it.
1921         (vc-make-backend-object, vc-generic-status-printer)
1922         (vc-generic-state, vc-generic-status-fileinfo-extra)
1923         (vc-dir-extra-menu): Use it.
1924         (vc-generic-dir-headers): Remove, unused.
1926         * vc-dispatcher.el (vc-dir-previous-directory): Rename from
1927         vc-dir-prev-directory for consistency with vc-dir-previous-line.
1928         (vc-dir-mode-map): Fix bindings.
1930         * vc-bzr.el (vc-bzr-after-dir-status): Remove unused binding.
1932 2008-05-18  Jay Belanger  <jay.p.belanger@gmail.com>
1934         * calc/calc-yank.el (calc-kill): Make sure that only the stack is
1935         operated on.
1936         (calc-kill-region): Kill entire lines.
1938 2008-05-17  Glenn Morris  <rgm@gnu.org>
1940         * ezimage.el (ezimage-use-images): Drop support for Emacs < 21 and
1941         simplify initial value.
1942         (defezimage): Drop support for Emacs without defimage, use a featurep
1943         test rather than fboundp when defining, drop with-no-warnings.
1944         (ezimage-insert-over-text): Move featurep test inside
1945         add-text-properties.
1947         * elide-head.el (elide-head-headers-to-hide): Handle GPLv3 format.
1949         * net/tramp.el (top-level): Load auth-source when compiling.
1951         * progmodes/fortran.el (fortran-font-lock-keywords-2): Add .eqv., .neqv.
1953 2008-05-17  Andreas Schwab  <schwab@suse.de>
1955         * vc-dispatcher.el (vc-dir-mode-map): Fix M-down and M-up binding.
1957 2008-05-17  Dan Nicolaescu  <dann@ics.uci.edu>
1959         * vc.el (vc-annotate-show-diff-revision-at-line): Change
1960         vc-diff-internal arg to match what vc-deduce-fileseset returns now.
1962 2008-05-17  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1964         * menu-bar.el (menu-bar-select-buffer): Reinsert it as msb.el uses it.
1966 2008-05-17  Jim Meyering  <meyering@redhat.com>
1968         * ido.el (ido-save-history): Do not emit a trailing newline at the
1969         end of the ido history file.
1971 2008-05-16  John Paul Wallington  <jpw@pobox.com>
1973         * vc-dispatcher.el (top-level): Revert previous change: require cl
1974         when compiling.
1976 2008-05-16  Eric S. Raymond  <esr@snark.thyrsus.com>
1978         * vc.el (vc-default-status-printer)
1979         (vc-default-prettify-state-info): Enhance the state prettyprinter
1980         to deal better with unknown states and indirect through it when
1981         painting vc-dir buffers.
1983 2008-05-16  John Paul Wallington  <jpw@pobox.com>
1985         * vc-dispatcher.el (top-level): Don't require cl when compiling.
1986         (vc-dir-mode-map): Fix backquote.
1987         (vc-at-event): Doc fix.  Use `make-symbol' instead of `gensym'.
1989 2008-05-16  Michael Albinus  <michael.albinus@gmx.de>
1991         * net/tramp.el (tramp-handle-write-region): Fix check for short track.
1992         Reported by Glenn Morris <rgm@gnu.org>.
1994 2008-05-16  Eric S. Raymond  <esr@snark.thyrsus.com>
1996         * vc.el: Remove my analysis of SCCS/RCS concurrency issues from
1997         the end of the file, it was good work at one time but has been
1998         stale since 1995 and may now be actively misleading.
1999         * vc-cvs.el (vc-cvs-status-extra-headers): Extract and display the
2000         CVS repository and module (assumptions for the latter a bit iffy).
2001         * vc-svn.el (vc-svn-status-extra-headers): Extract and display the
2002         SVN repository.
2004 2008-05-16  Juanma Barranquero  <lekktu@gmail.com>
2006         * vc-rcs.el (vc-rcs-create-tag):
2007         * vc-sccs.el (vc-sccs-create-tag):
2008         Fix typo in error message and pass backend arg.
2010 2008-05-15  Michael Albinus  <michael.albinus@gmx.de>
2012         * net/tramp.el (tramp-file-name-for-operation): Add `make-temp-name'.
2014 2008-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
2016         * net/tramp.el: Load auth-source library.
2017         (tramp-read-passwd): Use it for password, not login.
2019 2008-05-15  Shigeru Fukaya  <shugeru.fukaya@gmail.com>
2021         * ses.el (ses-goto-print): Use move-to-column rather than forward-char.
2022         (ses-print-cell): Use string-width, truncate-string-to-width,
2023         delete-region rather than length, substring, delete-char.
2024         (ses-setup): Set inhibit-point-motion-hooks to t.
2025         Calculate position by actually moving point rather than just using
2026         unibyte character length.
2027         (ses-mode): Set indent-tabs-mode to nil.
2028         (ses-center): Use string-width rather than length.
2030 2008-05-15  Eric S. Raymond  <esr@snark.thyrsus.com>
2032         * vc-cvs.el, vc-git.el, vc-hg.el, vc-hooks.el, vc-mcvs.el,
2033         * vc-rcs.el, vc-sccs.el, vc-svn.el, vc.el:
2034         Rename vc-*-create-snapshot and vc-*-retrieve-snapshot to
2035         vc-*-create-tag and vc-*-retrieve-tag respectively.
2037         * vc-dispatcher.el: Fix an incorrect buffer name and remove an
2038         unneeded defalias.
2040         * vc.el, vc-dispatcher.el (vc-dir-menu-map-filter): Move.
2042         * vc.el, vc-dispatcher.el (vc-dir-menu-map): Remove assumption
2043         about buffer names.
2045 2008-05-15  Glenn Morris  <rgm@gnu.org>
2047         * vc-hooks.el (vc-directory-resynch-file): Fix declaration.
2049         * org/org-exp.el (org-infojs-options-inbuffer-template):
2050         Fix declaration.
2052         * progmodes/cc-mode.el (declare-function): Add compat definition.
2053         (awk-mode-syntax-table, c-awk-unstick-NL-prop): Declare for compiler.
2055 2008-05-14  Eric S. Raymond  <esr@snark.thyrsus.com>
2057         * vc-dispatcher.el (vc-dispatcher-selection): Change the returned
2058         list to a cons so the caller can get back both expanded and
2059         unexpanded filesets.
2060         * vc.el (vc-deduce-fileseset, vc-next-action, vc-diff-internal)
2061         (vc-merge, vc-version-diff, vc-print-log, vc-revert, vc-rollback):
2062         Change handling of selection-set returns as required.
2064 2008-05-15  John Paul Wallington  <jpw@pobox.com>
2066         * add-log.el (top-level): Don't require cl when compiling.
2068         * arc-mode.el (archive-add-new-member): Use `derived-mode-p'.
2069         (archive-*-extract): Use `zerop'.
2070         (archive-*-write-file-member): Use `or', use `zerop'.
2072         * diff-mode.el (diff-current-defun): Use `buffer-local-value'.
2074         * ibuffer.el (ibuffer-assert-ibuffer-mode): New defsubst.
2075         (ibuffer-mark-interactive, ibuffer-set-mark)
2076         (ibuffer-insert-buffer-line, ibuffer-redisplay-current)
2077         (ibuffer-map-lines, ibuffer-switch-format)
2078         (ibuffer-update-title-and-summary)
2079         (ibuffer-redisplay-engine): Use it.
2081         * ibuf-ext.el (ibuffer-interactive-filter-by-mode)
2082         (ibuffer-set-filter-groups-by-mode, ibuffer-list-buffer-modes)
2083         (define-ibuffer-filter mode, define-ibuffer-filter used-mode)
2084         (define-ibuffer-sorter major-mode, ibuffer-mark-unsaved-buffers)
2085         (ibuffer-mark-read-only-buffers)
2086         (ibuffer-mark-dired-buffers): Use `buffer-local-value'.
2088         * ibuf-macs.el (ibuffer-aif, ibuffer-awhen, ibuffer-save-marks)
2089         (define-ibuffer-column, define-ibuffer-sorter)
2090         (define-ibuffer-op, define-ibuffer-filter): Add declarations
2091         containing indentation specs, replacing equivalent top-level
2092         forms that set `lisp-indent-function' properties.
2093         (define-ibuffer-op): Use `derived-mode-p'.
2094         (define-ibuffer-filter): Remove redundant `concat' call.
2096 2008-05-14  Michael Albinus  <michael.albinus@gmx.de>
2098         * net/tramp.el (tramp-echo-mark): Update docstring.
2099         (tramp-echo-mark-marker): New defconst.
2100         (tramp-check-for-regexp): Use it.
2102 2008-05-14  Eric S. Raymond  <esr@snark.thyrsus.com>
2104         * vc.el (vc-deduce-fileset): Do the right thing when visting a
2105         buffer (say, a log buffer or diff buffer) with a vc-dir buffer
2106         as parent.
2108 2008-05-14  John Paul Wallington  <jpw@pobox.com>
2110         * international/mule.el (convert-define-charset-argument):
2111         Remove period from end of error message.
2112         (coding-system-mnemonic): Doc fix.
2113         (ctext-pre-write-conversion): Doc fix.
2115 2008-05-14  Simon Marshall  <simon@gnu.org>
2117         * obsolete/fast-lock.el (fast-lock-cache-directories): Remove "."
2118         from its default value and give it the risky-local-variable
2119         property (CVE-2008-2142).
2121 2008-05-14  Kenichi Handa  <handa@m17n.org>
2123         * language/korean.el ("Korean"): Set `iso639-language'
2124         property to `ko'.
2126         * language/japanese.el ("Japanese"): Set `iso639-language'
2127         property to `ja'.
2129         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
2130         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK")
2131         ("Chinese-GB18030"): Set `iso639-language' property to `zh'.
2133         * international/mule-cmds.el (set-language-environment):
2134         Set current-iso639-language.
2136         * international/fontset.el (setup-default-fontset): For kana, han,
2137         hangul, and cjk-misc, move an entry with font-spec at the end.
2138         (generate-fontset-menu): Exclue fontset-auto* from the list.
2140         * composite.el (compose-chars-after): Assume that WINDOW is always
2141         non-nil.
2143         * faces.el (font-weight-table, font-slant-table)
2144         (font-swidth-table): Declare them by defconst.  Change the format
2145         of elements.  Call internal-set-font-style-table after their
2146         declaration.
2147         (face-valid-attribute-values): Call font-family-list.  Get values
2148         for width, weight, and slant from font-xxx-table.
2150         * cus-face.el (custom-face-attributes): Add "thin" for :weight.
2152 2008-05-13  John Paul Wallington  <jpw@pobox.com>
2154         * ibuffer.el (ibuffer-buffer-file-name): New function.
2155         (define-ibuffer-column filename): Use it.
2157         * ibuf-ext.el (define-ibuffer-filter filename): Use it.
2159 2008-05-13  Chong Yidong  <cyd@stupidchicken.com>
2161         * talk.el (talk): Simplify.  Pass display arg to talk-add-display
2162         as a string.
2163         (talk-add-display): Simplify.  Accept only string args.
2165 2008-05-13  Jay Belanger  <jay.p.belanger@gmail.com>
2167         * calc/calc.el (calc-mode-map): Remove old keybinding for `calc-yank'.
2169 2008-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2171         * Makefile.in (bootstrap-prepare): Don't chmod files.
2172         (autoloads): Do it here instead, where it's actually needed.
2174 2008-05-13  Chong Yidong  <cyd@stupidchicken.com>
2176         * tool-bar.el (tool-bar-make-keymap): Account for the optional
2177         KEY-BINDING-DATA field in menu-item list.
2179 2008-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2181         * dired.el (dired-read-dir-and-switches): Move things about to use less
2182         recursion during macroexpansion.
2184         * dired.el (dired-read-dir-and-switches): Use read-file-name.
2186         * dired.el (dired-read-dir-and-switches): Ignore ., .., and
2187         completion-ignored-extension directories if there's something else.
2188         (dired-mark-if, dired-map-over-marks, dired-readin, dired-revert)
2189         (dired-remember-marks, dired-undo, dired-build-subdir-alist)
2190         (dired-internal-do-deletions, dired-mark-files-in-region, dired-mark)
2191         (dired-toggle-marks, dired-change-marks, dired-unmark-all-files):
2192         buffer-read-only -> inhibit-read-only.
2194 2008-05-12  Eric S. Raymond  <esr@snark.thyrsus.com>
2196         * vc.el (vc-expand-dirs): Stop this function from tossing out
2197         explicitly specified files.
2199 2008-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2201         * smerge-mode.el (smerge-apply-resolution-patch): Don't pass nil
2202         to `insert'.
2204 2008-05-12  Dan Nicolaescu  <dann@ics.uci.edu>
2206         * vc.el (vc-annotate-show-diff-revision-at-line): Remove incorrect
2207         cons.  Use vc-annotate-backend.
2208         (with-vc-file, edit-vc-file): Remove unused macros.
2210 2008-05-12  Teodor Zlatanov  <tzz@lifelogs.com>
2212         * mail/smtpmail.el: Add autoload for `auth-source-user-or-password'.
2213         (smtpmail-try-auth-methods): Use it.
2215 2008-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2217         * emacs-lisp/cl.el (cl-set-nthcdr): Make it a defsubst so that
2218         (setf (nthcdr ..) ..) doesn't require CL at runtime.
2220 2008-05-11  Carsten Dominik  <dominik@science.uva.nl>
2222         * org/org.el (org-modules): Repair problems with loading org-jsinfo.org.
2224 2008-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2226         * vc-bzr.el (vc-bzr-sha1, vc-bzr-command-discarding-stderr)
2227         (vc-bzr-revision-completion-table): Use process-file.
2228         (vc-bzr-working-revision): Pass relative file names.
2230         * diff-mode.el (diff-hunk-header-re): Refine the regexp.
2232 2008-05-11  Juri Linkov  <juri@jurta.org>
2234         * wid-edit.el (widget-image-directory): Change default image data
2235         subdirectory from "custom" to "images/custom".
2237         * info.el (Info-next-preorder): Let-bind `Info-history' to nil
2238         before recursive call to `Info-next-preorder' to not add
2239         intermediate nodes to the history.
2241         * isearch.el: Put isearch-scroll property on recenter-top-bottom.
2243         * emulation/cua-base.el: Put isearch-scroll property
2244         on cua-scroll-up and cua-scroll-down.
2246 2008-05-11  Eric S. Raymond  <esr@snark.thyrsus.com>
2248         * vc-hooks.el (vc-recompute-state): Remove (dead code).
2250 2008-05-10  Dan Nicolaescu  <dann@ics.uci.edu>
2252         * vc-dispatcher.el (ewoc): Require.
2253         (vc-log-edit, vc-buffer-sync): Declare for byte compiler.
2255         * vc-hg.el (vc-hg-diff, vc-hg-annotate-command): Use when not if.
2257 2008-05-10  Chong Yidong  <cyd@stupidchicken.com>
2259         * term/w32-win.el (x-colors):
2260         * term/mac-win.el (x-colors):
2261         * term/x-win.el (x-colors): Re-order colors.
2263 2008-05-10  Reiner Steib  <reiner.steib@gmx.de>
2265         * smerge-mode.el (smerge-command-prefix): Fix custom type.
2267 2008-05-10  Eric S. Raymond  <esr@snark.thyrsus.com>
2269         * vc-dispatcher.el (vc-dir-next-directory, vc-dir-prev-directory):
2270         New functions implementing motion to next and previous directory.
2272         * vc-arch.el (vc-arch-command):
2273         * vc-bzr.el (vc-bzr-command):
2274         * vc-cvs.el (vc-cvs-command):
2275         * vc-dispatcher.el (vc-do-command):
2276         * vc-git.el (vc-git-command):
2277         * vc-hg.el (vc-hg-command):
2278         * vc-mcvs.el (vc-mvcs-command):
2279         * vc-mtn.el (vc-mtn-command):
2280         * vc-sccs.el (vc-sccs-command, vc-sccs-workfile)
2281         (vc-sccs-workfile-unchanged-p):
2282         * vc-svn.el (vc-svn-command, vc-svn-create-repo),
2283         * vc-rcs.el (all methods): Remove assumption about what a nil
2284         argument to vc-do-command means.  This means no buffer name needs
2285         to be hardcoded into the dispatcher layer, and it's better to be
2286         explicit anyway.
2288         * vc-svn.el (vc-svn-dir-state-heuristic): Remove.
2290 2008-05-10  Dan Nicolaescu  <dann@ics.uci.edu>
2292         * vc.el: Update todo.
2294         * vc-sccs.el (vc-sccs-dir-status):
2295         * vc-rcs.el (vc-rcs-dir-status): Avoid using results from multiple
2296         backends and returning up to date files.
2298         * vc-hooks.el (vc-prefix-map): Remove duplicate binding.
2300 2008-05-09  Eric S. Raymond  <esr@snark.thyrsus.com>
2302         * vc.el (vc-dir):
2303         * vc-hooks.el: Tweak the VC directory bindings.  These are now
2304         documented in the manual.
2306         * vc-dispatcher.el (vc-dir-update, vc-dir-parent-marked-p)
2307         (vc-dir-children-marked-p): Remove the vc-dir-insert-directories global.
2308         (vc-dispatcher-selection-set): Allow callers to pass in an
2309         observer flag that says no buffer sync is required.
2310         * vc.el (vc-deduce-fileset, vc-print-log, vc-version-diff):
2311         Use the observer flag.
2313 2008-05-09  Michael Albinus  <michael.albinus@gmx.de>
2315         * simple.el (start-file-process): Clarify docstring.
2317 2008-05-09  Eric S. Raymond  <esr@snark.thyrsus.com>
2319         * vc-sccs.el, vc.svn.el, vc-git.el, vc-hg.el, vc-mtn.el:
2320         Remove stub implementations of, and references to, wash-log.
2321         * vc-rcs.el (vc-rcs-comment-history):
2322         * vc-cvs.el (vc-cvs-comment-history):
2323         Inline the code that used to be wash-log.
2325         * vc-sccs.el (vc-sccs-checkin, vc-sccs-checkout, vc-sccs-rollback)
2326         (vc-sccs-revert, vc-sccs-steal-lock, vc-sccs-modify-change-comment)
2327         (vc-sccs-print-log, vc-sccs-diff): Grok directories.
2328         * vc-rcs.el (vc-sccs-checkin, vc-sccs-checkout)
2329         (vc-rcs-revert, vc-rcs-steal-lock, vc-rcs-modify-change-comment)
2330         (vc-rcs-print-log): Grok directories.
2332 2008-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2334         * vc.el (vc-mark-resolved): Add `backend' argument.
2335         (vc-next-action): Pass it the backend.
2336         (vc-next-action, vc-checkout, vc-mark-resolved, vc-version-diff)
2337         (vc-merge, vc-rollback, vc-update, vc-transfer-file, vc-delete-file)
2338         (vc-default-comment-history, vc-default-create-snapshot)
2339         (vc-default-retrieve-snapshot, vc-default-revert, vc-annotate)
2340         (vc-annotate-revision-previous-to-line)
2341         (vc-annotate-show-diff-revision-at-line, vc-annotate-warp-revision):
2342         * vc-svn.el (vc-svn-checkout):
2343         * vc-mcvs.el (vc-mcvs-checkout):
2344         * vc-hooks.el (vc-state, vc-default-workfile-unchanged-p)
2345         (vc-working-revision, vc-before-save, vc-mode-line):
2346         Prefer vc-call-backend to vc-call so as not to recompute the backend.
2348         * vc.el (vc-deduce-fileset): Don't require the checkout-model and the
2349         state to be consistent since it's often an unwarranted restriction.
2350         Don't return the state either.
2351         (vc-next-action): Check that the state is consistent.
2352         (vc-diff-internal, vc-version-diff, vc-print-log, vc-revert)
2353         (vc-rollback, vc-update): Adapt to new return value of
2354         vc-deduce-fileset.
2356         * vc-dispatcher.el (vc-dispatcher-browsing): Use derived-mode-p.
2357         (vc-dir-prepare-status-buffer): Use vc-dispatcher-browsing.
2358         (vc-dispatcher-in-fileset-p): New fun.
2359         (vc-dispatcher-selection-set): Use it to properly handle directories.
2361 2008-05-09  Dan Nicolaescu  <dann@ics.uci.edu>
2363         * vc.el (vc-version-diff, vc-print-log, vc-revert, vc-rollback)
2364         (vc-update): Remove unused let bindings.
2366 2008-05-09  Eric S. Raymond  <esr@snark.thyrsus.com>
2368         * vc.el (vc-deduce-fileset, vc-next-action, vc-version-diff)
2369         (vc-diff, vc-revert, vc-rollback, vc-update):
2370         * vc-dispatcher.el (vc-dispatcher-selection-set):
2371         Get rid of 4 special cases in fileset selection.  This involved
2372         changing the return value of (vc-deduce-fileset) so that it passes
2373         back a deduced state as well as a deduced back end.
2375 2008-05-08  Sam Steingold  <sds@gnu.org>
2377         * progmodes/compile.el (compilation-minor-mode-map)
2378         (compilation-mode-map): Bind "g" to recompile and "q" to quit-window.
2379         * grep.el (grep-mode-map): Use `set-keymap-parent' to connect it
2380         to `compilation-minor-mode-map' (instead of an explicit `cons').
2382 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
2384         * org/org.el (org-modules, org-format-latex-options):
2385         * org/org-archive.el (org-archive-stamp-time)
2386         (org-archive-save-context-info):
2387         * org/org-faces.el (org-hide):
2388         * org/org-irc.el (org-irc-parse-link):
2389         * org/org-macs.el (org-call-with-arg, org-autoload):
2390         * org/org-mew.el (org-mew-store-link):
2391         * org/org-remember.el (org-remember-store-without-prompt)
2392         (org-remember-templates): Fix typos in docstrings.
2394         * org/org-info.el (org-info-store-link): Remove leftover docstring.
2396         * org/org-bbdb.el (org-bbdb-export): Remove leftover docstring.
2397         (org-bbdb-anniversary-field, org-bbdb-extract-date-fun)
2398         (org-bbdb-anniv-split): Fix typos in docstrings.
2400         * org/org-publish.el (org-publish-project-alist): Doc fixes.
2401         (org-publish-use-timestamps-flag): Reflow docstring.
2402         (org-publish-files-alist): Fix typos in docstring.
2404 2008-05-07  Sam Steingold  <sds@gnu.org>
2406         * pcvs-util.el (cvs-bury-buffer): Revert my patch: quit-window
2407         appears to be too aggressive with window removal.
2409 2008-05-08  Michael McNamara  <mac@mail.brushroad.com>
2411         * verilog-mode.el (verilog-type-font-keywords): Add leda and 0in
2412         as pragma keywords.
2413         (verilog-pretty-expr): Support lining up assignments which include
2414         part selects.
2415         (verilog-mode): More portable check for the availability of
2416         hideshow support.
2417         (verilog-do-indent): Remove special indent for declarations inside
2418         a parenthetical list.  The code is ill-advised, and doesn't work
2419         given the new user defined types.
2420         (verilog-set-auto-endcomments): Enhance function automatic
2421         endcomment to support functions that return user defined types.
2422         (verilog-mode): Add code to tell which-function-mode minor mode
2423         that Verilog supports this feature.
2425 2008-05-08  Eli Zaretskii  <eliz@gnu.org>
2427         * epa-file.el: Require epa-hook.
2429         * loadup.el ("epa-hook"): Load epa-hook instead of epa-file-hook.
2431         * epa-hook.el: Renamed from epa-file-hook.el, to avoid
2432         file-names clashes on 8+3 filesystems.  Provide epa-hook.
2434         * org/org-jsinfo.el: Renamed from org-infojs.el, to avoid
2435         file-names clashes on 8+3 filesystems.
2437 2008-05-08  Carsten Dominik  <dominik@science.uva.nl>
2439         * org/org.el (org-read-date-get-relative): Interpret lone
2440         weekday abbreviation as relative to today.
2442 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
2444         * abbrev.el (define-abbrev-table):
2445         * composite.el (toggle-auto-composition):
2446         * json.el (json-alist-p, json-plist-p):
2447         * minibuffer.el (completion-table-with-predicate):
2448         * ps-mule.el (ps-mule-external-libraries):
2449         * emacs-lisp/advice.el (ad-special-form-p):
2450         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
2451         * eshell/em-smart.el (eshell-review-quick-commands):
2452         * progmodes/python.el (python-comment-line-p, python-blank-line-p)
2453         (python-skip-out, python-check-comint-prompt):
2454         Don't use `iff' in docstrings.
2456         * international/robin.el (robin-package-alist): Fix typo in docstring.
2457         (robin-current-package-name): Doc fix.
2458         (robin-activate): Don't use `iff' in docstring.
2460 2008-05-07  Eric S. Raymond  <esr@snark.thyrsus.com>
2462         * vc.el, vc-dispatcher.el: VC-Dired support removed.
2463         The code uses a ewoc-based implementation now.
2464         * vc-hooks.el: Support for Meta-CVS has been removed.
2466 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2468         * tool-bar.el: Choose images dynamically.
2469         (tool-bar-make-keymap, tool-bar-find-image): New function.
2470         (tool-bar-find-image-cache): New var.
2471         (tool-bar-local-item, tool-bar-local-item-from-menu):
2472         Don't select the image yet, do it later in tool-bar-make-keymap.
2474 2008-05-07  Andreas Schwab  <schwab@suse.de>
2476         * window.el: Require 'cl when compiling.
2478 2008-05-07  Dan Nicolaescu  <dann@ics.uci.edu>
2480         * vc-dispatcher.el (vc-dir-insert-directories): Default to t.
2482 2008-05-07  Glenn Morris  <rgm@gnu.org>
2484         * subr.el (ignore-errors): Move here from cl-macs.el.
2485         * emacs-lisp/cl-macs.el (ignore-errors): Move to subr.el.
2487         * progmodes/fortran.el (fortran-mode): Fix font-lock-syntactic-keywords
2488         oddness.
2490 2008-05-06  Eric S. Raymond  <esr@snark.thyrsus.com>
2492         * vc-hooks.el (vc-find-file-hook):
2493         * vc-dispatcher.el (vc-resynch-window): Decouple vc-dispatcher
2494         further from vc.el.
2495         * vc.el (vc-dir-mode): Move VC-specific context menu entries here.
2497 2008-05-06  Wilson Snyder  <wsnyder@wsnyder.org>
2499         * verilog-mode.el (verilog-getopt-file): Cleanup warning message format.
2500         (verilog-auto, verilog-auto-arg, verilog-auto-ascii-enum)
2501         (verilog-auto-inout, verilog-auto-inout-module)
2502         (verilog-auto-input, verilog-auto-inst, verilog-auto-inst-param)
2503         (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2504         (verilog-auto-reg-input, verilog-auto-reset, verilog-auto-sense)
2505         (verilog-auto-sense-sigs, verilog-auto-tieoff)
2506         (verilog-auto-unused, verilog-auto-wire)
2507         (verilog-decls-get-assigns, verilog-decls-get-consts)
2508         (verilog-decls-get-gparams, verilog-decls-get-inouts)
2509         (verilog-decls-get-inputs, verilog-decls-get-outputs)
2510         (verilog-decls-get-ports, verilog-decls-get-regs)
2511         (verilog-decls-get-signals, verilog-decls-get-wires)
2512         (verilog-dir-cache-lib-filenames, verilog-dir-cache-list)
2513         (verilog-dir-cache-preserving, verilog-dir-file-exists-p)
2514         (verilog-dir-files, verilog-expand-dirnames, verilog-getopt-file)
2515         (verilog-inject-sense, verilog-library-filenames)
2516         (verilog-mode-release-date, verilog-mode-version)
2517         (verilog-modi-cache-add, verilog-modi-cache-preserve-buffer)
2518         (verilog-modi-cache-preserve-tick, verilog-modi-cache-results)
2519         (verilog-modi-get-assigns, verilog-modi-get-consts)
2520         (verilog-modi-get-gparams, verilog-modi-get-inouts)
2521         (verilog-modi-get-inputs, verilog-modi-get-outputs)
2522         (verilog-modi-get-ports, verilog-modi-get-regs)
2523         (verilog-modi-get-signals, verilog-modi-get-sub-inouts)
2524         (verilog-modi-get-sub-inputs, verilog-modi-get-sub-outputs)
2525         (verilog-modi-get-wires, verilog-preserve-cache)
2526         (verilog-preserve-dir-cache, verilog-preserve-modi-cache)
2527         (verilog-read-sub-decls, verilog-read-sub-decls-line)
2528         (verilog-read-sub-decls-sig, verilog-subdecls-get-inouts)
2529         (verilog-subdecls-get-inputs, verilog-subdecls-get-outputs):
2530         Add caching of additional state, and rework signal extraction
2531         routines to improve AUTO expansion performance by 300%++.
2533 2008-05-06  Chong Yidong  <cyd@stupidchicken.com>
2535         * progmodes/compile.el (compilation-error-regexp-alist-alist):
2536         Tweak Open Watcom regexp to distinguish between errors and warnings.
2538 2008-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2540         * dired.el (dired-read-dir-and-switches): Fix up last change.
2542 2008-05-05  Eric S. Raymond  <esr@snark.thyrsus.com>
2544         * vc.el (vc-deduce-fileset): Lift all the policy and UI stuff
2545         out of this function, move it to vc-dispatcher-selection-set.
2547 2008-05-05  Sam Steingold  <sds@gnu.org>
2549         * window.el (delete-other-windows-vertically): New function.
2551 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2553         * dired.el (dired-read-dir-and-switches):
2554         Obey read-file-name-completion-ignore-case.
2556 2008-05-05  Nick Roberts  <nickrob@snap.net.nz>
2558         * progmodes/compile.el (compilation-error-regexp-alist-alist):
2559         Add regexp for Open Watcom compiler output.
2561 2008-05-05  Phil Sung  <psung@mit.edu>  (tiny change)
2563         * progmodes/python.el (python-block-pairs): Align finally with except.
2565 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2567         * vc-rcs.el (vc-rcs-fetch-master-state): Fix inf-loop.
2569 2008-05-05  Tom Tromey  <tromey@redhat.com>
2571         * smerge-mode.el (smerge-start-session): Don't call smerge-next if
2572         looking at conflict marker.
2574 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2576         * vc-dispatcher.el (vc-dir-mark-buffer-changed): Fix typo
2577         client-mode -> vc-client-object, and guess `funcall' was meant.
2578         (vc-dir-mode): Rename client-mode -> vc-client-mode.
2580 2008-05-05  Dan Nicolaescu  <dann@ics.uci.edu>
2582         * net/zeroconf.el (dbus-call-method, dbus-register-signal)
2583         (dbus-debug): Move declarations outside eval-when-compile.
2585 2008-05-04  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2587         * proced.el (proced-command-alist): Fix system-type values.
2588         Fix defcustom.
2589         (proced-sorting-schemes-alist, proced-sorting-scheme): New variables.
2590         (proced-sort-pcpu, proced-sort-pmem, proced-sort-pid)
2591         (proced-sort-start, proced-sort, proced-sort-time): New commands.
2592         (proced-update): Use proced-sorting-scheme.  Update modeline.
2593         (proced-send-signal): Use nreverse.
2594         (proced-sorting-scheme-p): New function.
2596 2008-05-04  Andreas Schwab  <schwab@suse.de>
2598         * vc.el: Require dired when compiling.
2600         * minibuffer.el (completion--insert-strings): Don't delete past bol.
2602 2008-05-03  Glenn Morris  <rgm@gnu.org>
2604         * ediff-diff.el, ediff-help.el, ediff-merg.el, ediff-mult.el:
2605         * ediff-ptch.el, ediff-util.el, ediff-wind.el, ediff.el:
2606         Simplify compilation requirements.
2607         * ediff-init.el, ediff-vers.el: Remove unnecessary variable
2608         declarations.
2610 2008-05-03  Dave Love  <fx@gnu.org>
2612         * progmodes/python.el (python-beginning-of-statement):
2613         Loop at least once (fixes 2008-02-21 change).
2615 2008-05-03  Eli Zaretskii  <eliz@gnu.org>
2617         * ls-lisp.el (ls-lisp-insert-directory): Use `string-width'
2618         instead of `length' for comparing length of user and group names.
2620 2008-05-03  Eric S. Raymond  <esr@snark.thyrsus.com>
2622         * vc-dispatcher.el: New file, separates out the UI and command
2623         execution machinery from VCS-specific logic left in vc.el.
2624         The separation is not yet completely clean, but it's a good start.
2625         * vc.el: This file is about 1700 lines shorter now.
2626         Remove obsolete logentry-check from the backend API.
2627         * vc-sccs.el (vc-sccs-logentry-check): Remove.  This was the only
2628         implementation of the logentry-check method, and it guarded against
2629         a log length limit that has probably been obsolete for 15 years (!).
2631 2008-05-02  Sam Steingold  <sds@gnu.org>
2633         * progmodes/compile.el (compilation-start): Move setting of
2634         compilation-directory after (funcall mode) as that resets local
2635         variables, this fixes recompile in grep buffers.
2636         * grep.el (grep-mode-map): Bind "g" to recompile (like in dired &c).
2638 2008-05-02  Eric S. Raymond  <esr@snark.thyrsus.com>
2640         * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
2641         * vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
2642         * vc-svn.el, vc.el (vc-*-checkout-model): Make sure every backend
2643         has one of these and that all are called in compatible ways.
2644         * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
2645         * vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
2646         * vc-svn.el, vc.el (vc-*-revision-granularity): Make sure every
2647         backend has one of these.
2649 2008-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2651         * progmodes/octave-mod.el (octave-abbrev-table): Move defvar and
2652         initialization into define-abbrev-table.  Use :regexp.
2653         (octave-mode-syntax-table): Don't set word syntax for `.
2655         * files.el (minibuffer-with-setup-hook): Allow `fun' expressions rather
2656         than only value.
2658         * dired.el (dired-read-dir-and-switches):
2659         Set minibuffer-completing-file-name and call substitute-in-file-name.
2660         (dired-format-columns-of-files): Use completion--insert-strings.
2662         * minibuffer.el (completion-hilit-commonality): Revert last change:
2663         the leftover code was actually useful.
2664         (completion--insert-strings): Use string-width rather than length.
2666 2008-05-02  Sam Steingold  <sds@gnu.org>
2668         * vc.el (vc-dir-mode-map): Enable mouse bindings.
2669         (vc-at-event): New macro: run the body at the even location.
2670         (vc-dir-menu, vc-dir-toggle-mark): Use it.
2671         (vc-dir-mark-file, vc-dir-unmark-file): Move only on non-mouse events.
2672         * subr.el (mouse-event-p): Check if the even is mouse-related.
2674 2008-05-02  Nick Roberts  <nickrob@snap.net.nz>
2676         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
2677         Don't throw error if no file is found.
2679 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
2681         * vc-hooks.el (vc-call, vc-state): Fix typos in docstrings.
2682         (vc-default-state-heuristic): Doc fix.
2684 2008-05-02  Richard Sharman  <rsharman@pobox.com>
2686         * hilit-chg.el (highlight-changes-mode): Remove references to
2687         hooks that no longer exist.  Because define-minor-mode is used the
2688         hook highlight-changes-mode-hook exists and can do what both the
2689         old hooks used to do.  The documentation at the top of the file
2690         was updated to demonstrate this.
2691         (highlight-changes-mode): Remove commented out call to a hook
2692         function that is no longer there.
2693         (hilit-chg-set): Remove running of highlight-changes-enable-hook.
2695 2008-05-02  Eric S. Raymond  <esr@snark.thyrsus.com>
2697         * vc.el (vc-default-dired-state-info): Change name of primitive
2698         to prettify-state-info, in preparation for ripping out dired mode.
2699         * vc-bzr.el (vc-bzr-dired-state-info): Change name of primitive
2700         to prettify-state-info, in preparation for ripping out dired mode.
2701         * vc-hooks.el (vc-toggle-read-only): Throw an error when a user
2702         tries this on a version-controlled buffer.  It will do useless or
2703         actively bad things on any version control system newer than RCS.
2704         * vc-hooks.el (vc-dired-resynch-file):
2705         * vc.el (vc-dired-resynch-file): Change name of primitive to
2706         vc-directory-resynch-file, preparing to remove dired.
2708 2008-05-02  Dan Nicolaescu  <dann@ics.uci.edu>
2710         * vc-rcs.el (vc-rcs-state): Fix typos.
2712         * vc.el (vc-register): Change argument order so that the prefix
2713         argument is assigned correctly.
2714         (vc-next-action, vc-dir-register): Update for the above change.
2716 2008-05-01  Juri Linkov  <juri@jurta.org>
2718         * replace.el (occur-read-primary-args): Set default to the car of
2719         regexp-history and display it in the prompt, but don't add to the
2720         list of minibuffer defaults.  Bind history-add-new-input to nil to
2721         not add automatically `default'.  For empty input return `default'.
2722         Otherwise, add `input' to regexp-history and return it.
2723         (occur-1): Signal an error for the empty regexp.
2725         * progmodes/compile.el (compilation-auto-jump):
2726         Set window point to `pos' explicitly.
2728 2008-05-01  Eric S. Raymond  <esr@snark.thyrsus.com>
2730         * vc-bzr.el (vc-bzr-state): Allow this to return 'ignored
2731         when appropriate.
2732         * vc-sccs.el (vc-sccs-state): Call vc-sccs-unregistered so
2733         we report the 'unregistered state reliably.
2734         * vc-rcs.el (vc-rcs-state): Call vc-rcs-unregistered so
2735         we report the 'unregistered state reliably.
2736         * vc-git.el (vc-git-state): Call vc-git-unregistered so
2737         we report the 'unregistered state reliably.
2738         * vc-hooks (vc-state): Document that vc-unregistered is
2739         now expected to be returned reliably.
2740         * vc.el (vc-default-dired-state): Change needs-patch state to
2741         needs-update, since the name now shows up in dir-status listings
2742         and was somewhat misleading.
2743         * vc-cvs.el (vc-cvs-delete-file): Don't do a "cvs commit"
2744         immediately after removing the file.
2745         * vc.el (vc-next-action): More informative messages when a fileset
2746         is in a mixed state or files are missing.
2748 2008-05-01  Sam Steingold  <sds@gnu.org>
2750         * vc.el (vc-delete-file): Check if the file has uncommitted changes.
2752 2008-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2754         * Makefile.in: Revert incorrect fix for claimed bootstrap breakage.
2756 2008-05-01  Daiki Ueno  <ueno@unixuser.org>
2758         * epa-file-hook.el: New file split from epa-file.el.
2759         * epa-file.el: Require 'epa-file-hook.
2760         (epa-file-handler): Add autoload cookie.
2761         * loadup.el: Load epa-file-hook.
2762         * startup.el (command-line): Eval the body of auto-encryption-mode.
2764 2008-05-01  Dan Nicolaescu  <dann@ics.uci.edu>
2766         * vc.el (vc-dir-mode-map): Don't bind "r".
2768         * vc-hg.el (vc-hg-extra-fileinfo): New defstruct.
2769         (vc-hg-status-printer): New function.
2770         (vc-hg-after-dir-status): Deal with copied and renamed files.
2771         (vc-hg-dir-status): Add flag to show copied files.
2773 2008-05-01  John Paul Wallington  <jpw@pobox.com>
2775         * ibuffer.el (ibuffer-last-sorting-mode): New variable.
2776         (ibuffer-do-sort-by-recency): Reverse sorting order if last
2777         sorting mode was recency.
2779         * ibuf-macs.el (define-ibuffer-sorter): Define the sorter to
2780         reverse sorting order if last sorting mode was the sorter's.
2782 2008-05-01  Jason Rumney  <jasonr@gnu.org>
2784         * w32-fns.el (w32-charset-info-alist): Map vietnamese to windows-1258.
2786 2008-04-30  John Paul Wallington  <jpw@pobox.com>
2788         * ibuffer.el (define-ibuffer-column filename): When the major mode
2789         is `vc-dir-mode' show the buffer's default directory.
2791         * ibuf-ext.el (define-ibuffer-filter filename): Likewise when the
2792         major mode is `vc-dir-mode' use the buffer's default directory.
2794 2008-04-30  Sam Steingold  <sds@gnu.org>
2796         * vc.el (vc-dir-delete-file): Add.
2797         (vc-dir-mode-map): Bind "r" to vc-dir-delete-file, like in PCL-CVS.
2798         (vc-delete-file): Do not barf when the file has been already deleted.
2800 2008-04-30  Dan Nicolaescu  <dann@ics.uci.edu>
2802         * emacs-lisp/lisp-mode.el (lisp-mode-map): Add menu.
2804 2008-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2806         * progmodes/octave-mod.el (octave-help): New function.
2807         * progmodes/octave-hlp.el: Delete.
2808         * info-look.el (octave-mode): Add operator index.
2810         * vc.el (vc-checkout): Typo.
2812 2008-04-30  Dan Nicolaescu  <dann@ics.uci.edu>
2814         * menu-bar.el (menu-bar-tools-menu): Reorder, place Games last.
2815         Add "..." in the appropriate places.
2817         * epa.el (epa-key-list-mode-map): Add more menu entries.
2818         Add "..." in the appropriate places.
2820         * dired.el (dired-mode-map): Add :help.
2822         * vc.el (vc-deduce-fileset): Add new parameter.
2823         (vc-dir-marked-only-files): New function.
2824         (vc-next-action): Don't ignore directories, look at the files
2825         inside them.
2826         (vc-dir-mode): Document how the mark/unmark commands work.
2828 2008-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2830         * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
2831         Rule out trailing spaces in file and directory names as well.
2833         * minibuffer.el (completion--do-completion): Move point even if the
2834         completion makes no change.
2835         (completion-pcm-try-completion): Fix computation of new point.
2837 2008-04-30  David Hansen  <david.hansen@gmx.net>
2839         * dired.el: Require 'cl.
2841 2008-04-30  Nick Roberts  <nickrob@snap.net.nz>
2843         * progmodes/gdb-ui.el (gdb-frame-handler-1): Make overlay arrow
2844         hollow if not in innermost frame.
2846 2008-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2848         Make `checkout-model' apply to filesets.
2849         * vc-hooks.el (vc-checkout-model): Rewrite.
2850         (vc-before-save, vc-after-save): Adjust callers accordingly.
2851         * vc.el (vc-editable-p, vc-next-action, vc-checkout, vc-update)
2852         (vc-transfer-file): Adjust callers accordingly.
2853         * vc-rcs.el (vc-rcs-checkout-model): Adjust arg.
2854         (vc-rcs-state, vc-rcs-state-heuristic, vc-rcs-receive-file)
2855         (vc-rcs-checkout, vc-rcs-fetch-master-state): Use vc-rcs-checkout-model
2856         instead of vc-checkout-model.
2857         * vc-mcvs.el (vc-mcvs-revert):
2858         Use vc-mcvs-checkout-model i.s.o vc-checkout-model.
2859         * vc-cvs.el (vc-cvs-checkout-model): Adjust arg.
2860         (vc-cvs-revert): Use vc-cvs-checkout-model i.s.o vc-checkout-model.
2861         * vc-svn.el (vc-svn-checkout-model):
2862         * vc-hg.el (vc-hg-checkout-model):
2863         * vc-git.el (vc-git-checkout-model):
2864         * vc-bzr.el (vc-bzr-checkout-model): Adjust arg.
2866         * dired.el (dired-read-dir-and-switches): Replace last change with
2867         a new approach that mixes read-file-name and read-directory-name.
2869         * files.el (read-buffer-to-switch):
2870         Avoid making assumptions about `other-buffer'.
2872 2008-04-29  Sam Steingold  <sds@gnu.org>
2874         * vc.el (vc-dir-mode-hook): Add normal hook.
2875         (vc-dir-mode): Run it.
2877 2008-04-29  Nick Roberts  <nickrob@snap.net.nz>
2879         * progmodes/gdb-ui.el (gdb-display-buffer): Don't pop up GUD buffer.
2880         Always split windows.
2881         (gdb-speedbar-timer-fn): Only raise frame after user input.
2882         (gdb-same-frame): Reverse initial value.
2883         (gdb-display-gdb-buffer): Check for GUD buffer in other frames.
2885         * progmodes/gud.el (gud-speedbar-buttons): Raise frame in
2886         gdb-speedbar-timer-fn.
2888 2008-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2890         * uniquify.el (uniquify-rationalize-a-list): Beware of side-effects.
2892 2008-04-29  Daiki Ueno  <ueno@unixuser.org>
2894         * epa.el (epa-key-list-mode-map): Add menu.
2895         (epa-delete-keys, epa-import-keys): Fix typo.
2897 2008-04-29  Glenn Morris  <rgm@gnu.org>
2899         * find-cmd.el (top-level): Does not need cl when compiling.
2901 2008-04-29  Phil Jackson  <phil@shellarchive.co.uk>
2903         * find-cmd.el: New file.
2905 2008-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2907         * minibuffer.el (completion-hilit-commonality): Remove leftover code.
2908         (completion-pcm--pattern->regex): Let `group' be a list of symbols.
2909         (completion-pcm--hilit-commonality): New function.
2910         (completion-pcm-all-completions): Use it.
2912         * minibuffer.el (completion-common-substring): Mark obsolete.
2913         (completions-first-difference, completions-common-part):
2914         Move from simple.el.
2915         (completion-hilit-commonality): New fun.
2916         (display-completion-list, completion-emacs21-all-completions)
2917         (completion-emacs22-all-completions): Use it.
2918         * simple.el (completions-first-difference, completions-common-part):
2919         Move to minibuffer.el.
2920         (choose-completion-string): Use field functions and minibufferp.
2921         (completion-setup-function): Don't set completions faces.
2923 2008-04-29  Glenn Morris  <rgm@gnu.org>
2925         * calendar/calendar.el (calendar-nth-named-absday)
2926         (calendar-nth-named-day):
2927         * calendar/diary-lib.el (diary-list-sexp-entries, diary-float):
2928         * calendar/holidays.el (holiday-float): Doc fixes.
2930         * emacs-lisp/check-declare.el (check-declare-errmsg): Fix counting in
2931         the `full' case.
2933         * org/org-agenda.el (calendar-iso-from-absolute):
2934         * org/org.el (calendar-absolute-from-iso, calendar-iso-from-absolute):
2935         Fix declarations.
2937 2008-04-28  Nick Roberts  <nickrob@snap.net.nz>
2939         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Make breakpoint
2940         icons work for assembler, i.e. FILE.s, FILE.S (not disassembly).
2941         (gdb-goto-breakpoint): Likewise for visiting breakpoints.
2942         (gdb-assembler-custom): Be careful not to match other addresses.
2944 2008-04-29  Jason Rumney  <jasonr@gnu.org>
2946         * battery.el (battery-status-function): Use w32-battery-status
2947         on Windows.
2948         (battery-echo-area-format): Make apm format the general case.
2949         (battery-mode-line-format): Merge apm and pmset formats as the
2950         general case.
2952 2008-04-29  Nick Roberts  <nickrob@snap.net.nz>
2954         * progmodes/gdb-ui.el (gdb-info-stack-custom):
2955         Use gud-tool-bar-item-visible-no-fringe.
2956         (gdb-display-buffer): Don't pop new buffer if gud-comint-buffer
2957         is already visible in frame.  Remove optional size parameter
2958         and add optional frame parameter.
2960         * progmodes/gud.el (gud-display-line): Only consider visible
2961         frames when looking for source buffer.
2963 2008-04-28  Chong Yidong  <cyd@stupidchicken.com>
2965         * doc-view.el (doc-view-new-window-function): Avoid using WINDOW
2966         argument to get-char-property, in case the current buffer hasn't
2967         been assigned to that window yet.
2968         (doc-view-display): Default to selected window if the current
2969         buffer hasn't been assigned to a window yet.
2971 2008-04-28  Vinicius Jose Latorre  <bzg@altern.org>
2973         * whitespace.el (whitespace-trailing-regexp): Fix docstring.
2975 2008-04-28  Michael Albinus  <michael.albinus@gmx.de>
2977         * net/tramp.el (tramp-mode): New defcustom.
2978         (tramp-file-name-handler, tramp-completion-file-name-handler):
2979         Use it.
2980         (tramp-replace-environment-variables): Handle "$$".
2982 2008-04-28  Sam Steingold  <sds@gnu.org>
2984         * vc-hg.el (vc-hg-rename-file): Fix argument order.
2986 2008-04-28  Bastien Guerry  <bzg@altern.org>
2988         * whitespace.el (whitespace-trailing): Fix typo.
2990 2008-04-28  Sam Steingold  <sds@gnu.org>
2992         * textmodes/remember.el (diary-make-entry): Update the autoload.
2994 2008-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2996         * minibuffer.el (completion-pcm--all-completions): Don't pass nil to
2997         all-completions.
2999 2008-04-28  Juanma Barranquero  <lekktu@gmail.com>
3001         * desktop.el (desktop-minor-mode-table): Add `savehist-mode'.
3003 2008-04-27  Dan Nicolaescu  <dann@ics.uci.edu>
3005         * vc.el (vc-dir-mode-map): Change bindings for unmark all and revert.
3006         (vc-dir-parent-marked-p, vc-dir-children-marked-p): Implement.
3007         (vc-dir-mark-file): Add an optional argument.
3008         (vc-dir-mark-all-files, vc-dir-unmark-all-files): Deal with directories.
3010 2008-04-27  Daiki Ueno  <ueno@unixuser.org>
3012         * epa-file.el (epa-file-enable, epa-file-disable): Use find-file-hook
3013         rather than obsolete alias find-file-hooks.
3014         (auto-encryption-mode): Rename from epa-file-mode.  Default to on.
3015         Use find-file-hook rather than obsolete alias find-file-hooks.
3016         Add to find-file-not-found-functions.
3017         (epa-file-handler): Put 'safe-magic and 'operations properties.
3019         * epa.el (epa-global-minor-modes, epa-mode, epa-menu)
3020         (epa-menu-items): Remove.
3022         * epa-dired.el (epa-dired-do-decrypt, epa-dired-do-verify)
3023         (epa-dired-do-sign, epa-dired-do-encrypt): Add autoload cookie.
3024         (epa-dired-mode, epa-global-dired-mode): Remove.
3026         * dired.el (dired-mode-map): Bind encryption/decryption commands.
3028         * menu-bar.el (menu-bar-encryption-decryption-menu): New menu item.
3030         * files.el (insert-file-contents-literally): Inhibit epa-file-handler.
3032 2008-04-27  Glenn Morris  <rgm@gnu.org>
3034         * textmodes/reftex-global.el (reftex-isearch-switch-to-next-file):
3035         Remove un-needed local `orig-list'.  Replace cl `copy-list'.
3037 2008-04-27  Carsten Dominik  <dominik@science.uva.nl>
3039         * org/org.el (org-html-level-start): Always have id's in HTML.
3040         (org-export-as-html): Use `org-link-protocols' to
3041         retrieve the export form of the link.
3042         (org-add-link-type): Final parameter renamed from PUBLISH.
3043         Better documentation of how it is to be used.  Avoid double entries for
3044         the same link type.
3045         (org-add-link-props): New function.
3046         (org-modules-loaded): New variable.
3047         (org-load-modules-maybe, org-set-modules): New function.
3048         (org-modules): New option.
3049         (org-mode, org-cycle, orgstruct-mode, org-run-like-in-org-mode)
3050         (orgtbl-mode, org-store-link, org-insert-link-global)
3051         (org-open-at-point): Call `org-load-modules-maybe'.
3052         (org-search-view): Add more text properties.
3053         (org-agenda-schedule, org-agenda-deadline): Allow also in
3054         search-type agendas.
3055         (org-search-view): Order of arguments has been changed.
3056         Interpret prefix-arg as TODO-ONLY.
3057         (org-agenda, org-run-agenda-series, org-agenda-manipulate-query):
3058         Take new argument order of `org-search-view' into account.
3059         (org-todo-only): New variable.
3060         (org-search-syntax-table): New variable and function.
3061         (org-search-view): Do the search with the special syntax table.
3062         (define-obsolete-function-alias): Make work with XEmacs.
3063         (org-add-planning-info): Use old date as default when modifying an
3064         existing deadline or scheduled item.
3065         (org-agenda-compute-time-span): Make argument N optional.
3066         (org-agenda-format-date-aligned): Require `cal-iso'.
3067         (org-agenda-list): Include week into agenda heading, don't
3068         list it at each date (only on Mondays).
3069         (org-read-date-analyze): Define local variable `iso-date'.
3070         (org-agenda-format-date-aligned): Remove dependency on
3071         `calendar-time-from-absolute'.
3072         (org-remember-apply-template, org-go-to-remember-target):
3073         Interpret filenames relative to `org-directory'.
3074         (org-complete): Silently fail when trying to complete
3075         keywords that don't have a default value.
3076         (org-get-current-options): Add a #+DATE: option.
3077         (org-additional-option-like-keywords): Remove "DATE:" from the
3078         list of additional keywords.
3079         (org-export-as-html): Remove (current-time) as unnecessary second
3080         argument of `format-time-string'.
3081         (org-clock-find-position): Handle special case at end of buffer.
3082         (org-agenda-day-view): New argument DAY-OF-YEAR, pass it on to
3083         `org-agenda-change-time-span'.
3084         (org-agenda-week-view): New argument ISO-WEEK, pass it on to
3085         `org-agenda-change-time-span'.
3086         (org-agenda-month-view): New argument MONTH, pass it on to
3087         `org-agenda-change-time-span'.
3088         (org-agenda-year-view): New argument YEAR, pass it on to
3089         `org-agenda-change-time-span'.
3090         (org-agenda-change-time-span): New optional argument N, pass it on
3091         to `org-agenda-compute-time-span'.
3092         (org-agenda-compute-time-span): New argument N, interpret it by
3093         changing the starting day.
3094         (org-small-year-to-year): New function.
3095         (org-scheduled-past-days): Respect `org-scheduled-past-days'.
3096         (org-auto-repeat-maybe): Make sure that repeating dates are pushed
3097         into the future, and that the shift is at least one interval, never 0.
3098         (org-update-checkbox-count): Fix bug with checkbox counting.
3099         (org-add-note): New command.
3100         (org-add-log-setup): Rename from `org-add-log-maybe'.
3101         (org-log-note-headings): New entry for plain notes (i.e. notes not
3102         related to state changes or clocking).
3103         (org-get-org-file): Check for availability of `remember-data-file'.
3104         (org-cached-entry-get): Allow a regexp value for
3105         `org-use-property-inheritance'.
3106         (org-use-property-inheritance): Allow regexp value.  Fix bug in
3107         customization type.
3108         (org-use-tag-inheritance): Allow a list and a regexp value for
3109         this variable.
3110         (org-scan-tags, org-get-tags-at): Implement selective tag inheritance.
3111         (org-entry-get): Respect value `selective' for the INHERIT argument.
3112         (org-tag-inherit-p, org-property-inherit-p): New functions.
3113         (org-agenda-format-date-aligned): Allow 10 characters for
3114         weekday, to acomodate German locale.
3115         (org-add-archive-files): New function.
3116         (org-agenda-files): New argument `ext', to get archive files as well.
3117         (org-tbl-menu): Protect the use of variables that
3118         are only available when org-table.el gets loaded.
3119         (org-read-agenda-file-list): Error if `org-agenda-files' is a
3120         single directory.
3121         (org-open-file): Allow a batch process to trigger
3122         waiting after executing a system command.
3123         (org-store-link): Link to headline when there is not
3124         target and no region in an org-mode buffer when creating a link.
3125         (org-link-types-re): New variable.
3126         (org-make-link-regexps): Compute `org-link-types-re'.
3127         (org-make-link-description-function): New option.
3128         (org-agenda-date, org-agenda-date-weekend): New faces.
3129         (org-archive-sibling-heading): New option.
3130         (org-archive-to-archive-sibling): New function.
3131         (org-iswitchb): New command.
3132         (org-buffer-list): New function.
3133         (org-agenda-columns): Also try the #+COLUMNS line in
3134         the buffer associated with the entry at point (or with the first
3135         entry in the agenda view).
3136         (org-modules): Add entry for org-bibtex.el.
3137         (org-completion-fallback-command): Move into `org-completion' group.
3138         (org-clock-heading-function): Move to `org-progress' group.
3139         (org-auto-repeat-maybe): Make sure that a note can
3140         be enforces if `org-log-repeat' is `note'.
3141         (org-modules): Allow additional symbols for external packages.
3142         (org-ctrl-c-ctrl-c): Allow for `org-clock-overlays' to be undefined.
3143         (org-clock-goto): Hide drawers after showing an
3144         entry with `org-clock-goto'.
3145         (org-shiftup, org-shiftdown, org-shiftright, org-shiftleft):
3146         Try also a clocktable block shift.
3147         (org-clocktable-try-shift): New function.
3148         (org-columns-hscoll-title): New function.
3149         (org-columns-previous-hscroll): New variable.
3150         (org-columns-full-header-line-format): New variable.
3151         (org-columns-display-here-title, org-columns-remove-overlays):
3152         Install `org-columns-hscoll-title' in post-command-hook.
3154         * org/org.el: Split into many small files.
3156         * org/org-agenda.el: New file, split off from org.el.
3158         * org/org-archive.el: New file, split off from org.el.
3160         * org/org-bbdb.el: New file.
3162         * org/org-bibtex.el: New file, split off from org.el.
3164         * org/org-clock.el: New file, split off from org.el.
3166         * org/org-colview.el: New file, split off from org.el.
3168         * org/org-compat.el: New file, split off from org.el.
3170         * org/org-exp.el: New file, split off from org.el.
3172         * org/org-faces.el: New file, split off from org.el.
3174         * org/org-gnus.el: New file, split off from org.el.
3176         * org/org-info.el: New file, split off from org.el.
3178         * org/org-infojs.el: New file.
3180         * org/org-irc.el: New file.
3182         * org/org-macs.el: New file, split off from org.el.
3184         * org/org-mew.el: New file.
3186         * org/org-mhe.el: New file, split off from org.el.
3188         * org/org-publish.el: New file, split off from org.el.
3190         * org/org-remember.el: New file, split off from org.el.
3192         * org/org-rmail.el: New file, split off from org.el.
3194         * org/org-table.el: New file, split off from org.el.
3196         * org/org-vm.el: New file, split off from org.el.
3198         * org/org-wl.el: New file, split off from org.el.
3200 2008-04-27  Jason Riedy  <jason@acm.org>
3202         * lisp/org-table.el (orgtbl-to-generic): Add a :remove-nil-lines
3203         parameter that supresses lines that evaluate to NIL.
3204         (orgtbl-get-fmt): New inline function for
3205         picking apart formats that may be lists.
3206         (orgtbl-apply-fmt): New inline function for applying formats that
3207         may be functions.
3208         (orgtbl-eval-str): New inline function for strings that may be
3209         functions.
3210         (orgtbl-format-line, orgtbl-to-generic): Use and document.
3211         (orgtbl-to-latex, orgtbl-to-texinfo): Document.
3212         (*orgtbl-llfmt*, *orgtbl-llstart*)
3213         (*orgtbl-llend*): Dynamic variables for last-line formatting.
3214         (orgtbl-format-section): Shift formatting to support detecting the
3215         last line and formatting it specially.
3216         (orgtbl-to-generic): Document :ll* formats.  Set to the non-ll
3217         formats unless overridden.
3218         (orgtbl-to-latex): Suggest using :llend to suppress the final \\.
3219         (*orgtbl-table*, *orgtbl-rtn*): Dynamically
3220         bound variables to hold the input collection of lines and output
3221         formatted text.
3222         (*orgtbl-hline*, *orgtbl-sep*, *orgtbl-fmt*, *orgtbl-efmt*)
3223         (*orgtbl-lfmt*, *orgtbl-lstart*, *orgtbl-lend*): Dynamically bound
3224         format parameters.
3225         (orgtbl-format-line): New function encapsulating formatting for a
3226         single line.
3227         (orgtbl-format-section): Similar for each section.  Rebinding the
3228         dynamic vars customizes the formatting for each section.
3229         (orgtbl-to-generic): Use orgtbl-format-line and
3230         orgtbl-format-section.
3231         (org-get-param): Now unused, so delete.
3232         (orgtbl-gather-send-defs): New function to
3233         gather all the SEND definitions before a table.
3234         (orgtbl-send-replace-tbl): New function to find the RECEIVE
3235         corresponding to the current name.
3236         (orgtbl-send-table): Use the previous two functions and implement
3237         multiple destinations for each table.
3239         * doc/org.texi (A LaTeX example): Note that fmt may be a
3240         one-argument function, and efmt may be a two-argument function.
3241         (Radio tables): Document multiple destinations.
3243 2008-04-27  Carsten Dominik  <dominik@science.uva.nl>
3245         * org/org-agenda.el (org-add-to-diary-list): New function.
3246         (org-prefix-has-effort): New variable.
3247         (org-sort-agenda-noeffort-is-high): New option.
3248         (org-agenda-columns-show-summaries)
3249         (org-agenda-columns-compute-summary-properties): New options.
3250         (org-format-agenda-item): Compute the duration of the item.
3251         (org-agenda-weekend-days): New variable.
3252         (org-agenda-list, org-timeline): Use the proper faces for dates in
3253         the agenda and timeline buffers.
3254         (org-agenda-archive-to-archive-sibling): New command.
3255         (org-agenda-start-with-clockreport-mode): New option.
3256         (org-agenda-clockreport-parameter-plist): New option.
3257         (org-agenda-clocktable-mode): New variable.
3258         (org-agenda-deadline-leaders): Allow a function value for the
3259         deadline leader.
3260         (org-agenda-get-deadlines): Deal with new function value.
3262         * lisp/org-clock.el (org-clock): New customization group.
3263         (org-clock-into-drawer, org-clock-out-when-done)
3264         (org-clock-in-switch-to-state, org-clock-heading-function):
3265         Move into the new group.
3266         (org-clock-out-remove-zero-time-clocks): New option.
3267         (org-clock-out): Use `org-clock-out-remove-zero-time-clocks'.
3268         (org-dblock-write:clocktable): Allow a Lisp form for the scope
3269         parameter.
3270         (org-dblock-write:clocktable): Fix bug with total time calculation.
3271         (org-dblock-write:clocktable): Request the unrestricted list of files.
3272         (org-get-clocktable): New function.
3273         (org-dblock-write:clocktable): Make sure :tstart and :tend can not only
3274         be strings but also integers (an absolute day number) and lists (m d y).
3276         * org/org-colview.el (org-columns-next-allowed-value)
3277         (org-columns-edit-value): Limit the effort for updating in the
3278         agenda to recomputing a single file.
3279         (org-columns-compute): Only write property value if it has changed.
3280         This avoids raising the buffer-change-flag unnecessarily.
3281         (org-agenda-colview-summarize)
3282         (org-agenda-colview-compute): New functions.
3283         (org-agenda-columns): Call `org-agenda-colview-summarize'.
3285         * org/org-exp.el (org-export-run-in-background): New option.
3286         (org-export-icalendar): Allow a batch process to trigger waiting
3287         after executing a system command.
3288         (org-export-preprocess-string): Rename from
3289         `org-cleaned-string-for-export'.
3290         (org-export-html-style): Made target class look like normal text.
3291         (org-export-as-html): Make use of the better proprocessing in
3292         `org-cleaned-string-for-export'.
3293         (org-cleaned-string-for-export): Better treatment of heuristic
3294         targets, many more internal links will now work in HTML export.
3295         (org-get-current-options): Incorporate LINK_UP, LINK_HOME, and INFOJS.
3296         (org-export-inbuffer-options-extra): New variable.
3297         (org-export-options-filters): New hook.
3298         (org-infile-export-plist): Find also the settings keywords in
3299         `org-export-inbuffer-options-extra'.
3300         (org-infile-export-plist): Allow multiple #+OPTIONS lines and
3301         multiple #+INFOJS_OPT lines.
3302         (org-export-html-handle-js-options): New function.
3303         (org-export-html-infojs-setup): New option.
3304         (org-export-as-html): Call `org-export-html-handle-js-options'.
3305         Add autoload to all entry points.
3306         (org-skip-comments): Function removed.
3308         * org/org-table.el (org-table-make-reference): Extra parenthesis
3309         around single fields, to make sure that algebraic formulas get
3310         correctly interpreted by calc.
3311         (org-table-current-column): No longer interactive.
3313         * org/org-export-latex.el (org-export-latex-preprocess):
3314         Rename from `org-export-latex-cleaned-string'.
3316 2008-04-27  Bastien Guerry  <bzg@altern.org>
3318         * org/org-publish.el (org-publish-get-base-files-1): New function.
3319         (org-publish-get-base-files): Use it.
3320         (org-publish-temp-files): New variable.
3321         Don't require 'dired-aux anymore.
3322         (org-publish-initial-buffer): New variable.
3323         (org-publish-org-to, org-publish): Use it.
3324         (org-publish-get-base-files-1): Bug fix: get
3325         the proper list of files when recursing thru a directory.
3326         (org-publish-get-base-files): Use the :exclude property to skip
3327         both files and directories.
3329 2008-04-27  Michael Albinus  <michael.albinus@gmx.de>
3331         * net/tramp.el (tramp-handle-make-symbolic-link)
3332         (tramp-handle-file-name-directory)
3333         (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
3334         (tramp-do-copy-or-rename-file-directly)
3335         (tramp-handle-insert-directory, tramp-handle-expand-file-name)
3336         (tramp-handle-substitute-in-file-name)
3337         (tramp-handle-insert-file-contents, tramp-handle-write-region)
3338         * net/tramp-cache.el (tramp-get-file-property)
3339         (tramp-set-file-property, tramp-flush-file-property)
3340         (tramp-flush-directory-property)
3341         * net/tramp-compat.el (tramp-compat-make-temp-file)
3342         * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
3343         Disable `file-name-handler-alist' when handling localname.
3344         It could have a remote file syntax, like a VMS file name.
3346 2008-04-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3348         * whitespace.el: New version 11.1.
3349         (whitespace-trailing-regexp): Option fix, now trailing regexp must be
3350         enclosed by \\( and \\)$.  Docstring fix.
3351         (whitespace-trailing-regexp): Fun removed.
3352         (whitespace-report-list): Const initialization fix.
3353         (whitespace-color-on): Code fix.
3355 2008-04-27  Andreas Schwab  <schwab@suse.de>
3357         * Makefile.el: Unbreak bootstrap.
3359 2008-04-27  Michael Albinus  <michael.albinus@gmx.de>
3361         * net/tramp.el (tramp-replace-environment-variables): New defun.
3362         (tramp-handle-substitute-in-file-name, tramp-file-name-handler):
3363         Use it.
3365 2008-04-27  Glenn Morris  <rgm@gnu.org>
3367         * emacs-lisp/bytecomp.el (byte-compile-file): Doc fix.
3369         * calculator.el (calculator-expt): Replace cl function `oddp'.
3371 2008-04-27  Johan BockgÃ¥rd  <bojohan@gnu.org>
3373         * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
3374         Simplify.  Collect `defun' and `autoload' entries.
3375         Avoid modifying load-history.
3377 2008-04-26  Glenn Morris  <rgm@gnu.org>
3379         * textmodes/ispell.el (ispell-insert-word): Revert previous change.
3381         * simple.el (quoted-insert, zap-to-char): Revert previous change.
3383 2008-04-26  John Paul Wallington  <jpw@pobox.com>
3385         * hexl.el (hexl-mode): Stash `eldoc-documentation-function' in
3386         `hexl-mode-old-eldoc-documentation-function'.
3387         (hexl-mode-exit): Restore it.
3388         (hexl-mode-old-eldoc-documentation-function): Declare for compiler.
3390         * w32-fns.el (top-level): Don't set `completion-ignore-case' to t.
3392 2008-04-26  Juanma Barranquero  <lekktu@gmail.com>
3394         * minibuffer.el (completion-pcm-word-delimiters): Add :group.
3395         (completion-pcm--all-completions): Doc fix.
3396         (completion-styles-alist, completion-all-completions):
3397         Fix typos in docstrings.
3399 2008-04-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3401         * whitespace.el: There is now only one variable (whitespace-style) to
3402         specify which kind of blank is visualized.  Doc and docstring fix.
3403         New version 11.0.
3404         (whitespace-style): New option, replace whitespace-style-mark and
3405         whitespace-style-color.
3406         (whitespace-style-mark, whitespace-style-color): Options removed.
3407         (whitespace-hspace, whitespace-tab, whitespace-newline)
3408         (whitespace-trailing, whitespace-line, whitespace-space-before-tab)
3409         (whitespace-indentation, whitespace-empty, whitespace-space-after-tab)
3410         (whitespace-hspace-regexp, whitespace-space-regexp)
3411         (whitespace-tab-regexp, whitespace-trailing-regexp)
3412         (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
3413         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
3414         (whitespace-space-after-tab-regexp, whitespace-line-column)
3415         (whitespace-display-mappings, whitespace-report): Docstring fix.
3416         (whitespace-color-value-list, whitespace-mark-value-list)
3417         (whitespace-active-color, whitespace-active-mark)
3418         (whitespace-toggle-color, whitespace-toggle-mark): Vars removed.
3419         (whitespace-style-value-list, whitespace-active-style)
3420         (whitespace-toggle-style): New vars.
3421         (whitespace-toggle-option-alist, whitespace-help-text):
3422         Var initialization and docstring fix.
3423         (whitespace-toggle-options, global-whitespace-toggle-options)
3424         (whitespace-cleanup, whitespace-cleanup-region)
3425         (whitespace-report-region, whitespace-interactive-char)
3426         (whitespace-toggle-list): Docstring and code fix.
3427         (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
3428         (whitespace-turn-off, whitespace-color-on, whitespace-color-off)
3429         (whitespace-display-char-on, whitespace-display-char-off): Code fix.
3430         (whitespace-style-face-p, whitespace-style-mark-p): New fun.
3432 2008-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3434         * diff-mode.el (diff-hunk-header-re-unified): Allow elided line counts.
3435         (diff-end-of-hunk, diff-unified->context, diff-fixup-modifs)
3436         (diff-sanity-check-hunk): Adjust code accordingly.
3438 2008-04-26  Glenn Morris  <rgm@gnu.org>
3440         * abbrev.el (define-abbrev): Don't use `iff' in doc-strings.
3442         * forms-d2.dat: Move to ../etc.
3443         * forms-d2.el (forms-file): Adapt for above change.
3445         * simple.el (quoted-insert, zap-to-char): Remove uses of obsolete
3446         `translation-table-for-input'.
3448         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): New function.
3449         (byte-compile-obsolete, byte-compile-variable-ref): Use it.
3451         * progmodes/fortran.el (fortran-mode-syntax-table): Change `;'
3452         to punctuation now it's not needed for abbrevs.
3453         (fortran-mode-abbrev-table): Remove defvar, make use of new
3454         define-abbrev-table :regexp feature.
3456         * textmodes/ispell.el (ispell-insert-word): Remove, and replace with
3457         insert, now that translation-table-for-input is not needed.
3459 2008-04-26  Johannes Weiner  <hannes@saeurebad.de>
3461         * emacs-lisp/pp.el (pp-display-expression): New function,
3462         extracted from pp-eval-expression.
3463         (pp-eval-expression): Use pp-display-expression.
3464         (pp-macroexpand-expression, pp-macroexpand-last-sexp): New functions.
3465         (pp-last-sexp): New function, extracted from pp-eval-last-sexp.
3466         (pp-eval-last-sexp): Use pp-last-sexp.
3468 2008-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3470         * abbrev.el (define-abbrev-table): Apply props even if the table
3471         exists already.
3473         * minibuffer.el (completion-table-with-context): Fix `pred' for the
3474         various kinds of completion tables.
3475         (completion-emacs22-try-completion): Place cursor after the /, as was
3476         done in Emacs-22's minibuffer-complete-word.
3477         Fix bug reported by David Hansen <david.hansen@gmx.net>.
3478         (completion-emacs22-try-completion): Merge all mergable text rather
3479         than just /.
3480         (completion-pcm--delim-wild-regex): New var.
3481         (completion-pcm-word-delimiters): New custom.
3482         (completion-pcm--prepare-delim-re, completion-pcm--pattern-trivial-p)
3483         (completion-pcm--string->pattern, completion-pcm--pattern->regex)
3484         (completion-pcm--all-completions, completion-pcm-all-completions)
3485         (completion-pcm--merge-completions, completion-pcm--pattern->string)
3486         (completion-pcm-try-completion): New functions.
3487         (completion-styles-alist): Add them.
3488         (completion-styles): Add it to the default.
3490 2008-04-25  Nick Roberts  <nickrob@snap.net.nz>
3492         * progmodes/gdb-ui.el (gud-watch): Don't create speedbar...
3493         (gdb-var-create-handler): ...until here when there are values.
3494         (gdb-post-prompt): Don't do -var-update with no watch expressions.
3495         (gdb-info-locals-handler): Don't match "struct {...}" as an array.
3497 2008-04-25  Eli Zaretskii  <eliz@gnu.org>
3499         * ls-lisp.el (ls-lisp-format): Fix last change.
3500         (ls-lisp-uid-d-fmt, ls-lisp-uid-s-fmt, ls-lisp-gid-d-fmt)
3501         (ls-lisp-gid-s-fmt, ls-lisp-filesize-d-fmt)
3502         (ls-lisp-filesize-f-fmt): New defvars.
3503         (ls-lisp-insert-directory): Dynamically compute format specifiers
3504         for displaying UID, GID, and file size, and store them in the
3505         above variables.
3506         (ls-lisp-format): Use ls-lisp-filesize-f-fmt, ls-lisp-uid-s-fmt,
3507         ls-lisp-uid-d-fmt, ls-lisp-gid-s-fmt, and ls-lisp-gid-d-fmt
3508         instead of constant format strings.
3509         (ls-lisp-format-file-size): Use ls-lisp-filesize-f-fmt and
3510         ls-lisp-filesize-d-fmt instead of constant format strings.
3512 2008-04-24  Nick Roberts  <nickrob@snap.net.nz>
3514         * progmodes/gdb-ui.el (gdb-invalidate-assembler): Compare numeric
3515         value of addresses rather than (partial) string value.
3516         (gdb-frame-handler): Change regexp according to above change.
3517         (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
3518         (gdb-registers-mode, gdb-memory-mode, gdb-locals-mode)
3519         (gdb-assembler-mode): Disable undo in these buffers.
3521 2008-04-24  Michael Albinus  <michael.albinus@gmx.de>
3523         * net/tramp.el (tramp-get-remote-stat): Test whether stat supports %s.
3524         Reported by Loris Bennett <loris.bennett@fu-berlin.de>.
3526 2008-04-24  Sam Steingold  <sds@gnu.org>
3528         * textmodes/remember.el (remember-diary-extract-entries): Use
3529         diary-make-entry instead of the obsolete make-diary-entry.
3531 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3533         * subr.el (translation-table-for-input): Mark as obsolete.
3535         * isearch.el (isearch-search-string): Avoid string-bytes and aset.
3537         * international/quail.el (quail-build-decode-map): Avoid string-bytes.
3539         * textmodes/ispell.el (ispell-dictionary-alist-1)
3540         (ispell-dictionary-alist-2, ispell-dictionary-alist-3)
3541         (ispell-dictionary-alist-4, ispell-dictionary-alist-5)
3542         (ispell-dictionary-alist-6): Remove.
3543         (ispell-dictionary-base-alist): New var, merges the above.
3544         (ispell-find-aspell-dictionaries, ispell-set-spellchecker-params):
3545         Use it.
3546         (ispell-dictionary-alist): Default to nil.  Remove autoload.
3547         (ispell-local-dictionary-alist): Remove autoload.
3549         * progmodes/f90.el (f90-mode-syntax-table): Don't set ` as word syntax.
3550         (f90-mode-abbrev-table): Use the new :regexp feature.
3551         Merge defvar and mapc into define-abbrev-table.
3552         (f90-imenu-type-matcher): Remove unused `l'.
3553         (f90-imenu-generic-expression): Remove unused `not-ib'.
3554         (f90-prepare-abbrev-list-buffer): Use with-current-buffer.
3555         (f90-change-keywords): Use restore-buffer-modified-p.
3557 2008-04-24  Glenn Morris  <rgm@gnu.org>
3559         * net/goto-addr.el (goto-address-prog-mode):
3560         * progmodes/bug-reference.el (bug-reference-prog-mode):
3561         Define for compiler.
3563         * minibuffer.el (x-file-dialog): Declare as function.
3565         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file): Use
3566         dframe-update-speed rather than obsolete alias speedbar-update-speed.
3568         * calendar/cal-menu.el (cal-menu-diary-menu): Fix typo.
3569         (cal-menu-scroll-menu): Use commands rather than key macros, which don't
3570         work with easymenu.  Add :keys where needed.
3572         * calendar/cal-move.el (calendar-scroll-left): Handle case when
3573         event-start is nil.
3575         * calendar/calendar.el (calendar-mode-map): Fix typo.
3577 2008-04-24  Tom Tromey  <tromey@redhat.com>
3579         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
3580         Document keywords.  Add :suppress.
3581         * pcvs-defs.el (cvs-mode-map): Use :suppress.
3583         * net/goto-addr.el (goto-address-unfontify): New function.
3584         (goto-address-fontify): Use it.  Respect goto-address-prog-mode.
3585         (goto-address-fontify-region, goto-address-mode)
3586         (goto-address-prog-mode): New functions.
3588         * progmodes/bug-reference.el: New file.
3590 2008-04-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3592         * term/mac-win.el (mac-ts-active-input-buf): Move defvar to macterm.c.
3594 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3596         * emacs-lisp/easymenu.el (easy-menu-make-symbol): Don't wrap keyboard
3597         macros within lambdas.
3599 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3601         * minibuffer.el (completion-try-completion): Add `point' argument.
3602         Change return value.
3603         (completion-all-completions): Add `point' argument.
3604         (minibuffer-completion-help): Pass the new `point' argument.
3605         (completion--do-completion): Pass the whole field to try-completion.
3606         (completion--try-word-completion): Rewrite, making fewer assumptions.
3607         (completion-emacs21-try-completion, completion-emacs21-all-completions)
3608         (completion-emacs22-try-completion, completion-emacs22-all-completions)
3609         (completion-basic-try-completion, completion-basic-all-completions):
3610         New functions.
3611         (completion-styles-alist): Use them.
3613 2008-04-23  Agustín Martín  <agustin.martin@hispalinux.es>
3615         * ispell.el (ispell-set-spellchecker-params): New function to make sure
3616         right params and dictionary alists are used after spellchecker changes.
3617         (ispell-aspell-dictionary-alist, ispell-last-program-name)
3618         (ispell-initialize-spellchecker-hook): New variables and hook.
3619         (ispell-find-aspell-dictionaries): Use ispell-aspell-dictionary-alist.
3620         (ispell-maybe-find-aspell-dictionaries): Remove.
3621         Calls replaced by (ispell-set-spellchecker-params) calls.
3622         (ispell-have-aspell-dictionaries): Remove.
3623         * flyspell.el: Replace ispell-maybe-find-aspell-dictionaries by
3624         ispell-set-spellchecker-params.
3626 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3628         * complete.el (PC-do-completion): Be more robust in the presence of
3629         unexpected values in minibuffer-completion-predicate.
3631         * minibuffer.el (read-file-name): Don't let-bind default-directory.
3632         Only abbreviate default-filename if it's a file.
3634         * minibuffer.el (read-file-name-function, read-file-name-predicate)
3635         (read-file-name-completion-ignore-case, insert-default-directory):
3636         New vars, moved from fileio.c.
3637         (read-file-name): New fun, moved from fileio.c.
3638         * cus-start.el: Remove insert-default-directory and
3639         read-file-name-completion-ignore-case.
3641 2008-04-23  Magnus Henoch  <mange@freemail.hu>
3643         * tar-mode.el (tar-untar-buffer): If the entry has directory
3644         link type, extract it as a directory even if its file name doesn't
3645         end with a slash.  Fixes extraction of NetBSD tar archives.
3647 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3649         * server.el (server-start): Also don't get confused by CRs since we
3650         don't quote them.
3652 2008-04-23  Nick Roberts  <nickrob@snap.net.nz>
3654         * progmodes/gdb-ui.el (gdb-init-buffer): New function.
3655         (gdb-set-gud-minor-mode-existing-buffers)
3656         (gdb-info-breakpoints-custom, gdb-get-location)
3657         (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
3658         Previously gdb-create-define-alist wasn't always run and added to
3659         after-save-hook.
3661         * progmodes/gud.el (gud-tooltip-tips): Use tooltip-event-buffer.
3663 2008-04-23  Kevin Ryde  <user42@zip.com.au>
3665         * progmodes/make-mode.el (makefile-fill-paragraph): Treat indented
3666         comments like unindented ones.
3668 2008-04-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3670         * term/mac-win.el (mac-ae-open-documents): Adjust selection range
3671         parameter origins.
3673 2008-04-23  Kevin Ryde  <user42@zip.com.au>
3675         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3676         Bind print-level to ensure output forms aren't truncated if
3677         print-level is set to eval-expression-print-level when going via
3678         eval-defun and friends, or has been otherwise fiddled with.
3680 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3682         * progmodes/cc-mode.el (c-basic-common-init): Don't set
3683         font-lock-extend-after-change-region-function globally.
3685 2008-04-23  Juanma Barranquero  <lekktu@gmail.com>
3687         * speedbar.el (speedbar-use-tool-tips-flag)
3688         (speedbar-ignored-directory-regexp, speedbar-file-unshown-regexp)
3689         (speedbar-file-regexp, speedbar-message, speedbar-item-info)
3690         (speedbar-files-item-info, speedbar-maybe-add-localized-support)
3691         (speedbar-insert-files-at-point, speedbar-dynamic-tags-function-list)
3692         (speedbar-generic-list-positioned-group-p, speedbar-insert-generic-list)
3693         (speedbar-fetch-replacement-function, speedbar-extract-one-symbol)
3694         (speedbar-separator-face): Fix typos in docstrings.
3695         (speedbar-stealthy-function-list, speedbar-verbosity-level)
3696         (speedbar-supported-extension-expressions, speedbar-update-current-file)
3697         (speedbar-add-indicator, speedbar-tag-expand): Reflow docstring.
3698         (speedbar-use-imenu-flag, speedbar-ignored-directory-expressions)
3699         (speedbar-directory-unshown-regexp, speedbar-handle-delete-frame)
3700         (speedbar-show-info-under-mouse, speedbar-directory-buttons)
3701         (speedbar-check-vc-this-line, speedbar-files-line-directory)
3702         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
3703         (speedbar-buffers-line-directory, speedbar-recenter-to-top)
3704         (speedbar-recenter): Doc fixes.
3705         (speedbar-update-speed, speedbar-navigating-speed): Add obsolescence
3706         declaration and remove redundant info in docstring.
3708 2008-04-23  Dan Nicolaescu  <dann@ics.uci.edu>
3710         * vc-git.el (vc-git-status-printer): Deal with directories.
3712         * vc.el (vc-next-action): Look at more than the first file to
3713         determine the state.
3715 2008-04-23  Glenn Morris  <rgm@gnu.org>
3717         * dframe.el (dframe-have-timer-flag): Drop support for Emacs without
3718         timers.  Doc fix.
3719         (dframe-update-speed): Drop support for XEmacs < 20.
3720         (dframe-frame-mode): Drop support for Emacs < 20.
3721         (dframe-set-timer-internal): Drop support for Emacs without timers.
3722         (dframe-popup-kludge): Use mouse-menu-major-mode-map if defined.
3724         * ediff-init.el (ediff-check-version): Drop support for very old Emacs
3725         versions.  Add doc-string.  Mark as obsolete.
3727         * ps-def.el (ps-color-device): Drop support for XEmacs < 19.12.
3729         * speedbar.el (speedbar-use-tool-tips-flag): Check for tooltip-mode,
3730         rather than using an Emacs version test.
3732         * tree-widget.el (tree-widget-image-enable): Use display-images-p
3733         rather than an Emacs version test.
3735         * calendar/cal-china.el (holiday-chinese-qingming)
3736         (holiday-chinese-winter-solstice, holiday-chinese): New functions.
3737         * calendar/calendar.el (calendar-chinese-all-holidays-flag): New.
3738         * calendar/holidays.el (holiday-oriental-holidays): Add more holidays.
3740         * calendar/cal-islam.el (holiday-islamic): Doc fix.
3742         * calendar/diary-lib.el (diary-list-sexp-entries): Doc fix.
3743         (diary-remind): Allow negative DAYS to represent a range 1:DAYS.
3744         Suggested by Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
3746 2008-04-23  Nick Roberts  <nickrob@snap.net.nz>
3748         * progmodes/gdb-ui.el (gdb-previous-frame-address): Rename...
3749         (gdb-previous-frame-pc-address): ...to this.
3750         (gdb-get-selected-frame): Use MI command -stack-info-frame instead
3751         of "info frame" with Gdb 6.4+.
3752         (gdb-stack-list-frames-regexp): New regexp.
3753         (gdb-frame-handler-1): Parse output of -stack-info-frame.
3755 2008-04-22  David Glasser  <glasser@davidglasser.net>  (tiny change)
3757         * tar-mode.el (tar-prefix-offset): New constant.
3758         (tar-header-block-tokenize): Support paths with long names
3759         which use the "ustar" standard.
3761 2008-04-22  Mathias Dahl  <mathias.dahl@gmail.com>
3763         * image-dired.el (image-dired-track-original-file)
3764         (image-dired-modify-mark-on-thumb-original-file):
3765         Use `dired-goto-file' instead of `search-forward'.  This solves
3766         a bug with finding files where the file name is a subset of other
3767         file names.  Doc fix.
3769 2008-04-22  Juri Linkov  <juri@jurta.org>
3771         * menu-bar.el (buffers-menu-max-size): Move its definition down to
3772         the "Buffers Menu" section.  Change group name `mouse' to `menu'.
3773         (yank-menu-length): Change group name `mouse' to `menu'.
3774         (buffers-menu-buffer-name-length): New user option.
3775         (menu-bar-update-buffers): Use buffers-menu-buffer-name-length
3776         instead of the hard-coded number 27.
3778 2008-04-22  Juri Linkov  <juri@jurta.org>
3780         * isearch.el (eval-when-compile): Require `help-macro'.
3781         (isearch-help-for-help-internal): Isearch specific Help screen
3782         created by `make-help-screen'.
3783         (isearch-help-map): New variable that binds "b", "k", "m" to
3784         isearch-specific commands, and binds other keys to
3785         isearch-other-control-char, thus allowing other Help keys to
3786         exit isearch mode and execute their global definitions.
3787         (isearch-help-for-help, isearch-describe-bindings)
3788         (isearch-describe-key, isearch-describe-mode): New commands.
3789         (isearch-mode-help): Define alias to isearch-describe-mode
3790         and remove its old function definition.
3791         (isearch-mode-map): Bind "\C-h" to isearch-help-map.
3792         Remove old comments because this issue is settled now.
3793         (isearch-forward): Describe three new Help commands in the docstring.
3794         (isearch-mode): Remove \\{isearch-mode-map} from the docstring,
3795         leave the single sentence at the first line of the docstring,
3796         and prepend the word "function" before `isearch-forward'
3797         to make the Help link to the function instead of variable.
3799 2008-04-22  Juri Linkov  <juri@jurta.org>
3801         * isearch.el (isearch-success-function): New variable with default
3802         to `isearch-success-function-default'.
3803         (isearch-search): Call a function from `isearch-success-function'
3804         instead of calling the hard-coded `isearch-range-invisible'.
3805         (isearch-success-function-default): New function that calls
3806         `isearch-range-invisible' and inverts its return value.
3808         * info.el (Info-search): In two similar places that skip
3809         undesired search matches move code to Info-search-success-function,
3810         and call `isearch-success-function' instead.
3811         (Info-search-success-function): New function copied from code
3812         in Info-search.  Replace isearch-range-invisible with
3813         text-property-not-all that checks for 'invisible and 'display
3814         properties to skip partially invisible matches (whose display
3815         properties were set by Info-fontify-node).
3816         (Info-mode): Set buffer-local isearch-success-function
3817         to Info-search-success-function.
3819 2008-04-22  Juri Linkov  <juri@jurta.org>
3821         * minibuffer.el (internal-complete-buffer-except): New function.
3823         * files.el (read-buffer-to-switch): New function.
3824         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
3825         Change interactive spec to call read-buffer-to-switch instead of
3826         using the letter "B".
3828         * simple.el (minibuffer-default-add-shell-commands): New function.
3829         Use declare-function for mailcap-file-default-commands from "mailcap".
3830         (shell-command): Set local minibuffer-default-add-function to
3831         minibuffer-default-add-shell-commands in minibuffer-with-setup-hook
3832         before calling read-shell-command.  Set 4th arg default-value of
3833         read-shell-command to relative buffer-file-name in file buffers.
3835         * dired-aux.el (dired-read-shell-command-default): Move it to
3836         gnus/mailcap.el and change its name to more general name
3837         mailcap-file-default-commands.
3838         (minibuffer-default-add-dired-shell-commands): New function.
3839         Use declare-function for mailcap-file-default-commands from "mailcap".
3840         (dired-read-shell-command): Set local minibuffer-default-add-function
3841         to minibuffer-default-add-dired-shell-commands in minibuffer-with-setup-hook
3842         before calling read-shell-command.  Remove dired-read-shell-command-default
3843         from the default value arg because default values are not set in
3844         minibuffer-default-add-dired-shell-commands.  Doc fix.
3846         * dired-x.el (dired-smart-shell-command): Sync arguments and
3847         interactive spec with changes in `shell-command'.
3848         Use dired-get-filename to get the dired file name at point
3849         as the default value in dired mode.
3851 2008-04-22  Juanma Barranquero  <lekktu@gmail.com>
3853         * info.el (Info-complete-menu-item): Add missing parenthesis.
3855 2008-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3857         * info.el (Info-complete-menu-item): Save point.
3859 2008-04-22  Juanma Barranquero  <lekktu@gmail.com>
3861         * minibuffer.el (minibuffer-complete-and-exit): Fix last change.
3863 2008-04-22  Andreas Schwab  <schwab@suse.de>
3865         * Makefile.in (emacs-deps): Define.
3866         Use it instead of $(lisp)/subdirs.el.
3868 2008-04-22  Dan Nicolaescu  <dann@ics.uci.edu>
3870         * vc.el (vc-next-action): Do not consider directories when
3871         checking for state compatibility.
3872         (vc-transfer-file): Use when not if.
3873         (vc-dir-parent-marked-p, vc-dir-children-marked-p): New functions.
3874         (vc-dir-mark-file): Use them.
3875         (vc-deduce-fileset): Also return the backend.
3876         (vc-diff-internal): Take as argument the value returned by
3877         vc-deduce-fileset instead of just the fileset.
3878         (vc-next-action, vc-finish-logentry, vc-version-diff, vc-diff)
3879         (vc-dir-mark-file, vc-print-log, vc-revert, vc-rollback)
3880         (vc-update): Update the vc-deduce-fileset and vc-diff-internal calls.
3882 2008-04-22  Tassilo Horn  <tassilo@member.fsf.org>
3884         * doc-view.el (doc-view-scroll-up-or-next-page): Don't use
3885         set-window-vscroll but image-scroll-down.  Fixes a bug where a
3886         command following SPC scrolled up again.
3888 2008-04-22  Nick Roberts  <nickrob@snap.net.nz>
3890         * progmodes/gdb-ui.el (gdb-locals-header): New variable.
3891         (gdb-locals-mode, gdb-registers-mode): Use it for header line.
3892         (gud-watch): Add "$" prefix when in registers buffer.
3894 2008-04-22  Glenn Morris  <rgm@gnu.org>
3896         * progmodes/gdb-ui.el (gdbmi-invalidate-frames): Declare as function.
3898         * whitespace.el (whitespace-display-table)
3899         (whitespace-display-table-was-local): Move definitions before use.
3901         * emacs-lisp/copyright.el (copyright-at-end-flag): New option.
3902         (copyright-limit): Respect copyright-at-end-flag.
3903         (copyright-re-search, copyright-start-point)
3904         (copyright-offset-too-large-p): New functions.
3905         (copyright-update-year): Use copyright-re-search.
3906         (copyright-update, copyright-fix-years): Use copyright-start-point,
3907         and copyright-re-search.
3908         (copyright): Use copyright-offset-too-large-p.
3909         * add-log.el (change-log-mode): Set copyright-at-end-flag.
3911         * add-log.el (top-level): Require 'cl when compiling.
3913 2008-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3915         * complete.el (PC-complete-as-file-name, PC-read-file-name-internal):
3916         Treat minibuffer-completion-predicate as a predicate.
3918         * minibuffer.el (completion--file-name-table): Accept both the old
3919         `dir' arg or the new `pred' arg.
3921         * ffap.el (ffap-read-file-or-url): Do not abuse completing-read's
3922         `predicate' argument to pass non-predicate data.
3923         (ffap-read-url-internal, ffap-read-file-or-url-internal):
3924         Use second arg as proper predicate.
3926         * vc-bzr.el (vc-bzr-complete-with-prefix): Remove.
3927         (vc-bzr-revision-completion-table): Use completion-table-with-context
3928         instead.
3930         * simple.el (choose-completion-string): Use minibuffer-completion-table.
3932 2008-04-21  Chong Yidong  <cyd@stupidchicken.com>
3934         * term.el (term-emulate-terminal): Perform redisplay after the
3935         process filter has finished running.
3937 2008-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3939         * vc.el (vc-dir): Use pop-to-buffer, so it can be customized.
3941         * minibuffer.el (completion-try-completion): Change magic symbol
3942         property name.  Rename from minibuffer-try-completion.
3943         (completion-all-completions): Rename from minibuffer-all-completions.
3944         Remove hide-spaces argument.
3945         (completion--do-completion): Rename from minibuffer--do-completion.
3946         (minibuffer-complete-and-exit): Call just try-completion rather than
3947         completion-try-completion to fix up the case.
3948         (completion--try-word-completion): Try to add space or hyphen before
3949         making `string' a prefix of `completion'.
3950         (completion--insert-strings): Rename from minibuffer--insert-strings.
3952 2008-04-22  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
3954         * net/tls.el (tls-program): Add -ign_eof argument to call the
3955         openssl commands.
3956         (tls-checktrust): Ditto.
3958 2008-04-21  Dan Nicolaescu  <dann@ics.uci.edu>
3960         * vc-cvs.el (vc-cvs-status-extra-headers): New function.
3962         * vc-hooks.el (vc-insert-file, vc-state, vc-working-revision)
3963         (vc-check-master-templates, vc-file-not-found-hook)
3964         (vc-kill-buffer-hook):
3965         * vc.el (vc-process-sentinel, vc-exec-after, vc-do-command)
3966         (vc-find-position-by-context, vc-buffer-context)
3967         (vc-restore-buffer-context, vc-responsible-backend)
3968         (vc-expand-dirs, vc-ensure-vc-buffer, vc-buffer-sync)
3969         (vc-next-action, vc-register, vc-register-with, vc-steal-lock)
3970         (vc-finish-logentry, vc-coding-system-for-diff, vc-switches)
3971         (vc-version-diff, vc-diff, vc-insert-headers)
3972         (vc-dired-buffers-for-dir, vc-dired-resynch-file)
3973         (vc-snapshot-precondition, vc-create-snapshot, vc-print-log)
3974         (vc-revert, vc-rollback, vc-version-backup-file)
3975         (vc-rename-master, vc-delete-file, vc-rename-file)
3976         (vc-branch-part, vc-default-retrieve-snapshot)
3977         (vc-annotate-display-autoscale, vc-annotate-display-select)
3978         (vc-annotate, vc-annotate-warp-revision, vc-annotate-difference)
3979         (vc-annotate-lines, vc-file-tree-walk-internal): Use when instead of if.
3980         (vc-dir-update): Handle directories.
3981         (vc-default-status-printer): Simplify.
3983         * progmodes/asm-mode.el (asm-mode-map):
3984         * progmodes/hideif.el (hide-ifdef-mode-menu): Add :help.
3986         * progmodes/m4-mode.el (m4-mode-map): Add menu.
3988 2008-04-21  Kenichi Handa  <handa@m17n.org>
3990         * select.el (xselect-convert-to-string): Send a C_STRING only if
3991         the polymorphic target TEXT is requested.
3993 2008-04-21  Juanma Barranquero  <lekktu@gmail.com>
3995         * minibuffer.el (completion-setup-hook, display-completion-list)
3996         (completion--file-name-table): Fix typos in docstrings.
3997         (completion-table-dynamic): Fix typo, and reflow docstring.
3999 2008-04-20  Andreas Schwab  <schwab@suse.de>
4001         * server.el (server-switch-buffer): Also consider clients in the
4002         selected frame.
4004 2008-04-19  Nick Roberts  <nickrob@snap.net.nz>
4006         * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
4007         Select window clicked on first.
4008         (gdb): Display thread number in mode-line.
4009         (gdb-make-header-line-mouse-map): Move to avoid byte compiler warnings.
4010         (gdb-breakpoints-header): New variable.
4011         (gdb-breakpoints-mode, gdb-threads-mode): Use it for header line.
4013 2008-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4015         * vc-sccs.el (vc-sccs-do-command): New fun.  Use the "sccs" command.
4016         (vc-sccs-register, vc-sccs-checkin, vc-sccs-find-revision)
4017         (vc-sccs-checkout, vc-sccs-rollback, vc-sccs-revert)
4018         (vc-sccs-steal-lock, vc-sccs-modify-change-comment)
4019         (vc-sccs-print-log): Use it.
4021         * vc-hooks.el (vc-path): Remove SCCS-specific hack.
4023         * emacs-lisp/lisp-mode.el (lisp-mode-auto-fill): Make it an alias.
4024         * progmodes/scheme.el (scheme-mode-variables): Don't use it.
4026         * tooltip.el (tooltip-previous-message): New var.
4027         (tooltip-show-help-non-mode): Rewrite to better follow the behavior of
4028         the C code (avoid overwriting a minibuffer, restore previous echo
4029         message, ...).
4030         (tooltip-delay, tooltip-process-prompt-regexp, tooltip-strip-prompt):
4031         Simplify.
4033 2008-04-19  Nick Roberts  <nickrob@snap.net.nz>
4035         * progmodes/gdb-ui.el (gdb-thread-indicator): New variable.
4036         (gdb-init-1): Initialise it.
4037         (gdb-annotation-rules): New entry for "new-thread".
4038         (gdb-thread-identification): New function to customize
4039         mode-line-buffer-identification.
4040         (gdb-frames-mode, gdb-registers-mode, gdb-locals-mode)
4041         (gdb-assembler-mode): Use it.
4042         (gdb-threads-mode): Force "info threads" onto queue.
4044 2008-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4046         * files.el (locate-file-completion-table): Rename from
4047         locate-file-completion and make it use `pred' in the normal way.
4048         (locate-file-completion): New compatibility wrapper.
4049         (load-library): Use locate-file-completion-table.
4050         * finder.el (finder-commentary):
4051         * subr.el (locate-library):
4052         * emacs-lisp/find-func.el (find-library): Likewise.
4053         * info.el: Use with-current-buffer and inhibit-read-only.
4054         (Info-read-node-name-2): Change to use `predicate' in the normal way.
4055         (Info-read-node-name-1): Adjust uses accordingly.
4057         * minibuffer.el (completion-table-with-context): Add support for `pred'.
4058         (completion-table-with-terminator): Don't use complete-with-action
4059         since we have to distinguish all three cases anyway.
4060         (completion-table-with-predicate): New function.
4061         (dynamic-completion-table): Add obsolete alias.
4063         * emacs-lisp/trace.el (trace-make-advice): Don't change selected-window.
4065 2008-04-18  Sam Steingold  <sds@gnu.org>
4067         * vc.el (vc-dir-menu-map, vc-dir-mode-map, vc-dir-tool-bar-map):
4068         Use quit-window instead of bury-buffer.
4070 2008-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4072         * minibuffer.el (completion-table-with-terminator): Fix last fix.
4074 2008-04-18  Andreas Schwab  <schwab@suse.de>
4076         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
4077         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
4078         Depend on $(lisp)/subdirs.el.
4080 2008-04-18  Juanma Barranquero  <lekktu@gmail.com>
4082         * descr-text.el (describe-char-after):
4083         Use `define-obsolete-function-alias'.
4085         * dired-x.el (dired-omit-files-p): Use `define-obsolete-variable-alias'.
4087         * facemenu.el (facemenu-unlisted-faces): Fix obsolescence description.
4089         * savehist.el (savehist-load): Add WHEN to obsolescence declaration.
4090         Remove redundant obsolescence info in docstring.
4092         * vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
4093         (vc-header-alist): Add WHEN to obsolescence declaration.
4094         (vc-state): Fix typo in docstring.
4096         * emacs-lisp/checkdoc.el (checkdoc-minor-keymap):
4097         Use `define-obsolete-variable-alias'.
4099         * emulation/tpu-edt.el (tpu-have-ispell):
4100         * international/codepage.el (codepage-setup):
4101         Fix typo in obsolescence declaration.
4103         * international/mule.el (char-coding-system-table):
4104         Remove redundant obsolescence info in docstring.
4105         (charset-list, generic-char-p, set-char-table-default):
4106         Fix typos in obsolescence decarations.
4108         * international/mule-diag.el (non-iso-charset-alist):
4109         Fix typo in obsolescence declaration.
4110         (decode-codepage-char): Remove redundant obsolescence info in docstring.
4112         * font-core.el (font-lock-defaults-alist):
4113         * font-lock.el (font-lock-reference-face):
4114         * frame.el (screen-height, screen-width, set-screen-width)
4115         (set-screen-height):
4116         * hilit-chg.el (highlight-changes-initial-state):
4117         * isearch.el (isearch-return-char):
4118         * log-edit.el (cvs-commit-buffer-require-final-newline)
4119         (cvs-changelog-full-paragraphs):
4120         * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
4121         (mouse-popup-menubar-stuff):
4122         * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button)
4123         (mouse-wheel-click-button):
4124         * outline.el (outline-visible):
4125         * pcvs-defs.el (cvs-diff-ignore-marks, cvs-diff-buffer-name):
4126         * pcvs-info.el (cvs-display-full-path, cvs-fileinfo->full-path):
4127         * emacs-lisp/lisp-mode.el (lisp-comment-indent):
4128         * progmodes/compile.el (compile-internal):
4129         Add WHEN to obsolescence declarations.
4131 2008-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4133         * emacs-lisp/debug.el (debug): Revert to bury-buffer since quit-window
4134         is not better anyway.
4136 2008-04-17  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4138         * whitespace.el (whitespace-report-region): Handle whitespace-tab-width
4139         properly.
4141 2008-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4143         * progmodes/python.el (python-mode-map): Use abbrev-table-menu.
4144         (python-use-skeletons): Remove, unused.
4145         (python-skeletons): Remove.  Use the abbrev table instead.
4146         (python-mode-abbrev-table): Fix regexp;
4147         add enable-function and case-fixed.
4148         (def-python-skeleton): Simplify.
4149         (python-expand-template): Use the abbrev-table and abbrev-insert.
4150         (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
4151         Remove.
4152         (python-mode): Don't set pre-abbrev-expand-hook.
4154         * skeleton.el: Set coding-tag.
4156         * abbrev.el (abbrev-insert): New function extracted from expand-abbrev.
4157         (expand-abbrev): Use it.
4158         (abbrev-table-menu): New function.
4160         * abbrev.el (define-abbrev-table): Fontify dosctrings as such.
4162         * minibuffer.el (completion-table-with-terminator): Fix paren typo.
4164 2008-04-17  Sam Steingold  <sds@gnu.org>
4166         * pcvs-util.el (cvs-bury-buffer): Use quit-window instead of the
4167         idiosyncratic bury-buffer/delete-window logic.
4169 2008-04-17  Juanma Barranquero  <lekktu@gmail.com>
4171         * emacs-lisp/crm.el (crm-completion-help, crm-complete)
4172         (crm-complete-word, crm-complete-and-exit): Fix typo in previous change.
4174 2008-04-17  Kenichi Handa  <handa@m17n.org>
4176         * international/characters.el: Don't make the width of U+00AD to 0.
4178 2008-04-17  Nick Roberts  <nickrob@snap.net.nz>
4180         * progmodes/gdb-ui.el (gdb-stack-update): New variable.
4181         (gdb, gdb-starting, gdb-frames-mode): Use it.
4182         (gdb-invalidate-frames): Advise to call "info stack" only if
4183         execution has occurred.
4184         (gdb-info-breakpoints-custom): Only update overlay-arrow pointing to
4185         selected frame if no execution has occurred.
4186         (gdb-frames-force-update): New interactive function.
4187         (gdb-frames-mode-map): Bind it to "F".
4189 2008-04-17  Michael Olson  <mwolson@gnu.org>
4191         * textmodes/remember.el (remember-version): Release Remember 2.0.
4193 2008-04-16  Yoni Rabkin  <yoni@rabkins.net>
4195         * textmodes/artist.el:
4196         * progmodes/vhdl-mode.el:
4197         * progmodes/verilog-mode.el:
4198         * progmodes/vera-mode.el:
4199         * progmodes/simula.el:
4200         * progmodes/ps-mode.el:
4201         * progmodes/cmacexp.el:
4202         * obsolete/hilit19.el:
4203         * emulation/viper.el:
4204         * ediff.el: Cleanup the bug-report email addresses and make sure the
4205         maintainer is still willing to handle bug reports.
4207 2008-04-16  Dan Nicolaescu  <dann@ics.uci.edu>
4209         * vc.el (vc-dir-kill-query): Fix thinko.
4211 2008-04-16  Glenn Morris  <rgm@gnu.org>
4213         * calendar/diary-lib.el (diary-remind): Don't clobber `date' passed
4214         by diary-sexp-entry.
4216 2008-04-16  Markus Triska  <markus.triska@gmx.at>
4218         * proced.el (proced-command-alist): Add support for darwin.
4220 2008-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4222         * proced.el (proced-mode): Redefine as just the major-mode.
4223         (proced): Separate it from proced-mode.
4225         * vc.el: Rename vc-status to vc-dir and the vc-status var to vc-ewoc.
4227 2008-04-15  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4229         * whitespace.el: Honor the `indent-tabs-mode' setting from user.
4230         Suggested by Stephen Deasey <sdeasey@gmail.com>.  Honor also the
4231         `tab-width' setting from user.  New version 10.0.  Doc and docstring
4232         fix.
4233         (whitespace-style, whitespace-chars): Remove options.
4234         (whitespace-style-mark): New option, replace whitespace-style deleted
4235         option.  Fix docstring.
4236         (whitespace-style-color): New option, replace whitespace-chars deleted
4237         option.  Fix docstring.
4238         (whitespace-space, whitespace-hspace, whitespace-tab)
4239         (whitespace-newline, whitespace-trailing, whitespace-line)
4240         (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
4241         (whitespace-space-after-tab, whitespace-hspace-regexp)
4242         (whitespace-space-regexp, whitespace-tab-regexp)
4243         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
4244         (whitespace-empty-at-eob-regexp, whitespace-line-column)
4245         (whitespace-toggle-option-alist): Fix docstring.
4246         (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
4247         (whitespace-space-after-tab-regexp, whitespace-display-mappings): Fix
4248         docstring and initialization.
4249         (global-whitespace-mode): Autoloaded global minor mode.
4250         (whitespace-chars-value-list, whitespace-style-value-list)
4251         (whitespace-active-chars, whitespace-active-style)
4252         (whitespace-toggle-chars, whitespace-toggle-style): Remove vars.
4253         (whitespace-color-value-list): New var, replace
4254         whitespace-chars-value-list removed var.
4255         (whitespace-mark-value-list): New var, replace
4256         whitespace-style-value-list removed var.
4257         (whitespace-active-color): New var, replace whitespace-active-chars
4258         removed var.
4259         (whitespace-active-mark): New var, replace whitespace-active-style
4260         removed var.
4261         (whitespace-toggle-color): New var, replace whitespace-toggle-chars
4262         removed var.
4263         (whitespace-toggle-mark): New var, replace whitespace-toggle-style
4264         removed var.
4265         (whitespace-toggle-option-alist, whitespace-report-list)
4266         (whitespace-report-text, whitespace-help-text): Fix initialization.
4267         (whitespace-indent-tabs-mode, whitespace-tab-width): New vars.
4268         (whitespace-toggle-options, global-whitespace-toggle-options)
4269         (whitespace-cleanup-region, whitespace-report-region)
4270         (whitespace-interactive-char): Fix docstring and code.
4271         (whitespace-cleanup, whitespace-report): Fix docstring.
4272         (whitespace-replace-spaces-by-tabs): Remove fun.
4273         (whitespace-replace-action): New fun, replace
4274         whitespace-replace-spaces-by-tabs removed fun.
4275         (whitespace-regexp, whitespace-indentation-regexp)
4276         (whitespace-space-after-tab-regexp, whitespace-insert-value)
4277         (whitespace-kill-buffer): New funs.
4278         (whitespace-insert-option-mark, whitespace-help-on)
4279         (whitespace-help-off, whitespace-turn-on, whitespace-turn-off)
4280         (whitespace-color-on, whitespace-color-off)
4281         (whitespace-display-char-on): Fix code.
4283 2008-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4285         * mouse-drag.el (mouse-throw-magnifier-with-scroll-bar)
4286         (mouse-throw-magnifier-with-mouse-movement): Remove.
4287         (mouse-throw-magnifier-base): New const.
4288         (mouse-drag-scroll-delta): New fun.
4289         (mouse-drag-throw): Use it.
4291 2008-04-15  Juanma Barranquero  <lekktu@gmail.com>
4293         * international/uni-bidi.el, international/uni-category.el:
4294         * international/uni-combining.el, international/uni-comment.el:
4295         * international/uni-decimal.el, international/uni-decomposition.el:
4296         * international/uni-digit.el, international/uni-lowercase.el:
4297         * international/uni-mirrored.el, international/uni-name.el:
4298         * international/uni-numeric.el, international/uni-old-name.el:
4299         * international/uni-titlecase.el, international/uni-uppercase.el:
4300         * international/charprop.el: Regenerate.
4302 2008-04-15  Dan Nicolaescu  <dann@ics.uci.edu>
4304         * vc.el (vc-status-fileinfo): Add new member directoryp.
4305         (vc-default-status-printer): Print directories.
4306         (vc-status-update): Sort files before subdirectories.
4308         * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
4309         Add alternative implementation based on "cvs update".
4311 2008-04-15  Tassilo Horn  <tassilo@member.fsf.org>
4313         * doc-view.el: Changed requirements section to tell that only one
4314         of dvipdf or dvipdfm is needed.
4315         (doc-view-already-converted-p): Fix bug that forced reconversion
4316         if doc was already converted.
4318 2008-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4320         * minibuffer.el (minibuffer-message):
4321         Make sure we can put-text-property.
4323         * emacs-lisp/crm.el: Complete rewrite.
4325         * tmm.el (tmm-completion-delete-prompt): Don't hardcode point-min==1.
4326         (tmm-add-prompt): Make sure completion-setup-hook is preserved even in
4327         case of an error in display-completion-list.
4329         * filecache.el (file-cache-completions-keymap): Move init from
4330         file-cache-completion-setup-function into declaration.
4331         (file-cache-minibuffer-complete): Simplify.
4332         (file-cache-completion-setup-function): Use standard-output,
4333         preserve current-buffer.
4335         * vc.el (vc-status-update): Fix typo.
4336         (vc-status-update): Set needs-update.
4337         (vc-status-refresh): Î·-reduce.
4339 2008-04-14  Tassilo Horn  <tassilo@member.fsf.org>
4341         * doc-view.el (doc-view-mode-map): Bind C-a to image-bol and C-e
4342         to image-eol.
4344 2008-04-14  Alexandre Julliard  <julliard@winehq.org>
4346         * vc.el (vc-status-update): Undo the previous revert.
4348 2008-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4350         * minibuffer.el (completion-table-with-terminator): Those completions
4351         are never valid w.r.t test-completion.
4352         (completion--file-name-table):
4353         Check completion-all-completions-with-base-size.
4355 2008-04-14  Tassilo Horn  <tassilo@member.fsf.org>
4357         * doc-view.el (doc-view-dvipdf-program): New variable.
4358         (doc-view-dvipdfm-program): Mention doc-view-dvipdf-program.
4359         (doc-view-mode-p): Check for doc-view-dvipdf-program as
4360         alternative for doc-view-dvipdfm-program.
4361         (doc-view-dvi->pdf): Prefer dvipdf over dvipdfm.
4363         * doc-view.el (doc-view-start-process): Don't set
4364         default-directory to "~/" if the current value is valid.
4365         This broke PS files that run other files in the same directory.
4367 2008-04-14  Dan Nicolaescu  <dann@ics.uci.edu>
4369         * vc.el (vc-status-kill-query): New function.
4370         (vc-status-mode): Add it to kill-buffer-query-functions.
4371         (vc-status-show-fileentry): New function.
4372         (vc-status-menu-map): Bind it.  Bind vc-next-action.
4374 2008-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4376         * minibuffer.el (minibuffer-message): Put cursor at the right place.
4378 2008-04-13  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
4380         * proced.el (proced-send-signal): Fix error recognition.
4382 2008-04-13  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
4384         * proced.el (proced-command-alist): Remove sort column.
4385         (proced-command, proced-procname-column):
4386         Use make-variable-buffer-local.
4387         (proced-signal-function): Rename from proced-kill-program.
4388         Allow for elisp symbols and string values representing system calls.
4389         (proced-marker-regexp, proced-success-message): New functions.
4390         (proced): Use defalias.  Add autoload cookie.
4391         (proced-unmark-backward, proced-toggle-marks)
4392         (proced-hide-processes): New commands.
4393         (proced-do-mark): Simplify code.
4394         (proced-insert-mark): Use optional arg BACKWARD instead of line number.
4395         (proced-update): Remove sorting.
4396         (proced-send-signal): Display number of processes to operate on.
4397         Allow for system calls or elisp functions to send signals.
4398         Check if signal was sent successfully.
4400 2008-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4402         * minibuffer.el (completion-all-completion-with-base-size): New var.
4403         (completion--some): New function.
4404         (completion-table-with-context, completion--file-name-table):
4405         Return the base-size if requested.
4406         (completion-table-in-turn): Generalize to multiple arguments.
4407         (complete-in-turn): Compatibility alias.
4408         (completion-styles-alist): New var.
4409         (completion-styles): New customization.
4410         (minibuffer-try-completion, minibuffer-all-completions):
4411         New functions.
4412         (minibuffer--do-completion, minibuffer-complete-and-exit)
4413         (minibuffer-try-word-completion): Use them.
4414         (display-completion-list, minibuffer-completion-help): Use them.
4415         Handle all-completions's new base-size info to set completion-base-size.
4416         * info.el (Info-read-node-name-1): Use completion-table-with-context,
4417         completion-table-with-terminator and complete-with-action.
4418         Remove the now obsolete completion-base-size-function property.
4419         * simple.el (completion-list-mode-map): Move init into declaration.
4420         (completion-list-mode): Use define-derived-mode.
4421         (completion-setup-function): Use any completion-base-size that may
4422         have been set before.  Remove handling of completion-base-size-function.
4423         * loadup.el: Move abbrev.el up earlier.
4425 2008-04-13  Alexandre Julliard  <julliard@winehq.org>
4427         * vc-git.el (vc-git-after-dir-status-stage)
4428         (vc-git-dir-status-goto-stage): New functions.
4429         (vc-git-after-dir-status-stage1)
4430         (vc-git-after-dir-status-stage1-empty-db)
4431         (vc-git-after-dir-status-stage2): Remove, functionality moved
4432         into the new generic stage functions.
4433         (vc-git-dir-status-files): New function.
4435         * vc.el (vc-status-update): Revert an incorrect rewrite.
4436         Add some comments.
4437         (vc-status-refresh-files): New function.
4438         (vc-status-refresh): Use `vc-status-refresh-files' to refresh the
4439         state of up-to-date files.
4440         (vc-default-dir-status-files): New function.
4442 2008-04-13  Juanma Barranquero  <lekktu@gmail.com>
4444         * minibuffer.el (completion--embedded-envvar-table)
4445         (read-file-name-internal): Fix typos in 2008-04-11 change.
4447         * faces.el (read-face-name): Use `completion-table-in-turn',
4448         not `complete-in-turn'.
4450 2008-04-13  Andreas Schwab  <schwab@suse.de>
4452         * progmodes/etags.el: Require 'cl when compiling.
4454 2008-04-12  Nick Roberts  <nickrob@snap.net.nz>
4456         * progmodes/gud.el (gud-menu-map): Expand tooltip.
4458         * progmodes/gdb-ui.el (gdb-find-source-frame): Improve doc string.
4459         (menu): Add/expand menu tooltips.
4461 2008-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
4463         * progmodes/sh-script.el (sh-show-indent): Fix typo.
4464         (sh-mode-map): Add a toggle for inserting braces and quotes in pairs.
4466         * vc-cvs.el (vc-cvs-registered): Allow removed files to be
4467         considered registered.
4469 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
4471         * emacs-lisp/copyright.el (copyright-update-directory): New command.
4473         * ediff-wind.el (ediff-split-window-function)
4474         (ediff-merge-split-window-function): Improve custom type.
4476 2008-04-12  Eli Zaretskii  <eliz@gnu.org>
4478         * loadup.el ("minibuffer"): Move after "faces".
4480 2008-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4482         * progmodes/hideif.el (hif-factor): Handle unary minus.
4484 2008-04-12  Glenn Morris  <rgm@gnu.org>
4486         * calendar/cal-china.el (chinese-calendar-time-zone):
4487         Mark obsolete name as risky too.
4489         * calendar/calendar.el (calendar-faces): New custom group.
4490         (calendar-today, diary, holiday): Doc fix.
4491         Move to calendar-faces group.
4492         * calendar/diary-lib.el (diary-face, diary-anniversary, diary-time)
4493         (diary-button): Doc fix.  Move to calendar-faces group.
4495         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
4496         * desktop.el, files.el, hilit-chg.el, ibuffer.el, iswitchb.el:
4497         * pcvs-info.el, recentf.el, speedbar.el, calendar/cal-china.el:
4498         * calendar/cal-hebrew.el, calendar/cal-x.el, calendar/calendar.el
4499         * calendar/diary-lib.el, net/net-utils.el, progmodes/gud.el:
4500         Move non-autoloaded define-obsolete-variable-alias calls for defcustoms
4501         not in dumped files before the associated defcustom.
4503 2008-04-11  Johan BockgÃ¥rd  <bojohan@gnu.org>
4505         * minibuffer.el (lazy-completion-table): Fix debug spec.
4507 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4509         * minibuffer.el (complete-with-action, lazy-completion-table):
4510         Move from subr.el.
4511         (apply-partially, completion-table-dynamic)
4512         (completion-table-with-context, completion-table-with-terminator)
4513         (completion-table-in-turn): New funs.
4514         (completion--make-envvar-table, completion--embedded-envvar-table):
4515         New funs.
4516         (read-file-name-internal): Use them.
4517         (completion-setup-hook): Move from simple.el.
4518         * subr.el (complete-with-action, lazy-completion-table):
4519         * simple.el (completion-setup-hook): Move to minibuffer.el.
4521 2008-04-11  Glenn Morris  <rgm@gnu.org>
4523         * Makefile.in (AUTOGENEL): Add calc/calc-loaddefs.el.
4525 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4527         * progmodes/python.el (python-mode): Don't mess with hippie-expand.
4529         * Makefile.in (bootstrap-prepare): Make tpu-edt.el writable as well.
4531         * textmodes/fill.el (fill-forward-paragraph-function): New var.
4532         (fill-forward-paragraph): New fun.
4533         (fill-paragraph, fill-region): Use it.
4535         * vc.el: Change `dir-status' to not take (and pass) status-buffer.
4536         (vc-status-create-fileinfo): Make `extra' optional.
4537         (vc-status-busy): New fun.
4538         (vc-status-menu-map): Use it.
4539         (vc-status-crt-marked): Remove.
4540         (vc-status-update): Rename from vc-status-add-entries.
4541         Add argument so as to prevent addition of entries.  Rewrite.
4542         (vc-update-vc-status-buffer): Remove.
4543         (vc-status-refresh): Don't remove old entries, set them to
4544         up-to-date instead.  Also do it after the update is complete.
4545         (vc-status-marked-files): Î·-reduce.
4547         * dired.el (dired-read-dir-and-switches): Use read-directory-name even
4548         for non-dialogs.
4550         * Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
4552         * loadup.el: Load ldefs-boot.el if loaddefs.el doesn't exist.
4554 2008-04-11  Jan Djärv  <jan.h.d@swipnet.se>
4556         * tooltip.el (tooltip-show-help-non-mode): Set message-truncate-lines
4557         to t and don't truncate msg.
4559 2008-04-11  Glenn Morris  <rgm@gnu.org>
4561         * calendar/calendar.el (diary, holidays):
4562         Move custom groups to other files.
4563         (holiday-general-holidays, holiday-oriental-holidays)
4564         (holiday-local-holidays, holiday-other-holidays, hebrew-holidays-1)
4565         (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
4566         (holiday-hebrew-holidays, holiday-christian-holidays)
4567         (holiday-islamic-holidays, holiday-bahai-holidays)
4568         (holiday-solar-holidays, calendar-holidays): Move to holidays.el.
4569         * calendar/diary-lib.el: Move custom group here from calendar.el.
4570         * calendar/holidays-lib.el: Move custom group and variables here
4571         from calendar.el.
4573         * calendar/cal-china.el (calendar-chinese-time-zone): Mark as risky.
4575         * calendar/cal-dst.el (calendar-dst-check-each-year-flag):
4576         Fix custom group.
4577         (calendar-current-time-zone-cache): Autoload riskiness.
4579         * calendar/cal-tex.el (cal-tex-preamble-extra): Fix custom type.
4581 2008-04-11  Chong Yidong  <cyd@stupidchicken.com>
4583         * woman.el (woman2-TH): Use string-equal instead of string-match.
4585 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4587         * smerge-mode.el (smerge-apply-resolution-patch): Fix typo.
4588         (smerge-resolve): Merge the "2-way refinement" case with one half of
4589         the "mere whitespace" resolution.
4591 2008-04-10  Dan Nicolaescu  <dann@ics.uci.edu>
4593         * vc-bzr.el (vc-bzr-after-dir-status): Detect the conflict state.
4595 2008-04-10  Juanma Barranquero  <lekktu@gmail.com>
4597         * subr.el (assoc-ignore-case, assoc-ignore-representation):
4598         Add WHEN to obsolescence declaration.
4600         * makefile.w32-in (AUTOGENEL): Add calc-loaddefs.el.
4602 2008-04-10  Dan Nicolaescu  <dann@ics.uci.edu>
4604         * vc-hooks.el (vc-state): Add new state `conflict'.
4605         (vc-after-save): Use when not if.
4606         (vc-default-mode-line-string): Deal with the conflict state.
4607         (vc-prefix-map, vc-menu-map): Bind vc-status instead of vc-directory.
4609         * vc.el (vc-editable-p, vc-default-status-printer)
4610         (vc-next-action): Deal with the conflict state.
4611         (vc-mark-resolved): New function.
4612         (vc-status-mode): Fix mode name.
4613         (vc-default-comment-history): Use when not if.
4614         (Todo): Add new entries, remove old ones.
4616         * vc-cvs.el (vc-cvs-merge, vc-cvs-merge-news): Set conflict state.
4617         (vc-cvs-parse-status, vc-cvs-after-dir-status):
4618         * vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
4619         Detect the conflict state.
4621         * vc-hg.el (vc-hg-dir-status): Remove unneeded call.
4623 2008-04-10  Glenn Morris  <rgm@gnu.org>
4625         * menu-bar.el (menu-bar-options-menu) <truncate-lines>:
4626         Respect truncate-partial-width-windows in non-full windows,
4627         with regards to :toggle and :enable state.
4629         * simple.el (toggle-truncate-lines): Doc fix.
4631         * Makefile.in (MH_E_DIR): New variable.
4632         (MH_E_SRC): Restore variable removed 2008-03-13.
4633         (mh-loaddefs.el): Depend on $MH_E_SRC.
4634         (CAL_DIR, CAL_SRC): New variables.
4635         (cal-loaddefs.el, diary-loaddefs.el, hol-loaddefs.el):
4636         Depend on CAL_SRC.
4638         * calendar/calendar.el (calendar, diary): Add :prefix.
4639         (holidays): Change :prefix.
4640         (calendar-today, holiday, calendar-holiday-marker)
4641         (european-calendar-style): Change custom groups.
4643         * calendar/calendar.el (diary-hook, diary-display-hook):
4644         Move to diary-lib.el.
4645         * calendar/diary-lib.el (diary-hook, diary-display-hook):
4646         Move here from calendar.el.
4647         * calendar/appt.el: Require diary-lib rather than calendar.
4648         * calendar/cal-x.el (diary-display-hook): Declare for compiler.
4650         * calendar/appt.el (appt): Add :prefix.
4652         * calendar/diary-lib.el (diary-hook): Doc fix.
4653         (diary-mark-sexp-entries): Fix replacement of calendar-for-loop.
4655 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4657         * minibuffer.el (minibuffer--double-dollars, read-file-name-internal):
4658         New functions.
4660         * minibuffer.el (minibuffer--do-completion): Don't forget to propagate
4661         the arg to recursive calls.
4663 2008-04-09  Juanma Barranquero  <lekktu@gmail.com>
4665         * minibuffer.el (completion-auto-help): Fix typo.
4667 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4669         * vc-cvs.el (vc-cvs-diff-tree): Remove unused function.
4671 2008-04-09  Michael Albinus  <michael.albinus@gmx.de>
4673         * net/tramp.el (tramp-find-file-name-coding-system-alist): New defun.
4674         (tramp-handle-insert-file-contents, tramp-handle-write-region): Use it.
4676 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4678         * vc-hooks.el (vc-default-mode-line-string): Use ? for missing.
4680         * minibuffer.el (minibuffer): Move group from cus-edit.el.
4681         (completion-auto-help): Move from C code.
4682         (minibuffer--maybe-completion-help): Remove.
4683         (minibuffer--bitset): New function.
4684         (minibuffer--do-completion): Rename from minibuffer-do-completion.
4685         Renumber a bit.  Really complete on string *before* point.
4686         Add argument used for word-completion.
4687         Join trailing / in completion with following text, as done in
4688         minibuffer-complete-word.
4689         Handle new value `lazy' for completion-auto-help.
4690         (minibuffer-try-word-completion): New function extracted from
4691         minibuffer-complete-word.
4692         (minibuffer-complete-word): Use minibuffer--do-completion.
4693         (minibuffer--insert-strings): Rename from
4694         minibuffer-complete-insert-strings.
4695         (exit-minibuffer): Fix typo.
4696         * cus-edit.el (minibuffer): Move group to minibuffer.el.
4697         * cus-start.el: Remove completion-auto-help.
4699 2008-04-09  Alexandre Julliard  <julliard@winehq.org>
4701         * vc.el (vc-status-add-entries): New function.
4702         (vc-status-add-entry): Remove.
4703         (vc-update-vc-status-buffer, vc-status-mark-buffer-changed):
4704         Use vc-status-add-entries.
4706         * emacs-lisp/ewoc.el (ewoc-collect): Return results in the correct
4707         order.
4709 2008-04-09  Jason Rumney  <jasonr@gnu.org>
4711         * makefile.w32-in (LOADDEFS): Add mh-loaddefs.el.
4712         ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule.
4713         (pre-mh-loaddefs.el-CMD, pre-mh-loaddefs.el-SH): Remove.
4714         (AUTOGENEL): New variable.
4715         (distclean, maintainer-clean): New targets.
4717 2008-04-09  Chong Yidong  <cyd@stupidchicken.com>
4719         * emacs-lisp/regexp-opt.el (regexp-opt):
4720         Reduce max-lisp-eval-depth and max-specpdl-size to 10000.
4722 2008-04-09  Lennart Borgman  <lennart.borgman@gmail.com>
4724         * nxml/nxml-mode.el (nxml-cleanup): New function.
4725         (nxml-mode): Add it to change-major-mode-hook.
4727 2008-04-09  Jan Djärv  <jan.h.d@swipnet.se>
4729         * term/x-win.el (x-gtk-stock-map): Map info to gtk-info.
4731 2008-04-09  Juanma Barranquero  <lekktu@gmail.com>
4733         * calc/.cvsignore: New file.
4735 2008-04-09  Jan Djärv  <jan.h.d@swipnet.se>
4737         * vc.el (vc-status-tool-bar-map): Add vc-print-log to tool bar.
4739         * tooltip.el (tooltip-mode): Set tooltip-show-help-non-mode as
4740         show-help-function when turning tooltip off.
4741         (tooltip-show): Call tooltip-show-help-non-mode if use-echo-area.
4742         (tooltip-trunc-str, tooltip-show-help-non-mode): New.
4744 2008-04-09  Alan Mackenzie  <acm@muc.de>
4746         * font-lock.el (font-lock-extend-after-change-region-function):
4747         Make it buffer local.
4749 2008-04-09  Glenn Morris  <rgm@gnu.org>
4751         * calendar/calendar.el (diary-file, european-calendar-style):
4752         Remove autoload cookies.
4754 2008-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
4756         * outline.el (outline-mode-menu-bar-map):
4757         * log-view.el (log-view-mode-menu):
4758         * log-edit.el (log-edit-menu): Add :help.
4760 2008-04-09  Chong Yidong  <cyd@stupidchicken.com>
4762         * emacs-lisp/regexp-opt.el (regexp-opt-group):
4763         Use substring-no-properties for correct handling of unibyte strings.
4765 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4767         * add-log.el (change-log-next-buffer): Handle the case where version<
4768         signals an error.
4770         * mouse.el (mouse-menu-major-mode-map): New fun extracted from
4771         mouse-major-mode-menu.
4772         (mouse-menu-bar-map): New fun extracted from mouse-popup-menubar.
4773         (mouse-major-mode-menu, mouse-popup-menubar)
4774         (mouse-popup-menubar-stuff): Use them.
4775         (C-down-mouse-3): Bind to a dynamic map rather than to
4776         mouse-popup-menubar-stuff.
4778         * bindings.el (mode-line-major-mode-keymap): Bind down-mouse-1
4779         to mouse-menu-major-mode-map rather than to mouse-major-mode-menu.
4781 2008-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
4783         * vc-svn.el (vc-svn-modify-change-comment): Add support for the
4784         file:// access method.
4786 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4788         * minibuffer.el: New file.
4789         * loadup.el: Load it.
4791 2008-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4793         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el
4794         rather than subdirs.el.  It introduces an ugly circular dependency, tho.
4796         * calc/calc.el: Load "calc-loaddefs" rather than set up manual autoloads.
4797         (calc-mode-map, calc-digit-map, calc-dispatch-map):
4798         Move initialization into declaration.
4799         * calc/calc-yank.el:
4800         * calc/calc-misc.el:
4801         * calc/calc-embed.el:
4802         * calc/calc-aent.el: Add autoload cookies.  Set generated-autoload-file.
4804 2008-04-08  Michael Albinus  <michael.albinus@gmx.de>
4806         * ps-samp.el (ps-add-printer, ps-remove-printer)
4807         (ps-make-dynamic-printer-menu): New functions.
4809         * net/zeroconf.el: New file.
4811 2008-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4813         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits): Typo.
4815 2008-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
4817         * vc-rcs.el (vc-rcs-modify-change-comment):
4818         * vc-cvs.el (vc-cvs-modify-change-comment): Fix argument order.
4820         * log-view.el (log-view-mode-menu): Bind log-view-modify-change-comment.
4822 2008-04-08  Juanma Barranquero  <lekktu@gmail.com>
4824         * international/mule-cmds.el (set-locale-environment): Don't warn if
4825         coding system doesn't agree with system locale (this reverts changes
4826         by Dave Love, dated 2002-10-27 and 2002-10-09).
4828         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
4829         * emacs-lisp/cl-macs.el (get-setf-method): Use `string-match-p'.
4831         * emacs-lisp/copyright.el (copyright-update-year): Use `looking-at-p'.
4833 2008-04-08  Glenn Morris  <rgm@gnu.org>
4835         * calendar/calendar.el (calendar-date-style): Remove autoload cookie.
4836         * textmodes/remember.el (remember-diary-convert-entry):
4837         Require calendar.
4839         * textmodes/remember.el (remember-diary-extract-entries): Don't pass
4840         diary-file, since it is the default for make-diary-entry anyway.
4842         * calendar/cal-menu.el (cal-menu-event-to-date):
4843         Rename calendar-event-to-date.  Update callers.
4844         (calendar-mouse-tex-day): Rename cal-tex-mouse-day.
4845         (calendar-mouse-tex-week): Rename cal-tex-mouse-week.
4846         (calendar-mouse-tex-week2): Rename cal-tex-mouse-week2.
4847         (calendar-mouse-tex-week-iso): Rename cal-tex-mouse-week-iso.
4848         (calendar-mouse-tex-week-monday): Rename cal-tex-mouse-week-monday.
4849         (calendar-mouse-tex-filofax-daily): Rename cal-tex-mouse-filofax-daily.
4850         (calendar-mouse-tex-filofax-2week): Rename cal-tex-mouse-filofax-2week.
4851         (calendar-mouse-tex-filofax-week): Rename cal-tex-mouse-filofax-week.
4852         (calendar-mouse-tex-month): Rename cal-tex-mouse-month.
4853         (calendar-mouse-tex-month-landscape):
4854         Rename cal-tex-mouse-month-landscape.
4855         (calendar-mouse-tex-year): Rename cal-tex-mouse-year.
4856         (calendar-mouse-tex-filofax-year): Rename cal-tex-mouse-filofax-year.
4857         (calendar-mouse-tex-year-landscape):
4858         Rename cal-tex-mouse-year-landscape.
4859         (cal-menu-context-mouse-menu): Update for above name changes.
4861         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
4862         * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
4863         * calendar/cal-iso.el, calendar/cal-julian.el, calendar/cal-move.el:
4864         * calendar/cal-persia.el, calendar/cal-tex.el, calendar/calendar.el:
4865         * calendar/holidays.el: Replace int-to-string with number-to-string.
4867 2008-04-08  Chong Yidong  <cyd@stupidchicken.com>
4869         * mwheel.el (mwheel-scroll): Deactivate any temporarily active
4870         region if point moves.
4872 2008-04-08  Kenichi Handa  <handa@m17n.org>
4874         * faces.el (font-slant-table): Change numeric values for `r',
4875         `roman', and `normal'.
4877 2008-04-07  Vincent Belaïche  <vincent.b.1@hotmail.fr>
4879         * calc/calc-vec.el (calcFunc-kron, calc-kron): New functions.
4881 2008-04-07  Jay Belanger  <jay.p.belanger@gmail.com>
4883         * calc/calc-ext.el (calc-init-extensions): Add `calc-kron' and
4884         `calcFunc-kron' to autoloads.  Add keybinding for `calc-kron'.
4886 2008-04-07  Michael Albinus  <michael.albinus@gmx.de>
4888         * net/tramp.el (tramp-methods): Fix again tramp-copy-args of
4889         "pscp" and "psftp".  Reported by Gilles Pion <gpion@lfdj.com>.
4891 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4893         * dired-aux.el (dired-read-shell-command): Use read-shell-command.
4895 2008-04-07  Sam Steingold  <sds@gnu.org>
4897         * progmodes/inf-lisp.el (lisp-compile-string, lisp-eval-string):
4898         Add helper functions.
4899         (lisp-do-defun): Extract the common part of lisp-eval-defun and
4900         lisp-compile-defun; DEFVAR forms reset the variables to the init
4901         values, just like in emacs-lisp mode eval-defun.
4902         (lisp-eval-defun, lisp-compile-defun): Use lisp-do-defun.
4903         (lisp-compile-region): Use lisp-compile-string.
4905 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4907         * subr.el (combine-and-quote-strings): Also quote strings that contain
4908         the separator.
4910         * pcvs-util.el (cvs-map): Avoid recursion :-(
4912 2008-04-07  Glenn Morris  <rgm@gnu.org>
4914         * calendar/calendar.el (calendar-mode-map): Replace use of kbd.
4916         * calendar.el (diary-view-entries-initially-flag): Rename
4917         view-diary-entries-initially.  Keep old name as alias, update users.
4918         (calendar-mark-diary-entries-flag): Rename
4919         mark-diary-entries-in-calendar.  Keep old name as alias, update users.
4920         (calendar-view-holidays-initially-flag): Rename
4921         view-calendar-holidays-initially.  Keep old name as alias, update users.
4922         (calendar-mark-holidays-flag): Rename mark-holidays-in-calendar.
4923         Keep old name as alias, update users.
4924         (calendar-initial-window-hook): Rename initial-calendar-window-hook.
4925         Keep old name as alias, update users.
4926         (calendar-today-visible-hook): Rename today-visible-calendar-hook.
4927         Keep old name as alias, update users.
4928         (calendar-today-invisible-hook): Rename today-invisible-calendar-hook.
4929         Keep old name as alias, update users.
4930         (diary-iso-date-forms): Rename iso-date-diary-pattern.  Update users.
4931         (diary-american-date-forms): Rename american-date-diary-pattern.
4932         Keep old name as alias, update users.
4933         (diary-european-date-forms): Rename european-date-diary-pattern.
4934         Keep old name as alias, update users.
4935         (calendar-iso-date-display-form): Rename iso-calendar-display-form.
4936         Keep old name as alias, update users.
4937         (calendar-european-date-display-form): Rename
4938         european-calendar-display-form.  Keep old name as alias, update users.
4939         (calendar-american-date-display-form): Rename
4940         european-calendar-display-form.  Keep old name as alias, update users.
4941         (diary-show-holidays-flag): Rename holidays-in-diary-buffer.
4942         Keep old name as alias, update users.
4943         (holiday-general-holidays): Rename general-holidays.
4944         Keep old name as alias, update users.
4945         (holiday-oriental-holidays): Rename oriental-holidays.
4946         Keep old name as alias, update users.
4947         (holiday-local-holidays): Rename local-holidays.
4948         Keep old name as alias, update users.
4949         (holiday-other-holidays): Rename other-holidays.
4950         Keep old name as alias, update users.
4951         (holiday-hebrew-holidays): Rename hebrew-holidays.
4952         Keep old name as alias, update users.
4953         (holiday-christian-holidays): Rename christian-holidays.
4954         Keep old name as alias, update users.
4955         (holiday-islamic-holidays): Rename islamic-holidays.
4956         Keep old name as alias, update users.
4957         (holiday-bahai-holidays): Rename bahai-holidays.
4958         Keep old name as alias, update users.
4959         (holiday-solar-holidays): Rename solar-holidays.
4960         Keep old name as alias, update users.
4961         (diary-fancy-buffer): Rename fancy-diary-buffer.
4962         Keep old name as alias, update users.
4963         (calendar-other-calendars-buffer): Rename other-calendars-buffer.
4964         Update users.
4965         (calendar-hebrew-yahrzeit-buffer): Rename cal-hebrew-yahrzeit-buffer.
4966         Update users.
4967         (calendar-increment-month): Rename increment-calendar-month.
4968         Keep old name as alias, update callers.
4969         (calendar-increment-month-cons): Rename old calendar-increment-month.
4970         Update callers.
4971         (calendar-extract-month): Rename extract-calendar-month.
4972         Keep old name as alias, update callers.
4973         (calendar-extract-day): Rename extract-calendar-day.
4974         Keep old name as alias, update callers.
4975         (calendar-extract-year): Rename extract-calendar-year.
4976         Keep old name as alias, update callers.
4977         (calendar-generate-window): Rename generate-calendar-window.
4978         Update callers.
4979         (calendar-generate): Rename generate-calendar.  Update callers.
4980         (calendar-generate-month): Rename generate-calendar-month.
4981         Update callers.
4982         (calendar-redraw): Rename redraw-calendar.  Update callers.
4983         (calendar-describe-mode): Rename describe-calendar-mode.  Update uses.
4984         (calendar-mouse-other-month): Rename mouse-calendar-other-month.
4985         Update callers.
4986         (calendar-update-mode-line): Rename update-calendar-mode-line.
4987         Update callers.
4988         (calendar-exit): Rename exit-calendar.  Keep old name as alias,
4989         update callers.
4990         (calendar-mark-visible-date): Rename mark-visible-calendar-date.
4991         Keep old name as alias, update callers.
4992         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
4993         * calendar/cal-dst.el, calendar/cal-french.el, calendar/cal-hebrew.el:
4994         * calendar/cal-html.el, calendar/cal-islam.el, calendar/cal-iso.el:
4995         * calendar/cal-julian.el, calendar/cal-menu.el, calendar/cal-move.el:
4996         * calendar/cal-persia.el, calendar/cal-tex.el, calendar/cal-x.el:
4997         * calendar/diary-lib.el, calendar/holidays.el, calendar/lunar.el:
4998         * calendar/solar.el: Update for calendar.el name changes.
4999         * org/org.el (org-agenda-format-date-aligned)
5000         (org-agenda-execute-calendar-command): Access date elements directly
5001         rather than using calendar functions.
5002         (org-read-date, org-goto-calendar, org-agenda-goto-calendar):
5003         Also set calendar-view-diary-initially-flag,
5004         calendar-view-holidays-initially-flag.
5005         (org-get-entries-from-diary): Also set diary-fancy-buffer.
5006         (org-agenda-execute-calendar-command): No need to set displayed-day.
5008 2008-04-06  Alan Mackenzie  <acm@muc.de>
5010         * progmodes/cc-langs.el (c-before-font-lock-function): Correct a
5011         typo in the doc string.
5013         * progmodes/cc-mode.el (c-basic-common-init):
5014         Set font-lock-extend-after-change-region-function.
5015         (c-extend-after-change-region): New function, used in
5016         font-lock-extend-after-change-region-function, thus superseding
5017         advice on the Font Lock after change functions.
5018         (c-advise-fl-for-region): Remove this macro.
5020 2008-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
5022         * textmodes/flyspell.el (flyspell-duplicate-distance):
5023         Improve custom type.
5025 2008-04-06  Glenn Morris  <rgm@gnu.org>
5027         * calendar/diary-lib.el (diary-sexp-entry-symbol):
5028         Rename sexp-diary-entry-symbol.  Keep old name as alias, update users.
5029         (diary-list-entries-hook): Rename list-diary-entries-hook.
5030         Keep old name as alias, update users.
5031         (diary-mark-entries-hook): Rename mark-diary-entries-hook.
5032         Keep old name as alias, update users.
5033         (diary-nongregorian-listing-hook): Rename
5034         nongregorian-diary-listing-hook.  Keep old name as alias, update users.
5035         (diary-nongregorian-marking-hook): Rename
5036         nongregorian-diary-marking-hook.  Keep old name as alias, update users.
5037         (diary-print-entries-hook): Rename print-diary-entries-hook.
5038         Keep old name as alias, update users.
5039         (diary-abbreviated-year-flag): Rename abbreviated-calendar-year.
5040         Keep old name as alias, update users.
5041         (diary-number-of-entries): Rename number-of-diary-entries.
5042         Keep old name as alias, update users.
5043         (view-diary-entries, list-diary-entries, show-all-diary-entries):
5044         Give version of obsolescence.
5045         (diary-view-other-diary-entries): Rename view-other-diary-entries.
5046         Keep old name as alias, update callers.
5047         (diary-add-to-list): Rename add-to-diary-list.  Keep old name as alias,
5048         update callers.
5049         (diary-include-other-diary-files): Rename include-other-diary-files.
5050         Keep old name as alias, update callers.
5051         (diary-simple-display): Rename simple-diary-display.
5052         Keep old name as alias, update callers.
5053         (diary-fancy-display): Rename fancy-diary-display.
5054         Keep old name as alias, update callers.
5055         (diary-print-entries): Rename print-diary-entries.
5056         Keep old name as alias, update callers.
5057         (diary-marking-entries-flag): Rename marking-diary-entries.
5058         Update users.
5059         (diary-marking-entry-flag): Rename marking-diary-entry.  Update users.
5060         (diary-mark-entries): Rename mark-diary-entries.
5061         Keep old name as alias, update callers.
5062         (diary-mark-sexp-entries): Rename mark-sexp-diary-entries.
5063         Keep old name as alias, update callers.
5064         (diary-mark-included-diary-files): Rename mark-included-diary-files.
5065         Keep old name as alias, update callers.
5066         (calendar-mark-days-named): Rename mark-calendar-days-named.
5067         Keep old name as alias, update callers.
5068         (calendar-mark-month): Rename mark-calendar-month.
5069         Keep old name as alias, update callers.
5070         (calendar-mark-date-pattern): Rename mark-calendar-date-pattern.
5071         Keep old name as alias, update callers.
5072         (diary-sort-entries): Rename sort-diary-entries.
5073         Keep old name as alias, update callers.
5074         (diary-list-sexp-entries): Rename list-sexp-diary-entries.
5075         Keep old name as alias, update callers.
5076         (diary-make-entry): Rename make-diary-entry.  Keep old name as alias,
5077         update callers.
5078         (diary-insert-entry): Rename insert-diary-entry.
5079         Keep old name as alias.
5080         (diary-insert-weekly-entry): Rename insert-weekly-diary-entry.
5081         Keep old name as alias.
5082         (diary-insert-monthly-entry): Rename insert-monthly-diary-entry.
5083         Keep old name as alias.
5084         (diary-insert-yearly-entry): Rename insert-yearly-diary-entry.
5085         Keep old name as alias.
5086         (diary-insert-anniversary-entry): Rename insert-anniversary-diary-entry.
5087         Keep old name as alias.
5088         (diary-insert-block-entry): Rename insert-block-diary-entry.
5089         Keep old name as alias.
5090         (diary-insert-cyclic-entry): Rename insert-cyclic-diary-entry.
5091         Keep old name as alias.
5092         (diary-fancy-font-lock-keywords): Rename fancy-diary-font-lock-keywords.
5093         Keep old name as alias, update users.
5094         (diary-fancy-display-mode): Rename fancy-diary-display-mode.
5095         Keep old name as alias, update callers.
5096         * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
5097         * calendar/cal-menu.el, calendar/cal-x.el, calendar/calendar.el:
5098         * calendar/icalendar.el: Update for diary-lib name changes.
5100 2008-04-06  Chong Yidong  <cyd@stupidchicken.com>
5102         * dired-aux.el (dired-overwrite-confirmed): Revert last change.
5104         * dired.el (dired-dnd-handle-local-file): Obey dired-backup-overwrite
5105         for copy, move, and link operations.
5107 2008-04-06  Michael Kifer  <kifer@cs.stonybrook.edu>
5109         * emulation/viper-init.el, emulation/viper-ex.el, emulation/viper-cmd.el
5110         (viper-search-wrap-around-t): Replace with viper-search-wrap-around.
5112         * ediff-util.el, ediff-vers.el, ediff-wind.el: Replace 3-argument
5113         'require' statements with 1-argument ones (wrapped in if's).
5114         For compatibility with the current stable version of XEmacs.
5116 2008-04-06  Dan Nicolaescu  <dann@ics.uci.edu>
5118         * vc.el (vc-status-prepare-status-buffer): Reset vc-parent-buffer-name.
5120 2008-04-06  Jason Rumney  <jasonr@gnu.org>
5122         * language/burmese.el ("Burmese"): Make sample text consistent with
5123         language name.
5125 2008-04-06  Nick Roberts  <nickrob@snap.net.nz>
5127         * progmodes/gdb-ui.el (gdb): New group.
5128         (gdb-debug-log-max, gdb-enable-debug)
5129         (gdb-cpp-define-alist-program, gdb-cpp-define-alist-flags)
5130         (gdb-show-main, gdb-many-windows, gdb-use-separate-io-buffer)
5131         (gdb-speedbar-auto-raise, gdb-use-colon-colon-notation)
5132         (gdb-show-changed-values, gdb-max-children)
5133         (gdb-delete-out-of-scope, gdb-same-frame, gdb-find-source-frame)
5134         (breakpoint-enabled, breakpoint-disabled, gdb-max-frames)
5135         (gdb-all-registers, gdb-memory-repeat-count, gdb-memory-format)
5136         (gdb-memory-unit): Move to new group from GUD group.
5137         (menu): Allow customization from GDB-UI menu-item.
5139 2008-04-05  Chong Yidong  <cyd@stupidchicken.com>
5141         * dired-aux.el (dired-overwrite-confirmed): Supply initial value.
5143 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5145         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-annotate-command)
5146         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
5147         Revision numbers can include ".".
5149         * diff-mode.el (diff-end-of-hunk): Be careful not to overlook trailing
5150         "+" lines not accounted for by counting "-" and context lines.
5152 2008-04-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5154         * term/mac-win.el (mac-service-open-file): Use file URL instead of
5155         file name string.
5157 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5159         * vc-bzr.el (vc-bzr-annotate-command): Preserve line alignment.
5160         (vc-bzr-annotate-time): Accept space used to preserve alignment.
5162 2008-04-05  Richard Stallman  <rms@gnu.org>
5164         * emacs-lisp/advice.el (defadvice): Add usage pattern.
5166 2008-04-05  Nick Roberts  <nickrob@snap.net.nz>
5168         * progmodes/gdb-ui.el: Add advice about using Cygwin GDB (from a
5169         thread in [h-e-w]).
5171 2008-04-05  Juanma Barranquero  <lekktu@gmail.com>
5173         * files.el (abort-if-file-too-large): Fix typo in docstring.
5175 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5177         * subr.el (functionp): Return nil for special forms.
5179 2008-04-05  Glenn Morris  <rgm@gnu.org>
5181         * emacs-lisp/autoload.el (autoload-ensure-default-file):
5182         Provide a feature.
5183         * calendar/calendar.el, calendar/diary-lib.el, calendar/holidays.el:
5184         Require loaddef file rather than loading it.
5185         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule now that
5186         autoload-ensure-default-file provides a feature.
5188         * Makefile.in (LOADDEFS): Add mh-loaddefs.el.
5189         (AUTOGENEL): mh-loaddefs is in $LOADDEFS now.
5190         (compile, compile-always, recompile): Use $LOADDEFS.
5191         (cal-autoloads): Remove.
5193         * calendar/cal-x.el (calendar-dedicate-diary): Use get-buffer rather
5194         than buffer-live-p.  Reported by David Koppelman <koppel@ece.lsu.edu>.
5196         * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
5197         (hebrew-holidays-3, hebrew-holidays-4): Don't autoload obsolescence.
5199         * calendar/calendar.el (diary-hebrew-entry-symbol):
5200         Rename hebrew-diary-entry-symbol.  Keep old name as alias.
5201         (diary-islamic-entry-symbol): Rename islamic-diary-entry-symbol.
5202         Keep old name as alias.
5203         (diary-bahai-entry-symbol): Rename bahai-diary-entry-symbol.
5204         Keep old name as alias.
5205         * calendar/cal-bahai.el: Update for rename bahai-diary-entry-symbol
5206         to diary-bahai-entry-symbol.
5207         * calendar/cal-hebrew.el: Update for rename hebrew-diary-entry-symbol
5208         to diary-hebrew-entry-symbol.
5209         * calendar/cal-islam.el: Update for rename islamic-diary-entry-symbol
5210         to diary-islamic-entry-symbol.
5211         * calendar/diary-lib.el: Update for diary-entry-symbol renames.
5213         * calendar/solar.el (diary-sabbath-candles-minutes)
5214         (diary-sabbath-candles): Move to cal-hebrew.
5215         * calendar/cal-hebrew.el (diary-hebrew-sabbath-candles-minutes)
5216         (diary-hebrew-sabbath-candles): Move here from solar.el and rename.
5217         Doc fix.  Keep old name as alias.
5218         (diary-hebrew-sabbath-candles): Simplify.
5219         (solar-setup, solar-sunrise-sunset, calendar-latitude)
5220         (calendar-longitude, calendar-time-zone): Declare for compiler.
5221         * calendar/diary-lib.el (list-sexp-diary-entries): Update doc for
5222         rename.
5224         * calendar/cal-coptic.el (calendar-coptic-month-name-array):
5225         Rename coptic-calendar-month-name-array.  Update callers.
5226         (calendar-coptic-epoch): Rename coptic-calendar-epoch.  Update callers.
5227         (calendar-coptic-name): Rename coptic-name.  Update callers.
5228         (calendar-coptic-leap-year-p): Rename coptic-calendar-leap-year-p.
5229         Update callers.
5230         (calendar-coptic-last-day-of-month):
5231         Rename coptic-calendar-last-day-of-month.  Update callers.
5232         (calendar-coptic-to-absolute): Rename calendar-absolute-from-coptic.
5233         Keep old name as alias, update callers.
5234         (calendar-coptic-print-date): Rename calendar-print-coptic-date.
5235         Keep old name as alias, update callers.
5236         (calendar-coptic-goto-date): Rename calendar-goto-coptic-date.
5237         Keep old name as alias.
5238         (calendar-ethiopic-month-name-array):
5239         Rename ethiopic-calendar-month-name-array.  Update callers.
5240         (calendar-ethiopic-epoch): Rename ethiopic-calendar-epoch.
5241         Update callers.
5242         (calendar-ethiopic-name): Rename ethiopic-name.  Update callers.
5243         (calendar-ethiopic-to-absolute): Rename calendar-absolute-from-ethiopic.
5244         Keep old name as alias, update callers.
5245         (calendar-ethiopic-print-date): Rename calendar-print-ethiopic-date.
5246         Keep old name as alias, update callers.
5247         (calendar-ethiopic-goto-date): Rename calendar-goto-ethiopic-date.
5248         Keep old name as alias.
5250         * calendar/cal-french.el (calendar-french-epoch):
5251         Rename french-calendar-epoch.  Update callers.
5252         (calendar-french-month-name-array): Rename variable and function
5253         french-calendar-month-name-array.  Update callers.
5254         (calendar-french-multibyte-month-name-array):
5255         Rename french-calendar-multibyte-month-name-array.  Update callers.
5256         (calendar-french-day-name-array): Rename variable and function
5257         french-calendar-day-name-array.  Update callers.
5258         (calendar-french-special-days-array): Rename variable and function
5259         french-calendar-special-days-array.  Update callers.
5260         (calendar-french-multibyte-special-days-array):
5261         Rename french-calendar-multibyte-special-days-array.  Update callers.
5262         (calendar-french-accents-p): Rename french-calendar-accents.
5263         Update callers.
5264         (calendar-french-leap-year-p): Rename french-calendar-leap-year-p.
5265         Update callers.
5266         (calendar-french-last-day-of-month):
5267         Rename french-calendar-last-day-of-month.  Update callers.
5268         (calendar-french-to-absolute): Rename calendar-absolute-from-french.
5269         Keep old name as alias, update callers.
5270         (calendar-french-print-date): Rename calendar-print-french-date.
5271         Keep old name as alias, update callers.
5272         (calendar-french-goto-date): Rename calendar-goto-french-date.
5273         Keep old name as alias.
5275         * calendar/cal-menu.el, calendar/calendar.el:
5276         Update for Coptic and French name changes.
5278         * calendar/cal-china.el (calendar-chinese): Rename custom group
5279         from chinese-calendar.  Update users.
5280         (calendar-chinese-time-zone): Rename chinese-calendar-time-zone.
5281         Keep old name as alias, update users.
5282         (calendar-chinese-location-name): Rename chinese-calendar-location-name.
5283         Keep old name as alias.
5284         (calendar-chinese-daylight-time-offset):
5285         Rename chinese-calendar-daylight-time-offset.  Keep old name as alias,
5286         update users.
5287         (calendar-chinese-standard-time-zone-name):
5288         Rename chinese-calendar-standard-time-zone-name.
5289         Keep old name as alias, update users.
5290         (calendar-chinese-daylight-saving-start):
5291         Rename chinese-calendar-daylight-savings-starts.
5292         Keep old name as alias, update users.
5293         (calendar-chinese-daylight-saving-end):
5294         Rename chinese-calendar-daylight-savings-ends.  Keep old name as alias,
5295         update users.
5296         (calendar-chinese-daylight-saving-start-time):
5297         Rename chinese-calendar-daylight-savings-starts-time.
5298         Keep old name as alias, update users.
5299         (calendar-chinese-daylight-saving-end-time):
5300         Rename chinese-calendar-daylight-savings-ends-time.
5301         Keep old name as alias, update users.
5302         (calendar-chinese-celestial-stem): Rename
5303         calendar-chinese-celestial-stem.  Keep old name as alias, update users.
5304         (calendar-chinese-terrestrial-branch):
5305         Rename calendar-chinese-terrestrial-branch.  Keep old name as alias,
5306         update users.
5307         (calendar-chinese-zodiac-sign-on-or-after):
5308         Rename chinese-zodiac-sign-on-or-after.  Update callers.
5309         (calendar-chinese-new-moon-on-or-after):
5310         Rename chinese-new-moon-on-or-after.  Update callers.
5311         (calendar-chinese-month-list): Rename chinese-month-list.
5312         Update callers.
5313         (calendar-chinese-number-months): Rename number-chinese-months.
5314         Update callers.
5315         (calendar-chinese-compute-year): Rename compute-chinese-year.
5316         Update callers.
5317         (calendar-chinese-year-cache): Rename chinese-year-cache.  Update users.
5318         (calendar-chinese-year): Rename chinese-year.  Update callers.
5319         (calendar-chinese-year-cache-init): Rename chinese-year-cache-init.
5320         (calendar-chinese-to-absolute): Rename calendar-absolute-from-chinese.
5321         Keep old name as alias, update callers.
5322         (calendar-chinese-print-date): Rename calendar-print-chinese-date.
5323         Keep old name as alias, update callers.
5324         (calendar-chinese-months-to-alist):
5325         Rename make-chinese-month-assoc-list.  Update callers.
5326         (calendar-chinese-months): Rename chinese-months.  Update callers.
5327         (calendar-chinese-goto-date): Rename calendar-goto-chinese-date.
5328         Keep old name as alias, update callers.
5330         * calendar/cal-hebrew.el (calendar-hebrew-leap-year-p):
5331         Rename hebrew-calendar-leap-year-p.  Update callers.
5332         (calendar-hebrew-last-month-of-year):
5333         Rename hebrew-calendar-last-month-of-year.  Update callers.
5334         (calendar-hebrew-elapsed-days): Rename hebrew-calendar-elapsed-days.
5335         Update callers.
5336         (calendar-hebrew-days-in-year): Rename hebrew-calendar-days-in-year.
5337         Update callers.
5338         (calendar-hebrew-long-heshvan-p): Rename hebrew-calendar-long-heshvan-p.
5339         Update callers.
5340         (calendar-hebrew-short-kislev-p): Rename hebrew-calendar-short-kislev-p.
5341         Update callers.
5342         (calendar-hebrew-last-day-of-month):
5343         Rename hebrew-calendar-last-day-of-month.  Update callers.
5344         (calendar-hebrew-to-absolute): Rename calendar-absolute-from-hebrew.
5345         Keep old name as alias, update callers.
5346         (calendar-hebrew-print-date): Rename calendar-print-hebrew-date.
5347         Keep old name as alias, update callers.
5348         (calendar-hebrew-yahrzeit): Rename hebrew-calendar-yahrzeit.
5349         Keep old name as alias, update callers.
5350         (calendar-hebrew-goto-date): Rename calendar-goto-hebrew-date.
5351         Keep old name as alias.
5352         (holiday-hebrew-rosh-hashanah): Rename holiday-rosh-hashanah-etc.
5353         Keep old name as alias.
5354         (holiday-hebrew-hanukkah): Rename holiday-hanukkah.
5355         Keep old name as alias.
5356         (holiday-hebrew-passover): Rename holiday-passover-etc.
5357         Keep old name as alias.
5358         (holiday-hebrew-tisha-b-av): Rename holiday-tisha-b-av-etc.
5359         Keep old name as alias, update callers.
5360         (diary-hebrew-list-entries): Rename list-hebrew-diary-entries.
5361         Keep old name as alias.
5362         (calendar-hebrew-mark-date-pattern):
5363         Rename mark-hebrew-calendar-date-pattern.  Keep old name as alias,
5364         update callers.
5365         (diary-hebrew-mark-entries): Rename mark-hebrew-diary-entries.
5366         Keep old name as alias.
5367         (diary-hebrew-insert-entry): Rename insert-hebrew-diary-entry.
5368         Keep old name as alias.
5369         (diary-hebrew-insert-monthly-entry):
5370         Rename insert-monthly-hebrew-diary-entry.  Keep old name as alias.
5371         (diary-hebrew-insert-yearly-entry):
5372         Rename insert-yearly-hebrew-diary-entry.  Keep old name as alias.
5373         (calender-hebrew-list-yahrzeits): Rename list-yahrzeit-dates.
5374         Keep old name as alias.
5375         (diary-hebrew-omer): Rename diary-omer.  Keep old name as alias.
5376         (diary-hebrew-yahrzeit): Rename diary-yahrzeit.  Keep old name as alias.
5377         (diary-hebrew-rosh-hodesh): Rename diary-rosh-hodesh.
5378         Keep old name as alias.
5379         (calendar-hebrew-parashiot-names):
5380         Rename hebrew-calendar-parashiot-names.  Update callers.
5381         (calendar-hebrew-parasha-name): Rename hebrew-calendar-parasha-name.
5382         (calendar-hebrew-year-Saturday-incomplete-Sunday):
5383         Rename hebrew-calendar-year-Saturday-incomplete-Sunday.
5384         (calendar-hebrew-year-Saturday-complete-Tuesday):
5385         Rename hebrew-calendar-year-Saturday-complete-Tuesday.
5386         (calendar-hebrew-year-Monday-incomplete-Tuesday):
5387         Rename hebrew-calendar-year-Monday-incomplete-Tuesday.
5388         (calendar-hebrew-year-Monday-complete-Thursday):
5389         Rename hebrew-calendar-year-Monday-complete-Thursday.
5390         (calendar-hebrew-year-Tuesday-regular-Thursday):
5391         Rename hebrew-calendar-year-Tuesday-regular-Thursday.
5392         (calendar-hebrew-year-Thursday-regular-Saturday):
5393         Rename hebrew-calendar-year-Thursday-regular-Saturday.
5394         (calendar-hebrew-year-Thursday-complete-Sunday):
5395         Rename hebrew-calendar-year-Thursday-complete-Sunday.
5396         (calendar-hebrew-year-Saturday-incomplete-Tuesday):
5397         Rename hebrew-calendar-year-Saturday-incomplete-Tuesday.
5398         (calendar-hebrew-year-Saturday-complete-Thursday):
5399         Rename hebrew-calendar-year-Saturday-complete-Thursday.
5400         (calendar-hebrew-year-Monday-incomplete-Thursday):
5401         Rename hebrew-calendar-year-Monday-incomplete-Thursday.
5402         (calendar-hebrew-year-Monday-complete-Saturday):
5403         Rename hebrew-calendar-year-Monday-complete-Saturday.
5404         (calendar-hebrew-year-Tuesday-regular-Saturday):
5405         Rename hebrew-calendar-year-Tuesday-regular-Saturday.
5406         (calendar-hebrew-year-Thursday-incomplete-Sunday):
5407         Rename hebrew-calendar-year-Thursday-incomplete-Sunday.
5408         (calendar-hebrew-year-Thursday-complete-Tuesday):
5409         Rename hebrew-calendar-year-Thursday-complete-Tuesday.
5410         (diary-hebrew-parasha): Rename diary-parasha.  Keep old name as alias.
5411         Update for above name changes of constants.
5413         * calendar/cal-menu.el, calendar/calendar.el:
5414         Update for chinese and hebrew name changes.
5415         * calendar/diary-lib.el: Update for hebrew name changes.
5417 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5419         * subr.el (keymap-canonicalize): Correct thinko.
5421         * server.el: Undo part of the multi-tty change, which is only
5422         needed if server.el is preloaded, and broke server-running-p.
5423         (server-socket-dir): Initialize in the defvar, as before.
5424         (server-start): Remove initialization of server-socket-dir.
5426 2008-04-05  Eli Zaretskii  <eliz@gnu.org>
5428         * ls-lisp.el (ls-lisp-format): Support inodes that are 2- or
5429         3-member cons cells.
5431 2008-04-05  Chong Yidong  <cyd@stupidchicken.com>
5433         * cus-face.el (custom-face-attributes): Handle roman slant.
5435         * faces.el (default): Ensure the face-defface-spec property is set.
5437 2008-04-05  Adrian Robert  <Adrian.B.Robert@gmail.com>
5439         * files.el (abort-if-file-too-large): New function.
5440         (find-file-noselect, insert-file-1): Use it.
5442 2008-04-05  Reto Zimmermann  <reto@gnu.org>
5444         * progmodes/vhdl-mode.el (vhdl-mode-map-init):
5445         Replace C-c[a-zA-Z] key bindings.
5447 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5449         * progmodes/hideif.el (hif-token-alist): New var.
5450         (hif-token-regexp, hif-tokenize): Use it.
5451         (hif-mathify-binop): New macro.
5452         (hif-plus, hif-minus, hif-notequal, hif-greater, hif-less)
5453         (hif-greater-equal, hif-less-equal): Use it.
5454         (hif-logior, hif-logand): New functions.
5455         (hif-math): Accept | and & as well.
5457         * progmodes/etags.el: Fix problem with completion for buffer-local
5458         tables.  Reported by Radey Shouman <shouman@comcast.net>.
5459         (tags-complete-tag): Remove.
5460         (tags-lazy-completion-table): New function to replace it.
5461         (find-tag-tag, complete-tag): Update users.
5463 2008-04-04  Dan Nicolaescu  <dann@ics.uci.edu>
5465         * vc-rcs.el (vc-rcs-dir-status):
5466         * vc-sccs.el (vc-sccs-dir-status): New function.
5468         * outline.el (outline-mode-menu-bar-map):
5469         * term.el (terminal-signal-menu): Add :help.
5471         * net/eudc.el (eudc-mode-map): Declare and define in one step.
5472         (eudc-tail-menu, eudc-server-menu, eudc-tools-menu): Add :help.
5474         * emacs-lisp/re-builder.el (reb-mode-map):
5475         * textmodes/nroff-mode.el (nroff-mode-map): Add menus.
5477         * diff-mode.el (diff-file-junk-re): Recognize the git format for
5478         new files, deleted files and for changing permissions.
5479         (diff-mode): Set beginning-of-defun-function and
5480         end-of-defun-function.
5482         * vc-bzr.el (vc-bzr-state): Use when instead of if.
5484         * vc.el (vc-default-status-fileinfo-extra): New function.
5485         (vc-status-mark-buffer-changed): Use it.
5486         (vc-update-vc-status-buffer): Allow for partial updates.
5488 2008-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5490         * net/tramp.el (after-init-hook): Don't wrap a lambda around
5491         tramp-register-completion-file-name-handler.
5493         * subr.el (keymap-canonicalize): New function.
5494         * mouse.el (mouse-menu-non-singleton): Use it.
5495         (mouse-major-mode-menu): Remove hack made unnecessary.
5497         * simple.el (set-fill-column): Prompt rather than error by default.
5499 2008-04-04  Andreas Schwab  <schwab@suse.de>
5501         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
5502         Reset new-rules after each round.
5504         * Makefile.in (cal-autoloads): New target.
5505         (compile, compile-always, recompile): Depend on it.
5506         ($(lisp)/calendar/cal-loaddefs.el)
5507         ($(lisp)/calendar/diary-loaddefs.el)
5508         ($(lisp)/calendar/hol-loaddefs.el): Depend on calendar/*.el.
5510 2008-04-04  Michael Kifer  <kifer@cs.stonybrook.edu>
5512         * ediff*.el: Replace load with require in eval-when-compile.
5514         * ediff-hook: Delete all invocations of (autoload ...).
5516         * ediff-util.el (ediff-setup): Make window-min-height a local variable
5517         in ediff control window, and set its min height to 2.
5518         (ediff-setup-control-buffer): Dedicate the control window.
5519         (ediff-toggle-multiframe): Undedicate control window.
5520         Work directly with ediff-setup-windows-multiframe and
5521         ediff-setup-windows-plain.
5523         * ediff-wind (ediff-choose-window-setup-function-automatically):
5524         New function.
5525         (ediff-window-setup-function): Change initialization.
5526         (ediff-setup-windows-automatic): Delete.
5527         (ediff-setup-windows-plain-merge): Make control window dedicated.
5528         (ediff-destroy-control-frame): Do not skip frames if working in a
5529         single frame.
5531         * emulation/viper-ex.el: Move provide's forward, prevent recursion in
5532         eval-when-compile.
5534         * emulation/viper-util.el: Move provide's forward, prevent recursion in
5535         eval-when-compile.
5537 2008-04-04  Glenn Morris  <rgm@gnu.org>
5539         * calendar/cal-bahai.el (calendar-bahai-to-absolute): Rename
5540         calendar-absolute-from-bahai.  Update callers, keep old name as alias.
5542         * calendar/cal-islam.el (calendar-islamic-leap-year-p):
5543         Rename islamic-calendar-leap-year-p.  Update callers.
5544         (calendar-islamic-last-day-of-month):
5545         Rename islamic-calendar-last-day-of-month.  Update callers.
5546         (calendar-islamic-day-number):
5547         Rename islamic-calendar-day-number.  Update callers.
5548         (calendar-islamic-to-absolute): Rename calendar-absolute-from-islamic.
5549         Update callers, keep old name as alias.
5550         (calendar-islamic-print-date): Rename calendar-print-islamic-date.
5551         Update callers, keep old name as alias.
5552         (calendar-islamic-goto-date): Rename calendar-goto-islamic-date.
5553         Keep old name as alias.
5554         (diary-islamic-list-entries): Rename list-islamic-diary-entries.
5555         Update callers, keep old name as alias.
5556         (calendar-islamic-mark-date-pattern):
5557         Rename mark-islamic-calendar-date-pattern.  Update callers, keep old
5558         name as alias.
5559         (diary-islamic-insert-entry): Rename insert-islamic-diary-entry.
5560         Keep old name as alias.
5561         (diary-islamic-insert-monthly-entry):
5562         Rename insert-monthly-islamic-diary-entry.  Keep old name as alias.
5563         (diary-islamic-insert-yearly-entry):
5564         Rename insert-yearly-islamic-diary-entry.  Keep old name as alias.
5566         * calendar/cal-iso.el (calendar-iso-to-absolute): Rename
5567         calendar-absolute-from-iso.  Update callers, keep old name as alias.
5568         (calendar-iso-print-date): Rename calendar-print-iso-date.
5569         Update callers, keep old name as alias.
5570         (calendar-iso-goto-date): Rename calendar-goto-iso-date.
5571         Keep old name as alias.
5572         (calendar-iso-goto-week): Rename calendar-goto-iso-week.
5573         Keep old name as alias.
5575         * calendar/cal-julian.el (calendar-julian-to-absolute): Rename
5576         calendar-absolute-from-julian.  Update callers, keep old name as alias.
5577         (calendar-julian-print-date): Rename calendar-print-julian-date.
5578         Update callers, keep old name as alias.
5579         (calendar-julian-goto-date): Rename calendar-goto-julian-date.
5580         Update callers, keep old name as alias.
5581         (calendar-astro-to-absolute): Rename calendar-absolute-from-astro.
5582         Update callers, keep old name as alias.
5583         (calendar-astro-print-day-number):
5584         Rename calendar-print-astro-day-number.  Update callers, keep old
5585         name as alias.
5586         (calendar-astro-goto-day-number): Rename calendar-goto-astro-day-number.
5587         Update callers, keep old name as alias.
5589         * calendar/cal-mayan.el (calendar-mayan-string-from-long-count):
5590         Rename calendar-string-to-mayan-long-count.  Update callers.
5591         (calendar-mayan-print-date): Rename calendar-print-mayan-date.
5592         Update callers, keep old name as alias.
5593         (calendar-mayan-read-haab-date): Rename calendar-read-mayan-haab-date.
5594         Update callers.
5595         (calendar-mayan-read-tzolkin-date):
5596         Rename calendar-read-mayan-tzolkin-date.  Update callers.
5597         (calendar-mayan-next-haab-date): Rename calendar-next-haab-date.
5598         Keep old name as alias.
5599         (calendar-mayan-previous-haab-date): Rename calendar-previous-haab-date.
5600         Keep old name as alias.
5601         (calendar-mayan-next-tzolkin-date): Rename calendar-next-tzolkin-date.
5602         Keep old name as alias.
5603         (calendar-mayan-previous-tzolkin-date):
5604         Rename calendar-previous-tzolkin-date.  Keep old name as alias.
5605         (calendar-mayan-next-round-date):
5606         Rename calendar-next-calendar-round-date.  Keep old name as alias.
5607         (calendar-mayan-previous-round-date):
5608         Rename calendar-previous-calendar-round-date.  Keep old name as alias.
5609         (calendar-mayan-long-count-to-absolute): Rename
5610         calendar-absolute-from-mayan-long-count.  Keep old name as alias.
5611         (calendar-mayan-goto-long-count-date):
5612         Rename calendar-goto-mayan-long-count-date.  Keep old name as alias.
5614         * calendar/cal-persia.el (calendar-persian-month-name-array):
5615         Rename persian-calendar-month-name-array.  Update callers.
5616         (calendar-persian-epoch): Rename persian-calendar-epoch.
5617         Update callers.
5618         (calendar-persian-leap-year-p): Rename persian-calendar-leap-year-p.
5619         Update callers.
5620         (calendar-persian-last-day-of-month):
5621         Rename persian-calendar-last-day-of-month.  Update callers.
5622         (calendar-persian-to-absolute): Rename calendar-absolute-from-persian.
5623         Update callers, keep old name as alias.
5624         (calendar-persian-print-date): Rename calendar-print-persian-date.
5625         Update callers, keep old name as alias.
5626         (calendar-persian-goto-date): Rename calendar-goto-persian-date.
5627         Keep old name as alias.
5629         * calendar/cal-china.el, calendar/cal-coptic.el, calendar/cal-islam.el:
5630         * calendar/cal-persia.el, calendar/holidays.el, calendar/lunar.el:
5631         * calendar/solar.el: Update for cal-julian name changes.
5633         * calendar/cal-dst.el: Update for persian name changes.
5635         * calendar/cal-menu.el, calendar/calendar.el:
5636         Update for islamic, iso, julian, mayan, persian name changes.
5638         * calendar/diary-lib.el: Update for islamic name changes.
5640         * calendar/calendar.el (calendar-hebrew-all-holidays-flag):
5641         Rename all-hebrew-calendar-holidays.  Update callers, keep old name
5642         as alias.
5643         (calendar-christian-all-holidays-flag):
5644         Rename all-christian-calendar-holidays.  Update callers, keep old
5645         name as alias.
5646         (calendar-islamic-all-holidays-flag):
5647         Rename all-islamic-calendar-holidays.  Update callers, keep old
5648         name as alias.
5649         (calendar-bahai-all-holidays-flag): Rename all-bahai-calendar-holidays.
5650         Update callers, keep old name as alias.
5651         * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/holidays.el:
5652         Update for the above name changes.
5654 2008-04-04  Juanma Barranquero  <lekktu@gmail.com>
5656         * hilit-chg.el (global-highlight-changes-mode)
5657         (highlight-changes-passive-string, highlight-changes-active-string):
5658         Mark as obsolete since 23.1, not 22.1.
5660 2008-04-03  Juanma Barranquero  <lekktu@gmail.com>
5662         * hilit-chg.el (highlight-changes-visibility-initial-state)
5663         (hilit-chg-update, highlight-changes-mode-turn-on):
5664         Fix typos in docstrings.
5666 2008-04-03  Stephen Berman  <Stephen.Berman@gmx.net>
5668         * newcomment.el (comment-enter-backward): Be careful to restore
5669         position changed during narrowing.
5671 2008-04-03  Giuliano Procida  <giuliano.procida@googlemail.com>  (tiny change)
5673         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
5674         Recognize `sub ($$)'.
5676 2008-04-03  Richard Sharman  <rsharman@pobox.com>
5678         * hilit-chg.el (highlight-changes-mode): Rename from
5679         highlight-changes; no longer uses sub-modes active and passive;
5680         implemented by define-minor-mode.
5681         (highlight-changes-toggle-visibility): New function, to replace
5682         the old passive/active submodes of global-highlight-changes-mode;
5683         implemented by define-minor-mode.
5684         (global-highlight-changes-mode): Rename from global-highlight-changes;
5685         rewrite using define-globalized-minor-mode.
5686         (hilit-chg-major-mode-hook, hilit-chg-check-global)
5687         (hilit-chg-post-command-hook, hilit-chg-check-global)
5688         (hilit-chg-update-all-buffers, hilit-chg-turn-off-maybe): Remove due
5689         to use of define-globalized-minor-mode.
5690         (highlight-changes-global-initial-state): Change to be boolean.
5691         (highlight-changes-visible-string, highlight-changes-invisible-string):
5692         Rename from highlight-changes-active-string and
5693         highlight-changes-passive-string.
5694         (hilit-chg-update, hilit-chg-set): Use them.
5695         (global-highlight-changes-mode): Rename from global-highlight-changes.
5696         (hilit-chg-map-changes, hilit-chg-display-changes): Add arguments to
5697         docstring.
5698         (hilit-chg-hide-changes): Rewrite to use dolist.
5699         (hilit-chg-set-face-on-change, hilit-chg-update)
5700         (highlight-changes-rotate-faces): Use highlight-changes-visible-mode
5701         variable instead of testing highlight-changes-mode.
5702         (highlight-markup-buffers): Add require ediff-util; argument on calls
5703         to highlight-changes-mode changed.
5704         (highlight-compare-with-file): Fix problems with interactive
5705         call giving invalid default file.
5707 2008-04-03  Nick Roberts  <nickrob@snap.net.nz>
5709         * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
5710         Fix in disassembly buffer (regression in 22.2).
5712 2008-04-03  Michael Kifer  <kifer@cs.stonybrook.edu>
5714         * emulation/viper-macs.el (viper-read-fast-keysequence):
5715         Use viper-read-event instead of viper-read-key.
5717         * emulation/viper.el (viper-mode): Move the check for fundamental mode.
5719         * emulation/viper-utils.el (viper-get-saved-cursor-color-in-insert-mode)
5720         (viper-get-saved-cursor-color-in-replace-mode): Get rid of redundant
5721         let-statements.
5723         * emulation/viper-ex.el, emulation/viper-macs.el:
5724         * emulation/viper-mous.el:
5725         Replace load with require in eval-when-compile.
5727 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5729         * files.el (auto-mode-alist): Use archive-mode for Debian packages.
5731         * arc-mode.el (archive-mode-map): Obey mouse-1-click-follows-link.
5732         (archive-try-jka-compr): New function.
5733         (archive-set-buffer-as-visiting-file): Use it.
5735         * tar-mode.el (tar-mode-map): Obey mouse-1-click-follows-link.
5737 2008-04-03  Chong Yidong  <cyd@stupidchicken.com>
5739         * simple.el (handle-shift-selection): New arg.
5741 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5743         * emacs-lisp/cl-macs.el (defsetf): Accept a lambda for the 2-arg form.
5745         * vc-bzr.el (vc-bzr-previous-revision, vc-bzr-next-revision): New funs.
5747 2008-04-03  Chong Yidong  <cyd@stupidchicken.com>
5749         * shell.el (shell-dynamic-complete-filename): New fun.
5750         (shell-dynamic-complete-functions): Use it.
5752         * help-fns.el (describe-variable): Undo 2008-02-25 change.
5754 2008-04-03  Kenichi Handa  <handa@m17n.org>
5756         * international/fontset.el (create-fontset-from-x-resource):
5757         Handle the error of X resource more gracefully.
5759         * international/latin1-disp.el (latin1-display): Don't use make-char.
5760         Fix the argument to set-char-table-range.
5761         (latin1-display-identities): Don't use make-char.
5762         (latin1-display-reset): Use map-charset-chars instead of directly
5763         calling standard-display-default.
5764         (latin1-display-check-font): Don't use make-char.
5765         (latin1-display-setup): Likewise.
5766         (latin1-display-ucs-per-lynx): Likewise.
5768 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5770         * emacs-lisp/timer.el (timer): Define as a defstruct, so we can
5771         name the fields, to make the code clearer.
5772         Rewrite all `aset' and `aref' using the defined accessors.
5773         (timer--time): New pseudo-field.
5774         (timer-set-time, timer-set-idle-time, timer-inc-time)
5775         (timer-set-time-with-usecs, with-timeout-suspend): Use it.
5776         (timer--time-less-p): New function.
5777         (timer--activate): New function, extracted from timer-activate.
5778         (timer-activate-when-idle, timer-activate): Use it.
5779         (cancel-function-timers): Use dolist.
5781 2008-04-03  Glenn Morris  <rgm@gnu.org>
5783         * add-log.el (c-beginning-of-defun, c-end-of-defun):
5784         Remove declarations; no longer used.
5785         (c-cpp-define-name, c-defun-name): Declare as functions.
5787         * calendar/cal-bahai.el (holiday-fixed): Autoload it.
5788         (holiday-bahai-new-year, holiday-bahai-ridvan): New functions.
5790         * calendar/cal-hebrew.el (holiday-rosh-hashanah-etc)
5791         (holiday-passover-etc, holiday-hanukkah): Doc fix.
5792         Add optional argument.  Simplify.
5793         (holiday-tisha-b-av-etc): Use memq rather than unless.
5794         (holiday-julian): Autoload it.
5795         (holiday-hebrew-misc): New function.
5797         * calendar/cal-islam.el (holiday-islamic-new-year): New function.
5799         * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
5800         (hebrew-holidays-3, hebrew-holidays-4): Make obsolete.
5801         (hebrew-holidays-2): Just use holiday-hanukkah now it respects
5802         all-hebrew-calendar-holidays.
5803         (hebrew-holidays, christian-holidays, islamic-holidays, bahai-holidays):
5804         Simplify using new functions.
5805         (calendar-holidays): Doc fix.
5806         (generate-calendar-window): Use bound-and-true-p.
5808         * calendar/diary-lib.el (diary-mail-addr): Use bound-and-true-p.
5810         * calendar/holidays.el (calendar-holiday-list): Fix previous change.
5811         (holiday-filter-visible-calendar): Doc fix.  Use mapcar.
5812         (holiday-easter-etc): Fix nesting of result.  Tweak holiday order.
5813         Use calendar-date-is-visible-p, not holiday-filter-visible-calendar.
5815         * net/tramp.el (tramp-drop-volume-letter): Move definition before use.
5817 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5819         * vc-mtn.el (vc-mtn-command): Avoid localization of messages.
5821         * vc-bzr.el (vc-bzr-checkout): Simplify.
5823         * image-mode.el (image-mode-fit-frame): New command.
5825         * simple.el (beginning-of-buffer, end-of-buffer, goto-line, undo)
5826         (copy-region-as-kill, kill-ring-save, use-region-p, mark-word)
5827         (keyboard-escape-quit): Check region-active-p i.s.o
5828         transient-mark-mode.
5830 2008-04-02  Simon Josefsson  <simon@josefsson.org>
5832         * net/imap.el (imap-enable-exchange-bug-workaround): New variable.
5833         (imap-message-copyuid-1): Use it.
5834         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
5835         J. Williams in
5836         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
5838 2008-04-02  Alan Mackenzie  <acm@muc.de>
5840         * progmodes/cc-cmds.el (c-defun-name, c-cpp-define-name):
5841         New optimised functions to get the name of the current defun/macro.
5843         * add-log.el (add-log-current-defun): Move the functionality which
5844         gets the current function name for C like modes to cc-cmds.el,
5845         thus optimising for speed.
5847 2008-04-02  Chong Yidong  <cyd@stupidchicken.com>
5849         * simple.el (deactivate-mark): When the mark is temporarily
5850         active, restore the original value of transient-mark-mode.
5851         (set-mark-command): First deactivate the mark if was temporarily active.
5852         (exchange-point-and-mark): Reactivate the mark if it was
5853         temporarily active.
5854         (handle-shift-selection): New fun.
5855         (transient-mark-mode): Move var documentation here from buffer.c.
5856         (next-line, previous-line, backward-word, move-end-of-line)
5857         (move-beginning-of-line, forward-to-indentation)
5858         (backward-to-indentation, back-to-indentation)
5859         (beginning-of-buffer, end-of-buffer): Add ^ interactive spec.
5861         * mouse.el (mouse-set-region-1): Save the old value of
5862         transient-mark-mode.
5863         (mouse-drag-track): Ignore the now-obsolete value `identity' for
5864         transient-mark-mode.
5866         * textmodes/paragraphs.el (forward-paragraph)
5867         (backward-paragraph, forward-sentence, backward-sentence): Add ^
5868         interactive spec.
5870         * emulation/cua-base.el (cua-mode): Turn off shift-select-mode.
5872 2008-04-02  Michael Albinus  <michael.albinus@gmx.de>
5874         * net/tramp.el (tramp-make-tramp-temp-file):
5875         Use `tramp-drop-volume-letter' for the local file name part.
5877 2008-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
5879         * progmodes/sh-script.el (sh-mode-map): Rename the menu.  Add :help.
5880         Add menu entries corresponding to all the key bindings.
5882         * emacs-lisp/debug.el (debugger-mode-map):
5883         * textmodes/conf-mode.el (conf-mode-map): Add a menu.
5884         (conf-align-assignments): Only work on the region if it is active.
5885         (conf-quote-normal): Use when instead of if.  Remove redundant test.
5887         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
5888         for tracing and re-builder.
5890 2008-04-02  Glenn Morris  <rgm@gnu.org>
5892         * calendar/appt.el (appt-disp-window-function): Doc fix.
5893         (appt-display-message): Move beep before display.
5894         (appt-check): Make interactive.  Reduce the number of lets.
5895         Use string-equal to compare mode-line strings.
5896         (appt-disp-window): Pluralize "minute" as needed.  Make appt buffer
5897         read-only.
5898         (appt-select-lowest-window, appt-make-list): Reduce the number of lets.
5899         (appt-delete): Simplify.
5901         * calendar/cal-china.el (holiday-chinese-new-year): Use a single let.
5903         * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
5905         * calendar/cal-hebrew.el (list-yahrzeit-dates):
5906         * calendar/cal-tex.el (cal-tex-insert-blank-days-at-end)
5907         (cal-tex-last-blank-p, cal-tex-daily-page): Expand calendar-for-loops.
5909         * calendar/calendar.el (diary-entry-marker, calendar-today-marker)
5910         (calendar-holiday-marker, mark-visible-calendar-date):
5911         * calendar/diary-lib.el (fancy-diary-display):
5912         Check for font-lock-mode before using faces.
5914         * calendar/calendar.el (hebrew-holidays-3, generate-calendar-month)
5915         (calendar-gregorian-from-absolute): Reduce the number of lets.
5916         (hebrew-holidays-4, generate-calendar-window): Simplify.
5917         (calendar-for-loop): Make obsolete.
5918         (calendar-nth-named-day): Doc fix.
5920         * calendar/diary-lib.el (diary-list-entries, fancy-diary-display)
5921         (print-diary-entries, mark-sexp-diary-entries, calendar-mark-complex)
5922         (calendar-mark-1, list-sexp-diary-entries, diary-remind):
5923         Reduce the number of lets.
5924         (mark-sexp-diary-entries, calendar-mark-complex):
5925         Expand calendar-for-loops.
5927 2008-04-01  Chong Yidong  <cyd@stupidchicken.com>
5929         * find-dired.el (find-dired-filter): Fix last patch to handle
5930         multi-line process input.  Pad link numbers too.
5932 2008-04-01  Jari Aalto  <jari.aalto@cante.net>
5934         * find-dired.el (find-dired-filter): Align columns by padding file sizes.
5936 2008-04-01  Jason Rumney  <jasonr@gnu.org>
5938         * international/characters.el (script-list): Add phonetic script,
5939         covering IPA (previously Latin), Phonetic Extensions and
5940         Phonetic Extensions Supplement (both previously unassigned).
5942         * international/fontset.el (setup-default-fontset): Use unicode fonts
5943         that cover bopomofo script for bopomofo.
5944         Likewise for braille and mathematical.
5945         Use unicode scripts that cover the phonetic script for IPA.
5947 2008-04-01  Johan BockgÃ¥rd  <bojohan@gnu.org>
5949         * emacs-lisp/cl-macs.el (frame-parameter) <defsetf>: Make it
5950         return the assigned value.
5952 2008-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5954         * abbrev.el (abbrev-mode): Use define-minor-mode.
5956         * mouse.el (mouse-major-mode-menu-prefix): Remove.  Remove uses.
5957         (mouse-menu-non-singleton): Rename from mouse-major-mode-menu-1.
5958         Use map-keymap.
5959         (minor-mode-menu-from-indicator): Use it.  Simplify.
5961         * bindings.el (mode-line-mode-menu): Move before (new) first use.
5962         (mode-line-major-mode-keymap, mode-line-minor-mode-keymap):
5963         Bind the key directly to the menu.
5964         (mode-line-mode-menu-1, mode-line-mode-menu): Remove functions.
5966 2008-04-01  Daiki Ueno  <ueno@unixuser.org>
5968         * epa.el (epa-decrypt-region): Explain the reason why this
5969         function should not be used in Lisp programs.
5970         (epa-decrypt-armor-in-region): Ditto.
5971         (epa-verify-region): Ditto.
5972         (epa-verify-cleartext-in-region): Ditto.
5973         (epa-sign-region): Ditto.
5974         (epa-encrypt-region): Ditto.
5976         * epg.el (epg-start-receive-keys): Fix typo in docstring.
5978         * epa.el (epa-select-keys): Show menu even if there is no key in
5979         GnuPG's keyring.
5981 2008-04-01  Glenn Morris  <rgm@gnu.org>
5983         * calendar/calendar.el (calendar-make-temp-face): New function.
5984         (mark-visible-calendar-date):
5985         * calendar/diary-lib.el (fancy-diary-display): Use it.
5987         * vc-hooks.el (vc-responsible-backend): Declare as function.
5989         * calendar/calendar.el (calendar-nongregorian-visible-p): New function.
5990         * calendar/cal-hebrew.el (calendar-hebrew-date-is-visible-p):
5991         * calendar/cal-julian.el (holiday-julian): Use it.
5993         * calendar/cal-hebrew.el (hebrew-calendar-elapsed-days): Doc fix.
5994         (calendar-hebrew-date-is-visible-p): Extract some common code into
5995         separate function.
5996         (holiday-hebrew, mark-hebrew-calendar-date-pattern): Use it.
5998         * calendar/cal-menu.el (cal-menu-holidays-menu):
5999         * calendar/calendar.el (calendar-mode-map): Use calendar-mark-holidays
6000         rather than obsolete alias.
6002         * calendar/calendar.el (mark-visible-calendar-date): Also use overlay
6003         for mark characters.
6004         (calendar-unmark): Unmark by removing all overlays, rather than
6005         redrawing.
6006         (calendar-starred-day): Remove.
6007         (calendar-mode): Disable undo.  Don't make calendar-starred-day local.
6008         (calendar-cursor-to-date): No need for special star handling now
6009         using overlays.
6010         (calendar-star-date): Use overlays.
6012         * calendar/cal-french.el (calendar-goto-french-date):
6013         * calendar/cal-hebrew.el (calendar-hebrew-from-absolute)
6014         (holiday-hanukkah, mark-hebrew-calendar-date-pattern):
6015         * calendar/cal-move.el (calendar-forward-month, calendar-end-of-month):
6016         * calendar/cal-persia.el (calendar-persian-date-string):
6017         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
6018         (cal-tex-cursor-month, cal-tex-LaTeXify-string):
6019         * calendar/lunar.el (lunar-phase-list, lunar-new-moon-on-or-after):
6020         * calendar/solar.el (solar-equinoxes-solstices):
6021         Reduce nesting of some lets.
6023         * calendar/cal-mayan.el (calendar-string-to-mayan-long-count)
6024         (calendar-goto-mayan-long-count-date): Simplify.
6026         * calendar/holidays.el (calendar-holiday-list, holiday-easter-etc):
6027         Simplify by using mapcar.
6028         (calendar-list-holidays): Return holiday-list.
6029         (list-holidays): Use let rather than let*.  Remove un-needed locals
6030         `d', `never'.
6031         (calendar-check-holidays): Return result from dolist.
6032         (holiday-float): Use a single let*.  Simplify if-and to and.
6033         (holiday-sexp, holiday-advent, holiday-greek-orthodox-easter): Use a
6034         single let*.
6036 2008-04-01  Jay Belanger  <jay.p.belanger@gmail.com>
6038         * calc/calc.el: Autoload `calc-yank'.
6039         (calc-mode-map): Add keybindings for `calc-yank'.
6040         * calc/calc-ext.el (calc-init-extensions): Remove keybinding
6041         assignments for `calc-yank'.
6043 2008-03-31  Dan Nicolaescu  <dann@ics.uci.edu>
6045         * vc.el (vc-status-add-entry): Assume ENTRY is a list, not a cons.
6046         (vc-status-mark-buffer-changed): Handle the extra field.
6048         * vc-bzr.el (vc-bzr-after-dir-status):
6049         * vc-cvs.el (vc-cvs-after-dir-status):
6050         * vc-hg.el (vc-hg-after-dir-status):
6051         * vc-svn.el (vc-svn-after-dir-status): Return a list, not a cons.
6053 2008-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
6055         * doc-view.el: Compute displayed pages first (in PDF).
6056         (doc-view-current-converter-processes): Rename from
6057         doc-view-current-converter-process.  Update users.
6058         (doc-view-sentinel): Test buffer's liveness.
6059         (doc-view-pdf/ps->png-sentinel): Remove.
6060         (doc-view-start-process): New function.
6061         (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
6062         (doc-view-ps->pdf): Use it.
6063         (doc-view-pdf->png-1, doc-view-pdf->png, doc-view-active-pages):
6064         New functions.
6065         (doc-view-convert-current-doc, doc-view-goto-page): Use them.
6066         (doc-view-mode): Kill the processes when leaving the mode.
6068 2008-03-31  Juanma Barranquero  <lekktu@gmail.com>
6070         * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p):
6071         Use `byte-compile-warning-types'.  Add docstring.
6073 2008-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
6075         * smerge-mode.el (smerge-apply-resolution-patch): New fun.
6076         (smerge-resolve): Add various resolution heuristics.
6078         * smerge-mode.el (smerge-refine): Allow highlighting other subparts
6079         in 3-way conflicts.
6081 2008-03-31  Glenn Morris  <rgm@gnu.org>
6083         * calendar/cal-bahai.el (diary-bahai-mark-entries):
6084         * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
6085         * calendar/cal-islam.el (mark-islamic-diary-entries):
6086         Fix argument order in call to diary-mark-entries-1.
6088         * calendar/cal-bahai.el (calendar-bahai-date-string): Avoid an error for
6089         pre-Bahai dates.
6090         (holiday-bahai): Use an algorithm actually relevant to this calendar
6091         system.
6093         * calendar/cal-china.el (holiday-chinese-new-year): Doc fix.
6095         * calendar/cal-islam.el (holiday-islamic): Remove un-needed let.
6096         Use and.
6098         * calendar/cal-julian.el (holiday-julian): Fix a problem with holidays
6099         in the last fortnight in Julian October.
6101         * calendar/calendar.el (increment-calendar-month): Optionally handle
6102         systems without 12 months per year.
6104         (calendar-date-is-visible-p): Doc fix.  Simplify.
6106         * calendar/holidays.el (holiday-filter-visible-calendar): Return result
6107         from dolist.
6109 2008-03-30  Juanma Barranquero  <lekktu@gmail.com>
6111         * hi-lock.el (hi-lock-mode): Fix typos in docstring.
6112         (hi-lock-unload-function): New function.
6114 2008-03-30  Michael Albinus  <michael.albinus@gmx.de>
6116         * net/tramp.el (tramp-do-copy-or-rename-file): Fix check for
6117         overwriting when NEWNAME is a local file.
6119         * net/trampver.el: Update release number.
6121 2008-03-30  Alexandre Julliard  <julliard@winehq.org>
6123         * vc-git.el: Make vc-status display information about copies,
6124         renames and permission changes.
6125         (vc-git-extra-fileinfo): New defstruct.
6126         (vc-git-escape-file-name, vc-git-file-type-as-string)
6127         (vc-git-rename-as-string, vc-git-permissions-as-string)
6128         (vc-git-status-printer): New functions.
6129         (vc-git-after-dir-status-stage2): Also return vc-git-extra-fileinfo.
6130         (vc-git-after-dir-status-stage1): Look for copies, renames and
6131         permission changes.
6132         (vc-git-after-dir-status-stage1-empty-db): Set permissions.
6133         (vc-git-dir-status): Ask for staged files and renames.
6135 2008-03-30  Dan Nicolaescu  <dann@ics.uci.edu>
6137         * vc.el: Allow backends to display backend specific information in
6138         the vc-status listing.
6139         (vc-status-fileinfo): Add a field for backend specific information.
6140         (vc-status-printer): Rename to ...
6141         (vc-default-status-printer): ... this.
6142         (vc-status-printer): New function.
6143         (vc-update-vc-status-buffer): Set the backend specific file info
6144         if provided.
6146 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6148         * textmodes/remember.el (remember-diary-convert-entry): Revert last
6149         change (ill-conceived).
6151 2008-03-29  Glenn Morris  <rgm@gnu.org>
6153         * calendar/cal-hebrew.el (holiday-hebrew): Simplify.
6154         * calendar/cal-julian.el (holiday-julian): Simplify.
6156         * calendar/holidays.el (list-holidays): Use or.
6158 2008-03-29  Juri Linkov  <juri@jurta.org>
6160         * window.el (split-window-preferred-horizontally): New function.
6162         * cus-start.el (split-window-preferred-function):
6163         Set choice for "vertically" to nil instead of split-window.
6164         Set choice for "horizontally" to split-window-preferred-horizontally
6165         instead of lambda.
6167 2008-03-29  Juri Linkov  <juri@jurta.org>
6169         * simple.el (minibuffer-default-add-function): New variable with
6170         the default to minibuffer-default-add-completions.
6171         (minibuffer-default-add-done): New variable.  Make it buffer-local.
6172         (minibuffer-default-add-completions): New function.
6173         (goto-history-element): Set minibuffer-default-add-done to t and
6174         call a function in minibuffer-default-add-function when the
6175         specified absolute history position is greater than the length of
6176         the minibuffer-default list and minibuffer-default-add-done is nil.
6177         Change "^End of history; no next item$" to "^End of defaults;
6178         no next item$".
6180         * bindings.el (debug-ignored-errors): Change "^End of history;
6181         no next item$" to "^End of defaults; no next item$".
6183 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6185         * subr.el (with-temp-buffer): Assume kill-buffer can change cur-buf.
6187         * textmodes/remember.el (remember-diary-convert-entry): Prefer boundp
6188         to with-no-warnings.
6190 2008-03-29  Michael Albinus  <michael.albinus@gmx.de>
6192         Sync with Tramp 2.1.13.
6194         * net/tramp-ftp.el: Require 'cl when byte-compiling.
6196         * net/trampver.el: Update release number.
6198 2008-03-29  Dan Nicolaescu  <dann@ics.uci.edu>
6200         * vc-hooks.el (vc-menu-map-filter): Be more careful when finding
6201         the current backend.
6203         * vc.el (vc-status-menu-map, vc-status-mode-map): Bind vc-revert.
6204         (vc-status-refresh): Create a temporary buffer and call the
6205         `dir-status' backend function from that buffer.
6207         * vc-bzr.el (vc-bzr-dir-status): Don't create a buffer.
6208         (vc-bzr-after-dir-status): Don't kill the buffer.
6210         * vc-cvs.el (vc-cvs-dir-status): Don't create a buffer.
6211         (vc-cvs-after-dir-status): Don't kill the buffer.
6213         * vc-git.el (vc-git-dir-status): Don't create a buffer.
6214         (vc-git-after-dir-status-stage2): Don't kill the buffer.
6216         * vc-hg.el (vc-hg-dir-status): Don't create a buffer.
6217         (vc-hg-after-dir-status): Don't kill the buffer.
6219         * vc-svn.el (vc-svn-dir-status): Don't create a buffer.
6220         (vc-svn-after-dir-status): Don't kill the buffer.
6222 2008-03-29  Glenn Morris  <rgm@gnu.org>
6224         * calendar/calendar.el (diary-file, american-date-diary-pattern)
6225         (european-date-diary-pattern, european-calendar-display-form)
6226         (american-calendar-display-form, diary-display-hook): Doc fixes.
6227         (european-calendar-style): Doc fix.  Use calendar-set-date-style for
6228         custom :set.  Mark as obsolete.
6229         (calendar-date-style, iso-date-diary-pattern)
6230         (iso-calendar-display-form): New user variables.
6231         (diary-date-forms, calendar-date-display-form): Set using
6232         calendar-date-style.  Doc fix.
6233         (calendar-set-date-style): New command.
6234         (european-calendar, american-calendar): Use calendar-set-date-style.
6235         Mark as obsolete.
6237         * calendar/diary-lib.el (number): Move declaration where needed.
6238         (diary-mail-entries, list-sexp-diary-entries): Doc fixes.
6239         (diary-make-date): New function.
6240         (diary-date, diary-block, diary-anniversary, diary-cyclic): Doc fix.
6241         Use diary-make-date.
6242         (diary-date-display-form, diary-insert-entry-1): New functions.
6243         (insert-monthly-diary-entry, insert-yearly-diary-entry):
6244         Use diary-insert-entry-1.
6245         (insert-anniversary-diary-entry, insert-block-diary-entry)
6246         (insert-cyclic-diary-entry): Use diary-date-display-form.
6248         * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
6249         Autoload diary-insert-entry-1.
6250         * calendar/cal-bahai.el (diary-bahai-insert-entry)
6251         (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
6252         * calendar/cal-hebrew.el (insert-hebrew-diary-entry)
6253         (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry)
6254         * calendar/cal-islam.el (insert-islamic-diary-entry)
6255         (insert-monthly-islamic-diary-entry, insert-yearly-islamic-diary-entry):
6256         Use diary-insert-entry-1.
6258         * calendar/cal-hebrew.el (diary-make-date): Autoload it.
6259         (diary-yahrzeit): Doc fix.  Use diary-make-date.
6261         * calendar/icalendar.el (icalendar--datetime-to-american-date):
6262         New name for icalendar--datetime-to-noneuropean-date.  Make old name
6263         obsolete alias.
6264         (icalendar--datetime-to-iso-date): New function.
6265         (icalendar--datetime-to-diary-date): Doc fix.  Respect
6266         calendar-date-style if bound.
6268         * textmodes/remember.el (remember-diary-convert-entry):
6269         Respect calendar-date-style if bound.
6271 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6273         * xt-mouse.el (xterm-mouse-mode): Use delete-terminal-functions.
6274         (xterm-mouse-handle-delete-frame): Delete.
6276         * term/xterm.el (terminal-init-xterm): Use delete-terminal-functions.
6277         (xterm-turn-on-modify-other-keys, xterm-turn-off-modify-other-keys)
6278         (xterm-remove-modify-other-keys): Lookup terminal rather than frame
6279         in xterm-modify-other-keys-terminal-list.
6281         * vc-bzr.el (vc-bzr-state-heuristic): Fix last change for when there
6282         are conflicts.
6284 2008-03-29  Dan Nicolaescu  <dann@ics.uci.edu>
6286         * vc.el (vc-update): Check if the buffer is unsaved only if it
6287         actually exists.
6288         (vc-status-mode-map, vc-status-menu-map): Bind vc-update and
6289         vc-print-log.
6291 2008-03-28  Magnus Henoch  <mange@freemail.hu>
6293         * net/dns.el (dns-write): Use set-buffer-multibyte.
6295 2008-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6297         * vc-bzr.el (vc-bzr-sha1): New fun.
6298         (vc-bzr-state-heuristic): New fun, extracted from vc-bzr-registered.
6299         (vc-bzr-registered): Use it.
6301 2008-03-28  Dan Nicolaescu  <dann@ics.uci.edu>
6303         * vc.el (vc-status-kill-dir-status-process): Simplify.
6304         (vc-status-refresh): Make sure the buffer is live.
6305         (ring): Don't require it, not used.
6307 2008-03-28  Wilson Snyder  <wsnyder@wsnyder.org>
6309         * progmodes/verilog-mode.el (verilog-auto-inout-module):
6310         Add optional regular expression to AUTOINOUTMODULE.
6311         (verilog-inject-auto, verilog-auto-arg, verilog-auto-inst)
6312         (verilog-auto-inst-param, verilog-auto-reg)
6313         (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
6314         (verilog-auto-output-every, verilog-auto-input)
6315         (verilog-auto-inout, verilog-auto-sense, verilog-auto-tieoff)
6316         (verilog-auto-unused, verilog-auto): Update documentation to use
6317         more obvious instance module names versus cell names.
6319 2008-03-28  Jan Djärv  <jan.h.d@swipnet.se>
6321         * progmodes/compile.el (compilation-mode-tool-bar-map): Only enable
6322         kill if a process is running.
6324         * progmodes/grep.el (grep-mode-tool-bar-map): The same.
6326 2008-03-28  Dan Nicolaescu  <dann@ics.uci.edu>
6328         * vc.el: Add new backend function 'status-extra-headers.
6329         (vc-default-status-extra-headers): New function.
6330         (vc-status-headers): Call 'status-extra-headers.  Add colors.
6332         * vc-git.el (vc-git-status-extra-headers): New function.
6334 2008-03-28  Glenn Morris  <rgm@gnu.org>
6336         * calendar/cal-menu.el (cal-menu-holidays-menu)
6337         (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
6338         (cal-menu-list-holidays-previous-year): Simplify now that 2nd arg of
6339         holiday-list is optional.
6340         (calendar-mouse-holidays): Remove un-needed local `l'.
6342         * calendar/cal-move.el (calendar-cursor-to-nearest-date):
6343         Remove un-needed local `date'.
6344         (calendar-cursor-to-visible-date): Use let rather than let*.
6345         Remove un-needed local `first-of-month-weekday'.
6347         * calendar/calendar.el (abbreviated-calendar-year): Move to diary-lib.
6349         * calendar/diary-lib.el (print-diary-entries-hook, diary-list-entries):
6350         Doc fixes.
6351         (abbreviated-calendar-year): Move here from calendar.el.  Doc fix.
6352         (diary-header-line-flag, diary-header-line-format): Declare.
6353         (diary-pull-attrs): Check for multiple matches.
6354         (diary-list-entries-2): Simplify finding start of date.
6355         (diary-show-all-entries, make-diary-entry): Respect non-nil values of
6356         pop-up-frames.
6357         (diary-mark-entries-1): Re-use offset in abbreviated-year case.
6358         (mark-sexp-diary-entries): Remove superfluous call to diary-pull-attrs.
6360 2008-03-27  Dan Nicolaescu  <dann@ics.uci.edu>
6362         * vc-hg.el (vc-hg-state, vc-hg-dir-state): Deal with 'missing files.
6364         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Fix predicate.
6366 2008-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6368         * vc-hooks.el (vc-before-save): Don't prevent saving the file.
6370         * image-mode.el (image-mode-reapply-winprops): Fix last change.
6372 2008-03-27  Kenichi Handa  <handa@ni.aist.go.jp>
6374         * international/mule-conf.el (define-iso-single-byte-charset):
6375         Don't make latin-iso8859-* supplementary.
6376         (#'set-charset-priority): Don't change the priority of charsets
6377         `unicode' and `emacs'.
6379 2008-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6381         * vc.el (vc-do-command): Don't pop to the buffer if it's an internal
6382         temp buffer.
6384 2008-03-27  Glenn Morris  <rgm@gnu.org>
6386         * calendar/cal-bahai.el (diary-bahai-list-entries):
6387         * calendar/cal-hebrew.el (list-hebrew-diary-entries):
6388         * calendar/cal-islam.el (list-islamic-diary-entries): Doc fix.
6390         * calendar/calendar.el (diary-file): Doc fix.
6392         * calendar/diary-lib.el (diary-face-attrs): Fix `height' regexp.
6393         (list-diary-entries-hook, mark-diary-entries-hook)
6394         (include-other-diary-files, diary-mail-entries)
6395         (mark-included-diary-files, list-sexp-diary-entries): Doc fixes.
6396         (diary-set-header): New function.
6397         (diary-header-line-flag, diary-header-line-format):
6398         Use diary-set-header for custom :set function.
6399         (diary-set-maybe-redraw): Use symbol-value rather than eval.
6400         (diary-attrtype-convert): Use intern-soft rather than read.
6401         (diary-display-no-entries): New function.
6402         (simple-diary-display, fancy-diary-display): Use it.
6403         (fancy-diary-display): Doc fix.  Remove unneeded local entry-list.
6404         (diary-mark-entries-1): Fix position offsets in non-gregorian case.
6406         * calendar/holidays.el (list-holidays): Doc fix.
6408 2008-03-26  Jay Belanger  <jay.p.belanger@gmail.com>
6410         * calc/calc-store.el (calc-read-var-name-history): New variable.
6411         (calc-read-var-name): Use `calc-read-var-name-history'.
6413 2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6415         * image-mode.el (image-mode-reapply-winprops): Simplify now that
6416         window-configuration-change-hook works buffer-locally.
6418 2008-03-26  Johan BockgÃ¥rd  <bojohan@gnu.org>
6420         * emacs-lisp/lisp-mnt.el (lm-with-file): Use mode and syntax table
6421         for Emacs Lisp, not Lisp.
6423 2008-03-26  Juanma Barranquero  <lekktu@gmail.com>
6425         * help-fns.el (describe-function-1, describe-variable):
6426         If CURRENT-NAME is nil, don't end obsolescence info with semicolon.
6428         * emacs-lisp/bytecomp.el (byte-compile-obsolete): If no
6429         replacement is provided, don't print "use nil instead".
6431 2008-03-26  Johan BockgÃ¥rd  <bojohan@gnu.org>
6433         * complete.el (PC-do-completion): Use regexp-quote.
6435 2008-03-26  Dan Nicolaescu  <dann@ics.uci.edu>
6437         * vc-cvs.el (vc-cvs-parse-status, vc-cvs-after-dir-status):
6438         Detect missing files.
6440         * vc-git.el (vc-git-extra-menu-map): New key map.
6441         (vc-git-extra-menu, vc-git-extra-status-menu, vc-git-grep):
6442         New functions.
6444         * vc-hooks.el (vc-default-mode-line-string): Deal with 'removed
6445         and 'missing files.
6447 2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6449         * calendar/holidays.el (list-holidays): Make Y2 optional.
6451         * calendar/appt.el (appt-buffer-name): Don't use a leading space for
6452         buffers shown to the user.
6453         (appt-disp-window): Disable undo explicitly now that the leading space
6454         is gone.
6456         * simple.el (activate-mark): New function.
6457         (set-mark-command): Use it with region-active-p to clean up the code.
6458         (exchange-point-and-mark): Invert the meaning of C-u when
6459         transient-mark-mode is active.
6461         * dired-aux.el (dired-create-files): Use dolist.
6463         * bindings.el (mode-line-change-eol): Use with-selected-window.
6465         * apropos.el (apropos-command): Include macros.
6467 2008-03-26  Glenn Morris  <rgm@gnu.org>
6469         * calendar/cal-bahai.el: Require calendar, not cal-julian.
6470         (calendar-bahai-epoch): Doc fix.
6472         * calendar/cal-china.el: Explicitly require calendar.
6474         * calendar/cal-coptic.el, calendar/cal-islam.el, calendar/cal-persia.el:
6475         Require calendar rather than cal-julian.
6476         Autoload calendar-absolute-from-julian.
6477         * calendar/cal-coptic.el (coptic-calendar-epoch):
6478         * calendar/cal-islam.el (calendar-islamic-epoch):
6479         * calendar/cal-persia.el (persian-calendar-epoch): Set when compiling.
6481         * calendar/cal-islam.el (calendar-islamic-epoch): Doc fix.
6483         * calendar/cal-dst.el: Don't require cal-persia.
6484         (calendar-absolute-from-persian): Autoload it.
6485         (dst-adjust-time): Doc fix.
6487         * calendar/cal-menu.el (cal-menu-diary-menu): Remove menu headings that
6488         cause cal-bahai, cal-islam, cal-hebrew to be loaded on starting the
6489         calendar.
6491         * calendar/cal-menu.el: Require calendar rather than declaring
6492         functions.
6493         * calendar/calendar.el: Provide calendar before requiring cal-menu.
6495         * calendar/cal-x.el (calendar-after-frame-setup-hook): New name for
6496         calendar-after-frame-setup-hooks.  Update callers, make old name an
6497         obsolete alias.  Doc fix.
6498         (calendar-frame-1): Doc fix.
6500         * calendar/calendar.el (solar-holidays): Simplify holiday-sexp calls.
6502         * calendar/calendar.el (oriental-holidays, solar-holidays):
6503         * calendar/holidays.el (list-holidays): Assume atan always bound.
6505         * calendar/lunar.el, calendar/solar.el: Remove floating-point check.
6506         Explicitly require calendar, not cal-julian.
6507         * calendar/lunar.el: Explicitly require cal-dst.
6509 2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6511         * autorevert.el (auto-revert-buffers): Use buffer-live-p.
6513         * help-fns.el (describe-function-1, describe-variable): If no
6514         replacement is provided, don't print "use nil instead".
6516 2008-03-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
6518         * proced.el: New file.
6520 2008-03-25  Tetsurou Okazaki  <okazaki@be.to>  (tiny change)
6522         * emacs-lisp/byte-opt.el (side-effect-free-fns): Fix typo.
6524 2008-03-25  Juri Linkov  <juri@jurta.org>
6526         * battery.el: Add file cookie coding:iso-8859-1 for the degree sign
6527         in battery-mode-line-format.
6529         * bindings.el (minibuffer-local-map): For the command
6530         file-cache-minibuffer-complete replace keymap minibuffer-local-map
6531         with map which is already locally bound to minibuffer-local-map.
6533 2008-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6535         * subr.el (map-keymap-sorted): Rename from map-keymap-internal.
6536         Remove `sort-first' argument.
6538         * subr.el (redisplay-end-trigger-functions)
6539         (window-redisplay-end-trigger, set-window-redisplay-end-trigger)
6540         (process-filter-multibyte-p, set-process-filter-multibyte):
6541         Mark as obsolete.
6543 2008-03-25  Juanma Barranquero  <lekktu@gmail.com>
6545         * emacs-lisp/re-builder.el (reb-mode-common): Remove reference to
6546         bogus variable `reb-kill-buffer'; don't make hooks buffer-local,
6547         use the LOCAL arg of `add-hook'.
6548         (reb-blink-delay, reb-mode-hook, reb-re-syntax, reb-auto-match-limit):
6549         Remove spurious * from defcustom docstrings.
6550         (reb-next-match, reb-prev-match, reb-enter-subexp-mode):
6551         Fix typos in messages.
6552         (reb-mode-buffer-p): New function.
6553         (re-builder, reb-kill-buffer): Use `reb-mode-buffer-p'.  Use `when'.
6554         (top, reb-show-subexp, reb-auto-update, reb-delete-overlays)
6555         (reb-cook-regexp, reb-update-regexp, reb-update-overlays):
6556         Use `unless', `when'.
6557         (re-builder-unload-function): New function.
6559 2008-03-25  Dan Nicolaescu  <dann@ics.uci.edu>
6561         * vc-hooks.el (vc-state): Add documentation for 'missing.
6563 2008-03-25  Wilson Snyder  <wsnyder@wsnyder.org>
6565         * progmodes/verilog-mode.el (verilog-auto-output)
6566         (verilog-auto-input, verilog-auto-inout, verilog-auto)
6567         (verilog-delete-auto): Add optional regular expression to
6568         AUTOINPUT/AUTOOUTPUT/AUTOINOUT.
6569         (verilog-signals-matching-regexp): New internal function for
6570         signal matching.
6572 2008-03-25  Johan BockgÃ¥rd  <bojohan@gnu.org>
6574         * info.el (Info-isearch-search): Always return point.
6576 2008-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6578         * diff-mode.el (diff-remembered-defdir): New var.
6579         (diff-find-file-name): Use it to flush diff-remembered-files-alist.
6581 2008-03-25  Glenn Morris  <rgm@gnu.org>
6583         * calendar/cal-bahai.el (calendar-bahai-read-date): New name for
6584         calendar-bahai-prompt-for-date.  Update callers, make old name an
6585         obsolete alias.  Doc fix.
6586         * calendar/cal-coptic.el (calendar-coptic-read-date): New name for
6587         coptic-prompt-for-date.  Update callers, make old name an
6588         obsolete alias.  Doc fix.
6589         * calendar/cal-hebrew.el (calendar-hebrew-read-date): New name for
6590         calendar-hebrew-prompt-for-date.  Update callers.  Doc fix.
6591         * calendar/cal-islam.el (calendar-islamic-read-date): New name for
6592         calendar-islamic-prompt-for-date.  Update callers.  Doc fix.
6593         * calendar/cal-iso.el (calendar-iso-read-date): New name for
6594         calendar-iso-read-args.  Update callers, make old name an obsolete
6595         alias.
6596         * calendar/cal-persia.el (calendar-persian-read-date): New name for
6597         persian-prompt-for-date.  Update callers, make old name an
6598         obsolete alias.  Doc fix.  Move definition before use.
6600         * calendar/cal-x.el (diary-frame-parameters)
6601         (calendar-frame-parameters, calendar-and-diary-frame-parameters)
6602         (calendar-frame-1): Doc fixes.
6603         (make-fancy-diary-buffer): Remove declaration.
6604         (calendar-dedicate-diary): Replace call to deleted function
6605         make-fancy-diary-buffer.
6606         (calendar-frame-setup): New function.
6607         (calendar-one-frame-setup, calendar-only-one-frame-setup)
6608         (calendar-two-frame-setup): Call calendar-frame-setup to do the actual
6609         work, and mark as obsolete.
6610         (special-display-buffer-names): Don't mess with this; it's not our
6611         business.
6612         (cal-x-load-hook): Defvar it, and mark as obsolete.
6614         * calendar/calendar.el (calendar-remove-frame-by-deleting):
6615         Default to t.  Add to 'calendar group.
6616         (calendar): Doc fix.  Use calendar-frame-setup.
6617         (calendar-basic-setup): Doc fix.  Add optional NODISPLAY argument.
6618         (generate-calendar-window): Doc fix.
6620 2008-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6622         * vc-bzr.el (vc-bzr-print-log, vc-bzr-diff): Do it asynchronously.
6624 2008-03-24  Drew Adams  <drew.adams@oracle.com>
6626         * finder.el (finder-mode-syntax-table, finder-font-lock-keywords):
6627         New variables.
6628         (finder-mode): Use finder-mode-syntax-table.  Set font-lock-defaults.
6629         (finder-exit): Ignore errors rather than avoiding them.
6630         Kill *Finder-package* buffer also.
6632 2008-03-24  Andreas Schwab  <schwab@suse.de>
6634         * xt-mouse.el (xterm-mouse-event): Avoid error with buttons > 5.
6636 2008-03-24  Dan Nicolaescu  <dann@ics.uci.edu>
6638         * vc-hg.el (vc-hg-after-dir-status):
6639         * vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
6641         * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-parse-status):
6642         Detect removed files.
6644         * vc.el (vc-status-printer): Use a different face for missing files.
6645         (vc-status-hide-up-to-date): Rename from
6646         vc-status-remove-up-to-date.  Update all callers.
6647         (vc-status-mode-map): Bind C-m.
6649 2008-03-24  Alexandre Julliard  <julliard@winehq.org>
6651         * vc-git.el (vc-git-after-dir-status-stage1): Move state matching
6652         code ...
6653         (vc-git--state-code): ... to this new function.
6654         (vc-git-state): Use it.
6656 2008-03-24  Trent Buck  <trentbuck@gmail.com>  (tiny change)
6658         * textmodes/remember.el (remember-mail-date)
6659         (remember-store-in-mailbox): Write date and From line in such a
6660         way that Mutt can read it.
6662 2008-03-23  Chong Yidong  <cyd@stupidchicken.com>
6664         * simple.el (transient-mark-mode): Turn on by default.
6666 2008-03-23  Dan Nicolaescu  <dann@ics.uci.edu>
6668         * vc-bzr.el (vc-bzr-state): Return 'removed for removed files and
6669         'unregistered for unregistered files.
6671         * vc-hg.el (vc-hg-state): Return 'removed for removed files.
6673         * bindings.el (standard-mode-line-modes): Avoid duplicating a string.
6675         * vc-cvs.el (vc-cvs-parse-status): Note there are problems with
6676         subdirectories.
6678         * vc.el (vc-status-prepare-status-buffer): Fix thinko.
6679         (vc-status-menu-map): Add binding for vc-status-kill-dir-status-process.
6680         Add :enable for vc-status-refresh.
6681         (vc-status-menu-map-filter): Remove vc-ignore-menu-filter test.
6682         (vc-status-tool-bar-map): Add binding for
6683         vc-status-kill-dir-status-process.
6684         Don't test display-graphic-p and don't bind vc-ignore-menu-filter.
6685         (vc-update-vc-status-buffer, vc-status-kill-dir-status-process):
6686         Reset vc-status-process-buffer.
6687         (vc-status-refresh): Don't run two refreshes at a time.
6688         (vc-status): If the buffer is already in vc-status-mode only refresh.
6689         (vc-status-mark-buffer-changed): Add an optional file parameter.
6690         (vc-resynch-buffer): Use it.
6691         (vc-delete-file): Expand the file name before using it.
6692         Be careful to not create a new buffer with the old file contents.
6693         Update the VC state after performing the operation.
6695 2008-03-23  Andreas Schwab  <schwab@suse.de>
6697         * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]:
6698         Fix radio button condition.
6699         [box]: Likewise.
6700         [customize]: Add radio button.
6702 2008-03-23  Jay Belanger  <jay.p.belanger@gmail.com>
6704         * calc/calc.el (calc-was-keypad-mode, calc-full-mode)
6705         (calc-user-parse-tables, calc-gnuplot-default-device)
6706         (calc-gnuplot-default-output, calc-gnuplot-print-device)
6707         (calc-gnuplot-print-output, calc-gnuplot-geometry)
6708         (calc-graph-default-resolution, calc-graph-default-resolution-3d)
6709         (calc-invocation-macro, calc-trail-pointer, calc-trail-overlay)
6710         (calc-undo-list, calc-redo-list, calc-main-buffer)
6711         (calc-trail-buffer, calc-why, calc-last-kill, calc-dollar-values)
6712         (calc-dollar-used, calc-hashes-used, calc-quick-prev-results)
6713         (calc-said-hello, calc-executing-macro, calc-any-selections)
6714         (calc-help-phase, calc-full-help-flag, calc-refresh-count)
6715         (calc-display-dirty, calc-embedded-info, calc-embedded-active)
6716         (calc-standalone-flag, var-EvalRules, math-expr-function-mapping)
6717         (math-expr-variable-mapping, calc-mode-map, calc-digit-map)
6718         (calc-dispatch-map, calc-do-dispatch, calc-read-key-sequence)
6719         (calc-create-buffer, calc-quit): Add docstrings.
6721 2008-03-23  Juanma Barranquero  <lekktu@gmail.com>
6723         * makefile.w32-in (WINS_ALMOST): Add org.
6725 2008-03-23  Dan Nicolaescu  <dann@ics.uci.edu>
6727         * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
6728         New functions to implement vc-status support.
6730 2008-03-22  Dan Nicolaescu  <dann@ics.uci.edu>
6732         * vc.el (vc-status-prepare-status-buffer): New function.
6733         (vc-status): Use it.
6735         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add ... where
6736         appropriate.
6738 2008-03-22  Alexandre Julliard  <julliard@winehq.org>
6740         * vc-git.el (vc-git--empty-db-p)
6741         (vc-git-after-dir-status-stage1-empty-db): New functions.
6742         (vc-git-dir-status, vc-git-after-dir-status-stage1, vc-git-state):
6743         Add support for empty repositories.
6745 2008-03-22  Dan Nicolaescu  <dann@ics.uci.edu>
6747         * vc-git.el (vc-git-annotate-extract-revision-at-line):
6748         Allow "^" in a version name.
6750         * vc-mtn.el (vc-mtn-state): Support the added state.
6752 2008-03-22  Carsten Dominik  <dominik@science.uva.nl>
6754         * org: New directory for Org-mode.
6756         * org/org-export-latex.el: Moved from lisp/texmodes.
6758         * org/org-irc.el: Moved from lisp/texmodes.
6760         * org/org-mac-message.el: Moved from lisp/texmodes.
6762         * org/org-mouse.el: Moved from lisp/texmodes.
6764         * org/org-publish.el: Moved from lisp/texmodes.
6766 2008-03-21  Juri Linkov  <juri@jurta.org>
6768         * comint.el (comint-dynamic-simple-complete):
6769         Use variable `stub' for the second arg `common-substring'
6770         of `comint-dynamic-list-completions'.
6771         (comint-dynamic-list-filename-completions):
6772         Use variable `filenondir' for the second arg `common-substring'
6773         of `comint-dynamic-list-completions'.
6774         (comint-dynamic-list-completions): Add new optional arg
6775         `common-substring'.  Add `common-substring' as the second arg of
6776         the call to `display-completion-list'.  Doc fix.
6778         * comint.el (comint-dynamic-complete-as-filename)
6779         (comint-dynamic-list-filename-completions)
6780         (comint-dynamic-simple-complete): Use `minibuffer-message'
6781         to display message "No completions of %s" when a command
6782         is called in the minibuffer.
6783         (comint-dynamic-simple-complete): Don't display other
6784         completion messages when a command is called in the minibuffer.
6785         (comint-dynamic-list-completions): Use `minibuffer-message'
6786         to display message " [Type space to flush ...]" when a command
6787         is called in the minibuffer.
6789         * shell.el (shell-dynamic-complete-command)
6790         (shell-dynamic-complete-environment-variable): Don't display
6791         completion messages when command is called in the minibuffer.
6793         * emacs-lisp/lisp.el (lisp-complete-symbol):
6794         Use `minibuffer-message' to display message "No completions of %s"
6795         when this command is called in the minibuffer.
6797         * bindings.el (standard-mode-line-modes): Put special help-echo
6798         tooltip on recursive edit %[ %] mode-line constructs.
6800         * dabbrev.el (debug-ignored-errors): Remove $ from the end of
6801         "^No dynamic expansion for .* found$" to allow error messages like
6802         "No dynamic expansion for \"%s\" found in this-buffer".
6804 2008-03-21  Michael Albinus  <michael.albinus@gmx.de>
6806         * net/tramp.el (tramp-methods): Fix tramp-copy-args of "pscp" and
6807         "psftp".
6809 2008-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6811         * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
6812         * vc.el (vc-default-dired-state-info): Use just "modified".
6813         * vc-cvs.el (vc-cvs-state-heuristic): Turn rev 0 into `added'.
6814         (vc-cvs-mode-line-string): Make use of the better default.
6815         (vc-cvs-parse-entry): Use the new `added'.
6816         (vc-cvs-dired-state-info): Remove.
6817         * vc-svn.el (vc-svn-dired-state-info): Remove.
6818         * vc-hg.el (vc-hg-dired-state-info): Remove.
6819         * vc-git.el (vc-git-dired-state-info): Remove.
6821 2008-03-21  Dan Nicolaescu  <dann@ics.uci.edu>
6823         * vc-git.el (vc-git-status-result): New variable.
6824         (vc-git-dir-status): Split out ...
6825         (vc-git-after-dir-status-stage1, vc-git-after-dir-status-stage2):
6826         ... these new functions and work asynchronously.
6828 2008-03-21  Alexandre Julliard  <julliard@winehq.org>
6830         * vc-git.el (vc-git-after-dir-status): Remove.
6831         (vc-git-dired-state-info): Reimplement.
6833 2008-03-21  Dan Nicolaescu  <dann@ics.uci.edu>
6835         * replace.el (occur-mode-map): Add :help.
6837         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entry
6838         for disassemble.
6840         * vc.el (vc-status-mark-buffer-changed): Better deal with files in
6841         the 'added state.
6842         (vc-status-remove-up-to-date): New function.
6843         (vc-status-mode-map, vc-status-menu-map): Bind it.
6844         (vc-status-printer): Use a different face up-to-date files.
6845         (vc-resynch-buffer): Update the vc-status buffer if it exists.
6846         (Todo): Remove solved entries.
6848         * vc-hg.el (vc-hg-state):
6849         * vc-git.el (vc-git-state):
6850         * vc-cvs.el (vc-cvs-parse-status):
6851         * vc-bzr.el (vc-bzr-state): Return 'added when the file is in that
6852         state.
6854 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6856         * progmodes/compile.el (compile):
6857         * progmodes/grep.el (grep, grep-find): Use read-shell-command.
6859         * simple.el (minibuffer-local-shell-command-map): New var.
6860         (minibuffer-complete-shell-command, read-shell-command): New funs.
6861         (shell-command, shell-command-on-region): Use them.
6863 2008-03-20  Dan Nicolaescu  <dann@ics.uci.edu>
6865         * vc.el (vc-status-mark-buffer-changed): New function to implement
6866         updating of the *vc-status* buffer when a buffer is saved.
6867         (vc-status-mode): Use it for after-change-hook.
6868         (vc-add-to-vc-status-buffer): Rename to ...
6869         (vc-status-add-entry): ... this.
6870         (Todo): Add new entry.
6872 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6874         * sort.el (sort-reorder-buffer): Preserve the buffer's multibyteness.
6876 2008-03-20  Juanma Barranquero  <lekktu@gmail.com>
6878         * icomplete.el (icomplete-prospects-length, icomplete-max-delay-chars)
6879         (icomplete-show-key-bindings, icomplete-minibuffer-setup-hook):
6880         Remove spurious * from defcustom docstrings.
6881         (icomplete-compute-delay): Fix docstring and remove spurious *.
6882         (icomplete-delay-completions-threshold): Fix typo in docstring and
6883         remove spurious *.
6884         (icomplete-completions): While collecting the list of prospective
6885         candidates, don't overshoot `icomplete-prospects-length'.
6887 2008-03-20  Dan Nicolaescu  <dann@ics.uci.edu>
6889         * textmodes/refbib.el:
6890         * textmodes/reftex.el:
6891         * textmodes/reftex-global.el:
6892         * textmodes/reftex-vars.el:
6893         * textmodes/reftex-toc.el: Don't use eval-and-compile for byte
6894         compiler pacifying defvars.
6895         (reftex-toc-mode): Only make zmacs-regions local on XEmacs.
6896         * textmodes/reftex-index.el (zmacs-regions): Remove pacifier,
6897         not needed.
6899 2008-03-20  Wilson Snyder  <wsnyder@wsnyder.org>
6901         * progmodes/verilog-mode.el (verilog-easy-menu-filter): New function.
6902         (verilog-stmt-menu, verilog-menu): Add :help and filter it.
6903         (verilog-customize, verilog-font-customize)
6904         (electric-verilog-backward-sexp, electric-verilog-forward-sexp)
6905         (verilog-mode): Update documentation strings to match tool tips.
6906         (verilog-auto-search-do, verilog-auto-re-search-do)
6907         (verilog-skip-forward-comment-or-string): Fix verilog-auto
6908         expansion when a .* appears inside a string.
6909         (verilog-re-search-forward, verilog-re-search-backward):
6910         Add comment to recall how this works.
6911         (verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including genvars.
6913 2008-03-20  Glenn Morris  <rgm@gnu.org>
6915         * calendar/calendar.el (calendar-other-dates): New function.
6916         (calendar-print-other-dates): Use calendar-other-dates.
6917         * calendar/cal-menu.el (calendar-other-dates): Declare it, and removes
6918         the declarations it replaces.
6919         (calendar-mouse-print-dates): Use calendar-other-dates.
6921         * calendar/cal-bahai.el (calendar-bahai-leap-year-p)
6922         (calendar-bahai-leap-base, calendar-bahai-from-absolute): Doc fixes.
6923         (calendar-absolute-from-bahai): Fix the leap-year case.
6924         (calendar-bahai-from-absolute): Re-use the Gregorian month.
6925         (calendar-bahai-date-string, calendar-bahai-print-date):
6926         Handle pre-Bahai dates.
6928         * calendar/cal-china.el (chinese-calendar-celestial-stem)
6929         (chinese-calendar-terrestrial-branch): Make defcustoms.
6931         * calendar/cal-menu.el (calendar-mouse-holidays): Re-use the title.
6932         (calendar-mouse-view-diary-entries): Use or.
6933         (calendar-mouse-chinese-date): Remove unused command.
6934         (cal-menu-load-hook): Mark as obsolete.
6936         * calendar/solar.el (calendar-location-name, calendar-latitude)
6937         (calendar-longitude, solar-arctan, sunrise-sunset)
6938         (solar-mean-equinoxes/solstices): Use the appropriate equality test.
6940 2008-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
6942         * calc/calc.el: Remove outdated comments.
6943         (defcalcmodevar, calc-mode-var-list-restore-default-values)
6944         (calc-mode-var-list-restore-saved-values, calc-autorange-units):
6945         Add docstrings.
6947 2008-03-19  Jason Rumney  <jasonr@gnu.org>
6949         * w32-fns.el (x-alternatives-map): Add S-tab mapping.
6951 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
6953         * net/tls.el (open-tls-stream): Reindent.
6955 2008-03-19  Michael Albinus  <michael.albinus@gmx.de>
6957         * net/tramp.el (tramp-let-maybe): Removed.
6958         (tramp-drop-volume-letter): Don't use `replace-regexp-in-string'.
6959         It does not exist under XEmacs.
6960         (tramp-handle-file-truename, tramp-handle-expand-file-name)
6961         (tramp-completion-file-name-handler): Let-bind
6962         `directory-sep-char'.
6964         * net/tramp-fish.el (tramp-fish-handle-expand-file-name): Let-bind
6965         `directory-sep-char'.
6967 2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6969         * help-fns.el (describe-function-1): Don't signal "missing arglist"
6970         for autoloaded keymaps.
6972         * progmodes/verilog-mode.el (verilog-syntax-ppss): New function.
6973         (electric-verilog-terminate-line, verilog-in-struct-region-p)
6974         (verilog-backward-ws&directives, verilog-forward-ws&directives)
6975         (verilog-in-comment-p, verilog-in-star-comment-p)
6976         (verilog-in-slash-comment-p, verilog-skip-backward-comments)
6977         (verilog-parenthesis-depth, verilog-skip-backward-comment-or-string)
6978         (verilog-skip-forward-comment-or-string, verilog-in-paren)
6979         (verilog-skip-forward-comment-p): Use it.
6981 2008-03-19  Juanma Barranquero  <lekktu@gmail.com>
6983         * textmodes/org.el (org-link-store, org-link-follow, org-latex)
6984         (org-remember-templates, org-time-stamp-rounding-minutes)
6985         (org-back-over-empty-lines, org-find-base-buffer-visiting)
6986         (org-columns-new): Fix typos in docstrings.
6988 2008-03-19  Glenn Morris  <rgm@gnu.org>
6990         * net/tramp.el (tramp-drop-volume-letter): Evaluate when compiling.
6991         (tramp-handle-shell-command): Use condition-case rather than
6992         ignore-errors.
6994 2008-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
6996         * diff-mode.el (diff-header): Make the color louder.
6997         (diff-refine-change): Tone the color down.
6999 2008-03-19  Juanma Barranquero  <lekktu@gmail.com>
7001         * descr-text.el (describe-char): When `describe-char-unidata-list'
7002         is set to show all properties, list them in the right order.
7004 2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7006         * international/mule.el (load-with-code-conversion): Avoid setting
7007         default-enable-multibyte-characters.
7009 2008-03-19  Gustav HÃ¥llberg  <gustav@virtutech.com>  (tiny change)
7011         * vc.el (vc-annotate-background): Fix custom type.
7013 2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7015         * descr-text.el (describe-char-unidata-list): Allow specifying
7016         just all properties.
7017         (describe-char): Handle that new value.
7019         * emulation/cua-base.el (cua-paste): Signal an error in read-only buf.
7021 2008-03-18  Tassilo Horn  <tassilo@member.fsf.org>
7023         * doc-view.el (doc-view-initiate-display): Use doc-view-doc-type
7024         instead of file name extension to make docs with uncommon
7025         extensions work.
7027 2008-03-18  Tassilo Horn  <tassilo@member.fsf.org>
7029         * doc-view.el (require): Require cl at compile time because
7030         `assert' needs it.
7032 2008-03-18  Glenn Morris  <rgm@gnu.org>
7034         * calendar/calendar.el (initial-calendar-window-hook)
7035         (today-visible-calendar-hook): Doc fixes.
7037 2008-03-17  Michael Albinus  <michael.albinus@gmx.de>
7039         * net/tramp.el (tramp-root-regexp): Simplify.
7040         (tramp-completion-file-name-regexp-separate): Don't insist on
7041         leading "[".  This prevents method or user or host completion.
7042         (tramp-let-maybe): Autoload it.
7043         (tramp-drop-volume-letter): Don't autoload.  When not on W32, it
7044         is an alias for `identity'.
7045         (tramp-handle-write-region): Protect `last-coding-system-used'
7046         over the trailing statements.
7047         (tramp-completion-file-name-handler-post-function): Remove.
7048         (tramp-completion-file-name-handler): Let-bind `directory-sep-char'
7049         instead of calling `tramp-drop-volume-letter'.
7051         * net/tramp.el:
7052         * net/tramp-uu.el:
7053         * net/trampver.el: Move coding cookie at the end.
7055 2008-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7057         * net/tramp.el (tramp-completion-mode-p): Don't use char-equal for
7058         elements which may be something else than characters.
7060 2008-03-17  Dan Nicolaescu  <dann@ics.uci.edu>
7062         * vc-bzr.el (vc-bzr-dir-status, vc-bzr-after-dir-status):
7063         New functions to implement vc-status support.
7065         * vc.el (vc-default-extra-status-menu)
7066         (vc-add-to-vc-status-buffer): New functions.
7068         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
7069         for eldoc and ielm.
7071 2008-03-17  Glenn Morris  <rgm@gnu.org>
7073         * calendar/cal-x.el (diary-frame-parameters)
7074         (calendar-frame-parameters, calendar-and-diary-frame-parameters):
7075         Fix custom type; add options.
7076         (calendar-frame, diary-frame): Doc fixes.
7077         (calendar-dedicate-diary, calendar-frame-1): Extract common code into
7078         new functions.
7079         (calendar-one-frame-setup, calendar-two-frame-setup): Doc fixes.
7080         Use calendar-frame-1 and calendar-dedicate-diary.
7081         (calendar-one-frame-setup): Also handle only-one-frame case.
7082         (calendar-only-one-frame-setup): Doc fix.  Just call
7083         calendar-one-frame-setup.
7085         * calendar/diary-lib.el: Re-order some definitions before their use.
7086         (nongregorian-diary-listing-hook, nongregorian-diary-marking-hook)
7087         (diary-list-entries): Doc fixes.
7088         (make-fancy-diary-display): Remove function.
7090         * calendar/calendar.el (calendar-today-marker)
7091         (initial-calendar-window-hook, today-visible-calendar-hook)
7092         (today-invisible-calendar-hook, diary-file, calendar-basic-setup)
7093         (calendar-star-date, calendar-mark-today): Doc fixes.
7094         (today-visible-calendar-hook): Add options.
7095         (calendar-in-read-only-buffer): New macro.
7096         (calendar-basic-setup): Adapt for change in calendar-read-date.
7097         Place holiday let inside if.
7098         (calendar-day-name-array, calendar-month-name-array): Make defcustoms.
7099         (calendar-read-date): Set day to 1 rather than nil in the NODAY case.
7100         (calendar-print-other-dates): Use one let rather than many.
7102         * calendar/calendar.el (calendar-in-read-only-buffer): New macro.
7103         (calendar-print-other-dates):
7104         * calendar/cal-hebrew.el (list-yahrzeit-dates):
7105         * calendar/diary-lib.el (simple-diary-display, fancy-diary-display):
7106         * calendar/holidays.el (calendar-list-holidays, list-holidays)
7107         (calendar-cursor-holidays):
7108         * calendar/lunar.el (calendar-phases-of-moon): Use
7109         calendar-in-read-only-buffer to replace previous code and disable undo.
7111 2008-03-16  Juri Linkov  <juri@jurta.org>
7113         * isearch.el (isearch-edit-string): Use search-ring-yank-pointer
7114         and regexp-search-ring-yank-pointer for the HISTPOS argument of
7115         read-from-minibuffer to provide the correct initial minibuffer
7116         history position in isearch-edit-string when it is called from
7117         isearch-ring-adjust.
7119         * menu-bar.el (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
7120         to check if the current buffer is the minibuffer, and in this case
7121         call abort-recursive-edit to kill the minibuffer.  Doc fix.
7122         (kill-this-buffer-enabled-p): Allow this function to return non-nil
7123         when the current buffer is the minibuffer.
7125         * simple.el (goto-line): Leave mark at previous position.  Doc fix.
7127 2008-03-16  Tassilo Horn  <tassilo@member.fsf.org>
7129         * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
7130         Use non-nil PARENTS attribute of make-directory instead of
7131         explicitly checking existence the current cache directory.
7133 2008-03-16  Daiki Ueno  <ueno@unixuser.org>
7135         * epa-file.el (epa-file-select-keys): Fix bug with C-x C-s after
7136         M-x epa-file-select-keys.
7138 2008-03-16  Kenichi Handa  <handa@m17n.org>
7140         * international/mule.el (auto-coding-alist):
7141         Use no-conversion-multibyte for archive files.
7143 2008-03-16  Glenn Morris  <rgm@gnu.org>
7145         * calendar/diary-lib.el (calendar-mark-complex, calendar-mark-1):
7146         New functions.
7147         * calendar/cal-bahai.el (calendar-mark-1): Autoload it.
7148         (calendar-bahai-mark-date-pattern): Add optional argument `color'.
7149         Use calendar-mark-1.
7150         * calendar/cal-hebrew.el (calendar-mark-complex): Autoload it.
7151         (mark-hebrew-calendar-date-pattern): Add optional argument `color'.
7152         Use calendar-mark-complex.
7153         * calendar/cal-islam.el (calendar-mark-1): Autoload it.
7154         (mark-islamic-calendar-date-pattern): Add optional argument `color'.
7155         Use calendar-mark-1.
7157         * calendar/calendar.el (calendar-mod): Remove.
7158         * calendar/cal-china.el (calendar-chinese-from-absolute)
7159         (calendar-chinese-date-string): Expand calendar-mod calls.
7160         * calendar/cal-mayan.el (calendar-mayan-tzolkin-from-absolute):
7161         Expand calendar-mod calls.
7163         * calendar/cal-bahai.el (calendar-bahai-date-string): Use a single let.
7164         (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
7165         (diary-bahai-insert-yearly-entry): Use let rather than let*.
7166         Move obsolete aliases after the functions that replaced them.
7168         * calendar/cal-hebrew.el (calendar-absolute-from-hebrew)
7169         (hebrew-calendar-yahrzeit, insert-hebrew-diary-entry)
7170         (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry):
7171         Use let rather than let*.
7172         (calendar-hebrew-prompt-for-date): New function.
7173         (calendar-goto-hebrew-date): Use calendar-hebrew-prompt-for-date.
7174         (holiday-tisha-b-av-etc): Use unless, let.
7176         * calendar/cal-islam.el (calendar-islamic-prompt-for-date): New func.
7177         (calendar-goto-islamic-date): Use calendar-islamic-prompt-for-date.
7179         * calendar/cal-mayan.el (calendar-mayan-haab-to-string): Simplify.
7181         * calendar/calendar.el (calendar-for-loop): Add indent spec.
7183         * calendar/diary-lib.el (diary-remind-message, mark-sexp-diary-entries)
7184         (list-sexp-diary-entries, diary-font-lock-sexps): Use format rather
7185         than concat.
7186         (diary): Remove un-needed let.
7187         (view-other-diary-entries): Rename argument.
7188         (diary-list-entries-2): New function.
7189         (diary-list-entries-1, diary-list-entries): Use diary-list-entries-2.
7190         (print-diary-entries): Use unless.
7191         (diary-mark-entries-1): Change argument order, make all but
7192         markfunc optional.  Handle the standard (Gregorian) case.
7193         Use match-string-no-properties.  Handle marks.
7194         (mark-diary-entries): Use diary-mark-entries-1.
7195         (diary-font-lock-keywords-1): New macro.
7196         (diary-font-lock-keywords): Use diary-font-lock-keywords-1.
7198 2008-03-16  Ulf Jasper  <ulf.jasper@web.de>
7200         * icalendar.el (icalendar-version): Increase to 0.18.
7201         (icalendar-export-hidden-diary-entries): New variable.
7202         (icalendar-export-region): Use icalendar-export-hidden-diary-entries.
7203         In case of error, insert full error-val.
7204         (icalendar-first-weekday-of-year): Remove `offset' argument.  Doc fix.
7205         Use calendar-day-of-week.  Return the day number.
7206         (icalendar--convert-weekly-to-ical): Use funcall rather than apply.
7208 2008-03-16  Craig Markwardt  <Craig.Markwardt@nasa.gov>
7210         * icalendar.el (icalendar-recurring-start-year): New variable.
7211         (icalendar--diarytime-to-isotime): Fix treatment of 12:00pm - 12:59pm.
7212         (icalendar-export-region): Ignore hidden diary entries.
7213         (icalendar--convert-ordinary-to-ical): Fix case where event
7214         spans across midnight boundary.
7215         (icalendar-first-weekday-of-year): New function.
7216         (icalendar--convert-weekly-to-ical): Allow user-selectable start
7217         year for recurring events (Mozilla calendars do not propagate
7218         recurring events forever, so year 2000 start date was not working).
7219         (icalendar--convert-yearly-to-ical): Remove extra spaces in
7220         formatting of BYMONTH and BYMONTHDAY (not allowed by ical spec).
7222 2008-03-15  Michael Albinus  <michael.albinus@gmx.de>
7224         * net/tramp.el (tramp-root-regexp): New defconst.
7225         (tramp-completion-file-name-regexp-unified)
7226         (tramp-completion-file-name-regexp-separate)
7227         (tramp-completion-file-name-regexp-url): Use it.
7228         (tramp-do-copy-or-rename-file-via-buffer):
7229         Set `enable-multibyte-characters' to nil.  Set `jka-compr-inhibit' to
7230         t for `insert-file-contents-literally'.
7231         (tramp-drop-volume-letter): Rewrite, using `tramp-root-regexp'.
7232         Autoload it.
7233         (tramp-completion-file-name-handler-post-function): New defconst.
7234         (tramp-completion-file-name-handler): Use it.
7235         (tramp-maybe-open-connection): Update calls to
7236         `tramp-flush-connection-property' for removed 2nd argument.
7238 2008-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7240         * vc-bzr.el (vc-bzr-diff): Use a faster invocation when possible.
7241         (vc-bzr-complete-with-prefix, vc-bzr-revision-completion-table):
7242         New functions.
7244 2008-03-15  Glenn Morris  <rgm@gnu.org>
7246         * calendar/diary-lib.el (diary-list-entries-1, diary-mark-entries-1):
7247         New functions.
7248         * calendar/cal-bahai.el (number, original-date, add-to-diary-list)
7249         (diary-name-pattern, mark-calendar-days-named): Remove declarations.
7250         (diary-list-entries-1, diary-mark-entries-1): Autoload.
7251         (diary-bahai-list-entries): Use diary-list-entries-1.
7252         (diary-bahai-mark-entries): Doc fix.  Use diary-mark-entries-1.
7253         * calendar/cal-hebrew.el (number, original-date, add-to-diary-list)
7254         (diary-name-pattern, mark-calendar-days-named): Remove declarations.
7255         (diary-list-entries-1, diary-mark-entries-1): Autoload.
7256         (list-hebrew-diary-entries): Use diary-list-entries-1.
7257         (mark-hebrew-diary-entries): Doc fix.  Use diary-mark-entries-1.
7258         * calendar/cal-islam.el (number, original-date, add-to-diary-list)
7259         (diary-name-pattern, mark-calendar-days-named): Remove declarations.
7260         (diary-list-entries-1, diary-mark-entries-1): Autoload.
7261         (list-islamic-diary-entries): Use diary-list-entries-1.
7262         (mark-islamic-diary-entries): Doc fix.  Use diary-mark-entries-1.
7264         * calendar/appt.el (appt-check, appt-delete, appt-make-list): Use caar.
7266         * calendar/cal-bahai.el (calendar-bahai-epoch): Doc fix.
7268         * calendar/cal-china.el (number-chinese-months)
7269         (calendar-chinese-from-absolute): Use nth, caar.
7271         * calendar/cal-coptic.el (coptic-calendar-epoch): Doc fix.
7273         * calendar/cal-french.el (french-calendar-accents): Doc fix.
7275         * calendar/cal-hebrew.el (calendar-hebrew-month-name-array-common-year)
7276         (calendar-hebrew-month-name-array-leap-year)
7277         (hebrew-calendar-parashiot-names): Make constants.
7278         (diary-parasha): Move definition after constants it uses.
7280         * calendar/cal-html.el (cal-html-insert-link-yearpage)
7281         (cal-html-htmlify-list): Doc fix.
7282         (cal-html-htmlify-entry): Use nth.
7284         * calendar/cal-islam.el (calendar-islamic-month-name-array)
7285         (calendar-islamic-epoch): Make constants.
7286         (calendar-islamic-epoch): Doc fix.
7288         * calendar/cal-menu.el (cal-menu-goto-menu): Use "Go To".
7290         * calendar/cal-tex.el (cal-tex-hook, cal-tex-insert-preamble)
7291         (cal-tex-month-name): Doc fix.
7292         (cal-tex-last-blank-p): Use zerop.
7294         * calendar/calendar.el (european-calendar-style, calendar-for-loop)
7295         (calendar-sum, calendar-insert-indented, mouse-calendar-other-month)
7296         (calendar-cursor-to-date): Doc fix.
7297         (hebrew-holidays-1, hebrew-holidays-4): Simplify.
7298         (extract-calendar-day, extract-calendar-year): Use cadr, nth.
7299         (calendar-day-number): Use when.
7300         (generate-calendar-month): Use dotimes.
7301         (exit-calendar, calendar-print-other-dates): Use let rather than let*.
7302         (calendar-set-mark): Reverse conditional.
7303         (calendar-make-alist): Move definition before use.
7305         * calendar/diary-lib.el (diary-face-attrs)
7306         (diary-glob-file-regexp-prefix, diary-selective-display)
7307         (number-of-diary-entries, diary-list-entries, diary-goto-entry)
7308         (list-sexp-diary-entries, diary-date, diary-block, diary-float)
7309         (diary-anniversary, diary-cyclic)
7310         (diary-fancy-font-lock-fontify-region-function): Doc fixes.
7311         (diary-header-line-format): Change wording.
7312         (diary-list-entries): Set `date-start' in let.
7313         (include-other-diary-files, mark-included-diary-files): Use format.
7314         (simple-diary-display, fancy-diary-display): Use cadr, unless.
7315         (mark-diary-entries): Use 1+.
7316         (mark-sexp-diary-entries, list-sexp-diary-entries): Use when.
7317         (mark-calendar-month): Use dotimes.
7319         * calendar/holidays.el (displayed-month, displayed-year):
7320         Move declarations where needed.
7321         (calendar-list-holidays): Doc fix.
7323         * calendar/parse-time.el (parse-time-string): Simplify.
7325         * calendar/solar.el (solar-n-hemi-seasons, solar-s-hemi-seasons):
7326         Make constants.
7327         (solar-sunrise-sunset): Rename some local variables for clarity.
7328         (sunrise-sunset): Use zerop.
7329         (solar-mean-equinoxes/solstices): Doc fix.
7331         * calendar/timeclock.el (timeclock-time-to-seconds, timeclock-log-data):
7332         Use nth.
7333         (timeclock-completing-read, timeclock-generate-report): Use zerop.
7334         (timeclock-mean, timeclock-generate-report): Use dolist.
7336         * calendar/todo-mode.el (todo-add-category): Simplify.
7337         (todo-more-important-p, todo-delete-item, todo-file-item):
7338         Use unless, when.
7339         (todo-top-priorities): Use zerop.
7341 2008-03-14  Nick Roberts  <nickrob@snap.net.nz>
7343         * buff-menu.el (list-buffers-noselect): Display buffer name in
7344         tooltip instead of mouse binding when it doesn't fit in the list.
7346 2008-03-14  Dan Nicolaescu  <dann@ics.uci.edu>
7348         * faces.el (xw-defined-colors):
7349         * simple.el (widget-convert, shell-mode): Declare as functions
7350         instead of autoloading.
7352         * abbrev.el:
7353         * button.el:
7354         * cus-face.el:
7355         * ediff-hook.el:
7356         * emacs-lisp/backquote.el:
7357         * emacs-lisp/timer.el:
7358         * facemenu.el:
7359         * faces.el:
7360         * menu-bar.el:
7361         * simple.el:
7362         * subr.el:
7363         * textmodes/fill.el:
7364         * textmodes/paragraphs.el: Remove autoloads, redundant when the
7365         files are preloaded.
7367 2008-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7369         * desktop.el (desktop-create-buffer): Don't catch errors if
7370         debug-on-error is set.
7372 2008-03-14  Eli Zaretskii  <eliz@gnu.org>
7374         * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
7375         ($(lisp)/calendar/diary-loaddefs.el)
7376         ($(lisp)/calendar/hol-loaddefs.el): New targets.
7377         (LOADDEFS): New macro.
7378         (autoloads): Depend on $(LOADDEFS).
7380 2008-03-14  Dan Nicolaescu  <dann@ics.uci.edu>
7382         * font-lock.el (featurep): Remove test, not useful anymore.
7383         (facemenu-keymap): Move key binding ...
7384         * facemenu.el (facemenu-keymap): ... here.
7386         * vc-bzr.el (vc-bzr-print-log): Insert a file marker.  Run the log
7387         for each file in the list.
7388         (vc-bzr-log-view-mode): Recognize the file marker.
7390         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
7391         for checkdoc and profiling.
7393 2008-03-14  Bastien Guerry  <bzg@altern.org>
7395         * textmodes/flyspell.el (nxml-mode): Add the right
7396         `flyspell-mode-predicate'.
7398         * wid-edit.el (link): Use 'mouse-face for :follow-link.
7400 2008-03-14  Glenn Morris  <rgm@gnu.org>
7402         * calendar/solar.el: Reorder so that functions are defined before use.
7403         (displayed-month, displayed-year): Move declarations where needed.
7404         (solar-get-number): Move definition before use.  Use unless.
7405         (solar-equatorial-coordinates): Simplify.
7406         (solar-sunrise-and-sunset): Use let rather than let*.
7407         (solar-longitude, solar-equinoxes-solstices): Use cadr, nth.
7409         * startup.el (command-line-1): Rename -internal-script back to
7410         -scriptload (reverts previous change).
7412         * calendar/cal-bahai.el (calendar-bahai-month-name-array)
7413         (calendar-bahai-leap-base): Add doc strings.
7414         (calendar-bahai-prompt-for-date, calendar-bahai-mark-date-pattern):
7415         Move definition before use.
7416         (calendar-bahai-goto-date, diary-bahai-list-entries): Doc fix.
7417         (diary-bahai-list-entries, diary-bahai-mark-entries): Move some constant
7418         variables outside the loop.  Use dolist.
7419         (holiday-bahai, calendar-bahai-mark-date-pattern): Use unless.
7421         * calendar/cal-china.el: Re-order so that functions are defined before
7422         use.
7423         (displayed-month, displayed-year): Move declarations where needed.
7424         (chinese-calendar-time-zone, calendar-goto-chinese-date): Doc fix.
7425         (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
7426         Add doc strings.
7427         (chinese-year-cache): Recenter on 2010.  Doc fix.
7428         (chinese-year, number-chinese-months, calendar-absolute-from-chinese):
7429         Doc fix.  Simplify.
7430         (chinese-year-cache-init): New function.
7431         (compute-chinese-year, holiday-chinese-new-year)
7432         (calendar-chinese-date-string, calendar-goto-chinese-date)
7433         (make-chinese-month-assoc-list): Use cadr, nth.
7434         (chinese-months): Remove un-needed let.
7436         * calendar/cal-coptic.el (coptic-calendar-month-name-array)
7437         (ethiopic-calendar-month-name-array, ethiopic-name): Add doc strings.
7438         (coptic-prompt-for-date): Move definition before use.
7440         * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
7441         (calendar-dst-find-data, calendar-daylight-time-offset)
7442         (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
7443         (calendar-daylight-savings-starts-time)
7444         (calendar-daylight-savings-ends-time): Use cadr, nth.
7446         * calendar/cal-french.el (french-calendar-epoch)
7447         (calendar-goto-french-date): Doc fix.
7448         (french-calendar-month-name-array)
7449         (french-calendar-multibyte-month-name-array)
7450         (french-calendar-day-name-array, french-calendar-special-days-array):
7451         Add doc strings.
7453         * calendar/cal-hebrew.el (displayed-month, displayed-year)
7454         (original-date): Move declarations where needed.
7455         (calendar-goto-hebrew-date, list-hebrew-diary-entries, diary-yahrzeit):
7456         Doc fix.
7457         (list-hebrew-diary-entries, mark-hebrew-diary-entries): Move some
7458         constant variables outside the loop.  Use dolist.
7460         * calendar/cal-islam.el (displayed-month, displayed-year)
7461         (original-date): Move declarations where needed.
7462         (islamic-calendar-day-number): Remove unused local variable `day'.
7463         (calendar-goto-islamic-date): Doc fix.
7464         (holiday-islamic): Use unless.
7465         (list-islamic-diary-entries, mark-islamic-diary-entries): Move some
7466         constant variables outside the loop.  Use dolist.
7467         (mark-islamic-calendar-date-pattern): Move definition before use.
7468         Use unless.
7469         (mark-islamic-diary-entries): Doc fix.
7470         (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
7471         (insert-yearly-islamic-diary-entry): Use let rather than let*.
7473         * calendar/cal-julian.el (calendar-absolute-from-julian):
7474         Move definition before use.  Remove un-needed local `day'.
7475         (calendar-goto-julian-date, calendar-goto-astro-day-number): Doc fix.
7477         * calendar/cal-mayan.el (calendar-mayan-haab-month-name-array)
7478         (calendar-mayan-tzolkin-names-array): Add doc strings.
7479         (calendar-mayan-long-count-from-absolute): Use a single let.
7480         (calendar-string-to-mayan-long-count): Simplify.
7481         (calendar-next-haab-date, calendar-previous-haab-date)
7482         (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
7483         (calendar-previous-calendar-round-date)
7484         (calendar-goto-mayan-long-count-date, calendar-mayan-date-string):
7485         Doc fix.
7486         (calendar-mayan-tzolkin-haab-on-or-before): Use zerop.
7487         (calendar-mayan-date-string, calendar-print-mayan-date)
7488         (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
7489         (calendar-mayan-long-count-common-era): Move definitions before use.
7491         * calendar/cal-menu.el (displayed-year): Move declaration where needed.
7492         (calendar-event-to-date, cal-tex-mouse-week, cal-tex-mouse-week-iso):
7493         Doc fix.
7494         (calendar-mouse-goto-date): Move definition before use.
7496         * calendar/cal-move.el (calendar-cursor-to-nearest-date): Use or, when.
7497         Move definition before use.
7498         (calendar-cursor-to-visible-date): Move definition before use.
7499         (calendar-scroll-left): Use unless and zerop.  Combine lets into one,
7500         and place inside the conditional.
7501         (calendar-forward-day): Simplify.
7502         (calendar-end-of-month): Use unless.
7503         (calendar-goto-day-of-year): Doc fix.
7504         Relocate obsolete aliases after their replacements.
7506         * calendar/cal-persia.el (calendar-goto-persian-date): Doc fix.
7508         * calendar/diary-lib.el (mark-diary-entries): Move some constant
7509         variables outside the diary-date-forms loop.
7511         * calendar/calendar.el (diary-file): Doc fix.
7512         (calendar-buffer-list): Return buffers rather than strings (fixes
7513         previous change).
7514         (hebrew-holidays-4): Fix typo.
7516         * calendar/holidays.el (displayed-month, displayed-year):
7517         Move declarations where needed.
7518         (calendar-holiday-list, calendar-list-holidays)
7519         (holiday-filter-visible-calendar): Move definitions before use.
7520         (list-holidays): Use cadr.
7521         Relocate obsolete aliases after their replacements.
7523         * calendar/lunar.el (date, displayed-month, displayed-year):
7524         Move declarations where needed.
7525         (lunar-phase-list): Move definition after functions it uses.
7526         (calendar-phases-of-moon, diary-phases-of-moon)
7527         (lunar-new-moon-on-or-after): Use cadr, nth.
7528         (lunar-new-moon-on-or-after): Doc fix.
7530         * textmodes/org-irc.el (top-level): CL not required when compiling.
7531         (org-irc-visit-erc): Replace runtime CL functions.
7533         * textmodes/org-publish.el (declare-function): Add compatibility stub.
7534         (org-publish-delete-dups): Declare as function.
7536 2008-03-14  Dan Nicolaescu  <dann@ics.uci.edu>
7538         * vc-bzr.el (vc-bzr-log-view-mode): "." can be part of a revno.
7539         (vc-bzr-show-log-entry): Make regexp match more cases.
7540         (vc-diff-switches-list): Remove autoload, not needed.
7542 2008-03-14  Juri Linkov  <juri@jurta.org>
7544         * isearch.el (isearch-edit-string): Remove one call to
7545         `isearch-push-state' not to push an inconsistent state,
7546         but keep another correct call to `isearch-push-state'.
7547         (isearch-ring-adjust): Call `isearch-push-state' only when
7548         `search-ring-update' is non-nil since `isearch-edit-string'
7549         already pushes its state.
7550         (isearch-message): Improve matching the failed part by checking
7551         if the original message starts with the last successful message.
7553         * dired.el (dired-warn-writable): Rename to `dired-perm-write'.
7554         (dired-perm-write): Rename from `dired-warn-writable'.
7555         Change parent face from `font-lock-warning-face' to
7556         `font-lock-comment-delimiter-face'.
7557         (dired-warn-writable-face): Rename to `dired-perm-write-face'.
7558         (dired-perm-write-face): Rename from `dired-warn-writable-face'.
7559         (dired-font-lock-keywords): Replace `dired-warn-writable-face'
7560         with `dired-perm-write-face'.
7562 2008-03-13  Tassilo Horn  <tassilo@member.fsf.org>
7564         * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
7565         Create cache dir only if it doesn't already exist.
7567 2008-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7569         * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Fix handling
7570         of \ and '.
7572 2008-03-13  Johan BockgÃ¥rd  <bojohan@gnu.org>
7574         * net/browse-url.el (browse-url-text-xterm):
7575         Unquote browse-url-text-browser.
7577 2008-03-13  Carsten Dominik  <dominik@science.uva.nl>
7579         * textmodes/org-mouse.el: Version number change.
7581         * textmodes/org-publish.el (org-publish-expand-components):
7582         Remove null projects from the list of components.
7583         (org-publish-attachment): Bugfix: handle mandatory argument pub-dir.
7584         Remove unused retrieval of the :publishing-directory property.
7585         (org-publish-file): Bugfix: when using a relative directory as the
7586         publishing directory, convert it to a directory filename.
7587         (org-publish-project): New alias.
7588         (org-publish-get-files): Protect against empty p.
7589         (org-publish-file): Send an error when file is not part of any project.
7590         (org-publish-file): Offer to refresh the list of files in known
7591         project when the current file is not part of any project.
7592         (org-publish-before-export-hook)
7593         (org-publish-after-export-hook): New hooks.
7594         (org-publish-org-to): Use new hooks and kill buffers.
7595         (org-publish-file): Remove the code for killing buffers.
7596         (org-publish-initialize-files-alist): Use interactive.
7597         (org-publish-file): If the publishing function creates a new
7598         buffer, kill it after publishing.
7599         (org-publish-timestamp-filename): Protect ":" in file name path
7600         under windows.
7602         * textmodes/org-export-latex.el (org-export-as-latex): Revert the
7603         change that killed the LaTeX buffer.
7605         * textmodes/org.el (org-ctrl-c-star): Implement a missing branch
7606         in the decision tree.
7607         (org-select-remember-template): Clean the code.
7608         (org-prepare-dblock): Add the extra :content parameter.
7609         (org-write-agenda): New output type ".ics" files.
7610         (org-write-agenda): Call `org-icalendar-verify-function', both for
7611         time stamps and for TODO entries.
7612         (org-agenda-collect-markers, org-create-marker-find-array)
7613         (org-check-agenda-marker-table): New functions.
7614         (org-agenda-marker-table): New variable.
7615         (org-export-as-html): Revert the change that killed the html
7616         buffer.  Side effects first need to be studied carefully.
7617         (org-get-tags-at): Fix the structure of the condition-case statement.
7618         (org-ts-regexp0, org-repeat-re, org-display-custom-time)
7619         (org-timestamp-change): Fix regulear expressions to swallow the
7620         extra character for repeat-shift control.
7621         (org-auto-repeat-maybe): Implement the new repeater mechanisms.
7622         (org-get-legal-level): Alias to `org-get-valid-level'.
7623         (org-dblock-write:clocktable): Add a :link parameter, linking
7624         headlines to their location in the Org agenda files.
7625         (org-get-tags-at): Bugfix: prevent `org-back-to-heading' from
7626         throwing an error when getting tags before headlines.
7627         (org-timestamp-change, org-modify-ts-extra)
7628         (org-ts-regexp1): Fix timestamp editing.
7629         (org-agenda-custom-commands-local-options): New constant.
7630         (org-agenda-custom-commands):
7631         Use `org-agenda-custom-commands-local-options' to improve customize
7632         type.  "htmlize": Removed hack to fix face problem with htmlize,
7633         it no longer seem necessary.
7634         (org-follow-link-hook): New hook.
7635         (org-agenda-custom-commands): Add "Component" as a tag for each
7636         item in a command serie.
7637         (org-open-at-point): Run `org-follow-link-hook'.
7638         (org-agenda-schedule): Bugfix: don't display marker type when it
7639         is nil.
7640         (org-store-link): org-irc required.
7641         (org-set-regexps-and-options): Parse the new logging options.
7642         (org-extract-log-state-settings): New function.
7643         (org-todo): Handle the new ways of recording state change stuff.
7644         (org-local-logging): New function.
7645         (org-columns-open-link): Fix bug with opening link in column view.
7646         (org-local-logging): New function.
7647         (org-todo): Make sure that LOGGING properties are honoured.
7648         (org-todo-keywords): Improve docstring.
7649         (org-startup-options): Cleanup startup options.
7650         (org-set-regexps-and-options): Process the "!" markers.
7651         (org-todo): Respect the new logging stuff.
7652         (org-log-note-how): New variable.
7653         (org-add-log-maybe): New parameter HOW that defines how logging
7654         should be done and also overrides PURPOSE.  Add a docstring.
7655         (org-add-log-note): Check if we really need to ask for a note.
7656         (org-get-current-options): Digest the new keyword.
7657         (org-agenda-reset-markers): Rename from
7658         `org-agenda-maybe-reset-markers'.  Remove FORCE argument.
7659         (org-diary, org-agenda-quit, org-prepare-agenda): Call the renamed
7660         function, without force argument.
7661         (org-buffer-property-keys): Bind local variables s and p.
7662         (org-make-tags-matcher): Allow "" to match an empty or
7663         non-existent property value.
7664         (org-export-as-html): Join unsorted lists when they directly
7665         follow each other.  Such lists may be created by headlines that
7666         are converted to lists.
7667         (org-nofm-to-completion): New function.
7668         (org-export-as-html): Use :html-extension instead of
7669         org-export-html-extension.
7670         (org-store-link): Support for links from `rmail-summary-mode'.
7671         (org-columns-new, org-complete, org-set-property): Set the
7672         `include-columns' argument in the call to
7673         `org-buffer-property-keys'.
7674         (org-buffer-property-keys): New argument `include-columns', to
7675         include properties expected by any of the COLUMS formats in the
7676         current buffer.
7677         (org-cleaned-string-for-export): Get rid of drawers first, so that
7678         they will be removed also in the text before the first headline.
7679         (org-clock-report): Show the clocktable when found.
7680         (org-refile): Fix positioning bug when `org-reverse-note-order' is nil.
7681         (org-version): With prefix argument, insert `org-version' at point.
7682         (org-agenda-goto): Recenter the window after finding the target
7683         location, to make sure the correct position will be displayed.
7684         (org-agenda-get-deadlines): Don't scale priority with the warning
7685         period.
7686         (org-insert-heading): Don't break line in the middle of the line.
7687         (org-agenda-get-deadlines): Allow `org-deadline-warning-days' to
7688         be 0.
7689         (org-update-checkbox-count): Revamp to deal with hierarchical
7690         beckboxes.  This was a patch from Miguel A. Figueroa-Villanueva.
7691         (org-remove-timestamp-with-keyword): New function.
7692         (org-schedule, org-deadline):
7693         Use `org-remove-timestamp-with-keyword' to make sure all such time
7694         stamps are removed.
7695         (org-mode): Support for `align'.
7696         (org-agenda-get-deadlines): Make sure priorities increase as the
7697         due date approaches and is passed.
7698         (org-remember-apply-template): Fix problem with tags that
7699         contain "_" or "@".
7700         (org-make-link-regexps): Improve the regular expression for plain links.
7701         (org-agenda-get-closed): List each clocking entry.
7702         (org-set-tags): Only tabify before tags if indent-tabs-mode is t.
7703         (org-special-ctrl-k): New option.
7704         (org-kill-line): New function.
7705         (org-archive-all-done): Fix incorrect number of stars in regexp.
7706         (org-refile-get-location): New function.
7707         (org-refile-goto-last-stored): New function.
7708         (org-global-tags-completion-table): Add the value of org-tag-alist
7709         in each buffer, to make sure that also unused tags will be
7710         available for completion.
7711         (org-columns-edit-value)
7712         (org-columns-next-allowed-value): Only update if not in agenda.
7713         (org-clocktable-steps): New function.
7714         (org-dblock-write:clocktable): Call `org-clocktable-steps'.
7715         (org-archive-subtree): Add the outline tree context as a property.
7716         (org-closest-date): New optional argument `prefer'.
7717         (org-goto-auto-isearch): New option.
7718         (org-goto-map, org-get-location): Implement auto-isearch.
7719         (org-goto-local-auto-isearch-map): New variable.
7720         (org-goto-local-search-forward-headings)
7721         (org-goto-local-auto-isearch): New functions.
7723 2008-03-13  Philip Jackson  <emacs@shellarchive.co.uk>
7725         * textmodes/org-irc.el: New file.
7727 2008-03-13  John Wiegley  <johnw@gnu.org>
7729         * textmodes/org-mac-message.el: New file.
7731 2008-03-13  Dan Nicolaescu  <dann@ics.uci.edu>
7733         * font-lock.el (font-lock-comment-face): Set the foreground for
7734         the light background 8 colors case.
7736 2008-03-13  Glenn Morris  <rgm@gnu.org>
7738         * font-lock.el (lisp-font-lock-keywords-1): Support wider range of
7739         generate-autoload-cookie patterns.
7741         * startup.el (command-line-1): Rename -scriptload to -internal-script.
7743         * Makefile.in ($(lisp)/loaddefs.el): Remove this target.
7744         (MH_E_SRC): Remove variable.
7745         ($(lisp)/mh-e/mh-loaddefs.el): Remove $MH_E_SRC dependency.
7746         Simplify file header.  Use $@ for generated-autoload-file.
7748         * Makefile.in (LOADDEFS): New variable.
7749         (AUTOGENEL): Use $LOADDEFS.
7750         (autoloads): Remove $(lisp)/loaddefs.el dependency; add $LOADDEFS.
7751         ($(lisp)/calendar/cal-loaddefs.el, $(lisp)/calendar/diary-loaddefs.el)
7752         ($(lisp)/calendar/hol-loaddefs.el): New targets.
7753         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
7754         * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-html.el:
7755         * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
7756         * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
7757         * calendar/cal-tex.el, calendar/cal-x.el, calendar/diary-lib.el:
7758         * calendar/holidays.el, calendar/lunar.el, calendar/solar.el:
7759         Add calendar-specific autoload cookies, and remove any setting of
7760         generated-autoload-file.
7761         * calendar/calendar.el: Remove explicit autoloads now in cal-loaddefs.
7762         * calendar/diary-lib.el: Replace explicit autoloads with reading of
7763         diary-loaddefs.
7764         * calendar/holidays.el: Replace explicit autoloads with reading of
7765         hol-loaddefs.
7767         * calendar/calendar.el (cal-hebrew-yahrzeit-buffer): New constant.
7768         (calendar-buffer-list): Simplify.
7769         (generate-calendar-window): Use calendar-mark-holidays rather than
7770         obsolete alias.
7772         * calendar/cal-hebrew.el (list-yahrzeit-dates):
7773         Use cal-hebrew-yahrzeit-buffer.
7775         * calendar/cal-x.el (calendar-only-one-frame-setup)
7776         (calendar-two-frame-setup): Doc fixes.
7777         (special-display-buffer-names): Use cal-hebrew-yahrzeit-buffer.
7779         * calendar/appt.el (appt-mode-string): Mark as risky.
7780         (appt-check): Apply mode-line-emphasis face to appt-mode-string.
7782         * calendar/cal-html.el (diary-list-entries):
7783         * calendar/cal-tex.el (calendar-holiday-list, diary-list-entries)
7784         (calendar-iso-from-absolute): Fix autoloads.
7786         * calendar/cal-iso.el (calendar-absolute-from-iso)
7787         (calendar-iso-read-args): Simplify.
7788         (calendar-iso-date-string, calendar-iso-read-args)
7789         (calendar-goto-iso-date, calendar-goto-iso-week): Doc fixes.
7791         * calendar/cal-julian.el (calendar-julian-from-absolute): Use zerop.
7792         (displayed-month, displayed-year): Move declarations where needed.
7793         (calendar-print-astro-day-number): Doc fix.
7795         * calendar/cal-persia.el (persian-calendar-month-name-array)
7796         (persian-calendar-epoch, calendar-persian-date-string): Doc fixes.
7797         (persian-prompt-for-date): Remove local variable `today'.
7799         * calendar/diary-lib.el (mark-calendar-month): Use zerop.
7801         * calendar/solar.el (solar-moment, solar-exact-local-noon)
7802         (solar-sunrise-sunset, solar-sunrise-sunset-string)
7803         (solar-ephemeris-time, solar-date-next-longitude, solar-sidereal-time)
7804         (diary-sabbath-candles, solar-equinoxes/solstices)
7805         (solar-equinoxes-solstices): Use cadr, cdar, nth, zerop.
7806         (solar-time-equation, solar-date-to-et): Simplify.
7808         * mail/supercite.el: Remove the `function' in `(function (lambda'.
7809         Replace `(car (cdr' with cadr'.
7811         * progmodes/f90.el (f90-font-lock-n): New function.
7812         (f90-font-lock-1, f90-font-lock-2, f90-font-lock-3, f90-font-lock-4):
7813         Use f90-font-lock-n.
7814         (f90-indent-region, f90-indent-subprogram, f90-match-end): Use cadr.
7816         * progmodes/f90.el (f90-mode-abbrev-table):
7817         * progmodes/fortran.el (fortran-mode-abbrev-table):
7818         Use newer form of define-abbrev, where supported.  No need to bind
7819         abbrevs-changed for system abbrevs.
7821 2008-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7823         * term/xterm.el (terminal-init-xterm): delete-frame-hook ->
7824         delete-frame-functions.
7826         * bookmark.el (Info-current-node): Remove.
7828 2008-03-12  Juri Linkov  <juri@jurta.org>
7830         * help.el (describe-project): Remove defaliases for view-todo and
7831         describe-project that are now unnecessary after the merge from
7832         emacs--rel--22 that added define-obsolete-function-alias.
7834         * startup.el (inhibit-startup-screen): Revert incomplete
7835         2008-03-10 merge from emacs--rel--22 that partly reverted
7836         2008-02-28 change that added initial message to *scratch* buffer
7837         regardless of the value of `inhibit-startup-screen'.
7838         Now keep this change in the trunk, but not in the 22 branch.
7840 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7842         * international/quail.el (quail-setup-completion-buf, quail-help):
7843         * mail/binhex.el (binhex-decode-region-internal):
7844         * mail/uudecode.el (uudecode-decode-region-internal):
7845         * net/dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
7846         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
7847         setting default-enable-multibyte-characters.
7849         * emulation/viper-util.el (viper-file-remote-p): Remove, unused.
7851         * comint.el: Fix up indentation and comment style.  Remove `function'.
7853         * international/mule-cmds.el (reset-language-environment)
7854         (set-language-environment-nonascii-translation):
7855         Don't set-unibyte-charset.
7857         * doc-view.el: Remove all cb-args, use closures instead.
7858         (doc-view-sentinel): Merge doc-view-dvi->pdf-sentinel,
7859         doc-view-ps->pdf-sentinel, and doc-view-pdf->txt-sentinel (which was
7860         doing an incorrect check).  Update all callers to use the new name.
7861         (doc-view-doc->txt): Add missing `txt' argument.
7863 2008-03-12  Tassilo Horn  <tassilo@member.fsf.org>
7865         * doc-view.el (doc-view-current-cache-dir): Set buffer used for
7866         md5 sum calculation to single-byte.
7868 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7870         * doc-view.el (doc-view-new-window-function): Add assertion.
7871         (doc-view-doc-type): New var.
7872         (doc-view-convert-current-doc, doc-view-doc->txt): Use it.
7873         (doc-view-intersection): New fun.
7874         (doc-view-mode): Use it to set the new var.
7876 2008-03-12  Tassilo Horn  <tassilo@member.fsf.org>
7878         * doc-view.el (doc-view-doc->txt, doc-view-open-text)
7879         (doc-view-already-converted-p): New functions.
7880         (doc-view-clear-cache): Don't recreate doc-view-cache-directory.
7881         (doc-view-mode-map): Bind C-c C-t to doc-view-open-text.
7882         (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
7883         (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
7884         (doc-view-ps->pdf-sentinel, doc-view-ps->pdf)
7885         (doc-view-convert-current-doc): Don't hardwire the functions the
7886         sentinels call.  Now they're provided by two args CALLBACK and
7887         CB-ARGS to the functions.
7888         (doc-view-search): Use doc-view-doc->txt.
7889         (doc-view-initiate-display): Use doc-view-already-converted-p.
7890         Mention new binding C-c C-t if doc-view-mode doesn't work.
7892 2008-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
7894         * diff-mode.el (diff-refine-change): Adjust colors to be more visible.
7896 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7898         * textmodes/sgml-mode.el (sgml-font-lock-syntactic-keywords):
7899         Mark " outside of tags as punctuation.
7901 2008-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7903         * menu-bar.el (minibuffer-local-map): Use the same command for the
7904         "Quit" menu as used for the C-g key, so the shortcut displayed is C-g.
7905         Prefer RET over C-j for exit-minibuffer.
7907         * files.el (display-buffer-other-frame): Eliminate problematic code.
7909         * menu-bar.el (menu-bar-update-buffers-maxbuf): Remove.
7910         (menu-bar-select-buffer): Remove.
7911         (menu-bar-select-frame): Make non-interactive and take a frame arg.
7912         (menu-bar-update-buffers): Don't use buffer-names or frame names as events.
7914 2008-03-11  Juanma Barranquero  <lekktu@gmail.com>
7916         * icomplete.el (icomplete-completions): Remove obsolete code.
7918         * net/net-utils.el (iwconfig-program-options): Doc fix.
7919         (net-utils-run-program, run-network-program): Define as functions.
7921 2008-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
7923         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Fix typo.
7925 2008-03-11  Glenn Morris  <rgm@gnu.org>
7927         * faces.el (mode-line-emphasis): New face.
7928         * vc.el (vc-set-mode-line-busy-indicator): Use mode-line-emphasis face.
7930         * calendar/calendar.el (top-level): Load cal-loaddefs when compiling.
7932 2008-03-11  Chong Yidong  <cyd@stupidchicken.com>
7934         * simple.el (set-mark-command): Doc fix.
7936 2008-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7938         * Makefile.in (bootstrap-prepare): Don't chmod cal-loaddefs.el.
7940         * emacs-lisp/autoload.el (autoload-find-destination):
7941         Don't force raw-text.
7943         * calendar/calendar.el ("cal-loaddefs"): Load, rather than require.
7944         * calendar/cal-loaddefs.el: Don't version control.
7946 2008-03-10  Dan Nicolaescu  <dann@ics.uci.edu>
7948         * progmodes/make-mode.el (makefile-mode-abbrev-table): Add menu
7949         entries and add :help to the existing ones.
7951 2008-03-10  Glenn Morris  <rgm@gnu.org>
7953         * calendar/cal-hebrew.el (date, entry, number): Move declarations
7954         to where they are needed.
7956         * calendar/calendar.el (diary-file, hebrew-holidays-1)
7957         (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
7958         (calendar, calendar-basic-setup, calendar-mode-map, calendar-set-mark)
7959         (calendar-version): Doc fixes.
7960         (calendar-absolute-from-gregorian): Use zerop.
7961         (calendar-mode-line-format): Make it a defcustom.
7963         * calendar/diary-lib.el (diary-face-attrs): Fix custom :type.
7964         (diary-face-attrs, diary-glob-file-regexp-prefix, diary-unknown-time)
7965         (diary-pull-attrs, diary-header-line-flag, diary-list-entries)
7966         (diary-unhide-everything, include-other-diary-files, diary-goto-entry)
7967         (mark-included-diary-files, mark-calendar-days-named)
7968         (mark-calendar-date-pattern, mark-calendar-month, diary-entry-compare)
7969         (diary-remind, insert-diary-entry, insert-weekly-diary-entry)
7970         (insert-monthly-diary-entry, insert-yearly-diary-entry)
7971         (insert-anniversary-diary-entry, insert-block-diary-entry)
7972         (insert-cyclic-diary-entry, fancy-diary-font-lock-keywords)
7973         (diary-font-lock-sexps): Doc fixes.
7974         (diary-remind-message, mark-calendar-month): Use zerop.
7975         (diary-attrtype-convert, diary-pull-attrs): Simplify.
7976         (diary-list-entries): Revert let to let* (previous change).
7978         * Makefile.in (bootstrap-prepare): Also chmod cal-loaddefs.el.
7980 2008-03-10  Kim F. Storm  <storm@cua.dk>
7982         * help.el (view-emacs-todo, describe-gnu-project): Define obsolete
7983         function aliases for the old names.
7985 2008-03-10  Juanma Barranquero  <lekktu@gmail.com>
7987         * iswitchb.el (iswitchb-use-faces): Doc fix.
7988         (iswitchb-buffer-ignore, iswitchb-read-buffer):
7989         Fix typos in docstrings.
7991 2008-03-10  Dan Nicolaescu  <dann@ics.uci.edu>
7993         * progmodes/verilog-mode.el (verilog-highlight-grouping-keywords):
7994         Fix typo.
7995         (verilog-type-font-keywords): Reindent.
7997 2008-03-10  Michael McNamara  <mac@mail.brushroad.com>
7999         * verilog-mode.el (verilog-font-grouping-keywords): Fix bug in the
8000         grouping-keyword regular expression.
8001         (verilog-font-lock-keywords): Allow users to toggle special
8002         highlight of grouping-keywords.
8003         (verilog-highlight-grouping-keywords): The toggle for special
8004         highlighting of grouping keywords.
8006 2008-03-10  Juri Linkov  <juri@jurta.org>
8008         * startup.el: Revert 2008-02-28 change that adds initial message
8009         to *scratch* buffer regardless of the value of
8010         `inhibit-startup-screen'.
8012 2008-03-10  Dan Nicolaescu  <dann@ics.uci.edu>
8014         * textmodes/css-mode.el (css-indent-offset, css-electric-keys):
8015         * textmodes/bibtex-style.el (bibtex-style-indent-basic):
8016         * progmodes/verilog-mode.el (verilog-mode):
8017         * net/socks.el (socks):
8018         * vc-mtn.el (vc-mtn-mode-line-rewrite): Add :version.
8020 2008-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8022         * doc-view.el (bookmark-buffer-file-name, bookmark-prop-get): Declare.
8023         (doc-view-bookmark-make-record): Use them.
8024         (doc-view-bookmark-jump): Use them.  Fix find-file ->find-file-noselect.
8025         (bookmark-get-filename, bookmark-get-bookmark-record): Remove.
8027         * bookmark.el (bookmark-make-record-function): Change expected return
8028         value to include a suggested bookmark name.
8029         (bookmark-make): Split into bookmark-make-record and bookmark-store.
8030         Fix reversed `overwrite' semantics.
8031         (bookmark-set): Call bookmark-make-record before prompting the user.
8032         Then pass the result to bookmark-store later on.
8033         (bookmark-make-name-function): Remove.
8034         (bookmark-buffer-file-name, bookmark-buffer-name): Don't use it.
8035         * info.el (bookmark-make-name-function): Remove.
8036         (Info-mode): Don't set it.
8037         (Info-bookmark-make-name): Remove.
8038         (Info-bookmark-make-record): Use Info-current-node as suggested default
8039         bookmark name.
8041         * bookmark.el (bookmark-set): Make bookmark before reading annotations.
8042         I.e. use bookmark-edit-annotation rather than bookmark-read-annotation.
8043         (bookmark-read-annotation-mode-map, bookmark-annotation-paragraph)
8044         (bookmark-annotation-buffer, bookmark-annotation-file)
8045         (bookmark-annotation-point, bookmark-send-annotation)
8046         (bookmark-read-annotation-mode, bookmark-read-annotation): Remove.
8047         (bookmark-edit-annotation-text-func): Rename from
8048         bookmark-read-annotation-text-func.  Keep old name as an obsolete alias.
8049         (bookmark-edit-annotation-mode-map): Move initialization into
8050         declaration.
8052         * bookmark.el: Remove spurious * in docstrings.
8053         (bookmark-minibuffer-read-name-map): New var.
8054         (bookmark-set): Use it.  Also pass the default value as it should.
8055         (bookmark-send-edited-annotation): Take no chances with text properties.
8056         (bookmark-insert-current-bookmark): Inline bookmark-insert-buffer-name.
8057         (bookmark-insert-buffer-name): Remove.
8058         (bookmark-buffer-file-name): Signal an error rather than returning nil.
8060 2008-03-09  Thomas Hühn  <xf27@arcor.de>  (tiny change)
8062         * tutorial.el (tutorial--default-keys): Update `C-l' binding.
8064 2008-03-09  Dan Nicolaescu  <dann@ics.uci.edu>
8066         * diff-mode.el (diff-mode-menu): Add :help.
8068 2008-03-09  Glenn Morris  <rgm@gnu.org>
8070         * calendar/calendar.el (general-holidays, oriental-holidays)
8071         (local-holidays, other-holidays, hebrew-holidays-1, hebrew-holidays-2)
8072         (hebrew-holidays-3, hebrew-holidays-4, hebrew-holidays)
8073         (christian-holidays, islamic-holidays, bahai-holidays, solar-holidays)
8074         (calendar-holidays): Restore autoload cookies, because people are
8075         used to using these variables without loading calendar.el.
8077         * calendar/cal-islam.el (diary-islamic-date): Move to end.
8078         (date, number): Declare where needed.
8080         * calendar/diary-lib.el (nongregorian-diary-marking-hook)
8081         (list-sexp-diary-entries): Doc fixes.
8082         (diary-list-entries): Doc fix.  Remove free variable `entry'.
8083         (fancy-diary-display): Use dolist, bobp.  Remove free variable `entry'.
8084         Simplify setting of `date-holiday-list'.
8085         (mark-diary-entries): Remove free variable `entry'.
8086         (diary-list-entries, include-other-diary-files, fancy-diary-display):
8087         Use let where let* is not needed.
8089 2008-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8091         * bookmark.el (bookmark-make): Don't pass the `annotation' to the
8092         make-record function, instead paste it in afterwards.
8093         (bookmark-make-record-for-text-file):
8094         * doc-view.el (doc-view-bookmark-make-record):
8095         * info.el (Info-bookmark-make-record): Don't mess with annotations.
8097 2008-03-08  Glenn Morris  <rgm@gnu.org>
8099         * calendar/diary-lib.el (entry): Declare for compiler part-way through.
8101 2008-03-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8103         * calendar/diary-lib.el (diary-list-entries)
8104         (include-other-diary-files, mark-diary-entries)
8105         (mark-sexp-diary-entries, mark-included-diary-files)
8106         (diary-entry-time, list-sexp-diary-entries): Remove the special
8107         handling of ^M that dates back to the use of selective-display.
8108         (simple-diary-display): Obey setting of pop-up-frames.
8109         (body, entry): Remove unnecessary declarations.
8111         * bookmark.el (bookmark-prop-get, bookmark-prop-set): New funs.
8112         (bookmark-get-annotation, bookmark-set-annotation)
8113         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
8114         (bookmark-set-position, bookmark-get-front-context-string)
8115         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
8116         (bookmark-set-rear-context-string, bookmark-get-handler): Use them.
8117         * info.el (Info-bookmark-make-record): Don't bother recording point.
8118         (bookmark-get-filename, bookmark-get-front-context-string)
8119         (bookmark-get-rear-context-string, bookmark-get-position):
8120         Don't declare any more.
8121         (bookmark-get-info-node): Remove.
8122         (bookmark-prop-get): Declare.
8123         (Info-bookmark-jump): Use it.
8125 2008-03-08  Johan BockgÃ¥rd  <bojohan@gnu.org>
8127         * subr.el (while-no-input): Don't splice BODY directly into the
8128         `or' form.
8130 2008-03-08  Dan Nicolaescu  <dann@ics.uci.edu>
8132         * diff-mode.el (diff-ignore-whitespace-hunk):
8133         Bind inhibit-read-only before trying to change the buffer.
8135 2008-03-08  Glenn Morris  <rgm@gnu.org>
8137         * calendar/appt.el (appt): Move custom group here from calendar.el.
8138         (appt-disp-window, appt-convert-time): Doc fixes.
8140         * calendar/cal-bahai.el (calendar-bahai-prompt-for-date)
8141         (calendar-bahai-mark-date-pattern):
8142         * calendar/cal-hebrew.el (mark-hebrew-calendar-date-pattern):
8143         * calendar/cal-islam.el (mark-islamic-calendar-date-pattern):
8144         * calendar/cal-julian.el (calendar-absolute-from-julian):
8145         * calendar/cal-persia.el (persian-prompt-for-date): Use zerop.
8147         * calendar/cal-china.el (chinese-calendar): Move custom group here from
8148         calendar.el.
8149         (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
8150         Make constants.
8151         (chinese-calendar-time-zone, chinese-calendar-daylight-time-offset)
8152         (chinese-calendar-daylight-savings-starts)
8153         (chinese-calendar-daylight-savings-ends)
8154         (chinese-calendar-daylight-savings-starts-time)
8155         (chinese-calendar-daylight-savings-ends-time)
8156         (chinese-zodiac-sign-on-or-after, chinese-new-moon-on-or-after):
8157         Doc fixes.
8159         * calendar/cal-coptic.el (coptic-name): Add doc string.
8161         * calendar/cal-french.el (french-calendar-month-name-array)
8162         (french-calendar-day-name-array, french-calendar-special-days-array):
8163         Add doc strings.
8165         * calendar/cal-bahai.el (diary-bahai-mark-entries)
8166         (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
8167         (diary-bahai-insert-yearly-entry):
8168         * calendar/cal-dst.el (calendar-next-time-zone-transition)
8169         (calendar-time-zone):
8170         * calendar/cal-hebrew.el (hebrew-calendar-leap-year-p)
8171         (hebrew-calendar-elapsed-days, hebrew-calendar-long-heshvan-p)
8172         (hebrew-calendar-short-kislev-p, mark-hebrew-diary-entries)
8173         (insert-hebrew-diary-entry, insert-monthly-hebrew-diary-entry)
8174         (insert-yearly-hebrew-diary-entry, diary-yahrzeit):
8175         * calendar/cal-islam.el (islamic-calendar-leap-year-p)
8176         (list-islamic-diary-entries, mark-islamic-diary-entries)
8177         (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
8178         (insert-yearly-islamic-diary-entry):
8179         * calendar/cal-iso.el (calendar-iso-read-args):
8180         * calendar/cal-mayan.el (calendar-string-to-mayan-long-count)
8181         (calendar-mayan-haab-to-string, calendar-mayan-tzolkin-to-string)
8182         (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
8183         (calendar-next-calendar-round-date)
8184         (calendar-mayan-long-count-common-era):
8185         * calendar/cal-menu.el (cal-menu-holiday-window-suffix)
8186         (cal-menu-x-popup-menu, calendar-mouse-holidays)
8187         (calendar-mouse-view-diary-entries, calendar-mouse-print-dates)
8188         (calendar-mouse-goto-date):
8189         * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
8190         * calendar/holidays.el (holidays):
8191         * calendar/lunar.el (phases-of-moon, lunar-new-moon-on-or-after):
8192         * calendar/time-date.el (date-to-time, time-subtract, time-add)
8193         (safe-date-to-time): Doc fixes.
8195         * calendar/cal-persia.el (persian-calendar-month-name-array)
8196         (persian-calendar-epoch): Make constants.
8198         * calendar/cal-tex.el (calendar-tex): Move custom group here from
8199         calendar.el.
8201         * calendar/cal-x.el (diary-frame-parameters)
8202         (calendar-frame-parameters, calendar-and-diary-frame-parameters)
8203         (calendar-after-frame-setup-hooks): Make defcustoms.
8204         (calendar-one-frame-setup, calendar-only-one-frame-setup)
8205         (calendar-two-frame-setup): Doc fix.
8207         * calendar/cal-loaddefs.el: New file.
8209         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
8210         * calendar/cal-french.el, calendar/cal-html.el:
8211         * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
8212         * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
8213         * calendar/cal-tex.el, calendar/cal-x.el:
8214         Unquote lambda functions.  Add autoload cookies to functions formerly
8215         autoloaded in calendar.el.  Set `generated-autoload-file' to
8216         "cal-loaddefs.el".
8218         * calendar/calendar.el: Move many autoloads to separate file,
8219         cal-loaddefs.el.  Move defcustoms to start and re-order.
8220         (calendar-month-name-array, calendar-starred-day): No need to
8221         declare for compiler.
8222         (cal-loaddefs): Require it.
8223         (appt, chinese-calendar, calendar-tex): Move custom groups to the
8224         appropriate file.
8225         (diary-entry-marker, calendar-today-marker, calendar-holiday-marker):
8226         Reverse logic.
8227         (diary-face, diary-file-name-prefix-function, diary-include-string)
8228         (diary-glob-file-regexp-prefix, diary-face-attrs)
8229         (diary-file-name-prefix, sexp-diary-entry-symbol)
8230         (print-diary-entries-hook, list-diary-entries-hook)
8231         (nongregorian-diary-listing-hook, mark-diary-entries-hook)
8232         (nongregorian-diary-marking-hook, diary-list-include-blanks):
8233         Move to diary-lib.
8234         (all-christian-calendar-holidays, all-islamic-calendar-holidays)
8235         (all-bahai-calendar-holidays): Doc fix.
8236         (calendar-insert-indented): Doc fix.  Use when rather than if.
8237         (exit-calendar): Use mapc rather than mapcar.
8238         (calendar-cursor-to-date): Use zerop.
8239         (calendar-mark-ring): Add doc-string.
8240         (calendar-starred-day): Defvar it.
8241         (calendar-mode): Make calendar-starred-day local.
8242         (calendar-star-date): No need to make calendar-starred-day local.
8244         * calendar/diary-lib.el: Move defcustoms to start.
8245         (diary-include-string, diary-list-include-blanks)
8246         (diary-glob-file-regexp-prefix, diary-face, diary-face-attrs)
8247         (diary-file-name-prefix, diary-file-name-prefix-function)
8248         (sexp-diary-entry-symbol, list-diary-entries-hook)
8249         (mark-diary-entries-hook, nongregorian-diary-listing-hook)
8250         (nongregorian-diary-marking-hook, print-diary-entries-hook):
8251         Move here from calendar.el.
8252         (diary-file-name-prefix-function): Use 'identity.
8253         (diary-face): Make it a defcustom, and mark as obsolete.
8254         (top-level): No need to require cal-hebrew, cal-islam when compiling.
8255         (calendar-hebrew-month-name-array-leap-year)
8256         (calendar-islamic-month-name-array, calendar-bahai-month-name-array):
8257         Define for compiler.
8258         (diary-font-lock-keywords): Use format rather than concat.
8259         Add bahai-diary-entry-symbol.
8261         * calendar/cal-hebrew.el, calendar/holidays.el, calendar/lunar.el:
8262         * calendar/solar.el: Unquote lambda functions.
8264         * calendar/solar.el (calendar-location-name, calendar-latitude)
8265         (calendar-longitude, solar-setup, solar-sin-degrees)
8266         (solar-cosine-degrees, solar-tangent-degrees, solar-xy-to-quadrant)
8267         (solar-degrees-to-quadrant, solar-atn2, solar-arccos)
8268         (solar-sunrise-and-sunset, solar-moment, solar-daylight)
8269         (solar-exact-local-noon, solar-julian-ut-centuries)
8270         (solar-ephemeris-time, solar-date-next-longitude)
8271         (solar-horizontal-coordinates, solar-equatorial-coordinates)
8272         (solar-ecliptic-coordinates, solar-data-list, solar-longitude)
8273         (solar-ephemeris-correction, solar-sidereal-time, solar-date-to-et)
8274         (sunrise-sunset, solar-seasons-data, solar-equinoxes/solstices):
8275         Doc fixes.
8276         (solar-horizontal-coordinates, solar-equatorial-coordinates)
8277         (solar-ecliptic-coordinates): Rename argument `for-sunrise-sunset'.
8278         (solar-ecliptic-coordinates): Use unless.
8279         (calendar-sunrise-sunset, diary-sunrise-sunset, diary-sabbath-candles):
8280         Use or.
8282         * calendar/timeclock.el: Add doc-strings to all functions.
8283         (timeclock-workday, timeclock-in, timeclock-completing-read): Doc fixes.
8284         (timeclock-entry-list-length, timeclock-entry-list-projects)
8285         (timeclock-day-list-projects, timeclock-day-list): Use dolist.
8287         * calendar/todo-mode.el: Remove un-needed eval-when-compile.
8289         * textmodes/org.el (list-diary-entries-hook): Declare for compiler.
8290         (org-get-entries-from-diary): Require diary-lib.
8292 2008-03-08  Juanma Barranquero  <lekktu@gmail.com>
8294         * info.el (bookmark-make-name-function, bookmark-get-bookmark-record):
8295         Pacify byte-compiler.
8297 2008-03-07  Alan Mackenzie  <acm@muc.de>
8299         * progmodes/cc-engine.el (c-in-knr-argdecl): Limit number of
8300         paren/bracket pairs parsed, to solve performance problem.
8302 2008-03-07  Bastien Guerry  <bzg@altern.org>
8304         * bookmark.el (bookmark-set): Don't check for
8305         `bookmark-make-name-function' since `bookmark-buffer-file-name'
8306         already takes care of this.
8307         (bookmark-buffer-name, bookmark-buffer-file-name):
8308         Remove Info-mode specific code.
8310         * info.el (bookmark-get-info-node): Define this function in
8311         info.el, not in bookmark.el.
8312         (Info-mode): Set `bookmark-make-name-function' to
8313         `Info-bookmark-make-name' locally.
8314         (Info-bookmark-make-name): New function.
8316         * bookmark.el (bookmark-make-name-function): New variable.
8318 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
8320         * bookmark.el (bookmark-set): Make `bookmark-make-record-function'
8321         buffer-local, not `bookmark-make-cell-function' (the old name).
8323 2008-03-07  Tassilo Horn  <tassilo@member.fsf.org>
8325         * doc-view.el (doc-view-bookmark-make-record):
8326         * image-mode.el (image-bookmark-make-record):
8327         * info.el (Info-bookmark-make-record): Delete obsolete second arg.
8329 2008-03-07  Jan Djärv  <jan.h.d@swipnet.se>
8331         * vc.el (vc-status-menu-map-filter): Return orig-binding if
8332         boundp 'vc-ignore-menu-filter.
8333         (vc-status-tool-bar-map): Make it defvar.
8334         (vc-status-mode): vc-status-tool-bar-map now variable.
8335         (vc-status-toggle-mark): toggle-mark-file => vc-status-toggle-mark-file.
8337 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
8339         Give a better name to part of the bookmark interface.
8341         This was originally a much larger change, but halfway through I
8342         updated and discovered that Stefan Monnier had done the rest.
8343         It looks like he anticipated the new name too, because he used
8344         `the-record' instead of `the-cell' for some internal variable names.
8346         * bookmark.el (bookmark-make-record-function): Was
8347         `bookmark-make-cell-function'.
8348         (bookmark-make, bookmark-send-annotation): Update for above.
8349         (bookmark-make-record-for-text-file):
8350         Was `bookmark-make-cell-for-text-file'.  Fix doc string re 2008-03-07T05:00:18Z!monnier@iro.umontreal.ca.
8352         * info.el: Adjust accordingly.
8353         (Info-bookmark-make-record): Was `Info-bookmark-make-cell'.
8355         * image-mode.el: Adjust accordingly.
8356         (image-bookmark-make-record): Was `image-bookmark-make-cell'.
8358         * doc-view.el: Adjust accordingly.
8359         (doc-view-bookmark-make-record): Was `doc-view-bookmark-make-cell'.
8361 2008-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8363         * bookmark.el (bookmark-map, bookmark-read-annotation-mode-map):
8364         Move initialization into declaration.
8365         (bookmark-get-info-node, bookmark-set-info-node): Remove.
8366         (bookmark-make, bookmark-make-cell-for-text-file): Remove info-node arg.
8367         (bookmark-info-current-node): Remove.
8368         (bookmark-jump-noselect): Rename from bookmark-jump-internal.
8369         Add relocation fallback.  Set bookmark-current-bookmark.
8370         (bookmark-default-handler): Rename from bookmark-jump-noselect.
8371         Remove relocation fallback.  Don't set bookmark-current-bookmark.
8372         (bookmark-set): Let it be used even if there's no buffer-file-name
8373         as long as there is a bookmark-make-cell-function.
8374         * info.el (Info-bookmark-jump): Remove relocation fallback.
8375         Don't set bookmark-current-bookmark.
8377 2008-03-07  Glenn Morris  <rgm@gnu.org>
8379         * calendar/appt.el (appt-issue-message)
8380         (appt-message-warning-time, appt-audible, appt-visible)
8381         (appt-msg-window, appt-display-mode-line, appt-display-duration)
8382         (appt-display-diary): Remove autoload cookies.
8384         * calendar/cal-china.el, calendar/timeclock.el, calendar/todo-mode.el:
8385         Remove leading `*' from defcustom doc-strings.
8387         * calendar/cal-dst.el (calendar-dst): New custom group.
8388         (calendar-daylight-savings-starts, calendar-daylight-savings-ends)
8389         (calendar-time-zone, calendar-daylight-time-offset)
8390         (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
8391         (calendar-daylight-savings-starts-time)
8392         (calendar-daylight-savings-ends-time): Convert from defvar to defcustom.
8393         (calendar-daylight-savings-starts, calendar-daylight-savings-ends):
8394         Move to start.
8396         * calendar/cal-menu.el (holidays-in-diary-buffer): Declare for compiler.
8398         * calendar/calendar.el (calendar-version): Use emacs-version and
8399         make it obsolete.  Move to end.
8400         (calendar-offset, view-diary-entries-initially)
8401         (mark-diary-entries-in-calendar, calendar-remove-frame-by-deleting)
8402         (view-calendar-holidays-initially, all-hebrew-calendar-holidays)
8403         (all-christian-calendar-holidays, all-islamic-calendar-holidays)
8404         (all-bahai-calendar-holidays, calendar-load-hook)
8405         (initial-calendar-window-hook, today-visible-calendar-hook)
8406         (today-invisible-calendar-hook, calendar-move-hook)
8407         (diary-nonmarking-symbol, hebrew-diary-entry-symbol)
8408         (islamic-diary-entry-symbol, bahai-diary-entry-symbol)
8409         (diary-include-string, sexp-diary-entry-symbol)
8410         (abbreviated-calendar-year, american-date-diary-pattern)
8411         (european-date-diary-pattern, european-calendar-display-form)
8412         (american-calendar-display-form, print-diary-entries-hook)
8413         (list-diary-entries-hook, diary-hook, diary-display-hook)
8414         (nongregorian-diary-listing-hook, mark-diary-entries-hook)
8415         (nongregorian-diary-marking-hook, diary-list-include-blanks)
8416         (holidays-in-diary-buffer, general-holidays, oriental-holidays)
8417         (local-holidays, other-holidays, hebrew-holidays-1)
8418         (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
8419         (hebrew-holidays, christian-holidays, islamic-holidays)
8420         (bahai-holidays, solar-holidays, calendar-setup)
8421         (calendar-week-start-day): Remove autoload cookies.
8422         (diary-glob-file-regexp-prefix): Doc fix.
8423         (calendar-goto-info-node): Use `info' rather than `Info-find-node'.
8424         (Info-find-emacs-command-nodes, Info-find-node): Remove declarations.
8425         (calendar-week-start-day, calendar-debug-sexp): Move to start.
8427         * calendar/solar.el: Remove leading `*' from defcustom doc-strings.
8428         (calendar-time-display-form, calendar-latitude)
8429         (calendar-longitude, solar-equinoxes-solstices): Remove autoload
8430         cookies.
8431         (calendar-latitude, calendar-longitude): Move functions after
8432         variables.
8433         (diary-sabbath-candles-minutes): Move to start.
8434         (solar-setup): Use or rather than if.
8435         (solar-sin-degrees, solar-cosine-degrees, solar-tangent-degrees):
8436         Remove condition-case.
8437         (solar-atn2): Use zerop.
8438         (solar-equinoxes-solstices): Doc fix.
8440         * mail/supercite.el: Remove leading `*' from defcustom doc-strings.
8441         (sc-mode-map-prefix): Doc fix.  Make it a defcustom.
8443         * textmodes/org.el (org-agenda-sunrise-sunset): Require solar.
8444         (calendar-longitude, calendar-latitude, calendar-location-name):
8445         Declare for compiler.
8447 2008-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8449         * arc-mode.el (archive-ar-file-header-re): New const.
8450         (archive-ar-summarize, archive-ar-extract): New funs.
8451         (archive-find-type): Recognize ar archives.
8453         * vc-bzr.el (vc-bzr-resolve-when-done, vc-bzr-find-file-hook):
8454         New functions.
8456         * info.el (Info-bookmark-make-cell): Don't use the info-node argument.
8458 2008-03-06  Lennart Borgman  <lennart.borgman@gmail.com>
8460         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
8461         Replace :enable (mark-active) with :enable mark-active.
8463 2008-03-06  Juanma Barranquero  <lekktu@gmail.com>
8465         * vms-patch.el (make-legal-file-name): New obsolete alias.
8466         (make-valid-file-name): Rename from `make-legal-file-name'.
8467         (make-auto-save-file-name): Use it.
8469         * calendar/calendar.el (calendar-date-is-legal-p): New obsolete alias.
8470         (calendar-date-is-valid-p): Rename from `calendar-date-is-legal-p'.
8471         (calendar-date-is-visible-p, mark-visible-calendar-date): Use it.
8473         * textmodes/org.el (org-export-html-style): Doc fix.
8474         (org-get-legal-level): New obsolete alias.
8475         (org-get-valid-level): Rename from `org-get-legal-level'.
8476         (org-promote, org-demote, org-archive-subtree)
8477         (org-remember-handler, org-refile, org-put-clock-overlay): Use it.
8479 2008-03-06  Jan Djärv  <jan.h.d@swipnet.se>
8481         * term/x-win.el (x-gtk-stock-map): Add bookmark_add.
8483         * vc.el (vc-status-tool-bar-map, vc-status-toggle-mark-file)
8484         (vc-status-toggle-mark): New functions.
8485         (vc-status-mode): Set tool bar map.
8487 2008-03-05  Chong Yidong  <cyd@stupidchicken.com>
8489         * emacs-lisp/lisp.el (parens-require-spaces): Doc fix.
8490         Reported by Drew Adams <drew.adams@oracle.com>.
8492 2008-03-05  Kenichi Handa  <handa@ni.aist.go.jp>
8494         * subr.el (read-quoted-char): Resolve modifers of the character
8495         event.
8497         * comint.el (comint-exec-1): Don't change the coding-system for
8498         decoding to dos-like EOL.
8499         (comint-carriage-motion): Fully rewrite.
8501 2008-03-05  Juanma Barranquero  <lekktu@gmail.com>
8503         * epg.el (epg-context-include-certs): Reflow docstring.
8504         (epg-start-sign-keys, epg-sign-keys, epg-context-armor)
8505         (epg-context-signers, epg-context-sig-notations, epg-context-set-armor)
8506         (epg-context-set-signers, epg-context-set-sig-notations)
8507         (epg-make-import-status, epg-make-import-result)
8508         (epg-start-delete-keys): Fix typos in docstrings.
8509         (epg-start-sign-keys, epg-sign-keys):
8510         Fix typos in obsolescence declarations.
8512         * iswitchb.el: Don't check for `cadr' and `last'.
8513         (iswitchb-define-mode-map, iswitchb-default-keybindings):
8514         Add obsolescence declaration and remove redundant info from docstring.
8515         (iswitchb-set-common-completion, iswitchb-set-matches)
8516         (iswitchb-get-matched-buffers, iswitchb-visit-buffer): Use `let'.
8517         (recentf-list, most-len, most-is-exact):
8518         Don't wrap defvars within `eval-when-compile'.
8520 2008-03-05  Glenn Morris  <rgm@gnu.org>
8522         * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
8523         * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
8524         * ediff-diff.el, ediff-help.el, ediff-hook.el, ediff-init.el:
8525         * ediff-mult.el, ediff-util.el, ediff-wind.el: Expand all
8526         ediff-cond-compile-for-xemacs-or-emacs calls to a featurep test.
8528         * ediff-hook.el (ediff-window-setup-function): Don't autoload
8529         declaration for compiler.
8530         (ediff-xemacs-init-menus): Use when rather than if.
8532         * ediff-init.el (top-level, ediff-frame-iconified-p): Simplify
8533         if+and to just and.
8534         (ediff-read-event, ediff-overlayp, ediff-make-overlay)
8535         (ediff-delete-overlay): Move the XEmacs test inside the definition.
8537         * ediff-mult.el (ediff-get-meta-info): Use or and unless rather than if.
8539         * ediff-util.el (ediff-kill-bottom-toolbar): Place (ediff-use-toolbar-p)
8540         test inside XEmacs test.
8541         (ediff-make-bottom-toolbar): Place whole cond inside XEmacs test,
8542         since it was doing nothing on Emacs.
8543         (ediff-make-bullet-proof-overlay): Use when rather than if.
8545         * ediff-wind.el (ediff-select-lowest-window): Use when rather than if.
8546         (ediff-setup-control-frame): Remove
8547         ediff-cond-compile-for-xemacs-or-emacs, since it is already inside
8548         a (featurep 'xemacs) test.
8550 2008-03-05  Jay Belanger  <jay.p.belanger@gmail.com>
8552         * calc/calc-ext.el (calc-extended-command-history): New variable.
8553         (calc-exectute-extended-command): Use `calc-extended-command-history'.
8555 2008-03-05  Dan Nicolaescu  <dann@ics.uci.edu>
8557         * bindings.el (mode-line-remote): Add mouse-face.  Improve tooltip.
8558         (standard-mode-line-position): Add mouse-face.
8560         * progmodes/compile.el (compilation-menu-map, compilation-mode-map):
8561         * progmodes/grep.el (grep-mode-map): Add :help.
8563         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Define and
8564         initialize in one step.  Add :help.  Use :enable to activate menu
8565         items.  Show the key binding for edebug-defun.
8566         (lisp-interaction-mode-map): Add a menu.
8568         * term.el (term-mode-map): Define and initialize in one step.
8570         * ediff-init.el (ediff-color-display-p): Simplify.
8571         (Xor): Remove unused function.
8572         (ediff-with-syntax-table): Simplify for Emacs.
8574         * ediff-hook.el (menu-bar-ediff-menu): Don't depend on the
8575         menu-bar being loaded, it always is.
8577 2008-03-05  Glenn Morris  <rgm@gnu.org>
8579         * textmodes/tex-mode.el (tex-mode): Suppress warning about
8580         multiple definitions when compiling.
8582 2008-03-04  Alan Mackenzie  <acm@muc.de>
8584         * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix coding bug.
8586         * progmodes/cc-langs.el (c-before-font-lock-function): Fix bug in
8587         doc-string, "c-old-LEN" -> "c-old-END".
8589 2008-03-04  Jason Rumney  <jasonr@gnu.org>
8591         * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add dublin core
8592         namespaces.
8594 2008-03-04  Glenn Morris  <rgm@gnu.org>
8596         * textmodes/tex-mode.el (tex-cmd-bibtex-args): Add :version and :group.
8598         * ediff-init.el (ediff-clear-fine-diff-vector): Use mapc rather
8599         than mapcar.
8601 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8603         * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
8604         (byte-compile-nilconstp): Can't use recursion in a defsubst.
8606         * textmodes/tex-mode.el (latex-mode): Remove % from paragraph-separate
8607         so that M-q can fill comments.
8608         (tex-executable-exists-p, tex-compile): Extend with special syntax for
8609         commands implemented in elisp.
8610         (tex-compile-commands): Add an entry to use doc-view for pdf files.
8611         (tex-format-cmd): New function.
8612         (tex-compile): Use it to let the user specify default arguments.
8613         (tex-cmd-bibtex-args): New var.
8614         (tex-cmd-doc-view): New function.
8616 2008-03-03  Juanma Barranquero  <lekktu@gmail.com>
8618         * faces.el (face-spec-set): Fix typos in docstring.
8620 2008-03-03  Dan Nicolaescu  <dann@ics.uci.edu>
8622         * bindings.el (mode-line-column-line-number-mode-map): New variable.
8623         (standard-mode-line-position): Use it to add a menu for toggling
8624         column number and line number display.
8626 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8628         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
8629         Remove optimization that was working around the form-code-walker bug.
8631         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
8632         Walk into the body of lambdas after byte-compile-unfold-lambda.
8634 2008-03-03  Glenn Morris  <rgm@gnu.org>
8636         * emulation/viper-util.el (viper-frame-value): Prefer buffer-local
8637         value, if set, over frame value.
8639         * simple.el (transient-mark-mode): Don't turn on by default.
8641         * net/tls.el (open-tls-stream): Restore the 2007-11-04 change
8642         accidentally removed by the 2007-12-05 merge from Gnus.
8644 2008-03-02  Dan Nicolaescu  <dann@ics.uci.edu>
8646         * progmodes/compile.el (compilation-menu-map): Add menu entries
8647         for useful options.
8649 2008-03-01  Dan Nicolaescu  <dann@ics.uci.edu>
8650             Glenn Morris  <rgm@gnu.org>
8652         * emacs-lisp/bytecomp.el (byte-recompile-directory)
8653         (byte-compile-file, batch-byte-compile, batch-byte-compile-file):
8654         Give a `bytecomp-' prefix to local variables with common names.
8656 2008-03-01  Glenn Morris  <rgm@gnu.org>
8658         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Restore
8659         code commented out 2007-11-10.
8661         * emulation/edt.el (zmacs-region-stays): Define for compiler once only.
8663         * emulation/viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
8664         Delete macro.
8665         * emulation/viper-cmd.el, emulation/viper-ex.el:
8666         * emulation/viper-init.el, emulation/viper-keym.el:
8667         * emulation/viper-mous.el, emulation/viper-util.el:
8668         * emulation/viper.el:
8669         Expand all viper-cond-compile-for-xemacs-or-emacs calls to a
8670         featurep test.
8672         Replace obselete frame-local variables with frame-parameters.
8673         * emulation/viper-init.el (viper-replace-overlay-cursor-color)
8674         (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
8675         (viper-vi-state-cursor-color): Only call make-variable-frame-local
8676         on XEmacs.
8677         * emulation/viper-util.el (viper-frame-value): New macro.
8678         * emulation/viper-cmd.el (viper-insert-state-post-command-sentinel)
8679         (viper-R-state-post-command-sentinel)
8680         (viper-replace-state-post-command-sentinel)
8681         (viper-change-state-to-insert, viper-change-state-to-emacs):
8682         * emulation/viper-util.el (viper-set-cursor-color-according-to-state)
8683         (viper-save-cursor-color, viper-get-saved-cursor-color-in-replace-mode)
8684         (viper-get-saved-cursor-color-in-insert-mode)
8685         (viper-get-saved-cursor-color-in-emacs-mode, viper-set-replace-overlay):
8686         Use viper-frame-value for viper-replace-overlay-cursor-color,
8687         viper-emacs-state-cursor-color, viper-insert-state-cursor-color, and
8688         viper-vi-state-cursor-color values.
8690         * emulation/viper-cmd.el (zmacs-region-stays):
8691         * emulation/viper-util.el (zmacs-region-stays): No need to define
8692         for compiler.
8694         * emulation/viper-keym.el (viper-add-keymap): Use mapc rather than
8695         mapcar on Emacs.
8697         * emulation/viper-mous.el (viper-counting-clicks-p): Only define
8698         on XEmacs.
8700         * emulation/viper-util.el (viper-set-minibuffer-overlay): Use when
8701         rather than if.
8703 2008-03-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8705         * whitespace.el: New version 9.3.  As the glyph code generation was
8706         fixed, it is possible now to use character code above ?\x1FFFF in the
8707         display table.  Fix `whitespace-indentation-regexp' to not include an
8708         extra ending character.  Reported by Michael Welsh Duggan
8709         <mwd@cert.org>.  Added hook actions when buffer is written or killed as
8710         the original whitespace package had.  Suggested by Eric Cooper
8711         <ecc@cmu.edu>.  Doc fix.
8712         (whitespace-action): New option.
8713         (whitespace-display-mappings): Changed default newline visualization to
8714         display downwards arrow, as the glyph code generation was fixed.
8715         (whitespace-unload-function): Assure that all local whitespace mode is
8716         turned off.
8717         (whitespace-global-modes): Fix type customization.
8718         (whitespace-mode, global-whitespace-mode, whitespace-cleanup-region)
8719         (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
8720         (whitespace-turn-off, whitespace-color-on, whitespace-display-char-on):
8721         Fix code.
8722         (whitespace-buffer): Command removed.
8723         (whitespace-trailing-regexp, whitespace-mark-x)
8724         (whitespace-display-window, whitespace-action-when-on)
8725         (whitespace-add-local-hook, whitespace-remove-local-hook)
8726         (whitespace-write-file-hook, whitespace-kill-buffer-hook)
8727         (whitespace-action): New funs.
8728         (whitespace-report-list, whitespace-report-text)
8729         (whitespace-report-buffer-name): New consts.
8730         (whitespace-report, whitespace-report-region): New commands.
8732 2008-03-01  Juanma Barranquero  <lekktu@gmail.com>
8734         * disp-table.el (make-glyph-code): Don't test the result of
8735         `face-id', which already signals an error for invalid faces.
8736         (glyph-face): Simplify.
8738         * desktop.el (desktop-read): Set `desktop-dirname' to nil before
8739         running `desktop-not-loaded-hook' to allow modifying it.
8740         Don't show warning message if `desktop-dirname' was modified.
8742 2008-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8744         * diff-mode.el (diff-sanity-check-hunk): Only accept an empty line if
8745         we still expect more lines.
8747         * textmodes/fill.el (fill-comment-paragraph): Don't try to do
8748         comment-paragraph filling if the commark doesn't match
8749         comment-start-skip.
8751 2008-03-01  Daiki Ueno  <ueno@unixuser.org>
8753         * international/utf-7.el (utf-7-encode): Never skip the trailing - for
8754         the `imap' variant.
8756 2008-03-01  Jason Rumney  <jasonr@gnu.org>
8758         * files.el (make-auto-save-file-name): Encode more characters in
8759         non-file buffer names.  Use url-encoding.
8761 2008-03-01  Juanma Barranquero  <lekktu@gmail.com>
8763         * net/net-utils.el (ftp-program): Fix typo in docstring.
8764         (ifconfig-program-options, netstat-program-options)
8765         (arp-program-options, route-program-options, nslookup-program-options)
8766         (ftp-program-options, smbclient-program-options)
8767         (dns-lookup-program-options, arp, route): Doc fixes.
8769         * progmodes/gdb-ui.el (gdb-pc-address, gdb-source-file-list)
8770         (gdb-cpp-define-alist-program, gdb-mouse-jump, gdb-get-buffer-create)
8771         (gdb-set-gud-minor-mode-existing-buffers-1, gdb-debug-log):
8772         Fix typos in docstrings.
8773         (gdb-pending-triggers): Reflow docstring.
8774         (gdb, gdb-init-1): Fix typos in docstrings of gud-def definitions.
8776 2008-03-01  Alan Mackenzie  <acm@muc.de>
8778         * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix a bug on
8779         typing "#" at EOB.
8781 2008-03-01  Juanma Barranquero  <lekktu@gmail.com>
8783         * emulation/cua-base.el (cua-remap-control-z): Fix typo in docstring.
8785 2008-02-29  Kim F. Storm  <storm@cua.dk>
8787         * emulation/cua-base.el (cua-remap-control-v)
8788         (cua-remap-control-z): New defcustoms.
8789         (cua-mode): Add them to set-after property.
8790         (cua--init-keymaps): Use them.
8791         Add C-x/C-c home, end, next, and prior to cua--prefix-repeat-keymap.
8793         * help.el (view-emacs-todo): Rename from view-todo.
8794         (describe-gnu-project): Rename from describe-project.  Users changed.
8795         (view-help-file): New helper function.
8796         (describe-distribution, describe-copying, describe-gnu-project)
8797         (view-todo, view-order-manuals, view-emacs-problems): Use it.
8798         (view-emacs-debugging, view-external-packages): New commands.
8799         (help-map): Move describe-distribution to C-h C-o (ordering).
8800         Move view-emacs-problems to C-h C-p (problems).
8801         Bind view-emacs-debugging to C-h C-d (debugging).
8802         Bind view-external-packages to C-h C-e (extras).
8803         (help-for-help-internal): Cleanup and align descriptions.
8804         Remove command names to reduce clutter.
8806 2008-02-29  Nick Roberts  <nickrob@snap.net.nz>
8808         * vc.el (vc-set-mode-line-busy-indicator): Use shorter message
8809         and quieter face (not a warning).
8811 2008-02-29  Dan Nicolaescu  <dann@ics.uci.edu>
8813         * vc.el (vc-status-crt-marked): New variable.
8814         (vc-status-mode): Make it local.
8815         (vc-status-refresh): Use it to save the marked files.
8816         (vc-update-vc-status-buffer): Use it to restore the marked files.
8818         * vc-svn.el (vc-svn-after-dir-status):
8819         * vc-hg.el (vc-hg-after-dir-status): Clean up the temporary buffer.
8821 2008-02-29  Glenn Morris  <rgm@gnu.org>
8823         * allout.el (allout-topic-encryption-bullet)
8824         (allout-passphrase-verifier-handling, allout-passphrase-hint-handling)
8825         (allout-encrypt-unencrypted-on-saves): Change defcustom :version
8826         from 22.0 to 22.1.
8828         * net/imap.el (imap-ping-server):
8829         * net/tls.el (tls-checktrust, tls-untrusted, tls-hostmismatch):
8830         Change defcustom :version from 23.0 to 23.1.
8832 2008-02-29  Juanma Barranquero  <lekktu@gmail.com>
8834         * desktop.el (desktop-save): Save the buffer name if the
8835         uniquified base name is empty.
8837 2008-02-29  Nick Roberts  <nickrob@snap.net.nz>
8839         * progmodes/gdb-ui.el (gdb-info-stack-custom): Apply function-name-face
8840         correctly when user has "set print address off".
8842 2008-02-28  Juanma Barranquero  <lekktu@gmail.com>
8844         * cus-edit.el (custom-mode, custom-mode-hook): Use 23.1 as
8845         version number of the next major Emacs release, not 23.0.
8847         * longlines.el (longlines-unload-function): New function.
8849 2008-02-28  Juri Linkov  <juri@jurta.org>
8851         * startup.el (normal-splash-screen): Add argument `concise'.
8852         Remove unused binding `prev-buffer'.  Let-bind `splash-buffer'
8853         to the created buffer.  If `concise' is non-nil, call
8854         `display-buffer', otherwise `switch-to-buffer'.  Doc fix.
8855         (display-startup-screen): Add argument `concise' to the call to
8856         `normal-splash-screen'.
8858 2008-02-28  Kim F. Storm  <storm@cua.dk>
8860         * startup.el (startup-echo-area-message): Check for about-emacs.
8862 2008-02-28  Juri Linkov  <juri@jurta.org>
8864         * startup.el: Always add initial message to *scratch* buffer if
8865         `initial-scratch-message' is non-nil regardless of the value of
8866         `inhibit-startup-screen'.
8867         (inhibit-startup-screen, initial-scratch-message): Doc fix.
8868         (command-line-1): Move code that inserts `initial-scratch-message'
8869         up before the if-form that checks for `inhibit-startup-screen'.
8870         Suggested by Jonathan Rockway <jon@jrock.us>.
8872 2008-02-28  Juri Linkov  <juri@jurta.org>
8874         * cus-edit.el (custom-mode-map, custom-mode-link-map):
8875         Rename `custom-mode' to `Custom-mode' in docstrings.
8876         (custom-buffer-create-internal, customize-browse):
8877         Rename `custom-mode' to `Custom-mode'.
8878         (custom-mode-hook): Rename to `Custom-mode-hook'.
8879         (Custom-mode-hook): Renamed from `custom-mode-hook'.
8880         (custom-mode): Rename to `Custom-mode'.
8881         (Custom-mode): Renamed from `custom-mode'.  Doc fix.
8882         (custom-mode): Add backward-compatible non-interactive variant of
8883         `Custom-mode' that simply calls `Custom-mode'.  Mark it obsoleted.
8884         (custom-mode-hook): Mark it as obsolete alias of `Custom-mode-hook'.
8886         * info-look.el: Rename `custom-mode' to `Custom-mode'.
8888         * emulation/viper.el (viper-emacs-state-mode-list):
8889         Rename `custom-mode' to `Custom-mode'.
8891         * menu-bar.el (menu-bar-search-menu, menu-bar-replace-menu):
8892         Capitalize "Tagged Files".
8893         (minibuffer-local-map): Add menu items for next/previous
8894         history elements and isearch history forward/backward.
8896         * progmodes/hideshow.el (hs-minor-mode-menu): Compare
8897         `hs-isearch-open' with t instead of `comment' in :selected
8898         for "Code and Comment blocks" menu item.
8900 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8902         * uniquify.el (uniquify-buffer-base-name): Undo last change.
8903         Should be done in desktop.el instead.
8905 2008-02-28  Glenn Morris  <rgm@gnu.org>
8907         * autoinsert.el (auto-insert-alist): Update to FDL 1.2.
8909         * emacs-lisp/byte-run.el (make-obsolete): Doc fix.
8911         * mail/emacsbug.el: Remove leading `*' from defcustom doc-strings.
8912         (Info-menu, Info-goto-node): Remove declarations.
8913         (report-emacs-bug-info): Use info rather than Info-goto-node.
8915         * progmodes/idlwave.el (Info-goto-node): Remove declaration.
8916         (idlwave-convert-xml-system-routine-info): Don't require xml.
8917         (idlwave-show-commentary, idlwave-shell-show-commentary):
8918         Don't require finder.
8919         (idlwave-info): Don't require info.  Use info rather than
8920         Info-goto-node.
8922         * textmodes/org.el (Info-goto-node): Remove declaration.
8923         (org-info): Use info rather than Info-goto-node.
8925         * textmodes/reftex.el (reftex-show-commentary): Don't require finder.
8926         (reftex-info): Don't require info.  Use info rather than Info-goto-node.
8928 2008-02-28  Dan Nicolaescu  <dann@ics.uci.edu>
8930         * progmodes/hideshow.el (hs-minor-mode-menu): Add some options to
8931         the menu.
8933         * vc.el (vc-deduce-fileset, vc-next-action, vc-start-entry)
8934         (vc-finish-logentry): Check for vc-status-mode, not only for
8935         vc-dired-mode.
8937 2008-02-28  Kenichi Handa  <handa@ni.aist.go.jp>
8939         * isearch.el (isearch-printing-char): Don't check
8940         keyboard-coding-system.
8941         Call isearch-process-search-multibyte-characters only when
8942         current-input-method is non-nil.
8944 2008-02-27  Kim F. Storm  <storm@cua.dk>
8946         * disp-table.el (make-glyph-code): Encode as cons if face id > 63.
8947         (glyph-char, glyph-face): Handle cons encoding.
8949 2008-02-27  Juanma Barranquero  <lekktu@gmail.com>
8951         * uniquify.el (uniquify-buffer-base-name): If the base name is an
8952         empty string, return nil to allow the caller to default to the
8953         buffer name.  Reported by Martin Fischer <parozusa@web.de>.
8955         * tool-bar.el (tool-bar-setup): Doc fix.
8957         * mail/supercite.el (sc-describe):
8958         Fix typos in obsolescence declaration.
8960 2008-02-27  Glenn Morris  <rgm@gnu.org>
8962         * autoinsert.el (auto-insert-alist): Change permission text to
8963         match FSF's GPLv3 form.
8965         * mail/supercite.el (sc-cite-original): Doc fix.
8966         (sc-version): Make obsolete.
8967         (sc-describe): Show the SC info page.  Make obsolete.
8969 2008-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8971         * simple.el (set-mark-command): Deactivate mark on second C-SPC C-SPC
8972         when using transient-mark-mode.
8973         (default-indicate-unused-lines): Remove unused var.
8975 2008-02-26  Jan Djärv  <jan.h.d@swipnet.se>
8977         * progmodes/grep.el (grep-mode-tool-bar-map): Change place on next
8978         and previous.
8980         * progmodes/compile.el (compilation-mode-tool-bar-map): The same.
8982 2008-02-26  Glenn Morris  <rgm@gnu.org>
8984         * net/net-utils.el (top-level): Don't require comint when compiling.
8985         (nslookup-font-lock-keywords): Don't require font-lock.
8986         Use font-lock faces rather than variables.
8987         (nslookup, ftp, smbclient, network-service-connection):
8988         Don't require comint.
8989         (comint-prompt-regexp, comint-input-autoexpand)
8990         (comint-input-ring): Declare for compiler.
8991         (comint-mode, ffap-string-at-point, comint-exec): Autoload.
8992         (dns-lookup-host): Don't require ffap.  Remove `with-no-warnings'.
8994         * ibuffer.el (ibuffer-do-toggle-read-only): Don't use `iff' in
8995         doc-string.
8997 2008-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8999         * doc-view.el (doc-view-current-page): Add a `win' argument.
9001 2008-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
9003         * doc-view.el (doc-view-conversion-buffer): Give it an internal name.
9004         Demote it to plain defvar.
9005         (doc-view-conversion-refresh-interval): Reduce interval.
9006         (doc-view-goto-page): Allow moving to pages not yet rendered.
9007         (doc-view-goto-page): Construct a file name rather than extracting it
9008         from doc-view-current-files.
9009         (doc-view-kill-proc): Ignore errors from kill-process.
9010         (doc-view-pdf/ps->png-sentinel): Die gracefully if the buffer is dead.
9011         (doc-view-insert-image): Use appropriate text if the page hasn't been
9012         rendered yet.  Adjust scrolling so the text is displayed.
9013         (doc-view-display): Detect not just that a page is available, but also
9014         that it wasn't available before, so as to avoid refreshing all pages
9015         repeatedly.
9016         (doc-view-mode): Make doc-view-cache-directory if needed.
9018 2008-02-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9020         * ibuffer.el (ibuffer-do-toggle-read-only): New optional arg as in
9021         toggle-read-only.
9023         * textmodes/bibtex.el (bibtex-format-entry): Handle error message
9024         refering to a missing required field with the OPT prefix.
9025         Make unwindform more robust.
9027         * textmodes/bibtex.el: Remove support for hideshow minor mode as
9028         it duplicates the bibtex support in progmodes/hideshow.el.
9029         * progmodes/hideshow.el (hs-special-modes-alist): Allow bibtex
9030         entries that do not start at the beginning of a line.
9032 2008-02-25  Chong Yidong  <cyd@stupidchicken.com>
9034         * files.el (shell-quote-wildcard-pattern): Quote ' and " as well.
9036 2008-02-25  Robert J. Chassell  <bob@rattlesnake.com>
9038         * help-fns.el (describe-variable): Add phrases about
9039         initialization file with and without customization;
9040         use new button type help-info-variable.
9042         * help-mode.el (help-info-variable):
9043         New button able to read Info files for help-fns.el.
9045 2008-02-25  Jan Djärv  <jan.h.d@swipnet.se>
9047         * progmodes/grep.el (grep-mode-tool-bar-map): New variable.
9048         (grep-mode): Use grep-mode-tool-bar-map.
9050         * progmodes/compile.el (tool-bar): Require tool-bar.
9051         (compilation-mode-tool-bar-map): New variable.
9052         (compilation-mode): Use compilation-mode-tool-bar-map.
9054         * term/x-win.el (x-gtk-stock-map): Add cancel.  Remove extensions.
9056 2008-02-25  Glenn Morris  <rgm@gnu.org>
9058         * vc-sccs.el (vc-sccs-diff): Fix setting of oldvers and newvers.
9060 2008-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
9062         * diff-mode.el (diff-file-junk-re): New const.
9063         (diff-beginning-of-file-and-junk): Use it.
9064         (diff-file-kill): Make sure we were really inside a file diff.
9066         * diff-mode.el: Make it more robust in the presence of empty context
9067         lines in unified hunks.
9068         (diff-valid-unified-empty-line): New var.
9069         (diff-unified->context, diff-sanity-check-hunk): Obey it.
9070         (diff-end-of-hunk): Obey it.  New arg `donttrustheader'.
9071         (diff-fixup-modifs, diff-post-command-hook): Use this new arg.
9072         (diff-hunk-header-re-unified): New const.
9073         (diff-font-lock-keywords, diff-hunk-header-re, diff-split-hunk)
9074         (diff-fixup-modifs, diff-unified->context, diff-next-complex-hunk)
9075         (diff-sanity-check-hunk): Use it.
9077         * diff-mode.el (diff-beginning-of-file-and-junk): If we're on the
9078         Index: line, don't search backward for the previous one.
9080 2008-02-25  Kenichi Handa  <handa@ni.aist.go.jp>
9082         * international/fontset.el (setup-default-fontset): Add non-OTF
9083         lao font for lao script.
9085         * language/tibetan.el: Register tibetan-composition-function in
9086         composition-function-table.
9088         * language/tibet-util.el (tibetan-composition-function):
9089         Adjust for the new calling way (argument changed).  Try font-shape-text
9090         if possible.
9092         * language/lao.el: Register lao-composition-function in
9093         composition-function-table.
9095         * language/lao-util.el (lao-composition-function): Adjust for the new
9096         calling way (argument changed).  Try font-shape-text if possible.
9098 2008-02-25  Jason Rumney  <jasonr@gnu.org>
9100         * files.el (file-name-invalid-regexp): Fix octal/decimal confusion.
9102 2008-02-25  Juri Linkov  <juri@jurta.org>
9104         * isearch.el (isearch-fail): Use "RosyBrown1" for a light
9105         background, "red4" for a dark background, "red" for 16 and
9106         8 colors, "grey" for grayscale, and inverse video otherwise.
9107         Add :version tag.
9108         (isearch-message): Keep the original isearch-message intact, and
9109         add text properties to it where necessary.  Add `isearch-error' to
9110         the condition that checks if isearch is unsuccessful.
9112 2008-02-24  Juri Linkov  <juri@jurta.org>
9114         * progmodes/compile.el (compilation-handle-exit):
9115         Use compilation-error face instead of font-lock-warning-face.
9116         Display the same message in the minibuffer as is inserted
9117         at the end of the compilation buffer.
9119 2008-02-24  Glenn Morris  <rgm@gnu.org>
9121         * vc-cvs.el (vc-cvs-register): Fix registering of directories in
9122         multiple file case.
9124         * vc-mcvs.el (vc-mcvs-register): Fix let-binding (for use of `file').
9126         * vc-rcs.el (vc-rcs-register): Fix treatment of directories in
9127         multiple file case.  Use a single `let' rather than two.
9129 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
9131         * progmodes/compile.el (compilation-start): Specify a face for
9132         mode-line-process.
9133         (compilation-handle-exit): Specify a face and a tooltip for
9134         mode-line-process.
9136 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9138         * hilit-chg.el: Remove spurious * in defcustom docstrings.
9139         (hilit-chg-make-ov): Simplify.
9140         (hilit-chg-fixup): Use remove-overlays.
9141         (hilit-chg-set-face-on-change): Remove redundant call to
9142         `remove-text-properties'.
9144         * dired.el (dired-mark-prompt): Don't count/display the t element.
9145         Reported by Carsten Blaauw <it-media.blaauw@daimler.com>.
9147 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
9149         * progmodes/verilog-mode.el (eval-when-compile): Don't define
9150         add-submenu.
9151         (verilog-xemacs-menu): Add :keys for C-M-a, C-M-e and C-M-h.
9152         Remove.  Move contents to the only use ...
9153         (verilog-menu): ... here.
9154         (verilog-statement-menu): Remove.  Move contents to the only use ...
9155         (verilog-stmt-menu): ... here.
9156         (verilog-mark-defun): Simply call mark-defun for emacs.
9157         (occur-pos-list): Declare for byte compiler.
9158         (mode-popup-menu): Don't defvar.
9159         (verilog-add-statement-menu): Remove.
9160         (verilog-mode-hook): Don't add verilog-add-statement-menu.
9161         (verilog-mode): Call easy-menu-add and set mode-popup-menu for XEmacs.
9163 2008-02-24  Michael McNamara  <mac@mail.brushroad.com>
9165         * progmodes/verilog-mode.el (verilog-xemacs-menu): Remove XEmacs
9166         conditional.
9167         (verilog-font-grouping-keywords-face): Make the begin..end
9168         keywords standout more than other verilog keywords.
9169         (verilog-type-font-keywords): Move the begin..end out of this list
9170         to facilitate making them to (potentially) stand out more.
9171         (verilog-backward-token): Fix indent of bare always{_*}?, initial,
9172         function & task blocks.
9173         (verilog-behavioral-block-beg-re): Fix indent of bare always{_*}?,
9174         initial, function & task blocks.
9175         (verilog-forward-sexp): Handle the new "disable fork" statement of
9176         IEEE-1800 Verilog.
9177         (verilog-beg-block-re-ordered): Handle the new "disable fork"
9178         statement of IEEE-1800 Verilog.
9179         (verilog-calc-1): Handle the new "disable fork" statement of
9180         IEEE-1800 Verilog.
9181         (verilog-disable-fork-re): Add const to help handle the new
9182         "disable fork" statement of IEEE-1800 Verilog.
9183         (verilog-declaration-core-re): Add port directions by themselves,
9184         with no qualification, as base item of a declaration.
9185         (verilog-pretty-declarations): Add new flag to ask it to refrain
9186         from printing to the message buffer.
9187         (verilog-pretty-expr): Add a QUIET flag to ask it to refrain from
9188         printing to the message buffer.  Improve handling of the many
9189         types of expression line up.
9190         (verilog-just-one-space): Remove printing of an empty message.
9191         (verilog-get-lineup-indent): Rework to support the better handling
9192         of expression lineup for verilog-pretty-expr.
9193         (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
9195 2008-02-24  Alan Mackenzie  <acm@muc.de>
9197         * progmodes/cc-mode.el (c-extend-region-for-CPP): Bug fix from
9198         yesterday's commit.
9200 2008-02-24  Nick Roberts  <nickrob@snap.net.nz>
9202         * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint): Fall back
9203         to mouse-set-point in buffers that aren't associated with files.
9205         * progmodes/gud.el: Rename menu item to "Show GUD tooltips".
9207 2008-02-24  Alan Mackenzie  <acm@muc.de>
9209         Set of changes so that "obtrusive" syntactic elements in a
9210         C/C++/ObjC preprocessor line (e.g. an unbalanced string quote or
9211         unmatched paren) don't interact syntactically with stuff outside
9212         the CPP line.
9214         * progmodes/cc-awk.el (c-awk-beyond-logical-line, c-awk-old-ByLL):
9215         Replace c-awk-end-of-logical-line and c-awk-old-EoLL to solve an
9216         off-by-one bug.
9217         (c-awk-record-region-clear-NL): Replaces c-awk-before-change, with
9218         a bit of refactoring.
9219         (c-awk-extend-and-syntax-tablify-region): Takes some of the
9220         functionality of c-awk-advise-fl-for-awk-region, which has been
9221         refactored away.
9223         * progmodes/cc-defs.el (c-clear-char-property-with-value-function)
9224         (c-clear-char-property-with-value): New function and macro which
9225         remove text-properties `equal' to a supplied value.
9227         * progmodes/cc-engine.el: Comment about text properties amended.
9229         * progmodes/cc-fonts.el (c-cpp-matchers): Make it put regexp
9230         parens around "error\\|warning".
9232         * progmodes/cc-langs.el (c-get-state-before-change-function)
9233         (c-before-font-lock-function, c-anchored-cpp-prefix):
9234         New language variables.
9235         (c-cpp-message-directives): Handle "#warning" in C, C++ and ObjC.
9237         * progmodes/cc-mode.el (c-basic-common-init): C and ObjC now use
9238         syntax-table text properties.
9239         (c-common-init): Call language specific before/after-change
9240         functions at mode initialisation.
9241         (c-new-BEG, c-new-END, c-old-BOM, c-old-EOM): New variables.
9242         (c-extend-region-for-CPP, c-neutralize-CPP-line)
9243         (c-neutralize-syntax-in-CPP): New functions.
9244         (c-before-change, c-after-change): Call the new language specific
9245         change functions defined in cc-langs.el.
9246         (c-advise-fl-for-region): New macro.
9247         (awk-mode): Remove AWK specific stuff which has been refactored
9248         into language independent stuff.
9250 2008-02-24  Nick Roberts  <nickrob@snap.net.nz>
9252         * progmodes/gdb-ui.el (gdba): Recreate as an alias for gdb.
9253         (gdb): (Re)set gdb-flush-pending-output to nil here...
9254         (gdb-init-1): ...instead of here (before gdb-prompt).
9256 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9258         * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
9259         Recognize ''' just like any other char-constant.
9261 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9263         * vc-hooks.el (vc-find-root): Remove initial loop because it's not
9264         careful enough.  Detect the uid-change all within the main loop.
9266 2008-02-24  Stefan Monnier  <monnier@pastel.home>
9268         * textmodes/sgml-mode.el (sgml-mode): Fix comment syntax.
9270 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9272         * hilit-chg.el (highlight-save-buffer-state): New macro.
9273         (highlight-save-buffer-state, hilit-chg-set-face-on-change)
9274         (hilit-chg-clear): Use it to preserve the modified-p flag.
9275         (highlight-changes-rotate-faces): Don't mess with the undo-list.
9277 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9279         * font-lock.el (font-lock-set-defaults): Unset previously set variables
9280         when needed.
9282 2008-02-24  Ã†var Arnfjörð Bjarmason  <avar@cpan.org>  (tiny change)
9284         * net/rcirc.el (rcirc-url-regexp): Replace definition by copying
9285         from gnus-button-url-regexp.
9287 2008-02-24  Eli Zaretskii  <eliz@gnu.org>
9289         * progmodes/compile.el (compilation-next-error): Doc fix.
9290         (compilation-find-file): Doc fix.
9292 2008-02-24  Glenn Morris  <rgm@gnu.org>
9294         * net/net-utils.el (ipconfig-program, ipconfig-program-options):
9295         Add obsolete aliases to the old names.
9297 2008-02-24  Richard Stallman  <rms@gnu.org>
9299         * net/net-utils.el (ifconfig): Rename from ipconfig.
9300         (ipconfig): Alias to ifconfig.
9301         (ifconfig-program): Rename from ipconfig-program.
9302         (ifconfig-program-options): Rename from ipconfig-program-options.
9304 2008-02-24  Michael McNamara  <mac@mail.brushroad.com>
9306         * progmodes/verilog-mode.el (verilog-declaration-core-re):
9307         Add port directions by themselves, with no qualification, as base
9308         item of a declaration.
9309         (verilog-pretty-declarations): Add new flag that inhibits printing
9310         to the message buffer.
9311         (verilog-pretty-expr): Add new flag that inhibits printing to the
9312         message buffer.  Improve handling of the many types of expression
9313         line up.
9314         (verilog-just-one-space): Don't print an empty message.
9315         (verilog-get-lineup-indent): Rework to support the better handling
9316         of expression lineup for verilog-pretty-expr.
9317         (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
9318         (verilog-mode-version, verilog-mode-release-date): Update.
9320 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9322         * subr.el (cancel-change-group): Don't move point.
9324 2008-02-23  Markus Triska  <markus.triska@gmx.at>
9326         * linum.el (linum-after-config): Update all visible windows.
9328 2008-02-23  Glenn Morris  <rgm@gnu.org>
9330         * menu-bar.el (menu-bar-games-menu): Add Bubbles and Pong.
9331         Add :help for Solitaire and Tetris.
9333         * tree-widget.el (tree-widget-lookup-image): Let-bind `file'.
9335         * mail/smtpmail.el: Remove leading `*' from defcustom doc-strings.
9336         (smtpmail-code-conv-from): Doc fix.  Fix custom type.
9337         (smtpmail-queue-index-file): Make it a defcustom.
9338         (smtpmail-queue-index): Delete.
9339         (smtpmail-send-it, smtpmail-send-queued-mail):
9340         Use smtpmail-queue-index-file and smtpmail-queue-dir rather than
9341         smtpmail-queue-index.
9343         * net/net-utils.el (iwconfig-program, iwconfig-program-options):
9344         Add :version.
9346 2008-02-23  Yoni Rabkin  <yoni@rabkins.net>  (tiny change)
9348         * net/net-utils.el (iwconfig-program, iwconfig-program-options):
9349         New variables.
9350         (iwconfig): New function.
9352 2008-02-23  Dan Nicolaescu  <dann@ics.uci.edu>
9354         * vc.el (vc-find-revision): Make vc-parent-buffer local before
9355         setting it.
9356         (vc-status-menu-map): Do not define using easy-menu.
9357         (vc-status-menu-map): New defalias.
9358         (vc-status-mode-map): Hook up the menu.
9359         (top-level): Update TODO.
9361         * vc-hg.el (vc-hg-extra-status-menu): Return a keymap.
9363         * vc-bzr.el (vc-bzr-init-version): Rename to ...
9364         (vc-bzr-init-revision): ... this.
9366 2008-02-23  Jason Rumney  <jasonr@gnu.org>
9368         * makefile.w32-in (WINS_ALMOST): Remove term.
9369         (WINS): Add term here.
9370         (custom-deps, finder-data): Use WINS_ALMOST.
9372 2008-02-22  Juanma Barranquero  <lekktu@gmail.com>
9374         * faces.el (font-weight-table): Fix value of `semi-light'.
9376 2008-02-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9378         * faces.el (font-weight-table, font-slant-table, font-swidth-table):
9379         Make those tables bijective.
9381 2008-02-22  Ken Manheimer  <ken.manheimer@gmail.com>
9383         Finish pdbtrack integration cleanup, settling missing-functions
9384         byte compiler warnings appropriately.
9386         * progmodes/python.el (python-point): Remove this - beginning-of-line
9387         was all that was necessary for `python-pdbtrack-overlay-arrow'.
9388         (python-end-of-def-or-class, python-beginning-of-def-or-class)
9389         (python-goto-initial-line): Drop these - they were only needed for
9390         python-point.
9391         (python-comint-output-filter-function): Use condition-case and
9392         beginning-of-line directly, instead of python-mode.el functions
9393         which require all sorts of baggage.
9394         (point-safe): Unnecessary - we're using condition-case directly,
9395         instead.
9396         (python-execute-file): Include for python-shell, which I'm leaving
9397         in keeping despite it being unnecessary for pdb tracking.
9399 2008-02-22  Peter Danenberg  <pcd@wikitex.org>  (tiny change)
9401         * progmodes/scheme.el (scheme-font-lock-keywords-2):
9402         Add SRFI 11 support.
9403         (let-values, let*-values): Specify scheme-indent-function.
9405 2008-02-22  Dan Nicolaescu  <dann@ics.uci.edu>
9407         * vc.el (vc-exec-after): Move setting mode-line-process in the
9408         busy case ...
9409         (vc-set-mode-line-busy-indicator): ... in this new function.
9410         (vc-status-refresh): Call vc-set-mode-line-busy-indicator.
9411         (vc-update-vc-status-buffer): Reset mode-line-process.
9412         (vc-status-mark-all-files, vc-status-unmark-all-files): Change to
9413         mark/unmark all the files with the same state as the current one.
9414         With a prefix argument mark/unmark all files.
9415         (vc-status-mode-menu): Adjust strings.
9416         (vc-update-vc-status-buffer): Only do something when the argument
9417         is not nil.
9418         (vc-status-kill-dir-status-process): New function.
9419         (vc-status-mode-map): Bind it.
9420         (vc-status-process-buffer): New variable.
9421         (vc-status-mode): Make it local.
9422         (vc-status-refresh): Set it.
9424         * vc-hg.el (vc-hg-dir-status):
9425         * vc-git.el (vc-git-dir-status):
9426         * vc-svn.el (vc-svn-dir-status): Return the buffer in which the
9427         command is run.
9429 2008-02-22  Glenn Morris  <rgm@gnu.org>
9431         * json.el (top-level): No need to require thingatpt.
9432         (json-read-keyword): Use thing-at-point rather than word-at-point.
9434         * time.el (top-level): No need to require time-date when compiling.
9436         * emacs-lisp/copyright.el (copyright-update-year):
9437         Fix subexpression numbering for the case when years are split over
9438         lines, and for the replace case.
9440         * emulation/tpu-edt.el (tpu-have-ispell): Doc fix.  Make obsolete.
9441         (tpu-caar, tpu-cadr): Delete functions.
9442         (zmacs-regions): No need to declare for compiler.
9443         (tpu-goto-breadcrumb): Use cadr rather than tpu-cadr.
9444         (tpu-spell-check): Rewrite, and handle mark after point.
9445         (tpu-special-insert): Use or rather than if.
9447         * emulation/vip.el (vip-special-prefix-com): Use ispell-region
9448         rather than spell-region.
9450         * textmodes/spell.el (spell-buffer, spell-word): Suppress compiler
9451         warnings about spell-region.
9453 2008-02-22  Kenichi Handa  <handa@ni.aist.go.jp>
9455         * ldefs-boot.el: Regenerated.
9457         * loadup.el: Don't load language/devanagari, language/kannada,
9458         language/malayalam, and language/tamil.  Load language/sinhala.
9460         * language/indian.el (indian-font-foundry)
9461         (indian-script-language-alist, indian-font-char-index-table)
9462         (indian-font-char, indian-font-char-range, indian-script-table)
9463         (indian-default-script, indian-composable-pattern): Delete them.
9464         ("Devanagari", "Kannada", "Malayalam", "Tamil"): Definitions of
9465         language environments moved to here.
9466         ("Bengali", "Punjabi", "Gujarati", "Oriya", "Telugu"):
9467         New language environments.
9469         * language/devanagari.el, language/devan-util.el,
9470         * language/kannada.el, language/knd-util.el, language/malayalam.el,
9471         * language/mlm-util.el, language/tamil.el, language/tml-util.el:
9472         Delete them.
9474         * language/sinhala.el: New file.
9476 2008-02-21  Ken Manheimer  <ken.manheimer@gmail.com>
9478         Update Nick Robert's port of pdb tracking from python-mode.el.
9480         * progmodes/python.el (python-pdbtrack-toggle-stack-tracking):
9481         Clarify docstring.
9482         (python-pdbtrack-minor-mode-string): A sign indicating that pdb
9483         tracking is happening.
9484         (python-pdbtrack-stack-entry-regexp): Better recognize stack traces.
9485         (python-pdbtrack-input-prompt): Better recognize PDB prompts.
9486         (comint-output-filter-functions): Add python-pdbtrack-track-stack-file.
9487         Tracking is plugged in to all comint buffers once python.el is loaded.
9488         (python-pdbtrack-overlay-arrow): Toggle activation of
9489         `python-pdbtrack-minor-mode-string' in addition to the overlay arrow.
9490         (python-pdbtrack-track-stack-file): Use new
9491         `python-pdbtrack-get-source-buffer' for more flexible access to
9492         debugging source files.
9493         (python-pdbtrack-get-source-buffer): Identify debugging target buffer
9494         according to pdb stack trace, optionally using new
9495         `python-pdbtrack-grub-for-buffer' if file is not locally available.
9496         (python-pdbtrack-grub-for-buffer): Find most recent python-mode
9497         named buffer, or having function with indicated name.
9498         (python-shell): Remove comint-output-filter-functions hook
9499         addition, it's being done elsewhere.  Wrap long line.
9501 2008-02-21  Michael Olson  <mwolson@gnu.org>
9503         * json.el: Replace XEmacs compatibility code to get rid of
9504         compiler warnings.
9506         * time.el: Fix compiler warning.
9508 2008-02-21  Edward O'Connor  <ted@oconnor.cx>
9510         * json.el: New file (JavaScript Object Notation parser / generator).
9512 2008-02-21  Dave Love  <fx@gnu.org>
9514         * progmodes/sym-comp.el: New file.
9516         * progmodes/python.el: Merge from Dave Love's 2008-01-20 version.
9517         Require sym-comp.  Add Python buffer to same-window-buffer-names.
9518         Fixup whitespaces.
9519         (python-font-lock-keywords): Add highlighting for Python builtins.
9520         (python-font-lock-syntactic-keywords): Rewrite.
9521         (python-quote-syntax): Use syntax-ppss-context instead of parsing
9522         ppss directly.
9523         (python-mode-map): Add binding for python-find-function.
9524         (python-calculate-indentation): Clean up the logic.
9525         (python-beginning-of-defun): Explicitly set return value.
9526         (python-beginning-of-statement): Stop looping if we get stuck
9527         going backwards.
9528         (python-next-statement): Stop looping if we somehow end up inside
9529         a string while advancing.
9530         (python-preoutput-continuation, python-version-checked): New vars.
9531         (python-check-version): New function.
9532         (run-python): Set default command to python-command instead of
9533         python-python-command.
9534         (run-python): Use python-check-version.  Give PYTHONPATH
9535         precedence over data-directory in the process environment.
9536         Load function definitions in python process after.
9537         (python-check-comint-prompt): New function.
9538         (python-send-command, python-send-receive): Use it.
9539         (python-complete-symbol, python-try-complete): Functions deleted.
9540         Use symbol-complete instead of python-complete-symbol throughout.
9541         (python-fill-paragraph): Further refine the fenced-string regexp.
9542         (def-python-skeleton): Expand to the original abbrev instead if in
9543         a comment or string.  Tweak skeletons for `if', `while', `for',
9544         `try/except', `try/finally', `name'.
9545         (python-pea-hook, python-abbrev-pc-hook): New functions.
9546         (python-abbrev-syntax-table): New var.
9547         (python-mode): Add python-pea-hook to pre-abbrev-expand-hook.
9548         Use symbol-completion-try-complete for hippie expansion.
9549         Turn on font lock unconditionally.
9550         (python-mode-hook): Defcustom it.  No need to use make-local
9551         variable on indent-tabs-mode in "Turn off Indent Tabs mode"
9552         option, since it's buffer-local.
9554 2008-02-21  Juanma Barranquero  <lekktu@gmail.com>
9556         * play/hanoi.el (hanoi-internal): Set `show-trailing-whitespace' to nil.
9558 2008-02-21  Drew Adams  <drew.adams@oracle.com>
9560         * mouse.el (minor-mode-menu-from-indicator): Create a menu with a
9561         "Turn off" and a "Help" entry when the minor mode has no menu.
9563 2008-02-21  Dan Nicolaescu  <dann@ics.uci.edu>
9565         * vc.el (vc-status-mark, vc-status-unmark): New functions.
9566         (vc-status-mode-map, vc-status-mode-menu): Bind them instead of
9567         vc-status-mark-file and vc-status-unmark-file.
9568         (vc-status-mark-unmark): New function.
9569         (vc-status-previous-line, vc-status-next-line): No longer interactive.
9571 2008-02-21  Glenn Morris  <rgm@gnu.org>
9573         * composite.el (encode-composition-rule): Fix typo in error message.
9574         (composition-function-table, auto-composition-mode): Doc fixes.
9576         * subr.el (sit-for): Fix obsolete form for nil second argument.
9578         * textmodes/spell.el (spell-buffer, spell-word, spell-region)
9579         (spell-string): Make obsolete, in favor of ispell.
9581 2008-02-21  Kenichi Handa  <handa@ni.aist.go.jp>
9583         * language/devanagari.el: Don't setup composition-function-table
9584         here.
9585         ("Devanagari"): Change charset, coding-system, coding-priority to
9586         Unicode-based ones.  Don't require the feature devan-util.
9588         * composite.el (compose-chars-after): Fix arguments for a function
9589         in composition-function-table.
9590         (auto-compose-region): Likewise.
9592         * ps-mule.el (ps-mule-font-info-database-bdf): Use ethio16f-uni.bdf
9593         for Ethiopic.
9594         (ps-mule-plot-string): Ignore glyph-string based compositions.
9596 2008-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9598         * doc-view.el: Allow different windows to show different pages.
9599         (doc-view-current-page, doc-view-current-slice, doc-view-current-info)
9600         (doc-view-current-image, doc-view-current-overlay): Remove variables,
9601         add them back as macros instead, using image-mode-winprops instead.
9602         Update all users of those variables.
9603         (doc-view-new-window-function): New function to create a new overlay
9604         for each new window.
9605         (doc-view-mode): Use it and image-mode-setup-winprops.
9606         (doc-view-clone-buffer-hook): Rewrite accordingly.
9608         * image-mode.el: Extend [hv]scroll support to per-window properties.
9609         (image-mode-current-vscroll, image-mode-current-hscroll): Remove.
9610         (image-mode-winprops-alist): New var to replace them.
9611         (image-mode-new-window-functions): New hook.
9612         (image-mode-winprops, image-mode-window-get, image-mode-window-put):
9613         New funs.
9614         (image-set-window-vscroll, image-set-window-hscroll): Use them.
9615         Remove the `window' argument, update callers.
9616         (image-mode-reapply-winprops): Rename image-reset-current-vhscroll.
9617         Use the new functions.
9618         (image-mode-reapply-winprops): New fun.
9619         (image-mode): Use it.
9621 2008-02-20  Jay Belanger  <jay.p.belanger@gmail.com>
9623         * calc/calc-math.el (math-sin-raw): Add optional argument
9624         to keep track of original argument.
9625         (math-cos-raw): Use optional argument when calling math-sin-raw.
9626         (math-sin-raw-2, math-cos-raw-2): Check for a zero argument
9627         with close to original precision.
9629 2008-02-20  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9631         * textmodes/bibtex.el (bibtex-convert-alien): Do not use optional
9632         args in calls of sit-for.
9634 2008-02-20  Juanma Barranquero  <lekktu@gmail.com>
9636         * vc-svn.el (vc-svn-program): Fix typo in docstring.
9637         (vc-svn-checkin): Fix typo in error message.
9639         * help-mode.el: Require easymenu when compiling.
9641 2008-02-20  Dan Nicolaescu  <dann@ics.uci.edu>
9643         * help-mode.el (help-mode-menu): New menu.
9645 2008-02-20  Glenn Morris  <rgm@gnu.org>
9647         * mail/rmail.el (rmail-autodetect): Add .exe extension to movemail
9648         on Windows.
9650 2008-02-20  Kenichi Handa  <handa@ni.aist.go.jp>
9652         * ps-mule.el (ps-mule-encode-region): Return a single string.
9653         (ps-mule-plot-string): Adjust for the above change.
9654         (ps-mule-encode-header-string): Likewise.
9656         * international/latin1-disp.el (latin1-display): Don't use
9657         ucs-mule-8859-to-mule-unicode.  Fix the way of resetting
9658         standard-display-table.
9659         (latin1-display-identities): Adjust for the change of what is
9660         returned by (get-language-info charset 'charset).
9662         * international/mule-util.el (char-displayable-p): Fix for Latin-1
9663         characters and terminal case.
9665 2008-02-19  Ken Manheimer  <ken.manheimer@gmail.com>
9667         Minor Adaptions by Nick Roberts <nickrob@snap.net.nz> for Emacs.
9669         * progmodes/python.el: Also require comint when loading.
9670         (python-mode-map): Bind python-pdbtrack-toggle-stack-tracking.
9671         Replace python-shell with run-python on menu bar.
9672         (python-shell-map): New map.
9673         (python-default-interpreter, python-python-command-args)
9674         (python-jython-command-args, python-pdbtrack-do-tracking-p):
9675         New options.
9676         (python-which-shell, python-which-args, python-which-bufname):
9677         New buffer local variables.
9678         (python-file-queue, python-pdbtrack-is-tracking-p): New variables.
9680         * progmodes/python.el (python-pdbtrack-stack-entry-regexp)
9681         (python-pdbtrack-input-prompt, python-pdbtrack-track-range):
9682         New constants.
9684         Pdbtrack features:
9686         (python-point, python-end-of-def-or-class)
9687         (python-beginning-of-def-or-class, python-goto-initial-line)
9688         (python-comint-output-filter-function)
9689         (python-pdbtrack-overlay-arrow)
9690         (python-pdbtrack-track-stack-file, python-toggle-shells)
9691         (python-shell, python-pdbtrack-toggle-stack-tracking)
9692         (turn-on-pdbtrack, turn-off-pdbtrack, python-sentinel):
9693         New functions.
9695 2008-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9697         * net/ange-ftp.el (ange-ftp-quote-string): Return the null string
9698         when the argument is nil.
9700 2008-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
9702         * vc.el (dir-status): Add a brief description.
9704 2008-02-19  Thien-Thi Nguyen  <ttn@gnuvola.org>
9706         * vc-hooks.el (vc-find-root): Take optional arg INVERT.
9707         If non-nil, reverse the sense of the check.
9709         * vc-rcs.el (vc-rcs-root): New func.
9710         * vc-cvs.el (vc-cvs-root): New func.
9711         * vc-svn.el (vc-svn-root): New func.
9712         * vc-sccs.el (vc-sccs-root): New func.
9714 2008-02-18  Kenichi Handa  <handa@ni.aist.go.jp>
9716         * language/japan-util.el (setup-japanese-environment-internal):
9717         Call use-cjk-char-width-table.
9719         * language/japanese.el ("Japanese"): Set exit-function to
9720         use-default-char-width-table.
9722         * international/characters.el: Delete occurrences of non-Unicode
9723         tibetan and ethiopic characters.
9724         (cjk-char-width-table): New variable.
9725         (use-cjk-char-width-table, use-default-char-width-table):
9726         New functions.
9728 2008-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
9730         * vc.el (vc-status-menu, vc-status-menu-map-filter): New functions.
9731         (vc-status-mode-menu): Add a :filter.
9732         (vc-status-printer): Add faces.
9734         * vc-hg.el (vc-hg-extra-status-menu): New function.
9735         (vc-hg-dir-status): Clean up the buffer before using it.
9737 2008-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9739         * progmodes/gdb-ui.el (gdb-output-sink): Define with an invalid value.
9740         (gdb): Initialize it here instead.
9742         * files.el (locate-dominating-file): Fix thinko in last change.
9743         Reported by Bruce Stephens <bruce.stephens@isode.com>.
9745 2008-02-18  Dan Nicolaescu  <dann@ics.uci.edu>
9747         * vc.el (vc-status-mode-menu): New menu for vc-status.
9749 2008-02-18  Juanma Barranquero  <lekktu@gmail.com>
9751         * progmodes/verilog-mode.el (customize): Fix typo in error message.
9752         (verilog-mode, verilog-mode-indent, verilog-mode-actions)
9753         (verilog-mode-auto, verilog-indent-level-module)
9754         (verilog-minimum-comment-distance, verilog-library-flags)
9755         (verilog-library-directories, verilog-library-files)
9756         (verilog-auto-reset-widths, verilog-imenu-generic-expression)
9757         (verilog-xemacs-menu, verilog-set-compile-command)
9758         (verilog-set-compile-command, verilog-mode-syntax-table, verilog-mode)
9759         (verilog-get-expr, verilog-strip-comments, verilog-one-line)
9760         (verilog-lint-off, verilog-batch-auto, verilog-batch-delete-auto)
9761         (verilog-batch-inject-auto, verilog-batch-indent)
9762         (verilog-continued-line, verilog-type-keywords)
9763         (verilog-read-sub-decls-sig, verilog-read-sub-decls-line)
9764         (verilog-read-inst-pins, verilog-read-arg-pins)
9765         (verilog-read-auto-template, verilog-read-signals, verilog-getopt-file)
9766         (verilog-add-list-unique, verilog-symbol-detick, verilog-modi-filename)
9767         (verilog-auto-star, verilog-auto-inst, verilog-auto-wire)
9768         (verilog-enum-ascii, verilog-sk-begin, verilog-sk-fork)
9769         (verilog-sk-datadef, verilog-colorize-include-files-buffer)
9770         (verilog-mode-version, verilog-mode-release-date)
9771         (verilog-mode-release-emacs, verilog-linter, verilog-coverage)
9772         (verilog-simulator, verilog-compiler)
9773         (verilog-auto-sense-defines-constant, verilog-company)
9774         (verilog-project, verilog-mark-defun, verilog-submit-bug-report):
9775         Fix typos in docstrings.
9776         (verilog-set-auto-endcomments, verilog-calculate-indent)
9777         (verilog-inject-auto, verilog-auto-arg, verilog-auto-inout-module):
9778         Reflow docstrings.
9779         (verilog-tab-always-indent, verilog-highlight-p1800-keywords)
9780         (verilog-auto-star-save, verilog-auto-inst-vector, verilog-mode-hook)
9781         (electric-verilog-forward-sexp, verilog-in-case-region-p)
9782         (verilog-in-struct-region-p, verilog-in-generate-region-p)
9783         (verilog-leap-to-head, verilog-current-indent-level)
9784         (verilog-case-indent-level, verilog-cpp-keywords)
9785         (verilog-defun-keywords, verilog-block-keywords, verilog-tf-keywords)
9786         (verilog-case-keywords, verilog-separator-keywords, verilog-completion)
9787         (verilog-signals-not-in, verilog-symbol-detick-text)
9788         (verilog-modi-cache-preserve-tick, verilog-modi-cache-preserve-buffer)
9789         (verilog-forward-close-paren, verilog-backward-open-paren)
9790         (verilog-backward-open-bracket): Doc fixes.
9792         * progmodes/gud.el (gud-def, gud-last-speedbar-stackframe): Doc fixes.
9793         (gud-symbol, gud-expansion-speedbar-buttons, gud-speedbar-buttons)
9794         (gud-gdb-run-command-fetch-lines, gud-dbx-use-stopformat-p)
9795         (gud-jdb-classpath, gud-jdb-find-source-using-classpath, jdb)
9796         (gud-find-class, gdb-script-mode, gud-tooltip-event, gud-tooltip-tips):
9797         Fix typos in docstrings.
9799         * w32-vars.el (w32-system-shells): Add TCC (new name for 4NT).
9801 2008-02-18  Bastien Guerry  <Bastien.Guerry@ens.fr>
9803         * info.el (Info-read-node-name): Removed unused `default' arg.
9805 2008-02-18  Thien-Thi Nguyen  <ttn@gnuvola.org>
9807         * vc-git.el (vc-git-after-dir-status, vc-git-dir-status): New funcs.
9809 2008-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9811         * image-mode.el (image-get-display-property): New fun.
9812         (image-forward-hscroll, image-next-line, image-eol, image-eob)
9813         (image-mode, image-minor-mode, image-toggle-display-text)
9814         (image-toggle-display): Use it.
9816 2008-02-18  Jason Rumney  <jasonr@gnu.org>
9818         * international/mule.el (xml-find-file-coding-system): Don't warn
9819         about utf-16 with BOM.
9821         * nxml/nxml-mode.el (nxml-mode): Don't add a write-contents-hook.
9823         * international/mule.el (sgml-xml-auto-coding-function): Detect and
9824         warn if file encoding is not utf-8 and encoding not specified.
9825         (xml-find-file-coding-system): New function.
9826         * international/mule-conf.el (file-coding-system-alist): Use it.
9828 2008-02-17  Glenn Morris  <rgm@gnu.org>
9830         * international/mule-cmds.el (set-locale-environment):
9831         Pass `frame' to getenv for LC_MESSAGES.
9833 2008-02-17  Juri Linkov  <juri@jurta.org>
9835         * time.el (emacs-init-time): Use format instead of format-seconds.
9837 2008-02-17  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9839         * textmodes/bibtex.el (bibtex-search-entry): Rename from
9840         bibtex-find-entry.  Add autoload cookie.
9841         (bibtex-find-entry): Alias for bibtex-search-entry.
9842         (bibtex-search-crossref): Rename from bibtex-find-crossref.
9843         (bibtex-find-crossref): Alias for bibtex-search-crossref.
9844         (bibtex-clean-entry): atomic-change-group removed.
9845         (bibtex-format-entry): Use atomic-change-group.  Use unwind-protect
9846         to locate buffer location where error occurred.
9847         Make error messages more specific.
9848         (bibtex-parse-keys): Only parse if buffer uses bibtex-mode.
9850 2008-02-17  Dan Nicolaescu  <dann@ics.uci.edu>
9852         * progmodes/hideshow.el (hs-minor-mode-map): Move menu creation to
9853         top level.
9855         * simple.el (transient-mark-mode): Add an :init-value.
9857         * startup.el (command-line): Use custom-reevaluate-setting for
9858         transient-mark-mode.
9860 2008-02-17  Michaël Cadilhac  <michael@cadilhac.name>
9862         * wdired.el (wdired-allow-to-change-permissions): Fix typo.
9864 2008-02-16  Juri Linkov  <juri@jurta.org>
9866         * startup.el (after-init-time): New variable.
9867         (command-line): Set `after-init-time' to the current time.
9869         * time.el (emacs-init-time): New function.
9871 2008-02-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9873         * files.el (locate-dominating-file): Remove initial loop because it's
9874         not careful enough.  Detect the uid-change all within the main loop.
9876 2008-02-16  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
9878         * ielm.el (ielm-is-whitespace-or-comment): Docstring fix.
9880 2008-02-16  Dan Nicolaescu  <dann@ics.uci.edu>
9882         * vc.el (vc-annotate): Add new argument.
9883         (vc-annotate-warp-revision): Pass the current line to vc-annotate.
9885         * progmodes/hideshow.el: Remove the minor-mode bookkeeping.
9886         Move make-variable-buffer-local code after the corresponding defvar.
9887         (hs-minor-mode-map): Define and initialize in one step.
9888         (hs-minor-mode): Change from defun to define-minor-mode.
9890 2008-02-16  Nick Roberts  <nickrob@snap.net.nz>
9892         * progmodes/gud.el (gud-gdb): Don't reset gdb-ready.
9893         (gdb-ready): Move declaration...
9895         * progmodes/gdb-ui.el (gdb-ready): ...to here.
9896         (gdb-early-user-input): New variable.
9897         (gdb): Reset gdb-flush-pending-output to nil and set
9898         comint-input-sender here (before gdb-prompt), instead of...
9899         (gdb-init-1): ...here.
9900         (gdb-send): If Emacs is not ready, defer user input to...
9901         (gdb-prompt): ...here.
9903 2008-02-16  Glenn Morris  <rgm@gnu.org>
9905         * nxml/test.invalid.xml, nxml/test.valid.xml: Move to etc/nxml.
9907         * startup.el (emacs-startup-time): Rename to `before-init-time'.
9908         (before-init-time): New name for `emacs-startup-time'.
9909         (command-line): Use before-init-time rather than emacs-startup-time.
9910         * time.el (emacs-uptime): Use before-init-time rather than
9911         emacs-startup-time.
9913         * composite.el (composition-function-table): Doc fix.
9915         * calendar/time-date.el (format-seconds): Remove `nonzero' argument
9916         in favor of `%z' specifier.
9917         (emacs-uptime): Move to time.el.
9918         * time.el (emacs-uptime): Move here from time-date.el.  Add optional
9919         `format' argument.  Doc fix.  Use `%z' rather than removed `nonzero'
9920         argument of format-seconds.
9922 2008-02-16  Dan Nicolaescu  <dann@ics.uci.edu>
9924         * bindings.el (mode-line-mule-info): Make the tooltips more explicit.
9926 2008-02-15  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
9928         * ielm.el (ielm-is-whitespace): Remove.
9929         (ielm-is-whitespace-or-comment): New function.
9930         (ielm-eval-input): Use it.
9932 2008-02-15  Jason Rumney  <jasonr@gnu.org>
9934         * term/mac-win.el: Fix coding tag.
9936 2008-02-15  Dan Nicolaescu  <dann@ics.uci.edu>
9938         * vc-hooks.el (vc-menu-map):
9939         * bindings.el (mode-line-mode-menu): Add tooltips.
9941         * bindings.el (help-echo): Add more tooltips.  Use a less
9942         telegraphic style for existing tooltips.
9944 2008-02-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9946         * frame.el (frame-notice-user-settings): Distinguish explicit parent-id
9947         from the auto-generated one.
9949 2008-02-14  Glenn Morris  <rgm@gnu.org>
9951         * mail/rmail-spam-filter.el (rmail-spam-filter):
9952         Let-bind message-spam-status.
9954         * mail/smtpmail.el (password-cache-add): Declare as function.
9956 2008-02-14  Justus Piater  <Justus-bulk@Piater.name>  (tiny change)
9958         * mail/smtpmail.el: Use password-cache.
9960 2008-02-14  Juanma Barranquero  <lekktu@gmail.com>
9962         * uniquify.el (uniquify-buffer-base-name): New function.
9963         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
9965         * desktop.el (uniquify-managed): Don't defvar.
9966         (desktop-buffer-info): Use `uniquify-buffer-base-name', not
9967         `uniquify-managed'.  Return also the buffer's base name.
9968         (desktop-save): When saving the buffer info, filter out the base name,
9969         and save it as buffer name if the buffer is managed by uniquify.
9970         (uniquify-item-base): Don't declare; not called anymore.
9972 2008-02-14  Dan Nicolaescu  <dann@ics.uci.edu>
9974         * vc.el (vc-annotate-find-revision-at-line): New function.
9975         (vc-annotate-mode-map): Bind it.
9976         (vc-annotate-mode-menu): Add a menu entry for it.  Add :help for
9977         some entries.
9979 2008-02-14  Glenn Morris  <rgm@gnu.org>
9981         * calendar/time-date.el (format-seconds): New function.
9982         (emacs-uptime): Use format-seconds.
9984         * Makefile.in (custom-deps, finder-data, autoloads, recompile):
9985         Remove `LC_ALL=C', since it's included in $(emacs) now.
9987 2008-02-14  Zhang Wei  <id.brep@gmail.com>
9989         * textmodes/org-publish.el (org-publish-timestamp-filename):
9990         Replace colon characters in filename too.
9992 2008-02-13  Bastien Guerry  <bzg@altern.org>
9994         * mail/rmail.el (rmail-header-name): New face.
9995         (rmail-font-lock-keywords): Use rmail-header-name.
9997         * mail/rmail-spam-filter.el (rsf-definitions-alist): Allow check
9998         against X-Spam-Status header field.
9999         (rmail-spam-filter): Also check X-Spam-Status header field.
10001 2008-02-14  Mark A. Hershberger  <mah@everybody.org>
10003         * progmodes/flymake.el (flymake-allowed-file-name-masks):
10004         Add support for .pm files and .php files.
10005         (flymake-err-line-patterns): Add pattern for PHP errors.
10006         (flymake-php-init): New function.  PHP support for flymake.
10008         * progmodes/compile.el (compilation-error-regexp-alist-alist):
10009         Add regular expression for PHP errors.
10011 2008-02-13  Michael Albinus  <michael.albinus@gmx.de>
10013         * net/ange-ftp.el (ange-ftp-quote-string): Use `shell-quote-argument'.
10014         This DTRT even on w32 machines.
10015         (ange-ftp-cf1): Quote FILENAME.
10017 2008-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10019         * smerge-mode.el (smerge-auto-combine-max-separation): New var.
10020         (smerge-auto-combine): New fun.
10022 2008-02-12  Juri Linkov  <juri@jurta.org>
10024         * startup.el (fancy-startup-screen, normal-splash-screen):
10025         Set default-directory to command-line-default-directory.
10027         * desktop.el (after-init-hook): Set inhibit-startup-screen to t
10028         after reading the desktop.
10030         * progmodes/compile.el (compilation-auto-jump):
10031         Call compile-goto-error only when compilation-auto-jump-to-first-error
10032         is non-nil.
10033         (compilation-scroll-output): Replace :type 'boolean with a choice
10034         that has three options including a third option `first-error'.
10035         Doc fix.
10036         (compilation-start, compilation-forget-errors): Add an alternate
10037         condition comparing compilation-scroll-output with `first-error'
10038         in addition to compilation-auto-jump-to-first-error (to call
10039         compilation-auto-jump in the proper place).
10041 2008-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10043         * international/mule.el (sgml-html-meta-auto-coding-function):
10044         Make sure the search limit is ahead.
10046         * tar-mode.el: Fix broken indentation.
10047         (tar-mouse-extract, tar-extract, tar-subfile-save-buffer):
10048         Use with-current-buffer.
10050 2008-02-12  Juanma Barranquero  <lekktu@gmail.com>
10052         * hexl.el (hexl-mode): Don't make `font-lock-defaults' buffer-local;
10053         it is already automatically buffer-local.
10055 2008-02-11  Drew Adams  <drew.adams@oracle.com>
10057         * help.el (describe-key): Join some split lines to facilitate filling.
10058         * help-fns.el (describe-function-1): Fill text of overlong lines.
10060 2008-02-12  Kenichi Handa  <handa@ni.aist.go.jp>
10062         * emacs-lisp/bytecomp.el (byte-compile-lapcode):
10063         Use unibyte-string instead of string-make-unibyte.
10065         * Makefile.in (AUTOGENEL): Remove charprop.el and uni-*.el.
10067 2008-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10069         * doc-view.el (doc-view-display): Change file arg to buffer arg, so it
10070         works also for buffers w/o buffer-file-name.  Update callers.
10071         (doc-view-clone-buffer-hook): New fun.
10072         (doc-view-mode): Use it for indirect clones.  Mark the overlays with
10073         the `doc-view' property so they can be recognized.
10075         * simple.el (clone-indirect-buffer-hook): New hook.
10076         (clone-indirect-buffer): Run it.
10078 2008-02-11  Daiki Ueno  <ueno@unixuser.org>
10080         * epa.el (epa-menu-mode): Merge into epa-mode.
10081         (epa-menu-items): Rename the label "EasyPG Assistant" to
10082         "Encryption/Decryption".
10084         * epa-dired.el: Define a new minor-mode epa-dired-mode for dired.
10085         (epa-dired-mode-map): Rename from epa-dired-map.
10086         (epa-global-dired-mode): Rename the global minor mode.
10088 2008-02-11  Drew Adams  <drew.adams@oracle.com>
10090         * isearch.el (isearch-fail): New face.
10091         (isearch-message): Highlight failure part of input.
10093 2008-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10095         * ibuffer.el (ibuffer-header-line-format): New var.
10096         (ibuffer-mode): Set it instead of header-line-format.
10097         (ibuffer-update): Use it to set header-line-format.
10099         * international/mule-cmds.el (ucs-insert): Inherit surrounding
10100         properties like self-insert-command.
10102 2008-02-11  Drew Adams  <drew.adams@oracle.com>
10104         * progmodes/etags.el: Add many doc strings.
10106 2008-02-11  Jason Rumney  <jasonr@gnu.org>
10108         * ldefs-boot.el: Regenerated.
10110 2008-02-11  Glenn Morris  <rgm@gnu.org>
10112         * progmodes/compile.el (compilation-error-regexp-alist-alist):
10113         Shorten some names.
10115         * ffap.el (ffap-rfc-directories): Add :version.
10117 2008-02-11  Chris Moore  <christopher.ian.moore@gmail.com>
10119         * jka-cmpr-hook.el (jka-compr-compression-info-list): Handle .sifz
10120         files, and backup files of same.
10122 2008-02-11  Kevin Ryde  <user42@zip.com.au>
10124         * ffap.el (ffap-rfc-directories): New variable.
10125         (ffap-rfc): Look in those dirs before offering ffap-rfc-path.
10127         * info.el (Info-next-reference, Info-prev-reference)
10128         (Info-try-follow-nearest-node): Move to and follow https:// links too.
10130         * simple.el (completion-list-mode): Show full completion-list-mode-map
10131         in the docstring.
10133 2008-02-11  Sam Steingold  <sds@gnu.org>
10135         * vc-hooks.el (vc-prefix-key): Remove (undo 2008-02-06 patch).
10137 2008-02-11  Glenn Morris  <rgm@gnu.org>
10139         * startup.el (emacs-startup-time): New variable.
10140         (command-line): Set emacs-startup-time.
10142         * calendar/time-date.el (emacs-uptime): New function.
10144 2008-02-10  Bastien Guerry  <bzg@altern.org>
10146         * mail/rmail.el (rmail-nonignored-headers): Allow to be nil.
10147         (rmail-clear-headers): Don't check `rmail-nonignored-headers' when
10148         it is nil.
10150 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
10152         * epg-config.el: Expand the contents of epg-package-info.el.
10153         (epg-package-name): New constant.
10154         (epg-version-number): New constant.
10155         (epg-bug-report-address): New constant.
10157         * epa-mail.el (epa-mail-mode): Add autoload cookie.
10158         (epa-global-mail-mode): New global minor mode.
10160         * epa-file.el (epa-file-mode): New global minor mode.
10162         * epa-dired.el (epa-dired-mode): New global minor mode.
10164         * epa.el (epa-menu): New variable.
10165         (epa-menu-items): New variable.
10166         (epa-menu-mode): New global minor mode.
10167         (epa-global-minor-modes): New user option.
10168         (epa-mode): New global minor mode.
10170 2008-02-10  Michael Albinus  <michael.albinus@gmx.de>
10172         * net/dbus.el: Remove `no-byte-compile' cookie.
10173         (dbus-call-method, dbus-register-signal, dbus-debug)
10174         (dbus-registered-functions-table): Declare them with
10175         `declare-function' or `defvar', respectively.
10176         (top): Don't assert any longer.  Require 'cl when compiling.
10177         Apply `ignore-errors' but `dbus-ignore-errors'.
10179 2008-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
10181         * diff-mode.el (diff-add-change-log-entries-other-window):
10182         Use add-change-log-entry.
10184 2008-02-09  Jason Rumney  <jasonr@gnu.org>
10186         * button.el (button-map):
10187         * wid-edit.el (widget-keymap): Avoid line-end confusion in autoloads.
10188         * ldefs-boot.el: Regenerate.
10190 2008-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
10192         * epa.el (epa-faces, epa):
10193         * epa-file.el (epa-file):
10194         * epg-config.el (epg): Add :version.
10196 2008-02-09  Thien-Thi Nguyen  <ttn@gnuvola.org>
10198         * vc.el (vc-exec-after): Append CODE to previous fragments.
10199         (vc-diff-finish): Take BUFFER directly, not BUFFER-NAME;
10200         take MESSAGES instead of VERBOSE; use it when non-nil.
10201         (vc-diff-internal): Compute messages once; use them;
10202         update call to vc-diff-finish.
10204 2008-02-09  Michael Olson  <mwolson@gnu.org>
10206         * net/tramp.el (tramp-process-sentinel): Avoid error when process
10207         buffer has been killed, such as by
10208         `tramp-cleanup-all-connections'.
10210 2008-02-09  Miles Bader  <miles@gnu.org>
10212         * net/rcirc.el (rcirc-omit-mode): Suppress invisibility ellipsis.
10214 2008-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
10216         * diff-mode.el (diff-add-change-log-entries-other-window): Avoid the
10217         splitter in context hunks.
10219 2008-02-08  Kenichi Handa  <handa@ni.aist.go.jp>
10221         * international/fontset.el (setup-default-fontset): Fix arabic otf
10222         font specification.
10224 2008-02-08  Daiki Ueno  <ueno@unixuser.org>
10226         * epa-dired.el:
10227         * epa-file.el:
10228         * epa-mail.el:
10229         * epa-setup.el:
10230         * epa.el:
10231         * epg-config.el:
10232         * epg-package-info.el:
10233         * epg.el: Initial check-in of EasyPG.
10235 2008-02-08  Glenn Morris  <rgm@gnu.org>
10237         * woman.el (woman-locale): New defcustom.
10238         (woman-expand-locale, woman-manpath-add-locales): New functions.
10239         (woman-manpath): Call woman-manpath-add-locales.  Bump :version.
10241         * international/mule-cmds.el (locale-translate): New function,
10242         with old code extracted from set-locale-environment.
10243         (set-locale-environment): Use locale-translate.  Set woman-locale.
10245         * cus-start.el (selection-coding-system): Remove, since it's now
10246         defined in select.el rather than in xselect.c.
10247         * select.el (selection-coding-system): Make it a defcustom, and
10248         add the properties from cus-start.el.  Bump :version.
10250         * custom.el (custom-theme-set-variables): Sort symbols that are
10251         dependencies before symbols that depend on them.
10252         (custom-enabled-themes): Set after custom-theme-directory.
10254         * pcmpl-unix.el (top-level): Move provide statement to end.
10255         (pcmpl-unix-group-file, pcmpl-unix-passwd-file): Remove leading
10256         `*' from doc-string.  Allow to be nil.
10257         (pcmpl-ssh-known-hosts-file): Convert comment into expanded doc-string.
10258         Allow to be nil.  Add :version.
10259         (pcmpl-ssh-hosts): Move definition before use.  Handle lines
10260         without hostnames, and multiple hostnames per line.
10262         * term/x-win.el (x-handle-parent-id): Remove free variable `parent-id'.
10264 2008-02-08  Phil Hagelberg  <phil@evri.com>
10266         * pcmpl-unix.el (pcmpl-ssh-known-hosts-file): New defcustom.
10267         (pcomplete/ssh, pcomplete/scp, pcmpl-ssh-hosts): New functions.
10269 2008-02-07  Timo Savola  <timo.savola@iki.fi>
10271         * startup.el (command-line-x-option-alist): Add --parent-id.
10273         * term/x-win.el (x-handle-parent-id): New function.
10275 2008-02-07  Chris Moore  <christopher.ian.moore@gmail.com>
10277         * mouse.el (x-fixed-font-alist): Use consistent capitalization for
10278         "Font Menu".
10280 2008-02-06  Michael Albinus  <michael.albinus@gmx.de>
10282         * net/dbus.el (dbus-interface-peer): New defconst.
10283         (dbus-ping): New defun.
10285 2008-02-06  Sam Steingold  <sds@gnu.org>
10287         * vc-hooks.el (vc-prefix-key): New user-customizable variable.
10289 2008-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
10291         * net/ange-ftp.el (ange-ftp-unhandled-file-name-directory):
10292         Just return nil and let the C code provide a fallback.
10294 2008-02-05  Glenn Morris  <rgm@gnu.org>
10296         * net/tramp-cmds.el (tramp-cleanup-connection): Update calls to
10297         tramp-flush-connection-property for removed 2nd argument.
10299 2008-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10301         * diff-mode.el (diff-add-change-log-entries-other-window):
10302         Rename from diff-create-changelog.  Change users.
10303         Minor change to hopefully work with plain diffs.
10304         (diff-mode-map): Add binding for it.
10306 2008-02-04  Dan Nicolaescu  <dann@ics.uci.edu>
10308         * diff-mode.el: Add new TODO entry.
10309         (diff-create-changelog): New function.
10310         (diff-mode-menu): Bind it.
10312 2008-02-04  Kenichi Handa  <handa@ni.aist.go.jp>
10314         * international/mule-diag.el (print-fontset-element): Handle the
10315         case of inhibiting the fallback fonts.
10317 2008-02-04  Kim F. Storm  <storm@cua.dk>
10319         * ido.el (ido-magic-forward-char, ido-magic-backward-char)
10320         (ido-magic-delete-char): Use prefix arg.
10322 2008-02-03  Juanma Barranquero  <lekktu@gmail.com>
10324         * term/w32-win.el (image-library-alist): Prefer libpng12 to libpng13,
10325         because the latter is in fact a 1.2.8 build distributed with GTK+ (as
10326         of today, the most recent libpng is 1.2.24).
10328 2008-02-03  Michael Albinus  <michael.albinus@gmx.de>
10330         * ediff-util.el (ediff-compute-custom-diffs-maybe): Handle remote files.
10332         * net/dbus.el (top): Check (featurep 'dbusbind).
10334         * net/tramp.el (tramp-process-sentinel): New defun.
10335         (tramp-do-copy-or-rename-file-out-of-band)
10336         (tramp-maybe-open-connection): Use it as process sentinel.
10337         (tramp-handle-delete-directory): Don't use the "-f" option; it
10338         isn't portable.
10339         (tramp-handle-start-file-process): Echo `tramp-end-of-output'
10340         after the command.
10341         (tramp-handle-shell-command): Set `mode-line-process' in the
10342         asynchronous case.
10344         * net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
10346         * net/tramp-fish.el (tramp-fish-maybe-open-connection):
10347         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
10348         Use `tramp-process-sentinel' as process sentinel.
10350 2008-02-02  Juanma Barranquero  <lekktu@gmail.com>
10352         * whitespace.el (global-whitespace-mode): Revert last change.
10353         (whitespace-unload-function): Force `global-whitespace-mode'
10354         to deactivate local modes in a slightly less intrusive way.
10356 2008-02-02  Eli Zaretskii  <eliz@gnu.org>
10358         * view.el (kill-buffer-if-not-modified): Add an autoload cookie.
10360 2008-02-02  Glenn Morris  <rgm@gnu.org>
10362         * international/latin1-disp.el (latin1-display):
10363         * progmodes/fortran.el (fortran-comment-indent-char):
10364         * progmodes/idlw-shell.el (top-level):
10365         * term/mac-win.el (mac-keyboard-translate-char):
10366         * whitespace.el (whitespace-char-valid-p):
10367         * wid-edit.el (widget-key-sequence-read-event):
10368         Use characterp rather than char-valid-p.
10370         * progmodes/cap-words.el (capitalized-next-word-boundary): Rename
10371         to capitalized-find-word-boundary.  Doc fix.  Update callers.
10372         (capitalized-next-word-boundary-function-table): Rename to
10373         capitalized-find-word-boundary-function-table.  Doc fix.  Update users.
10375         * ps-bdf.el (bdf-read-font-info): Use string-to-number rather than
10376         string-to-int.
10378         * ps-def.el (declare-function): Add compatibility definition.
10379         (ps-plot-with-face, ps-plot-string): Declare as functions.
10380         (ps-bold-faces, ps-italic-faces): Declare variables.
10382         * ps-print.el (ps-mule-initialize, ps-mule-begin-job)
10383         (ps-mule-end-job): Declare as functions.
10385         * wid-edit.el (widget-string-complete): Use assoc-string rather
10386         than assoc-ignore-case.
10388 See ChangeLog.13 for earlier changes.
10390 ;; Local Variables:
10391 ;; coding: utf-8
10392 ;; add-log-time-zone-rule: t
10393 ;; bug-reference-url-format: "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s"
10394 ;; End:
10396     Copyright (C) 2008  Free Software Foundation, Inc.
10398   This file is part of GNU Emacs.
10400   GNU Emacs is free software: you can redistribute it and/or modify
10401   it under the terms of the GNU General Public License as published by
10402   the Free Software Foundation, either version 3 of the License, or
10403   (at your option) any later version.
10405   GNU Emacs is distributed in the hope that it will be useful,
10406   but WITHOUT ANY WARRANTY; without even the implied warranty of
10407   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10408   GNU General Public License for more details.
10410   You should have received a copy of the GNU General Public License
10411   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
10413 ;; arch-tag: c241c1f9-d668-48bf-920a-2897ed0340bc