Remove dead code.
[emacs.git] / lisp / ChangeLog
blob93da1b848601cdb80fceb296e55fa48ef12208c6
1 2008-05-11  Eric S. Raymond  <esr@snark.thyrsus.com>
3         * vc-hooks.el (vc-recompute-state): Removed (dead code).
5 2008-05-10  Dan Nicolaescu  <dann@ics.uci.edu>
7         * vc-dispatcher.el (ewoc): Require.
8         (vc-log-edit, vc-buffer-sync): Declare for byte compiler.
10         * vc-hg.el (vc-hg-diff, vc-hg-annotate-command): Use when not if.
12 2008-05-10  Chong Yidong  <cyd@stupidchicken.com>
14         * term/w32-win.el (x-colors):
15         * term/mac-win.el (x-colors):
16         * term/x-win.el (x-colors): Re-order colors.
18 2008-05-10  Reiner Steib  <reiner.steib@gmx.de>
20         * smerge-mode.el (smerge-command-prefix): Fix custom type.
22 2008-05-10  Eric S. Raymond  <esr@snark.thyrsus.com>
24         * vc-dispatcher.el (vc-dir-next-directory, vc-dir-prev-directory):
25         New functions implementing motion to next and previous directory.
27         * vc-arch.el (vc-arch-command):
28         * vc-bzr.el (vc-bzr-command):
29         * vc-cvs.el (vc-cvs-command):
30         * vc-dispatcher.el (vc-do-command):
31         * vc-git.el (vc-git-command):
32         * vc-hg.el (vc-hg-command):
33         * vc-mcvs.el (vc-mvcs-command):
34         * vc-mtn.el (vc-mtn-command):
35         * vc-sccs.el (vc-sccs-command, vc-sccs-workfile)
36         (vc-sccs-workfile-unchanged-p):
37         * vc-svn.el (vc-svn-command, vc-svn-create-repo),
38         * vc-rcs.el (all methods): Remove assumption about what a nil
39         argument to vc-do-command means.  This means no buffer name needs
40         to be hardcoded into the dispatcher layer, and it's better to be
41         explicit anyway.
43         * vc-svn.el (vc-svn-dir-state-heuristic): Remove.
45 2008-05-10  Dan Nicolaescu  <dann@ics.uci.edu>
47         * vc.el: Update todo.
49         * vc-sccs.el (vc-sccs-dir-status):
50         * vc-rcs.el (vc-rcs-dir-status): Avoid using results from multiple
51         backends and returning up to date files.
53         * vc-hooks.el (vc-prefix-map): Remove duplicate binding.
55 2008-05-09  Eric S. Raymond  <esr@snark.thyrsus.com>
57         * vc.el (vc-dir):
58         * vc-hooks.el: Tweak the VC directory bindings.  These are now
59         documented in the manual.
61         * vc-dispatcher.el (vc-dir-update, vc-dir-parent-marked-p)
62         (vc-dir-children-marked-p): Remove the vc-dir-insert-directories
63         global.
64         (vc-dispatcher-selection-set): Allow callers to pass in an
65         observer flag that says no buffer sync is required.
66         * vc.el (vc-deduce-fileset, vc-print-log, vc-version-diff):
67         Use the observer flag.
69 2008-05-09  Michael Albinus  <michael.albinus@gmx.de>
71         * simple.el (start-file-process): Clarify docstring.
73 2008-05-09  Eric S. Raymond  <esr@snark.thyrsus.com>
75         * vc-sccs.el, vc.svn.el, vc-git.el, vc-hg.el, vc-mtn.el: Remove
76         stub implementations of, and references to, wash-log.
77         * vc-rcs.el (vc-rcs-comment-history):
78         * vc-cvs.el (vc-cvs-comment-history):
79         Inline the code that used to be wash-log.
81         * vc-sccs.el (vc-sccs-checkin, vc-sccs-checkout, vc-sccs-rollback)
82         (vc-sccs-revert, vc-sccs-steal-lock, vc-sccs-modify-change-comment,
83         vc-sccs-print-log, vc-sccs-diff): Grok directories.
84         * vc-rcs.el (vc-sccs-checkin, vc-sccs-checkout,
85         (vc-rcs-revert, vc-rcs-steal-lock, vc-rcs-modify-change-comment)
86         (vc-rcs-print-log): Grok directories.
88 2008-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
90         * vc.el (vc-mark-resolved): Add `backend' argument.
91         (vc-next-action): Pass it the backend.
92         (vc-next-action, vc-checkout, vc-mark-resolved, vc-version-diff)
93         (vc-merge, vc-rollback, vc-update, vc-transfer-file, vc-delete-file)
94         (vc-default-comment-history, vc-default-create-snapshot)
95         (vc-default-retrieve-snapshot, vc-default-revert, vc-annotate)
96         (vc-annotate-revision-previous-to-line)
97         (vc-annotate-show-diff-revision-at-line, vc-annotate-warp-revision):
98         * vc-svn.el (vc-svn-checkout):
99         * vc-mcvs.el (vc-mcvs-checkout):
100         * vc-hooks.el (vc-state, vc-default-workfile-unchanged-p)
101         (vc-working-revision, vc-before-save, vc-mode-line):
102         Prefer vc-call-backend to vc-call so as not to recompute the backend.
104         * vc.el (vc-deduce-fileset): Don't require the checkout-model and the
105         state to be consistent since it's often an unwarranted restriction.
106         Don't return the state either.
107         (vc-next-action): Check that the state is consistent.
108         (vc-diff-internal, vc-version-diff, vc-print-log, vc-revert)
109         (vc-rollback, vc-update): Adapt to new return value of
110         vc-deduce-fileset.
112         * vc-dispatcher.el (vc-dispatcher-browsing): Use derived-mode-p.
113         (vc-dir-prepare-status-buffer): Use vc-dispatcher-browsing.
114         (vc-dispatcher-in-fileset-p): New fun.
115         (vc-dispatcher-selection-set): Use it to properly handle directories.
117 2008-05-09  Dan Nicolaescu  <dann@ics.uci.edu>
119         * vc.el (vc-version-diff, vc-print-log, vc-revert, vc-rollback)
120         (vc-update): Remove unused let bindings.
122 2008-05-09  Eric S. Raymond  <esr@snark.thyrsus.com>
124         * vc.el (vc-deduce-fileset, vc-next-action, vc-version-diff)
125         (vc-diff, vc-revert, vc-rollback, vc-update),
126         vc-dispatcher.el (vc-dispatcher-selection-set):
127         Get rid of 4 special cases in fileset selection.  This involved
128         changing the return value of (vc-deduce-fileset) so that it passes
129         back a deduced state as well as a deduced back end,
131 2008-05-08  Sam Steingold  <sds@gnu.org>
133         * progmodes/compile.el (compilation-minor-mode-map)
134         (compilation-mode-map):  Bind "g" to recompile and "q" to
135         quit-window.
136         * grep.el (grep-mode-map): Use `set-keymap-parent' to connect it
137         to `compilation-minor-mode-map' (instead of an explicit `cons').
139 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
141         * org/org.el (org-modules, org-format-latex-options):
142         * org/org-archive.el (org-archive-stamp-time)
143         (org-archive-save-context-info):
144         * org/org-faces.el (org-hide):
145         * org/org-irc.el (org-irc-parse-link):
146         * org/org-macs.el (org-call-with-arg, org-autoload):
147         * org/org-mew.el (org-mew-store-link):
148         * org/org-remember.el (org-remember-store-without-prompt)
149         (org-remember-templates): Fix typos in docstrings.
151         * org/org-info.el (org-info-store-link): Remove leftover docstring.
153         * org/org-bbdb.el (org-bbdb-export): Remove leftover docstring.
154         (org-bbdb-anniversary-field, org-bbdb-extract-date-fun)
155         (org-bbdb-anniv-split): Fix typos in docstrings.
157         * org/org-publish.el (org-publish-project-alist): Doc fixes.
158         (org-publish-use-timestamps-flag): Reflow docstring.
159         (org-publish-files-alist): Fix typos in docstring.
161 2008-05-07  Sam Steingold  <sds@gnu.org>
163         * pcvs-util.el (cvs-bury-buffer): Revert my patch: quit-window
164         appears to be too aggressive with window removal.
166 2008-05-08  Michael McNamara  <mac@mail.brushroad.com>
168         * verilog-mode.el (verilog-type-font-keywords): Add leda and 0in
169         as pragma keywords.
170         (verilog-pretty-expr): Support lining up assignments which include
171         part selects.
172         (verilog-mode): More portable check for the availability of
173         hideshow support.
174         (verilog-do-indent): Remove special indent for declarations inside
175         a parenthetical list.  The code is ill-advised, and doesn't work
176         given the new user defined types.
177         (verilog-set-auto-endcomments): Enhance function automatic
178         endcomment to support functions that return user defined types.
179         (verilog-mode): Add code to tell which-function-mode minor mode
180         that Verilog supports this feature.
182 2008-05-08  Eli Zaretskii  <eliz@gnu.org>
184         * epa-file.el: Require epa-hook.
186         * loadup.el ("epa-hook"): Load epa-hook instead of epa-file-hook.
188         * epa-hook.el: Renamed from epa-file-hook.el, to avoid
189         file-names clashes on 8+3 filesystems.  Provide epa-hook.
191         * org/org-jsinfo.el: Renamed from org-infojs.el, to avoid
192         file-names clashes on 8+3 filesystems.
194 2008-05-08  Carsten Dominik  <dominik@science.uva.nl>
196         * org/org.el (org-read-date-get-relative): Interpret lone
197         weekday abbreviation as relative to today.
199 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
201         * abbrev.el (define-abbrev-table):
202         * composite.el (toggle-auto-composition):
203         * json.el (json-alist-p, json-plist-p):
204         * minibuffer.el (completion-table-with-predicate):
205         * ps-mule.el (ps-mule-external-libraries):
206         * emacs-lisp/advice.el (ad-special-form-p):
207         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
208         * eshell/em-smart.el (eshell-review-quick-commands):
209         * progmodes/python.el (python-comment-line-p, python-blank-line-p)
210         (python-skip-out, python-check-comint-prompt):
211         Don't use `iff' in docstrings.
213         * international/robin.el (robin-package-alist): Fix typo in docstring.
214         (robin-current-package-name): Doc fix.
215         (robin-activate): Don't use `iff' in docstring.
217 2008-05-07  Eric S. Raymond  <esr@snark.thyrsus.com>
219         * vc.el, vc-dispatcher.el: VC-Dired support removed.
220         The code uses a ewoc-based implementation now.
221         * vc-hooks.el: Support for Meta-CVS has been removed.
223 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
225         * tool-bar.el: Choose images dynamically.
226         (tool-bar-make-keymap, tool-bar-find-image): New function.
227         (tool-bar-find-image-cache): New var.
228         (tool-bar-local-item, tool-bar-local-item-from-menu):
229         Don't select the image yet, do it later in tool-bar-make-keymap.
231 2008-05-07  Andreas Schwab  <schwab@suse.de>
233         * window.el: Require 'cl when compiling.
235 2008-05-07  Dan Nicolaescu  <dann@ics.uci.edu>
237         * vc-dispatcher.el (vc-dir-insert-directories): Default to t.
239 2008-05-07  Glenn Morris  <rgm@gnu.org>
241         * subr.el (ignore-errors): Move here from cl-macs.el.
242         * emacs-lisp/cl-macs.el (ignore-errors): Move to subr.el.
244         * progmodes/fortran.el (fortran-mode): Fix font-lock-syntactic-keywords
245         oddness.
247 2008-05-06  Eric S. Raymond  <esr@snark.thyrsus.com>
249         * vc-hooks.el (vc-find-file-hook):
250         * vc-dispatcher.el (vc-resynch-window): Decouple vc-dispatcher
251         further from vc.el.
252         * vc.el (vc-dir-mode): Move VC-specific context menu entries here.
254 2008-05-06  Wilson Snyder  <wsnyder@wsnyder.org>
256         * verilog-mode.el (verilog-getopt-file): Cleanup warning message format.
257         (verilog-auto, verilog-auto-arg, verilog-auto-ascii-enum)
258         (verilog-auto-inout, verilog-auto-inout-module)
259         (verilog-auto-input, verilog-auto-inst, verilog-auto-inst-param)
260         (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
261         (verilog-auto-reg-input, verilog-auto-reset, verilog-auto-sense)
262         (verilog-auto-sense-sigs, verilog-auto-tieoff)
263         (verilog-auto-unused, verilog-auto-wire)
264         (verilog-decls-get-assigns, verilog-decls-get-consts)
265         (verilog-decls-get-gparams, verilog-decls-get-inouts)
266         (verilog-decls-get-inputs, verilog-decls-get-outputs)
267         (verilog-decls-get-ports, verilog-decls-get-regs)
268         (verilog-decls-get-signals, verilog-decls-get-wires)
269         (verilog-dir-cache-lib-filenames, verilog-dir-cache-list)
270         (verilog-dir-cache-preserving, verilog-dir-file-exists-p)
271         (verilog-dir-files, verilog-expand-dirnames, verilog-getopt-file)
272         (verilog-inject-sense, verilog-library-filenames)
273         (verilog-mode-release-date, verilog-mode-version)
274         (verilog-modi-cache-add, verilog-modi-cache-preserve-buffer)
275         (verilog-modi-cache-preserve-tick, verilog-modi-cache-results)
276         (verilog-modi-get-assigns, verilog-modi-get-consts)
277         (verilog-modi-get-gparams, verilog-modi-get-inouts)
278         (verilog-modi-get-inputs, verilog-modi-get-outputs)
279         (verilog-modi-get-ports, verilog-modi-get-regs)
280         (verilog-modi-get-signals, verilog-modi-get-sub-inouts)
281         (verilog-modi-get-sub-inputs, verilog-modi-get-sub-outputs)
282         (verilog-modi-get-wires, verilog-preserve-cache)
283         (verilog-preserve-dir-cache, verilog-preserve-modi-cache)
284         (verilog-read-sub-decls, verilog-read-sub-decls-line)
285         (verilog-read-sub-decls-sig, verilog-subdecls-get-inouts)
286         (verilog-subdecls-get-inputs, verilog-subdecls-get-outputs):
287         Add caching of additional state, and rework signal extraction
288         routines to improve AUTO expansion performance by 300%++.
290 2008-05-06  Chong Yidong  <cyd@stupidchicken.com>
292         * progmodes/compile.el (compilation-error-regexp-alist-alist):
293         Tweak Open Watcom regexp to distinguish between errors and warnings.
295 2008-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
297         * dired.el (dired-read-dir-and-switches): Fix up last change.
299 2008-05-05  Eric S. Raymond  <esr@snark.thyrsus.com>
301         * vc.el (vc-deduce-fileset): Lift all the policy and UI stuff
302         out of this function, move it to vc-dispatcher-selection-set.
304 2008-05-05  Sam Steingold  <sds@gnu.org>
306         * window.el (delete-other-windows-vertically): New function.
308 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
310         * dired.el (dired-read-dir-and-switches):
311         Obey read-file-name-completion-ignore-case.
313 2008-05-05  Nick Roberts  <nickrob@snap.net.nz>
315         * progmodes/compile.el (compilation-error-regexp-alist-alist):
316         Add regexp for Open Watcom compiler output.
318 2008-05-05  Phil Sung  <psung@mit.edu>  (tiny change)
320         * progmodes/python.el (python-block-pairs): Align finally with except.
322 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
324         * vc-rcs.el (vc-rcs-fetch-master-state): Fix inf-loop.
326 2008-05-05  Tom Tromey  <tromey@redhat.com>
328         * smerge-mode.el (smerge-start-session): Don't call smerge-next if
329         looking at conflict marker.
331 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
333         * vc-dispatcher.el (vc-dir-mark-buffer-changed): Fix typo
334         client-mode -> vc-client-object, and guess `funcall' was meant.
335         (vc-dir-mode): Rename client-mode -> vc-client-mode.
337 2008-05-05  Dan Nicolaescu  <dann@ics.uci.edu>
339         * net/zeroconf.el (dbus-call-method, dbus-register-signal)
340         (dbus-debug): Move declarations outside eval-when-compile.
342 2008-05-04  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
344         * proced.el (proced-command-alist): Fix system-type values.
345         Fix defcustom.
346         (proced-sorting-schemes-alist, proced-sorting-scheme): New variables.
347         (proced-sort-pcpu, proced-sort-pmem, proced-sort-pid)
348         (proced-sort-start, proced-sort, proced-sort-time): New commands.
349         (proced-update): Use proced-sorting-scheme.  Update modeline.
350         (proced-send-signal): Use nreverse.
351         (proced-sorting-scheme-p): New function.
353 2008-05-04  Andreas Schwab  <schwab@suse.de>
355         * vc.el: Require dired when compiling.
357         * minibuffer.el (completion--insert-strings): Don't delete past bol.
359 2008-05-03  Glenn Morris  <rgm@gnu.org>
361         * ediff-diff.el, ediff-help.el, ediff-merg.el, ediff-mult.el:
362         * ediff-ptch.el, ediff-util.el, ediff-wind.el, ediff.el:
363         Simplify compilation requirements.
364         * ediff-init.el, ediff-vers.el: Remove unnecessary variable
365         declarations.
367 2008-05-03  Dave Love  <fx@gnu.org>
369         * progmodes/python.el (python-beginning-of-statement):
370         Loop at least once (fixes 2008-02-21 change).
372 2008-05-03  Eli Zaretskii  <eliz@gnu.org>
374         * ls-lisp.el (ls-lisp-insert-directory): Use `string-width'
375         instead of `length' for comparing length of user and group names.
377 2008-05-03  Eric S. Raymond  <esr@snark.thyrsus.com>
379         * vc-dispatcher.el: New file, separates out the UI and command
380         execution machinery from VCS-specific logic left in vc.el.
381         The separation is not yet completely clean, but it's a good start.
382         * vc.el: This file is about 1700 lines shorter now.
383         Remove obsolete logentry-check from the backend API.
384         * vc-sccs.el (vc-sccs-logentry-check): Remove.  This was the only
385         implementation of the logentry-check method, and it guarded against
386         a log length limit that has probably been obsolete for 15 years (!).
388 2008-05-02  Sam Steingold  <sds@gnu.org>
390         * progmodes/compile.el (compilation-start): Move setting of
391         compilation-directory after (funcall mode) as that resets local
392         variables, this fixes recompile in grep buffers.
393         * grep.el (grep-mode-map): Bind "g" to recompile (like in dired &c).
395 2008-05-02  Eric S. Raymond  <esr@snark.thyrsus.com>
397         * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
398         * vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
399         * vc-svn.el, vc.el (vc-*-checkout-model): Make sure every backend
400         has one of these and that all are called in compatible ways.
401         * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
402         * vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
403         * vc-svn.el, vc.el (vc-*-revision-granularity): Make sure every
404         backend has one of these.
406 2008-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
408         * progmodes/octave-mod.el (octave-abbrev-table): Move defvar and
409         initialization into define-abbrev-table.  Use :regexp.
410         (octave-mode-syntax-table): Don't set word syntax for `.
412         * files.el (minibuffer-with-setup-hook): Allow `fun' expressions rather
413         than only value.
415         * dired.el (dired-read-dir-and-switches):
416         Set minibuffer-completing-file-name and call substitute-in-file-name.
417         (dired-format-columns-of-files): Use completion--insert-strings.
419         * minibuffer.el (completion-hilit-commonality): Revert last change:
420         the leftover code was actually useful.
421         (completion--insert-strings): Use string-width rather than length.
423 2008-05-02  Sam Steingold  <sds@gnu.org>
425         * vc.el (vc-dir-mode-map): Enable mouse bindings.
426         (vc-at-event): New macro: run the body at the even location.
427         (vc-dir-menu, vc-dir-toggle-mark): Use it.
428         (vc-dir-mark-file, vc-dir-unmark-file): Move only on non-mouse events.
429         * subr.el (mouse-event-p): Check if the even is mouse-related.
431 2008-05-02  Nick Roberts  <nickrob@snap.net.nz>
433         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
434         Don't throw error if no file is found.
436 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
438         * vc-hooks.el (vc-call, vc-state): Fix typos in docstrings.
439         (vc-default-state-heuristic): Doc fix.
441 2008-05-02  Richard Sharman  <rsharman@pobox.com>
443         * hilit-chg.el (highlight-changes-mode): Remove references to
444         hooks that no longer exist.  Because define-minor-mode is used the
445         hook highlight-changes-mode-hook exists and can do what both the
446         old hooks used to do.  The documentation at the top of the file
447         was updated to demonstrate this.
448         (highlight-changes-mode): Remove commented out call to a hook
449         function that is no longer there.
450         (hilit-chg-set): Remove running of highlight-changes-enable-hook.
452 2008-05-02  Eric S. Raymond  <esr@snark.thyrsus.com>
454         * vc.el (vc-default-dired-state-info): Change name of primitive
455         to prettify-state-info, in preparation for ripping out dired mode.
456         * vc-bzr.el (vc-bzr-dired-state-info): Change name of primitive
457         to prettify-state-info, in preparation for ripping out dired mode.
458         * vc-hooks.el (vc-toggle-read-only): Throw an error when a user
459         tries this on a version-controlled buffer.  It will do useless or
460         actively bad things on any version control system newer than RCS.
461         * vc-hooks.el (vc-dired-resynch-file):
462         * vc.el (vc-dired-resynch-file): Change name of primitive to
463         vc-directory-resynch-file, preparing to remove dired.
465 2008-05-02  Dan Nicolaescu  <dann@ics.uci.edu>
467         * vc-rcs.el (vc-rcs-state): Fix typos.
469         * vc.el (vc-register): Change argument order so that the prefix
470         argument is assigned correctly.
471         (vc-next-action, vc-dir-register): Update for the above change.
473 2008-05-01  Juri Linkov  <juri@jurta.org>
475         * replace.el (occur-read-primary-args): Set default to the car of
476         regexp-history and display it in the prompt, but don't add to the
477         list of minibuffer defaults.  Bind history-add-new-input to nil to
478         not add automatically `default'.  For empty input return `default'.
479         Otherwise, add `input' to regexp-history and return it.
480         (occur-1): Signal an error for the empty regexp.
482         * progmodes/compile.el (compilation-auto-jump):
483         Set window point to `pos' explicitly.
485 2008-05-01  Eric S. Raymond  <esr@snark.thyrsus.com>
487         * vc-bzr.el (vc-bzr-state): Allow this to return 'ignored
488         when appropriate.
489         * vc-sccs.el (vc-sccs-state): Call vc-sccs-unregistered so
490         we report the 'unregistered state reliably.
491         * vc-rcs.el (vc-rcs-state): Call vc-rcs-unregistered so
492         we report the 'unregistered state reliably.
493         * vc-git.el (vc-git-state): Call vc-git-unregistered so
494         we report the 'unregistered state reliably.
495         * vc-hooks (vc-state): Document that vc-unregistered is
496         now expected to be returned reliably.
497         * vc.el (vc-default-dired-state): Change needs-patch state to
498         needs-update, since the name now shows up in dir-status listings
499         and was somewhat misleading.
500         * vc-cvs.el (vc-cvs-delete-file): Don't do a "cvs commit"
501         immediately after removing the file.
502         * vc.el (vc-next-action): More informative messages when a fileset
503         is in a mixed state or files are missing.
505 2008-05-01  Sam Steingold  <sds@gnu.org>
507         * vc.el (vc-delete-file): Check if the file has uncommitted changes.
509 2008-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
511         * Makefile.in: Revert incorrect fix for claimed bootstrap breakage.
513 2008-05-01  Daiki Ueno  <ueno@unixuser.org>
515         * epa-file-hook.el: New file split from epa-file.el.
516         * epa-file.el: Require 'epa-file-hook.
517         (epa-file-handler): Add autoload cookie.
518         * loadup.el: Load epa-file-hook.
519         * startup.el (command-line): Eval the body of auto-encryption-mode.
521 2008-05-01  Dan Nicolaescu  <dann@ics.uci.edu>
523         * vc.el (vc-dir-mode-map): Don't bind "r".
525         * vc-hg.el (vc-hg-extra-fileinfo): New defstruct.
526         (vc-hg-status-printer): New function.
527         (vc-hg-after-dir-status): Deal with copied and renamed files.
528         (vc-hg-dir-status): Add flag to show copied files.
530 2008-05-01  John Paul Wallington  <jpw@pobox.com>
532         * ibuffer.el (ibuffer-last-sorting-mode): New variable.
533         (ibuffer-do-sort-by-recency): Reverse sorting order if last
534         sorting mode was recency.
536         * ibuf-macs.el (define-ibuffer-sorter): Define the sorter to
537         reverse sorting order if last sorting mode was the sorter's.
539 2008-05-01  Jason Rumney  <jasonr@gnu.org>
541         * w32-fns.el (w32-charset-info-alist): Map vietnamese to windows-1258.
543 2008-04-30  John Paul Wallington  <jpw@pobox.com>
545         * ibuffer.el (define-ibuffer-column filename): When the major mode
546         is `vc-dir-mode' show the buffer's default directory.
548         * ibuf-ext.el (define-ibuffer-filter filename): Likewise when the
549         major mode is `vc-dir-mode' use the buffer's default directory.
551 2008-04-30  Sam Steingold  <sds@gnu.org>
553         * vc.el (vc-dir-delete-file): Add.
554         (vc-dir-mode-map): Bind "r" to vc-dir-delete-file, like in PCL-CVS.
555         (vc-delete-file): Do not barf when the file has been already deleted.
557 2008-04-30  Dan Nicolaescu  <dann@ics.uci.edu>
559         * emacs-lisp/lisp-mode.el (lisp-mode-map): Add menu.
561 2008-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
563         * progmodes/octave-mod.el (octave-help): New function.
564         * progmodes/octave-hlp.el: Delete.
565         * info-look.el (octave-mode): Add operator index.
567         * vc.el (vc-checkout): Typo.
569 2008-04-30  Dan Nicolaescu  <dann@ics.uci.edu>
571         * menu-bar.el (menu-bar-tools-menu): Reorder, place Games last.
572         Add "..." in the appropriate places.
574         * epa.el (epa-key-list-mode-map): Add more menu entries.
575         Add "..." in the appropriate places.
577         * dired.el (dired-mode-map): Add :help.
579         * vc.el (vc-deduce-fileset): Add new parameter.
580         (vc-dir-marked-only-files): New function.
581         (vc-next-action): Don't ignore directories, look at the files
582         inside them.
583         (vc-dir-mode): Document how the mark/unmark commands work.
585 2008-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
587         * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
588         Rule out trailing spaces in file and directory names as well.
590         * minibuffer.el (completion--do-completion): Move point even if the
591         completion makes no change.
592         (completion-pcm-try-completion): Fix computation of new point.
594 2008-04-30  David Hansen  <david.hansen@gmx.net>
596         * dired.el: Require 'cl.
598 2008-04-30  Nick Roberts  <nickrob@snap.net.nz>
600         * progmodes/gdb-ui.el (gdb-frame-handler-1): Make overlay arrow
601         hollow if not in innermost frame.
603 2008-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
605         Make `checkout-model' apply to filesets.
606         * vc-hooks.el (vc-checkout-model): Rewrite.
607         (vc-before-save, vc-after-save): Adjust callers accordingly.
608         * vc.el (vc-editable-p, vc-next-action, vc-checkout, vc-update)
609         (vc-transfer-file): Adjust callers accordingly.
610         * vc-rcs.el (vc-rcs-checkout-model): Adjust arg.
611         (vc-rcs-state, vc-rcs-state-heuristic, vc-rcs-receive-file)
612         (vc-rcs-checkout, vc-rcs-fetch-master-state): Use vc-rcs-checkout-model
613         instead of vc-checkout-model.
614         * vc-mcvs.el (vc-mcvs-revert):
615         Use vc-mcvs-checkout-model i.s.o vc-checkout-model.
616         * vc-cvs.el (vc-cvs-checkout-model): Adjust arg.
617         (vc-cvs-revert): Use vc-cvs-checkout-model i.s.o vc-checkout-model.
618         * vc-svn.el (vc-svn-checkout-model):
619         * vc-hg.el (vc-hg-checkout-model):
620         * vc-git.el (vc-git-checkout-model):
621         * vc-bzr.el (vc-bzr-checkout-model): Adjust arg.
623         * dired.el (dired-read-dir-and-switches): Replace last change with
624         a new approach that mixes read-file-name and read-directory-name.
626         * files.el (read-buffer-to-switch):
627         Avoid making assumptions about `other-buffer'.
629 2008-04-29  Sam Steingold  <sds@gnu.org>
631         * vc.el (vc-dir-mode-hook): Add normal hook.
632         (vc-dir-mode): Run it.
634 2008-04-29  Nick Roberts  <nickrob@snap.net.nz>
636         * progmodes/gdb-ui.el (gdb-display-buffer): Don't pop up GUD buffer.
637         Always split windows.
638         (gdb-speedbar-timer-fn): Only raise frame after user input.
639         (gdb-same-frame): Reverse initial value.
640         (gdb-display-gdb-buffer): Check for GUD buffer in other frames.
642         * progmodes/gud.el (gud-speedbar-buttons): Raise frame in
643         gdb-speedbar-timer-fn.
645 2008-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
647         * uniquify.el (uniquify-rationalize-a-list): Beware of side-effects.
649 2008-04-29  Daiki Ueno  <ueno@unixuser.org>
651         * epa.el (epa-key-list-mode-map): Add menu.
652         (epa-delete-keys, epa-import-keys): Fix typo.
654 2008-04-29  Glenn Morris  <rgm@gnu.org>
656         * find-cmd.el (top-level): Does not need cl when compiling.
658 2008-04-29  Phil Jackson  <phil@shellarchive.co.uk>
660         * find-cmd.el: New file.
662 2008-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
664         * minibuffer.el (completion-hilit-commonality): Remove leftover code.
665         (completion-pcm--pattern->regex): Let `group' be a list of symbols.
666         (completion-pcm--hilit-commonality): New function.
667         (completion-pcm-all-completions): Use it.
669         * minibuffer.el (completion-common-substring): Mark obsolete.
670         (completions-first-difference, completions-common-part):
671         Move from simple.el.
672         (completion-hilit-commonality): New fun.
673         (display-completion-list, completion-emacs21-all-completions)
674         (completion-emacs22-all-completions): Use it.
675         * simple.el (completions-first-difference, completions-common-part):
676         Move to minibuffer.el.
677         (choose-completion-string): Use field functions and minibufferp.
678         (completion-setup-function): Don't set completions faces.
680 2008-04-29  Glenn Morris  <rgm@gnu.org>
682         * calendar/calendar.el (calendar-nth-named-absday)
683         (calendar-nth-named-day):
684         * calendar/diary-lib.el (diary-list-sexp-entries, diary-float):
685         * calendar/holidays.el (holiday-float): Doc fixes.
687         * emacs-lisp/check-declare.el (check-declare-errmsg): Fix counting in
688         the `full' case.
690         * org/org-agenda.el (calendar-iso-from-absolute):
691         * org/org.el (calendar-absolute-from-iso, calendar-iso-from-absolute):
692         Fix declarations.
694 2008-04-28  Nick Roberts  <nickrob@snap.net.nz>
696         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Make breakpoint
697         icons work for assembler, i.e. FILE.s, FILE.S (not disassembly).
698         (gdb-goto-breakpoint): Likewise for visiting breakpoints.
699         (gdb-assembler-custom): Be careful not to match other addresses.
701 2008-04-29  Jason Rumney  <jasonr@gnu.org>
703         * battery.el (battery-status-function): Use w32-battery-status
704         on Windows.
705         (battery-echo-area-format): Make apm format the general case.
706         (battery-mode-line-format): Merge apm and pmset formats as the
707         general case.
709 2008-04-29  Nick Roberts  <nickrob@snap.net.nz>
711         * progmodes/gdb-ui.el (gdb-info-stack-custom):
712         Use gud-tool-bar-item-visible-no-fringe.
713         (gdb-display-buffer): Don't pop new buffer if gud-comint-buffer
714         is already visible in frame.  Remove optional size parameter
715         and add optional frame parameter.
717         * progmodes/gud.el (gud-display-line): Only consider visible
718         frames when looking for source buffer.
720 2008-04-28  Chong Yidong  <cyd@stupidchicken.com>
722         * doc-view.el (doc-view-new-window-function): Avoid using WINDOW
723         argument to get-char-property, in case the current buffer hasn't
724         been assigned to that window yet.
725         (doc-view-display): Default to selected window if the current
726         buffer hasn't been assigned to a window yet.
728 2008-04-28  Vinicius Jose Latorre  <bzg@altern.org>
730         * whitespace.el (whitespace-trailing-regexp): Fix docstring.
732 2008-04-28  Michael Albinus  <michael.albinus@gmx.de>
734         * net/tramp.el (tramp-mode): New defcustom.
735         (tramp-file-name-handler, tramp-completion-file-name-handler):
736         Use it.
737         (tramp-replace-environment-variables): Handle "$$".
739 2008-04-28  Sam Steingold  <sds@gnu.org>
741         * vc-hg.el (vc-hg-rename-file): Fix argument order.
743 2008-04-28  Bastien Guerry  <bzg@altern.org>
745         * whitespace.el (whitespace-trailing): Fix typo.
747 2008-04-28  Sam Steingold  <sds@gnu.org>
749         * textmodes/remember.el (diary-make-entry): Update the autoload.
751 2008-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
753         * minibuffer.el (completion-pcm--all-completions): Don't pass nil to
754         all-completions.
756 2008-04-28  Juanma Barranquero  <lekktu@gmail.com>
758         * desktop.el (desktop-minor-mode-table): Add `savehist-mode'.
760 2008-04-27  Dan Nicolaescu  <dann@ics.uci.edu>
762         * vc.el (vc-dir-mode-map): Change bindings for unmark all and revert.
763         (vc-dir-parent-marked-p, vc-dir-children-marked-p): Implement.
764         (vc-dir-mark-file): Add an optional argument.
765         (vc-dir-mark-all-files, vc-dir-unmark-all-files): Deal with directories.
767 2008-04-27  Daiki Ueno  <ueno@unixuser.org>
769         * epa-file.el (epa-file-enable, epa-file-disable): Use find-file-hook
770         rather than obsolete alias find-file-hooks.
771         (auto-encryption-mode): Rename from epa-file-mode.  Default to on.
772         Use find-file-hook rather than obsolete alias find-file-hooks.
773         Add to find-file-not-found-functions.
774         (epa-file-handler): Put 'safe-magic and 'operations properties.
776         * epa.el (epa-global-minor-modes, epa-mode, epa-menu)
777         (epa-menu-items): Remove.
779         * epa-dired.el (epa-dired-do-decrypt, epa-dired-do-verify)
780         (epa-dired-do-sign, epa-dired-do-encrypt): Add autoload cookie.
781         (epa-dired-mode, epa-global-dired-mode): Remove.
783         * dired.el (dired-mode-map): Bind encryption/decryption commands.
785         * menu-bar.el (menu-bar-encryption-decryption-menu): New menu item.
787         * files.el (insert-file-contents-literally): Inhibit epa-file-handler.
789 2008-04-27  Glenn Morris  <rgm@gnu.org>
791         * textmodes/reftex-global.el (reftex-isearch-switch-to-next-file):
792         Remove un-needed local `orig-list'.  Replace cl `copy-list'.
794 2008-04-27  Carsten Dominik  <dominik@science.uva.nl>
796         * org/org.el (org-html-level-start): Always have id's in HTML.
797         (org-export-as-html): Use `org-link-protocols' to
798         retrieve the export form of the link.
799         (org-add-link-type): Final parameter renamed from PUBLISH.
800         Better documentation of how it is to be used.  Avoid double entries for
801         the same link type.
802         (org-add-link-props): New function.
803         (org-modules-loaded): New variable.
804         (org-load-modules-maybe, org-set-modules): New function.
805         (org-modules): New option.
806         (org-mode, org-cycle, orgstruct-mode, org-run-like-in-org-mode)
807         (orgtbl-mode, org-store-link, org-insert-link-global)
808         (org-open-at-point): Call `org-load-modules-maybe'.
809         (org-search-view): Add more text properties.
810         (org-agenda-schedule, org-agenda-deadline): Allow also in
811         search-type agendas.
812         (org-search-view): Order of arguments has been changed.
813         Interpret prefix-arg as TODO-ONLY.
814         (org-agenda, org-run-agenda-series, org-agenda-manipulate-query):
815         Take new argument order of `org-search-view' into account.
816         (org-todo-only): New variable.
817         (org-search-syntax-table): New variable and function.
818         (org-search-view): Do the search with the special syntax table.
819         (define-obsolete-function-alias): Make work with XEmacs.
820         (org-add-planning-info): Use old date as default when modifying an
821         existing deadline or scheduled item.
822         (org-agenda-compute-time-span): Make argument N optional.
823         (org-agenda-format-date-aligned): Require `cal-iso'.
824         (org-agenda-list): Include week into into agenda heading, don't
825         list it at each date (only on Mondays).
826         (org-read-date-analyze): Define local variable `iso-date'.
827         (org-agenda-format-date-aligned): Remove dependency on
828         `calendar-time-from-absolute'.
829         (org-remember-apply-template, org-go-to-remember-target):
830         Interpret filenames relative to `org-directory'.
831         (org-complete): Silently fail when trying to complete
832         keywords that don't have a default value.
833         (org-get-current-options): Add a #+DATE: option.
834         (org-additional-option-like-keywords): Remove "DATE:" from the
835         list of additional keywords.
836         (org-export-as-html): Remove (current-time) as unnecessary second
837         argument of `format-time-string'.
838         (org-clock-find-position): Handle special case at end of buffer.
839         (org-agenda-day-view): New argument DAY-OF-YEAR, pass it on to
840         `org-agenda-change-time-span'.
841         (org-agenda-week-view): New argument ISO-WEEK, pass it on to
842         `org-agenda-change-time-span'.
843         (org-agenda-month-view): New argument MONTH, pass it on to
844         `org-agenda-change-time-span'.
845         (org-agenda-year-view): New argument YEAR, pass it on to
846         `org-agenda-change-time-span'.
847         (org-agenda-change-time-span): New optional argument N, pass it on
848         to `org-agenda-compute-time-span'.
849         (org-agenda-compute-time-span): New argument N, interpret it by
850         changing the starting day.
851         (org-small-year-to-year): New function.
852         (org-scheduled-past-days): Respect `org-scheduled-past-days'.
853         (org-auto-repeat-maybe): Make sure that repeating dates are pushed
854         into the future, and that the shift is at least one interval, never 0.
855         (org-update-checkbox-count): Fix bug with checkbox counting.
856         (org-add-note): New command.
857         (org-add-log-setup): Rename from `org-add-log-maybe'.
858         (org-log-note-headings): New entry for plain notes (i.e. notes not
859         related to state changes or clocking).
860         (org-get-org-file): Check for availability of `remember-data-file'.
861         (org-cached-entry-get): Allow a regexp value for
862         `org-use-property-inheritance'.
863         (org-use-property-inheritance): Allow regexp value.  Fix bug in
864         customization type.
865         (org-use-tag-inheritance): Allow a list and a regexp value for
866         this variable.
867         (org-scan-tags, org-get-tags-at): Implement selective tag inheritance.
868         (org-entry-get): Respect value `selective' for the INHERIT argument.
869         (org-tag-inherit-p, org-property-inherit-p): New functions.
870         (org-agenda-format-date-aligned): Allow 10 characters for
871         weekday, to acomodate German locale.
872         (org-add-archive-files): New function.
873         (org-agenda-files): New argument `ext', to get archive files as well.
874         (org-tbl-menu): Protect the use of variables that
875         are only available when org-table.el gets loaded.
876         (org-read-agenda-file-list): Error if `org-agenda-files' is a
877         single directory.
878         (org-open-file): Allow a batch process to trigger
879         waiting after executing a system command.
880         (org-store-link): Link to headline when there is not
881         target and no region in an org-mode buffer when creating a link.
882         (org-link-types-re): New variable.
883         (org-make-link-regexps): Compute `org-link-types-re'.
884         (org-make-link-description-function): New option.
885         (org-agenda-date, org-agenda-date-weekend): New faces.
886         (org-archive-sibling-heading): New option.
887         (org-archive-to-archive-sibling): New function.
888         (org-iswitchb): New command.
889         (org-buffer-list): New function.
890         (org-agenda-columns): Also try the #+COLUMNS line in
891         the buffer associated with the entry at point (or with the first
892         entry in the agenda view).
893         (org-modules): Add entry for org-bibtex.el.
894         (org-completion-fallback-command): Move into `org-completion' group.
895         (org-clock-heading-function): Move to `org-progress' group.
896         (org-auto-repeat-maybe): Make sure that a note can
897         be enforces if `org-log-repeat' is `note'.
898         (org-modules): Allow additional symbols for external packages.
899         (org-ctrl-c-ctrl-c): Allow for `org-clock-overlays' to be undefined.
900         (org-clock-goto): Hide drawers after showing an
901         entry with `org-clock-goto.'
902         (org-shiftup, org-shiftdown, org-shiftright, org-shiftleft):
903         Try also a clocktable block shift.
904         (org-clocktable-try-shift): New function.
905         (org-columns-hscoll-title): New function.
906         (org-columns-previous-hscroll): New variable.
907         (org-columns-full-header-line-format): New variable.
908         (org-columns-display-here-title, org-columns-remove-overlays):
909         Install `org-columns-hscoll-title' in post-command-hook.
911         * org/org.el: Split into many small files.
913         * org/org-agenda.el: New file, split off from org.el.
915         * org/org-archive.el: New file, split off from org.el.
917         * org/org-bbdb.el: New file.
919         * org/org-bibtex.el: New file, split off from org.el.
921         * org/org-clock.el: New file, split off from org.el.
923         * org/org-colview.el: New file, split off from org.el.
925         * org/org-compat.el: New file, split off from org.el.
927         * org/org-exp.el: New file, split off from org.el.
929         * org/org-faces.el: New file, split off from org.el.
931         * org/org-gnus.el: New file, split off from org.el.
933         * org/org-info.el: New file, split off from org.el.
935         * org/org-infojs.el: New file.
937         * org/org-irc.el: New file.
939         * org/org-macs.el: New file, split off from org.el.
941         * org/org-mew.el: New file.
943         * org/org-mhe.el: New file, split off from org.el.
945         * org/org-publish.el: New file, split off from org.el.
947         * org/org-remember.el: New file, split off from org.el.
949         * org/org-rmail.el: New file, split off from org.el.
951         * org/org-table.el: New file, split off from org.el.
953         * org/org-vm.el: New file, split off from org.el.
955         * org/org-wl.el: New file, split off from org.el.
957 2008-04-27  Jason Riedy  <jason@acm.org>
959         * lisp/org-table.el (orgtbl-to-generic): Add a :remove-nil-lines
960         parameter that supresses lines that evaluate to NIL.
961         (orgtbl-get-fmt): New inline function for
962         picking apart formats that may be lists.
963         (orgtbl-apply-fmt): New inline function for applying formats that
964         may be functions.
965         (orgtbl-eval-str): New inline function for strings that may be
966         functions.
967         (orgtbl-format-line, orgtbl-to-generic): Use and document.
968         (orgtbl-to-latex, orgtbl-to-texinfo): Document.
969         (*orgtbl-llfmt*, *orgtbl-llstart*)
970         (*orgtbl-llend*): Dynamic variables for last-line formatting.
971         (orgtbl-format-section): Shift formatting to support detecting the
972         last line and formatting it specially.
973         (orgtbl-to-generic): Document :ll* formats.  Set to the non-ll
974         formats unless overridden.
975         (orgtbl-to-latex): Suggest using :llend to suppress the final \\.
976         (*orgtbl-table*, *orgtbl-rtn*): Dynamically
977         bound variables to hold the input collection of lines and output
978         formatted text.
979         (*orgtbl-hline*, *orgtbl-sep*, *orgtbl-fmt*, *orgtbl-efmt*)
980         (*orgtbl-lfmt*, *orgtbl-lstart*, *orgtbl-lend*): Dynamically bound
981         format parameters.
982         (orgtbl-format-line): New function encapsulating formatting for a
983         single line.
984         (orgtbl-format-section): Similar for each section.  Rebinding the
985         dynamic vars customizes the formatting for each section.
986         (orgtbl-to-generic): Use orgtbl-format-line and
987         orgtbl-format-section.
988         (org-get-param): Now unused, so delete.
989         (orgtbl-gather-send-defs): New function to
990         gather all the SEND definitions before a table.
991         (orgtbl-send-replace-tbl): New function to find the RECEIVE
992         corresponding to the current name.
993         (orgtbl-send-table): Use the previous two functions and implement
994         multiple destinations for each table.
996         * doc/org.texi (A LaTeX example): Note that fmt may be a
997         one-argument function, and efmt may be a two-argument function.
998         (Radio tables): Document multiple destinations.
1000 2008-04-27  Carsten Dominik  <dominik@science.uva.nl>
1002         * org/org-agenda.el (org-add-to-diary-list): New function.
1003         (org-prefix-has-effort): New variable.
1004         (org-sort-agenda-noeffort-is-high): New option.
1005         (org-agenda-columns-show-summaries)
1006         (org-agenda-columns-compute-summary-properties): New options.
1007         (org-format-agenda-item): Compute the duration of the item.
1008         (org-agenda-weekend-days): New variable.
1009         (org-agenda-list, org-timeline): Use the proper faces for dates in
1010         the agenda and timeline buffers.
1011         (org-agenda-archive-to-archive-sibling): New command.
1012         (org-agenda-start-with-clockreport-mode): New option.
1013         (org-agenda-clockreport-parameter-plist): New option.
1014         (org-agenda-clocktable-mode): New variable.
1015         (org-agenda-deadline-leaders): Allow a function value for the
1016         deadline leader.
1017         (org-agenda-get-deadlines): Deal with new function value.
1019         * lisp/org-clock.el (org-clock): New customization group.
1020         (org-clock-into-drawer, org-clock-out-when-done)
1021         (org-clock-in-switch-to-state, org-clock-heading-function):
1022         Move into the new group.
1023         (org-clock-out-remove-zero-time-clocks): New option.
1024         (org-clock-out): Use `org-clock-out-remove-zero-time-clocks'.
1025         (org-dblock-write:clocktable): Allow a Lisp form for the scope
1026         parameter.
1027         (org-dblock-write:clocktable): Fix bug with total time calculation.
1028         (org-dblock-write:clocktable): Request the unrestricted list of files.
1029         (org-get-clocktable): New function.
1030         (org-dblock-write:clocktable): Make sure :tstart and :tend can not only
1031         be strings but also integers (an absolute day number) and lists (m d y).
1033         * org/org-colview.el (org-columns-next-allowed-value)
1034         (org-columns-edit-value): Limit the effort for updating in the
1035         agenda to recomputing a single file.
1036         (org-columns-compute): Only write property value if it has changed.
1037         This avoids raising the buffer-change-flag unnecessarily.
1038         (org-agenda-colview-summarize)
1039         (org-agenda-colview-compute): New functions.
1040         (org-agenda-columns): Call `org-agenda-colview-summarize'.
1042         * org/org-exp.el (org-export-run-in-background): New option.
1043         (org-export-icalendar): Allow a batch process to trigger waiting
1044         after executing a system command.
1045         (org-export-preprocess-string): Rename from
1046         `org-cleaned-string-for-export'.
1047         (org-export-html-style): Made target class look like normal text.
1048         (org-export-as-html): Make use of the better proprocessing in
1049         `org-cleaned-string-for-export'.
1050         (org-cleaned-string-for-export): Better treatment of heuristic
1051         targets, many more internal links will now work in HTML export.
1052         (org-get-current-options): Incorporate LINK_UP, LINK_HOME, and INFOJS.
1053         (org-export-inbuffer-options-extra): New variable.
1054         (org-export-options-filters): New hook.
1055         (org-infile-export-plist): Find also the settings keywords in
1056         `org-export-inbuffer-options-extra'.
1057         (org-infile-export-plist): Allow multiple #+OPTIONS lines and
1058         multiple #+INFOJS_OPT lines.
1059         (org-export-html-handle-js-options): New function.
1060         (org-export-html-infojs-setup): New option.
1061         (org-export-as-html): Call `org-export-html-handle-js-options'.
1062         Add autoload to all entry points.
1063         (org-skip-comments): Function removed.
1065         * org/org-table.el (org-table-make-reference): Extra parenthesis
1066         around single fields, to make sure that algebraic formulas get
1067         correctly interpreted by calc.
1068         (org-table-current-column): No longer interactive.
1070         * org/org-export-latex.el (org-export-latex-preprocess):
1071         Rename from `org-export-latex-cleaned-string'.
1073 2008-04-27  Bastien Guerry  <bzg@altern.org>
1075         * org/org-publish.el (org-publish-get-base-files-1): New function.
1076         (org-publish-get-base-files): Use it.
1077         (org-publish-temp-files): New variable.
1078         Don't require 'dired-aux anymore.
1079         (org-publish-initial-buffer): New variable.
1080         (org-publish-org-to, org-publish): Use it.
1081         (org-publish-get-base-files-1): Bug fix: get
1082         the proper list of files when recursing thru a directory.
1083         (org-publish-get-base-files): Use the :exclude property to skip
1084         both files and directories.
1086 2008-04-27  Michael Albinus  <michael.albinus@gmx.de>
1088         * net/tramp.el (tramp-handle-make-symbolic-link)
1089         (tramp-handle-file-name-directory)
1090         (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
1091         (tramp-do-copy-or-rename-file-directly)
1092         (tramp-handle-insert-directory, tramp-handle-expand-file-name)
1093         (tramp-handle-substitute-in-file-name)
1094         (tramp-handle-insert-file-contents, tramp-handle-write-region)
1095         * net/tramp-cache.el (tramp-get-file-property)
1096         (tramp-set-file-property, tramp-flush-file-property)
1097         (tramp-flush-directory-property)
1098         * net/tramp-compat.el (tramp-compat-make-temp-file)
1099         * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
1100         Disable `file-name-handler-alist' when handling localname.
1101         It could have a remote file syntax, like a VMS file name.
1103 2008-04-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1105         * whitespace.el: New version 11.1.
1106         (whitespace-trailing-regexp): Option fix, now trailing regexp must be
1107         enclosed by \\( and \\)$.  Docstring fix.
1108         (whitespace-trailing-regexp): Fun removed.
1109         (whitespace-report-list): Const initialization fix.
1110         (whitespace-color-on): Code fix.
1112 2008-04-27  Andreas Schwab  <schwab@suse.de>
1114         * Makefile.el: Unbreak bootstrap.
1116 2008-04-27  Michael Albinus  <michael.albinus@gmx.de>
1118         * net/tramp.el (tramp-replace-environment-variables): New defun.
1119         (tramp-handle-substitute-in-file-name, tramp-file-name-handler):
1120         Use it.
1122 2008-04-27  Glenn Morris  <rgm@gnu.org>
1124         * emacs-lisp/bytecomp.el (byte-compile-file): Doc fix.
1126         * calculator.el (calculator-expt): Replace cl function `oddp'.
1128 2008-04-27  Johan Bockgård  <bojohan@gnu.org>
1130         * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
1131         Simplify.  Collect `defun' and `autoload' entries.
1132         Avoid modifying load-history.
1134 2008-04-26  Glenn Morris  <rgm@gnu.org>
1136         * textmodes/ispell.el (ispell-insert-word): Revert previous change.
1138         * simple.el (quoted-insert, zap-to-char): Revert previous change.
1140 2008-04-26  John Paul Wallington  <jpw@pobox.com>
1142         * hexl.el (hexl-mode): Stash `eldoc-documentation-function' in
1143         `hexl-mode-old-eldoc-documentation-function'.
1144         (hexl-mode-exit): Restore it.
1145         (hexl-mode-old-eldoc-documentation-function): Declare for compiler.
1147         * w32-fns.el (top-level): Don't set `completion-ignore-case' to t.
1149 2008-04-26  Juanma Barranquero  <lekktu@gmail.com>
1151         * minibuffer.el (completion-pcm-word-delimiters): Add :group.
1152         (completion-pcm--all-completions): Doc fix.
1153         (completion-styles-alist, completion-all-completions):
1154         Fix typos in docstrings.
1156 2008-04-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1158         * whitespace.el: There is now only one variable (whitespace-style) to
1159         specify which kind of blank is visualized.  Doc and docstring fix.
1160         New version 11.0.
1161         (whitespace-style): New option, replace whitespace-style-mark and
1162         whitespace-style-color.
1163         (whitespace-style-mark, whitespace-style-color): Options removed.
1164         (whitespace-hspace, whitespace-tab, whitespace-newline)
1165         (whitespace-trailing, whitespace-line, whitespace-space-before-tab)
1166         (whitespace-indentation, whitespace-empty, whitespace-space-after-tab)
1167         (whitespace-hspace-regexp, whitespace-space-regexp)
1168         (whitespace-tab-regexp, whitespace-trailing-regexp)
1169         (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
1170         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
1171         (whitespace-space-after-tab-regexp, whitespace-line-column)
1172         (whitespace-display-mappings, whitespace-report): Docstring fix.
1173         (whitespace-color-value-list, whitespace-mark-value-list)
1174         (whitespace-active-color, whitespace-active-mark)
1175         (whitespace-toggle-color, whitespace-toggle-mark): Vars removed.
1176         (whitespace-style-value-list, whitespace-active-style)
1177         (whitespace-toggle-style): New vars.
1178         (whitespace-toggle-option-alist, whitespace-help-text):
1179         Var initialization and docstring fix.
1180         (whitespace-toggle-options, global-whitespace-toggle-options)
1181         (whitespace-cleanup, whitespace-cleanup-region)
1182         (whitespace-report-region, whitespace-interactive-char)
1183         (whitespace-toggle-list): Docstring and code fix.
1184         (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
1185         (whitespace-turn-off, whitespace-color-on, whitespace-color-off)
1186         (whitespace-display-char-on, whitespace-display-char-off): Code fix.
1187         (whitespace-style-face-p, whitespace-style-mark-p): New fun.
1189 2008-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1191         * diff-mode.el (diff-hunk-header-re-unified): Allow elided line counts.
1192         (diff-end-of-hunk, diff-unified->context, diff-fixup-modifs)
1193         (diff-sanity-check-hunk): Adjust code accordingly.
1195 2008-04-26  Glenn Morris  <rgm@gnu.org>
1197         * abbrev.el (define-abbrev): Don't use `iff' in doc-strings.
1199         * forms-d2.dat: Move to ../etc.
1200         * forms-d2.el (forms-file): Adapt for above change.
1202         * simple.el (quoted-insert, zap-to-char): Remove uses of obsolete
1203         `translation-table-for-input'.
1205         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): New function.
1206         (byte-compile-obsolete, byte-compile-variable-ref): Use it.
1208         * progmodes/fortran.el (fortran-mode-syntax-table): Change `;'
1209         to punctuation now it's not needed for abbrevs.
1210         (fortran-mode-abbrev-table): Remove defvar, make use of new
1211         define-abbrev-table :regexp feature.
1213         * textmodes/ispell.el (ispell-insert-word): Remove, and replace with
1214         insert, now that translation-table-for-input is not needed.
1216 2008-04-26  Johannes Weiner  <hannes@saeurebad.de>
1218         * emacs-lisp/pp.el (pp-display-expression): New function,
1219         extracted from pp-eval-expression.
1220         (pp-eval-expression): Use pp-display-expression.
1221         (pp-macroexpand-expression, pp-macroexpand-last-sexp): New functions.
1222         (pp-last-sexp): New function, extracted from pp-eval-last-sexp.
1223         (pp-eval-last-sexp): Use pp-last-sexp.
1225 2008-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1227         * abbrev.el (define-abbrev-table): Apply props even if the table
1228         exists already.
1230         * minibuffer.el (completion-table-with-context): Fix `pred' for the
1231         various kinds of completion tables.
1232         (completion-emacs22-try-completion): Place cursor after the /, as was
1233         done in Emacs-22's minibuffer-complete-word.
1234         Fix bug reported by David Hansen <david.hansen@gmx.net>.
1235         (completion-emacs22-try-completion): Merge all mergable text rather
1236         than just /.
1237         (completion-pcm--delim-wild-regex): New var.
1238         (completion-pcm-word-delimiters): New custom.
1239         (completion-pcm--prepare-delim-re, completion-pcm--pattern-trivial-p)
1240         (completion-pcm--string->pattern, completion-pcm--pattern->regex)
1241         (completion-pcm--all-completions, completion-pcm-all-completions)
1242         (completion-pcm--merge-completions, completion-pcm--pattern->string)
1243         (completion-pcm-try-completion): New functions.
1244         (completion-styles-alist): Add them.
1245         (completion-styles): Add it to the default.
1247 2008-04-25  Nick Roberts  <nickrob@snap.net.nz>
1249         * progmodes/gdb-ui.el (gud-watch): Don't create speedbar...
1250         (gdb-var-create-handler): ...until here when there are values.
1251         (gdb-post-prompt): Don't do -var-update with no watch expressions.
1252         (gdb-info-locals-handler): Don't match "struct {...}" as an array.
1254 2008-04-25  Eli Zaretskii  <eliz@gnu.org>
1256         * ls-lisp.el (ls-lisp-format): Fix last change.
1257         (ls-lisp-uid-d-fmt, ls-lisp-uid-s-fmt, ls-lisp-gid-d-fmt)
1258         (ls-lisp-gid-s-fmt, ls-lisp-filesize-d-fmt)
1259         (ls-lisp-filesize-f-fmt): New defvars.
1260         (ls-lisp-insert-directory): Dynamically compute format specifiers
1261         for displaying UID, GID, and file size, and store them in the
1262         above variables.
1263         (ls-lisp-format): Use ls-lisp-filesize-f-fmt, ls-lisp-uid-s-fmt,
1264         ls-lisp-uid-d-fmt, ls-lisp-gid-s-fmt, and ls-lisp-gid-d-fmt
1265         instead of constant format strings.
1266         (ls-lisp-format-file-size): Use ls-lisp-filesize-f-fmt and
1267         ls-lisp-filesize-d-fmt instead of constant format strings.
1269 2008-04-24  Nick Roberts  <nickrob@snap.net.nz>
1271         * progmodes/gdb-ui.el (gdb-invalidate-assembler): Compare numeric
1272         value of addresses rather than (partial) string value.
1273         (gdb-frame-handler): Change regexp according to above change.
1274         (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
1275         (gdb-registers-mode, gdb-memory-mode, gdb-locals-mode)
1276         (gdb-assembler-mode): Disable undo in these buffers.
1278 2008-04-24  Michael Albinus  <michael.albinus@gmx.de>
1280         * net/tramp.el (tramp-get-remote-stat): Test whether stat supports %s.
1281         Reported by Loris Bennett <loris.bennett@fu-berlin.de>.
1283 2008-04-24  Sam Steingold  <sds@gnu.org>
1285         * textmodes/remember.el (remember-diary-extract-entries): Use
1286         diary-make-entry instead of the obsolete make-diary-entry.
1288 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1290         * subr.el (translation-table-for-input): Mark as obsolete.
1292         * isearch.el (isearch-search-string): Avoid string-bytes and aset.
1294         * international/quail.el (quail-build-decode-map): Avoid string-bytes.
1296         * textmodes/ispell.el (ispell-dictionary-alist-1)
1297         (ispell-dictionary-alist-2, ispell-dictionary-alist-3):
1298         (ispell-dictionary-alist-4, ispell-dictionary-alist-5):
1299         (ispell-dictionary-alist-6): Remove.
1300         (ispell-dictionary-base-alist): New var, merges the above.
1301         (ispell-find-aspell-dictionaries, ispell-set-spellchecker-params):
1302         Use it.
1303         (ispell-dictionary-alist): Default to nil.  Remove autoload.
1304         (ispell-local-dictionary-alist): Remove autoload.
1306         * progmodes/f90.el (f90-mode-syntax-table): Don't set ` as word syntax.
1307         (f90-mode-abbrev-table): Use the new :regexp feature.
1308         Merge defvar and mapc into define-abbrev-table.
1309         (f90-imenu-type-matcher): Remove unused `l'.
1310         (f90-imenu-generic-expression): Remove unused `not-ib'.
1311         (f90-prepare-abbrev-list-buffer): Use with-current-buffer.
1312         (f90-change-keywords): Use restore-buffer-modified-p.
1314 2008-04-24  Glenn Morris  <rgm@gnu.org>
1316         * net/goto-addr.el (goto-address-prog-mode):
1317         * progmodes/bug-reference.el (bug-reference-prog-mode):
1318         Define for compiler.
1320         * minibuffer.el (x-file-dialog): Declare as function.
1322         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file): Use
1323         dframe-update-speed rather than obsolete alias speedbar-update-speed.
1325         * calendar/cal-menu.el (cal-menu-diary-menu): Fix typo.
1326         (cal-menu-scroll-menu): Use commands rather than key macros, which don't
1327         work with easymenu.  Add :keys where needed.
1329         * calendar/cal-move.el (calendar-scroll-left): Handle case when
1330         event-start is nil.
1332         * calendar/calendar.el (calendar-mode-map): Fix typo.
1334 2008-04-24  Tom Tromey  <tromey@redhat.com>
1336         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
1337         Document keywords.  Add :suppress.
1338         * pcvs-defs.el (cvs-mode-map): Use :suppress.
1340         * net/goto-addr.el (goto-address-unfontify): New function.
1341         (goto-address-fontify): Use it.  Respect goto-address-prog-mode.
1342         (goto-address-fontify-region, goto-address-mode)
1343         (goto-address-prog-mode): New functions.
1345         * progmodes/bug-reference.el: New file.
1347 2008-04-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1349         * term/mac-win.el (mac-ts-active-input-buf): Move defvar to macterm.c.
1351 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1353         * emacs-lisp/easymenu.el (easy-menu-make-symbol): Don't wrap keyboard
1354         macros within lambdas.
1356 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1358         * minibuffer.el (completion-try-completion): Add `point' argument.
1359         Change return value.
1360         (completion-all-completions): Add `point' argument.
1361         (minibuffer-completion-help): Pass the new `point' argument.
1362         (completion--do-completion): Pass the whole field to try-completion.
1363         (completion--try-word-completion): Rewrite, making fewer assumptions.
1364         (completion-emacs21-try-completion, completion-emacs21-all-completions)
1365         (completion-emacs22-try-completion, completion-emacs22-all-completions)
1366         (completion-basic-try-completion, completion-basic-all-completions):
1367         New functions.
1368         (completion-styles-alist): Use them.
1370 2008-04-23  Agustin Martin  <agustin.martin@hispalinux.es>
1372         * ispell.el (ispell-set-spellchecker-params): New function to make sure
1373         right params and dictionary alists are used after spellchecker changes.
1374         (ispell-aspell-dictionary-alist, ispell-last-program-name)
1375         (ispell-initialize-spellchecker-hook): New variables and hook.
1376         (ispell-find-aspell-dictionaries): Use ispell-aspell-dictionary-alist.
1377         (ispell-maybe-find-aspell-dictionaries): Remove.
1378         Calls replaced by (ispell-set-spellchecker-params) calls.
1379         (ispell-have-aspell-dictionaries): Remove.
1380         * flyspell.el: Replace ispell-maybe-find-aspell-dictionaries by
1381         ispell-set-spellchecker-params.
1383 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1385         * complete.el (PC-do-completion): Be more robust in the presence of
1386         unexpected values in minibuffer-completion-predicate.
1388         * minibuffer.el (read-file-name): Don't let-bind default-directory.
1389         Only abbreviate default-filename if it's a file.
1391         * minibuffer.el (read-file-name-function, read-file-name-predicate)
1392         (read-file-name-completion-ignore-case, insert-default-directory):
1393         New vars, moved from fileio.c.
1394         (read-file-name): New fun, moved from fileio.c.
1395         * cus-start.el: Remove insert-default-directory and
1396         read-file-name-completion-ignore-case.
1398 2008-04-23  Magnus Henoch  <mange@freemail.hu>
1400         * tar-mode.el (tar-untar-buffer): If the entry has directory
1401         link type, extract it as a directory even if its file name doesn't
1402         end with a slash.  Fixes extraction of NetBSD tar archives.
1404 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1406         * server.el (server-start): Also don't get confused by CRs since we
1407         don't quote them.
1409 2008-04-23  Nick Roberts  <nickrob@snap.net.nz>
1411         * progmodes/gdb-ui.el (gdb-init-buffer): New function.
1412         (gdb-set-gud-minor-mode-existing-buffers)
1413         (gdb-info-breakpoints-custom, gdb-get-location)
1414         (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
1415         Previously gdb-create-define-alist wasn't always run and added to
1416         after-save-hook.
1418         * progmodes/gud.el (gud-tooltip-tips): Use tooltip-event-buffer
1420 2008-04-23  Kevin Ryde  <user42@zip.com.au>
1422         * progmodes/make-mode.el (makefile-fill-paragraph): Treat indented
1423         comments like unindented ones.
1425 2008-04-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1427         * term/mac-win.el (mac-ae-open-documents): Adjust selection range
1428         parameter origins.
1430 2008-04-23  Kevin Ryde  <user42@zip.com.au>
1432         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
1433         Bind print-level to ensure output forms aren't truncated if
1434         print-level is set to eval-expression-print-level when going via
1435         eval-defun and friends, or has been otherwise fiddled with.
1437 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1439         * progmodes/cc-mode.el (c-basic-common-init): Don't set
1440         font-lock-extend-after-change-region-function globally.
1442 2008-04-23  Juanma Barranquero  <lekktu@gmail.com>
1444         * speedbar.el (speedbar-use-tool-tips-flag)
1445         (speedbar-ignored-directory-regexp, speedbar-file-unshown-regexp)
1446         (speedbar-file-regexp, speedbar-message, speedbar-item-info)
1447         (speedbar-files-item-info, speedbar-maybe-add-localized-support)
1448         (speedbar-insert-files-at-point, speedbar-dynamic-tags-function-list)
1449         (speedbar-generic-list-positioned-group-p, speedbar-insert-generic-list)
1450         (speedbar-fetch-replacement-function, speedbar-extract-one-symbol)
1451         (speedbar-separator-face): Fix typos in docstrings.
1452         (speedbar-stealthy-function-list, speedbar-verbosity-level)
1453         (speedbar-supported-extension-expressions, speedbar-update-current-file)
1454         (speedbar-add-indicator, speedbar-tag-expand): Reflow docstring.
1455         (speedbar-use-imenu-flag, speedbar-ignored-directory-expressions)
1456         (speedbar-directory-unshown-regexp, speedbar-handle-delete-frame)
1457         (speedbar-show-info-under-mouse, speedbar-directory-buttons)
1458         (speedbar-check-vc-this-line, speedbar-files-line-directory)
1459         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
1460         (speedbar-buffers-line-directory, speedbar-recenter-to-top)
1461         (speedbar-recenter): Doc fixes.
1462         (speedbar-update-speed, speedbar-navigating-speed): Add obsolescence
1463         declaration and remove redundant info in docstring.
1465 2008-04-23  Dan Nicolaescu  <dann@ics.uci.edu>
1467         * vc-git.el (vc-git-status-printer): Deal with directories.
1469         * vc.el (vc-next-action): Look at more than the first file to
1470         determine the state.
1472 2008-04-23  Glenn Morris  <rgm@gnu.org>
1474         * dframe.el (dframe-have-timer-flag): Drop support for Emacs without
1475         timers.  Doc fix.
1476         (dframe-update-speed): Drop support for XEmacs < 20.
1477         (dframe-frame-mode): Drop support for Emacs < 20.
1478         (dframe-set-timer-internal): Drop support for Emacs without timers.
1479         (dframe-popup-kludge): Use mouse-menu-major-mode-map if defined.
1481         * ediff-init.el (ediff-check-version): Drop support for very old Emacs
1482         versions.  Add doc-string.  Mark as obsolete.
1484         * ps-def.el (ps-color-device): Drop support for XEmacs < 19.12.
1486         * speedbar.el (speedbar-use-tool-tips-flag): Check for tooltip-mode,
1487         rather than using an Emacs version test.
1489         * tree-widget.el (tree-widget-image-enable): Use display-images-p
1490         rather than an Emacs version test.
1492         * calendar/cal-china.el (holiday-chinese-qingming)
1493         (holiday-chinese-winter-solstice, holiday-chinese): New functions.
1494         * calendar/calendar.el (calendar-chinese-all-holidays-flag): New.
1495         * calendar/holidays.el (holiday-oriental-holidays): Add more holidays.
1497         * calendar/cal-islam.el (holiday-islamic): Doc fix.
1499         * calendar/diary-lib.el (diary-list-sexp-entries): Doc fix.
1500         (diary-remind): Allow negative DAYS to represent a range 1:DAYS.
1501         Suggested by Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
1503 2008-04-23  Nick Roberts  <nickrob@snap.net.nz>
1505         * progmodes/gdb-ui.el (gdb-previous-frame-address): Rename...
1506         (gdb-previous-frame-pc-address): ...to this.
1507         (gdb-get-selected-frame): Use MI command -stack-info-frame instead
1508         of "info frame" with Gdb 6.4+.
1509         (gdb-stack-list-frames-regexp): New regexp.
1510         (gdb-frame-handler-1): Parse output of -stack-info-frame
1512 2008-04-22  David Glasser  <glasser@davidglasser.net>  (tiny change)
1514         * tar-mode.el (tar-prefix-offset): New constant.
1515         (tar-header-block-tokenize): Support paths with long names
1516         which use the "ustar" standard.
1518 2008-04-22  Mathias Dahl  <mathias.dahl@gmail.com>
1520         * image-dired.el (image-dired-track-original-file)
1521         (image-dired-modify-mark-on-thumb-original-file):
1522         Use `dired-goto-file' instead of `search-forward'.  This solves
1523         a bug with finding files where the file name is a subset of other
1524         file names.  Doc fix.
1526 2008-04-22  Juri Linkov  <juri@jurta.org>
1528         * menu-bar.el (buffers-menu-max-size): Move its definition down to
1529         the "Buffers Menu" section.  Change group name `mouse' to `menu'.
1530         (yank-menu-length): Change group name `mouse' to `menu'.
1531         (buffers-menu-buffer-name-length): New user option.
1532         (menu-bar-update-buffers): Use buffers-menu-buffer-name-length
1533         instead of the hard-coded number 27.
1535 2008-04-22  Juri Linkov  <juri@jurta.org>
1537         * isearch.el (eval-when-compile): Require `help-macro'.
1538         (isearch-help-for-help-internal): Isearch specific Help screen
1539         created by `make-help-screen'.
1540         (isearch-help-map): New variable that binds "b", "k", "m" to
1541         isearch-specific commands, and binds other keys to
1542         isearch-other-control-char, thus allowing other Help keys to
1543         exit isearch mode and execute their global definitions.
1544         (isearch-help-for-help, isearch-describe-bindings)
1545         (isearch-describe-key, isearch-describe-mode): New commands.
1546         (isearch-mode-help): Define alias to isearch-describe-mode
1547         and remove its old function definition.
1548         (isearch-mode-map): Bind "\C-h" to isearch-help-map.
1549         Remove old comments because this issue is settled now.
1550         (isearch-forward): Describe three new Help commands in the docstring.
1551         (isearch-mode): Remove \\{isearch-mode-map} from the docstring,
1552         leave the single sentence at the first line of the docstring,
1553         and prepend the word "function" before `isearch-forward'
1554         to make the Help link to the function instead of variable.
1556 2008-04-22  Juri Linkov  <juri@jurta.org>
1558         * isearch.el (isearch-success-function): New variable with default
1559         to `isearch-success-function-default'.
1560         (isearch-search): Call a function from `isearch-success-function'
1561         instead of calling the hard-coded `isearch-range-invisible'.
1562         (isearch-success-function-default): New function that calls
1563         `isearch-range-invisible' and inverts its return value.
1565         * info.el (Info-search): In two similar places that skip
1566         undesired search matches move code to Info-search-success-function,
1567         and call `isearch-success-function' instead.
1568         (Info-search-success-function): New function copied from code
1569         in Info-search.  Replace isearch-range-invisible with
1570         text-property-not-all that checks for 'invisible and 'display
1571         properties to skip partially invisible matches (whose display
1572         properties were set by Info-fontify-node).
1573         (Info-mode): Set buffer-local isearch-success-function
1574         to Info-search-success-function.
1576 2008-04-22  Juri Linkov  <juri@jurta.org>
1578         * minibuffer.el (internal-complete-buffer-except): New function.
1580         * files.el (read-buffer-to-switch): New function.
1581         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
1582         Change interactive spec to call read-buffer-to-switch instead of
1583         using the letter "B".
1585         * simple.el (minibuffer-default-add-shell-commands): New function.
1586         Use declare-function for mailcap-file-default-commands from "mailcap".
1587         (shell-command): Set local minibuffer-default-add-function to
1588         minibuffer-default-add-shell-commands in minibuffer-with-setup-hook
1589         before calling read-shell-command.  Set 4th arg default-value of
1590         read-shell-command to relative buffer-file-name in file buffers.
1592         * dired-aux.el (dired-read-shell-command-default): Move it to
1593         gnus/mailcap.el and change its name to more general name
1594         mailcap-file-default-commands.
1595         (minibuffer-default-add-dired-shell-commands): New function.
1596         Use declare-function for mailcap-file-default-commands from "mailcap".
1597         (dired-read-shell-command): Set local minibuffer-default-add-function
1598         to minibuffer-default-add-dired-shell-commands in minibuffer-with-setup-hook
1599         before calling read-shell-command.  Remove dired-read-shell-command-default
1600         from the default value arg because default values are not set in
1601         minibuffer-default-add-dired-shell-commands.  Doc fix.
1603         * dired-x.el (dired-smart-shell-command): Sync arguments and
1604         interactive spec with changes in `shell-command'.
1605         Use dired-get-filename to get the dired file name at point
1606         as the default value in dired mode.
1608 2008-04-22  Juanma Barranquero  <lekktu@gmail.com>
1610         * info.el (Info-complete-menu-item): Add missing parenthesis.
1612 2008-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1614         * info.el (Info-complete-menu-item): Save point.
1616 2008-04-22  Juanma Barranquero  <lekktu@gmail.com>
1618         * minibuffer.el (minibuffer-complete-and-exit): Fix last change.
1620 2008-04-22  Andreas Schwab  <schwab@suse.de>
1622         * Makefile.in (emacs-deps): Define.
1623         Use it instead of $(lisp)/subdirs.el.
1625 2008-04-22  Dan Nicolaescu  <dann@ics.uci.edu>
1627         * vc.el (vc-next-action): Do not consider directories when
1628         checking for state compatibility.
1629         (vc-transfer-file): Use when not if.
1630         (vc-dir-parent-marked-p, vc-dir-children-marked-p): New functions.
1631         (vc-dir-mark-file): Use them.
1632         (vc-deduce-fileset): Also return the backend.
1633         (vc-diff-internal): Take as argument the value returned by
1634         vc-deduce-fileset instead of just the fileset.
1635         (vc-next-action, vc-finish-logentry, vc-version-diff, vc-diff)
1636         (vc-dir-mark-file, vc-print-log, vc-revert, vc-rollback)
1637         (vc-update): Update the vc-deduce-fileset and vc-diff-internal calls.
1639 2008-04-22  Tassilo Horn  <tassilo@member.fsf.org>
1641         * doc-view.el (doc-view-scroll-up-or-next-page): Don't use
1642         set-window-vscroll but image-scroll-down.  Fixes a bug where a
1643         command following SPC scrolled up again.
1645 2008-04-22  Nick Roberts  <nickrob@snap.net.nz>
1647         * progmodes/gdb-ui.el (gdb-locals-header): New variable.
1648         (gdb-locals-mode, gdb-registers-mode): Use it for header line.
1649         (gud-watch): Add "$" prefix when in registers buffer.
1651 2008-04-22  Glenn Morris  <rgm@gnu.org>
1653         * progmodes/gdb-ui.el (gdbmi-invalidate-frames): Declare as function.
1655         * whitespace.el (whitespace-display-table)
1656         (whitespace-display-table-was-local): Move definitions before use.
1658         * emacs-lisp/copyright.el (copyright-at-end-flag): New option.
1659         (copyright-limit): Respect copyright-at-end-flag.
1660         (copyright-re-search, copyright-start-point)
1661         (copyright-offset-too-large-p): New functions.
1662         (copyright-update-year): Use copyright-re-search.
1663         (copyright-update, copyright-fix-years): Use copyright-start-point,
1664         and copyright-re-search.
1665         (copyright): Use copyright-offset-too-large-p.
1666         * add-log.el (change-log-mode): Set copyright-at-end-flag.
1668         * add-log.el (top-level): Require 'cl when compiling.
1670 2008-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1672         * complete.el (PC-complete-as-file-name, PC-read-file-name-internal):
1673         Treat minibuffer-completion-predicate as a predicate.
1675         * minibuffer.el (completion--file-name-table): Accept both the old
1676         `dir' arg or the new `pred' arg.
1678         * ffap.el (ffap-read-file-or-url): Do not abuse completing-read's
1679         `predicate' argument to pass non-predicate data.
1680         (ffap-read-url-internal, ffap-read-file-or-url-internal):
1681         Use second arg as proper predicate.
1683         * vc-bzr.el (vc-bzr-complete-with-prefix): Remove.
1684         (vc-bzr-revision-completion-table): Use completion-table-with-context
1685         instead.
1687         * simple.el (choose-completion-string): Use minibuffer-completion-table.
1689 2008-04-21  Chong Yidong  <cyd@stupidchicken.com>
1691         * term.el (term-emulate-terminal): Perform redisplay after the
1692         process filter has finished running.
1694 2008-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1696         * vc.el (vc-dir): Use pop-to-buffer, so it can be customized.
1698         * minibuffer.el (completion-try-completion): Change magic symbol
1699         property name.  Rename from minibuffer-try-completion.
1700         (completion-all-completions): Rename from minibuffer-all-completions.
1701         Remove hide-spaces argument.
1702         (completion--do-completion): Rename from minibuffer--do-completion.
1703         (minibuffer-complete-and-exit): Call just try-completion rather than
1704         completion-try-completion to fix up the case.
1705         (completion--try-word-completion): Try to add space or hyphen before
1706         making `string' a prefix of `completion'.
1707         (completion--insert-strings): Rename from minibuffer--insert-strings.
1709 2008-04-22  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
1711         * net/tls.el (tls-program): Add -ign_eof argument to call the
1712         openssl commands.
1713         (tls-checktrust): Ditto.
1715 2008-04-21  Dan Nicolaescu  <dann@ics.uci.edu>
1717         * vc-cvs.el (vc-cvs-status-extra-headers): New function.
1719         * vc-hooks.el (vc-insert-file, vc-state, vc-working-revision)
1720         (vc-check-master-templates, vc-file-not-found-hook)
1721         (vc-kill-buffer-hook):
1722         * vc.el (vc-process-sentinel, vc-exec-after, vc-do-command)
1723         (vc-find-position-by-context, vc-buffer-context)
1724         (vc-restore-buffer-context, vc-responsible-backend)
1725         (vc-expand-dirs, vc-ensure-vc-buffer, vc-buffer-sync)
1726         (vc-next-action, vc-register, vc-register-with, vc-steal-lock)
1727         (vc-finish-logentry, vc-coding-system-for-diff, vc-switches)
1728         (vc-version-diff, vc-diff, vc-insert-headers)
1729         (vc-dired-buffers-for-dir, vc-dired-resynch-file)
1730         (vc-snapshot-precondition, vc-create-snapshot, vc-print-log)
1731         (vc-revert, vc-rollback, vc-version-backup-file)
1732         (vc-rename-master, vc-delete-file, vc-rename-file)
1733         (vc-branch-part, vc-default-retrieve-snapshot)
1734         (vc-annotate-display-autoscale, vc-annotate-display-select)
1735         (vc-annotate, vc-annotate-warp-revision, vc-annotate-difference)
1736         (vc-annotate-lines, vc-file-tree-walk-internal): Use when instead of if.
1737         (vc-dir-update): Handle directories.
1738         (vc-default-status-printer): Simplify.
1740         * progmodes/asm-mode.el (asm-mode-map):
1741         * progmodes/hideif.el (hide-ifdef-mode-menu): Add :help.
1743         * progmodes/m4-mode.el (m4-mode-map): Add menu.
1745 2008-04-21  Kenichi Handa  <handa@m17n.org>
1747         * select.el (xselect-convert-to-string): Send a C_STRING only if
1748         the polymorphic target TEXT is requested.
1750 2008-04-21  Juanma Barranquero  <lekktu@gmail.com>
1752         * minibuffer.el (completion-setup-hook, display-completion-list)
1753         (completion--file-name-table): Fix typos in docstrings.
1754         (completion-table-dynamic): Fix typo, and reflow docstring.
1756 2008-04-20  Andreas Schwab  <schwab@suse.de>
1758         * server.el (server-switch-buffer): Also consider clients in the
1759         selected frame.
1761 2008-04-19  Nick Roberts  <nickrob@snap.net.nz>
1763         * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
1764         Select window clicked on first.
1765         (gdb): Display thread number in mode-line.
1766         (gdb-make-header-line-mouse-map): Move to avoid byte compiler warnings.
1767         (gdb-breakpoints-header): New variable.
1768         (gdb-breakpoints-mode, gdb-threads-mode): Use it for header line.
1770 2008-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1772         * vc-sccs.el (vc-sccs-do-command): New fun.  Use the "sccs" command.
1773         (vc-sccs-register, vc-sccs-checkin, vc-sccs-find-revision)
1774         (vc-sccs-checkout, vc-sccs-rollback, vc-sccs-revert)
1775         (vc-sccs-steal-lock, vc-sccs-modify-change-comment)
1776         (vc-sccs-print-log): Use it.
1778         * vc-hooks.el (vc-path): Remove SCCS-specific hack.
1780         * emacs-lisp/lisp-mode.el (lisp-mode-auto-fill): Make it an alias.
1781         * progmodes/scheme.el (scheme-mode-variables): Don't use it.
1783         * tooltip.el (tooltip-previous-message): New var.
1784         (tooltip-show-help-non-mode): Rewrite to better follow the behavior of
1785         the C code (avoid overwriting a minibuffer, restore previous echo
1786         message, ...).
1787         (tooltip-delay, tooltip-process-prompt-regexp, tooltip-strip-prompt):
1788         Simplify.
1790 2008-04-19  Nick Roberts  <nickrob@snap.net.nz>
1792         * progmodes/gdb-ui.el (gdb-thread-indicator): New variable.
1793         (gdb-init-1): Initialise it.
1794         (gdb-annotation-rules): New entry for "new-thread".
1795         (gdb-thread-identification): New function to customize
1796         mode-line-buffer-identification.
1797         (gdb-frames-mode, gdb-registers-mode, gdb-locals-mode)
1798         (gdb-assembler-mode): Use it.
1799         (gdb-threads-mode): Force "info threads" onto queue.
1801 2008-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1803         * files.el (locate-file-completion-table): Rename from
1804         locate-file-completion and make it use `pred' in the normal way.
1805         (locate-file-completion): New compatibility wrapper.
1806         (load-library): Use locate-file-completion-table.
1807         * finder.el (finder-commentary):
1808         * subr.el (locate-library):
1809         * emacs-lisp/find-func.el (find-library): Likewise.
1810         * info.el: Use with-current-buffer and inhibit-read-only.
1811         (Info-read-node-name-2): Change to use `predicate' in the normal way.
1812         (Info-read-node-name-1): Adjust uses accordingly.
1814         * minibuffer.el (completion-table-with-context): Add support for `pred'.
1815         (completion-table-with-terminator): Don't use complete-with-action
1816         since we have to distinguish all three cases anyway.
1817         (completion-table-with-predicate): New function.
1818         (dynamic-completion-table): Add obsolete alias.
1820         * emacs-lisp/trace.el (trace-make-advice): Don't change selected-window.
1822 2008-04-18  Sam Steingold  <sds@gnu.org>
1824         * vc.el (vc-dir-menu-map, vc-dir-mode-map, vc-dir-tool-bar-map):
1825         Use quit-window instead of bury-buffer.
1827 2008-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1829         * minibuffer.el (completion-table-with-terminator): Fix last fix.
1831 2008-04-18  Andreas Schwab  <schwab@suse.de>
1833         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
1834         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
1835         Depend on $(lisp)/subdirs.el.
1837 2008-04-18  Juanma Barranquero  <lekktu@gmail.com>
1839         * descr-text.el (describe-char-after):
1840         Use `define-obsolete-function-alias'.
1842         * dired-x.el (dired-omit-files-p): Use `define-obsolete-variable-alias'.
1844         * facemenu.el (facemenu-unlisted-faces): Fix obsolescence description.
1846         * savehist.el (savehist-load): Add WHEN to obsolescence declaration.
1847         Remove redundant obsolescence info in docstring.
1849         * vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
1850         (vc-header-alist): Add WHEN to obsolescence declaration.
1851         (vc-state): Fix typo in docstring.
1853         * emacs-lisp/checkdoc.el (checkdoc-minor-keymap):
1854         Use `define-obsolete-variable-alias'.
1856         * emulation/tpu-edt.el (tpu-have-ispell):
1857         * international/codepage.el (codepage-setup):
1858         Fix typo in obsolescence declaration.
1860         * international/mule.el (char-coding-system-table):
1861         Remove redundant obsolescence info in docstring.
1862         (charset-list, generic-char-p, set-char-table-default):
1863         Fix typos in obsolescence decarations.
1865         * international/mule-diag.el (non-iso-charset-alist):
1866         Fix typo in obsolescence declaration.
1867         (decode-codepage-char): Remove redundant obsolescence info in docstring.
1869         * font-core.el (font-lock-defaults-alist):
1870         * font-lock.el (font-lock-reference-face):
1871         * frame.el (screen-height, screen-width, set-screen-width)
1872         (set-screen-height):
1873         * hilit-chg.el (highlight-changes-initial-state):
1874         * isearch.el (isearch-return-char):
1875         * log-edit.el (cvs-commit-buffer-require-final-newline)
1876         (cvs-changelog-full-paragraphs):
1877         * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
1878         (mouse-popup-menubar-stuff):
1879         * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button)
1880         (mouse-wheel-click-button):
1881         * outline.el (outline-visible):
1882         * pcvs-defs.el (cvs-diff-ignore-marks, cvs-diff-buffer-name):
1883         * pcvs-info.el (cvs-display-full-path, cvs-fileinfo->full-path):
1884         * emacs-lisp/lisp-mode.el (lisp-comment-indent):
1885         * progmodes/compile.el (compile-internal):
1886         Add WHEN to obsolescence declarations.
1888 2008-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1890         * emacs-lisp/debug.el (debug): Revert to bury-buffer since quit-window
1891         is not better anyway.
1893 2008-04-17  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1895         * whitespace.el (whitespace-report-region): Handle whitespace-tab-width
1896         properly.
1898 2008-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1900         * progmodes/python.el (python-mode-map): Use abbrev-table-menu.
1901         (python-use-skeletons): Remove, unused.
1902         (python-skeletons): Remove.  Use the abbrev table instead.
1903         (python-mode-abbrev-table): Fix regexp;
1904         add enable-function and case-fixed.
1905         (def-python-skeleton): Simplify.
1906         (python-expand-template): Use the abbrev-table and abbrev-insert.
1907         (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
1908         Remove.
1909         (python-mode): Don't set pre-abbrev-expand-hook.
1911         * skeleton.el: Set coding-tag.
1913         * abbrev.el (abbrev-insert): New function extracted from expand-abbrev.
1914         (expand-abbrev): Use it.
1915         (abbrev-table-menu): New function.
1917         * abbrev.el (define-abbrev-table): Fontify dosctrings as such.
1919         * minibuffer.el (completion-table-with-terminator): Fix paren typo.
1921 2008-04-17  Sam Steingold  <sds@gnu.org>
1923         * pcvs-util.el (cvs-bury-buffer): Use quit-window instead of the
1924         idiosyncratic bury-buffer/delete-window logic.
1926 2008-04-17  Juanma Barranquero  <lekktu@gmail.com>
1928         * emacs-lisp/crm.el (crm-completion-help, crm-complete)
1929         (crm-complete-word, crm-complete-and-exit): Fix typo in previous change.
1931 2008-04-17  Kenichi Handa  <handa@m17n.org>
1933         * international/characters.el: Don't make the width of U+00AD to 0.
1935 2008-04-17  Nick Roberts  <nickrob@snap.net.nz>
1937         * progmodes/gdb-ui.el (gdb-stack-update): New variable.
1938         (gdb, gdb-starting, gdb-frames-mode): Use it.
1939         (gdb-invalidate-frames): Advise to call "info stack" only if
1940         execution has occurred.
1941         (gdb-info-breakpoints-custom): Only update overlay-arrow pointing to
1942         selected frame if no execution has occurred.
1943         (gdb-frames-force-update): New interactive function.
1944         (gdb-frames-mode-map): Bind it to "F".
1946 2008-04-17  Michael Olson  <mwolson@gnu.org>
1948         * textmodes/remember.el (remember-version): Release Remember 2.0.
1950 2008-04-16  Yoni Rabkin  <yoni@rabkins.net>
1952         * textmodes/artist.el:
1953         * progmodes/vhdl-mode.el:
1954         * progmodes/verilog-mode.el:
1955         * progmodes/vera-mode.el:
1956         * progmodes/simula.el:
1957         * progmodes/ps-mode.el:
1958         * progmodes/cmacexp.el:
1959         * obsolete/hilit19.el:
1960         * emulation/viper.el:
1961         * ediff.el: Cleanup the bug-report email addresses and make sure the
1962         maintainer is still willing to handle bug reports.
1964 2008-04-16  Dan Nicolaescu  <dann@ics.uci.edu>
1966         * vc.el (vc-dir-kill-query): Fix thinko.
1968 2008-04-16  Glenn Morris  <rgm@gnu.org>
1970         * calendar/diary-lib.el (diary-remind): Don't clobber `date' passed
1971         by diary-sexp-entry.
1973 2008-04-16  Markus Triska  <markus.triska@gmx.at>
1975         * proced.el (proced-command-alist): Add support for darwin.
1977 2008-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1979         * proced.el (proced-mode): Redefine as just the major-mode.
1980         (proced): Separate it from proced-mode.
1982         * vc.el: Rename vc-status to vc-dir and the vc-status var to vc-ewoc.
1984 2008-04-15  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1986         * whitespace.el: Honor the `indent-tabs-mode' setting from user.
1987         Suggested by Stephen Deasey <sdeasey@gmail.com>.  Honor also the
1988         `tab-width' setting from user.  New version 10.0.  Doc and docstring
1989         fix.
1990         (whitespace-style, whitespace-chars): Remove options.
1991         (whitespace-style-mark): New option, replace whitespace-style deleted
1992         option.  Fix docstring.
1993         (whitespace-style-color): New option, replace whitespace-chars deleted
1994         option.  Fix docstring.
1995         (whitespace-space, whitespace-hspace, whitespace-tab)
1996         (whitespace-newline, whitespace-trailing, whitespace-line)
1997         (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
1998         (whitespace-space-after-tab, whitespace-hspace-regexp)
1999         (whitespace-space-regexp, whitespace-tab-regexp)
2000         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
2001         (whitespace-empty-at-eob-regexp, whitespace-line-column)
2002         (whitespace-toggle-option-alist): Fix docstring.
2003         (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
2004         (whitespace-space-after-tab-regexp, whitespace-display-mappings): Fix
2005         docstring and initialization.
2006         (global-whitespace-mode): Autoloaded global minor mode.
2007         (whitespace-chars-value-list, whitespace-style-value-list)
2008         (whitespace-active-chars, whitespace-active-style)
2009         (whitespace-toggle-chars, whitespace-toggle-style): Remove vars.
2010         (whitespace-color-value-list): New var, replace
2011         whitespace-chars-value-list removed var.
2012         (whitespace-mark-value-list): New var, replace
2013         whitespace-style-value-list removed var.
2014         (whitespace-active-color): New var, replace whitespace-active-chars
2015         removed var.
2016         (whitespace-active-mark): New var, replace whitespace-active-style
2017         removed var.
2018         (whitespace-toggle-color): New var, replace whitespace-toggle-chars
2019         removed var.
2020         (whitespace-toggle-mark): New var, replace whitespace-toggle-style
2021         removed var.
2022         (whitespace-toggle-option-alist, whitespace-report-list)
2023         (whitespace-report-text, whitespace-help-text): Fix initialization.
2024         (whitespace-indent-tabs-mode, whitespace-tab-width): New vars.
2025         (whitespace-toggle-options, global-whitespace-toggle-options)
2026         (whitespace-cleanup-region, whitespace-report-region)
2027         (whitespace-interactive-char): Fix docstring and code.
2028         (whitespace-cleanup, whitespace-report): Fix docstring.
2029         (whitespace-replace-spaces-by-tabs): Remove fun.
2030         (whitespace-replace-action): New fun, replace
2031         whitespace-replace-spaces-by-tabs removed fun.
2032         (whitespace-regexp, whitespace-indentation-regexp)
2033         (whitespace-space-after-tab-regexp, whitespace-insert-value)
2034         (whitespace-kill-buffer): New funs.
2035         (whitespace-insert-option-mark, whitespace-help-on)
2036         (whitespace-help-off, whitespace-turn-on, whitespace-turn-off)
2037         (whitespace-color-on, whitespace-color-off)
2038         (whitespace-display-char-on): Fix code.
2040 2008-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2042         * mouse-drag.el (mouse-throw-magnifier-with-scroll-bar)
2043         (mouse-throw-magnifier-with-mouse-movement): Remove.
2044         (mouse-throw-magnifier-base): New const.
2045         (mouse-drag-scroll-delta): New fun.
2046         (mouse-drag-throw): Use it.
2048 2008-04-15  Juanma Barranquero  <lekktu@gmail.com>
2050         * international/uni-bidi.el, international/uni-category.el:
2051         * international/uni-combining.el, international/uni-comment.el:
2052         * international/uni-decimal.el, international/uni-decomposition.el:
2053         * international/uni-digit.el, international/uni-lowercase.el:
2054         * international/uni-mirrored.el, international/uni-name.el:
2055         * international/uni-numeric.el, international/uni-old-name.el:
2056         * international/uni-titlecase.el, international/uni-uppercase.el:
2057         * international/charprop.el: Regenerate.
2059 2008-04-15  Dan Nicolaescu  <dann@ics.uci.edu>
2061         * vc.el (vc-status-fileinfo): Add new member directoryp.
2062         (vc-default-status-printer): Print directories.
2063         (vc-status-update): Sort files before subdirectories.
2065         * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
2066         Add alternative implementation based on "cvs update".
2068 2008-04-15  Tassilo Horn  <tassilo@member.fsf.org>
2070         * doc-view.el: Changed requirements section to tell that only one
2071         of dvipdf or dvipdfm is needed.
2072         (doc-view-already-converted-p): Fix bug that forced reconversion
2073         if doc was already converted.
2075 2008-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2077         * minibuffer.el (minibuffer-message):
2078         Make sure we can put-text-property.
2080         * emacs-lisp/crm.el: Complete rewrite.
2082         * tmm.el (tmm-completion-delete-prompt): Don't hardcode point-min==1.
2083         (tmm-add-prompt): Make sure completion-setup-hook is preserved even in
2084         case of an error in display-completion-list.
2086         * filecache.el (file-cache-completions-keymap): Move init from
2087         file-cache-completion-setup-function into declaration.
2088         (file-cache-minibuffer-complete): Simplify.
2089         (file-cache-completion-setup-function): Use standard-output,
2090         preserve current-buffer.
2092         * vc.el (vc-status-update): Fix typo.
2093         (vc-status-update): Set needs-update.
2094         (vc-status-refresh): η-reduce.
2096 2008-04-14  Tassilo Horn  <tassilo@member.fsf.org>
2098         * doc-view.el (doc-view-mode-map): Bind C-a to image-bol and C-e
2099         to image-eol.
2101 2008-04-14  Alexandre Julliard  <julliard@winehq.org>
2103         * vc.el (vc-status-update): Undo the previous revert.
2105 2008-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2107         * minibuffer.el (completion-table-with-terminator): Those completions
2108         are never valid w.r.t test-completion.
2109         (completion--file-name-table):
2110         Check completion-all-completions-with-base-size.
2112 2008-04-14  Tassilo Horn  <tassilo@member.fsf.org>
2114         * doc-view.el (doc-view-dvipdf-program): New variable.
2115         (doc-view-dvipdfm-program): Mention doc-view-dvipdf-program.
2116         (doc-view-mode-p): Check for doc-view-dvipdf-program as
2117         alternative for doc-view-dvipdfm-program.
2118         (doc-view-dvi->pdf): Prefer dvipdf over dvipdfm.
2120         * doc-view.el (doc-view-start-process): Don't set
2121         default-directory to "~/" if the current value is valid.
2122         This broke PS files that run other files in the same directory.
2124 2008-04-14  Dan Nicolaescu  <dann@ics.uci.edu>
2126         * vc.el (vc-status-kill-query): New function.
2127         (vc-status-mode): Add it to kill-buffer-query-functions.
2128         (vc-status-show-fileentry): New function.
2129         (vc-status-menu-map): Bind it.  Bind vc-next-action.
2131 2008-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2133         * minibuffer.el (minibuffer-message): Put cursor at the right place.
2135 2008-04-13  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2137         * proced.el (proced-send-signal): Fix error recognition.
2139 2008-04-13  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2141         * proced.el (proced-command-alist): Remove sort column.
2142         (proced-command, proced-procname-column):
2143         Use make-variable-buffer-local.
2144         (proced-signal-function): Rename from proced-kill-program.
2145         Allow for elisp symbols and string values representing system calls.
2146         (proced-marker-regexp, proced-success-message): New functions.
2147         (proced): Use defalias.  Add autoload cookie.
2148         (proced-unmark-backward, proced-toggle-marks)
2149         (proced-hide-processes): New commands.
2150         (proced-do-mark): Simplify code.
2151         (proced-insert-mark): Use optional arg BACKWARD instead of line number.
2152         (proced-update): Remove sorting.
2153         (proced-send-signal): Display number of processes to operate on.
2154         Allow for system calls or elisp functions to send signals.
2155         Check if signal was sent successfully.
2157 2008-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2159         * minibuffer.el (completion-all-completion-with-base-size): New var.
2160         (completion--some): New function.
2161         (completion-table-with-context, completion--file-name-table):
2162         Return the base-size if requested.
2163         (completion-table-in-turn): Generalize to multiple arguments.
2164         (complete-in-turn): Compatibility alias.
2165         (completion-styles-alist): New var.
2166         (completion-styles): New customization.
2167         (minibuffer-try-completion, minibuffer-all-completions):
2168         New functions.
2169         (minibuffer--do-completion, minibuffer-complete-and-exit)
2170         (minibuffer-try-word-completion): Use them.
2171         (display-completion-list, minibuffer-completion-help): Use them.
2172         Handle all-completions's new base-size info to set completion-base-size.
2173         * info.el (Info-read-node-name-1): Use completion-table-with-context,
2174         completion-table-with-terminator and complete-with-action.
2175         Remove the now obsolete completion-base-size-function property.
2176         * simple.el (completion-list-mode-map): Move init into declaration.
2177         (completion-list-mode): Use define-derived-mode.
2178         (completion-setup-function): Use any completion-base-size that may
2179         have been set before.  Remove handling of completion-base-size-function.
2180         * loadup.el: Move abbrev.el up earlier.
2182 2008-04-13  Alexandre Julliard  <julliard@winehq.org>
2184         * vc-git.el (vc-git-after-dir-status-stage)
2185         (vc-git-dir-status-goto-stage): New functions.
2186         (vc-git-after-dir-status-stage1)
2187         (vc-git-after-dir-status-stage1-empty-db)
2188         (vc-git-after-dir-status-stage2): Remove, functionality moved
2189         into the new generic stage functions.
2190         (vc-git-dir-status-files): New function.
2192         * vc.el (vc-status-update): Revert an incorrect rewrite.
2193         Add some comments.
2194         (vc-status-refresh-files): New function.
2195         (vc-status-refresh): Use `vc-status-refresh-files' to refresh the
2196         state of up-to-date files.
2197         (vc-default-dir-status-files): New function.
2199 2008-04-13  Juanma Barranquero  <lekktu@gmail.com>
2201         * minibuffer.el (completion--embedded-envvar-table)
2202         (read-file-name-internal): Fix typos in 2008-04-11 change.
2204         * faces.el (read-face-name): Use `completion-table-in-turn',
2205         not `complete-in-turn'.
2207 2008-04-13  Andreas Schwab  <schwab@suse.de>
2209         * progmodes/etags.el: Require 'cl when compiling.
2211 2008-04-12  Nick Roberts  <nickrob@snap.net.nz>
2213         * progmodes/gud.el (gud-menu-map): Expand tooltip.
2215         * progmodes/gdb-ui.el (gdb-find-source-frame): Improve doc string.
2216         (menu): Add/expand menu tooltips.
2218 2008-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
2220         * progmodes/sh-script.el (sh-show-indent): Fix typo.
2221         (sh-mode-map): Add a toggle for inserting braces and quotes in pairs.
2223         * vc-cvs.el (vc-cvs-registered): Allow removed files to be
2224         considered registered.
2226 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
2228         * emacs-lisp/copyright.el (copyright-update-directory): New command.
2230         * ediff-wind.el (ediff-split-window-function)
2231         (ediff-merge-split-window-function): Improve custom type.
2233 2008-04-12  Eli Zaretskii  <eliz@gnu.org>
2235         * loadup.el ("minibuffer"): Move after "faces".
2237 2008-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2239         * progmodes/hideif.el (hif-factor): Handle unary minus.
2241 2008-04-12  Glenn Morris  <rgm@gnu.org>
2243         * calendar/cal-china.el (chinese-calendar-time-zone):
2244         Mark obsolete name as risky too.
2246         * calendar/calendar.el (calendar-faces): New custom group.
2247         (calendar-today, diary, holiday): Doc fix.
2248         Move to calendar-faces group.
2249         * calendar/diary-lib.el (diary-face, diary-anniversary, diary-time)
2250         (diary-button): Doc fix.  Move to calendar-faces group.
2252         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
2253         * desktop.el, files.el, hilit-chg.el, ibuffer.el, iswitchb.el:
2254         * pcvs-info.el, recentf.el, speedbar.el, calendar/cal-china.el:
2255         * calendar/cal-hebrew.el, calendar/cal-x.el, calendar/calendar.el
2256         * calendar/diary-lib.el, net/net-utils.el, progmodes/gud.el:
2257         Move non-autoloaded define-obsolete-variable-alias calls for defcustoms
2258         not in dumped files before the associated defcustom.
2260 2008-04-11  Johan Bockgård  <bojohan@gnu.org>
2262         * minibuffer.el (lazy-completion-table): Fix debug spec.
2264 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2266         * minibuffer.el (complete-with-action, lazy-completion-table):
2267         Move from subr.el.
2268         (apply-partially, completion-table-dynamic)
2269         (completion-table-with-context, completion-table-with-terminator)
2270         (completion-table-in-turn): New funs.
2271         (completion--make-envvar-table, completion--embedded-envvar-table):
2272         New funs.
2273         (read-file-name-internal): Use them.
2274         (completion-setup-hook): Move from simple.el.
2275         * subr.el (complete-with-action, lazy-completion-table):
2276         * simple.el (completion-setup-hook): Move to minibuffer.el.
2278 2008-04-11  Glenn Morris  <rgm@gnu.org>
2280         * Makefile.in (AUTOGENEL): Add calc/calc-loaddefs.el.
2282 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2284         * progmodes/python.el (python-mode): Don't mess with hippie-expand.
2286         * Makefile.in (bootstrap-prepare): Make tpu-edt.el writable as well.
2288         * textmodes/fill.el (fill-forward-paragraph-function): New var.
2289         (fill-forward-paragraph): New fun.
2290         (fill-paragraph, fill-region): Use it.
2292         * vc.el: Change `dir-status' to not take (and pass) status-buffer.
2293         (vc-status-create-fileinfo): Make `extra' optional.
2294         (vc-status-busy): New fun.
2295         (vc-status-menu-map): Use it.
2296         (vc-status-crt-marked): Remove.
2297         (vc-status-update): Rename from vc-status-add-entries.
2298         Add argument so as to prevent addition of entries.  Rewrite.
2299         (vc-update-vc-status-buffer): Remove.
2300         (vc-status-refresh): Don't remove old entries, set them to
2301         up-to-date instead.  Also do it after the update is complete.
2302         (vc-status-marked-files): η-reduce.
2304         * dired.el (dired-read-dir-and-switches): Use read-directory-name even
2305         for non-dialogs.
2307         * Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
2309         * loadup.el: Load ldefs-boot.el if loaddefs.el doesn't exist.
2311 2008-04-11  Jan Djärv  <jan.h.d@swipnet.se>
2313         * tooltip.el (tooltip-show-help-non-mode): Set message-truncate-lines
2314         to t and don't truncate msg.
2316 2008-04-11  Glenn Morris  <rgm@gnu.org>
2318         * calendar/calendar.el (diary, holidays):
2319         Move custom groups to other files.
2320         (holiday-general-holidays, holiday-oriental-holidays)
2321         (holiday-local-holidays, holiday-other-holidays, hebrew-holidays-1)
2322         (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
2323         (holiday-hebrew-holidays, holiday-christian-holidays)
2324         (holiday-islamic-holidays, holiday-bahai-holidays)
2325         (holiday-solar-holidays, calendar-holidays): Move to holidays.el.
2326         * calendar/diary-lib.el: Move custom group here from calendar.el.
2327         * calendar/holidays-lib.el: Move custom group and variables here
2328         from calendar.el.
2330         * calendar/cal-china.el (calendar-chinese-time-zone): Mark as risky.
2332         * calendar/cal-dst.el (calendar-dst-check-each-year-flag):
2333         Fix custom group.
2334         (calendar-current-time-zone-cache): Autoload riskiness.
2336         * calendar/cal-tex.el (cal-tex-preamble-extra): Fix custom type.
2338 2008-04-11  Chong Yidong  <cyd@stupidchicken.com>
2340         * woman.el (woman2-TH): Use string-equal instead of string-match.
2342 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2344         * smerge-mode.el (smerge-apply-resolution-patch): Fix typo.
2345         (smerge-resolve): Merge the "2-way refinement" case with one half of
2346         the "mere whitespace" resolution.
2348 2008-04-10  Dan Nicolaescu  <dann@ics.uci.edu>
2350         * vc-bzr.el (vc-bzr-after-dir-status): Detect the conflict state.
2352 2008-04-10  Juanma Barranquero  <lekktu@gmail.com>
2354         * subr.el (assoc-ignore-case, assoc-ignore-representation):
2355         Add WHEN to obsolescence declaration.
2357         * makefile.w32-in (AUTOGENEL): Add calc-loaddefs.el.
2359 2008-04-10  Dan Nicolaescu  <dann@ics.uci.edu>
2361         * vc-hooks.el (vc-state): Add new state `conflict'.
2362         (vc-after-save): Use when not if.
2363         (vc-default-mode-line-string): Deal with the conflict state.
2364         (vc-prefix-map):
2365         (vc-menu-map): Bind vc-status instead of vc-directory.
2367         * vc.el (vc-editable-p):
2368         (vc-default-status-printer):
2369         (vc-next-action): Deal with the conflict state.
2370         (vc-mark-resolved): New function.
2371         (vc-status-mode): Fix mode name.
2372         (vc-default-comment-history): Use when not if.
2373         (Todo): Add new entries, remove old ones.
2375         * vc-cvs.el (vc-cvs-merge, vc-cvs-merge-news): Set conflict state.
2376         (vc-cvs-parse-status):
2377         (vc-cvs-after-dir-status):
2378         * vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
2379         Detect the conflict state.
2381         * vc-hg.el (vc-hg-dir-status): Remove unneeded call.
2383 2008-04-10  Glenn Morris  <rgm@gnu.org>
2385         * menu-bar.el (menu-bar-options-menu) <truncate-lines>:
2386         Respect truncate-partial-width-windows in non-full windows,
2387         with regards to :toggle and :enable state.
2389         * simple.el (toggle-truncate-lines): Doc fix.
2391         * Makefile.in (MH_E_DIR): New variable.
2392         (MH_E_SRC): Restore variable removed 2008-03-13.
2393         (mh-loaddefs.el): Depend on $MH_E_SRC.
2394         (CAL_DIR, CAL_SRC): New variables.
2395         (cal-loaddefs.el, diary-loaddefs.el, hol-loaddefs.el):
2396         Depend on CAL_SRC.
2398         * calendar/calendar.el (calendar, diary): Add :prefix.
2399         (holidays): Change :prefix.
2400         (calendar-today, holiday, calendar-holiday-marker)
2401         (european-calendar-style): Change custom groups.
2403         * calendar/calendar.el (diary-hook, diary-display-hook):
2404         Move to diary-lib.el.
2405         * calendar/diary-lib.el (diary-hook, diary-display-hook):
2406         Move here from calendar.el.
2407         * calendar/appt.el: Require diary-lib rather than calendar.
2408         * calendar/cal-x.el (diary-display-hook): Declare for compiler.
2410         * calendar/appt.el (appt): Add :prefix.
2412         * calendar/diary-lib.el (diary-hook): Doc fix.
2413         (diary-mark-sexp-entries): Fix replacement of calendar-for-loop.
2415 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2417         * minibuffer.el (minibuffer--double-dollars, read-file-name-internal):
2418         New functions.
2420         * minibuffer.el (minibuffer--do-completion): Don't forget to propagate
2421         the arg to recursive calls.
2423 2008-04-09  Juanma Barranquero  <lekktu@gmail.com>
2425         * minibuffer.el (completion-auto-help): Fix typo.
2427 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2429         * vc-cvs.el (vc-cvs-diff-tree): Remove unused function.
2431 2008-04-09  Michael Albinus  <michael.albinus@gmx.de>
2433         * net/tramp.el (tramp-find-file-name-coding-system-alist): New defun.
2434         (tramp-handle-insert-file-contents, tramp-handle-write-region): Use it.
2436 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2438         * vc-hooks.el (vc-default-mode-line-string): Use ? for missing.
2440         * minibuffer.el (minibuffer): Move group from cus-edit.el.
2441         (completion-auto-help): Move from C code.
2442         (minibuffer--maybe-completion-help): Remove.
2443         (minibuffer--bitset): New function.
2444         (minibuffer--do-completion): Rename from minibuffer-do-completion.
2445         Renumber a bit.  Really complete on string *before* point.
2446         Add argument used for word-completion.
2447         Join trailing / in completion with following text, as done in
2448         minibuffer-complete-word.
2449         Handle new value `lazy' for completion-auto-help.
2450         (minibuffer-try-word-completion): New function extracted from
2451         minibuffer-complete-word.
2452         (minibuffer-complete-word): Use minibuffer--do-completion.
2453         (minibuffer--insert-strings): Rename from
2454         minibuffer-complete-insert-strings.
2455         (exit-minibuffer): Fix typo.
2456         * cus-edit.el (minibuffer): Move group to minibuffer.el.
2457         * cus-start.el: Remove completion-auto-help.
2459 2008-04-09  Alexandre Julliard  <julliard@winehq.org>
2461         * vc.el (vc-status-add-entries): New function.
2462         (vc-status-add-entry): Remove.
2463         (vc-update-vc-status-buffer, vc-status-mark-buffer-changed):
2464         Use vc-status-add-entries.
2466         * emacs-lisp/ewoc.el (ewoc-collect): Return results in the correct
2467         order.
2469 2008-04-09  Jason Rumney  <jasonr@gnu.org>
2471         * makefile.w32-in (LOADDEFS): Add mh-loaddefs.el.
2472         ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule.
2473         (pre-mh-loaddefs.el-CMD, pre-mh-loaddefs.el-SH): Remove.
2474         (AUTOGENEL): New variable.
2475         (distclean, maintainer-clean): New targets.
2477 2008-04-09  Chong Yidong  <cyd@stupidchicken.com>
2479         * emacs-lisp/regexp-opt.el (regexp-opt):
2480         Reduce max-lisp-eval-depth and max-specpdl-size to 10000.
2482 2008-04-09  Lennart Borgman  <lennart.borgman@gmail.com>
2484         * nxml/nxml-mode.el (nxml-cleanup): New function.
2485         (nxml-mode): Add it to change-major-mode-hook.
2487 2008-04-09  Jan Djärv  <jan.h.d@swipnet.se>
2489         * term/x-win.el (x-gtk-stock-map): Map info to gtk-info.
2491 2008-04-09  Juanma Barranquero  <lekktu@gmail.com>
2493         * calc/.cvsignore: New file.
2495 2008-04-09  Jan Djärv  <jan.h.d@swipnet.se>
2497         * vc.el (vc-status-tool-bar-map): Add vc-print-log to tool bar.
2499         * tooltip.el (tooltip-mode): Set tooltip-show-help-non-mode as
2500         show-help-function when turning tooltip off.
2501         (tooltip-show): Call tooltip-show-help-non-mode if use-echo-area.
2502         (tooltip-trunc-str, tooltip-show-help-non-mode): New.
2504 2008-04-09  Alan Mackenzie  <acm@muc.de>
2506         * font-lock.el (font-lock-extend-after-change-region-function):
2507         Make it buffer local.
2509 2008-04-09  Glenn Morris  <rgm@gnu.org>
2511         * calendar/calendar.el (diary-file, european-calendar-style):
2512         Remove autoload cookies.
2514 2008-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
2516         * outline.el (outline-mode-menu-bar-map):
2517         * log-view.el (log-view-mode-menu):
2518         * log-edit.el (log-edit-menu): Add :help.
2520 2008-04-09  Chong Yidong  <cyd@stupidchicken.com>
2522         * emacs-lisp/regexp-opt.el (regexp-opt-group):
2523         Use substring-no-properties for correct handling of unibyte strings.
2525 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2527         * add-log.el (change-log-next-buffer): Handle the case where version<
2528         signals an error.
2530         * mouse.el (mouse-menu-major-mode-map): New fun extracted from
2531         mouse-major-mode-menu.
2532         (mouse-menu-bar-map): New fun extracted from mouse-popup-menubar.
2533         (mouse-major-mode-menu, mouse-popup-menubar)
2534         (mouse-popup-menubar-stuff): Use them.
2535         (C-down-mouse-3): Bind to a dynamic map rather than to
2536         mouse-popup-menubar-stuff.
2538         * bindings.el (mode-line-major-mode-keymap): Bind down-mouse-1
2539         to mouse-menu-major-mode-map rather than to mouse-major-mode-menu.
2541 2008-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
2543         * vc-svn.el (vc-svn-modify-change-comment): Add support for the
2544         file:// access method.
2546 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2548         * minibuffer.el: New file.
2549         * loadup.el: Load it.
2551 2008-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2553         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el
2554         rather than subdirs.el.  It introduces an ugly circular dependency, tho.
2556         * calc/calc.el: Load "calc-loaddefs" rather than set up manual autoloads.
2557         (calc-mode-map, calc-digit-map, calc-dispatch-map):
2558         Move initialization into declaration.
2559         * calc/calc-yank.el:
2560         * calc/calc-misc.el:
2561         * calc/calc-embed.el:
2562         * calc/calc-aent.el: Add autoload cookies.  Set generated-autoload-file.
2564 2008-04-08  Michael Albinus  <michael.albinus@gmx.de>
2566         * ps-samp.el (ps-add-printer, ps-remove-printer)
2567         (ps-make-dynamic-printer-menu): New functions.
2569         * net/zeroconf.el: New file.
2571 2008-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2573         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits): Typo.
2575 2008-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
2577         * vc-rcs.el (vc-rcs-modify-change-comment):
2578         * vc-cvs.el (vc-cvs-modify-change-comment): Fix argument order.
2580         * log-view.el (log-view-mode-menu): Bind log-view-modify-change-comment.
2582 2008-04-08  Juanma Barranquero  <lekktu@gmail.com>
2584         * international/mule-cmds.el (set-locale-environment): Don't warn if
2585         coding system doesn't agree with system locale (this reverts changes
2586         by Dave Love, dated 2002-10-27 and 2002-10-09).
2588         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2589         * emacs-lisp/cl-macs.el (get-setf-method): Use `string-match-p'.
2591         * emacs-lisp/copyright.el (copyright-update-year): Use `looking-at-p'.
2593 2008-04-08  Glenn Morris  <rgm@gnu.org>
2595         * calendar/calendar.el (calendar-date-style): Remove autoload cookie.
2596         * textmodes/remember.el (remember-diary-convert-entry):
2597         Require calendar.
2599         * textmodes/remember.el (remember-diary-extract-entries): Don't pass
2600         diary-file, since it is the default for make-diary-entry anyway.
2602         * calendar/cal-menu.el (cal-menu-event-to-date):
2603         Rename calendar-event-to-date.  Update callers.
2604         (calendar-mouse-tex-day): Rename cal-tex-mouse-day.
2605         (calendar-mouse-tex-week): Rename cal-tex-mouse-week.
2606         (calendar-mouse-tex-week2): Rename cal-tex-mouse-week2.
2607         (calendar-mouse-tex-week-iso): Rename cal-tex-mouse-week-iso.
2608         (calendar-mouse-tex-week-monday): Rename cal-tex-mouse-week-monday.
2609         (calendar-mouse-tex-filofax-daily): Rename cal-tex-mouse-filofax-daily.
2610         (calendar-mouse-tex-filofax-2week): Rename cal-tex-mouse-filofax-2week.
2611         (calendar-mouse-tex-filofax-week): Rename cal-tex-mouse-filofax-week.
2612         (calendar-mouse-tex-month): Rename cal-tex-mouse-month.
2613         (calendar-mouse-tex-month-landscape):
2614         Rename cal-tex-mouse-month-landscape.
2615         (calendar-mouse-tex-year): Rename cal-tex-mouse-year.
2616         (calendar-mouse-tex-filofax-year): Rename cal-tex-mouse-filofax-year.
2617         (calendar-mouse-tex-year-landscape):
2618         Rename cal-tex-mouse-year-landscape.
2619         (cal-menu-context-mouse-menu): Update for above name changes.
2621         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
2622         * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
2623         * calendar/cal-iso.el, calendar/cal-julian.el, calendar/cal-move.el:
2624         * calendar/cal-persia.el, calendar/cal-tex.el, calendar/calendar.el:
2625         * calendar/holidays.el: Replace int-to-string with number-to-string.
2627 2008-04-08  Chong Yidong  <cyd@stupidchicken.com>
2629         * mwheel.el (mwheel-scroll): Deactivate any temporarily active
2630         region if point moves.
2632 2008-04-08  Kenichi Handa  <handa@m17n.org>
2634         * faces.el (font-slant-table): Change numeric values for `r',
2635         `roman', and `normal'.
2637 2008-04-07  Vincent Belaïche  <vincent.b.1@hotmail.fr>
2639         * calc/calc-vec.el (calcFunc-kron, calc-kron): New functions.
2641 2008-04-07  Jay Belanger  <jay.p.belanger@gmail.com>
2643         * calc/calc-ext.el (calc-init-extensions): Add `calc-kron' and
2644         `calcFunc-kron' to autoloads.  Add keybinding for `calc-kron'.
2646 2008-04-07  Michael Albinus  <michael.albinus@gmx.de>
2648         * net/tramp.el (tramp-methods): Fix again tramp-copy-args of
2649         "pscp" and "psftp".  Reported by Gilles Pion <gpion@lfdj.com>.
2651 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2653         * dired-aux.el (dired-read-shell-command): Use read-shell-command.
2655 2008-04-07  Sam Steingold  <sds@gnu.org>
2657         * progmodes/inf-lisp.el (lisp-compile-string, lisp-eval-string):
2658         Add helper functions.
2659         (lisp-do-defun): Extract the common part of lisp-eval-defun and
2660         lisp-compile-defun; DEFVAR forms reset the variables to the init
2661         values, just like in emacs-lisp mode eval-defun.
2662         (lisp-eval-defun, lisp-compile-defun): Use lisp-do-defun.
2663         (lisp-compile-region): Use lisp-compile-string.
2665 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2667         * subr.el (combine-and-quote-strings): Also quote strings that contain
2668         the separator.
2670         * pcvs-util.el (cvs-map): Avoid recursion :-(
2672 2008-04-07  Glenn Morris  <rgm@gnu.org>
2674         * calendar/calendar.el (calendar-mode-map): Replace use of kbd.
2676         * calendar.el (diary-view-entries-initially-flag): Rename
2677         view-diary-entries-initially.  Keep old name as alias, update users.
2678         (calendar-mark-diary-entries-flag): Rename
2679         mark-diary-entries-in-calendar.  Keep old name as alias, update users.
2680         (calendar-view-holidays-initially-flag): Rename
2681         view-calendar-holidays-initially.  Keep old name as alias, update users.
2682         (calendar-mark-holidays-flag): Rename mark-holidays-in-calendar.
2683         Keep old name as alias, update users.
2684         (calendar-initial-window-hook): Rename initial-calendar-window-hook.
2685         Keep old name as alias, update users.
2686         (calendar-today-visible-hook): Rename today-visible-calendar-hook.
2687         Keep old name as alias, update users.
2688         (calendar-today-invisible-hook): Rename today-invisible-calendar-hook.
2689         Keep old name as alias, update users.
2690         (diary-iso-date-forms): Rename iso-date-diary-pattern.  Update users.
2691         (diary-american-date-forms): Rename american-date-diary-pattern.
2692         Keep old name as alias, update users.
2693         (diary-european-date-forms): Rename european-date-diary-pattern.
2694         Keep old name as alias, update users.
2695         (calendar-iso-date-display-form): Rename iso-calendar-display-form.
2696         Keep old name as alias, update users.
2697         (calendar-european-date-display-form): Rename
2698         european-calendar-display-form.  Keep old name as alias, update users.
2699         (calendar-american-date-display-form): Rename
2700         european-calendar-display-form.  Keep old name as alias, update users.
2701         (diary-show-holidays-flag): Rename holidays-in-diary-buffer.
2702         Keep old name as alias, update users.
2703         (holiday-general-holidays): Rename general-holidays.
2704         Keep old name as alias, update users.
2705         (holiday-oriental-holidays): Rename oriental-holidays.
2706         Keep old name as alias, update users.
2707         (holiday-local-holidays): Rename local-holidays.
2708         Keep old name as alias, update users.
2709         (holiday-other-holidays): Rename other-holidays.
2710         Keep old name as alias, update users.
2711         (holiday-hebrew-holidays): Rename hebrew-holidays.
2712         Keep old name as alias, update users.
2713         (holiday-christian-holidays): Rename christian-holidays.
2714         Keep old name as alias, update users.
2715         (holiday-islamic-holidays): Rename islamic-holidays.
2716         Keep old name as alias, update users.
2717         (holiday-bahai-holidays): Rename bahai-holidays.
2718         Keep old name as alias, update users.
2719         (holiday-solar-holidays): Rename solar-holidays.
2720         Keep old name as alias, update users.
2721         (diary-fancy-buffer): Rename fancy-diary-buffer.
2722         Keep old name as alias, update users.
2723         (calendar-other-calendars-buffer): Rename other-calendars-buffer.
2724         Update users.
2725         (calendar-hebrew-yahrzeit-buffer): Rename cal-hebrew-yahrzeit-buffer.
2726         Update users.
2727         (calendar-increment-month): Rename increment-calendar-month.
2728         Keep old name as alias, update callers.
2729         (calendar-increment-month-cons): Rename old calendar-increment-month.
2730         Update callers.
2731         (calendar-extract-month): Rename extract-calendar-month.
2732         Keep old name as alias, update callers
2733         (calendar-extract-day): Rename extract-calendar-day.
2734         Keep old name as alias, update callers.
2735         (calendar-extract-year): Rename extract-calendar-year.
2736         Keep old name as alias, update callers.
2737         (calendar-generate-window): Rename generate-calendar-window.
2738         Update callers.
2739         (calendar-generate): Rename generate-calendar.  Update callers.
2740         (calendar-generate-month): Rename generate-calendar-month.
2741         Update callers.
2742         (calendar-redraw): Rename redraw-calendar.  Update callers.
2743         (calendar-describe-mode): Rename describe-calendar-mode.  Update uses.
2744         (calendar-mouse-other-month): Rename mouse-calendar-other-month.
2745         Update callers.
2746         (calendar-update-mode-line): Rename update-calendar-mode-line.
2747         Update callers.
2748         (calendar-exit): Rename exit-calendar.  Keep old name as alias,
2749         update callers.
2750         (calendar-mark-visible-date): Rename mark-visible-calendar-date.
2751         Keep old name as alias, update callers.
2752         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
2753         * calendar/cal-dst.el, calendar/cal-french.el, calendar/cal-hebrew.el:
2754         * calendar/cal-html.el, calendar/cal-islam.el, calendar/cal-iso.el:
2755         * calendar/cal-julian.el, calendar/cal-menu.el, calendar/cal-move.el:
2756         * calendar/cal-persia.el, calendar/cal-tex.el, calendar/cal-x.el:
2757         * calendar/diary-lib.el, calendar/holidays.el, calendar/lunar.el:
2758         * calendar/solar.el: Update for calendar.el name changes.
2759         * org/org.el (org-agenda-format-date-aligned)
2760         (org-agenda-execute-calendar-command): Access date elements directly
2761         rather than using calendar functions.
2762         (org-read-date, org-goto-calendar, org-agenda-goto-calendar):
2763         Also set calendar-view-diary-initially-flag,
2764         calendar-view-holidays-initially-flag
2765         (org-get-entries-from-diary): Also set diary-fancy-buffer.
2766         (org-agenda-execute-calendar-command): No need to set displayed-day.
2768 2008-04-06  Alan Mackenzie  <acm@muc.de>
2770         * progmodes/cc-langs.el (c-before-font-lock-function): Correct a
2771         typo in the doc string.
2773         * progmodes/cc-mode.el (c-basic-common-init):
2774         Set font-lock-extend-after-change-region-function.
2775         (c-extend-after-change-region): New function, used in
2776         font-lock-extend-after-change-region-function, thus superseding
2777         advice on the Font Lock after change functions.
2778         (c-advise-fl-for-region): Remove this macro.
2780 2008-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
2782         * textmodes/flyspell.el (flyspell-duplicate-distance):
2783         Improve custom type.
2785 2008-04-06  Glenn Morris  <rgm@gnu.org>
2787         * calendar/diary-lib.el (diary-sexp-entry-symbol):
2788         Rename sexp-diary-entry-symbol.  Keep old name as alias, update users.
2789         (diary-list-entries-hook): Rename list-diary-entries-hook.
2790         Keep old name as alias, update users.
2791         (diary-mark-entries-hook): Rename mark-diary-entries-hook.
2792         Keep old name as alias, update users.
2793         (diary-nongregorian-listing-hook): Rename
2794         nongregorian-diary-listing-hook.  Keep old name as alias, update users.
2795         (diary-nongregorian-marking-hook): Rename
2796         nongregorian-diary-marking-hook.  Keep old name as alias, update users.
2797         (diary-print-entries-hook): Rename print-diary-entries-hook.
2798         Keep old name as alias, update users.
2799         (diary-abbreviated-year-flag): Rename abbreviated-calendar-year.
2800         Keep old name as alias, update users.
2801         (diary-number-of-entries): Rename number-of-diary-entries.
2802         Keep old name as alias, update users.
2803         (view-diary-entries, list-diary-entries, show-all-diary-entries):
2804         Give version of obsolescence.
2805         (diary-view-other-diary-entries): Rename view-other-diary-entries.
2806         Keep old name as alias, update callers.
2807         (diary-add-to-list): Rename add-to-diary-list.  Keep old name as alias,
2808         update callers.
2809         (diary-include-other-diary-files): Rename include-other-diary-files.
2810         Keep old name as alias, update callers.
2811         (diary-simple-display): Rename simple-diary-display.
2812         Keep old name as alias, update callers.
2813         (diary-fancy-display): Rename fancy-diary-display.
2814         Keep old name as alias, update callers.
2815         (diary-print-entries): Rename print-diary-entries.
2816         Keep old name as alias, update callers.
2817         (diary-marking-entries-flag): Rename marking-diary-entries.
2818         Update users.
2819         (diary-marking-entry-flag): Rename marking-diary-entry.  Update users.
2820         (diary-mark-entries): Rename mark-diary-entries.
2821         Keep old name as alias, update callers.
2822         (diary-mark-sexp-entries): Rename mark-sexp-diary-entries.
2823         Keep old name as alias, update callers.
2824         (diary-mark-included-diary-files): Rename mark-included-diary-files.
2825         Keep old name as alias, update callers.
2826         (calendar-mark-days-named): Rename mark-calendar-days-named.
2827         Keep old name as alias, update callers.
2828         (calendar-mark-month): Rename mark-calendar-month.
2829         Keep old name as alias, update callers.
2830         (calendar-mark-date-pattern): Rename mark-calendar-date-pattern.
2831         Keep old name as alias, update callers.
2832         (diary-sort-entries): Rename sort-diary-entries.
2833         Keep old name as alias, update callers.
2834         (diary-list-sexp-entries): Rename list-sexp-diary-entries.
2835         Keep old name as alias, update callers.
2836         (diary-make-entry): Rename make-diary-entry.  Keep old name as alias,
2837         update callers.
2838         (diary-insert-entry): Rename insert-diary-entry.
2839         Keep old name as alias.
2840         (diary-insert-weekly-entry): Rename insert-weekly-diary-entry.
2841         Keep old name as alias.
2842         (diary-insert-monthly-entry): Rename insert-monthly-diary-entry.
2843         Keep old name as alias.
2844         (diary-insert-yearly-entry): Rename insert-yearly-diary-entry.
2845         Keep old name as alias.
2846         (diary-insert-anniversary-entry): Rename insert-anniversary-diary-entry.
2847         Keep old name as alias.
2848         (diary-insert-block-entry): Rename insert-block-diary-entry.
2849         Keep old name as alias.
2850         (diary-insert-cyclic-entry): Rename insert-cyclic-diary-entry.
2851         Keep old name as alias.
2852         (diary-fancy-font-lock-keywords): Rename fancy-diary-font-lock-keywords.
2853         Keep old name as alias, update users.
2854         (diary-fancy-display-mode): Rename fancy-diary-display-mode.
2855         Keep old name as alias, update callers.
2856         * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
2857         * calendar/cal-menu.el, calendar/cal-x.el, calendar/calendar.el:
2858         * calendar/icalendar.el: Update for diary-lib name changes.
2860 2008-04-06  Chong Yidong  <cyd@stupidchicken.com>
2862         * dired-aux.el (dired-overwrite-confirmed): Revert last change.
2864         * dired.el (dired-dnd-handle-local-file): Obey dired-backup-overwrite
2865         for copy, move, and link operations.
2867 2008-04-06  Michael Kifer  <kifer@cs.stonybrook.edu>
2869         * emulation/viper-init.el, emulation/viper-ex.el, emulation/viper-cmd.el
2870         (viper-search-wrap-around-t): Replace with viper-search-wrap-around.
2872         * ediff-util.el, ediff-vers.el, ediff-wind.el: Replace 3-argument
2873         'require' statements with 1-argument ones (wrapped in if's).
2874         For compatibility with the current stable version of XEmacs.
2876 2008-04-06  Dan Nicolaescu  <dann@ics.uci.edu>
2878         * vc.el (vc-status-prepare-status-buffer): Reset vc-parent-buffer-name.
2880 2008-04-06  Jason Rumney  <jasonr@gnu.org>
2882         * language/burmese.el ("Burmese"): Make sample text consistent with
2883         language name.
2885 2008-04-06  Nick Roberts  <nickrob@snap.net.nz>
2887         * progmodes/gdb-ui.el (gdb): New group.
2888         (gdb-debug-log-max, gdb-enable-debug)
2889         (gdb-cpp-define-alist-program, gdb-cpp-define-alist-flags)
2890         (gdb-show-main, gdb-many-windows, gdb-use-separate-io-buffer)
2891         (gdb-speedbar-auto-raise, gdb-use-colon-colon-notation)
2892         (gdb-show-changed-values, gdb-max-children)
2893         (gdb-delete-out-of-scope, gdb-same-frame, gdb-find-source-frame)
2894         (breakpoint-enabled, breakpoint-disabled, gdb-max-frames)
2895         (gdb-all-registers, gdb-memory-repeat-count, gdb-memory-format)
2896         (gdb-memory-unit): Move to new group from GUD group.
2897         (menu): Allow customization from GDB-UI menu-item.
2899 2008-04-05  Chong Yidong  <cyd@stupidchicken.com>
2901         * dired-aux.el (dired-overwrite-confirmed): Supply initial value.
2903 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2905         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-annotate-command)
2906         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
2907         Revision numbers can include ".".
2909         * diff-mode.el (diff-end-of-hunk): Be careful not to overlook trailing
2910         "+" lines not accounted for by counting "-" and context lines.
2912 2008-04-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2914         * term/mac-win.el (mac-service-open-file): Use file URL instead of
2915         file name string.
2917 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2919         * vc-bzr.el (vc-bzr-annotate-command): Preserve line alignment.
2920         (vc-bzr-annotate-time): Accept space used to preserve alignment.
2922 2008-04-05  Richard Stallman  <rms@gnu.org>
2924         * emacs-lisp/advice.el (defadvice): Add usage pattern.
2926 2008-04-05  Nick Roberts  <nickrob@snap.net.nz>
2928         * progmodes/gdb-ui.el: Add advice about using Cygwin GDB (from a
2929         thread in [h-e-w]).
2931 2008-04-05  Juanma Barranquero  <lekktu@gmail.com>
2933         * files.el (abort-if-file-too-large): Fix typo in docstring.
2935 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2937         * subr.el (functionp): Return nil for special forms.
2939 2008-04-05  Glenn Morris  <rgm@gnu.org>
2941         * emacs-lisp/autoload.el (autoload-ensure-default-file):
2942         Provide a feature.
2943         * calendar/calendar.el, calendar/diary-lib.el, calendar/holidays.el:
2944         Require loaddef file rather than loading it.
2945         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule now that
2946         autoload-ensure-default-file provides a feature.
2948         * Makefile.in (LOADDEFS): Add mh-loaddefs.el.
2949         (AUTOGENEL): mh-loaddefs is in $LOADDEFS now.
2950         (compile, compile-always, recompile): Use $LOADDEFS.
2951         (cal-autoloads): Remove.
2953         * calendar/cal-x.el (calendar-dedicate-diary): Use get-buffer rather
2954         than buffer-live-p.  Reported by David Koppelman <koppel@ece.lsu.edu>.
2956         * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
2957         (hebrew-holidays-3, hebrew-holidays-4): Don't autoload obsolescence.
2959         * calendar/calendar.el (diary-hebrew-entry-symbol):
2960         Rename hebrew-diary-entry-symbol.  Keep old name as alias.
2961         (diary-islamic-entry-symbol): Rename islamic-diary-entry-symbol.
2962         Keep old name as alias.
2963         (diary-bahai-entry-symbol): Rename bahai-diary-entry-symbol.
2964         Keep old name as alias.
2965         * calendar/cal-bahai.el: Update for rename bahai-diary-entry-symbol
2966         to diary-bahai-entry-symbol.
2967         * calendar/cal-hebrew.el: Update for rename hebrew-diary-entry-symbol
2968         to diary-hebrew-entry-symbol.
2969         * calendar/cal-islam.el: Update for rename islamic-diary-entry-symbol
2970         to diary-islamic-entry-symbol.
2971         * calendar/diary-lib.el: Update for diary-entry-symbol renames.
2973         * calendar/solar.el (diary-sabbath-candles-minutes)
2974         (diary-sabbath-candles): Move to cal-hebrew.
2975         * calendar/cal-hebrew.el (diary-hebrew-sabbath-candles-minutes)
2976         (diary-hebrew-sabbath-candles): Move here from solar.el and rename.
2977         Doc fix.  Keep old name as alias.
2978         (diary-hebrew-sabbath-candles): Simplify.
2979         (solar-setup, solar-sunrise-sunset, calendar-latitude)
2980         (calendar-longitude, calendar-time-zone): Declare for compiler.
2981         * calendar/diary-lib.el (list-sexp-diary-entries): Update doc for
2982         rename.
2984         * calendar/cal-coptic.el (calendar-coptic-month-name-array):
2985         Rename coptic-calendar-month-name-array.  Update callers.
2986         (calendar-coptic-epoch): Rename coptic-calendar-epoch.  Update callers.
2987         (calendar-coptic-name): Rename coptic-name.  Update callers.
2988         (calendar-coptic-leap-year-p): Rename coptic-calendar-leap-year-p.
2989         Update callers.
2990         (calendar-coptic-last-day-of-month):
2991         Rename coptic-calendar-last-day-of-month.  Update callers.
2992         (calendar-coptic-to-absolute): Rename calendar-absolute-from-coptic.
2993         Keep old name as alias, update callers.
2994         (calendar-coptic-print-date): Rename calendar-print-coptic-date.
2995         Keep old name as alias, update callers.
2996         (calendar-coptic-goto-date): Rename calendar-goto-coptic-date.
2997         Keep old name as alias.
2998         (calendar-ethiopic-month-name-array):
2999         Rename ethiopic-calendar-month-name-array.  Update callers.
3000         (calendar-ethiopic-epoch): Rename ethiopic-calendar-epoch.
3001         Update callers.
3002         (calendar-ethiopic-name): Rename ethiopic-name.  Update callers.
3003         (calendar-ethiopic-to-absolute): Rename calendar-absolute-from-ethiopic.
3004         Keep old name as alias, update callers.
3005         (calendar-ethiopic-print-date): Rename calendar-print-ethiopic-date.
3006         Keep old name as alias, update callers.
3007         (calendar-ethiopic-goto-date): Rename calendar-goto-ethiopic-date.
3008         Keep old name as alias.
3010         * calendar/cal-french.el (calendar-french-epoch):
3011         Rename french-calendar-epoch.  Update callers.
3012         (calendar-french-month-name-array): Rename variable and function
3013         french-calendar-month-name-array.  Update callers.
3014         (calendar-french-multibyte-month-name-array):
3015         Rename french-calendar-multibyte-month-name-array.  Update callers.
3016         (calendar-french-day-name-array): Rename variable and function
3017         french-calendar-day-name-array.  Update callers.
3018         (calendar-french-special-days-array): Rename variable and function
3019         french-calendar-special-days-array.  Update callers.
3020         (calendar-french-multibyte-special-days-array):
3021         Rename french-calendar-multibyte-special-days-array.  Update callers.
3022         (calendar-french-accents-p): Rename french-calendar-accents.
3023         Update callers.
3024         (calendar-french-leap-year-p): Rename french-calendar-leap-year-p.
3025         Update callers.
3026         (calendar-french-last-day-of-month):
3027         Rename french-calendar-last-day-of-month.  Update callers.
3028         (calendar-french-to-absolute): Rename calendar-absolute-from-french.
3029         Keep old name as alias, update callers.
3030         (calendar-french-print-date): Rename calendar-print-french-date.
3031         Keep old name as alias, update callers.
3032         (calendar-french-goto-date): Rename calendar-goto-french-date.
3033         Keep old name as alias.
3035         * calendar/cal-menu.el, calendar/calendar.el:
3036         Update for Coptic and French name changes.
3038         * calendar/cal-china.el (calendar-chinese): Rename custom group
3039         from chinese-calendar.  Update users.
3040         (calendar-chinese-time-zone): Rename chinese-calendar-time-zone.
3041         Keep old name as alias, update users.
3042         (calendar-chinese-location-name): Rename chinese-calendar-location-name.
3043         Keep old name as alias.
3044         (calendar-chinese-daylight-time-offset):
3045         Rename chinese-calendar-daylight-time-offset.  Keep old name as alias,
3046         update users.
3047         (calendar-chinese-standard-time-zone-name):
3048         Rename chinese-calendar-standard-time-zone-name.
3049         Keep old name as alias, update users.
3050         (calendar-chinese-daylight-saving-start):
3051         Rename chinese-calendar-daylight-savings-starts.
3052         Keep old name as alias, update users.
3053         (calendar-chinese-daylight-saving-end):
3054         Rename chinese-calendar-daylight-savings-ends.  Keep old name as alias,
3055         update users.
3056         (calendar-chinese-daylight-saving-start-time):
3057         Rename chinese-calendar-daylight-savings-starts-time.
3058         Keep old name as alias, update users.
3059         (calendar-chinese-daylight-saving-end-time):
3060         Rename chinese-calendar-daylight-savings-ends-time.
3061         Keep old name as alias, update users.
3062         (calendar-chinese-celestial-stem): Rename
3063         calendar-chinese-celestial-stem.  Keep old name as alias, update users.
3064         (calendar-chinese-terrestrial-branch):
3065         Rename calendar-chinese-terrestrial-branch.  Keep old name as alias,
3066         update users.
3067         (calendar-chinese-zodiac-sign-on-or-after):
3068         Rename chinese-zodiac-sign-on-or-after.  Update callers.
3069         (calendar-chinese-new-moon-on-or-after):
3070         Rename chinese-new-moon-on-or-after.  Update callers.
3071         (calendar-chinese-month-list): Rename chinese-month-list.
3072         Update callers.
3073         (calendar-chinese-number-months): Rename number-chinese-months.
3074         Update callers.
3075         (calendar-chinese-compute-year): Rename compute-chinese-year.
3076         Update callers.
3077         (calendar-chinese-year-cache): Rename chinese-year-cache.  Update users.
3078         (calendar-chinese-year): Rename chinese-year.  Update callers.
3079         (calendar-chinese-year-cache-init): Rename chinese-year-cache-init.
3080         (calendar-chinese-to-absolute): Rename calendar-absolute-from-chinese.
3081         Keep old name as alias, update callers.
3082         (calendar-chinese-print-date): Rename calendar-print-chinese-date.
3083         Keep old name as alias, update callers.
3084         (calendar-chinese-months-to-alist):
3085         Rename make-chinese-month-assoc-list.  Update callers.
3086         (calendar-chinese-months): Rename chinese-months.  Update callers.
3087         (calendar-chinese-goto-date): Rename calendar-goto-chinese-date.
3088         Keep old name as alias, update callers.
3090         * calendar/cal-hebrew.el (calendar-hebrew-leap-year-p):
3091         Rename hebrew-calendar-leap-year-p.  Update callers.
3092         (calendar-hebrew-last-month-of-year):
3093         Rename hebrew-calendar-last-month-of-year.  Update callers.
3094         (calendar-hebrew-elapsed-days): Rename hebrew-calendar-elapsed-days.
3095         Update callers.
3096         (calendar-hebrew-days-in-year): Rename hebrew-calendar-days-in-year.
3097         Update callers.
3098         (calendar-hebrew-long-heshvan-p): Rename hebrew-calendar-long-heshvan-p.
3099         Update callers.
3100         (calendar-hebrew-short-kislev-p): Rename hebrew-calendar-short-kislev-p.
3101         Update callers.
3102         (calendar-hebrew-last-day-of-month):
3103         Rename hebrew-calendar-last-day-of-month.  Update callers.
3104         (calendar-hebrew-to-absolute): Rename calendar-absolute-from-hebrew.
3105         Keep old name as alias, update callers.
3106         (calendar-hebrew-print-date): Rename calendar-print-hebrew-date.
3107         Keep old name as alias, update callers.
3108         (calendar-hebrew-yahrzeit): Rename hebrew-calendar-yahrzeit.
3109         Keep old name as alias, update callers.
3110         (calendar-hebrew-goto-date): Rename calendar-goto-hebrew-date.
3111         Keep old name as alias.
3112         (holiday-hebrew-rosh-hashanah): Rename holiday-rosh-hashanah-etc.
3113         Keep old name as alias.
3114         (holiday-hebrew-hanukkah): Rename holiday-hanukkah.
3115         Keep old name as alias.
3116         (holiday-hebrew-passover): Rename holiday-passover-etc.
3117         Keep old name as alias.
3118         (holiday-hebrew-tisha-b-av): Rename holiday-tisha-b-av-etc.
3119         Keep old name as alias, update callers.
3120         (diary-hebrew-list-entries): Rename list-hebrew-diary-entries.
3121         Keep old name as alias.
3122         (calendar-hebrew-mark-date-pattern):
3123         Rename mark-hebrew-calendar-date-pattern.  Keep old name as alias,
3124         update callers.
3125         (diary-hebrew-mark-entries): Rename mark-hebrew-diary-entries.
3126         Keep old name as alias.
3127         (diary-hebrew-insert-entry): Rename insert-hebrew-diary-entry.
3128         Keep old name as alias.
3129         (diary-hebrew-insert-monthly-entry):
3130         Rename insert-monthly-hebrew-diary-entry.  Keep old name as alias.
3131         (diary-hebrew-insert-yearly-entry):
3132         Rename insert-yearly-hebrew-diary-entry.  Keep old name as alias.
3133         (calender-hebrew-list-yahrzeits): Rename list-yahrzeit-dates.
3134         Keep old name as alias.
3135         (diary-hebrew-omer): Rename diary-omer.  Keep old name as alias.
3136         (diary-hebrew-yahrzeit): Rename diary-yahrzeit.  Keep old name as alias.
3137         (diary-hebrew-rosh-hodesh): Rename diary-rosh-hodesh.
3138         Keep old name as alias.
3139         (calendar-hebrew-parashiot-names):
3140         Rename hebrew-calendar-parashiot-names.  Update callers.
3141         (calendar-hebrew-parasha-name): Rename hebrew-calendar-parasha-name.
3142         (calendar-hebrew-year-Saturday-incomplete-Sunday):
3143         Rename hebrew-calendar-year-Saturday-incomplete-Sunday.
3144         (calendar-hebrew-year-Saturday-complete-Tuesday):
3145         Rename hebrew-calendar-year-Saturday-complete-Tuesday.
3146         (calendar-hebrew-year-Monday-incomplete-Tuesday):
3147         Rename hebrew-calendar-year-Monday-incomplete-Tuesday.
3148         (calendar-hebrew-year-Monday-complete-Thursday):
3149         Rename hebrew-calendar-year-Monday-complete-Thursday.
3150         (calendar-hebrew-year-Tuesday-regular-Thursday):
3151         Rename hebrew-calendar-year-Tuesday-regular-Thursday.
3152         (calendar-hebrew-year-Thursday-regular-Saturday):
3153         Rename hebrew-calendar-year-Thursday-regular-Saturday.
3154         (calendar-hebrew-year-Thursday-complete-Sunday):
3155         Rename hebrew-calendar-year-Thursday-complete-Sunday.
3156         (calendar-hebrew-year-Saturday-incomplete-Tuesday):
3157         Rename hebrew-calendar-year-Saturday-incomplete-Tuesday.
3158         (calendar-hebrew-year-Saturday-complete-Thursday):
3159         Rename hebrew-calendar-year-Saturday-complete-Thursday.
3160         (calendar-hebrew-year-Monday-incomplete-Thursday):
3161         Rename hebrew-calendar-year-Monday-incomplete-Thursday.
3162         (calendar-hebrew-year-Monday-complete-Saturday):
3163         Rename hebrew-calendar-year-Monday-complete-Saturday.
3164         (calendar-hebrew-year-Tuesday-regular-Saturday):
3165         Rename hebrew-calendar-year-Tuesday-regular-Saturday.
3166         (calendar-hebrew-year-Thursday-incomplete-Sunday):
3167         Rename hebrew-calendar-year-Thursday-incomplete-Sunday.
3168         (calendar-hebrew-year-Thursday-complete-Tuesday):
3169         Rename hebrew-calendar-year-Thursday-complete-Tuesday.
3170         (diary-hebrew-parasha): Rename diary-parasha.  Keep old name as alias.
3171         Update for above name changes of constants.
3173         * calendar/cal-menu.el, calendar/calendar.el:
3174         Update for chinese and hebrew name changes.
3175         * calendar/diary-lib.el: Update for hebrew name changes.
3177 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3179         * subr.el (keymap-canonicalize): Correct thinko.
3181         * server.el: Undo part of the multi-tty change, which is only
3182         needed if server.el is preloaded, and broke server-running-p.
3183         (server-socket-dir): Initialize in the defvar, as before.
3184         (server-start): Remove initialization of server-socket-dir.
3186 2008-04-05  Eli Zaretskii  <eliz@gnu.org>
3188         * ls-lisp.el (ls-lisp-format): Support inodes that are 2- or
3189         3-member cons cells.
3191 2008-04-05  Chong Yidong  <cyd@stupidchicken.com>
3193         * cus-face.el (custom-face-attributes): Handle roman slant.
3195         * faces.el (default): Ensure the face-defface-spec property is set.
3197 2008-04-05  Adrian Robert  <Adrian.B.Robert@gmail.com>
3199         * files.el (abort-if-file-too-large): New function.
3200         (find-file-noselect, insert-file-1): Use it.
3202 2008-04-05  Reto Zimmermann  <reto@gnu.org>
3204         * progmodes/vhdl-mode.el (vhdl-mode-map-init):
3205         Replace C-c[a-zA-Z] key bindings.
3207 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3209         * progmodes/hideif.el (hif-token-alist): New var.
3210         (hif-token-regexp, hif-tokenize): Use it.
3211         (hif-mathify-binop): New macro.
3212         (hif-plus, hif-minus, hif-notequal, hif-greater, hif-less)
3213         (hif-greater-equal, hif-less-equal): Use it.
3214         (hif-logior, hif-logand): New functions.
3215         (hif-math): Accept | and & as well.
3217         * progmodes/etags.el: Fix problem with completion for buffer-local
3218         tables.  Reported by Radey Shouman <shouman@comcast.net>.
3219         (tags-complete-tag): Remove.
3220         (tags-lazy-completion-table): New function to replace it.
3221         (find-tag-tag, complete-tag): Update users.
3223 2008-04-04  Dan Nicolaescu  <dann@ics.uci.edu>
3225         * vc-rcs.el (vc-rcs-dir-status):
3226         * vc-sccs.el (vc-sccs-dir-status): New function.
3228         * outline.el (outline-mode-menu-bar-map):
3229         * term.el (terminal-signal-menu): Add :help.
3231         * net/eudc.el (eudc-mode-map): Declare and define in one step.
3232         (eudc-tail-menu, eudc-server-menu, eudc-tools-menu): Add :help.
3234         * emacs-lisp/re-builder.el (reb-mode-map):
3235         * textmodes/nroff-mode.el (nroff-mode-map): Add menus.
3237         * diff-mode.el (diff-file-junk-re): Recognize the git format for
3238         new files, deleted files and for changing permissions.
3239         (diff-mode): Set beginning-of-defun-function and
3240         end-of-defun-function.
3242         * vc-bzr.el (vc-bzr-state): Use when instead of if.
3244         * vc.el (vc-default-status-fileinfo-extra): New function.
3245         (vc-status-mark-buffer-changed): Use it.
3246         (vc-update-vc-status-buffer): Allow for partial updates.
3248 2008-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3250         * net/tramp.el (after-init-hook): Don't wrap a lambda around
3251         tramp-register-completion-file-name-handler.
3253         * subr.el (keymap-canonicalize): New function.
3254         * mouse.el (mouse-menu-non-singleton): Use it.
3255         (mouse-major-mode-menu): Remove hack made unnecessary.
3257         * simple.el (set-fill-column): Prompt rather than error by default.
3259 2008-04-04  Andreas Schwab  <schwab@suse.de>
3261         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
3262         Reset new-rules after each round.
3264         * Makefile.in (cal-autoloads): New target.
3265         (compile, compile-always, recompile): Depend on it.
3266         ($(lisp)/calendar/cal-loaddefs.el)
3267         ($(lisp)/calendar/diary-loaddefs.el)
3268         ($(lisp)/calendar/hol-loaddefs.el): Depend on calendar/*.el.
3270 2008-04-04  Michael Kifer  <kifer@cs.stonybrook.edu>
3272         * ediff*.el: Replace load with require in eval-when-compile.
3274         * ediff-hook: Delete all invocations of (autoload ...).
3276         * ediff-util.el (ediff-setup): Make window-min-height a local variable
3277         in ediff control window, and set its min height to 2.
3278         (ediff-setup-control-buffer): Dedicate the control window.
3279         (ediff-toggle-multiframe): Undedicate control window.
3280         Work directly with ediff-setup-windows-multiframe and
3281         ediff-setup-windows-plain.
3283         * ediff-wind (ediff-choose-window-setup-function-automatically):
3284         New function.
3285         (ediff-window-setup-function): Change initialization.
3286         (ediff-setup-windows-automatic): Delete.
3287         (ediff-setup-windows-plain-merge): Make control window dedicated.
3288         (ediff-destroy-control-frame): Do not skip frames if working in a
3289         single frame.
3291         * emulation/viper-ex.el: Move provide's forward, prevent recursion in
3292         eval-when-compile.
3294         * emulation/viper-util.el: Move provide's forward, prevent recursion in
3295         eval-when-compile.
3297 2008-04-04  Glenn Morris  <rgm@gnu.org>
3299         * calendar/cal-bahai.el (calendar-bahai-to-absolute): Rename
3300         calendar-absolute-from-bahai.  Update callers, keep old name as alias.
3302         * calendar/cal-islam.el (calendar-islamic-leap-year-p):
3303         Rename islamic-calendar-leap-year-p.  Update callers.
3304         (calendar-islamic-last-day-of-month):
3305         Rename islamic-calendar-last-day-of-month.  Update callers.
3306         (calendar-islamic-day-number):
3307         Rename islamic-calendar-day-number.  Update callers.
3308         (calendar-islamic-to-absolute): Rename calendar-absolute-from-islamic.
3309         Update callers, keep old name as alias.
3310         (calendar-islamic-print-date): Rename calendar-print-islamic-date.
3311         Update callers, keep old name as alias.
3312         (calendar-islamic-goto-date): Rename calendar-goto-islamic-date.
3313         Keep old name as alias.
3314         (diary-islamic-list-entries): Rename list-islamic-diary-entries.
3315         Update callers, keep old name as alias.
3316         (calendar-islamic-mark-date-pattern):
3317         Rename mark-islamic-calendar-date-pattern.  Update callers, keep old
3318         name as alias.
3319         (diary-islamic-insert-entry): Rename insert-islamic-diary-entry.
3320         Keep old name as alias.
3321         (diary-islamic-insert-monthly-entry):
3322         Rename insert-monthly-islamic-diary-entry.  Keep old name as alias.
3323         (diary-islamic-insert-yearly-entry):
3324         Rename insert-yearly-islamic-diary-entry.  Keep old name as alias.
3326         * calendar/cal-iso.el (calendar-iso-to-absolute): Rename
3327         calendar-absolute-from-iso.  Update callers, keep old name as alias.
3328         (calendar-iso-print-date): Rename calendar-print-iso-date.
3329         Update callers, keep old name as alias.
3330         (calendar-iso-goto-date): Rename calendar-goto-iso-date.
3331         Keep old name as alias.
3332         (calendar-iso-goto-week): Rename calendar-goto-iso-week.
3333         Keep old name as alias.
3335         * calendar/cal-julian.el (calendar-julian-to-absolute): Rename
3336         calendar-absolute-from-julian.  Update callers, keep old name as alias.
3337         (calendar-julian-print-date): Rename calendar-print-julian-date.
3338         Update callers, keep old name as alias.
3339         (calendar-julian-goto-date): Rename calendar-goto-julian-date.
3340         Update callers, keep old name as alias.
3341         (calendar-astro-to-absolute): Rename calendar-absolute-from-astro.
3342         Update callers, keep old name as alias.
3343         (calendar-astro-print-day-number):
3344         Rename calendar-print-astro-day-number.  Update callers, keep old
3345         name as alias.
3346         (calendar-astro-goto-day-number): Rename calendar-goto-astro-day-number.
3347         Update callers, keep old name as alias.
3349         * calendar/cal-mayan.el (calendar-mayan-string-from-long-count):
3350         Rename calendar-string-to-mayan-long-count.  Update callers.
3351         (calendar-mayan-print-date): Rename calendar-print-mayan-date.
3352         Update callers, keep old name as alias.
3353         (calendar-mayan-read-haab-date): Rename calendar-read-mayan-haab-date.
3354         Update callers.
3355         (calendar-mayan-read-tzolkin-date):
3356         Rename calendar-read-mayan-tzolkin-date.  Update callers.
3357         (calendar-mayan-next-haab-date): Rename calendar-next-haab-date.
3358         Keep old name as alias.
3359         (calendar-mayan-previous-haab-date): Rename calendar-previous-haab-date.
3360         Keep old name as alias.
3361         (calendar-mayan-next-tzolkin-date): Rename calendar-next-tzolkin-date.
3362         Keep old name as alias.
3363         (calendar-mayan-previous-tzolkin-date):
3364         Rename calendar-previous-tzolkin-date.  Keep old name as alias.
3365         (calendar-mayan-next-round-date):
3366         Rename calendar-next-calendar-round-date.  Keep old name as alias.
3367         (calendar-mayan-previous-round-date):
3368         Rename calendar-previous-calendar-round-date.  Keep old name as alias.
3369         (calendar-mayan-long-count-to-absolute): Rename
3370         calendar-absolute-from-mayan-long-count.  Keep old name as alias.
3371         (calendar-mayan-goto-long-count-date):
3372         Rename calendar-goto-mayan-long-count-date.  Keep old name as alias.
3374         * calendar/cal-persia.el (calendar-persian-month-name-array):
3375         Rename persian-calendar-month-name-array.  Update callers.
3376         (calendar-persian-epoch): Rename persian-calendar-epoch.
3377         Update callers.
3378         (calendar-persian-leap-year-p): Rename persian-calendar-leap-year-p.
3379         Update callers.
3380         (calendar-persian-last-day-of-month):
3381         Rename persian-calendar-last-day-of-month.  Update callers.
3382         (calendar-persian-to-absolute): Rename calendar-absolute-from-persian.
3383         Update callers, keep old name as alias.
3384         (calendar-persian-print-date): Rename calendar-print-persian-date.
3385         Update callers, keep old name as alias.
3386         (calendar-persian-goto-date): Rename calendar-goto-persian-date.
3387         Keep old name as alias.
3389         * calendar/cal-china.el, calendar/cal-coptic.el, calendar/cal-islam.el:
3390         * calendar/cal-persia.el, calendar/holidays.el, calendar/lunar.el:
3391         * calendar/solar.el: Update for cal-julian name changes.
3393         * calendar/cal-dst.el: Update for persian name changes.
3395         * calendar/cal-menu.el, calendar/calendar.el:
3396         Update for islamic, iso, julian, mayan, persian name changes.
3398         * calendar/diary-lib.el: Update for islamic name changes.
3400         * calendar/calendar.el (calendar-hebrew-all-holidays-flag):
3401         Rename all-hebrew-calendar-holidays.  Update callers, keep old name
3402         as alias.
3403         (calendar-christian-all-holidays-flag):
3404         Rename all-christian-calendar-holidays.  Update callers, keep old
3405         name as alias.
3406         (calendar-islamic-all-holidays-flag):
3407         Rename all-islamic-calendar-holidays.  Update callers, keep old
3408         name as alias.
3409         (calendar-bahai-all-holidays-flag): Rename all-bahai-calendar-holidays.
3410         Update callers, keep old name as alias.
3411         * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/holidays.el:
3412         Update for the above name changes.
3414 2008-04-04  Juanma Barranquero  <lekktu@gmail.com>
3416         * hilit-chg.el (global-highlight-changes-mode)
3417         (highlight-changes-passive-string, highlight-changes-active-string):
3418         Mark as obsolete since 23.1, not 22.1.
3420 2008-04-03  Juanma Barranquero  <lekktu@gmail.com>
3422         * hilit-chg.el (highlight-changes-visibility-initial-state)
3423         (hilit-chg-update, highlight-changes-mode-turn-on):
3424         Fix typos in docstrings.
3426 2008-04-03  Stephen Berman  <Stephen.Berman@gmx.net>
3428         * newcomment.el (comment-enter-backward): Be careful to restore
3429         position changed during narrowing.
3431 2008-04-03  Giuliano Procida  <giuliano.procida@googlemail.com>  (tiny change)
3433         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
3434         Recognize `sub ($$)'.
3436 2008-04-03  Richard Sharman  <rsharman@pobox.com>
3438         * hilit-chg.el (highlight-changes-mode): Rename from
3439         highlight-changes; no longer uses sub-modes active and passive;
3440         implemented by define-minor-mode.
3441         (highlight-changes-toggle-visibility): New function, to replace
3442         the old passive/active submodes of global-highlight-changes-mode;
3443         implemented by define-minor-mode.
3444         (global-highlight-changes-mode): Rename from global-highlight-changes;
3445         rewrite using define-globalized-minor-mode.
3446         (hilit-chg-major-mode-hook, hilit-chg-check-global)
3447         (hilit-chg-post-command-hook, hilit-chg-check-global)
3448         (hilit-chg-update-all-buffers, hilit-chg-turn-off-maybe): Remove due
3449         to use of define-globalized-minor-mode.
3450         (highlight-changes-global-initial-state): Change to be boolean.
3451         (highlight-changes-visible-string, highlight-changes-invisible-string):
3452         Rename from highlight-changes-active-string and
3453         highlight-changes-passive-string.
3454         (hilit-chg-update, hilit-chg-set): Use them.
3455         (global-highlight-changes-mode): Rename from global-highlight-changes.
3456         (hilit-chg-map-changes, hilit-chg-display-changes): Add arguments to
3457         docstring.
3458         (hilit-chg-hide-changes): Rewrite to use dolist.
3459         (hilit-chg-set-face-on-change, hilit-chg-update)
3460         (highlight-changes-rotate-faces): Use highlight-changes-visible-mode
3461         variable instead of testing highlight-changes-mode.
3462         (highlight-markup-buffers): Add require ediff-util; argument on calls
3463         to highlight-changes-mode changed.
3464         (highlight-compare-with-file): Fix problems with interactive
3465         call giving invalid default file.
3467 2008-04-03  Nick Roberts  <nickrob@snap.net.nz>
3469         * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
3470         Fix in disassembly buffer (regression in 22.2).
3472 2008-04-03  Michael Kifer  <kifer@cs.stonybrook.edu>
3474         * emulation/viper-macs.el (viper-read-fast-keysequence):
3475         Use viper-read-event instead of viper-read-key.
3477         * emulation/viper.el (viper-mode): Move the check for fundamental mode.
3479         * emulation/viper-utils.el (viper-get-saved-cursor-color-in-insert-mode)
3480         (viper-get-saved-cursor-color-in-replace-mode): Get rid of redundant
3481         let-statements.
3483         * emulation/viper-ex.el, emulation/viper-macs.el:
3484         * emulation/viper-mous.el:
3485         Replace load with require in eval-when-compile.
3487 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3489         * files.el (auto-mode-alist): Use archive-mode for Debian packages.
3491         * arc-mode.el (archive-mode-map): Obey mouse-1-click-follows-link.
3492         (archive-try-jka-compr): New function.
3493         (archive-set-buffer-as-visiting-file): Use it.
3495         * tar-mode.el (tar-mode-map): Obey mouse-1-click-follows-link.
3497 2008-04-03  Chong Yidong  <cyd@stupidchicken.com>
3499         * simple.el (handle-shift-selection): New arg.
3501 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3503         * emacs-lisp/cl-macs.el (defsetf): Accept a lambda for the 2-arg form.
3505         * vc-bzr.el (vc-bzr-previous-revision, vc-bzr-next-revision): New funs.
3507 2008-04-03  Chong Yidong  <cyd@stupidchicken.com>
3509         * shell.el (shell-dynamic-complete-filename): New fun.
3510         (shell-dynamic-complete-functions): Use it.
3512         * help-fns.el (describe-variable): Undo 2008-02-25 change.
3514 2008-04-03  Kenichi Handa  <handa@m17n.org>
3516         * international/fontset.el (create-fontset-from-x-resource):
3517         Handle the error of X resource more gracefully.
3519         * international/latin1-disp.el (latin1-display): Don't use make-char.
3520         Fix the argument to set-char-table-range.
3521         (latin1-display-identities): Don't use make-char.
3522         (latin1-display-reset): Use map-charset-chars instead of directly
3523         calling standard-display-default.
3524         (latin1-display-check-font): Don't use make-char.
3525         (latin1-display-setup): Likewise.
3526         (latin1-display-ucs-per-lynx): Likewise.
3528 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3530         * emacs-lisp/timer.el (timer): Define as a defstruct, so we can
3531         name the fields, to make the code clearer.
3532         Rewrite all `aset' and `aref' using the defined accessors.
3533         (timer--time): New pseudo-field.
3534         (timer-set-time, timer-set-idle-time, timer-inc-time)
3535         (timer-set-time-with-usecs, with-timeout-suspend): Use it.
3536         (timer--time-less-p): New function.
3537         (timer--activate): New function, extracted from timer-activate.
3538         (timer-activate-when-idle, timer-activate): Use it.
3539         (cancel-function-timers): Use dolist.
3541 2008-04-03  Glenn Morris  <rgm@gnu.org>
3543         * add-log.el (c-beginning-of-defun, c-end-of-defun):
3544         Remove declarations; no longer used.
3545         (c-cpp-define-name, c-defun-name): Declare as functions.
3547         * calendar/cal-bahai.el (holiday-fixed): Autoload it.
3548         (holiday-bahai-new-year, holiday-bahai-ridvan): New functions.
3550         * calendar/cal-hebrew.el (holiday-rosh-hashanah-etc)
3551         (holiday-passover-etc, holiday-hanukkah): Doc fix.
3552         Add optional argument.  Simplify.
3553         (holiday-tisha-b-av-etc): Use memq rather than unless.
3554         (holiday-julian): Autoload it.
3555         (holiday-hebrew-misc): New function.
3557         * calendar/cal-islam.el (holiday-islamic-new-year): New function.
3559         * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
3560         (hebrew-holidays-3, hebrew-holidays-4): Make obsolete.
3561         (hebrew-holidays-2): Just use holiday-hanukkah now it respects
3562         all-hebrew-calendar-holidays.
3563         (hebrew-holidays, christian-holidays, islamic-holidays, bahai-holidays):
3564         Simplify using new functions.
3565         (calendar-holidays): Doc fix.
3566         (generate-calendar-window): Use bound-and-true-p.
3568         * calendar/diary-lib.el (diary-mail-addr): Use bound-and-true-p.
3570         * calendar/holidays.el (calendar-holiday-list): Fix previous change.
3571         (holiday-filter-visible-calendar): Doc fix.  Use mapcar.
3572         (holiday-easter-etc): Fix nesting of result.  Tweak holiday order.
3573         Use calendar-date-is-visible-p, not holiday-filter-visible-calendar.
3575         * net/tramp.el (tramp-drop-volume-letter): Move definition before use.
3577 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3579         * vc-mtn.el (vc-mtn-command): Avoid localization of messages.
3581         * vc-bzr.el (vc-bzr-checkout): Simplify.
3583         * image-mode.el (image-mode-fit-frame): New command.
3585         * simple.el (beginning-of-buffer, end-of-buffer, goto-line, undo)
3586         (copy-region-as-kill, kill-ring-save, use-region-p, mark-word)
3587         (keyboard-escape-quit): Check region-active-p i.s.o
3588         transient-mark-mode.
3590 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3592         * net/imap.el (imap-enable-exchange-bug-workaround): New variable.
3593         (imap-message-copyuid-1): Use it.
3594         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3595         J. Williams in
3596         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3598 2008-04-02  Alan Mackenzie  <acm@muc.de>
3600         * progmodes/cc-cmds.el (c-defun-name, c-cpp-define-name):
3601         New optimised functions to get the name of the current defun/macro.
3603         * add-log.el (add-log-current-defun): Move the functionality which
3604         gets the current function name for C like modes to cc-cmds.el,
3605         thus optimising for speed.
3607 2008-04-02  Chong Yidong  <cyd@stupidchicken.com>
3609         * simple.el (deactivate-mark): When the mark is temporarily
3610         active, restore the original value of transient-mark-mode.
3611         (set-mark-command): First deactivate the mark if was temporarily active.
3612         (exchange-point-and-mark): Reactivate the mark if it was
3613         temporarily active.
3614         (handle-shift-selection): New fun.
3615         (transient-mark-mode): Move var documentation here from buffer.c.
3616         (next-line, previous-line, backward-word, move-end-of-line)
3617         (move-beginning-of-line, forward-to-indentation)
3618         (backward-to-indentation, back-to-indentation)
3619         (beginning-of-buffer, end-of-buffer): Add ^ interactive spec.
3621         * mouse.el (mouse-set-region-1): Save the old value of
3622         transient-mark-mode.
3623         (mouse-drag-track): Ignore the now-obsolete value `identity' for
3624         transient-mark-mode.
3626         * textmodes/paragraphs.el (forward-paragraph)
3627         (backward-paragraph, forward-sentence, backward-sentence): Add ^
3628         interactive spec.
3630         * emulation/cua-base.el (cua-mode): Turn off shift-select-mode.
3632 2008-04-02  Michael Albinus  <michael.albinus@gmx.de>
3634         * net/tramp.el (tramp-make-tramp-temp-file):
3635         Use `tramp-drop-volume-letter' for the local file name part.
3637 2008-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
3639         * progmodes/sh-script.el (sh-mode-map): Rename the menu.  Add :help.
3640         Add menu entries corresponding to all the key bindings.
3642         * emacs-lisp/debug.el (debugger-mode-map):
3643         * textmodes/conf-mode.el (conf-mode-map): Add a menu.
3644         (conf-align-assignments): Only work on the region if it is active.
3645         (conf-quote-normal): Use when instead of if.  Remove redundant test.
3647         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
3648         for tracing and re-builder.
3650 2008-04-02  Glenn Morris  <rgm@gnu.org>
3652         * calendar/appt.el (appt-disp-window-function): Doc fix.
3653         (appt-display-message): Move beep before display.
3654         (appt-check): Make interactive.  Reduce the number of lets.
3655         Use string-equal to compare mode-line strings.
3656         (appt-disp-window): Pluralize "minute" as needed.  Make appt buffer
3657         read-only.
3658         (appt-select-lowest-window, appt-make-list): Reduce the number of lets.
3659         (appt-delete): Simplify.
3661         * calendar/cal-china.el (holiday-chinese-new-year): Use a single let.
3663         * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
3665         * calendar/cal-hebrew.el (list-yahrzeit-dates):
3666         * calendar/cal-tex.el (cal-tex-insert-blank-days-at-end)
3667         (cal-tex-last-blank-p, cal-tex-daily-page): Expand calendar-for-loops.
3669         * calendar/calendar.el (diary-entry-marker, calendar-today-marker)
3670         (calendar-holiday-marker, mark-visible-calendar-date):
3671         * calendar/diary-lib.el (fancy-diary-display):
3672         Check for font-lock-mode before using faces.
3674         * calendar/calendar.el (hebrew-holidays-3, generate-calendar-month)
3675         (calendar-gregorian-from-absolute): Reduce the number of lets.
3676         (hebrew-holidays-4, generate-calendar-window): Simplify.
3677         (calendar-for-loop): Make obsolete.
3678         (calendar-nth-named-day): Doc fix.
3680         * calendar/diary-lib.el (diary-list-entries, fancy-diary-display)
3681         (print-diary-entries, mark-sexp-diary-entries, calendar-mark-complex)
3682         (calendar-mark-1, list-sexp-diary-entries, diary-remind):
3683         Reduce the number of lets.
3684         (mark-sexp-diary-entries, calendar-mark-complex):
3685         Expand calendar-for-loops.
3687 2008-04-01  Chong Yidong  <cyd@stupidchicken.com>
3689         * find-dired.el (find-dired-filter): Fix last patch to handle
3690         multi-line process input.  Pad link numbers too.
3692 2008-04-01  Jari Aalto  <jari.aalto@cante.net>
3694         * find-dired.el (find-dired-filter): Align columns by padding file sizes.
3696 2008-04-01  Jason Rumney  <jasonr@gnu.org>
3698         * international/characters.el (script-list): Add phonetic script,
3699         covering IPA (previously Latin), Phonetic Extensions and
3700         Phonetic Extensions Supplement (both previously unassigned).
3702         * international/fontset.el (setup-default-fontset): Use unicode fonts
3703         that cover bopomofo script for bopomofo.
3704         Likewise for braille and mathematical.
3705         Use unicode scripts that cover the phonetic script for IPA.
3707 2008-04-01  Johan Bockgård  <bojohan@gnu.org>
3709         * emacs-lisp/cl-macs.el (frame-parameter) <defsetf>: Make it
3710         return the assigned value.
3712 2008-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3714         * abbrev.el (abbrev-mode): Use define-minor-mode.
3716         * mouse.el (mouse-major-mode-menu-prefix): Remove.  Remove uses.
3717         (mouse-menu-non-singleton): Rename from mouse-major-mode-menu-1.
3718         Use map-keymap.
3719         (minor-mode-menu-from-indicator): Use it.  Simplify.
3721         * bindings.el (mode-line-mode-menu): Move before (new) first use.
3722         (mode-line-major-mode-keymap, mode-line-minor-mode-keymap):
3723         Bind the key directly to the menu.
3724         (mode-line-mode-menu-1, mode-line-mode-menu): Remove functions.
3726 2008-04-01  Daiki Ueno  <ueno@unixuser.org>
3728         * epa.el (epa-decrypt-region): Explain the reason why this
3729         function should not be used in Lisp programs.
3730         (epa-decrypt-armor-in-region): Ditto.
3731         (epa-verify-region): Ditto.
3732         (epa-verify-cleartext-in-region): Ditto.
3733         (epa-sign-region): Ditto.
3734         (epa-encrypt-region): Ditto.
3736         * epg.el (epg-start-receive-keys): Fix typo in docstring.
3738         * epa.el (epa-select-keys): Show menu even if there is no key in
3739         GnuPG's keyring.
3741 2008-04-01  Glenn Morris  <rgm@gnu.org>
3743         * calendar/calendar.el (calendar-make-temp-face): New function.
3744         (mark-visible-calendar-date):
3745         * calendar/diary-lib.el (fancy-diary-display): Use it.
3747         * vc-hooks.el (vc-responsible-backend): Declare as function.
3749         * calendar/calendar.el (calendar-nongregorian-visible-p): New function.
3750         * calendar/cal-hebrew.el (calendar-hebrew-date-is-visible-p):
3751         * calendar/cal-julian.el (holiday-julian): Use it.
3753         * calendar/cal-hebrew.el (hebrew-calendar-elapsed-days): Doc fix.
3754         (calendar-hebrew-date-is-visible-p): Extract some common code into
3755         separate function.
3756         (holiday-hebrew, mark-hebrew-calendar-date-pattern): Use it.
3758         * calendar/cal-menu.el (cal-menu-holidays-menu):
3759         * calendar/calendar.el (calendar-mode-map): Use calendar-mark-holidays
3760         rather than obsolete alias.
3762         * calendar/calendar.el (mark-visible-calendar-date): Also use overlay
3763         for mark characters.
3764         (calendar-unmark): Unmark by removing all overlays, rather than
3765         redrawing.
3766         (calendar-starred-day): Remove.
3767         (calendar-mode): Disable undo.  Don't make calendar-starred-day local.
3768         (calendar-cursor-to-date): No need for special star handling now
3769         using overlays.
3770         (calendar-star-date): Use overlays.
3772         * calendar/cal-french.el (calendar-goto-french-date):
3773         * calendar/cal-hebrew.el (calendar-hebrew-from-absolute)
3774         (holiday-hanukkah, mark-hebrew-calendar-date-pattern):
3775         * calendar/cal-move.el (calendar-forward-month, calendar-end-of-month):
3776         * calendar/cal-persia.el (calendar-persian-date-string):
3777         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
3778         (cal-tex-cursor-month, cal-tex-LaTeXify-string):
3779         * calendar/lunar.el (lunar-phase-list, lunar-new-moon-on-or-after):
3780         * calendar/solar.el (solar-equinoxes-solstices):
3781         Reduce nesting of some lets.
3783         * calendar/cal-mayan.el (calendar-string-to-mayan-long-count):
3784         (calendar-goto-mayan-long-count-date): Simplify.
3786         * calendar/holidays.el (calendar-holiday-list, holiday-easter-etc):
3787         Simplify by using mapcar.
3788         (calendar-list-holidays): Return holiday-list.
3789         (list-holidays): Use let rather than let*.  Remove un-needed locals
3790         `d', `never'.
3791         (calendar-check-holidays): Return result from dolist.
3792         (holiday-float): Use a single let*.  Simplify if-and to and.
3793         (holiday-sexp, holiday-advent, holiday-greek-orthodox-easter): Use a
3794         single let*.
3796 2008-04-01  Jay Belanger  <jay.p.belanger@gmail.com>
3798         * calc/calc.el: Autoload `calc-yank'.
3799         (calc-mode-map): Add keybindings for `calc-yank'.
3800         * calc/calc-ext.el (calc-init-extensions): Remove keybinding
3801         assignments for `calc-yank'.
3803 2008-03-31  Dan Nicolaescu  <dann@ics.uci.edu>
3805         * vc.el (vc-status-add-entry): Assume ENTRY is a list, not a cons.
3806         (vc-status-mark-buffer-changed): Handle the extra field.
3808         * vc-bzr.el (vc-bzr-after-dir-status):
3809         * vc-cvs.el (vc-cvs-after-dir-status):
3810         * vc-hg.el (vc-hg-after-dir-status):
3811         * vc-svn.el (vc-svn-after-dir-status): Return a list, not a cons.
3813 2008-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3815         * doc-view.el: Compute displayed pages first (in PDF).
3816         (doc-view-current-converter-processes): Rename from
3817         doc-view-current-converter-process.  Update users.
3818         (doc-view-sentinel): Test buffer's liveness.
3819         (doc-view-pdf/ps->png-sentinel): Remove.
3820         (doc-view-start-process): New function.
3821         (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
3822         (doc-view-ps->pdf): Use it.
3823         (doc-view-pdf->png-1, doc-view-pdf->png, doc-view-active-pages):
3824         New functions.
3825         (doc-view-convert-current-doc, doc-view-goto-page): Use them.
3826         (doc-view-mode): Kill the processes when leaving the mode.
3828 2008-03-31  Juanma Barranquero  <lekktu@gmail.com>
3830         * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p):
3831         Use `byte-compile-warning-types'.  Add docstring.
3833 2008-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3835         * smerge-mode.el (smerge-apply-resolution-patch): New fun.
3836         (smerge-resolve): Add various resolution heuristics.
3838         * smerge-mode.el (smerge-refine): Allow highlighting other subparts
3839         in 3-way conflicts.
3841 2008-03-31  Glenn Morris  <rgm@gnu.org>
3843         * calendar/cal-bahai.el (diary-bahai-mark-entries):
3844         * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
3845         * calendar/cal-islam.el (mark-islamic-diary-entries):
3846         Fix argument order in call to diary-mark-entries-1.
3848         * calendar/cal-bahai.el (calendar-bahai-date-string): Avoid an error for
3849         pre-Bahai dates.
3850         (holiday-bahai): Use an algorithm actually relevant to this calendar
3851         system.
3853         * calendar/cal-china.el (holiday-chinese-new-year): Doc fix.
3855         * calendar/cal-islam.el (holiday-islamic): Remove un-needed let.
3856         Use and.
3858         * calendar/cal-julian.el (holiday-julian): Fix a problem with holidays
3859         in the last fortnight in Julian October.
3861         * calendar/calendar.el (increment-calendar-month): Optionally handle
3862         systems without 12 months per year.
3864         (calendar-date-is-visible-p): Doc fix.  Simplify.
3866         * calendar/holidays.el (holiday-filter-visible-calendar): Return result
3867         from dolist.
3869 2008-03-30  Juanma Barranquero  <lekktu@gmail.com>
3871         * hi-lock.el (hi-lock-mode): Fix typos in docstring.
3872         (hi-lock-unload-function): New function.
3874 2008-03-30  Michael Albinus  <michael.albinus@gmx.de>
3876         * net/tramp.el (tramp-do-copy-or-rename-file): Fix check for
3877         overwriting when NEWNAME is a local file.
3879         * net/trampver.el: Update release number.
3881 2008-03-30  Alexandre Julliard  <julliard@winehq.org>
3883         * vc-git.el: Make vc-status display information about copies,
3884         renames and permission changes.
3885         (vc-git-extra-fileinfo): New defstruct.
3886         (vc-git-escape-file-name, vc-git-file-type-as-string)
3887         (vc-git-rename-as-string, vc-git-permissions-as-string)
3888         (vc-git-status-printer): New functions.
3889         (vc-git-after-dir-status-stage2): Also return vc-git-extra-fileinfo.
3890         (vc-git-after-dir-status-stage1): Look for copies, renames and
3891         permission changes.
3892         (vc-git-after-dir-status-stage1-empty-db): Set permissions.
3893         (vc-git-dir-status): Ask for staged files and renames.
3895 2008-03-30  Dan Nicolaescu  <dann@ics.uci.edu>
3897         * vc.el: Allow backends to display backend specific information in
3898         the vc-status listing.
3899         (vc-status-fileinfo): Add a field for backend specific information.
3900         (vc-status-printer): Rename to ...
3901         (vc-default-status-printer): ... this.
3902         (vc-status-printer): New function.
3903         (vc-update-vc-status-buffer): Set the backend specific file info
3904         if provided.
3906 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3908         * textmodes/remember.el (remember-diary-convert-entry): Revert last
3909         change (ill-conceived).
3911 2008-03-29  Glenn Morris  <rgm@gnu.org>
3913         * calendar/cal-hebrew.el (holiday-hebrew): Simplify.
3914         * calendar/cal-julian.el (holiday-julian): Simplify.
3916         * calendar/holidays.el (list-holidays): Use or.
3918 2008-03-29  Juri Linkov  <juri@jurta.org>
3920         * window.el (split-window-preferred-horizontally): New function.
3922         * cus-start.el (split-window-preferred-function):
3923         Set choice for "vertically" to nil instead of split-window.
3924         Set choice for "horizontally" to split-window-preferred-horizontally
3925         instead of lambda.
3927 2008-03-29  Juri Linkov  <juri@jurta.org>
3929         * simple.el (minibuffer-default-add-function): New variable with
3930         the default to minibuffer-default-add-completions.
3931         (minibuffer-default-add-done): New variable.  Make it buffer-local.
3932         (minibuffer-default-add-completions): New function.
3933         (goto-history-element): Set minibuffer-default-add-done to t and
3934         call a function in minibuffer-default-add-function when the
3935         specified absolute history position is greater than the length of
3936         the minibuffer-default list and minibuffer-default-add-done is nil.
3937         Change "^End of history; no next item$" to "^End of defaults;
3938         no next item$".
3940         * bindings.el (debug-ignored-errors): Change "^End of history;
3941         no next item$" to "^End of defaults; no next item$".
3943 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3945         * subr.el (with-temp-buffer): Assume kill-buffer can change cur-buf.
3947         * textmodes/remember.el (remember-diary-convert-entry): Prefer boundp
3948         to with-no-warnings.
3950 2008-03-29  Michael Albinus  <michael.albinus@gmx.de>
3952         Sync with Tramp 2.1.13.
3954         * net/tramp-ftp.el: Require 'cl when byte-compiling.
3956         * net/trampver.el: Update release number.
3958 2008-03-29  Dan Nicolaescu  <dann@ics.uci.edu>
3960         * vc-hooks.el (vc-menu-map-filter): Be more careful when finding
3961         the current backend.
3963         * vc.el (vc-status-menu-map, vc-status-mode-map): Bind vc-revert.
3964         (vc-status-refresh): Create a temporary buffer and call the
3965         `dir-status' backend function from that buffer.
3967         * vc-bzr.el (vc-bzr-dir-status): Don't create a buffer.
3968         (vc-bzr-after-dir-status): Don't kill the buffer.
3970         * vc-cvs.el (vc-cvs-dir-status): Don't create a buffer.
3971         (vc-cvs-after-dir-status): Don't kill the buffer.
3973         * vc-git.el (vc-git-dir-status): Don't create a buffer.
3974         (vc-git-after-dir-status-stage2): Don't kill the buffer.
3976         * vc-hg.el (vc-hg-dir-status): Don't create a buffer.
3977         (vc-hg-after-dir-status): Don't kill the buffer.
3979         * vc-svn.el (vc-svn-dir-status): Don't create a buffer.
3980         (vc-svn-after-dir-status): Don't kill the buffer.
3982 2008-03-29  Glenn Morris  <rgm@gnu.org>
3984         * calendar/calendar.el (diary-file, american-date-diary-pattern)
3985         (european-date-diary-pattern, european-calendar-display-form)
3986         (american-calendar-display-form, diary-display-hook): Doc fixes.
3987         (european-calendar-style): Doc fix.  Use calendar-set-date-style for
3988         custom :set.  Mark as obsolete.
3989         (calendar-date-style, iso-date-diary-pattern)
3990         (iso-calendar-display-form): New user variables.
3991         (diary-date-forms, calendar-date-display-form): Set using
3992         calendar-date-style.  Doc fix.
3993         (calendar-set-date-style): New command.
3994         (european-calendar, american-calendar): Use calendar-set-date-style.
3995         Mark as obsolete.
3997         * calendar/diary-lib.el (number): Move declaration where needed.
3998         (diary-mail-entries, list-sexp-diary-entries): Doc fixes.
3999         (diary-make-date): New function.
4000         (diary-date, diary-block, diary-anniversary, diary-cyclic): Doc fix.
4001         Use diary-make-date.
4002         (diary-date-display-form, diary-insert-entry-1): New functions.
4003         (insert-monthly-diary-entry, insert-yearly-diary-entry):
4004         Use diary-insert-entry-1.
4005         (insert-anniversary-diary-entry, insert-block-diary-entry)
4006         (insert-cyclic-diary-entry): Use diary-date-display-form.
4008         * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
4009         Autoload diary-insert-entry-1.
4010         * calendar/cal-bahai.el (diary-bahai-insert-entry)
4011         (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
4012         * calendar/cal-hebrew.el (insert-hebrew-diary-entry)
4013         (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry)
4014         * calendar/cal-islam.el (insert-islamic-diary-entry)
4015         (insert-monthly-islamic-diary-entry, insert-yearly-islamic-diary-entry):
4016         Use diary-insert-entry-1.
4018         * calendar/cal-hebrew.el (diary-make-date): Autoload it.
4019         (diary-yahrzeit): Doc fix.  Use diary-make-date.
4021         * calendar/icalendar.el (icalendar--datetime-to-american-date):
4022         New name for icalendar--datetime-to-noneuropean-date.  Make old name
4023         obsolete alias.
4024         (icalendar--datetime-to-iso-date): New function.
4025         (icalendar--datetime-to-diary-date): Doc fix.  Respect
4026         calendar-date-style if bound.
4028         * textmodes/remember.el (remember-diary-convert-entry):
4029         Respect calendar-date-style if bound.
4031 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4033         * xt-mouse.el (xterm-mouse-mode): Use delete-terminal-functions.
4034         (xterm-mouse-handle-delete-frame): Delete.
4036         * term/xterm.el (terminal-init-xterm): Use delete-terminal-functions.
4037         (xterm-turn-on-modify-other-keys, xterm-turn-off-modify-other-keys)
4038         (xterm-remove-modify-other-keys): Lookup terminal rather than frame
4039         in xterm-modify-other-keys-terminal-list.
4041         * vc-bzr.el (vc-bzr-state-heuristic): Fix last change for when there
4042         are conflicts.
4044 2008-03-29  Dan Nicolaescu  <dann@ics.uci.edu>
4046         * vc.el (vc-update): Check if the buffer is unsaved only if it
4047         actually exists.
4048         (vc-status-mode-map, vc-status-menu-map): Bind vc-update and
4049         vc-print-log.
4051 2008-03-28  Magnus Henoch  <mange@freemail.hu>
4053         * net/dns.el (dns-write): Use set-buffer-multibyte.
4055 2008-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4057         * vc-bzr.el (vc-bzr-sha1): New fun.
4058         (vc-bzr-state-heuristic): New fun, extracted from vc-bzr-registered.
4059         (vc-bzr-registered): Use it.
4061 2008-03-28  Dan Nicolaescu  <dann@ics.uci.edu>
4063         * vc.el (vc-status-kill-dir-status-process): Simplify.
4064         (vc-status-refresh): Make sure the buffer is live.
4065         (ring): Don't require it, not used.
4067 2008-03-28  Wilson Snyder  <wsnyder@wsnyder.org>
4069         * progmodes/verilog-mode.el (verilog-auto-inout-module):
4070         Add optional regular expression to AUTOINOUTMODULE.
4071         (verilog-inject-auto, verilog-auto-arg, verilog-auto-inst)
4072         (verilog-auto-inst-param, verilog-auto-reg)
4073         (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
4074         (verilog-auto-output-every, verilog-auto-input)
4075         (verilog-auto-inout, verilog-auto-sense, verilog-auto-tieoff)
4076         (verilog-auto-unused, verilog-auto): Update documentation to use
4077         more obvious instance module names versus cell names.
4079 2008-03-28  Jan Djärv  <jan.h.d@swipnet.se>
4081         * progmodes/compile.el (compilation-mode-tool-bar-map): Only enable
4082         kill if a process is running.
4084         * progmodes/grep.el (grep-mode-tool-bar-map): The same.
4086 2008-03-28  Dan Nicolaescu  <dann@ics.uci.edu>
4088         * vc.el: Add new backend function 'status-extra-headers.
4089         (vc-default-status-extra-headers): New function.
4090         (vc-status-headers): Call 'status-extra-headers.  Add colors.
4092         * vc-git.el (vc-git-status-extra-headers): New function.
4094 2008-03-28  Glenn Morris  <rgm@gnu.org>
4096         * calendar/cal-menu.el (cal-menu-holidays-menu)
4097         (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
4098         (cal-menu-list-holidays-previous-year): Simplify now that 2nd arg of
4099         holiday-list is optional.
4100         (calendar-mouse-holidays): Remove un-needed local `l'.
4102         * calendar/cal-move.el (calendar-cursor-to-nearest-date):
4103         Remove un-needed local `date'.
4104         (calendar-cursor-to-visible-date): Use let rather than let*.
4105         Remove un-needed local `first-of-month-weekday'.
4107         * calendar/calendar.el (abbreviated-calendar-year): Move to diary-lib.
4109         * calendar/diary-lib.el (print-diary-entries-hook, diary-list-entries):
4110         Doc fixes.
4111         (abbreviated-calendar-year): Move here from calendar.el.  Doc fix.
4112         (diary-header-line-flag, diary-header-line-format): Declare.
4113         (diary-pull-attrs): Check for multiple matches.
4114         (diary-list-entries-2): Simplify finding start of date.
4115         (diary-show-all-entries, make-diary-entry): Respect non-nil values of
4116         pop-up-frames.
4117         (diary-mark-entries-1): Re-use offset in abbreviated-year case.
4118         (mark-sexp-diary-entries): Remove superfluous call to diary-pull-attrs.
4120 2008-03-27  Dan Nicolaescu  <dann@ics.uci.edu>
4122         * vc-hg.el (vc-hg-state, vc-hg-dir-state): Deal with 'missing files.
4124         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Fix predicate.
4126 2008-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4128         * vc-hooks.el (vc-before-save): Don't prevent saving the file.
4130         * image-mode.el (image-mode-reapply-winprops): Fix last change.
4132 2008-03-27  Kenichi Handa  <handa@ni.aist.go.jp>
4134         * international/mule-conf.el (define-iso-single-byte-charset):
4135         Don't make latin-iso8859-* supplementary.
4136         (#'set-charset-priority): Don't change the priority of charsets
4137         `unicode' and `emacs'.
4139 2008-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4141         * vc.el (vc-do-command): Don't pop to the buffer if it's an internal
4142         temp buffer.
4144 2008-03-27  Glenn Morris  <rgm@gnu.org>
4146         * calendar/cal-bahai.el (diary-bahai-list-entries):
4147         * calendar/cal-hebrew.el (list-hebrew-diary-entries):
4148         * calendar/cal-islam.el (list-islamic-diary-entries): Doc fix.
4150         * calendar/calendar.el (diary-file): Doc fix.
4152         * calendar/diary-lib.el (diary-face-attrs): Fix `height' regexp.
4153         (list-diary-entries-hook, mark-diary-entries-hook)
4154         (include-other-diary-files, diary-mail-entries)
4155         (mark-included-diary-files, list-sexp-diary-entries): Doc fixes.
4156         (diary-set-header): New function.
4157         (diary-header-line-flag, diary-header-line-format):
4158         Use diary-set-header for custom :set function.
4159         (diary-set-maybe-redraw): Use symbol-value rather than eval.
4160         (diary-attrtype-convert): Use intern-soft rather than read.
4161         (diary-display-no-entries): New function.
4162         (simple-diary-display, fancy-diary-display): Use it.
4163         (fancy-diary-display): Doc fix.  Remove unneeded local entry-list.
4164         (diary-mark-entries-1): Fix position offsets in non-gregorian case.
4166         * calendar/holidays.el (list-holidays): Doc fix.
4168 2008-03-26  Jay Belanger  <jay.p.belanger@gmail.com>
4170         * calc/calc-store.el (calc-read-var-name-history): New variable.
4171         (calc-read-var-name): Use `calc-read-var-name-history'.
4173 2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4175         * image-mode.el (image-mode-reapply-winprops): Simplify now that
4176         window-configuration-change-hook works buffer-locally.
4178 2008-03-26  Johan Bockgård  <bojohan@gnu.org>
4180         * emacs-lisp/lisp-mnt.el (lm-with-file): Use mode and syntax table
4181         for Emacs Lisp, not Lisp.
4183 2008-03-26  Juanma Barranquero  <lekktu@gmail.com>
4185         * help-fns.el (describe-function-1, describe-variable):
4186         If CURRENT-NAME is nil, don't end obsolescence info with semicolon.
4188         * emacs-lisp/bytecomp.el (byte-compile-obsolete): If no
4189         replacement is provided, don't print "use nil instead".
4191 2008-03-26  Johan Bockgård  <bojohan@gnu.org>
4193         * complete.el (PC-do-completion): Use regexp-quote.
4195 2008-03-26  Dan Nicolaescu  <dann@ics.uci.edu>
4197         * vc-cvs.el (vc-cvs-parse-status, vc-cvs-after-dir-status):
4198         Detect missing files.
4200         * vc-git.el (vc-git-extra-menu-map): New key map.
4201         (vc-git-extra-menu, vc-git-extra-status-menu, vc-git-grep):
4202         New functions.
4204         * vc-hooks.el (vc-default-mode-line-string): Deal with 'removed
4205         and 'missing files.
4207 2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4209         * calendar/holidays.el (list-holidays): Make Y2 optional.
4211         * calendar/appt.el (appt-buffer-name): Don't use a leading space for
4212         buffers shown to the user.
4213         (appt-disp-window): Disable undo explicitly now that the leading space
4214         is gone.
4216         * simple.el (activate-mark): New function.
4217         (set-mark-command): Use it with region-active-p to clean up the code.
4218         (exchange-point-and-mark): Invert the meaning of C-u when
4219         transient-mark-mode is active.
4221         * dired-aux.el (dired-create-files): Use dolist.
4223         * bindings.el (mode-line-change-eol): Use with-selected-window.
4225         * apropos.el (apropos-command): Include macros.
4227 2008-03-26  Glenn Morris  <rgm@gnu.org>
4229         * calendar/cal-bahai.el: Require calendar, not cal-julian.
4230         (calendar-bahai-epoch): Doc fix.
4232         * calendar/cal-china.el: Explicitly require calendar.
4234         * calendar/cal-coptic.el, calendar/cal-islam.el, calendar/cal-persia.el:
4235         Require calendar rather than cal-julian.
4236         Autoload calendar-absolute-from-julian.
4237         * calendar/cal-coptic.el (coptic-calendar-epoch):
4238         * calendar/cal-islam.el (calendar-islamic-epoch):
4239         * calendar/cal-persia.el (persian-calendar-epoch): Set when compiling.
4241         * calendar/cal-islam.el (calendar-islamic-epoch): Doc fix.
4243         * calendar/cal-dst.el: Don't require cal-persia.
4244         (calendar-absolute-from-persian): Autoload it.
4245         (dst-adjust-time): Doc fix.
4247         * calendar/cal-menu.el (cal-menu-diary-menu): Remove menu headings that
4248         cause cal-bahai, cal-islam, cal-hebrew to be loaded on starting the
4249         calendar.
4251         * calendar/cal-menu.el: Require calendar rather than declaring
4252         functions.
4253         * calendar/calendar.el: Provide calendar before requiring cal-menu.
4255         * calendar/cal-x.el (calendar-after-frame-setup-hook): New name for
4256         calendar-after-frame-setup-hooks.  Update callers, make old name an
4257         obsolete alias.  Doc fix.
4258         (calendar-frame-1): Doc fix.
4260         * calendar/calendar.el (solar-holidays): Simplify holiday-sexp calls.
4262         * calendar/calendar.el (oriental-holidays, solar-holidays):
4263         * calendar/holidays.el (list-holidays): Assume atan always bound.
4265         * calendar/lunar.el, calendar/solar.el: Remove floating-point check.
4266         Explicitly require calendar, not cal-julian.
4267         * calendar/lunar.el: Explicitly require cal-dst.
4269 2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4271         * autorevert.el (auto-revert-buffers): Use buffer-live-p.
4273         * help-fns.el (describe-function-1, describe-variable): If no
4274         replacement is provided, don't print "use nil instead".
4276 2008-03-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
4278         * proced.el: New file.
4280 2008-03-25  Tetsurou Okazaki  <okazaki@be.to>  (tiny change)
4282         * emacs-lisp/byte-opt.el (side-effect-free-fns): Fix typo.
4284 2008-03-25  Juri Linkov  <juri@jurta.org>
4286         * battery.el: Add file cookie coding:iso-8859-1 for the degree sign
4287         in battery-mode-line-format.
4289         * bindings.el (minibuffer-local-map): For the command
4290         file-cache-minibuffer-complete replace keymap minibuffer-local-map
4291         with map which is already locally bound to minibuffer-local-map.
4293 2008-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4295         * subr.el (map-keymap-sorted): Rename from map-keymap-internal.
4296         Remove `sort-first' argument.
4298         * subr.el (redisplay-end-trigger-functions)
4299         (window-redisplay-end-trigger, set-window-redisplay-end-trigger)
4300         (process-filter-multibyte-p, set-process-filter-multibyte):
4301         Mark as obsolete.
4303 2008-03-25  Juanma Barranquero  <lekktu@gmail.com>
4305         * emacs-lisp/re-builder.el (reb-mode-common): Remove reference to
4306         bogus variable `reb-kill-buffer'; don't make hooks buffer-local,
4307         use the LOCAL arg of `add-hook'.
4308         (reb-blink-delay, reb-mode-hook, reb-re-syntax, reb-auto-match-limit):
4309         Remove spurious * from defcustom docstrings.
4310         (reb-next-match, reb-prev-match, reb-enter-subexp-mode):
4311         Fix typos in messages.
4312         (reb-mode-buffer-p): New function.
4313         (re-builder, reb-kill-buffer): Use `reb-mode-buffer-p'.  Use `when'.
4314         (top, reb-show-subexp, reb-auto-update, reb-auto-update)
4315         (reb-delete-overlays, reb-cook-regexp, reb-update-regexp)
4316         (reb-update-overlays): Use `unless', `when'.
4317         (re-builder-unload-function): New function.
4319 2008-03-25  Dan Nicolaescu  <dann@ics.uci.edu>
4321         * vc-hooks.el (vc-state): Add documentation for 'missing.
4323 2008-03-25  Wilson Snyder  <wsnyder@wsnyder.org>
4325         * progmodes/verilog-mode.el (verilog-auto-output)
4326         (verilog-auto-input, verilog-auto-inout, verilog-auto)
4327         (verilog-delete-auto): Add optional regular expression to
4328         AUTOINPUT/AUTOOUTPUT/AUTOINOUT.
4329         (verilog-signals-matching-regexp): New internal function for
4330         signal matching.
4332 2008-03-25  Johan Bockgård  <bojohan@gnu.org>
4334         * info.el (Info-isearch-search): Always return point.
4336 2008-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4338         * diff-mode.el (diff-remembered-defdir): New var.
4339         (diff-find-file-name): Use it to flush diff-remembered-files-alist.
4341 2008-03-25  Glenn Morris  <rgm@gnu.org>
4343         * calendar/cal-bahai.el (calendar-bahai-read-date): New name for
4344         calendar-bahai-prompt-for-date.  Update callers, make old name an
4345         obsolete alias.  Doc fix.
4346         * calendar/cal-coptic.el (calendar-coptic-read-date): New name for
4347         coptic-prompt-for-date.  Update callers, make old name an
4348         obsolete alias.  Doc fix.
4349         * calendar/cal-hebrew.el (calendar-hebrew-read-date): New name for
4350         calendar-hebrew-prompt-for-date.  Update callers.  Doc fix.
4351         * calendar/cal-islam.el (calendar-islamic-read-date): New name for
4352         calendar-islamic-prompt-for-date.  Update callers.  Doc fix.
4353         * calendar/cal-iso.el (calendar-iso-read-date): New name for
4354         calendar-iso-read-args.  Update callers, make old name an obsolete
4355         alias.
4356         * calendar/cal-persia.el (calendar-persian-read-date): New name for
4357         persian-prompt-for-date.  Update callers, make old name an
4358         obsolete alias.  Doc fix.  Move definition before use.
4360         * calendar/cal-x.el (diary-frame-parameters)
4361         (calendar-frame-parameters, calendar-and-diary-frame-parameters):
4362         (calendar-frame-1): Doc fixes.
4363         (make-fancy-diary-buffer): Remove declaration.
4364         (calendar-dedicate-diary): Replace call to deleted function
4365         make-fancy-diary-buffer.
4366         (calendar-frame-setup): New function.
4367         (calendar-one-frame-setup, calendar-only-one-frame-setup)
4368         (calendar-two-frame-setup): Call calendar-frame-setup to do the actual
4369         work, and mark as obsolete.
4370         (special-display-buffer-names): Don't mess with this; it's not our
4371         business.
4372         (cal-x-load-hook): Defvar it, and mark as obsolete.
4374         * calendar/calendar.el (calendar-remove-frame-by-deleting):
4375         Default to t.  Add to 'calendar group.
4376         (calendar): Doc fix.  Use calendar-frame-setup.
4377         (calendar-basic-setup): Doc fix.  Add optional NODISPLAY argument.
4378         (generate-calendar-window): Doc fix.
4380 2008-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4382         * vc-bzr.el (vc-bzr-print-log, vc-bzr-diff): Do it asynchronously.
4384 2008-03-24  Drew Adams  <drew.adams@oracle.com>
4386         * finder.el (finder-mode-syntax-table, finder-font-lock-keywords):
4387         New variables.
4388         (finder-mode): Use finder-mode-syntax-table.  Set font-lock-defaults.
4389         (finder-exit): Ignore errors rather than avoiding them.
4390         Kill *Finder-package* buffer also.
4392 2008-03-24  Andreas Schwab  <schwab@suse.de>
4394         * xt-mouse.el (xterm-mouse-event): Avoid error with buttons > 5.
4396 2008-03-24  Dan Nicolaescu  <dann@ics.uci.edu>
4398         * vc-hg.el (vc-hg-after-dir-status):
4399         * vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
4401         * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-parse-status):
4402         Detect removed files.
4404         * vc.el (vc-status-printer): Use a different face for missing files.
4405         (vc-status-hide-up-to-date): Rename from
4406         vc-status-remove-up-to-date.  Update all callers.
4407         (vc-status-mode-map): Bind C-m.
4409 2008-03-24  Alexandre Julliard  <julliard@winehq.org>
4411         * vc-git.el (vc-git-after-dir-status-stage1): Move state matching
4412         code ...
4413         (vc-git--state-code): ... to this new function.
4414         (vc-git-state): Use it.
4416 2008-03-24  Trent Buck  <trentbuck@gmail.com>  (tiny change)
4418         * textmodes/remember.el (remember-mail-date)
4419         (remember-store-in-mailbox): Write date and From line in such a
4420         way that Mutt can read it.
4422 2008-03-23  Chong Yidong  <cyd@stupidchicken.com>
4424         * simple.el (transient-mark-mode): Turn on by default.
4426 2008-03-23  Dan Nicolaescu  <dann@ics.uci.edu>
4428         * vc-bzr.el (vc-bzr-state): Return 'removed for removed files and
4429         'unregistered for unregistered files.
4431         * vc-hg.el (vc-hg-state): Return 'removed for removed files.
4433         * bindings.el (standard-mode-line-modes): Avoid duplicating a string.
4435         * vc-cvs.el (vc-cvs-parse-status): Note there are problems with
4436         subdirectories.
4438         * vc.el (vc-status-prepare-status-buffer): Fix thinko.
4439         (vc-status-menu-map): Add binding for vc-status-kill-dir-status-process.
4440         Add :enable for vc-status-refresh.
4441         (vc-status-menu-map-filter): Remove vc-ignore-menu-filter test.
4442         (vc-status-tool-bar-map): Add binding for
4443         vc-status-kill-dir-status-process.
4444         Don't test display-graphic-p and don't bind vc-ignore-menu-filter.
4445         (vc-update-vc-status-buffer, vc-status-kill-dir-status-process):
4446         Reset vc-status-process-buffer.
4447         (vc-status-refresh): Don't run two refreshes at a time.
4448         (vc-status): If the buffer is already in vc-status-mode only refresh.
4449         (vc-status-mark-buffer-changed): Add an optional file parameter.
4450         (vc-resynch-buffer): Use it.
4451         (vc-delete-file): Expand the file name before using it.
4452         Be careful to not create a new buffer with the old file contents.
4453         Update the VC state after performing the operation.
4455 2008-03-23  Andreas Schwab  <schwab@suse.de>
4457         * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]:
4458         Fix radio button condition.
4459         [box]: Likewise.
4460         [customize]: Add radio button.
4462 2008-03-23  Jay Belanger  <jay.p.belanger@gmail.com>
4464         * calc/calc.el (calc-was-keypad-mode, calc-full-mode)
4465         (calc-user-parse-tables, calc-gnuplot-default-device)
4466         (calc-gnuplot-default-output, calc-gnuplot-print-device)
4467         (calc-gnuplot-print-output, calc-gnuplot-geometry)
4468         (calc-graph-default-resolution, calc-graph-default-resolution-3d)
4469         (calc-invocation-macro, calc-trail-pointer, calc-trail-overlay)
4470         (calc-undo-list, calc-redo-list, calc-main-buffer)
4471         (calc-trail-buffer, calc-why, calc-last-kill, calc-dollar-values)
4472         (calc-dollar-used, calc-hashes-used, calc-quick-prev-results)
4473         (calc-said-hello, calc-executing-macro, calc-any-selections)
4474         (calc-help-phase, calc-full-help-flag, calc-refresh-count)
4475         (calc-display-dirty, calc-embedded-info, calc-embedded-active)
4476         (calc-standalone-flag, var-EvalRules, math-expr-function-mapping)
4477         (math-expr-variable-mapping, calc-mode-map, calc-digit-map)
4478         (calc-dispatch-map, calc-do-dispatch, calc-read-key-sequence)
4479         (calc-create-buffer, calc-quit): Add docstrings.
4481 2008-03-23  Juanma Barranquero  <lekktu@gmail.com>
4483         * makefile.w32-in (WINS_ALMOST): Add org.
4485 2008-03-23  Dan Nicolaescu  <dann@ics.uci.edu>
4487         * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
4488         New functions to implement vc-status support.
4490 2008-03-22  Dan Nicolaescu  <dann@ics.uci.edu>
4492         * vc.el (vc-status-prepare-status-buffer): New function.
4493         (vc-status): Use it.
4495         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add ... where
4496         appropriate.
4498 2008-03-22  Alexandre Julliard  <julliard@winehq.org>
4500         * vc-git.el (vc-git--empty-db-p)
4501         (vc-git-after-dir-status-stage1-empty-db): New functions.
4502         (vc-git-dir-status, vc-git-after-dir-status-stage1, vc-git-state):
4503         Add support for empty repositories.
4505 2008-03-22  Dan Nicolaescu  <dann@ics.uci.edu>
4507         * vc-git.el (vc-git-annotate-extract-revision-at-line):
4508         Allow "^" in a version name.
4510         * vc-mtn.el (vc-mtn-state): Support the added state.
4512 2008-03-22  Carsten Dominik  <dominik@science.uva.nl>
4514         * org: New directory for Org-mode.
4516         * org/org-export-latex.el: Moved from lisp/texmodes.
4518         * org/org-irc.el: Moved from lisp/texmodes.
4520         * org/org-mac-message.el: Moved from lisp/texmodes.
4522         * org/org-mouse.el: Moved from lisp/texmodes.
4524         * org/org-publish.el: Moved from lisp/texmodes.
4526 2008-03-21  Juri Linkov  <juri@jurta.org>
4528         * comint.el (comint-dynamic-simple-complete):
4529         Use variable `stub' for the second arg `common-substring'
4530         of `comint-dynamic-list-completions'.
4531         (comint-dynamic-list-filename-completions):
4532         Use variable `filenondir' for the second arg `common-substring'
4533         of `comint-dynamic-list-completions'.
4534         (comint-dynamic-list-completions): Add new optional arg
4535         `common-substring'.  Add `common-substring' as the second arg of
4536         the call to `display-completion-list'.  Doc fix.
4538         * comint.el (comint-dynamic-complete-as-filename)
4539         (comint-dynamic-list-filename-completions)
4540         (comint-dynamic-simple-complete): Use `minibuffer-message'
4541         to display message "No completions of %s" when a command
4542         is called in the minibuffer.
4543         (comint-dynamic-simple-complete): Don't display other
4544         completion messages when a command is called in the minibuffer.
4545         (comint-dynamic-list-completions): Use `minibuffer-message'
4546         to display message " [Type space to flush ...]" when a command
4547         is called in the minibuffer.
4549         * shell.el (shell-dynamic-complete-command)
4550         (shell-dynamic-complete-environment-variable): Don't display
4551         completion messages when command is called in the minibuffer.
4553         * emacs-lisp/lisp.el (lisp-complete-symbol):
4554         Use `minibuffer-message' to display message "No completions of %s"
4555         when this command is called in the minibuffer.
4557         * bindings.el (standard-mode-line-modes): Put special help-echo
4558         tooltip on recursive edit %[ %] mode-line constructs.
4560         * dabbrev.el (debug-ignored-errors): Remove $ from the end of
4561         "^No dynamic expansion for .* found$" to allow error messages like
4562         "No dynamic expansion for \"%s\" found in this-buffer".
4564 2008-03-21  Michael Albinus  <michael.albinus@gmx.de>
4566         * net/tramp.el (tramp-methods): Fix tramp-copy-args of "pscp" and
4567         "psftp".
4569 2008-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4571         * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
4572         * vc.el (vc-default-dired-state-info): Use just "modified".
4573         * vc-cvs.el (vc-cvs-state-heuristic): Turn rev 0 into `added'.
4574         (vc-cvs-mode-line-string): Make use of the better default.
4575         (vc-cvs-parse-entry): Use the new `added'.
4576         (vc-cvs-dired-state-info): Remove.
4577         * vc-svn.el (vc-svn-dired-state-info): Remove.
4578         * vc-hg.el (vc-hg-dired-state-info): Remove.
4579         * vc-git.el (vc-git-dired-state-info): Remove.
4581 2008-03-21  Dan Nicolaescu  <dann@ics.uci.edu>
4583         * vc-git.el (vc-git-status-result): New variable.
4584         (vc-git-dir-status): Split out ...
4585         (vc-git-after-dir-status-stage1, vc-git-after-dir-status-stage2):
4586         ... these new functions and work asynchronously.
4588 2008-03-21  Alexandre Julliard  <julliard@winehq.org>
4590         * vc-git.el (vc-git-after-dir-status): Remove.
4591         (vc-git-dired-state-info): Reimplement.
4593 2008-03-21  Dan Nicolaescu  <dann@ics.uci.edu>
4595         * replace.el (occur-mode-map): Add :help.
4597         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entry
4598         for disassemble.
4600         * vc.el (vc-status-mark-buffer-changed): Better deal with files in
4601         the 'added state.
4602         (vc-status-remove-up-to-date): New function.
4603         (vc-status-mode-map, vc-status-menu-map): Bind it.
4604         (vc-status-printer): Use a different face up-to-date files.
4605         (vc-resynch-buffer): Update the vc-status buffer if it exists.
4606         (Todo): Remove solved entries.
4608         * vc-hg.el (vc-hg-state):
4609         * vc-git.el (vc-git-state):
4610         * vc-cvs.el (vc-cvs-parse-status):
4611         * vc-bzr.el (vc-bzr-state): Return 'added when the file is in that
4612         state.
4614 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4616         * progmodes/compile.el (compile):
4617         * progmodes/grep.el (grep, grep-find): Use read-shell-command.
4619         * simple.el (minibuffer-local-shell-command-map): New var.
4620         (minibuffer-complete-shell-command, read-shell-command): New funs.
4621         (shell-command, shell-command-on-region): Use them.
4623 2008-03-20  Dan Nicolaescu  <dann@ics.uci.edu>
4625         * vc.el (vc-status-mark-buffer-changed): New function to implement
4626         updating of the *vc-status* buffer when a buffer is saved.
4627         (vc-status-mode): Use it for after-change-hook.
4628         (vc-add-to-vc-status-buffer): Rename to ...
4629         (vc-status-add-entry): ... this.
4630         (Todo): Add new entry.
4632 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4634         * sort.el (sort-reorder-buffer): Preserve the buffer's multibyteness.
4636 2008-03-20  Juanma Barranquero  <lekktu@gmail.com>
4638         * icomplete.el (icomplete-prospects-length, icomplete-max-delay-chars)
4639         (icomplete-show-key-bindings, icomplete-minibuffer-setup-hook):
4640         Remove spurious * from defcustom docstrings.
4641         (icomplete-compute-delay): Fix docstring and remove spurious *.
4642         (icomplete-delay-completions-threshold): Fix typo in docstring and
4643         remove spurious *.
4644         (icomplete-completions): While collecting the list of prospective
4645         candidates, don't overshoot `icomplete-prospects-length'.
4647 2008-03-20  Dan Nicolaescu  <dann@ics.uci.edu>
4649         * textmodes/refbib.el:
4650         * textmodes/reftex.el:
4651         * textmodes/reftex-global.el:
4652         * textmodes/reftex-vars.el:
4653         * textmodes/reftex-toc.el: Don't use eval-and-compile for byte
4654         compiler pacifying defvars.
4655         (reftex-toc-mode): Only make zmacs-regions local on XEmacs.
4656         * textmodes/reftex-index.el (zmacs-regions): Remove pacifier,
4657         not needed.
4659 2008-03-20  Wilson Snyder  <wsnyder@wsnyder.org>
4661         * progmodes/verilog-mode.el (verilog-easy-menu-filter): New function.
4662         (verilog-stmt-menu, verilog-menu): Add :help and filter it.
4663         (verilog-customize, verilog-font-customize)
4664         (electric-verilog-backward-sexp, electric-verilog-forward-sexp)
4665         (verilog-mode): Update documentation strings to match tool tips.
4666         (verilog-auto-search-do, verilog-auto-re-search-do)
4667         (verilog-skip-forward-comment-or-string): Fix verilog-auto
4668         expansion when a .* appears inside a string.
4669         (verilog-re-search-forward, verilog-re-search-backward):
4670         Add comment to recall how this works.
4671         (verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including genvars.
4673 2008-03-20  Glenn Morris  <rgm@gnu.org>
4675         * calendar/calendar.el (calendar-other-dates): New function.
4676         (calendar-print-other-dates): Use calendar-other-dates.
4677         * calendar/cal-menu.el (calendar-other-dates): Declare it, and removes
4678         the declarations it replaces.
4679         (calendar-mouse-print-dates): Use calendar-other-dates.
4681         * calendar/cal-bahai.el (calendar-bahai-leap-year-p)
4682         (calendar-bahai-leap-base, calendar-bahai-from-absolute): Doc fixes.
4683         (calendar-absolute-from-bahai): Fix the leap-year case.
4684         (calendar-bahai-from-absolute): Re-use the Gregorian month.
4685         (calendar-bahai-date-string, calendar-bahai-print-date):
4686         Handle pre-Bahai dates.
4688         * calendar/cal-china.el (chinese-calendar-celestial-stem)
4689         (chinese-calendar-terrestrial-branch): Make defcustoms.
4691         * calendar/cal-menu.el (calendar-mouse-holidays): Re-use the title.
4692         (calendar-mouse-view-diary-entries): Use or.
4693         (calendar-mouse-chinese-date): Remove unused command.
4694         (cal-menu-load-hook): Mark as obsolete.
4696         * calendar/solar.el (calendar-location-name, calendar-latitude)
4697         (calendar-longitude, solar-arctan, sunrise-sunset)
4698         (solar-mean-equinoxes/solstices): Use the appropriate equality test.
4700 2008-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
4702         * calc/calc.el: Remove outdated comments.
4703         (defcalcmodevar, calc-mode-var-list-restore-default-values)
4704         (calc-mode-var-list-restore-saved-values, calc-autorange-units):
4705         Add docstrings.
4707 2008-03-19  Jason Rumney  <jasonr@gnu.org>
4709         * w32-fns.el (x-alternatives-map): Add S-tab mapping.
4711 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
4713         * net/tls.el (open-tls-stream): Reindent.
4715 2008-03-19  Michael Albinus  <michael.albinus@gmx.de>
4717         * net/tramp.el (tramp-let-maybe): Removed.
4718         (tramp-drop-volume-letter): Don't use `replace-regexp-in-string'.
4719         It does not exist under XEmacs.
4720         (tramp-handle-file-truename, tramp-handle-expand-file-name)
4721         (tramp-completion-file-name-handler): Let-bind
4722         `directory-sep-char'.
4724         * net/tramp-fish.el (tramp-fish-handle-expand-file-name): Let-bind
4725         `directory-sep-char'.
4727 2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4729         * help-fns.el (describe-function-1): Don't signal "missing arglist"
4730         for autoloaded keymaps.
4732         * progmodes/verilog-mode.el (verilog-syntax-ppss): New function.
4733         (electric-verilog-terminate-line, verilog-in-struct-region-p)
4734         (verilog-backward-ws&directives, verilog-forward-ws&directives)
4735         (verilog-in-comment-p, verilog-in-star-comment-p)
4736         (verilog-in-slash-comment-p, verilog-skip-backward-comments)
4737         (verilog-parenthesis-depth, verilog-skip-backward-comment-or-string)
4738         (verilog-skip-forward-comment-or-string, verilog-in-paren)
4739         (verilog-skip-forward-comment-p): Use it.
4741 2008-03-19  Juanma Barranquero  <lekktu@gmail.com>
4743         * textmodes/org.el (org-link-store, org-link-follow, org-latex)
4744         (org-remember-templates, org-time-stamp-rounding-minutes)
4745         (org-back-over-empty-lines, org-find-base-buffer-visiting)
4746         (org-columns-new): Fix typos in docstrings.
4748 2008-03-19  Glenn Morris  <rgm@gnu.org>
4750         * net/tramp.el (tramp-drop-volume-letter): Evaluate when compiling.
4751         (tramp-handle-shell-command): Use condition-case rather than
4752         ignore-errors.
4754 2008-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
4756         * diff-mode.el (diff-header): Make the color louder.
4757         (diff-refine-change): Tone the color down.
4759 2008-03-19  Juanma Barranquero  <lekktu@gmail.com>
4761         * descr-text.el (describe-char): When `describe-char-unidata-list'
4762         is set to show all properties, list them in the right order.
4764 2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4766         * international/mule.el (load-with-code-conversion): Avoid setting
4767         default-enable-multibyte-characters.
4769 2008-03-19  Gustav Hållberg  <gustav@virtutech.com>  (tiny change)
4771         * vc.el (vc-annotate-background): Fix custom type.
4773 2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4775         * descr-text.el (describe-char-unidata-list): Allow specifying
4776         just all properties.
4777         (describe-char): Handle that new value.
4779         * emulation/cua-base.el (cua-paste): Signal an error in read-only buf.
4781 2008-03-18  Tassilo Horn  <tassilo@member.fsf.org>
4783         * doc-view.el (doc-view-initiate-display): Use doc-view-doc-type
4784         instead of file name extension to make docs with uncommon
4785         extensions work.
4787 2008-03-18  Tassilo Horn  <tassilo@member.fsf.org>
4789         * doc-view.el (require): Require cl at compile time because
4790         `assert' needs it.
4792 2008-03-18  Glenn Morris  <rgm@gnu.org>
4794         * calendar/calendar.el (initial-calendar-window-hook)
4795         (today-visible-calendar-hook): Doc fixes.
4797 2008-03-17  Michael Albinus  <michael.albinus@gmx.de>
4799         * net/tramp.el (tramp-root-regexp): Simplify.
4800         (tramp-completion-file-name-regexp-separate): Don't insist on
4801         leading "[".  This prevents method or user or host completion.
4802         (tramp-let-maybe): Autoload it.
4803         (tramp-drop-volume-letter): Don't autoload.  When not on W32, it
4804         is an alias for `identity'.
4805         (tramp-handle-write-region): Protect `last-coding-system-used'
4806         over the trailing statements.
4807         (tramp-completion-file-name-handler-post-function): Remove.
4808         (tramp-completion-file-name-handler): Let-bind `directory-sep-char'
4809         instead of calling `tramp-drop-volume-letter'.
4811         * net/tramp.el:
4812         * net/tramp-uu.el:
4813         * net/trampver.el: Move coding cookie at the end.
4815 2008-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4817         * net/tramp.el (tramp-completion-mode-p): Don't use char-equal for
4818         elements which may be something else than characters.
4820 2008-03-17  Dan Nicolaescu  <dann@ics.uci.edu>
4822         * vc-bzr.el (vc-bzr-dir-status, vc-bzr-after-dir-status):
4823         New functions to implement vc-status support.
4825         * vc.el (vc-default-extra-status-menu)
4826         (vc-add-to-vc-status-buffer): New functions.
4828         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
4829         for eldoc and ielm.
4831 2008-03-17  Glenn Morris  <rgm@gnu.org>
4833         * calendar/cal-x.el (diary-frame-parameters)
4834         (calendar-frame-parameters, calendar-and-diary-frame-parameters):
4835         Fix custom type; add options.
4836         (calendar-frame, diary-frame): Doc fixes.
4837         (calendar-dedicate-diary, calendar-frame-1): Extract common code into
4838         new functions.
4839         (calendar-one-frame-setup, calendar-two-frame-setup): Doc fixes.
4840         Use calendar-frame-1 and calendar-dedicate-diary.
4841         (calendar-one-frame-setup): Also handle only-one-frame case.
4842         (calendar-only-one-frame-setup): Doc fix.  Just call
4843         calendar-one-frame-setup.
4845         * calendar/diary-lib.el: Re-order some definitions before their use.
4846         (nongregorian-diary-listing-hook, nongregorian-diary-marking-hook)
4847         (diary-list-entries): Doc fixes.
4848         (make-fancy-diary-display): Remove function.
4850         * calendar/calendar.el (calendar-today-marker)
4851         (initial-calendar-window-hook, today-visible-calendar-hook)
4852         (today-invisible-calendar-hook, diary-file, calendar-basic-setup):
4853         (calendar-star-date, calendar-mark-today): Doc fixes.
4854         (today-visible-calendar-hook): Add options.
4855         (calendar-in-read-only-buffer): New macro.
4856         (calendar-basic-setup): Adapt for change in calendar-read-date.
4857         Place holiday let inside if.
4858         (calendar-day-name-array, calendar-month-name-array): Make defcustoms.
4859         (calendar-read-date): Set day to 1 rather than nil in the NODAY case.
4860         (calendar-print-other-dates): Use one let rather than many.
4862         * calendar/calendar.el (calendar-in-read-only-buffer): New macro.
4863         (calendar-print-other-dates):
4864         * calendar/cal-hebrew.el (list-yahrzeit-dates):
4865         * calendar/diary-lib.el (simple-diary-display, fancy-diary-display):
4866         * calendar/holidays.el (calendar-list-holidays, list-holidays)
4867         (calendar-cursor-holidays):
4868         * calendar/lunar.el (calendar-phases-of-moon): Use
4869         calendar-in-read-only-buffer to replace previous code and disable undo.
4871 2008-03-16  Juri Linkov  <juri@jurta.org>
4873         * isearch.el (isearch-edit-string): Use search-ring-yank-pointer
4874         and regexp-search-ring-yank-pointer for the HISTPOS argument of
4875         read-from-minibuffer to provide the correct initial minibuffer
4876         history position in isearch-edit-string when it is called from
4877         isearch-ring-adjust.
4879         * menu-bar.el (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
4880         to check if the current buffer is the minibuffer, and in this case
4881         call abort-recursive-edit to kill the minibuffer.  Doc fix.
4882         (kill-this-buffer-enabled-p): Allow this function to return non-nil
4883         when the current buffer is the minibuffer.
4885         * simple.el (goto-line): Leave mark at previous position.  Doc fix.
4887 2008-03-16  Tassilo Horn  <tassilo@member.fsf.org>
4889         * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
4890         Use non-nil PARENTS attribute of make-directory instead of
4891         explicitly checking existence the current cache directory.
4893 2008-03-16  Daiki Ueno  <ueno@unixuser.org>
4895         * epa-file.el (epa-file-select-keys): Fix bug with C-x C-s after
4896         M-x epa-file-select-keys.
4898 2008-03-16  Kenichi Handa  <handa@m17n.org>
4900         * international/mule.el (auto-coding-alist):
4901         Use no-conversion-multibyte for archive files.
4903 2008-03-16  Glenn Morris  <rgm@gnu.org>
4905         * calendar/diary-lib.el (calendar-mark-complex, calendar-mark-1):
4906         New functions.
4907         * calendar/cal-bahai.el (calendar-mark-1): Autoload it.
4908         (calendar-bahai-mark-date-pattern): Add optional argument `color'.
4909         Use calendar-mark-1.
4910         * calendar/cal-hebrew.el (calendar-mark-complex): Autoload it.
4911         (mark-hebrew-calendar-date-pattern): Add optional argument `color'.
4912         Use calendar-mark-complex.
4913         * calendar/cal-islam.el (calendar-mark-1): Autoload it.
4914         (mark-islamic-calendar-date-pattern): Add optional argument `color'.
4915         Use calendar-mark-1.
4917         * calendar/calendar.el (calendar-mod): Remove.
4918         * calendar/cal-china.el (calendar-chinese-from-absolute)
4919         (calendar-chinese-date-string): Expand calendar-mod calls.
4920         * calendar/cal-mayan.el (calendar-mayan-tzolkin-from-absolute):
4921         Expand calendar-mod calls.
4923         * calendar/cal-bahai.el (calendar-bahai-date-string): Use a single let.
4924         (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
4925         (diary-bahai-insert-yearly-entry): Use let rather than let*.
4926         Move obsolete aliases after the functions that replaced them.
4928         * calendar/cal-hebrew.el (calendar-absolute-from-hebrew)
4929         (hebrew-calendar-yahrzeit, insert-hebrew-diary-entry)
4930         (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry):
4931         Use let rather than let*.
4932         (calendar-hebrew-prompt-for-date): New function.
4933         (calendar-goto-hebrew-date): Use calendar-hebrew-prompt-for-date.
4934         (holiday-tisha-b-av-etc): Use unless, let.
4936         * calendar/cal-islam.el (calendar-islamic-prompt-for-date): New func.
4937         (calendar-goto-islamic-date): Use calendar-islamic-prompt-for-date.
4939         * calendar/cal-mayan.el (calendar-mayan-haab-to-string): Simplify.
4941         * calendar/calendar.el (calendar-for-loop): Add indent spec.
4943         * calendar/diary-lib.el (diary-remind-message, mark-sexp-diary-entries)
4944         (list-sexp-diary-entries, diary-font-lock-sexps): Use format rather
4945         than concat.
4946         (diary): Remove un-needed let.
4947         (view-other-diary-entries): Rename argument.
4948         (diary-list-entries-2): New function.
4949         (diary-list-entries-1, diary-list-entries): Use diary-list-entries-2.
4950         (print-diary-entries): Use unless.
4951         (diary-mark-entries-1): Change argument order, make all but
4952         markfunc optional.  Handle the standard (Gregorian) case.
4953         Use match-string-no-properties.  Handle marks.
4954         (mark-diary-entries): Use diary-mark-entries-1.
4955         (diary-font-lock-keywords-1): New macro.
4956         (diary-font-lock-keywords): Use diary-font-lock-keywords-1.
4958 2008-03-16  Ulf Jasper  <ulf.jasper@web.de>
4960         * icalendar.el (icalendar-version): Increase to 0.18.
4961         (icalendar-export-hidden-diary-entries): New variable.
4962         (icalendar-export-region): Use icalendar-export-hidden-diary-entries.
4963         In case of error, insert full error-val.
4964         (icalendar-first-weekday-of-year): Remove `offset' argument.  Doc fix.
4965         Use calendar-day-of-week.  Return the day number.
4966         (icalendar--convert-weekly-to-ical): Use funcall rather than apply.
4968 2008-03-16  Craig Markwardt  <Craig.Markwardt@nasa.gov>
4970         * icalendar.el (icalendar-recurring-start-year): New variable.
4971         (icalendar--diarytime-to-isotime): Fix treatment of 12:00pm - 12:59pm.
4972         (icalendar-export-region): Ignore hidden diary entries.
4973         (icalendar--convert-ordinary-to-ical): Fix case where event
4974         spans across midnight boundary.
4975         (icalendar-first-weekday-of-year): New function.
4976         (icalendar--convert-weekly-to-ical): Allow user-selectable start
4977         year for recurring events (Mozilla calendars do not propagate
4978         recurring events forever, so year 2000 start date was not working).
4979         (icalendar--convert-yearly-to-ical): Remove extra spaces in
4980         formatting of BYMONTH and BYMONTHDAY (not allowed by ical spec).
4982 2008-03-15  Michael Albinus  <michael.albinus@gmx.de>
4984         * net/tramp.el (tramp-root-regexp): New defconst.
4985         (tramp-completion-file-name-regexp-unified)
4986         (tramp-completion-file-name-regexp-separate)
4987         (tramp-completion-file-name-regexp-url): Use it.
4988         (tramp-do-copy-or-rename-file-via-buffer):
4989         Set `enable-multibyte-characters' to nil.  Set `jka-compr-inhibit' to
4990         t for `insert-file-contents-literally'.
4991         (tramp-drop-volume-letter): Rewrite, using `tramp-root-regexp'.
4992         Autoload it.
4993         (tramp-completion-file-name-handler-post-function): New defconst.
4994         (tramp-completion-file-name-handler): Use it.
4995         (tramp-maybe-open-connection): Update calls to
4996         `tramp-flush-connection-property' for removed 2nd argument.
4998 2008-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5000         * vc-bzr.el (vc-bzr-diff): Use a faster invocation when possible.
5001         (vc-bzr-complete-with-prefix, vc-bzr-revision-completion-table):
5002         New functions.
5004 2008-03-15  Glenn Morris  <rgm@gnu.org>
5006         * calendar/diary-lib.el (diary-list-entries-1, diary-mark-entries-1):
5007         New functions.
5008         * calendar/cal-bahai.el (number, original-date, add-to-diary-list)
5009         (diary-name-pattern, mark-calendar-days-named): Remove declarations.
5010         (diary-list-entries-1, diary-mark-entries-1): Autoload.
5011         (diary-bahai-list-entries): Use diary-list-entries-1.
5012         (diary-bahai-mark-entries): Doc fix.  Use diary-mark-entries-1.
5013         * calendar/cal-hebrew.el (number, original-date, add-to-diary-list)
5014         (diary-name-pattern, mark-calendar-days-named): Remove declarations.
5015         (diary-list-entries-1, diary-mark-entries-1): Autoload.
5016         (list-hebrew-diary-entries): Use diary-list-entries-1.
5017         (mark-hebrew-diary-entries): Doc fix.  Use diary-mark-entries-1.
5018         * calendar/cal-islam.el (number, original-date, add-to-diary-list)
5019         (diary-name-pattern, mark-calendar-days-named): Remove declarations.
5020         (diary-list-entries-1, diary-mark-entries-1): Autoload.
5021         (list-islamic-diary-entries): Use diary-list-entries-1.
5022         (mark-islamic-diary-entries): Doc fix.  Use diary-mark-entries-1.
5024         * calendar/appt.el (appt-check, appt-delete, appt-make-list): Use caar.
5026         * calendar/cal-bahai.el (calendar-bahai-epoch): Doc fix.
5028         * calendar/cal-china.el (number-chinese-months)
5029         (calendar-chinese-from-absolute): Use nth, caar.
5031         * calendar/cal-coptic.el (coptic-calendar-epoch): Doc fix.
5033         * calendar/cal-french.el (french-calendar-accents): Doc fix.
5035         * calendar/cal-hebrew.el (calendar-hebrew-month-name-array-common-year)
5036         (calendar-hebrew-month-name-array-leap-year)
5037         (hebrew-calendar-parashiot-names): Make constants.
5038         (diary-parasha): Move definition after constants it uses.
5040         * calendar/cal-html.el (cal-html-insert-link-yearpage)
5041         (cal-html-htmlify-list): Doc fix.
5042         (cal-html-htmlify-entry): Use nth.
5044         * calendar/cal-islam.el (calendar-islamic-month-name-array)
5045         (calendar-islamic-epoch): Make constants.
5046         (calendar-islamic-epoch): Doc fix.
5048         * calendar/cal-menu.el (cal-menu-goto-menu): Use "Go To".
5050         * calendar/cal-tex.el (cal-tex-hook, cal-tex-insert-preamble)
5051         (cal-tex-month-name): Doc fix.
5052         (cal-tex-last-blank-p): Use zerop.
5054         * calendar/calendar.el (european-calendar-style, calendar-for-loop)
5055         (calendar-sum, calendar-insert-indented, mouse-calendar-other-month)
5056         (calendar-cursor-to-date): Doc fix.
5057         (hebrew-holidays-1, hebrew-holidays-4): Simplify.
5058         (extract-calendar-day, extract-calendar-year): Use cadr, nth.
5059         (calendar-day-number): Use when.
5060         (generate-calendar-month): Use dotimes.
5061         (exit-calendar, calendar-print-other-dates): Use let rather than let*.
5062         (calendar-set-mark): Reverse conditional.
5063         (calendar-make-alist): Move definition before use.
5065         * calendar/diary-lib.el (diary-face-attrs)
5066         (diary-glob-file-regexp-prefix, diary-selective-display)
5067         (number-of-diary-entries, diary-list-entries, diary-goto-entry):
5068         (list-sexp-diary-entries, diary-date, diary-block, diary-float)
5069         (diary-anniversary, diary-cyclic)
5070         (diary-fancy-font-lock-fontify-region-function): Doc fixes.
5071         (diary-header-line-format): Change wording.
5072         (diary-list-entries): Set `date-start' in let.
5073         (include-other-diary-files, mark-included-diary-files): Use format.
5074         (simple-diary-display, fancy-diary-display): Use cadr, unless.
5075         (mark-diary-entries): Use 1+.
5076         (mark-sexp-diary-entries, list-sexp-diary-entries): Use when.
5077         (mark-calendar-month): Use dotimes.
5079         * calendar/holidays.el (displayed-month, displayed-year):
5080         Move declarations where needed.
5081         (calendar-list-holidays): Doc fix.
5083         * calendar/parse-time.el (parse-time-string): Simplify.
5085         * calendar/solar.el (solar-n-hemi-seasons, solar-s-hemi-seasons):
5086         Make constants.
5087         (solar-sunrise-sunset): Rename some local variables for clarity.
5088         (sunrise-sunset): Use zerop.
5089         (solar-mean-equinoxes/solstices): Doc fix.
5091         * calendar/timeclock.el (timeclock-time-to-seconds, timeclock-log-data):
5092         Use nth.
5093         (timeclock-completing-read, timeclock-generate-report): Use zerop.
5094         (timeclock-mean, timeclock-generate-report): Use dolist.
5096         * calendar/todo-mode.el (todo-add-category): Simplify.
5097         (todo-more-important-p, todo-delete-item, todo-file-item):
5098         Use unless, when.
5099         (todo-top-priorities): Use zerop.
5101 2008-03-14  Nick Roberts  <nickrob@snap.net.nz>
5103         * buff-menu.el (list-buffers-noselect): Display buffer name in
5104         tooltip instead of mouse binding when it doesn't fit in the list.
5106 2008-03-14  Dan Nicolaescu  <dann@ics.uci.edu>
5108         * faces.el (xw-defined-colors):
5109         * simple.el (widget-convert, shell-mode): Declare as functions
5110         instead of autoloading.
5112         * abbrev.el:
5113         * button.el:
5114         * cus-face.el:
5115         * ediff-hook.el:
5116         * emacs-lisp/backquote.el:
5117         * emacs-lisp/timer.el:
5118         * facemenu.el:
5119         * faces.el:
5120         * menu-bar.el:
5121         * simple.el:
5122         * subr.el:
5123         * textmodes/fill.el:
5124         * textmodes/paragraphs.el: Remove autoloads, redundant when the
5125         files are preloaded.
5127 2008-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5129         * desktop.el (desktop-create-buffer): Don't catch errors if
5130         debug-on-error is set.
5132 2008-03-14  Eli Zaretskii  <eliz@gnu.org>
5134         * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
5135         ($(lisp)/calendar/diary-loaddefs.el)
5136         ($(lisp)/calendar/hol-loaddefs.el): New targets.
5137         (LOADDEFS): New macro.
5138         (autoloads): Depend on $(LOADDEFS).
5140 2008-03-14  Dan Nicolaescu  <dann@ics.uci.edu>
5142         * font-lock.el (featurep): Remove test, not useful anymore.
5143         (facemenu-keymap): Move key binding ...
5144         * facemenu.el (facemenu-keymap): ... here.
5146         * vc-bzr.el (vc-bzr-print-log): Insert a file marker.  Run the log
5147         for each file in the list.
5148         (vc-bzr-log-view-mode): Recognize the file marker.
5150         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
5151         for checkdoc and profiling.
5153 2008-03-14  Bastien Guerry  <bzg@altern.org>
5155         * textmodes/flyspell.el (nxml-mode): Add the right
5156         `flyspell-mode-predicate'.
5158         * wid-edit.el (link): Use 'mouse-face for :follow-link.
5160 2008-03-14  Glenn Morris  <rgm@gnu.org>
5162         * calendar/solar.el: Reorder so that functions are defined before use.
5163         (displayed-month, displayed-year): Move declarations where needed.
5164         (solar-get-number): Move definition before use.  Use unless.
5165         (solar-equatorial-coordinates): Simplify.
5166         (solar-sunrise-and-sunset): Use let rather than let*.
5167         (solar-longitude, solar-equinoxes-solstices): Use cadr, nth.
5169         * startup.el (command-line-1): Rename -internal-script back to
5170         -scriptload (reverts previous change).
5172         * calendar/cal-bahai.el (calendar-bahai-month-name-array)
5173         (calendar-bahai-leap-base): Add doc strings.
5174         (calendar-bahai-prompt-for-date, calendar-bahai-mark-date-pattern):
5175         Move definition before use.
5176         (calendar-bahai-goto-date, diary-bahai-list-entries): Doc fix.
5177         (diary-bahai-list-entries, diary-bahai-mark-entries): Move some constant
5178         variables outside the loop.  Use dolist.
5179         (holiday-bahai, calendar-bahai-mark-date-pattern): Use unless.
5181         * calendar/cal-china.el: Re-order so that functions are defined before
5182         use.
5183         (displayed-month, displayed-year): Move declarations where needed.
5184         (chinese-calendar-time-zone, calendar-goto-chinese-date): Doc fix.
5185         (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
5186         Add doc strings.
5187         (chinese-year-cache): Recenter on 2010.  Doc fix.
5188         (chinese-year, number-chinese-months, calendar-absolute-from-chinese):
5189         Doc fix.  Simplify.
5190         (chinese-year-cache-init): New function.
5191         (compute-chinese-year, holiday-chinese-new-year)
5192         (calendar-chinese-date-string, calendar-goto-chinese-date)
5193         (make-chinese-month-assoc-list): Use cadr, nth.
5194         (chinese-months): Remove un-needed let.
5196         * calendar/cal-coptic.el (coptic-calendar-month-name-array):
5197         (ethiopic-calendar-month-name-array, ethiopic-name): Add doc strings.
5198         (coptic-prompt-for-date): Move definition before use.
5200         * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
5201         (calendar-dst-find-data, calendar-daylight-time-offset)
5202         (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
5203         (calendar-daylight-savings-starts-time)
5204         (calendar-daylight-savings-ends-time): Use cadr, nth.
5206         * calendar/cal-french.el (french-calendar-epoch)
5207         (calendar-goto-french-date): Doc fix.
5208         (french-calendar-month-name-array)
5209         (french-calendar-multibyte-month-name-array)
5210         (french-calendar-day-name-array, french-calendar-special-days-array):
5211         Add doc strings.
5213         * calendar/cal-hebrew.el (displayed-month, displayed-year)
5214         (original-date): Move declarations where needed.
5215         (calendar-goto-hebrew-date, list-hebrew-diary-entries, diary-yahrzeit):
5216         Doc fix.
5217         (list-hebrew-diary-entries, mark-hebrew-diary-entries): Move some
5218         constant variables outside the loop.  Use dolist.
5220         * calendar/cal-islam.el (displayed-month, displayed-year)
5221         (original-date): Move declarations where needed.
5222         (islamic-calendar-day-number): Remove unused local variable `day'.
5223         (calendar-goto-islamic-date): Doc fix.
5224         (holiday-islamic): Use unless.
5225         (list-islamic-diary-entries, mark-islamic-diary-entries): Move some
5226         constant variables outside the loop.  Use dolist.
5227         (mark-islamic-calendar-date-pattern): Move definition before use.
5228         Use unless.
5229         (mark-islamic-diary-entries): Doc fix.
5230         (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
5231         (insert-yearly-islamic-diary-entry): Use let rather than let*.
5233         * calendar/cal-julian.el (calendar-absolute-from-julian):
5234         Move definition before use.  Remove un-needed local `day'.
5235         (calendar-goto-julian-date, calendar-goto-astro-day-number): Doc fix.
5237         * calendar/cal-mayan.el (calendar-mayan-haab-month-name-array)
5238         (calendar-mayan-tzolkin-names-array): Add doc strings.
5239         (calendar-mayan-long-count-from-absolute): Use a single let.
5240         (calendar-string-to-mayan-long-count): Simplify.
5241         (calendar-next-haab-date, calendar-previous-haab-date)
5242         (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
5243         (calendar-previous-calendar-round-date)
5244         (calendar-goto-mayan-long-count-date, calendar-mayan-date-string):
5245         Doc fix.
5246         (calendar-mayan-tzolkin-haab-on-or-before): Use zerop.
5247         (calendar-mayan-date-string, calendar-print-mayan-date)
5248         (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
5249         (calendar-mayan-long-count-common-era): Move definitions before use.
5251         * calendar/cal-menu.el (displayed-year): Move declaration where needed.
5252         (calendar-event-to-date, cal-tex-mouse-week, cal-tex-mouse-week-iso):
5253         Doc fix.
5254         (calendar-mouse-goto-date): Move definition before use.
5256         * calendar/cal-move.el (calendar-cursor-to-nearest-date): Use or, when.
5257         Move definition before use.
5258         (calendar-cursor-to-visible-date): Move definition before use.
5259         (calendar-scroll-left): Use unless and zerop.  Combine lets into one,
5260         and place inside the conditional.
5261         (calendar-forward-day): Simplify.
5262         (calendar-end-of-month): Use unless.
5263         (calendar-goto-day-of-year): Doc fix.
5264         Relocate obsolete aliases after their replacements.
5266         * calendar/cal-persia.el (calendar-goto-persian-date): Doc fix.
5268         * calendar/diary-lib.el (mark-diary-entries): Move some constant
5269         variables outside the diary-date-forms loop.
5271         * calendar/calendar.el (diary-file): Doc fix.
5272         (calendar-buffer-list): Return buffers rather than strings (fixes
5273         previous change).
5274         (hebrew-holidays-4): Fix typo.
5276         * calendar/holidays.el (displayed-month, displayed-year):
5277         Move declarations where needed.
5278         (calendar-holiday-list, calendar-list-holidays)
5279         (holiday-filter-visible-calendar): Move definitions before use.
5280         (list-holidays): Use cadr.
5281         Relocate obsolete aliases after their replacements.
5283         * calendar/lunar.el (date, displayed-month, displayed-year):
5284         Move declarations where needed.
5285         (lunar-phase-list): Move definition after functions it uses.
5286         (calendar-phases-of-moon, diary-phases-of-moon)
5287         (lunar-new-moon-on-or-after): Use cadr, nth.
5288         (lunar-new-moon-on-or-after): Doc fix.
5290         * textmodes/org-irc.el (top-level): CL not required when compiling.
5291         (org-irc-visit-erc): Replace runtime CL functions.
5293         * textmodes/org-publish.el (declare-function): Add compatibility stub.
5294         (org-publish-delete-dups): Declare as function.
5296 2008-03-14  Dan Nicolaescu  <dann@ics.uci.edu>
5298         * vc-bzr.el (vc-bzr-log-view-mode): "." can be part of a revno.
5299         (vc-bzr-show-log-entry): Make regexp match more cases.
5300         (vc-diff-switches-list): Remove autoload, not needed.
5302 2008-03-14  Juri Linkov  <juri@jurta.org>
5304         * isearch.el (isearch-edit-string): Remove one call to
5305         `isearch-push-state' not to push an inconsistent state,
5306         but keep another correct call to `isearch-push-state'.
5307         (isearch-ring-adjust): Call `isearch-push-state' only when
5308         `search-ring-update' is non-nil since `isearch-edit-string'
5309         already pushes its state.
5310         (isearch-message): Improve matching the failed part by checking
5311         if the original message starts with the last successful message.
5313         * dired.el (dired-warn-writable): Rename to `dired-perm-write'.
5314         (dired-perm-write): Rename from `dired-warn-writable'.
5315         Change parent face from `font-lock-warning-face' to
5316         `font-lock-comment-delimiter-face'.
5317         (dired-warn-writable-face): Rename to `dired-perm-write-face'.
5318         (dired-perm-write-face): Rename from `dired-warn-writable-face'.
5319         (dired-font-lock-keywords): Replace `dired-warn-writable-face'
5320         with `dired-perm-write-face'.
5322 2008-03-13  Tassilo Horn  <tassilo@member.fsf.org>
5324         * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
5325         Create cache dir only if it doesn't already exist.
5327 2008-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5329         * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Fix handling
5330         of \ and '.
5332 2008-03-13  Johan Bockgård  <bojohan@gnu.org>
5334         * net/browse-url.el (browse-url-text-xterm):
5335         Unquote browse-url-text-browser.
5337 2008-03-13  Carsten Dominik  <dominik@science.uva.nl>
5339         * textmodes/org-mouse.el: Version number change.
5341         * textmodes/org-publish.el (org-publish-expand-components):
5342         Remove null projects from the list of components.
5343         (org-publish-attachment): Bugfix: handle mandatory argument pub-dir.
5344         Remove unused retrieval of the :publishing-directory property.
5345         (org-publish-file): Bugfix: when using a relative directory as the
5346         publishing directory, convert it to a directory filename.
5347         (org-publish-project): New alias.
5348         (org-publish-get-files): Protect against empty p.
5349         (org-publish-file): Send an error when file is not part of any project.
5350         (org-publish-file): Offer to refresh the list of files in known
5351         project when the current file is not part of any project.
5352         (org-publish-before-export-hook)
5353         (org-publish-after-export-hook): New hooks.
5354         (org-publish-org-to): Use new hooks and kill buffers.
5355         (org-publish-file): Remove the code for killing buffers.
5356         (org-publish-initialize-files-alist): Use interactive.
5357         (org-publish-file): If the publishing function creates a new
5358         buffer, kill it after publishing.
5359         (org-publish-timestamp-filename): Protect ":" in file name path
5360         under windows.
5362         * textmodes/org-export-latex.el (org-export-as-latex): Revert the
5363         change that killed the LaTeX buffer.
5365         * textmodes/org.el (org-ctrl-c-star): Implement a missing branch
5366         in the decision tree.
5367         (org-select-remember-template): Clean the code.
5368         (org-prepare-dblock): Add the extra :content parameter.
5369         (org-write-agenda): New output type ".ics" files.
5370         (org-write-agenda): Call `org-icalendar-verify-function', both for
5371         time stamps and for TODO entries.
5372         (org-agenda-collect-markers, org-create-marker-find-array)
5373         (org-check-agenda-marker-table): New functions.
5374         (org-agenda-marker-table): New variable.
5375         (org-export-as-html): Revert the change that killed the html
5376         buffer.  Side effects first need to be studied carefully.
5377         (org-get-tags-at): Fix the structure of the condition-case statement.
5378         (org-ts-regexp0, org-repeat-re, org-display-custom-time)
5379         (org-timestamp-change): Fix regulear expressions to swallow the
5380         extra character for repeat-shift control.
5381         (org-auto-repeat-maybe): Implement the new repeater mechanisms.
5382         (org-get-legal-level): Alias to `org-get-valid-level'.
5383         (org-dblock-write:clocktable): Add a :link parameter, linking
5384         headlines to their location in the Org agenda files.
5385         (org-get-tags-at): Bugfix: prevent `org-back-to-heading' from
5386         throwing an error when getting tags before headlines.
5387         (org-timestamp-change, org-modify-ts-extra)
5388         (org-ts-regexp1): Fix timestamp editing.
5389         (org-agenda-custom-commands-local-options): New constant.
5390         (org-agenda-custom-commands):
5391         Use `org-agenda-custom-commands-local-options' to improve customize
5392         type.  "htmlize": Removed hack to fix face problem with htmlize,
5393         it no longer seem necessary.
5394         (org-follow-link-hook): New hook.
5395         (org-agenda-custom-commands): Add "Component" as a tag for each
5396         item in a command serie.
5397         (org-open-at-point): Run `org-follow-link-hook'.
5398         (org-agenda-schedule): Bugfix: don't display marker type when it
5399         is nil.
5400         (org-store-link): org-irc required.
5401         (org-set-regexps-and-options): Parse the new logging options.
5402         (org-extract-log-state-settings): New function.
5403         (org-todo): Handle the new ways of recording state change stuff.
5404         (org-local-logging): New function.
5405         (org-columns-open-link): Fix bug with opening link in column view.
5406         (org-local-logging): New function
5407         (org-todo): Make sure that LOGGING properties are honoured.
5408         (org-todo-keywords): Improve docstring.
5409         (org-startup-options): Cleanup startup options.
5410         (org-set-regexps-and-options): Process the "!" markers.
5411         (org-todo): Respect the new logging stuff.
5412         (org-log-note-how): New variable.
5413         (org-add-log-maybe): New parameter HOW that defines how logging
5414         should be done and also overrides PURPOSE.  Add a docstring.
5415         (org-add-log-note): Check if we really need to ask for a note.
5416         (org-get-current-options): Digest the new keyword.
5417         (org-agenda-reset-markers): Rename from
5418         `org-agenda-maybe-reset-markers'.  Remove FORCE argument.
5419         (org-diary, org-agenda-quit, org-prepare-agenda): Call the renamed
5420         function, without force argument.
5421         (org-buffer-property-keys): Bind local variables s and p.
5422         (org-make-tags-matcher): Allow "" to match an empty or
5423         non-existent property value.
5424         (org-export-as-html): Join unsorted lists when they directly
5425         follow each other.  Such lists may be created by headlines that
5426         are converted to lists.
5427         (org-nofm-to-completion): New function.
5428         (org-export-as-html): Use :html-extension instead of
5429         org-export-html-extension.
5430         (org-store-link): Support for links from `rmail-summary-mode'.
5431         (org-columns-new, org-complete, org-set-property): Set the
5432         `include-columns' argument in the call to
5433         `org-buffer-property-keys'.
5434         (org-buffer-property-keys): New argument `include-columns', to
5435         include properties expected by any of the COLUMS formats in the
5436         current buffer.
5437         (org-cleaned-string-for-export): Get rid of drawers first, so that
5438         they will be removed also in the text before the first headline.
5439         (org-clock-report): Show the clocktable when found.
5440         (org-refile): Fix positioning bug when `org-reverse-note-order' is nil.
5441         (org-version): With prefix argument, insert `org-version' at point.
5442         (org-agenda-goto): Recenter the window after finding the target
5443         location, to make sure the correct position will be displayed.
5444         (org-agenda-get-deadlines): Don't scale priority with the warning
5445         period.
5446         (org-insert-heading): Don't break line in the middle of the line.
5447         (org-agenda-get-deadlines): Allow `org-deadline-warning-days' to
5448         be 0.
5449         (org-update-checkbox-count): Revamp to deal with hierarchical
5450         beckboxes.  This was a patch from Miguel A. Figueroa-Villanueva.
5451         (org-remove-timestamp-with-keyword): New function.
5452         (org-schedule, org-deadline):
5453         Use `org-remove-timestamp-with-keyword' to make sure all such time
5454         stamps are removed.
5455         (org-mode): Support for `align'.
5456         (org-agenda-get-deadlines): Make sure priorities increase as the
5457         due date approaches and is passed.
5458         (org-remember-apply-template): Fix problem with tags that
5459         contain "_" or "@".
5460         (org-make-link-regexps): Improve the regular expression for plain links.
5461         (org-agenda-get-closed): List each clocking entry.
5462         (org-set-tags): Only tabify before tags if indent-tabs-mode is t.
5463         (org-special-ctrl-k): New option.
5464         (org-kill-line): New function.
5465         (org-archive-all-done): Fix incorrect number of stars in regexp.
5466         (org-refile-get-location): New function.
5467         (org-refile-goto-last-stored): New function.
5468         (org-global-tags-completion-table): Add the value of org-tag-alist
5469         in each buffer, to make sure that also unused tags will be
5470         available for completion.
5471         (org-columns-edit-value)
5472         (org-columns-next-allowed-value): Only update if not in agenda.
5473         (org-clocktable-steps): New function.
5474         (org-dblock-write:clocktable): Call `org-clocktable-steps'.
5475         (org-archive-subtree): Add the outline tree context as a property.
5476         (org-closest-date): New optional argument `prefer'.
5477         (org-goto-auto-isearch): New option.
5478         (org-goto-map, org-get-location): Implement auto-isearch.
5479         (org-goto-local-auto-isearch-map): New variable.
5480         (org-goto-local-search-forward-headings)
5481         (org-goto-local-auto-isearch): New functions.
5483 2008-03-13  Philip Jackson  <emacs@shellarchive.co.uk>
5485         * textmodes/org-irc.el: New file.
5487 2008-03-13  John Wiegley  <johnw@gnu.org>
5489         * textmodes/org-mac-message.el: New file.
5491 2008-03-13  Dan Nicolaescu  <dann@ics.uci.edu>
5493         * font-lock.el (font-lock-comment-face): Set the foreground for
5494         the light background 8 colors case.
5496 2008-03-13  Glenn Morris  <rgm@gnu.org>
5498         * font-lock.el (lisp-font-lock-keywords-1): Support wider range of
5499         generate-autoload-cookie patterns.
5501         * startup.el (command-line-1): Rename -scriptload to -internal-script.
5503         * Makefile.in ($(lisp)/loaddefs.el): Remove this target.
5504         (MH_E_SRC): Remove variable.
5505         ($(lisp)/mh-e/mh-loaddefs.el): Remove $MH_E_SRC dependency.
5506         Simplify file header.  Use $@ for generated-autoload-file.
5508         * Makefile.in (LOADDEFS): New variable.
5509         (AUTOGENEL): Use $LOADDEFS.
5510         (autoloads): Remove $(lisp)/loaddefs.el dependency; add $LOADDEFS.
5511         ($(lisp)/calendar/cal-loaddefs.el, $(lisp)/calendar/diary-loaddefs.el):
5512         ($(lisp)/calendar/hol-loaddefs.el): New targets.
5513         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
5514         * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-html.el:
5515         * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
5516         * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
5517         * calendar/cal-tex.el, calendar/cal-x.el, calendar/diary-lib.el:
5518         * calendar/holidays.el, calendar/lunar.el, calendar/solar.el:
5519         Add calendar-specific autoload cookies, and remove any setting of
5520         generated-autoload-file.
5521         * calendar/calendar.el: Remove explicit autoloads now in cal-loaddefs.
5522         * calendar/diary-lib.el: Replace explicit autoloads with reading of
5523         diary-loaddefs.
5524         * calendar/holidays.el: Replace explicit autoloads with reading of
5525         hol-loaddefs.
5527         * calendar/calendar.el (cal-hebrew-yahrzeit-buffer): New constant.
5528         (calendar-buffer-list): Simplify.
5529         (generate-calendar-window): Use calendar-mark-holidays rather than
5530         obsolete alias.
5532         * calendar/cal-hebrew.el (list-yahrzeit-dates):
5533         Use cal-hebrew-yahrzeit-buffer.
5535         * calendar/cal-x.el (calendar-only-one-frame-setup)
5536         (calendar-two-frame-setup): Doc fixes.
5537         (special-display-buffer-names): Use cal-hebrew-yahrzeit-buffer.
5539         * calendar/appt.el (appt-mode-string): Mark as risky.
5540         (appt-check): Apply mode-line-emphasis face to appt-mode-string.
5542         * calendar/cal-html.el (diary-list-entries):
5543         * calendar/cal-tex.el (calendar-holiday-list, diary-list-entries)
5544         (calendar-iso-from-absolute): Fix autoloads.
5546         * calendar/cal-iso.el (calendar-absolute-from-iso)
5547         (calendar-iso-read-args): Simplify.
5548         (calendar-iso-date-string, calendar-iso-read-args)
5549         (calendar-goto-iso-date, calendar-goto-iso-week): Doc fixes.
5551         * calendar/cal-julian.el (calendar-julian-from-absolute): Use zerop.
5552         (displayed-month, displayed-year): Move declarations where needed.
5553         (calendar-print-astro-day-number): Doc fix.
5555         * calendar/cal-persia.el (persian-calendar-month-name-array)
5556         (persian-calendar-epoch, calendar-persian-date-string): Doc fixes.
5557         (persian-prompt-for-date): Remove local variable `today'.
5559         * calendar/diary-lib.el (mark-calendar-month): Use zerop.
5561         * calendar/solar.el (solar-moment, solar-exact-local-noon)
5562         (solar-sunrise-sunset, solar-sunrise-sunset-string)
5563         (solar-ephemeris-time, solar-date-next-longitude, solar-sidereal-time):
5564         (diary-sabbath-candles, solar-equinoxes/solstices)
5565         (solar-equinoxes-solstices): Use cadr, cdar, nth, zerop.
5566         (solar-time-equation, solar-date-to-et): Simplify.
5568         * mail/supercite.el: Remove the `function' in `(function (lambda'.
5569         Replace `(car (cdr' with cadr'.
5571         * progmodes/f90.el (f90-font-lock-n): New function.
5572         (f90-font-lock-1, f90-font-lock-2, f90-font-lock-3, f90-font-lock-4):
5573         Use f90-font-lock-n.
5574         (f90-indent-region, f90-indent-subprogram, f90-match-end): Use cadr.
5576         * progmodes/f90.el (f90-mode-abbrev-table):
5577         * progmodes/fortran.el (fortran-mode-abbrev-table):
5578         Use newer form of define-abbrev, where supported.  No need to bind
5579         abbrevs-changed for system abbrevs.
5581 2008-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5583         * term/xterm.el (terminal-init-xterm): delete-frame-hook ->
5584         delete-frame-functions.
5586         * bookmark.el (Info-current-node): Remove.
5588 2008-03-12  Juri Linkov  <juri@jurta.org>
5590         * help.el (describe-project): Remove defaliases for view-todo and
5591         describe-project that are now unnecessary after the merge from
5592         emacs--rel--22 that added define-obsolete-function-alias.
5594         * startup.el (inhibit-startup-screen): Revert incomplete
5595         2008-03-10 merge from emacs--rel--22 that partly reverted
5596         2008-02-28 change that added initial message to *scratch* buffer
5597         regardless of the value of `inhibit-startup-screen'.
5598         Now keep this change in the trunk, but not in the 22 branch.
5600 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5602         * international/quail.el (quail-setup-completion-buf, quail-help):
5603         * mail/binhex.el (binhex-decode-region-internal):
5604         * mail/uudecode.el (uudecode-decode-region-internal):
5605         * net/dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
5606         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
5607         setting default-enable-multibyte-characters.
5609         * emulation/viper-util.el (viper-file-remote-p): Remove, unused.
5611         * comint.el: Fix up indentation and comment style.  Remove `function'.
5613         * international/mule-cmds.el (reset-language-environment)
5614         (set-language-environment-nonascii-translation):
5615         Don't set-unibyte-charset.
5617         * doc-view.el: Remove all cb-args, use closures instead.
5618         (doc-view-sentinel): Merge doc-view-dvi->pdf-sentinel,
5619         doc-view-ps->pdf-sentinel, and doc-view-pdf->txt-sentinel (which was
5620         doing an incorrect check).  Update all callers to use the new name.
5621         (doc-view-doc->txt): Add missing `txt' argument.
5623 2008-03-12  Tassilo Horn  <tassilo@member.fsf.org>
5625         * doc-view.el (doc-view-current-cache-dir): Set buffer used for
5626         md5 sum calculation to single-byte.
5628 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5630         * doc-view.el (doc-view-new-window-function): Add assertion.
5631         (doc-view-doc-type): New var.
5632         (doc-view-convert-current-doc, doc-view-doc->txt): Use it.
5633         (doc-view-intersection): New fun.
5634         (doc-view-mode): Use it to set the new var.
5636 2008-03-12  Tassilo Horn  <tassilo@member.fsf.org>
5638         * doc-view.el (doc-view-doc->txt, doc-view-open-text)
5639         (doc-view-already-converted-p): New functions.
5640         (doc-view-clear-cache): Don't recreate doc-view-cache-directory.
5641         (doc-view-mode-map): Bind C-c C-t to doc-view-open-text.
5642         (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
5643         (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
5644         (doc-view-ps->pdf-sentinel, doc-view-ps->pdf)
5645         (doc-view-convert-current-doc): Don't hardwire the functions the
5646         sentinels call.  Now they're provided by two args CALLBACK and
5647         CB-ARGS to the functions.
5648         (doc-view-search): Use doc-view-doc->txt.
5649         (doc-view-initiate-display): Use doc-view-already-converted-p.
5650         Mention new binding C-c C-t if doc-view-mode doesn't work.
5652 2008-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
5654         * diff-mode.el (diff-refine-change): Adjust colors to be more visible.
5656 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5658         * textmodes/sgml-mode.el (sgml-font-lock-syntactic-keywords):
5659         Mark " outside of tags as punctuation.
5661 2008-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5663         * menu-bar.el (minibuffer-local-map): Use the same command for the
5664         "Quit" menu as used for the C-g key, so the shortcut displayed is C-g.
5665         Prefer RET over C-j for exit-minibuffer.
5667         * files.el (display-buffer-other-frame): Eliminate problematic code.
5669         * menu-bar.el (menu-bar-update-buffers-maxbuf): Remove.
5670         (menu-bar-select-buffer): Remove.
5671         (menu-bar-select-frame): Make non-interactive and take a frame arg.
5672         (menu-bar-update-buffers): Don't use buffer-names or frame names as events.
5674 2008-03-11  Juanma Barranquero  <lekktu@gmail.com>
5676         * icomplete.el (icomplete-completions): Remove obsolete code.
5678         * net/net-utils.el (iwconfig-program-options): Doc fix.
5679         (net-utils-run-program, run-network-program): Define as functions.
5681 2008-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
5683         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Fix typo.
5685 2008-03-11  Glenn Morris  <rgm@gnu.org>
5687         * faces.el (mode-line-emphasis): New face.
5688         * vc.el (vc-set-mode-line-busy-indicator): Use mode-line-emphasis face.
5690         * calendar/calendar.el (top-level): Load cal-loaddefs when compiling.
5692 2008-03-11  Chong Yidong  <cyd@stupidchicken.com>
5694         * simple.el (set-mark-command): Doc fix.
5696 2008-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5698         * Makefile.in (bootstrap-prepare): Don't chmod cal-loaddefs.el.
5700         * emacs-lisp/autoload.el (autoload-find-destination):
5701         Don't force raw-text.
5703         * calendar/calendar.el ("cal-loaddefs"): Load, rather than require.
5704         * calendar/cal-loaddefs.el: Don't version control.
5706 2008-03-10  Dan Nicolaescu  <dann@ics.uci.edu>
5708         * progmodes/make-mode.el (makefile-mode-abbrev-table): Add menu
5709         entries and add :help to the existing ones.
5711 2008-03-10  Glenn Morris  <rgm@gnu.org>
5713         * calendar/cal-hebrew.el (date, entry, number): Move declarations
5714         to where they are needed.
5716         * calendar/calendar.el (diary-file, hebrew-holidays-1)
5717         (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
5718         (calendar, calendar-basic-setup, calendar-mode-map, calendar-set-mark)
5719         (calendar-version): Doc fixes.
5720         (calendar-absolute-from-gregorian): Use zerop.
5721         (calendar-mode-line-format): Make it a defcustom.
5723         * calendar/diary-lib.el (diary-face-attrs): Fix custom :type.
5724         (diary-face-attrs, diary-glob-file-regexp-prefix, diary-unknown-time)
5725         (diary-pull-attrs, diary-header-line-flag, diary-list-entries)
5726         (diary-unhide-everything, include-other-diary-files, diary-goto-entry)
5727         (mark-included-diary-files, mark-calendar-days-named)
5728         (mark-calendar-date-pattern, mark-calendar-month, diary-entry-compare)
5729         (diary-remind, insert-diary-entry, insert-weekly-diary-entry)
5730         (insert-monthly-diary-entry, insert-yearly-diary-entry)
5731         (insert-anniversary-diary-entry, insert-block-diary-entry)
5732         (insert-cyclic-diary-entry, fancy-diary-font-lock-keywords)
5733         (diary-font-lock-sexps): Doc fixes.
5734         (diary-remind-message, mark-calendar-month): Use zerop.
5735         (diary-attrtype-convert, diary-pull-attrs): Simplify.
5736         (diary-list-entries): Revert let to let* (previous change).
5738         * Makefile.in (bootstrap-prepare): Also chmod cal-loaddefs.el.
5740 2008-03-10  Kim F. Storm  <storm@cua.dk>
5742         * help.el (view-emacs-todo, describe-gnu-project): Define obsolete
5743         function aliases for the old names.
5745 2008-03-10  Juanma Barranquero  <lekktu@gmail.com>
5747         * iswitchb.el (iswitchb-use-faces): Doc fix.
5748         (iswitchb-buffer-ignore, iswitchb-read-buffer):
5749         Fix typos in docstrings.
5751 2008-03-10  Dan Nicolaescu  <dann@ics.uci.edu>
5753         * progmodes/verilog-mode.el (verilog-highlight-grouping-keywords):
5754         Fix typo.
5755         (verilog-type-font-keywords): Reindent.
5757 2008-03-10  Michael McNamara  <mac@mail.brushroad.com>
5759         * verilog-mode.el (verilog-font-grouping-keywords): Fix bug in the
5760         grouping-keyword regular expression.
5761         (verilog-font-lock-keywords): Allow users to toggle special
5762         highlight of grouping-keywords.
5763         (verilog-highlight-grouping-keywords): The toggle for special
5764         highlighting of grouping keywords.
5766 2008-03-10  Juri Linkov  <juri@jurta.org>
5768         * startup.el: Revert 2008-02-28 change that adds initial message
5769         to *scratch* buffer regardless of the value of
5770         `inhibit-startup-screen'.
5772 2008-03-10  Dan Nicolaescu  <dann@ics.uci.edu>
5774         * textmodes/css-mode.el (css-indent-offset, css-electric-keys):
5775         * textmodes/bibtex-style.el (bibtex-style-indent-basic):
5776         * progmodes/verilog-mode.el (verilog-mode):
5777         * net/socks.el (socks):
5778         * vc-mtn.el (vc-mtn-mode-line-rewrite): Add :version.
5780 2008-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5782         * doc-view.el (bookmark-buffer-file-name, bookmark-prop-get): Declare.
5783         (doc-view-bookmark-make-record): Use them.
5784         (doc-view-bookmark-jump): Use them.  Fix find-file ->find-file-noselect.
5785         (bookmark-get-filename, bookmark-get-bookmark-record): Remove.
5787         * bookmark.el (bookmark-make-record-function): Change expected return
5788         value to include a suggested bookmark name.
5789         (bookmark-make): Split into bookmark-make-record and bookmark-store.
5790         Fix reversed `overwrite' semantics.
5791         (bookmark-set): Call bookmark-make-record before prompting the user.
5792         Then pass the result to bookmark-store later on.
5793         (bookmark-make-name-function): Remove.
5794         (bookmark-buffer-file-name, bookmark-buffer-name): Don't use it.
5795         * info.el (bookmark-make-name-function): Remove.
5796         (Info-mode): Don't set it.
5797         (Info-bookmark-make-name): Remove.
5798         (Info-bookmark-make-record): Use Info-current-node as suggested default
5799         bookmark name.
5801         * bookmark.el (bookmark-set): Make bookmark before reading annotations.
5802         I.e. use bookmark-edit-annotation rather than bookmark-read-annotation.
5803         (bookmark-read-annotation-mode-map, bookmark-annotation-paragraph)
5804         (bookmark-annotation-buffer, bookmark-annotation-file)
5805         (bookmark-annotation-point, bookmark-send-annotation)
5806         (bookmark-read-annotation-mode, bookmark-read-annotation): Remove.
5807         (bookmark-edit-annotation-text-func): Rename from
5808         bookmark-read-annotation-text-func.  Keep old name as an obsolete alias.
5809         (bookmark-edit-annotation-mode-map): Move initialization into
5810         declaration.
5812         * bookmark.el: Remove spurious * in docstrings.
5813         (bookmark-minibuffer-read-name-map): New var.
5814         (bookmark-set): Use it.  Also pass the default value as it should.
5815         (bookmark-send-edited-annotation): Take no chances with text properties.
5816         (bookmark-insert-current-bookmark): Inline bookmark-insert-buffer-name.
5817         (bookmark-insert-buffer-name): Remove.
5818         (bookmark-buffer-file-name): Signal an error rather than returning nil.
5820 2008-03-09  Thomas Hühn  <xf27@arcor.de>  (tiny change)
5822         * tutorial.el (tutorial--default-keys): Update `C-l' binding.
5824 2008-03-09  Dan Nicolaescu  <dann@ics.uci.edu>
5826         * diff-mode.el (diff-mode-menu): Add :help.
5828 2008-03-09  Glenn Morris  <rgm@gnu.org>
5830         * calendar/calendar.el (general-holidays, oriental-holidays)
5831         (local-holidays, other-holidays, hebrew-holidays-1, hebrew-holidays-2)
5832         (hebrew-holidays-3, hebrew-holidays-4, hebrew-holidays)
5833         (christian-holidays, islamic-holidays, bahai-holidays, solar-holidays)
5834         (calendar-holidays): Restore autoload cookies, because people are
5835         used to using these variables without loading calendar.el.
5837         * calendar/cal-islam.el (diary-islamic-date): Move to end.
5838         (date, number): Declare where needed.
5840         * calendar/diary-lib.el (nongregorian-diary-marking-hook)
5841         (list-sexp-diary-entries): Doc fixes.
5842         (diary-list-entries): Doc fix.  Remove free variable `entry'.
5843         (fancy-diary-display): Use dolist, bobp.  Remove free variable `entry'.
5844         Simplify setting of `date-holiday-list'.
5845         (mark-diary-entries): Remove free variable `entry'.
5846         (diary-list-entries, include-other-diary-files, fancy-diary-display):
5847         Use let where let* is not needed.
5849 2008-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5851         * bookmark.el (bookmark-make): Don't pass the `annotation' to the
5852         make-record function, instead paste it in afterwards.
5853         (bookmark-make-record-for-text-file):
5854         * doc-view.el (doc-view-bookmark-make-record):
5855         * info.el (Info-bookmark-make-record): Don't mess with annotations.
5857 2008-03-08  Glenn Morris  <rgm@gnu.org>
5859         * calendar/diary-lib.el (entry): Declare for compiler part-way through.
5861 2008-03-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5863         * calendar/diary-lib.el (diary-list-entries)
5864         (include-other-diary-files, mark-diary-entries)
5865         (mark-sexp-diary-entries, mark-included-diary-files)
5866         (diary-entry-time, list-sexp-diary-entries): Remove the special
5867         handling of ^M that dates back to the use of selective-display.
5868         (simple-diary-display): Obey setting of pop-up-frames.
5869         (body, entry): Remove unnecessary declarations.
5871         * bookmark.el (bookmark-prop-get, bookmark-prop-set): New funs.
5872         (bookmark-get-annotation, bookmark-set-annotation)
5873         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
5874         (bookmark-set-position, bookmark-get-front-context-string)
5875         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
5876         (bookmark-set-rear-context-string, bookmark-get-handler): Use them.
5877         * info.el (Info-bookmark-make-record): Don't bother recording point.
5878         (bookmark-get-filename, bookmark-get-front-context-string)
5879         (bookmark-get-rear-context-string, bookmark-get-position):
5880         Don't declare any more.
5881         (bookmark-get-info-node): Remove.
5882         (bookmark-prop-get): Declare.
5883         (Info-bookmark-jump): Use it.
5885 2008-03-08  Johan Bockgård  <bojohan@gnu.org>
5887         * subr.el (while-no-input): Don't splice BODY directly into the
5888         `or' form.
5890 2008-03-08  Dan Nicolaescu  <dann@ics.uci.edu>
5892         * diff-mode.el (diff-ignore-whitespace-hunk):
5893         Bind inhibit-read-only before trying to change the buffer.
5895 2008-03-08  Glenn Morris  <rgm@gnu.org>
5897         * calendar/appt.el (appt): Move custom group here from calendar.el.
5898         (appt-disp-window, appt-convert-time): Doc fixes.
5900         * calendar/cal-bahai.el (calendar-bahai-prompt-for-date)
5901         (calendar-bahai-mark-date-pattern):
5902         * calendar/cal-hebrew.el (mark-hebrew-calendar-date-pattern):
5903         * calendar/cal-islam.el (mark-islamic-calendar-date-pattern):
5904         * calendar/cal-julian.el (calendar-absolute-from-julian):
5905         * calendar/cal-persia.el (persian-prompt-for-date): Use zerop.
5907         * calendar/cal-china.el (chinese-calendar): Move custom group here from
5908         calendar.el.
5909         (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
5910         Make constants.
5911         (chinese-calendar-time-zone, chinese-calendar-daylight-time-offset)
5912         (chinese-calendar-daylight-savings-starts)
5913         (chinese-calendar-daylight-savings-ends)
5914         (chinese-calendar-daylight-savings-starts-time)
5915         (chinese-calendar-daylight-savings-ends-time)
5916         (chinese-zodiac-sign-on-or-after, chinese-new-moon-on-or-after):
5917         Doc fixes.
5919         * calendar/cal-coptic.el (coptic-name): Add doc string.
5921         * calendar/cal-french.el (french-calendar-month-name-array)
5922         (french-calendar-day-name-array, french-calendar-special-days-array):
5923         Add doc strings.
5925         * calendar/cal-bahai.el (diary-bahai-mark-entries)
5926         (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
5927         (diary-bahai-insert-yearly-entry):
5928         * calendar/cal-dst.el (calendar-next-time-zone-transition)
5929         (calendar-time-zone):
5930         * calendar/cal-hebrew.el (hebrew-calendar-leap-year-p)
5931         (hebrew-calendar-elapsed-days, hebrew-calendar-long-heshvan-p)
5932         (hebrew-calendar-short-kislev-p, mark-hebrew-diary-entries)
5933         (insert-hebrew-diary-entry, insert-monthly-hebrew-diary-entry)
5934         (insert-yearly-hebrew-diary-entry, diary-yahrzeit):
5935         * calendar/cal-islam.el (islamic-calendar-leap-year-p)
5936         (list-islamic-diary-entries, mark-islamic-diary-entries)
5937         (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
5938         (insert-yearly-islamic-diary-entry):
5939         * calendar/cal-iso.el (calendar-iso-read-args):
5940         * calendar/cal-mayan.el (calendar-string-to-mayan-long-count)
5941         (calendar-mayan-haab-to-string, calendar-mayan-tzolkin-to-string)
5942         (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
5943         (calendar-next-calendar-round-date)
5944         (calendar-mayan-long-count-common-era):
5945         * calendar/cal-menu.el (cal-menu-holiday-window-suffix)
5946         (cal-menu-x-popup-menu, calendar-mouse-holidays)
5947         (calendar-mouse-view-diary-entries, calendar-mouse-print-dates)
5948         (calendar-mouse-goto-date):
5949         * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
5950         * calendar/holidays.el (holidays):
5951         * calendar/lunar.el (phases-of-moon, lunar-new-moon-on-or-after):
5952         * calendar/time-date.el (date-to-time, time-subtract, time-add)
5953         (safe-date-to-time): Doc fixes.
5955         * calendar/cal-persia.el (persian-calendar-month-name-array)
5956         (persian-calendar-epoch): Make constants.
5958         * calendar/cal-tex.el (calendar-tex): Move custom group here from
5959         calendar.el.
5961         * calendar/cal-x.el (diary-frame-parameters)
5962         (calendar-frame-parameters, calendar-and-diary-frame-parameters)
5963         (calendar-after-frame-setup-hooks): Make defcustoms.
5964         (calendar-one-frame-setup, calendar-only-one-frame-setup)
5965         (calendar-two-frame-setup): Doc fix.
5967         * calendar/cal-loaddefs.el: New file.
5969         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
5970         * calendar/cal-french.el, calendar/cal-html.el:
5971         * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
5972         * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
5973         * calendar/cal-tex.el, calendar/cal-x.el:
5974         Unquote lambda functions.  Add autoload cookies to functions formerly
5975         autoloaded in calendar.el.  Set `generated-autoload-file' to
5976         "cal-loaddefs.el".
5978         * calendar/calendar.el: Move many autoloads to separate file,
5979         cal-loaddefs.el.  Move defcustoms to start and re-order.
5980         (calendar-month-name-array, calendar-starred-day): No need to
5981         declare for compiler.
5982         (cal-loaddefs): Require it.
5983         (appt, chinese-calendar, calendar-tex): Move custom groups to the
5984         appropriate file.
5985         (diary-entry-marker, calendar-today-marker, calendar-holiday-marker):
5986         Reverse logic.
5987         (diary-face, diary-file-name-prefix-function, diary-include-string)
5988         (diary-glob-file-regexp-prefix, diary-face-attrs)
5989         (diary-file-name-prefix, sexp-diary-entry-symbol)
5990         (print-diary-entries-hook, list-diary-entries-hook)
5991         (nongregorian-diary-listing-hook, mark-diary-entries-hook)
5992         (nongregorian-diary-marking-hook, diary-list-include-blanks):
5993         Move to diary-lib.
5994         (all-christian-calendar-holidays, all-islamic-calendar-holidays)
5995         (all-bahai-calendar-holidays): Doc fix.
5996         (calendar-insert-indented): Doc fix.  Use when rather than if.
5997         (exit-calendar): Use mapc rather than mapcar.
5998         (calendar-cursor-to-date): Use zerop.
5999         (calendar-mark-ring): Add doc-string.
6000         (calendar-starred-day): Defvar it.
6001         (calendar-mode): Make calendar-starred-day local.
6002         (calendar-star-date): No need to make calendar-starred-day local.
6004         * calendar/diary-lib.el: Move defcustoms to start.
6005         (diary-include-string, diary-list-include-blanks)
6006         (diary-glob-file-regexp-prefix, diary-face, diary-face-attrs)
6007         (diary-file-name-prefix, diary-file-name-prefix-function)
6008         (sexp-diary-entry-symbol, list-diary-entries-hook)
6009         (mark-diary-entries-hook, nongregorian-diary-listing-hook)
6010         (nongregorian-diary-marking-hook, print-diary-entries-hook):
6011         Move here from calendar.el.
6012         (diary-file-name-prefix-function): Use 'identity.
6013         (diary-face): Make it a defcustom, and mark as obsolete.
6014         (top-level): No need to require cal-hebrew, cal-islam when compiling.
6015         (calendar-hebrew-month-name-array-leap-year)
6016         (calendar-islamic-month-name-array, calendar-bahai-month-name-array):
6017         Define for compiler.
6018         (diary-font-lock-keywords): Use format rather than concat.
6019         Add bahai-diary-entry-symbol.
6021         * calendar/cal-hebrew.el, calendar/holidays.el, calendar/lunar.el:
6022         * calendar/solar.el: Unquote lambda functions.
6024         * calendar/solar.el (calendar-location-name, calendar-latitude)
6025         (calendar-longitude, solar-setup, solar-sin-degrees)
6026         (solar-cosine-degrees, solar-tangent-degrees, solar-xy-to-quadrant)
6027         (solar-degrees-to-quadrant, solar-atn2, solar-arccos)
6028         (solar-sunrise-and-sunset, solar-moment, solar-daylight)
6029         (solar-exact-local-noon, solar-julian-ut-centuries)
6030         (solar-ephemeris-time, solar-date-next-longitude)
6031         (solar-horizontal-coordinates, solar-equatorial-coordinates)
6032         (solar-ecliptic-coordinates, solar-data-list, solar-longitude)
6033         (solar-ephemeris-correction, solar-sidereal-time, solar-date-to-et)
6034         (sunrise-sunset, solar-seasons-data, solar-equinoxes/solstices):
6035         Doc fixes.
6036         (solar-horizontal-coordinates, solar-equatorial-coordinates)
6037         (solar-ecliptic-coordinates): Rename argument `for-sunrise-sunset'.
6038         (solar-ecliptic-coordinates): Use unless.
6039         (calendar-sunrise-sunset, diary-sunrise-sunset, diary-sabbath-candles):
6040         Use or.
6042         * calendar/timeclock.el: Add doc-strings to all functions.
6043         (timeclock-workday, timeclock-in, timeclock-completing-read): Doc fixes.
6044         (timeclock-entry-list-length, timeclock-entry-list-projects)
6045         (timeclock-day-list-projects, timeclock-day-list): Use dolist.
6047         * calendar/todo-mode.el: Remove un-needed eval-when-compile.
6049         * textmodes/org.el (list-diary-entries-hook): Declare for compiler.
6050         (org-get-entries-from-diary): Require diary-lib.
6052 2008-03-08  Juanma Barranquero  <lekktu@gmail.com>
6054         * info.el (bookmark-make-name-function, bookmark-get-bookmark-record):
6055         Pacify byte-compiler.
6057 2008-03-07  Alan Mackenzie  <acm@muc.de>
6059         * progmodes/cc-engine.el (c-in-knr-argdecl): Limit number of
6060         paren/bracket pairs parsed, to solve performance problem.
6062 2008-03-07  Bastien Guerry  <bzg@altern.org>
6064         * bookmark.el (bookmark-set): Don't check for
6065         `bookmark-make-name-function' since `bookmark-buffer-file-name'
6066         already takes care of this.
6067         (bookmark-buffer-name, bookmark-buffer-file-name):
6068         Remove Info-mode specific code.
6070         * info.el (bookmark-get-info-node): Define this function in
6071         info.el, not in bookmark.el.
6072         (Info-mode): Set `bookmark-make-name-function' to
6073         `Info-bookmark-make-name' locally.
6074         (Info-bookmark-make-name): New function.
6076         * bookmark.el (bookmark-make-name-function): New variable.
6078 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
6080         * bookmark.el (bookmark-set): Make `bookmark-make-record-function'
6081         buffer-local, not `bookmark-make-cell-function' (the old name).
6083 2008-03-07  Tassilo Horn  <tassilo@member.fsf.org>
6085         * doc-view.el (doc-view-bookmark-make-record):
6086         * image-mode.el (image-bookmark-make-record):
6087         * info.el (Info-bookmark-make-record): Delete obsolete second arg.
6089 2008-03-07  Jan Djärv  <jan.h.d@swipnet.se>
6091         * vc.el (vc-status-menu-map-filter): Return orig-binding if
6092         boundp 'vc-ignore-menu-filter.
6093         (vc-status-tool-bar-map): Make it defvar.
6094         (vc-status-mode): vc-status-tool-bar-map now variable.
6095         (vc-status-toggle-mark): toggle-mark-file => vc-status-toggle-mark-file.
6097 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
6099         Give a better name to part of the bookmark interface.
6101         This was originally a much larger change, but halfway through I
6102         updated and discovered that Stefan Monnier had done the rest.
6103         It looks like he anticipated the new name too, because he used
6104         `the-record' instead of `the-cell' for some internal variable names.
6106         * bookmark.el (bookmark-make-record-function): Was
6107         `bookmark-make-cell-function'.
6108         (bookmark-make, bookmark-send-annotation): Update for above.
6109         (bookmark-make-record-for-text-file):
6110         Was `bookmark-make-cell-for-text-file'.  Fix doc string re 2008-03-07T05:00:18Z!monnier@iro.umontreal.ca.
6112         * info.el: Adjust accordingly.
6113         (Info-bookmark-make-record): Was `Info-bookmark-make-cell'.
6115         * image-mode.el: Adjust accordingly.
6116         (image-bookmark-make-record): Was `image-bookmark-make-cell'.
6118         * doc-view.el: Adjust accordingly.
6119         (doc-view-bookmark-make-record): Was `doc-view-bookmark-make-cell'.
6121 2008-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6123         * bookmark.el (bookmark-map, bookmark-read-annotation-mode-map):
6124         Move initialization into declaration.
6125         (bookmark-get-info-node, bookmark-set-info-node): Remove.
6126         (bookmark-make, bookmark-make-cell-for-text-file): Remove info-node arg.
6127         (bookmark-info-current-node): Remove.
6128         (bookmark-jump-noselect): Rename from bookmark-jump-internal.
6129         Add relocation fallback.  Set bookmark-current-bookmark.
6130         (bookmark-default-handler): Rename from bookmark-jump-noselect.
6131         Remove relocation fallback.  Don't set bookmark-current-bookmark.
6132         (bookmark-set): Let it be used even if there's no buffer-file-name
6133         as long as there is a bookmark-make-cell-function.
6134         * info.el (Info-bookmark-jump): Remove relocation fallback.
6135         Don't set bookmark-current-bookmark.
6137 2008-03-07  Glenn Morris  <rgm@gnu.org>
6139         * calendar/appt.el (appt-issue-message)
6140         (appt-message-warning-time, appt-audible, appt-visible)
6141         (appt-msg-window, appt-display-mode-line, appt-display-duration)
6142         (appt-display-diary): Remove autoload cookies.
6144         * calendar/cal-china.el, calendar/timeclock.el, calendar/todo-mode.el:
6145         Remove leading `*' from defcustom doc-strings.
6147         * calendar/cal-dst.el (calendar-dst): New custom group.
6148         (calendar-daylight-savings-starts, calendar-daylight-savings-ends)
6149         (calendar-time-zone, calendar-daylight-time-offset)
6150         (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
6151         (calendar-daylight-savings-starts-time)
6152         (calendar-daylight-savings-ends-time): Convert from defvar to defcustom.
6153         (calendar-daylight-savings-starts, calendar-daylight-savings-ends):
6154         Move to start.
6156         * calendar/cal-menu.el (holidays-in-diary-buffer): Declare for compiler.
6158         * calendar/calendar.el (calendar-version): Use emacs-version and
6159         make it obsolete.  Move to end.
6160         (calendar-offset, view-diary-entries-initially)
6161         (mark-diary-entries-in-calendar, calendar-remove-frame-by-deleting)
6162         (view-calendar-holidays-initially, all-hebrew-calendar-holidays)
6163         (all-christian-calendar-holidays, all-islamic-calendar-holidays)
6164         (all-bahai-calendar-holidays, calendar-load-hook)
6165         (initial-calendar-window-hook, today-visible-calendar-hook)
6166         (today-invisible-calendar-hook, calendar-move-hook)
6167         (diary-nonmarking-symbol, hebrew-diary-entry-symbol)
6168         (islamic-diary-entry-symbol, bahai-diary-entry-symbol)
6169         (diary-include-string, sexp-diary-entry-symbol)
6170         (abbreviated-calendar-year, american-date-diary-pattern)
6171         (european-date-diary-pattern, european-calendar-display-form)
6172         (american-calendar-display-form, print-diary-entries-hook)
6173         (list-diary-entries-hook, diary-hook, diary-display-hook)
6174         (nongregorian-diary-listing-hook, mark-diary-entries-hook)
6175         (nongregorian-diary-marking-hook, diary-list-include-blanks)
6176         (holidays-in-diary-buffer, general-holidays, oriental-holidays)
6177         (local-holidays, other-holidays, hebrew-holidays-1)
6178         (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
6179         (hebrew-holidays, christian-holidays, islamic-holidays)
6180         (bahai-holidays, solar-holidays, calendar-setup)
6181         (calendar-week-start-day): Remove autoload cookies.
6182         (diary-glob-file-regexp-prefix): Doc fix.
6183         (calendar-goto-info-node): Use `info' rather than `Info-find-node'.
6184         (Info-find-emacs-command-nodes, Info-find-node): Remove declarations.
6185         (calendar-week-start-day, calendar-debug-sexp): Move to start.
6187         * calendar/solar.el: Remove leading `*' from defcustom doc-strings.
6188         (calendar-time-display-form, calendar-latitude)
6189         (calendar-longitude, solar-equinoxes-solstices): Remove autoload
6190         cookies.
6191         (calendar-latitude, calendar-longitude): Move functions after
6192         variables.
6193         (diary-sabbath-candles-minutes): Move to start.
6194         (solar-setup): Use or rather than if.
6195         (solar-sin-degrees, solar-cosine-degrees, solar-tangent-degrees):
6196         Remove condition-case.
6197         (solar-atn2): Use zerop.
6198         (solar-equinoxes-solstices): Doc fix.
6200         * mail/supercite.el: Remove leading `*' from defcustom doc-strings.
6201         (sc-mode-map-prefix): Doc fix.  Make it a defcustom.
6203         * textmodes/org.el (org-agenda-sunrise-sunset): Require solar.
6204         (calendar-longitude, calendar-latitude, calendar-location-name):
6205         Declare for compiler.
6207 2008-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6209         * arc-mode.el (archive-ar-file-header-re): New const.
6210         (archive-ar-summarize, archive-ar-extract): New funs.
6211         (archive-find-type): Recognize ar archives.
6213         * vc-bzr.el (vc-bzr-resolve-when-done, vc-bzr-find-file-hook):
6214         New functions.
6216         * info.el (Info-bookmark-make-cell): Don't use the info-node argument.
6218 2008-03-06  Lennart Borgman  <lennart.borgman@gmail.com>
6220         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
6221         Replace :enable (mark-active) with :enable mark-active.
6223 2008-03-06  Juanma Barranquero  <lekktu@gmail.com>
6225         * vms-patch.el (make-legal-file-name): New obsolete alias.
6226         (make-valid-file-name): Rename from `make-legal-file-name'.
6227         (make-auto-save-file-name): Use it.
6229         * calendar/calendar.el (calendar-date-is-legal-p): New obsolete alias.
6230         (calendar-date-is-valid-p): Rename from `calendar-date-is-legal-p'.
6231         (calendar-date-is-visible-p, mark-visible-calendar-date): Use it.
6233         * textmodes/org.el (org-export-html-style): Doc fix.
6234         (org-get-legal-level): New obsolete alias.
6235         (org-get-valid-level): Rename from `org-get-legal-level'.
6236         (org-promote, org-demote, org-archive-subtree)
6237         (org-remember-handler, org-refile, org-put-clock-overlay): Use it.
6239 2008-03-06  Jan Djärv  <jan.h.d@swipnet.se>
6241         * term/x-win.el (x-gtk-stock-map): Add bookmark_add.
6243         * vc.el (vc-status-tool-bar-map, vc-status-toggle-mark-file)
6244         (vc-status-toggle-mark): New functions.
6245         (vc-status-mode): Set tool bar map.
6247 2008-03-05  Chong Yidong  <cyd@stupidchicken.com>
6249         * emacs-lisp/lisp.el (parens-require-spaces): Doc fix.
6250         Reported by Drew Adams <drew.adams@oracle.com>.
6252 2008-03-05  Kenichi Handa  <handa@ni.aist.go.jp>
6254         * subr.el (read-quoted-char): Resolve modifers of the character
6255         event.
6257         * comint.el (comint-exec-1): Don't change the coding-system for
6258         decoding to dos-like EOL.
6259         (comint-carriage-motion): Fully rewrite.
6261 2008-03-05  Juanma Barranquero  <lekktu@gmail.com>
6263         * epg.el (epg-context-include-certs): Reflow docstring.
6264         (epg-start-sign-keys, epg-sign-keys, epg-context-armor)
6265         (epg-context-signers, epg-context-sig-notations, epg-context-set-armor)
6266         (epg-context-set-signers, epg-context-set-sig-notations)
6267         (epg-make-import-status, epg-make-import-result)
6268         (epg-start-delete-keys): Fix typos in docstrings.
6269         (epg-start-sign-keys, epg-sign-keys):
6270         Fix typos in obsolescence declarations.
6272         * iswitchb.el: Don't check for `cadr' and `last'.
6273         (iswitchb-define-mode-map, iswitchb-default-keybindings):
6274         Add obsolescence declaration and remove redundant info from docstring.
6275         (iswitchb-set-common-completion, iswitchb-set-matches)
6276         (iswitchb-get-matched-buffers, iswitchb-visit-buffer): Use `let'.
6277         (recentf-list, most-len, most-is-exact):
6278         Don't wrap defvars within `eval-when-compile'.
6280 2008-03-05  Glenn Morris  <rgm@gnu.org>
6282         * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
6283         * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
6284         * ediff-diff.el, ediff-help.el, ediff-hook.el, ediff-init.el:
6285         * ediff-mult.el, ediff-util.el, ediff-wind.el: Expand all
6286         ediff-cond-compile-for-xemacs-or-emacs calls to a featurep test.
6288         * ediff-hook.el (ediff-window-setup-function): Don't autoload
6289         declaration for compiler.
6290         (ediff-xemacs-init-menus): Use when rather than if.
6292         * ediff-init.el (top-level, ediff-frame-iconified-p): Simplify
6293         if+and to just and.
6294         (ediff-read-event, ediff-overlayp, ediff-make-overlay)
6295         (ediff-delete-overlay): Move the XEmacs test inside the definition.
6297         * ediff-mult.el (ediff-get-meta-info): Use or and unless rather than if.
6299         * ediff-util.el (ediff-kill-bottom-toolbar): Place (ediff-use-toolbar-p)
6300         test inside XEmacs test.
6301         (ediff-make-bottom-toolbar): Place whole cond inside XEmacs test,
6302         since it was doing nothing on Emacs.
6303         (ediff-make-bullet-proof-overlay): Use when rather than if.
6305         * ediff-wind.el (ediff-select-lowest-window): Use when rather than if.
6306         (ediff-setup-control-frame): Remove
6307         ediff-cond-compile-for-xemacs-or-emacs, since it is already inside
6308         a (featurep 'xemacs) test.
6310 2008-03-05  Jay Belanger  <jay.p.belanger@gmail.com>
6312         * calc/calc-ext.el (calc-extended-command-history): New variable.
6313         (calc-exectute-extended-command): Use `calc-extended-command-history'.
6315 2008-03-05  Dan Nicolaescu  <dann@ics.uci.edu>
6317         * bindings.el (mode-line-remote): Add mouse-face.  Improve tooltip.
6318         (standard-mode-line-position): Add mouse-face.
6320         * progmodes/compile.el (compilation-menu-map):
6321         (compilation-mode-map):
6322         * progmodes/grep.el (grep-mode-map): Add :help.
6324         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Define and
6325         initialize in one step.  Add :help.  Use :enable to activate menu
6326         items.  Show the key binding for edebug-defun.
6327         (lisp-interaction-mode-map): Add a menu.
6329         * term.el (term-mode-map): Define and initialize in one step.
6331         * ediff-init.el (ediff-color-display-p): Simplify.
6332         (Xor): Remove unused function.
6333         (ediff-with-syntax-table): Simplify for Emacs.
6335         * ediff-hook.el (menu-bar-ediff-menu): Don't depend on the
6336         menu-bar being loaded, it always is.
6338 2008-03-05  Glenn Morris  <rgm@gnu.org>
6340         * textmodes/tex-mode.el (tex-mode): Suppress warning about
6341         multiple definitions when compiling.
6343 2008-03-04  Alan Mackenzie  <acm@muc.de>
6345         * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix coding bug.
6347         * progmodes/cc-langs.el (c-before-font-lock-function): Fix bug in
6348         doc-string, "c-old-LEN" -> "c-old-END".
6350 2008-03-04  Jason Rumney  <jasonr@gnu.org>
6352         * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add dublin core
6353         namespaces.
6355 2008-03-04  Glenn Morris  <rgm@gnu.org>
6357         * textmodes/tex-mode.el (tex-cmd-bibtex-args): Add :version and :group.
6359         * ediff-init.el (ediff-clear-fine-diff-vector): Use mapc rather
6360         than mapcar.
6362 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6364         * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
6365         (byte-compile-nilconstp): Can't use recursion in a defsubst.
6367         * textmodes/tex-mode.el (latex-mode): Remove % from paragraph-separate
6368         so that M-q can fill comments.
6369         (tex-executable-exists-p, tex-compile): Extend with special syntax for
6370         commands implemented in elisp.
6371         (tex-compile-commands): Add an entry to use doc-view for pdf files.
6372         (tex-format-cmd): New function.
6373         (tex-compile): Use it to let the user specify default arguments.
6374         (tex-cmd-bibtex-args): New var.
6375         (tex-cmd-doc-view): New function.
6377 2008-03-03  Juanma Barranquero  <lekktu@gmail.com>
6379         * faces.el (face-spec-set): Fix typos in docstring.
6381 2008-03-03  Dan Nicolaescu  <dann@ics.uci.edu>
6383         * bindings.el (mode-line-column-line-number-mode-map): New variable.
6384         (standard-mode-line-position): Use it to add a menu for toggling
6385         column number and line number display.
6387 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6389         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
6390         Remove optimization that was working around the form-code-walker bug.
6392         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
6393         Walk into the body of lambdas after byte-compile-unfold-lambda.
6395 2008-03-03  Glenn Morris  <rgm@gnu.org>
6397         * emulation/viper-util.el (viper-frame-value): Prefer buffer-local
6398         value, if set, over frame value.
6400         * simple.el (transient-mark-mode): Don't turn on by default.
6402         * net/tls.el (open-tls-stream): Restore the 2007-11-04 change
6403         accidentally removed by the 2007-12-05 merge from Gnus.
6405 2008-03-02  Dan Nicolaescu  <dann@ics.uci.edu>
6407         * progmodes/compile.el (compilation-menu-map): Add menu entries
6408         for useful options.
6410 2008-03-01  Dan Nicolaescu  <dann@ics.uci.edu>
6411             Glenn Morris  <rgm@gnu.org>
6413         * emacs-lisp/bytecomp.el (byte-recompile-directory)
6414         (byte-compile-file, batch-byte-compile, batch-byte-compile-file):
6415         Give a `bytecomp-' prefix to local variables with common names.
6417 2008-03-01  Glenn Morris  <rgm@gnu.org>
6419         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Restore
6420         code commented out 2007-11-10.
6422         * emulation/edt.el (zmacs-region-stays): Define for compiler once only.
6424         * emulation/viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
6425         Delete macro.
6426         * emulation/viper-cmd.el, emulation/viper-ex.el:
6427         * emulation/viper-init.el, emulation/viper-keym.el:
6428         * emulation/viper-mous.el, emulation/viper-util.el:
6429         * emulation/viper.el:
6430         Expand all viper-cond-compile-for-xemacs-or-emacs calls to a
6431         featurep test.
6433         Replace obselete frame-local variables with frame-parameters.
6434         * emulation/viper-init.el (viper-replace-overlay-cursor-color)
6435         (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
6436         (viper-vi-state-cursor-color): Only call make-variable-frame-local
6437         on XEmacs.
6438         * emulation/viper-util.el (viper-frame-value): New macro.
6439         * emulation/viper-cmd.el (viper-insert-state-post-command-sentinel)
6440         (viper-R-state-post-command-sentinel)
6441         (viper-replace-state-post-command-sentinel)
6442         (viper-change-state-to-insert, viper-change-state-to-emacs):
6443         * emulation/viper-util.el (viper-set-cursor-color-according-to-state)
6444         (viper-save-cursor-color, viper-get-saved-cursor-color-in-replace-mode)
6445         (viper-get-saved-cursor-color-in-insert-mode)
6446         (viper-get-saved-cursor-color-in-emacs-mode, viper-set-replace-overlay):
6447         Use viper-frame-value for viper-replace-overlay-cursor-color,
6448         viper-emacs-state-cursor-color, viper-insert-state-cursor-color, and
6449         viper-vi-state-cursor-color values.
6451         * emulation/viper-cmd.el (zmacs-region-stays):
6452         * emulation/viper-util.el (zmacs-region-stays): No need to define
6453         for compiler.
6455         * emulation/viper-keym.el (viper-add-keymap): Use mapc rather than
6456         mapcar on Emacs.
6458         * emulation/viper-mous.el (viper-counting-clicks-p): Only define
6459         on XEmacs.
6461         * emulation/viper-util.el (viper-set-minibuffer-overlay): Use when
6462         rather than if.
6464 2008-03-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6466         * whitespace.el: New version 9.3.  As the glyph code generation was
6467         fixed, it is possible now to use character code above ?\x1FFFF in the
6468         display table.  Fix `whitespace-indentation-regexp' to not include an
6469         extra ending character.  Reported by Michael Welsh Duggan
6470         <mwd@cert.org>.  Added hook actions when buffer is written or killed as
6471         the original whitespace package had.  Suggested by Eric Cooper
6472         <ecc@cmu.edu>.  Doc fix.
6473         (whitespace-action): New option.
6474         (whitespace-display-mappings): Changed default newline visualization to
6475         display downwards arrow, as the glyph code generation was fixed.
6476         (whitespace-unload-function): Assure that all local whitespace mode is
6477         turned off.
6478         (whitespace-global-modes): Fix type customization.
6479         (whitespace-mode, global-whitespace-mode, whitespace-cleanup-region)
6480         (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
6481         (whitespace-turn-off, whitespace-color-on, whitespace-display-char-on):
6482         Fix code.
6483         (whitespace-buffer): Command removed.
6484         (whitespace-trailing-regexp, whitespace-mark-x)
6485         (whitespace-display-window, whitespace-action-when-on)
6486         (whitespace-add-local-hook, whitespace-remove-local-hook)
6487         (whitespace-write-file-hook, whitespace-kill-buffer-hook)
6488         (whitespace-action): New funs.
6489         (whitespace-report-list, whitespace-report-text)
6490         (whitespace-report-buffer-name): New consts.
6491         (whitespace-report, whitespace-report-region): New commands.
6493 2008-03-01  Juanma Barranquero  <lekktu@gmail.com>
6495         * disp-table.el (make-glyph-code): Don't test the result of
6496         `face-id', which already signals an error for invalid faces.
6497         (glyph-face): Simplify.
6499         * desktop.el (desktop-read): Set `desktop-dirname' to nil before
6500         running `desktop-not-loaded-hook' to allow modifying it.
6501         Don't show warning message if `desktop-dirname' was modified.
6503 2008-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6505         * diff-mode.el (diff-sanity-check-hunk): Only accept an empty line if
6506         we still expect more lines.
6508         * textmodes/fill.el (fill-comment-paragraph): Don't try to do
6509         comment-paragraph filling if the commark doesn't match
6510         comment-start-skip.
6512 2008-03-01  Daiki Ueno  <ueno@unixuser.org>
6514         * international/utf-7.el (utf-7-encode): Never skip the trailing - for
6515         the `imap' variant.
6517 2008-03-01  Jason Rumney  <jasonr@gnu.org>
6519         * files.el (make-auto-save-file-name): Encode more characters in
6520         non-file buffer names.  Use url-encoding.
6522 2008-03-01  Juanma Barranquero  <lekktu@gmail.com>
6524         * net/net-utils.el (ftp-program): Fix typo in docstring.
6525         (ifconfig-program-options, netstat-program-options)
6526         (arp-program-options, route-program-options, nslookup-program-options)
6527         (ftp-program-options, smbclient-program-options)
6528         (dns-lookup-program-options, arp, route): Doc fixes.
6530         * progmodes/gdb-ui.el (gdb-pc-address, gdb-source-file-list)
6531         (gdb-cpp-define-alist-program, gdb-mouse-jump, gdb-get-buffer-create)
6532         (gdb-set-gud-minor-mode-existing-buffers-1, gdb-debug-log):
6533         Fix typos in docstrings.
6534         (gdb-pending-triggers): Reflow docstring.
6535         (gdb, gdb-init-1): Fix typos in docstrings of gud-def definitions.
6537 2008-03-01  Alan Mackenzie  <acm@muc.de>
6539         * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix a bug on
6540         typing "#" at EOB.
6542 2008-03-01  Juanma Barranquero  <lekktu@gmail.com>
6544         * emulation/cua-base.el (cua-remap-control-z): Fix typo in docstring.
6546 2008-02-29  Kim F. Storm  <storm@cua.dk>
6548         * emulation/cua-base.el (cua-remap-control-v)
6549         (cua-remap-control-z): New defcustoms.
6550         (cua-mode): Add them to set-after property.
6551         (cua--init-keymaps): Use them.
6552         Add C-x/C-c home, end, next, and prior to cua--prefix-repeat-keymap.
6554         * help.el (view-emacs-todo): Rename from view-todo.
6555         (describe-gnu-project): Rename from describe-project.  Users changed.
6556         (view-help-file): New helper function.
6557         (describe-distribution, describe-copying, describe-gnu-project)
6558         (view-todo, view-order-manuals, view-emacs-problems): Use it.
6559         (view-emacs-debugging, view-external-packages): New commands.
6560         (help-map): Move describe-distribution to C-h C-o (ordering).
6561         Move view-emacs-problems to C-h C-p (problems).
6562         Bind view-emacs-debugging to C-h C-d (debugging).
6563         Bind view-external-packages to C-h C-e (extras).
6564         (help-for-help-internal): Cleanup and align descriptions.
6565         Remove command names to reduce clutter.
6567 2008-02-29  Nick Roberts  <nickrob@snap.net.nz>
6569         * vc.el (vc-set-mode-line-busy-indicator): Use shorter message
6570         and quieter face (not a warning).
6572 2008-02-29  Dan Nicolaescu  <dann@ics.uci.edu>
6574         * vc.el (vc-status-crt-marked): New variable.
6575         (vc-status-mode): Make it local.
6576         (vc-status-refresh): Use it to save the marked files.
6577         (vc-update-vc-status-buffer): Use it to restore the marked files.
6579         * vc-svn.el (vc-svn-after-dir-status):
6580         * vc-hg.el (vc-hg-after-dir-status): Clean up the temporary buffer.
6582 2008-02-29  Glenn Morris  <rgm@gnu.org>
6584         * allout.el (allout-topic-encryption-bullet)
6585         (allout-passphrase-verifier-handling, allout-passphrase-hint-handling)
6586         (allout-encrypt-unencrypted-on-saves): Change defcustom :version
6587         from 22.0 to 22.1.
6589         * net/imap.el (imap-ping-server):
6590         * net/tls.el (tls-checktrust, tls-untrusted, tls-hostmismatch):
6591         Change defcustom :version from 23.0 to 23.1.
6593 2008-02-29  Juanma Barranquero  <lekktu@gmail.com>
6595         * desktop.el (desktop-save): Save the buffer name if the
6596         uniquified base name is empty.
6598 2008-02-29  Nick Roberts  <nickrob@snap.net.nz>
6600         * progmodes/gdb-ui.el (gdb-info-stack-custom): Apply function-name-face
6601         correctly when user has "set print address off".
6603 2008-02-28  Juanma Barranquero  <lekktu@gmail.com>
6605         * cus-edit.el (custom-mode, custom-mode-hook): Use 23.1 as
6606         version number of the next major Emacs release, not 23.0.
6608         * longlines.el (longlines-unload-function): New function.
6610 2008-02-28  Juri Linkov  <juri@jurta.org>
6612         * startup.el (normal-splash-screen): Add argument `concise'.
6613         Remove unused binding `prev-buffer'.  Let-bind `splash-buffer'
6614         to the created buffer.  If `concise' is non-nil, call
6615         `display-buffer', otherwise `switch-to-buffer'.  Doc fix.
6616         (display-startup-screen): Add argument `concise' to the call to
6617         `normal-splash-screen'.
6619 2008-02-28  Kim F. Storm  <storm@cua.dk>
6621         * startup.el (startup-echo-area-message): Check for about-emacs.
6623 2008-02-28  Juri Linkov  <juri@jurta.org>
6625         * startup.el: Always add initial message to *scratch* buffer if
6626         `initial-scratch-message' is non-nil regardless of the value of
6627         `inhibit-startup-screen'.
6628         (inhibit-startup-screen, initial-scratch-message): Doc fix.
6629         (command-line-1): Move code that inserts `initial-scratch-message'
6630         up before the if-form that checks for `inhibit-startup-screen'.
6631         Suggested by Jonathan Rockway <jon@jrock.us>.
6633 2008-02-28  Juri Linkov  <juri@jurta.org>
6635         * cus-edit.el (custom-mode-map, custom-mode-link-map):
6636         Rename `custom-mode' to `Custom-mode' in docstrings.
6637         (custom-buffer-create-internal, customize-browse):
6638         Rename `custom-mode' to `Custom-mode'.
6639         (custom-mode-hook): Rename to `Custom-mode-hook'.
6640         (Custom-mode-hook): Renamed from `custom-mode-hook'.
6641         (custom-mode): Rename to `Custom-mode'.
6642         (Custom-mode): Renamed from `custom-mode'.  Doc fix.
6643         (custom-mode): Add backward-compatible non-interactive variant of
6644         `Custom-mode' that simply calls `Custom-mode'.  Mark it obsoleted.
6645         (custom-mode-hook): Mark it as obsolete alias of `Custom-mode-hook'.
6647         * info-look.el: Rename `custom-mode' to `Custom-mode'.
6649         * emulation/viper.el (viper-emacs-state-mode-list):
6650         Rename `custom-mode' to `Custom-mode'.
6652         * menu-bar.el (menu-bar-search-menu, menu-bar-replace-menu):
6653         Capitalize "Tagged Files".
6654         (minibuffer-local-map): Add menu items for next/previous
6655         history elements and isearch history forward/backward.
6657         * progmodes/hideshow.el (hs-minor-mode-menu): Compare
6658         `hs-isearch-open' with t instead of `comment' in :selected
6659         for "Code and Comment blocks" menu item.
6661 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6663         * uniquify.el (uniquify-buffer-base-name): Undo last change.
6664         Should be done in desktop.el instead.
6666 2008-02-28  Glenn Morris  <rgm@gnu.org>
6668         * autoinsert.el (auto-insert-alist): Update to FDL 1.2.
6670         * emacs-lisp/byte-run.el (make-obsolete): Doc fix.
6672         * mail/emacsbug.el: Remove leading `*' from defcustom doc-strings.
6673         (Info-menu, Info-goto-node): Remove declarations.
6674         (report-emacs-bug-info): Use info rather than Info-goto-node.
6676         * progmodes/idlwave.el (Info-goto-node): Remove declaration.
6677         (idlwave-convert-xml-system-routine-info): Don't require xml.
6678         (idlwave-show-commentary, idlwave-shell-show-commentary):
6679         Don't require finder.
6680         (idlwave-info): Don't require info.  Use info rather than
6681         Info-goto-node.
6683         * textmodes/org.el (Info-goto-node): Remove declaration.
6684         (org-info): Use info rather than Info-goto-node.
6686         * textmodes/reftex.el (reftex-show-commentary): Don't require finder.
6687         (reftex-info): Don't require info.  Use info rather than Info-goto-node.
6689 2008-02-28  Dan Nicolaescu  <dann@ics.uci.edu>
6691         * progmodes/hideshow.el (hs-minor-mode-menu): Add some options to
6692         the menu.
6694         * vc.el (vc-deduce-fileset, vc-next-action, vc-start-entry)
6695         (vc-finish-logentry): Check for vc-status-mode, not only for
6696         vc-dired-mode.
6698 2008-02-28  Kenichi Handa  <handa@ni.aist.go.jp>
6700         * isearch.el (isearch-printing-char): Don't check
6701         keyboard-coding-system.
6702         Call isearch-process-search-multibyte-characters only when
6703         current-input-method is non-nil.
6705 2008-02-27  Kim F. Storm  <storm@cua.dk>
6707         * disp-table.el (make-glyph-code): Encode as cons if face id > 63.
6708         (glyph-char, glyph-face): Handle cons encoding.
6710 2008-02-27  Juanma Barranquero  <lekktu@gmail.com>
6712         * uniquify.el (uniquify-buffer-base-name): If the base name is an
6713         empty string, return nil to allow the caller to default to the
6714         buffer name.  Reported by Martin Fischer <parozusa@web.de>.
6716         * tool-bar.el (tool-bar-setup): Doc fix.
6718         * mail/supercite.el (sc-describe):
6719         Fix typos in obsolescence declaration.
6721 2008-02-27  Glenn Morris  <rgm@gnu.org>
6723         * autoinsert.el (auto-insert-alist): Change permission text to
6724         match FSF's GPLv3 form.
6726         * mail/supercite.el (sc-cite-original): Doc fix.
6727         (sc-version): Make obsolete.
6728         (sc-describe): Show the SC info page.  Make obsolete.
6730 2008-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6732         * simple.el (set-mark-command): Deactivate mark on second C-SPC C-SPC
6733         when using transient-mark-mode.
6734         (default-indicate-unused-lines): Remove unused var.
6736 2008-02-26  Jan Djärv  <jan.h.d@swipnet.se>
6738         * progmodes/grep.el (grep-mode-tool-bar-map): Change place on next
6739         and previous.
6741         * progmodes/compile.el (compilation-mode-tool-bar-map): The same.
6743 2008-02-26  Glenn Morris  <rgm@gnu.org>
6745         * net/net-utils.el (top-level): Don't require comint when compiling.
6746         (nslookup-font-lock-keywords): Don't require font-lock.
6747         Use font-lock faces rather than variables.
6748         (nslookup, ftp, smbclient, network-service-connection):
6749         Don't require comint.
6750         (comint-prompt-regexp, comint-input-autoexpand)
6751         (comint-input-ring): Declare for compiler.
6752         (comint-mode, ffap-string-at-point, comint-exec): Autoload.
6753         (dns-lookup-host): Don't require ffap.  Remove `with-no-warnings'.
6755         * ibuffer.el (ibuffer-do-toggle-read-only): Don't use `iff' in
6756         doc-string.
6758 2008-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6760         * doc-view.el (doc-view-current-page): Add a `win' argument.
6762 2008-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6764         * doc-view.el (doc-view-conversion-buffer): Give it an internal name.
6765         Demote it to plain defvar.
6766         (doc-view-conversion-refresh-interval): Reduce interval.
6767         (doc-view-goto-page): Allow moving to pages not yet rendered.
6768         (doc-view-goto-page): Construct a file name rather than extracting it
6769         from doc-view-current-files.
6770         (doc-view-kill-proc): Ignore errors from kill-process.
6771         (doc-view-pdf/ps->png-sentinel): Die gracefully if the buffer is dead.
6772         (doc-view-insert-image): Use appropriate text if the page hasn't been
6773         rendered yet.  Adjust scrolling so the text is displayed.
6774         (doc-view-display): Detect not just that a page is available, but also
6775         that it wasn't available before, so as to avoid refreshing all pages
6776         repeatedly.
6777         (doc-view-mode): Make doc-view-cache-directory if needed.
6779 2008-02-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
6781         * ibuffer.el (ibuffer-do-toggle-read-only): New optional arg as in
6782         toggle-read-only.
6784         * textmodes/bibtex.el (bibtex-format-entry): Handle error message
6785         refering to a missing required field with the OPT prefix.
6786         Make unwindform more robust.
6788         * textmodes/bibtex.el: Remove support for hideshow minor mode as
6789         it duplicates the bibtex support in progmodes/hideshow.el.
6790         * progmodes/hideshow.el (hs-special-modes-alist): Allow bibtex
6791         entries that do not start at the beginning of a line.
6793 2008-02-25  Chong Yidong  <cyd@stupidchicken.com>
6795         * files.el (shell-quote-wildcard-pattern): Quote ' and " as well.
6797 2008-02-25  Robert J. Chassell  <bob@rattlesnake.com>
6799         * help-fns.el (describe-variable): Add phrases about
6800         initialization file with and without customization;
6801         use new button type help-info-variable.
6803         * help-mode.el (help-info-variable):
6804         New button able to read Info files for help-fns.el.
6806 2008-02-25  Jan Djärv  <jan.h.d@swipnet.se>
6808         * progmodes/grep.el (grep-mode-tool-bar-map): New variable.
6809         (grep-mode): Use grep-mode-tool-bar-map.
6811         * progmodes/compile.el (tool-bar): Require tool-bar.
6812         (compilation-mode-tool-bar-map): New variable.
6813         (compilation-mode): Use compilation-mode-tool-bar-map.
6815         * term/x-win.el (x-gtk-stock-map): Add cancel.  Remove extensions.
6817 2008-02-25  Glenn Morris  <rgm@gnu.org>
6819         * vc-sccs.el (vc-sccs-diff): Fix setting of oldvers and newvers.
6821 2008-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6823         * diff-mode.el (diff-file-junk-re): New const.
6824         (diff-beginning-of-file-and-junk): Use it.
6825         (diff-file-kill): Make sure we were really inside a file diff.
6827         * diff-mode.el: Make it more robust in the presence of empty context
6828         lines in unified hunks.
6829         (diff-valid-unified-empty-line): New var.
6830         (diff-unified->context, diff-sanity-check-hunk): Obey it.
6831         (diff-end-of-hunk): Obey it.  New arg `donttrustheader'.
6832         (diff-fixup-modifs, diff-post-command-hook): Use this new arg.
6833         (diff-hunk-header-re-unified): New const.
6834         (diff-font-lock-keywords, diff-hunk-header-re, diff-split-hunk)
6835         (diff-fixup-modifs, diff-unified->context, diff-next-complex-hunk)
6836         (diff-sanity-check-hunk): Use it.
6838         * diff-mode.el (diff-beginning-of-file-and-junk): If we're on the
6839         Index: line, don't search backward for the previous one.
6841 2008-02-25  Kenichi Handa  <handa@ni.aist.go.jp>
6843         * international/fontset.el (setup-default-fontset): Add non-OTF
6844         lao font for lao script.
6846         * language/tibetan.el: Register tibetan-composition-function in
6847         composition-function-table.
6849         * language/tibet-util.el (tibetan-composition-function):
6850         Adjust for the new calling way (argument changed).  Try font-shape-text
6851         if possible.
6853         * language/lao.el: Register lao-composition-function in
6854         composition-function-table.
6856         * language/lao-util.el (lao-composition-function): Adjust for the new
6857         calling way (argument changed).  Try font-shape-text if possible.
6859 2008-02-25  Jason Rumney  <jasonr@gnu.org>
6861         * files.el (file-name-invalid-regexp): Fix octal/decimal confusion.
6863 2008-02-25  Juri Linkov  <juri@jurta.org>
6865         * isearch.el (isearch-fail): Use "RosyBrown1" for a light
6866         background, "red4" for a dark background, "red" for 16 and
6867         8 colors, "grey" for grayscale, and inverse video otherwise.
6868         Add :version tag.
6869         (isearch-message): Keep the original isearch-message intact, and
6870         add text properties to it where necessary.  Add `isearch-error' to
6871         the condition that checks if isearch is unsuccessful.
6873 2008-02-24  Juri Linkov  <juri@jurta.org>
6875         * progmodes/compile.el (compilation-handle-exit):
6876         Use compilation-error face instead of font-lock-warning-face.
6877         Display the same message in the minibuffer as is inserted
6878         at the end of the compilation buffer.
6880 2008-02-24  Glenn Morris  <rgm@gnu.org>
6882         * vc-cvs.el (vc-cvs-register): Fix registering of directories in
6883         multiple file case.
6885         * vc-mcvs.el (vc-mcvs-register): Fix let-binding (for use of `file').
6887         * vc-rcs.el (vc-rcs-register): Fix treatment of directories in
6888         multiple file case.  Use a single `let' rather than two.
6890 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
6892         * progmodes/compile.el (compilation-start): Specify a face for
6893         mode-line-process.
6894         (compilation-handle-exit): Specify a face and a tooltip for
6895         mode-line-process.
6897 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6899         * hilit-chg.el: Remove spurious * in defcustom docstrings.
6900         (hilit-chg-make-ov): Simplify.
6901         (hilit-chg-fixup): Use remove-overlays.
6902         (hilit-chg-set-face-on-change): Remove redundant call to
6903         `remove-text-properties'.
6905         * dired.el (dired-mark-prompt): Don't count/display the t element.
6906         Reported by Carsten Blaauw <it-media.blaauw@daimler.com>.
6908 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
6910         * progmodes/verilog-mode.el (eval-when-compile): Don't define
6911         add-submenu.
6912         (verilog-xemacs-menu): Add :keys for C-M-a, C-M-e and C-M-h.
6913         Remove.  Move contents to the only use ...
6914         (verilog-menu): ... here.
6915         (verilog-statement-menu): Remove.  Move contents to the only use ...
6916         (verilog-stmt-menu): ... here.
6917         (verilog-mark-defun): Simply call mark-defun for emacs.
6918         (occur-pos-list): Declare for byte compiler.
6919         (mode-popup-menu): Don't defvar.
6920         (verilog-add-statement-menu): Remove.
6921         (verilog-mode-hook): Don't add verilog-add-statement-menu.
6922         (verilog-mode): Call easy-menu-add and set mode-popup-menu for XEmacs.
6924 2008-02-24  Michael McNamara  <mac@mail.brushroad.com>
6926         * progmodes/verilog-mode.el (verilog-xemacs-menu): Remove XEmacs
6927         conditional.
6928         (verilog-font-grouping-keywords-face): Make the begin..end
6929         keywords standout more than other verilog keywords.
6930         (verilog-type-font-keywords): Move the begin..end out of this list
6931         to facilitate making them to (potentially) stand out more.
6932         (verilog-backward-token): Fix indent of bare always{_*}?, initial,
6933         function & task blocks.
6934         (verilog-behavioral-block-beg-re): Fix indent of bare always{_*}?,
6935         initial, function & task blocks.
6936         (verilog-forward-sexp): Handle the new "disable fork" statement of
6937         IEEE-1800 Verilog.
6938         (verilog-beg-block-re-ordered): Handle the new "disable fork"
6939         statement of IEEE-1800 Verilog.
6940         (verilog-calc-1): Handle the new "disable fork" statement of
6941         IEEE-1800 Verilog.
6942         (verilog-disable-fork-re): Add const to help handle the new
6943         "disable fork" statement of IEEE-1800 Verilog.
6944         (verilog-declaration-core-re): Add port directions by themselves,
6945         with no qualification, as base item of a declaration.
6946         (verilog-pretty-declarations): Add new flag to ask it to refrain
6947         from printing to the message buffer.
6948         (verilog-pretty-expr): Add a QUIET flag to ask it to refrain from
6949         printing to the message buffer.  Improve handling of the many
6950         types of expression line up.
6951         (verilog-just-one-space): Remove printing of an empty message.
6952         (verilog-get-lineup-indent): Rework to support the better handling
6953         of expression lineup for verilog-pretty-expr.
6954         (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
6956 2008-02-24  Alan Mackenzie  <acm@muc.de>
6958         * progmodes/cc-mode.el (c-extend-region-for-CPP): Bug fix from
6959         yesterday's commit.
6961 2008-02-24  Nick Roberts  <nickrob@snap.net.nz>
6963         * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint): Fall back
6964         to mouse-set-point in buffers that aren't associated with files.
6966         * progmodes/gud.el: Rename menu item to "Show GUD tooltips".
6968 2008-02-24  Alan Mackenzie  <acm@muc.de>
6970         Set of changes so that "obtrusive" syntactic elements in a
6971         C/C++/ObjC preprocessor line (e.g. an unbalanced string quote or
6972         unmatched paren) don't interact syntactically with stuff outside
6973         the CPP line.
6975         * progmodes/cc-awk.el (c-awk-beyond-logical-line, c-awk-old-ByLL):
6976         Replace c-awk-end-of-logical-line and c-awk-old-EoLL to solve an
6977         off-by-one bug.
6978         (c-awk-record-region-clear-NL): Replaces c-awk-before-change, with
6979         a bit of refactoring.
6980         (c-awk-extend-and-syntax-tablify-region): Takes some of the
6981         functionality of c-awk-advise-fl-for-awk-region, which has been
6982         refactored away.
6984         * progmodes/cc-defs.el (c-clear-char-property-with-value-function)
6985         (c-clear-char-property-with-value): New function and macro which
6986         remove text-properties `equal' to a supplied value.
6988         * progmodes/cc-engine.el: Comment about text properties amended.
6990         * progmodes/cc-fonts.el (c-cpp-matchers): Make it put regexp
6991         parens around "error\\|warning".
6993         * progmodes/cc-langs.el (c-get-state-before-change-function)
6994         (c-before-font-lock-function, c-anchored-cpp-prefix):
6995         New language variables.
6996         (c-cpp-message-directives): Handle "#warning" in C, C++ and ObjC.
6998         * progmodes/cc-mode.el (c-basic-common-init): C and ObjC now use
6999         syntax-table text properties.
7000         (c-common-init): Call language specific before/after-change
7001         functions at mode initialisation.
7002         (c-new-BEG, c-new-END, c-old-BOM, c-old-EOM): New variables.
7003         (c-extend-region-for-CPP, c-neutralize-CPP-line)
7004         (c-neutralize-syntax-in-CPP): New functions.
7005         (c-before-change, c-after-change): Call the new language specific
7006         change functions defined in cc-langs.el.
7007         (c-advise-fl-for-region): New macro.
7008         (awk-mode): Remove AWK specific stuff which has been refactored
7009         into language independent stuff.
7011 2008-02-24  Nick Roberts  <nickrob@snap.net.nz>
7013         * progmodes/gdb-ui.el (gdba): Recreate as an alias for gdb.
7014         (gdb): (Re)set gdb-flush-pending-output to nil here...
7015         (gdb-init-1): ...instead of here (before gdb-prompt).
7017 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7019         * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
7020         Recognize ''' just like any other char-constant.
7022 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7024         * vc-hooks.el (vc-find-root): Remove initial loop because it's not
7025         careful enough.  Detect the uid-change all within the main loop.
7027 2008-02-24  Stefan Monnier  <monnier@pastel.home>
7029         * textmodes/sgml-mode.el (sgml-mode): Fix comment syntax.
7031 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7033         * hilit-chg.el (highlight-save-buffer-state): New macro.
7034         (highlight-save-buffer-state, hilit-chg-set-face-on-change)
7035         (hilit-chg-clear): Use it to preserve the modified-p flag.
7036         (highlight-changes-rotate-faces): Don't mess with the undo-list.
7038 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7040         * font-lock.el (font-lock-set-defaults): Unset previously set variables
7041         when needed.
7043 2008-02-24  Ævar Arnfjörð Bjarmason  <avar@cpan.org>  (tiny change)
7045         * net/rcirc.el (rcirc-url-regexp): Replace definition by copying
7046         from gnus-button-url-regexp.
7048 2008-02-24  Eli Zaretskii  <eliz@gnu.org>
7050         * progmodes/compile.el (compilation-next-error): Doc fix.
7051         (compilation-find-file): Doc fix.
7053 2008-02-24  Glenn Morris  <rgm@gnu.org>
7055         * net/net-utils.el (ipconfig-program, ipconfig-program-options):
7056         Add obsolete aliases to the old names.
7058 2008-02-24  Richard Stallman  <rms@gnu.org>
7060         * net/net-utils.el (ifconfig): Rename from ipconfig.
7061         (ipconfig): Alias to ifconfig.
7062         (ifconfig-program): Rename from ipconfig-program.
7063         (ifconfig-program-options): Rename from ipconfig-program-options.
7065 2008-02-24  Michael McNamara  <mac@mail.brushroad.com>
7067         * progmodes/verilog-mode.el (verilog-declaration-core-re):
7068         Add port directions by themselves, with no qualification, as base
7069         item of a declaration.
7070         (verilog-pretty-declarations): Add new flag that inhibits printing
7071         to the message buffer.
7072         (verilog-pretty-expr): Add new flag that inhibits printing to the
7073         message buffer.  Improve handling of the many types of expression
7074         line up.
7075         (verilog-just-one-space): Don't print an empty message.
7076         (verilog-get-lineup-indent): Rework to support the better handling
7077         of expression lineup for verilog-pretty-expr.
7078         (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
7079         (verilog-mode-version, verilog-mode-release-date): Update.
7081 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7083         * subr.el (cancel-change-group): Don't move point.
7085 2008-02-23  Markus Triska  <markus.triska@gmx.at>
7087         * linum.el (linum-after-config): Update all visible windows.
7089 2008-02-23  Glenn Morris  <rgm@gnu.org>
7091         * menu-bar.el (menu-bar-games-menu): Add Bubbles and Pong.
7092         Add :help for Solitaire and Tetris.
7094         * tree-widget.el (tree-widget-lookup-image): Let-bind `file'.
7096         * mail/smtpmail.el: Remove leading `*' from defcustom doc-strings.
7097         (smtpmail-code-conv-from): Doc fix.  Fix custom type.
7098         (smtpmail-queue-index-file): Make it a defcustom.
7099         (smtpmail-queue-index): Delete.
7100         (smtpmail-send-it, smtpmail-send-queued-mail):
7101         Use smtpmail-queue-index-file and smtpmail-queue-dir rather than
7102         smtpmail-queue-index.
7104         * net/net-utils.el (iwconfig-program, iwconfig-program-options):
7105         Add :version.
7107 2008-02-23  Yoni Rabkin  <yoni@rabkins.net>  (tiny change)
7109         * net/net-utils.el (iwconfig-program, iwconfig-program-options):
7110         New variables.
7111         (iwconfig): New function.
7113 2008-02-23  Dan Nicolaescu  <dann@ics.uci.edu>
7115         * vc.el (vc-find-revision): Make vc-parent-buffer local before
7116         setting it.
7117         (vc-status-menu-map): Do not define using easy-menu.
7118         (vc-status-menu-map): New defalias.
7119         (vc-status-mode-map): Hook up the menu.
7120         (top-level): Update TODO.
7122         * vc-hg.el (vc-hg-extra-status-menu): Return a keymap.
7124         * vc-bzr.el (vc-bzr-init-version): Rename to ...
7125         (vc-bzr-init-revision): ... this.
7127 2008-02-23  Jason Rumney  <jasonr@gnu.org>
7129         * makefile.w32-in (WINS_ALMOST): Remove term.
7130         (WINS): Add term here.
7131         (custom-deps, finder-data): Use WINS_ALMOST.
7133 2008-02-22  Juanma Barranquero  <lekktu@gmail.com>
7135         * faces.el (font-weight-table): Fix value of `semi-light'.
7137 2008-02-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7139         * faces.el (font-weight-table, font-slant-table, font-swidth-table):
7140         Make those tables bijective.
7142 2008-02-22  Ken Manheimer  <ken.manheimer@gmail.com>
7144         Finish pdbtrack integration cleanup, settling missing-functions
7145         byte compiler warnings appropriately.
7147         * progmodes/python.el (python-point): Remove this - beginning-of-line
7148         was all that was necessary for `python-pdbtrack-overlay-arrow'.
7149         (python-end-of-def-or-class, python-beginning-of-def-or-class)
7150         (python-goto-initial-line): Drop these - they were only needed for
7151         python-point.
7152         (python-comint-output-filter-function): Use condition-case and
7153         beginning-of-line directly, instead of python-mode.el functions
7154         which require all sorts of baggage.
7155         (point-safe): Unnecessary - we're using condition-case directly,
7156         instead.
7157         (python-execute-file): Include for python-shell, which I'm leaving
7158         in keeping despite it being unnecessary for pdb tracking.
7160 2008-02-22  Peter Danenberg  <pcd@wikitex.org>  (tiny change)
7162         * progmodes/scheme.el (scheme-font-lock-keywords-2):
7163         Add SRFI 11 support.
7164         (let-values, let*-values): Specify scheme-indent-function.
7166 2008-02-22  Dan Nicolaescu  <dann@ics.uci.edu>
7168         * vc.el (vc-exec-after): Move setting mode-line-process in the
7169         busy case ...
7170         (vc-set-mode-line-busy-indicator): ... in this new function.
7171         (vc-status-refresh): Call vc-set-mode-line-busy-indicator.
7172         (vc-update-vc-status-buffer): Reset mode-line-process.
7173         (vc-status-mark-all-files, vc-status-unmark-all-files): Change to
7174         mark/unmark all the files with the same state as the current one.
7175         With a prefix argument mark/unmark all files.
7176         (vc-status-mode-menu): Adjust strings.
7177         (vc-update-vc-status-buffer): Only do something when the argument
7178         is not nil.
7179         (vc-status-kill-dir-status-process): New function.
7180         (vc-status-mode-map): Bind it.
7181         (vc-status-process-buffer): New variable.
7182         (vc-status-mode): Make it local.
7183         (vc-status-refresh): Set it.
7185         * vc-hg.el (vc-hg-dir-status):
7186         * vc-git.el (vc-git-dir-status):
7187         * vc-svn.el (vc-svn-dir-status): Return the buffer in which the
7188         command is run.
7190 2008-02-22  Glenn Morris  <rgm@gnu.org>
7192         * json.el (top-level): No need to require thingatpt.
7193         (json-read-keyword): Use thing-at-point rather than word-at-point.
7195         * time.el (top-level): No need to require time-date when compiling.
7197         * emacs-lisp/copyright.el (copyright-update-year):
7198         Fix subexpression numbering for the case when years are split over
7199         lines, and for the replace case.
7201         * emulation/tpu-edt.el (tpu-have-ispell): Doc fix.  Make obsolete.
7202         (tpu-caar, tpu-cadr): Delete functions.
7203         (zmacs-regions): No need to declare for compiler.
7204         (tpu-goto-breadcrumb): Use cadr rather than tpu-cadr.
7205         (tpu-spell-check): Rewrite, and handle mark after point.
7206         (tpu-special-insert): Use or rather than if.
7208         * emulation/vip.el (vip-special-prefix-com): Use ispell-region
7209         rather than spell-region.
7211         * textmodes/spell.el (spell-buffer, spell-word): Suppress compiler
7212         warnings about spell-region.
7214 2008-02-22  Kenichi Handa  <handa@ni.aist.go.jp>
7216         * ldefs-boot.el: Regenerated.
7218         * loadup.el: Don't load language/devanagari, language/kannanda,
7219         language/malayalam, and language/tamil.  Load language/sinhala.
7221         * language/indian.el (indian-font-foundry)
7222         (indian-script-language-alist, indian-font-char-index-table)
7223         (indian-font-char, indian-font-char-range, indian-script-table)
7224         (indian-default-script, indian-composable-pattern): Delete them.
7225         ("Devanagari", "Kannada", "Malayalam", "Tamil"): Definitions of
7226         language environments moved to here.
7227         ("Bengali", "Punjabi", "Gujarati", "Oriya", "Telugu"):
7228         New language environments.
7230         * language/devanagari.el, language/devan-util.el,
7231         * language/kannanda.el, language/knd-util.el, language/malayalam.el,
7232         * language/mlm-util.el, language/tamil.el, language/tml-util.el:
7233         Delete them.
7235         * language/sinhala.el: New file.
7237 2008-02-21  Ken Manheimer  <ken.manheimer@gmail.com>
7239         Update Nick Robert's port of pdb tracking from python-mode.el.
7241         * progmodes/python.el (python-pdbtrack-toggle-stack-tracking):
7242         Clarify docstring.
7243         (python-pdbtrack-minor-mode-string): A sign indicating that pdb
7244         tracking is happening.
7245         (python-pdbtrack-stack-entry-regexp): Better recognize stack traces.
7246         (python-pdbtrack-input-prompt): Better recognize PDB prompts.
7247         (comint-output-filter-functions): Add python-pdbtrack-track-stack-file.
7248         Tracking is plugged in to all comint buffers once python.el is loaded.
7249         (python-pdbtrack-overlay-arrow): Toggle activation of
7250         `python-pdbtrack-minor-mode-string' in addition to the overlay arrow.
7251         (python-pdbtrack-track-stack-file): Use new
7252         `python-pdbtrack-get-source-buffer' for more flexible access to
7253         debugging source files.
7254         (python-pdbtrack-get-source-buffer): Identify debugging target buffer
7255         according to pdb stack trace, optionally using new
7256         `python-pdbtrack-grub-for-buffer' if file is not locally available.
7257         (python-pdbtrack-grub-for-buffer): Find most recent python-mode
7258         named buffer, or having function with indicated name.
7259         (python-shell): Remove comint-output-filter-functions hook
7260         addition, it's being done elsewhere.  Wrap long line.
7262 2008-02-21  Michael Olson  <mwolson@gnu.org>
7264         * json.el: Replace XEmacs compatibility code to get rid of
7265         compiler warnings.
7267         * time.el: Fix compiler warning.
7269 2008-02-21  Edward O'Connor  <ted@oconnor.cx>
7271         * json.el: New file (JavaScript Object Notation parser / generator).
7273 2008-02-21  Dave Love  <fx@gnu.org>
7275         * progmodes/sym-comp.el: New file.
7277         * progmodes/python.el: Merge from Dave Love's 2008-01-20 version.
7278         Require sym-comp.  Add Python buffer to same-window-buffer-names.
7279         Fixup whitespaces.
7280         (python-font-lock-keywords): Add highlighting for Python builtins.
7281         (python-font-lock-syntactic-keywords): Rewrite.
7282         (python-quote-syntax): Use syntax-ppss-context instead of parsing
7283         ppss directly.
7284         (python-mode-map): Add binding for python-find-function.
7285         (python-calculate-indentation): Clean up the logic.
7286         (python-beginning-of-defun): Explicitly set return value.
7287         (python-beginning-of-statement): Stop looping if we get stuck
7288         going backwards.
7289         (python-next-statement): Stop looping if we somehow end up inside
7290         a string while advancing.
7291         (python-preoutput-continuation, python-version-checked): New vars.
7292         (python-check-version): New function.
7293         (run-python): Set default command to python-command instead of
7294         python-python-command.
7295         (run-python): Use python-check-version.  Give PYTHONPATH
7296         precedence over data-directory in the process environment.
7297         Load function definitions in python process after.
7298         (python-check-comint-prompt): New function.
7299         (python-send-command, python-send-receive): Use it.
7300         (python-complete-symbol, python-try-complete): Functions deleted.
7301         Use symbol-complete instead of python-complete-symbol throughout.
7302         (python-fill-paragraph): Further refine the fenced-string regexp.
7303         (def-python-skeleton): Expand to the original abbrev instead if in
7304         a comment or string.  Tweak skeletons for `if', `while', `for',
7305         `try/except', `try/finally', `name'.
7306         (python-pea-hook, python-abbrev-pc-hook): New functions.
7307         (python-abbrev-syntax-table): New var.
7308         (python-mode): Add python-pea-hook to pre-abbrev-expand-hook.
7309         Use symbol-completion-try-complete for hippie expansion.
7310         Turn on font lock unconditionally.
7311         (python-mode-hook): Defcustom it.  No need to use make-local
7312         variable on indent-tabs-mode in "Turn off Indent Tabs mode"
7313         option, since it's buffer-local.
7315 2008-02-21  Juanma Barranquero  <lekktu@gmail.com>
7317         * play/hanoi.el (hanoi-internal): Set `show-trailing-whitespace' to nil.
7319 2008-02-21  Drew Adams  <drew.adams@oracle.com>
7321         * mouse.el (minor-mode-menu-from-indicator): Create a menu with a
7322         "Turn off" and a "Help" entry when the minor mode has no menu.
7324 2008-02-21  Dan Nicolaescu  <dann@ics.uci.edu>
7326         * vc.el (vc-status-mark, vc-status-unmark): New functions.
7327         (vc-status-mode-map, vc-status-mode-menu): Bind them instead of
7328         vc-status-mark-file and vc-status-unmark-file.
7329         (vc-status-mark-unmark): New function.
7330         (vc-status-previous-line, vc-status-next-line): No longer interactive.
7332 2008-02-21  Glenn Morris  <rgm@gnu.org>
7334         * composite.el (encode-composition-rule): Fix typo in error message.
7335         (composition-function-table, auto-composition-mode): Doc fixes.
7337         * subr.el (sit-for): Fix obsolete form for nil second argument.
7339         * textmodes/spell.el (spell-buffer, spell-word, spell-region)
7340         (spell-string): Make obsolete, in favor of ispell.
7342 2008-02-21  Kenichi Handa  <handa@ni.aist.go.jp>
7344         * language/devanagari.el: Don't setup composition-function-table
7345         here.
7346         ("Devanagari"): Change charset, coding-system, coding-priority to
7347         Unicode-based ones.  Don't require the feature devan-util.
7349         * composite.el (compose-chars-after): Fix arguments for a function
7350         in composition-function-table.
7351         (auto-compose-region): Likewise.
7353         * ps-mule.el (ps-mule-font-info-database-bdf): Use ethio16f-uni.bdf
7354         for Ethiopic.
7355         (ps-mule-plot-string): Ignore glyph-string based compositions.
7357 2008-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7359         * doc-view.el: Allow different windows to show different pages.
7360         (doc-view-current-page, doc-view-current-slice, doc-view-current-info)
7361         (doc-view-current-image, doc-view-current-overlay): Remove variables,
7362         add them back as macros instead, using image-mode-winprops instead.
7363         Update all users of those variables.
7364         (doc-view-new-window-function): New function to create a new overlay
7365         for each new window.
7366         (doc-view-mode): Use it and image-mode-setup-winprops.
7367         (doc-view-clone-buffer-hook): Rewrite accordingly.
7369         * image-mode.el: Extend [hv]scroll support to per-window properties.
7370         (image-mode-current-vscroll, image-mode-current-hscroll): Remove.
7371         (image-mode-winprops-alist): New var to replace them.
7372         (image-mode-new-window-functions): New hook.
7373         (image-mode-winprops, image-mode-window-get, image-mode-window-put):
7374         New funs.
7375         (image-set-window-vscroll, image-set-window-hscroll): Use them.
7376         Remove the `window' argument, update callers.
7377         (image-mode-reapply-winprops): Rename image-reset-current-vhscroll.
7378         Use the new functions.
7379         (image-mode-reapply-winprops): New fun.
7380         (image-mode): Use it.
7382 2008-02-20  Jay Belanger  <jay.p.belanger@gmail.com>
7384         * calc/calc-math.el (math-sin-raw): Add optional argument
7385         to keep track of original argument.
7386         (math-cos-raw): Use optional argument when calling math-sin-raw.
7387         (math-sin-raw-2, math-cos-raw-2): Check for a zero argument
7388         with close to original precision.
7390 2008-02-20  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7392         * textmodes/bibtex.el (bibtex-convert-alien): Do not use optional
7393         args in calls of sit-for.
7395 2008-02-20  Juanma Barranquero  <lekktu@gmail.com>
7397         * vc-svn.el (vc-svn-program): Fix typo in docstring.
7398         (vc-svn-checkin): Fix typo in error message.
7400         * help-mode.el: Require easymenu when compiling.
7402 2008-02-20  Dan Nicolaescu  <dann@ics.uci.edu>
7404         * help-mode.el (help-mode-menu): New menu.
7406 2008-02-20  Glenn Morris  <rgm@gnu.org>
7408         * mail/rmail.el (rmail-autodetect): Add .exe extension to movemail
7409         on Windows.
7411 2008-02-20  Kenichi Handa  <handa@ni.aist.go.jp>
7413         * ps-mule.el (ps-mule-encode-region): Return a single string.
7414         (ps-mule-plot-string): Adjust for the above change.
7415         (ps-mule-encode-header-string): Likewise.
7417         * international/latin1-disp.el (latin1-display): Don't use
7418         ucs-mule-8859-to-mule-unicode.  Fix the way of resetting
7419         standard-display-table.
7420         (latin1-display-identities): Adjust for the change of what is
7421         returned by (get-language-info charset 'charset).
7423         * international/mule-util.el (char-displayable-p): Fix for Latin-1
7424         characters and terminal case.
7426 2008-02-19  Ken Manheimer  <ken.manheimer@gmail.com>
7428         Minor Adaptions by Nick Roberts <nickrob@snap.net.nz> for Emacs.
7430         * progmodes/python.el: Also require comint when loading.
7431         (python-mode-map): Bind python-pdbtrack-toggle-stack-tracking.
7432         Replace python-shell with run-python on menu bar.
7433         (python-shell-map): New map.
7434         (python-default-interpreter, python-python-command-args)
7435         (python-jython-command-args, python-pdbtrack-do-tracking-p):
7436         New options.
7437         (python-which-shell, python-which-args, python-which-bufname):
7438         New buffer local variables.
7439         (python-file-queue, python-pdbtrack-is-tracking-p): New variables.
7441         * progmodes/python.el (python-pdbtrack-stack-entry-regexp)
7442         (python-pdbtrack-input-prompt, python-pdbtrack-track-range):
7443         New constants.
7445         Pdbtrack features:
7447         (python-point, python-end-of-def-or-class)
7448         (python-beginning-of-def-or-class, python-goto-initial-line)
7449         (python-comint-output-filter-function)
7450         (python-pdbtrack-overlay-arrow)
7451         (python-pdbtrack-track-stack-file, python-toggle-shells)
7452         (python-shell, python-pdbtrack-toggle-stack-tracking)
7453         (turn-on-pdbtrack, turn-off-pdbtrack, python-sentinel):
7454         New functions.
7456 2008-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7458         * net/ange-ftp.el (ange-ftp-quote-string): Return the null string
7459         when the argument is nil.
7461 2008-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
7463         * vc.el (dir-status): Add a brief description.
7465 2008-02-19  Thien-Thi Nguyen  <ttn@gnuvola.org>
7467         * vc-hooks.el (vc-find-root): Take optional arg INVERT.
7468         If non-nil, reverse the sense of the check.
7470         * vc-rcs.el (vc-rcs-root): New func.
7471         * vc-cvs.el (vc-cvs-root): New func.
7472         * vc-svn.el (vc-svn-root): New func.
7473         * vc-sccs.el (vc-sccs-root): New func.
7475 2008-02-18  Kenichi Handa  <handa@ni.aist.go.jp>
7477         * language/japan-util.el (setup-japanese-environment-internal):
7478         Call use-cjk-char-width-table.
7480         * language/japanese.el ("Japanese"): Set exit-function to
7481         use-default-char-width-table.
7483         * international/characters.el: Delete occurrences of non-Unicode
7484         tibetan and ethiopic characters.
7485         (cjk-char-width-table): New variable.
7486         (use-cjk-char-width-table, use-default-char-width-table):
7487         New functions.
7489 2008-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
7491         * vc.el (vc-status-menu, vc-status-menu-map-filter): New functions.
7492         (vc-status-mode-menu): Add a :filter.
7493         (vc-status-printer): Add faces.
7495         * vc-hg.el (vc-hg-extra-status-menu): New function.
7496         (vc-hg-dir-status): Clean up the buffer before using it.
7498 2008-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7500         * progmodes/gdb-ui.el (gdb-output-sink): Define with an invalid value.
7501         (gdb): Initialize it here instead.
7503         * files.el (locate-dominating-file): Fix thinko in last change.
7504         Reported by Bruce Stephens <bruce.stephens@isode.com>.
7506 2008-02-18  Dan Nicolaescu  <dann@ics.uci.edu>
7508         * vc.el (vc-status-mode-menu): New menu for vc-status.
7510 2008-02-18  Juanma Barranquero  <lekktu@gmail.com>
7512         * progmodes/verilog-mode.el (customize): Fix typo in error message.
7513         (verilog-mode, verilog-mode-indent, verilog-mode-actions)
7514         (verilog-mode-auto, verilog-indent-level-module)
7515         (verilog-minimum-comment-distance, verilog-library-flags)
7516         (verilog-library-directories, verilog-library-files)
7517         (verilog-auto-reset-widths, verilog-imenu-generic-expression)
7518         (verilog-xemacs-menu, verilog-set-compile-command)
7519         (verilog-set-compile-command, verilog-mode-syntax-table, verilog-mode)
7520         (verilog-get-expr, verilog-strip-comments, verilog-one-line)
7521         (verilog-lint-off, verilog-batch-auto, verilog-batch-delete-auto)
7522         (verilog-batch-inject-auto, verilog-batch-indent)
7523         (verilog-continued-line, verilog-type-keywords)
7524         (verilog-read-sub-decls-sig, verilog-read-sub-decls-line)
7525         (verilog-read-inst-pins, verilog-read-arg-pins)
7526         (verilog-read-auto-template, verilog-read-signals, verilog-getopt-file)
7527         (verilog-add-list-unique, verilog-symbol-detick, verilog-modi-filename)
7528         (verilog-auto-star, verilog-auto-inst, verilog-auto-wire)
7529         (verilog-enum-ascii, verilog-sk-begin, verilog-sk-fork)
7530         (verilog-sk-datadef, verilog-colorize-include-files-buffer)
7531         (verilog-mode-version, verilog-mode-release-date)
7532         (verilog-mode-release-emacs, verilog-linter, verilog-coverage)
7533         (verilog-simulator, verilog-compiler)
7534         (verilog-auto-sense-defines-constant, verilog-company)
7535         (verilog-project, verilog-mark-defun, verilog-submit-bug-report):
7536         Fix typos in docstrings.
7537         (verilog-set-auto-endcomments, verilog-calculate-indent)
7538         (verilog-inject-auto, verilog-auto-arg, verilog-auto-inout-module):
7539         Reflow docstrings.
7540         (verilog-tab-always-indent, verilog-highlight-p1800-keywords)
7541         (verilog-auto-star-save, verilog-auto-inst-vector, verilog-mode-hook)
7542         (electric-verilog-forward-sexp, verilog-in-case-region-p)
7543         (verilog-in-struct-region-p, verilog-in-generate-region-p)
7544         (verilog-leap-to-head, verilog-current-indent-level)
7545         (verilog-case-indent-level, verilog-cpp-keywords)
7546         (verilog-defun-keywords, verilog-block-keywords, verilog-tf-keywords)
7547         (verilog-case-keywords, verilog-separator-keywords, verilog-completion)
7548         (verilog-signals-not-in, verilog-symbol-detick-text)
7549         (verilog-modi-cache-preserve-tick, verilog-modi-cache-preserve-buffer)
7550         (verilog-forward-close-paren, verilog-backward-open-paren)
7551         (verilog-backward-open-bracket): Doc fixes.
7553         * progmodes/gud.el (gud-def, gud-last-speedbar-stackframe): Doc fixes.
7554         (gud-symbol, gud-expansion-speedbar-buttons, gud-speedbar-buttons)
7555         (gud-gdb-run-command-fetch-lines, gud-dbx-use-stopformat-p)
7556         (gud-jdb-classpath, gud-jdb-find-source-using-classpath, jdb)
7557         (gud-find-class, gdb-script-mode, gud-tooltip-event, gud-tooltip-tips):
7558         Fix typos in docstrings.
7560         * w32-vars.el (w32-system-shells): Add TCC (new name for 4NT).
7562 2008-02-18  Bastien Guerry  <Bastien.Guerry@ens.fr>
7564         * info.el (Info-read-node-name): Removed unused `default' arg.
7566 2008-02-18  Thien-Thi Nguyen  <ttn@gnuvola.org>
7568         * vc-git.el (vc-git-after-dir-status, vc-git-dir-status): New funcs.
7570 2008-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7572         * image-mode.el (image-get-display-property): New fun.
7573         (image-forward-hscroll, image-next-line, image-eol, image-eob)
7574         (image-mode, image-minor-mode, image-toggle-display-text)
7575         (image-toggle-display): Use it.
7577 2008-02-18  Jason Rumney  <jasonr@gnu.org>
7579         * international/mule.el (xml-find-file-coding-system): Don't warn
7580         about utf-16 with BOM.
7582         * nxml/nxml-mode.el (nxml-mode): Don't add a write-contents-hook.
7584         * international/mule.el (sgml-xml-auto-coding-function): Detect and
7585         warn if file encoding is not utf-8 and encoding not specified.
7586         (xml-find-file-coding-system): New function.
7587         * international/mule-conf.el (file-coding-system-alist): Use it.
7589 2008-02-17  Glenn Morris  <rgm@gnu.org>
7591         * international/mule-cmds.el (set-locale-environment):
7592         Pass `frame' to getenv for LC_MESSAGES.
7594 2008-02-17  Juri Linkov  <juri@jurta.org>
7596         * time.el (emacs-init-time): Use format instead of format-seconds.
7598 2008-02-17  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7600         * textmodes/bibtex.el (bibtex-search-entry): Rename from
7601         bibtex-find-entry.  Add autoload cookie.
7602         (bibtex-find-entry): Alias for bibtex-search-entry.
7603         (bibtex-search-crossref): Rename from bibtex-find-crossref.
7604         (bibtex-find-crossref): Alias for bibtex-search-crossref.
7605         (bibtex-clean-entry): atomic-change-group removed.
7606         (bibtex-format-entry): Use atomic-change-group.  Use unwind-protect
7607         to locate buffer location where error occurred.
7608         Make error messages more specific.
7609         (bibtex-parse-keys): Only parse if buffer uses bibtex-mode.
7611 2008-02-17  Dan Nicolaescu  <dann@ics.uci.edu>
7613         * progmodes/hideshow.el (hs-minor-mode-map): Move menu creation to
7614         top level.
7616         * simple.el (transient-mark-mode): Add an :init-value.
7618         * startup.el (command-line): Use custom-reevaluate-setting for
7619         transient-mark-mode.
7621 2008-02-17  Michaël Cadilhac  <michael@cadilhac.name>
7623         * wdired.el (wdired-allow-to-change-permissions): Fix typo.
7625 2008-02-16  Juri Linkov  <juri@jurta.org>
7627         * startup.el (after-init-time): New variable.
7628         (command-line): Set `after-init-time' to the current time.
7630         * time.el (emacs-init-time): New function.
7632 2008-02-16  Stefan Monnier  <monnier@iro.umontreal.ca>
7634         * files.el (locate-dominating-file): Remove initial loop because it's
7635         not careful enough.  Detect the uid-change all within the main loop.
7637 2008-02-16  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
7639         * ielm.el (ielm-is-whitespace-or-comment): Docstring fix.
7641 2008-02-16  Dan Nicolaescu  <dann@ics.uci.edu>
7643         * vc.el (vc-annotate): Add new argument.
7644         (vc-annotate-warp-revision): Pass the current line to vc-annotate.
7646         * progmodes/hideshow.el: Remove the minor-mode bookkeeping.
7647         Move make-variable-buffer-local code after the corresponding defvar.
7648         (hs-minor-mode-map): Define and initialize in one step.
7649         (hs-minor-mode): Change from defun to define-minor-mode.
7651 2008-02-16  Nick Roberts  <nickrob@snap.net.nz>
7653         * progmodes/gud.el (gud-gdb): Don't reset gdb-ready.
7654         (gdb-ready): Move declaration...
7656         * progmodes/gdb-ui.el (gdb-ready): ...to here.
7657         (gdb-early-user-input): New variable.
7658         (gdb): Reset gdb-flush-pending-output to nil and set
7659         comint-input-sender here (before gdb-prompt), instead of...
7660         (gdb-init-1): ...here.
7661         (gdb-send): If Emacs is not ready, defer user input to...
7662         (gdb-prompt): ...here.
7664 2008-02-16  Glenn Morris  <rgm@gnu.org>
7666         * nxml/test.invalid.xml, nxml/test.valid.xml: Move to etc/nxml.
7668         * startup.el (emacs-startup-time): Rename to `before-init-time'.
7669         (before-init-time): New name for `emacs-startup-time'.
7670         (command-line): Use before-init-time rather than emacs-startup-time.
7671         * time.el (emacs-uptime): Use before-init-time rather than
7672         emacs-startup-time.
7674         * composite.el (composition-function-table): Doc fix.
7676         * calendar/time-date.el (format-seconds): Remove `nonzero' argument
7677         in favor of `%z' specifier.
7678         (emacs-uptime): Move to time.el.
7679         * time.el (emacs-uptime): Move here from time-date.el.  Add optional
7680         `format' argument.  Doc fix.  Use `%z' rather than removed `nonzero'
7681         argument of format-seconds.
7683 2008-02-16  Dan Nicolaescu  <dann@ics.uci.edu>
7685         * bindings.el (mode-line-mule-info): Make the tooltips more explicit.
7687 2008-02-15  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
7689         * ielm.el (ielm-is-whitespace): Remove.
7690         (ielm-is-whitespace-or-comment): New function.
7691         (ielm-eval-input): Use it.
7693 2008-02-15  Jason Rumney  <jasonr@gnu.org>
7695         * term/mac-win.el: Fix coding tag.
7697 2008-02-15  Dan Nicolaescu  <dann@ics.uci.edu>
7699         * vc-hooks.el (vc-menu-map):
7700         * bindings.el (mode-line-mode-menu): Add tooltips.
7702         * bindings.el (help-echo): Add more tooltips.  Use a less
7703         telegraphic style for existing tooltips.
7705 2008-02-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7707         * frame.el (frame-notice-user-settings): Distinguish explicit parent-id
7708         from the auto-generated one.
7710 2008-02-14  Glenn Morris  <rgm@gnu.org>
7712         * mail/rmail-spam-filter.el (rmail-spam-filter):
7713         Let-bind message-spam-status.
7715         * mail/smtpmail.el (password-cache-add): Declare as function.
7717 2008-02-14  Justus Piater  <Justus-bulk@Piater.name>  (tiny change)
7719         * mail/smtpmail.el: Use password-cache.
7721 2008-02-14  Juanma Barranquero  <lekktu@gmail.com>
7723         * uniquify.el (uniquify-buffer-base-name): New function.
7724         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
7726         * desktop.el (uniquify-managed): Don't defvar.
7727         (desktop-buffer-info): Use `uniquify-buffer-base-name', not
7728         `uniquify-managed'.  Return also the buffer's base name.
7729         (desktop-save): When saving the buffer info, filter out the base name,
7730         and save it as buffer name if the buffer is managed by uniquify.
7731         (uniquify-item-base): Don't declare; not called anymore.
7733 2008-02-14  Dan Nicolaescu  <dann@ics.uci.edu>
7735         * vc.el (vc-annotate-find-revision-at-line): New function.
7736         (vc-annotate-mode-map): Bind it.
7737         (vc-annotate-mode-menu): Add a menu entry for it.  Add :help for
7738         some entries.
7740 2008-02-14  Glenn Morris  <rgm@gnu.org>
7742         * calendar/time-date.el (format-seconds): New function.
7743         (emacs-uptime): Use format-seconds.
7745         * Makefile.in (custom-deps, finder-data, autoloads, recompile):
7746         Remove `LC_ALL=C', since it's included in $(emacs) now.
7748 2008-02-14  Zhang Wei  <id.brep@gmail.com>
7750         * textmodes/org-publish.el (org-publish-timestamp-filename):
7751         Replace colon characters in filename too.
7753 2008-02-13  Bastien Guerry  <bzg@altern.org>
7755         * mail/rmail.el (rmail-header-name): New face.
7756         (rmail-font-lock-keywords): Use rmail-header-name.
7758         * mail/rmail-spam-filter.el (rsf-definitions-alist): Allow check
7759         against X-Spam-Status header field.
7760         (rmail-spam-filter): Also check X-Spam-Status header field.
7762 2008-02-14  Mark A. Hershberger  <mah@everybody.org>
7764         * progmodes/flymake.el (flymake-allowed-file-name-masks):
7765         Add support for .pm files and .php files.
7766         (flymake-err-line-patterns): Add pattern for PHP errors.
7767         (flymake-php-init): New function.  PHP support for flymake.
7769         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7770         Add regular expression for PHP errors.
7772 2008-02-13  Michael Albinus  <michael.albinus@gmx.de>
7774         * net/ange-ftp.el (ange-ftp-quote-string): Use `shell-quote-argument'.
7775         This DTRT even on w32 machines.
7776         (ange-ftp-cf1): Quote FILENAME.
7778 2008-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7780         * smerge-mode.el (smerge-auto-combine-max-separation): New var.
7781         (smerge-auto-combine): New fun.
7783 2008-02-12  Juri Linkov  <juri@jurta.org>
7785         * startup.el (fancy-startup-screen, normal-splash-screen):
7786         Set default-directory to command-line-default-directory.
7788         * desktop.el (after-init-hook): Set inhibit-startup-screen to t
7789         after reading the desktop.
7791         * progmodes/compile.el (compilation-auto-jump):
7792         Call compile-goto-error only when compilation-auto-jump-to-first-error
7793         is non-nil.
7794         (compilation-scroll-output): Replace :type 'boolean with a choice
7795         that has three options including a third option `first-error'.
7796         Doc fix.
7797         (compilation-start, compilation-forget-errors): Add an alternate
7798         condition comparing compilation-scroll-output with `first-error'
7799         in addition to compilation-auto-jump-to-first-error (to call
7800         compilation-auto-jump in the proper place).
7802 2008-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7804         * international/mule.el (sgml-html-meta-auto-coding-function):
7805         Make sure the search limit is ahead.
7807         * tar-mode.el: Fix broken indentation.
7808         (tar-mouse-extract, tar-extract, tar-subfile-save-buffer):
7809         Use with-current-buffer.
7811 2008-02-12  Juanma Barranquero  <lekktu@gmail.com>
7813         * hexl.el (hexl-mode): Don't make `font-lock-defaults' buffer-local;
7814         it is already automatically buffer-local.
7816 2008-02-11  Drew Adams  <drew.adams@oracle.com>
7818         * help.el (describe-key): Join some split lines to facilitate filling.
7819         * help-fns.el (describe-function-1): Fill text of overlong lines.
7821 2008-02-12  Kenichi Handa  <handa@ni.aist.go.jp>
7823         * emacs-lisp/bytecomp.el (byte-compile-lapcode):
7824         Use unibyte-string instead of string-make-unibyte.
7826         * Makefile.in (AUTOGENEL): Remove charprop.el and uni-*.el.
7828 2008-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7830         * doc-view.el (doc-view-display): Change file arg to buffer arg, so it
7831         works also for buffers w/o buffer-file-name.  Update callers.
7832         (doc-view-clone-buffer-hook): New fun.
7833         (doc-view-mode): Use it for indirect clones.  Mark the overlays with
7834         the `doc-view' property so they can be recognized.
7836         * simple.el (clone-indirect-buffer-hook): New hook.
7837         (clone-indirect-buffer): Run it.
7839 2008-02-11  Daiki Ueno  <ueno@unixuser.org>
7841         * epa.el (epa-menu-mode): Merge into epa-mode.
7842         (epa-menu-items): Rename the label "EasyPG Assistant" to
7843         "Encryption/Decryption".
7845         * epa-dired.el: Define a new minor-mode epa-dired-mode for dired.
7846         (epa-dired-mode-map): Rename from epa-dired-map.
7847         (epa-global-dired-mode): Rename the global minor mode.
7849 2008-02-11 Drew Adams  <drew.adams@oracle.com>
7851         * isearch.el (isearch-fail): New face.
7852         (isearch-message): Highlight failure part of input.
7854 2008-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7856         * ibuffer.el (ibuffer-header-line-format): New var.
7857         (ibuffer-mode): Set it instead of header-line-format.
7858         (ibuffer-update): Use it to set header-line-format.
7860         * international/mule-cmds.el (ucs-insert): Inherit surrounding
7861         properties like self-insert-command.
7863 2008-02-11  Drew Adams  <drew.adams@oracle.com>
7865         * progmodes/etags.el: Add many doc strings.
7867 2008-02-11  Jason Rumney  <jasonr@gnu.org>
7869         * ldefs-boot.el: Regenerated.
7871 2008-02-11  Glenn Morris  <rgm@gnu.org>
7873         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7874         Shorten some names.
7876         * ffap.el (ffap-rfc-directories): Add :version.
7878 2008-02-11  Chris Moore  <christopher.ian.moore@gmail.com>
7880         * jka-cmpr-hook.el (jka-compr-compression-info-list): Handle .sifz
7881         files, and backup files of same.
7883 2008-02-11  Kevin Ryde  <user42@zip.com.au>
7885         * ffap.el (ffap-rfc-directories): New variable.
7886         (ffap-rfc): Look in those dirs before offering ffap-rfc-path.
7888         * info.el (Info-next-reference, Info-prev-reference)
7889         (Info-try-follow-nearest-node): Move to and follow https:// links too.
7891         * simple.el (completion-list-mode): Show full completion-list-mode-map
7892         in the docstring.
7894 2008-02-11  Sam Steingold  <sds@gnu.org>
7896         * vc-hooks.el (vc-prefix-key): Remove (undo 2008-02-06 patch).
7898 2008-02-11  Glenn Morris  <rgm@gnu.org>
7900         * startup.el (emacs-startup-time): New variable.
7901         (command-line): Set emacs-startup-time.
7903         * calendar/time-date.el (emacs-uptime): New function.
7905 2008-02-10  Bastien Guerry  <bzg@altern.org>
7907         * mail/rmail.el (rmail-nonignored-headers): Allow to be nil.
7908         (rmail-clear-headers): Don't check `rmail-nonignored-headers' when
7909         it is nil.
7911 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
7913         * epg-config.el: Expand the contents of epg-package-info.el.
7914         (epg-package-name): New constant.
7915         (epg-version-number): New constant.
7916         (epg-bug-report-address): New constant.
7918         * epa-mail.el (epa-mail-mode): Add autoload cookie.
7919         (epa-global-mail-mode): New global minor mode.
7921         * epa-file.el (epa-file-mode): New global minor mode.
7923         * epa-dired.el (epa-dired-mode): New global minor mode.
7925         * epa.el (epa-menu): New variable.
7926         (epa-menu-items): New variable.
7927         (epa-menu-mode): New global minor mode.
7928         (epa-global-minor-modes): New user option.
7929         (epa-mode): New global minor mode.
7931 2008-02-10  Michael Albinus  <michael.albinus@gmx.de>
7933         * net/dbus.el: Remove `no-byte-compile' cookie.
7934         (dbus-call-method, dbus-register-signal, dbus-debug)
7935         (dbus-registered-functions-table): Declare them with
7936         `declare-function' or `defvar', respectively.
7937         (top): Don't assert any longer.  Require 'cl when compiling.
7938         Apply `ignore-errors' but `dbus-ignore-errors'.
7940 2008-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
7942         * diff-mode.el (diff-add-change-log-entries-other-window):
7943         Use add-change-log-entry.
7945 2008-02-09  Jason Rumney  <jasonr@gnu.org>
7947         * button.el (button-map):
7948         * wid-edit.el (widget-keymap): Avoid line-end confusion in autoloads.
7949         * ldefs-boot.el: Regenerate.
7951 2008-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
7953         * epa.el (epa-faces, epa):
7954         * epa-file.el (epa-file):
7955         * epg-config.el (epg): Add :version.
7957 2008-02-09  Thien-Thi Nguyen  <ttn@gnuvola.org>
7959         * vc.el (vc-exec-after): Append CODE to previous fragments.
7960         (vc-diff-finish): Take BUFFER directly, not BUFFER-NAME;
7961         take MESSAGES instead of VERBOSE; use it when non-nil.
7962         (vc-diff-internal): Compute messages once; use them;
7963         update call to vc-diff-finish.
7965 2008-02-09  Michael Olson  <mwolson@gnu.org>
7967         * net/tramp.el (tramp-process-sentinel): Avoid error when process
7968         buffer has been killed, such as by
7969         `tramp-cleanup-all-connections'.
7971 2008-02-09  Miles Bader  <miles@gnu.org>
7973         * net/rcirc.el (rcirc-omit-mode): Suppress invisibility ellipsis.
7975 2008-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7977         * diff-mode.el (diff-add-change-log-entries-other-window): Avoid the
7978         splitter in context hunks.
7980 2008-02-08  Kenichi Handa  <handa@ni.aist.go.jp>
7982         * international/fontset.el (setup-default-fontset): Fix arabic otf
7983         font specification.
7985 2008-02-08  Daiki Ueno  <ueno@unixuser.org>
7987         * epa-dired.el:
7988         * epa-file.el:
7989         * epa-mail.el:
7990         * epa-setup.el:
7991         * epa.el:
7992         * epg-config.el:
7993         * epg-package-info.el:
7994         * epg.el: Initial check-in of EasyPG.
7996 2008-02-08  Glenn Morris  <rgm@gnu.org>
7998         * woman.el (woman-locale): New defcustom.
7999         (woman-expand-locale, woman-manpath-add-locales): New functions.
8000         (woman-manpath): Call woman-manpath-add-locales.  Bump :version.
8002         * international/mule-cmds.el (locale-translate): New function,
8003         with old code extracted from set-locale-environment.
8004         (set-locale-environment): Use locale-translate.  Set woman-locale.
8006         * cus-start.el (selection-coding-system): Remove, since it's now
8007         defined in select.el rather than in xselect.c.
8008         * select.el (selection-coding-system): Make it a defcustom, and
8009         add the properties from cus-start.el.  Bump :version.
8011         * custom.el (custom-theme-set-variables): Sort symbols that are
8012         dependencies before symbols that depend on them.
8013         (custom-enabled-themes): Set after custom-theme-directory.
8015         * pcmpl-unix.el (top-level): Move provide statement to end.
8016         (pcmpl-unix-group-file, pcmpl-unix-passwd-file): Remove leading
8017         `*' from doc-string.  Allow to be nil.
8018         (pcmpl-ssh-known-hosts-file): Convert comment into expanded doc-string.
8019         Allow to be nil.  Add :version.
8020         (pcmpl-ssh-hosts): Move definition before use.  Handle lines
8021         without hostnames, and multiple hostnames per line.
8023         * term/x-win.el (x-handle-parent-id): Remove free variable `parent-id'.
8025 2008-02-08  Phil Hagelberg  <phil@evri.com>
8027         * pcmpl-unix.el (pcmpl-ssh-known-hosts-file): New defcustom.
8028         (pcomplete/ssh, pcomplete/scp, pcmpl-ssh-hosts): New functions.
8030 2008-02-07  Timo Savola  <timo.savola@iki.fi>
8032         * startup.el (command-line-x-option-alist): Add --parent-id.
8034         * term/x-win.el (x-handle-parent-id): New function.
8036 2008-02-07  Chris Moore  <christopher.ian.moore@gmail.com>
8038         * mouse.el (x-fixed-font-alist): Use consistent capitalization for
8039         "Font Menu".
8041 2008-02-06  Michael Albinus  <michael.albinus@gmx.de>
8043         * net/dbus.el (dbus-interface-peer): New defconst.
8044         (dbus-ping): New defun.
8046 2008-02-06  Sam Steingold  <sds@gnu.org>
8048         * vc-hooks.el (vc-prefix-key): New user-customizable variable.
8050 2008-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8052         * net/ange-ftp.el (ange-ftp-unhandled-file-name-directory):
8053         Just return nil and let the C code provide a fallback.
8055 2008-02-05  Glenn Morris  <rgm@gnu.org>
8057         * net/tramp-cmds.el (tramp-cleanup-connection): Update calls to
8058         tramp-flush-connection-property for removed 2nd argument.
8060 2008-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8062         * diff-mode.el (diff-add-change-log-entries-other-window):
8063         Rename from diff-create-changelog.  Change users.
8064         Minor change to hopefully work with plain diffs.
8065         (diff-mode-map): Add binding for it.
8067 2008-02-04  Dan Nicolaescu  <dann@ics.uci.edu>
8069         * diff-mode.el: Add new TODO entry.
8070         (diff-create-changelog): New function.
8071         (diff-mode-menu): Bind it.
8073 2008-02-04  Kenichi Handa  <handa@ni.aist.go.jp>
8075         * international/mule-diag.el (print-fontset-element): Handle the
8076         case of inhibiting the fallback fonts.
8078 2008-02-04  Kim F. Storm  <storm@cua.dk>
8080         * ido.el (ido-magic-forward-char, ido-magic-backward-char)
8081         (ido-magic-delete-char): Use prefix arg.
8083 2008-02-03  Juanma Barranquero  <lekktu@gmail.com>
8085         * term/w32-win.el (image-library-alist): Prefer libpng12 to libpng13,
8086         because the latter is in fact a 1.2.8 build distributed with GTK+ (as
8087         of today, the most recent libpng is 1.2.24).
8089 2008-02-03  Michael Albinus  <michael.albinus@gmx.de>
8091         * ediff-util.el (ediff-compute-custom-diffs-maybe): Handle remote files.
8093         * net/dbus.el (top): Check (featurep 'dbusbind).
8095         * net/tramp.el (tramp-process-sentinel): New defun.
8096         (tramp-do-copy-or-rename-file-out-of-band)
8097         (tramp-maybe-open-connection): Use it as process sentinel.
8098         (tramp-handle-delete-directory): Don't use the "-f" option; it
8099         isn't portable.
8100         (tramp-handle-start-file-process): Echo `tramp-end-of-output'
8101         after the command.
8102         (tramp-handle-shell-command): Set `mode-line-process' in the
8103         asynchronous case.
8105         * net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
8107         * net/tramp-fish.el (tramp-fish-maybe-open-connection):
8108         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
8109         Use `tramp-process-sentinel' as process sentinel.
8111 2008-02-02  Juanma Barranquero  <lekktu@gmail.com>
8113         * whitespace.el (global-whitespace-mode): Revert last change.
8114         (whitespace-unload-function): Force `global-whitespace-mode'
8115         to deactivate local modes in a slightly less intrusive way.
8117 2008-02-02  Eli Zaretskii  <eliz@gnu.org>
8119         * view.el (kill-buffer-if-not-modified): Add an autoload cookie.
8121 2008-02-02  Glenn Morris  <rgm@gnu.org>
8123         * international/latin1-disp.el (latin1-display):
8124         * progmodes/fortran.el (fortran-comment-indent-char):
8125         * progmodes/idlw-shell.el (top-level):
8126         * term/mac-win.el (mac-keyboard-translate-char):
8127         * whitespace.el (whitespace-char-valid-p):
8128         * wid-edit.el (widget-key-sequence-read-event):
8129         Use characterp rather than char-valid-p.
8131         * progmodes/cap-words.el (capitalized-next-word-boundary): Rename
8132         to capitalized-find-word-boundary.  Doc fix.  Update callers.
8133         (capitalized-next-word-boundary-function-table): Rename to
8134         capitalized-find-word-boundary-function-table.  Doc fix.  Update users.
8136         * ps-bdf.el (bdf-read-font-info): Use string-to-number rather than
8137         string-to-int.
8139         * ps-def.el (declare-function): Add compatibility definition.
8140         (ps-plot-with-face, ps-plot-string): Declare as functions.
8141         (ps-bold-faces, ps-italic-faces): Declare variables.
8143         * ps-print.el (ps-mule-initialize, ps-mule-begin-job)
8144         (ps-mule-end-job): Declare as functions.
8146         * wid-edit.el (widget-string-complete): Use assoc-string rather
8147         than assoc-ignore-case.
8149 2008-02-01  Chong Yidong  <cyd@stupidchicken.com>
8151         * progmodes/etags.el (next-file): Improve revert message.
8153 2008-02-01  Andreas Schwab  <schwab@suse.de>
8155         * loadup.el: Load language/burmese instead of language/myanmar.
8157 2008-02-01  Richard Stallman  <rms@gnu.org>
8159         * language/burmese.el: Rename from myanmar.el.
8160         ("Burmese"): Rename from "Myanmar".
8162 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8164         * international/fontset.el (script-representative-chars): Add cham
8165         and tai-viet.
8166         (setup-default-fontset): Add iso10646-1 font for latin and ipa.
8167         Add fontconfig spec for cjk-misc.  Explicitly specify font font
8168         for U+E000..U+F8FF.
8170         * international/characters.el (script-list): Add cham.
8172         * language/cham.el: New file.
8174 2008-02-01  Mark A. Hershberger  <mah@everybody.org>
8176         * xml.el (xml-escape-string): Don't do any encoding changes on the
8177         string.
8179 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8181         * language/ind-util.el (in-is13194-post-read-conversion):
8182         Delete unnecessary call of indian-compose-region.
8184 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8186         * ps-print.el: Some face attributes (like :strike-through) were not
8187         being recognised.  Reported by Leo <sdl.web@gmail.com>.
8188         (ps-print-version): New version 7.3.2.
8189         (ps-screen-to-bit-face): Fix code.  Call ps-face-strikout-p,
8190         ps-face-overline-p and ps-face-box-p functions.
8192         * ps-def.el (ps-face-strikout-p, ps-face-overline-p, ps-face-box-p):
8193         New functions.
8195 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8197         * international/fontset.el (font-encoding-alist): Add an entry for
8198         iso8859-16.
8199         (setup-default-fontset): Add iso8859-16 to latin.
8201         * descr-text.el (describe-char-display): Convert a GLYPH-CODE to a
8202         hexadigit string.
8203         (describe-char): Adjust for the above change.
8205 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8207         * international/fontset.el (font-encoding-alist): Don't set the
8208         repertory of GB18030 fonts.
8210 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8212         * language/indian.el: Set font-shape-text for all Indic characters
8213         in composition-function-table.
8215         * language/khmer.el: New file.
8217         * language/myanmar.el: New file.
8219         * loadup.el: Load "language/khmer" and "language/myanmar".
8221 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8223         * international/fontset.el (setup-default-fontset): Fix lao OTF
8224         script name.
8226 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8228         * composite.el (terminal-composition-modification): Delete it.
8230 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8232         * international/fontset.el (x-complement-fontset-spec):
8233         Complement size too.
8235 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8237         * international/fontset.el (font-encoding-charset-alist):
8238         Initialize it.
8239         (otf-script-alist): Fix typo of canadian-aboriginal.
8240         (setup-default-fontset): Specify font-specs for many more scripts.
8241         (x-complement-fontset-spec): Change the first argument to a
8242         font-spec object.
8243         (create-fontset-from-fontset-spec): Adjust for the above change.
8245 2008-02-01  Kenichi Handa  <handa@m17n.org>
8247         * language/devanagari.el: Register font-shape-text in
8248         composition-function-table.
8250         * language/tibetan.el: Register font-shape-text in
8251         composition-function-table.
8253         * language/thai-util.el (thai-composition-function): Fix arguments.
8255         * language/tamil.el: Register font-shape-text in
8256         composition-function-table.
8258         * language/malayalam.el: Register font-shape-text in
8259         composition-function-table.
8261         * language/lao.el: Register font-shape-text in
8262         composition-function-table.
8264         * language/kannada.el: Register font-shape-text in
8265         composition-function-table.
8267         * language/european.el (diacritic-composition-function): Fix arguments.
8269         * language/ethio-util.el (ethio-composition-function): Fix arguments.
8271         * language/tv-util.el (tai-viet-composition-function): Fix arguments.
8273         * composite.el (composition-function-table): Fix docstring.
8274         (terminal-composition-function): Fix arguments.
8275         (auto-compose-current-font): Delete it.
8276         (auto-compose-chars): Adjust for the change of
8277         composition-function-table.
8279 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8281         * international/fontset.el (font-encoding-alist): Add the entry of
8282         "unicode-bmp".
8284 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8286         * composite.el (auto-compose-chars): Be sure to calculate
8287         composition at least at POS.
8289 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8291         * printing.el: Fix pr-interface-map initialization code.
8292         (pr-version): New version 6.9.3.
8293         (pr-f-set-keymap-parents): Replace by pr-set-keymap-parents.
8294         (pr-f-set-keymap-name): Replace by pr-set-keymap-name.
8295         (pr-f-read-string): Replace by pr-read-string.
8296         (pr-set-keymap-parents, pr-set-keymap-name, pr-read-string):
8297         New function name.
8298         (pr-interactive-n-up, pr-interactive-regexp): Code fix.
8300 2008-02-01  Kenichi Handa  <handa@m17n.org>
8302         * language/tv-util.el (tai-viet-re): Include '-'.
8303         (tai-viet-glyph-info): Handle '-'.
8305 2008-02-01  Kenichi Handa  <handa@m17n.org>
8307         * descr-text.el (describe-char): Handle a composition of the new
8308         format.  Show font name.
8310 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8312         * language/tibet-util.el (tibetan-composition-function): Use
8313         font-shape-text if auto-compose-current-font is non-nil.
8315         * language/tibetan.el: Fix the range for recording
8316         tibetan-composition-function in composition-function-table.
8318         * language/mlm-util.el (malayalam-composition-function): Use
8319         font-shape-text if auto-compose-current-font is non-nil.
8321         * international/mule-conf.el: Flag many charsets as supplementary.
8323         * international/mule.el (define-charset): Update the docstring for
8324         :supplementary-p.
8326         * international/fontset.el (setup-default-fontset): Add OpenType
8327         fonts for malayalam and tibetan.
8329 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8331         * international/fontset.el (x-complement-fontset-spec): Use font-spec.
8333 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8335         * international/fontset.el (otf-script-alist): Make all otf tags
8336         4-letters.
8337         (setup-default-fontset): Add OpenType fonts for devanagari and tamil.
8339         * language/tml-util.el (tamil-composition-function): Use
8340         font-shape-text if auto-compose-current-font is non-nil.
8342         * language/devan-util.el (devanagari-composition-function): Use
8343         font-shape-text if auto-compose-current-font is non-nil.
8345         * composite.el (auto-compose-chars): Change argument font-object
8346         to window.
8348 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8350         * ps-print.el (ps-lpr-switches): Docstring fix.
8351         (ps-string-list): New function.
8352         (ps-do-despool): Code fix.
8354 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8356         * international/utf-7.el (utf-7-imap-post-read-conversion)
8357         (utf-7-imap-pre-write-conversion): New functions.
8359         * international/mule-conf.el (utf-7-imap): New coding system.
8361 2008-02-01  Kenichi Handa  <handa@m17n.org>
8363         * term/x-win.el (x-selection-value): If x-select-request-type is
8364         nil, try also STRING at last.
8365         (x-select-request-type): Doc fix for the change of x-selection-value.
8367         * select.el (selection-coding-system, next-selection-coding-system):
8368         Move declarations from xselect.c.
8369         (x-get-selection): Decode by selection-coding-system if it is non-nil.
8370         If it is nil, decode by a proper coding system.  Handle C_STRING.
8371         (ccl-check-utf-8, string-utf-8-p): Delete them.
8372         (xselect-convert-to-string): Fix determining data-type in the case
8373         that TEXT is requested.  Don't use selection-coding-system if it's
8374         not proper for the data-type.
8376 2008-02-01  Kenichi Handa  <handa@m17n.org>
8378         * term/x-win.el (x-selection-value): If x-select-request-type is
8379         nil, simply try UTF8_STRING and COMPOUND-TEXT in this order.
8381 2008-02-01  Jason Rumney  <jasonr@gnu.org>
8383         * term/w32-win.el (w32-initialize-window-system): Use t, not nil
8384         to signify default fontset.
8386 2008-02-01  Kenichi Handa  <handa@m17n.org>
8388         * international/mule-cmds.el (describe-language-environment):
8389         Check if the specified input method exists or not.
8391 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8393         * ps-print.el (ps-begin-job): Error if ps-lpr-switches is not a list.
8394         (ps-face-background-name): Remove this function.  It's already defined
8395         in ps-def.el file.
8397 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8399         * ps-print.el: Eliminate the check if ps-print was running on Lucid or
8400         Epoch emacsen.
8402 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8404         * ps-print.el: Now detect if text foreground and background colors are
8405         equals and replace the foreground color by another color, so the text
8406         becomes visible.  Doc fix.
8407         (ps-print-version): New version 7.3.
8408         (ps-default-fg, ps-default-bg): Docstring fix.
8409         (ps-fg-list, ps-fg-validate-p): New options.
8410         (ps-foreground-list): New variable.
8411         (ps-generate-header-line): Replace fboundp by functionp.
8412         (ps-setup, ps-begin-job, ps-plot-region): Fix code.
8414 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8416         * printing.el: Pacify byte compiler, that is, no compiler warnings.
8417         Move (again) some variable definitions before use, define some
8418         function aliases, no code change.
8419         (pr-version): New version 6.9.2.
8420         (pr-path-style, pr-auto-region, pr-menu-char-height)
8421         (pr-menu-char-width, pr-menu-lock, pr-ps-printer-alist)
8422         (pr-txt-printer-alist, pr-ps-utility-alist): Options declaration
8423         via (defvar VAR).
8424         (pr-menu-lookup, pr-menu-lock, pr-menu-alist, pr-even-or-odd-pages)
8425         (pr-menu-get-item, pr-menu-set-item-name, pr-menu-set-utility-title)
8426         (pr-menu-set-ps-title, pr-menu-set-txt-title, pr-region-active-p)
8427         (pr-do-update-menus, pr-update-mode-line, pr-f-read-string)
8428         (pr-f-set-keymap-parents, pr-keep-region-active): Function aliases.
8429         (pr-menu-print-item, pr-ps-printer-menu-modified)
8430         (pr-txt-printer-menu-modified, pr-ps-utility-menu-modified)
8431         (pr-even-or-odd-alist): Move variable definitions.
8433 2008-02-01  Kenichi Handa  <handa@m17n.org>
8435         * language/chinese.el (cp936): Delete duplicated alias.
8437         * international/mule-diag.el (list-block-of-chars): Don't insert
8438         non-Unicode characters.
8440 2008-02-01  Jason Rumney  <jasonr@gnu.org>
8442         * loadup.el [windows-nt]: Don't load code-pages and ccl.
8443         * term/w32-win.el: Don't require code-pages.
8445 2008-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8447         Fix up multi-tty merge.
8449         * version.el (emacs-version): Bump to 23.0.60.
8451         * term/x-win.el (x-initialize-window-system): Don't try to create
8452         a fontset from a font-specification anymore.  This was removed on the
8453         unicode branch and mistakenly re-added by the multi-tty merge.
8455         * term/w32-win.el: Remove duplicate code that's now in
8456         w32-initialize-window-system.
8457         (w32-initialize-window-system): Don't try to create a fontset from
8458         a font-specification anymore.  This was removed on the unicode branch
8459         and mistakenly re-added by the multi-tty merge.
8461         * term/mac-win.el: Remove duplicate top-level code.
8463         * language/ethio-util.el:
8464         * international/characters.el: Use utf-8 rather than utf-8-emacs
8465         since it works as well and has the advantage of working with
8466         non-unicode versions of Emacs.
8468         * international/encoded-kb.el (encoded-kbd-setup-display): Use the new
8469         multi-tty code, which includes the previous local change.
8471 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8473         * ps-print.el (ps-print-version): New version 7.2.5.
8474         (ps-background, ps-begin-file, ps-build-reference-face-lists):
8475         Use `mapc' rather than `mapcar'.
8477 2008-02-01  Kenichi Handa  <handa@m17n.org>
8479         * skeleton.el (skeleton-internal-1): Use integerp and stringp
8480         instead of char-or-string-p to catch -1.
8482 2008-02-01  Kenichi Handa  <handa@m17n.org>
8484         * international/mule-cmds.el (inactivate-input-method):
8485         Set input-method-function to nil before calling
8486         inactivate-current-input-method-function.
8488 2008-02-01  Kenichi Handa  <handa@m17n.org>
8490         * play/gamegrid.el (gamegrid-setup-default-font): Calculate a font
8491         height that doesn't exceed the requested height by rounding off.
8493 2008-02-01  Andreas Schwab  <schwab@suse.de>
8495         * international/mule-diag.el (print-fontset-element):
8496         Use fontp only if defined.
8498 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8500         * ps-mule.el (ps-mule-prepare-font, ps-mule-encode-region)
8501         (ps-mule-plot-composition, ps-mule-encode-header-string): Docstring fix.
8502         (ps-mule-prologue-generated): Code fix.
8504 2008-02-01  Kenichi Handa  <handa@m17n.org>
8506         * dnd.el (dnd-get-local-file-name): Call replace-regexp-in-string
8507         with FIXEDCASE t.
8509 2008-02-01  Kenichi Handa  <handa@m17n.org>
8511         * international/mule-diag.el (print-fontset-element): Fix for the
8512         format change of a fontset element for font-backend feature.
8514 2008-02-01  Kenichi Handa  <handa@m17n.org>
8516         * descr-text.el (describe-char): Fix for the case that a component
8517         character is TAB.
8519 2008-02-01  Kenichi Handa  <handa@m17n.org>
8521         * international/mule-cmds.el (select-safe-coding-system-interactively):
8522         Fix printing of rejected and unsafe coding-systems.
8524         * international/fontset.el (setup-default-fontset): Add tai-viet.
8526         * international/characters.el: Setup syntax/category table for Tai Viet.
8527         (script-list): Add tai-viet.
8529         * loadup.el: Load "language/tai-viet".
8531         * language/tai-viet.el: New file.
8533         * language/tv-util.el: New file.
8535 2008-02-01  Jason Rumney  <jasonr@gnu.org>
8537         * faces.el (font-weight-table): Use defaults on w32 that match
8538         LOGFONT.lfWeight.
8540         * term/w32-win.el: Don't create fontset from command-line font.
8542 2008-02-01  Juanma Barranquero  <lekktu@gmail.com>
8544         * international/mule-cmds.el (toggle-enable-multibyte-characters)
8545         (sort-coding-systems, search-unencodable-char): Doc fixes.
8546         (default-input-method, input-method-verbose-flag)
8547         (input-method-highlight-flag): Remove * in defcustom's docstrings.
8548         (exit-language-environment-hook, set-default-coding-systems)
8549         (coding-system-change-eol-conversion, prefer-coding-system)
8550         (find-multibyte-characters, leim-list-entry-regexp)
8551         (set-input-method, input-method-exit-on-first-char, princ-list)
8552         (locale-language-names, locale-charset-language-names)
8553         (define-char-code-property): Fix typos in docstrings.
8555 2008-02-01  Kenichi Handa  <handa@m17n.org>
8557         * disp-table.el (make-glyph-code, glyph-char, glyph-face):
8558         Fix for a new character code space (22-bit).
8560 2008-02-01  Juanma Barranquero  <lekktu@gmail.com>
8562         * printing.el (pr-ps-fast-fire): Fix typos in docstring.
8564 2008-02-01  Kenichi Handa  <handa@m17n.org>
8566         * international/characters.el: Add more cases/syntaxes from Latin
8567         characters.
8569 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8571         * ps-def.el (installation-directory): Must be initialized when defining
8572         it in XEmacs.
8573         (coding-system-for-read): Eliminate duplicated definition.
8575 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8577         * ps-print.el: Replace some (defvar VAR) by (defvar VAR nil).
8579 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8581         * ps-print.el: Replace (defvar VAR nil) by (defvar VAR).
8582         (ps-print-emacs-type): Eliminate variable.
8583         (ps-setup): Remove ps-print-emacs-type.  Print which Emacsen is
8584         running ps-print package.
8586         * ps-def.el: Replace (defvar VAR nil) by (defvar VAR).
8587         (ps-frame-parameter): Replace defun by defalias.
8588         (mark-active): Eliminate defvar.
8590         * ps-samp.el (ps-prsc, ps-c-prsc, ps-s-prsc): Eliminate macros.
8591         (ps-rmail-mode-hook, ps-vm-mode-hook, ps-gnus-summary-setup)
8592         (ps-jts-ps-setup): Replace macros by vector key definition.
8594 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8596         * progmodes/ebnf-abn.el (ebnf-abn-skip-comment):
8597         * progmodes/ebnf-bnf.el (ebnf-bnf-skip-comment):
8598         * progmodes/ebnf-dtd.el (ebnf-dtd-skip-comment):
8599         * progmodes/ebnf-ebx.el (ebnf-ebx-skip-comment):
8600         * progmodes/ebnf-iso.el (ebnf-iso-skip-comment):
8601         * progmodes/ebnf-yac.el (ebnf-yac-skip-comment): New version.
8602         New command actions for EPS header and EPS footer.
8604         * progmodes/ebnf2ps.el: New command actions for EPS header and EPS
8605         footer.  Fix some problems with one-or-more, zero-or-more and
8606         alternative constructions generation.  Some implementation of log
8607         messages.  Doc fix.
8608         (ebnf-version): New version 4.4.
8609         (ebnf-eps-header-font, ebnf-eps-header, ebnf-eps-footer-font)
8610         (ebnf-eps-footer, ebnf-log): New options.
8611         (ebnf-find-style, ebnf-eps-header-footer, ebnf-eps-header)
8612         (ebnf-eps-footer, ebnf-eps-string, ebnf-eps-header-footer-comment)
8613         (ebnf-eps-header-footer-p, ebnf-eps-header-comment)
8614         (ebnf-eps-footer-comment, ebnf-eps-header-footer-file)
8615         (ebnf-eps-header-footer-set, ebnf-log-header, ebnf-log): New functions.
8616         (ebnf-style-custom-list, ebnf-style-database): Put new values.
8617         (ebnf-print-directory, ebnf-print-file, ebnf-print-buffer)
8618         (ebnf-print-region, ebnf-spool-directory, ebnf-spool-file)
8619         (ebnf-spool-buffer, ebnf-spool-region, ebnf-eps-directory)
8620         (ebnf-eps-file, ebnf-eps-buffer, ebnf-eps-region)
8621         (ebnf-syntax-directory, ebnf-syntax-file, ebnf-syntax-buffer)
8622         (ebnf-syntax-region, ebnf-parse-and-sort, ebnf-begin-job)
8623         (ebnf-dimensions, ebnf-production-dimension, ebnf-terminal-dimension)
8624         (ebnf-non-terminal-dimension, ebnf-special-dimension)
8625         (ebnf-terminal-dimension1, ebnf-repeat-dimension)
8626         (ebnf-except-dimension, ebnf-alternative-dimension)
8627         (ebnf-optional-dimension, ebnf-one-or-more-dimension)
8628         (ebnf-zero-or-more-dimension, ebnf-sequence-dimension):
8629         Insert log message function.
8630         (ebnf-setup, ebnf-generate-one-or-more, ebnf-generate-zero-or-more)
8631         (ebnf-begin-job, ebnf-begin-file, ebnf-eps-finish-and-write)
8632         (ebnf-insert-ebnf-prologue, ebnf-production-dimension)
8633         (ebnf-terminal-dimension1, ebnf-alternative-dimension)
8634         (ebnf-one-or-more-dimension, ebnf-zero-or-more-dimension)
8635         (ebnf-eps-add-context, ebnf-eps-add-production): Fix code.
8636         (ebnf-eps-filename, ebnf-trim-right): Replace `?\s' by `?\ ' to keep
8637         compatibility with Emacs 20 & 21.
8638         (ebnf-eps-header-comment, ebnf-eps-footer-comment)
8639         (ebnf-eps-file-alist, ebnf-basic-width-extra)
8640         (ebnf-basic-empty-height): New variables.
8641         (ebnf-prologue): Fix PostScript code.
8642         (ebnf-make-empty, ebnf-make-terminal1, ebnf-make-or-more1)
8643         (ebnf-make-production, ebnf-make-alternative, ebnf-make-optional)
8644         (ebnf-make-except, ebnf-make-repeat, ebnf-make-sequence)
8645         (ebnf-make-dup-sequence, ebnf-token-alternative): Add comments.
8647 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8649         * printing.el: Group together all XEmacs/Emacs definitions.
8650         (pr-version): New version 6.9.
8651         (pr-global-menubar, pr-menu-char-height, pr-menu-char-width):
8652         New functions.
8653         (pr-menu-char-height, pr-menu-char-width): Fix initialization code.
8654         (pr-menu-bind): Fix code.
8655         (pr-e-frame-char-height, pr-e-frame-char-width)
8656         (pr-e-mouse-pixel-position, pr-x-add-submenu, pr-x-event-function)
8657         (pr-x-event-object, pr-x-find-menu-item, pr-x-font-height)
8658         (pr-x-font-width, pr-x-get-popup-menu-response, pr-x-make-event)
8659         (pr-x-misc-user-event-p, pr-x-relabel-menu-item, pr-x-event-x-pixel)
8660         (pr-x-event-y-pixel): Eliminate aliases.
8661         (pr-xemacs-global-menubar): Move macro.
8662         (current-menubar, current-mouse-event, zmacs-region-stays)
8663         (deactivate-mark, pr-menu-position, pr-menu-state, pr-ps-name-old)
8664         (pr-txt-name-old, pr-ps-utility-old, pr-even-or-odd-old, pr-temp-menu):
8665         Move variables.
8666         (pr-region-active-p, pr-menu-position, pr-menu-lookup, pr-menu-lock)
8667         (pr-update-mode-line, pr-do-update-menus, pr-menu-alist)
8668         (pr-relabel-menu-item, pr-menu-set-ps-title, pr-menu-set-txt-title)
8669         (pr-menu-set-utility-title, pr-even-or-odd-pages)
8670         (pr-f-set-keymap-parents, pr-f-set-keymap-name, pr-f-read-string)
8671         (pr-keep-region-active, pr-menu-get-item, pr-menu-set-item-name):
8672         Move functions.
8674 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8676         * ps-print.el: The ps-print commands without face printing should not
8677         print background color.  Reported by Leo <sdl.web@gmail.com>.
8678         (ps-print-version): New version 7.2.2.
8679         (ps-begin-job): New arg.  Fix ps-default-background and
8680         ps-default-foreground initialization.
8681         (ps-face-attributes): Fix doc string.
8682         (ps-face-background, ps-generate-postscript, ps-generate): Fix code.
8684         * printing.el: Fix ps-print link.
8686 2008-02-01  Kenichi Handa  <handa@m17n.org>
8688         * international/mule-diag.el (list-character-sets-2): Don't print width.
8690 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8692         * ps-print.ps: Fix background height.
8693         (ps-print-version): New version 7.2.1.
8695 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8697         * ps-print.el: Split XEmacs/Emacs definitions and sample setup code
8698         into separate files.
8699         (ps-print-version): New version 7.2.
8700         (ps-postscript-code-directory): Fix XEmacs initialization.
8701         (ps-generate-postscript-with-faces):
8702         Call ps-generate-postscript-with-faces1 (new function).
8703         (ps-color-format, ps-float-format): Move variables to ps-def.el.
8704         (ps-xemacs-color-name, ps-mapper, ps-extent-sorter)
8705         (ps-xemacs-face-kind-p, ps-mark-active-p, ps-face-foreground-name)
8706         (ps-face-background-name, ps-frame-parameter, ps-color-device)
8707         (ps-color-values, ps-face-bold-p, ps-face-italic-p):
8708         Move functions to ps-def.el.
8709         (ps-prsc, ps-c-prsc, ps-s-prsc, ps-rmail-mode-hook)
8710         (ps-rmail-print-message-from-summary, ps-print-message-from-summary)
8711         (ps-article-subject, ps-article-author, ps-gnus-article-prepare-hook)
8712         (ps-vm-mode-hook, ps-gnus-print-article-from-summary)
8713         (ps-vm-print-message-from-summary, ps-gnus-summary-setup, ps-info-file)
8714         (ps-info-node, ps-info-mode-hook, ps-jts-ps-setup, ps-jack-setup):
8715         Move functions to ps-samp.el.
8717         * ps-bdf.el (installation-directory, coding-system-for-read):
8718         Move variables to ps-def.el.
8720         * ps-mule.el (leading-code-private-22): Move variables to ps-def.el.
8721         (charset-bytes, charset-dimension, charset-id, charset-width)
8722         (find-charset-region, char-width, chars-in-region, forward-point)
8723         (decompose-composite-char, encode-coding-string, coding-system-p)
8724         (ccl-execute-on-string, define-ccl-program, multibyte-string-p)
8725         (string-make-multibyte, encode-char): Move functions to ps-def.el.
8727         * ps-def.el: New file.  XEmacs/Emacs definitions.
8728         (ps-generate-postscript-with-faces1): New function.
8729         (ps-color-format, ps-float-format): Move variables from ps-print.el.
8730         (ps-xemacs-color-name, ps-mapper, ps-extent-sorter)
8731         (ps-xemacs-face-kind-p, ps-mark-active-p, ps-face-foreground-name)
8732         (ps-face-background-name, ps-frame-parameter, ps-color-device)
8733         (ps-color-values, ps-face-bold-p, ps-face-italic-p):
8734         Move functions from ps-print.el.
8735         (installation-directory, coding-system-for-read):
8736         Move variables from ps-bdf.el.
8737         (leading-code-private-22): Move variable from ps-mule.el.
8738         (charset-bytes, charset-dimension, charset-id, charset-width)
8739         (find-charset-region, char-width, chars-in-region, forward-point)
8740         (decompose-composite-char, encode-coding-string, coding-system-p)
8741         (ccl-execute-on-string, define-ccl-program, multibyte-string-p)
8742         (string-make-multibyte, encode-char): Move functions from ps-mule.el.
8744         * ps-samp.el: New file.  Sample setup code.
8745         (ps-prsc, ps-c-prsc, ps-s-prsc, ps-rmail-mode-hook)
8746         (ps-rmail-print-message-from-summary, ps-print-message-from-summary)
8747         (ps-article-subject, ps-article-author, ps-gnus-article-prepare-hook)
8748         (ps-vm-mode-hook, ps-gnus-print-article-from-summary)
8749         (ps-vm-print-message-from-summary, ps-gnus-summary-setup, ps-info-file)
8750         (ps-info-node, ps-info-mode-hook, ps-jts-ps-setup, ps-jack-setup):
8751         Move functions from ps-print.el.
8753 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8755         * ps-print.el: Handle frame parameters (background and/or foreground
8756         colors) changing dynamically.  Reported by Leo <sdl.web@gmail.com>.
8757         (ps-print-version): New version 7.1.
8758         (ps-x-frame-property, ps-e-frame-parameter): New aliases.
8759         (ps-frame-parameter): New function.
8760         (ps-default-fg, ps-default-bg): New default value ('frame-parameter).
8761         Fix doc and customization.
8762         (ps-begin-job): Get frame parameters (background and/or foreground
8763         colors).
8764         (ps-do-despool): Ensure ps-printer-name has a valid value.
8766 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8768         * progmodes/ebnf-abn.el:
8769         * progmodes/ebnf-bnf.el:
8770         * progmodes/ebnf-dtd.el:
8771         * progmodes/ebnf-ebx.el:
8772         * progmodes/ebnf-iso.el:
8773         * progmodes/ebnf-otz.el:
8774         * progmodes/ebnf-yac.el:
8775         * progmodes/ebnf2ps.el:
8776         * delim-col.el:
8777         * printing.el:
8778         * ps-bdf.el:
8779         * ps-mule.el:
8780         * ps-print.el: Remove 'Time-stamp' comment mark.
8782         * printing.el (pr-menu-bind): Replace 'easy-menu-change' by
8783         'easy-menu-add-item' when called in Emacs 21 or higher.
8785 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8787         * ps-print.el : Fix doc.
8788         (ps-print-version): New version 7.0.
8790 2008-02-01  Kenichi Handa  <handa@m17n.org>
8792         * mail/emacsbug.el (report-emacs-bug): Insert also the value of
8793         XMODIFIERS.
8795 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8797         * ps-print.el: Fix maintainer email.  Eliminate function declaration
8798         that kept compatibility with older Emacs version.
8799         (ps-print-version): New version 6.7.
8801 2008-02-01  Kenichi Handa  <handa@m17n.org>
8803         * international/quail.el (quail-get-translations):
8804         Make quail-current-key multibyte if not yet done.
8806 2008-02-01  Zhang Wei  <id.brep@gmail.com>
8808         * language/chinese.el ("Chinese-GBK"): Add tutorial.
8809         ("Chinese-GB18030"): Add sample-text and tutorial.
8811         * international/fontset.el (font-encoding-alist)
8812         (setup-default-fontset): Add gb18030.
8813         (x-pixel-size-width-font-regexp, vertical-centering-font-regexp)
8814         (charset-script-alist): Add gbk and gb18030.
8816         * international/characters.el: Put property
8817         preferred-coding-system on gbk and gb18030.
8819         * international/mule-cmds.el (locale-language-names): Add an entry
8820         for "zh_CN.UTF-8" and change "chs" to "Chinese-GBK".
8822         * faces.el (face-font-registry-alternatives): Add gb18030.
8824 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8826         * ps-mule.el: Fix maintainer email.
8828 2008-02-01  Kenichi Handa  <handa@m17n.org>
8830         * international/quail.el (quail-insert-kbd-layout): Check the
8831         length of (cdr translation).
8832         (quail-get-current-str): Check the length of (cdr def).
8834 2008-02-01  Kenichi Handa  <handa@m17n.org>
8836         * ruler-mode.el (ruler-mode-ruler): Make the string `ruler' multibyte.
8838 2008-02-01  Kenichi Handa  <handa@m17n.org>
8840         * international/mule-cmds.el (ucs-insert): Re-implement.
8842 2008-02-01  Kenichi Handa  <handa@m17n.org>
8844         * composite.el (terminal-composition-modification): New function.
8845         (terminal-composition-function): Create composition with the above
8846         modification function.
8848 2008-02-01  Zhang Wei  <id.brep@gmail.com>
8850         * international/characters.el: Add more full-width characters in
8851         char-width-table.
8853 2008-02-01  Kenichi Handa  <handa@m17n.org>
8855         * international/fontset.el (create-fontset-from-fontset-spec):
8856         Fix script name handling.
8858 2008-02-01  Kenichi Handa  <handa@m17n.org>
8860         * composite.el (terminal-composition-function): New function.
8861         (terminal-composition-function-table): New variable.
8862         (auto-compose-chars): If running on a terminal, use
8863         terminal-composition-function-table.
8865         * loadup.el: Load "composite" after "international/characters".
8867         * international/characters.el: Delete codes for setting up charset
8868         property nospace-between-words.  Fix setting up of
8869         char-width-table.  Don't make ethiopic and tibetan double column.
8871         * textmodes/fill.el (fill-find-break-point-function-table):
8872          Don't set it up in defvar.
8873         (fill-nospace-between-words-table): New variable.
8874         (fill-delete-newlines): Check fill-nospace-between-words-table
8875         instead of charset property nospcae-between-words.
8877 2008-02-01  Kenichi Handa  <handa@m17n.org>
8879         * composite.el (global-auto-composition-mode): Make the initial
8880         value not depend on emacs-basic-display.
8882         * textmodes/fill.el: Don't use charset property
8883         `fill-find-break-point-function'.
8884         (fill-find-break-point-function-table): New variable.
8885         (fill-find-break-point): Lookup fill-find-break-point-function-table.
8887 2008-02-01  Kenichi Handa  <handa@m17n.org>
8889         * international/mule.el (coding-system-list): Be sure to exclude
8890         subsidiary coding systems.
8892 2008-02-01  Kenichi Handa  <handa@m17n.org>
8894         * composite.el (auto-composition-after-change)
8895         (toggle-auto-composition): Remove `auto-composed' property instead
8896         of setting it to nil.
8898 2008-02-01  Kenichi Handa  <handa@m17n.org>
8900         * language/misc-lang.el (iso-8859-6): New coding system.
8902 2008-02-01  Kenichi Handa  <handa@m17n.org>
8904         * dnd.el (dnd-get-local-file-name): Give a unibyte string to
8905         replace-regexp-in-string as replacement.
8907 2008-02-01  Kenichi Handa  <handa@m17n.org>
8909         * international/fontset.el (otf-script-alist): Add byzm, math,
8910         musc, and nko.
8912         * international/characters.el (script-list): Add nko,
8913         byzantine-musical-symbol, musical-symbol, and mathematical.
8915 2008-02-01  Kenichi Handa  <handa@m17n.org>
8917         * composite.el (auto-compose-current-font): New variable.
8918         (auto-compose-chars): New arg FONT-OBJECT.
8920 2008-02-01  Kenichi Handa  <handa@m17n.org>
8922         * international/characters.el: Modify category-table and
8923         script-table for new Ethiopic character range.
8925 2008-02-01  Kenichi Handa  <handa@m17n.org>
8927         * international/mule-cmds.el (set-language-environment-fontset):
8928         Delete it.
8930 2008-02-01  Kenichi Handa  <handa@m17n.org>
8932         * international/fontset.el (otf-script-alist): Set it.
8934 2008-02-01  Kenichi Handa  <handa@m17n.org>
8936         * international/fontset.el (font-encoding-alist):
8937         Fix for "ethiopic-unicode".
8939 2008-02-01  Kenichi Handa  <handa@m17n.org>
8941         * international/fontset.el (script-representative-chars):
8942         Add an entry for latin script.
8944 2008-02-01  Kenichi Handa  <handa@m17n.org>
8946         * faces.el (font-weight-table): Treat regular and normal as the
8947         same as medium.
8948         (font-slant-table): Add (roman . 100).
8950 2008-02-01  Kenichi Handa  <handa@m17n.org>
8952         These changes are for the new font handling codes.
8954         * faces.el (font-weight-table, font-slant-table)
8955         (font-swidth-table): New customizable variables.
8957         * international/fontset.el (font-encoding-alist): Add koi8-4.
8958         (script-representative-chars): Set the default value.
8959         (create-fontset-from-x-resource): Delete `message'.
8961 2008-02-01  Kenichi Handa  <handa@m17n.org>
8963         * tar-mode.el (tar-untar-buffer, tar-summarize-buffer):
8964         Call set-buffer-multibyte with arg `to'.
8966 2008-02-01  Kenichi Handa  <handa@m17n.org>
8968         * info.el (Info-fontify-node): Check if already fontified or not
8969         by next-single-property-change.
8971 2008-02-01  Kenichi Handa  <handa@m17n.org>
8973         * international/mule.el (ctext-pre-write-conversion): Produce
8974         extra designation sequence for ASCII at the end off extended segment.
8976 2008-02-01  Kenichi Handa  <handa@m17n.org>
8978         * international/mule.el (ctext-non-standard-encodings-table):
8979         Reverse the returning list.
8980         (ctext-pre-write-conversion): Fix encoding with extended segments.
8982         * international/mule-conf.el (compound-text)
8983         (compound-text-with-extensions): Add long-form in :flags.
8985 2008-02-01  Kenichi Handa  <handa@m17n.org>
8987         * international/fontset.el (create-fontset-from-fontset-spec): Fix
8988         regexp for paring FONTSET-SPEC (allow spaces after `:').
8990 2008-02-01  Kenichi Handa  <handa@m17n.org>
8992         * international/fontset.el (create-fontset-from-fontset-spec): Fix
8993         for the case that a charset is specified as target.
8995 2008-02-01  Kenichi Handa  <handa@m17n.org>
8997         * international/ccl.el (ccl-embed-string): Check string length.
8998         Set special flag for multibyte character sequence.
8999         (ccl-compile-write-string, ccl-compile-write-repeat): Don't make
9000         str unibyte.
9001         (ccl-compile-write): If the character code doesn't fit in 22-bit
9002         (ccl-dump-write-const-string): Check special flag for multibyte
9003         character sequence.
9005 2008-02-01  Kenichi Handa  <handa@m17n.org>
9007         * ps-mule.el (ps-mule-eight-bit-char): Delete this function.
9008         (ps-mule-encode-region, ps-mule-plot-composition): Don't use
9009         ps-mule-eight-bit-char.
9011 2008-02-01  Kenichi Handa  <handa@m17n.org>
9013         * language/chinese.el ("Chinese-BIG5"):
9014         Set ctext-non-standard-encodings property to "big5-0".
9016         * international/mule.el (ctext-non-standard-encodings):
9017         Initialize to nil.
9018         (ctext-non-standard-encodings-alist): Set charset `big5' in the
9019         entry for "big5-0".
9020         (ctext-non-standard-encodings-table): Return a list instead of
9021         char-table.
9022         (ctext-pre-write-conversion): Adjust for the above change.
9024 2008-02-01  Zhang Wei  <id.brep@gmail.com>
9026         * international/mule.el (ctext-non-standard-encodings-alist):
9027         Add an entry for gbk-0.
9028         (ctext-post-read-conversion): Use multibyt-char-to-unibyte to read
9029         a row 8-bit.
9031         * language/chinese.el ("Chinese-GBK"):
9032         Set ctext-non-standard-encodings property to "gbk-0".
9033         Add sample-text property.
9035 2008-02-01  Kenichi Handa  <handa@m17n.org>
9037         * international/kkc.el (kkc-region): Use
9038         this-single-command-raw-keys on pushing back an unhandled key sequence.
9040 2008-02-01  Kenichi Handa  <handa@m17n.org>
9042         * international/encoded-kb.el (encoded-kbd-mode):
9043         Check saved-input-mode on turning off Encoded Kbd mode.
9045         * composite.el (auto-composition-after-change): Use save-buffer-state.
9046         (turn-on-auto-composition-if-enabled): Don't turn on
9047         auto-composition-mode in a unibyte buffer.
9049 2008-02-01  Kenichi Handa  <handa@m17n.org>
9051         * startup.el (command-line): Use custom-reevaluate-setting for
9052         global-auto-composition-mode.
9054         * composite.el (auto-composition-function): Make it buffer local.
9055         (auto-composition-mode): New minor mode.
9056         (turn-on-auto-composition-if-enabled): New function.
9057         (global-auto-composition-mode): New global minor mode.
9059 2008-02-01  Kenichi Handa  <handa@m17n.org>
9061         * descr-text.el (describe-char): Use insert-text-button instead of
9062         widget-create for "customize what to show" button.
9064 2008-02-01  Naoto Takahashi  <ntakahas@m17n.org>
9066         * language/ethiopic.el: Fix copyright.
9067         (composition-function-table): Support a new character in Unicode 4.1.
9069         * language/ethio-util.el (ethio-fidel-to-tex-buffer)
9070         (ethio-tex-to-fidel-buffer, ethio-composition-function)
9071         ("ethiopic-tex"): Support new characters in Unicode 4.1.
9073 2008-02-01  Kenichi Handa  <handa@m17n.org>
9075         * international/characters.el: Register characters in
9076         auto-fill-chars.  Put nospace-between-words to more charsets.
9078 2008-02-01  Zhang Wei  <id.brep@gmail.com>
9080         * international/mule-cmds.el (locale-language-names): Add entries
9081         for zh_CN.GB2312, zh_CN.GBK, and zh_CN.GB18030.
9082         (locale-preferred-coding-systems): Fix entries for Chinese locales.
9084 2008-02-01  Kenichi Handa  <handa@etlken>
9086         * international/utf-7.el: Delete the definition of utf-7.
9087         (utf-7-post-read-conversion, utf-7-pre-write-conversion):
9088         Add autoload cookies.
9090 2008-02-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9092         * term/mac-win.el: Delete the code to create a fontset from the X
9093         resource "Font".
9095 2008-02-01  Naoto Takahashi  <ntakahas@m17n.org>
9097         * international/robin.el (robin-define-package): Be sure to call
9098         put-char-code-property.
9100 2008-02-01  Kenichi Handa  <handa@m17n.org>
9102         * language/korean.el (iso-2022-kr): Set :suitable-for-keyboard
9103         property to 1.
9105         * international/mule-conf.el (cp1125): Set :ascii-compatible-p
9106         property to t.
9108         * international/mule.el (coding-system-get):
9109         Check `ascii-incompatible' for backward compatiblity.
9110         (set-file-name-coding-system): Signal an error for a coding system
9111         not suitable for file name.
9112         (set-keyboard-coding-system): Signal an error for a coding system
9113         not suitable for keyboard.
9115         * language/chinese.el (iso-2022-cn, iso-2022-cn-ext):
9116         Set :suitable-for-keyboard property to 1.
9118         * language/japanese.el (iso-2022-jp, iso-2022-jp-2)
9119         (iso-2022-jp-2004): Set :suitable-for-keyboard property to 1.
9121         * language/vietnamese.el (vietnamese-viscii, vietnamese-vscii)
9122         (vietnamese-tcvn): Set :suitable-for-file-name property to t.
9124 2008-02-01  Naoto Takahashi  <ntakahas@m17n.org>
9126         * international/robin.el (robin-define-package): Delete redundant code.
9127         (robin-add-rule): Allow N-1 reverse conversion.
9129 2008-02-01  Naoto Takahashi  <ntakahas@m17n.org>
9131         * international/robin.el (robin-define-package): Make the
9132         expanded form shorter.
9134 2008-02-01  Zhang Wei  <id.brep@gmail.com>
9136         * language/chinese.el (chinese-iso-8bit): Fix mime-charset of
9137         chiense-iso-8bit.
9139 2008-02-01  Kenichi Handa  <handa@m17n.org>
9141         * loadup.el: If we are byte-compiling unidata-gen.el or running
9142         unidata-ge-files, set purify-flag to nil.
9144 2008-02-01  Kenichi Handa  <handa@m17n.org>
9146         * loadup.el: Load international/charprop.el with NOERROR t.
9148         * Makefile.in (AUTOGENEL): Add charprop.el and uni-*.el.
9150 2008-02-01  Kenichi Handa  <handa@m17n.org>
9152         * term/mac-win.el (mac-centraleurroman, mac-cyrillic):
9153         New charsets and coding systems.
9154         (mac-symbol, mac-dingbats): New charsets.
9156 2008-02-01  Kenichi Handa  <handa@m17n.org>
9158         * international/characters.el: Set syntax of NBSP to punctuation.
9160 2008-02-01  Kenichi Handa  <handa@m17n.org>
9162         * international/mule-cmds.el: Don't require wid-edit.
9164 2008-02-01  Naoto Takahashi  <ntakahas@m17n.org>
9166         * international/robin.el: New file.
9168         * language/ethiopic.el: Change encoding to utf-8-emacs.
9169         Register ethio-composition-function in composition-function-table.
9170         ("Ethiopic"): Change coding-systems to utf-8-emacs.
9172         * language/ethio-util.el: Change encoding to utf-8-emacs.
9173         Rewrite all transliteration functions to use robin.el.
9174         (ethio-fidel-to-sera-map, ethio-fidel-to-tex-map)
9175         (ethio-sera-to-fidel-table, ethio-implicit-period-conversion)
9176         (ethio-prefer-ascii-punctuation): Delete variables.
9177         (ethio-char-to-ethiocode, ethio-convert-digit)
9178         (ethio-ethiocode-to-char, ethio-fidel-to-sera-mail)
9179         (ethio-fidel-to-sera-mail-or-marker, ethio-lone-consonant-p)
9180         (ethio-sera-to-fidel-english, ethio-sera-to-fidel-ethio)
9181         (ethio-sera-to-fidel-mail, ethio-sera-to-fidel-mail-or-marker)
9182         (ethio-tilde-escape, ethio-toggle-punctuation): Delete functions.
9183         (ethio-adjust-robin, ethio-composition-function)
9184         (ethio-get-consonant, ethio-prefer-amharic, ethio-process-digits)
9185         (ethio-sera-to-fidel-region-ethio)
9186         (ethio-sera-to-fidel-region-noethio)
9187         (ethio-use-colon-for-colon, ethio-use-three-dot-question):
9188         New functions.
9190 2008-02-01  Miles Bader  <miles@gnu.org>
9192         * international/mule.el (auto-coding-regexp-alist)
9193         (ctext-pre-write-conversion): Replace embedded control characters
9194         with octal escapes; this prevents diff from thinking the file is binary.
9196 2008-02-01  Miles Bader  <miles@gnu.org>
9198         * descr-text.el (describe-char-unidata-list):
9199         * emacs-lisp/bytecomp.el (byte-compile-fix-header)
9200         (byte-compile-insert-header):
9201         * international/mule.el (charset-list, set-coding-priority)
9202         (ignore-relative-composition):
9203         * international/mule-util.el (detect-coding-with-priority):
9204         * international/mule-diag.el:
9205         * international/mule-cmds.el (language-info-custom-alist):
9206         * international/codepage.el (codepage-setup):
9207         Replace references to Emacs version "22" with "23".
9209 2008-02-01  Kenichi Handa  <handa@m17n.org>
9211         * Makefile.in (DONTCOMPILE): Include charprop.el and uni-*.el.
9213         * international/fontset.el (font-encoding-alist): Add an entry for
9214         microsoft-cp1251.
9215         (setup-default-fontset): Add entries for microsoft-cp1251 and
9216         koi8-r for cyrillic.
9218         * international/mule-cmds.el (char-code-property-alist): New variable.
9219         (define-char-code-property): New function.
9220         (get-char-code-property, put-char-code-property): Handle a
9221         char-table registerd in char-code-property-alist.
9222         (set-language-environment): Check :ascii-compatible-p property of
9223         nonascii charset instead of its dimension.
9225         * international/uni-bidi.el, international/uni-category.el:
9226         * international/uni-combining.el, international/uni-comment.el:
9227         * international/uni-decimal.el, international/uni-decomposition.el:
9228         * international/uni-digit.el, international/uni-lowercase.el:
9229         * international/uni-mirrored.el, international/uni-name.el:
9230         * international/uni-numeric.el, international/uni-old-name.el:
9231         * international/uni-titlecase.el, international/uni-uppercase.el:
9232         * international/charprop.el: New files automatically generated by
9233         admin/unidata/Makefile.
9235         * loadup.el: Load internationnal/charprop.el.
9237         * descr-text.el (describe-char-unidata-list): New variable.
9238         (describe-char-unicode-data): Use char-code-property-description.
9239         (describe-char): Add lines for describing Unicode-based character
9240         properties.
9242 2008-02-01  Kenichi Handa  <handa@m17n.org>
9244         * textmodes/ispell.el: These changes are to fix the code merged
9245         from trunk for the change on 2008-02-01.
9246         (ispell-unified-chars-table): Delete it.
9247         (ispell-get-decoded-string): Don't check ispell-unified-chars-table.
9249 2008-02-01  Kenichi Handa  <handa@m17n.org>
9251         * international/mule-util.el (char-displayable-p): Check
9252         :charset-list property of CODING.
9254 2008-02-01  Kenichi Handa  <handa@m17n.org>
9256         * international/mule-cmds.el (select-safe-coding-system-interactively):
9257         Change 'mime-charset to :mime-charset.
9258         (select-safe-coding-system): Use above.
9259         (set-language-environment): Delete unnecessary code for handling
9260         overriding-fontspec.
9262 2008-02-01  Kenichi Handa  <handa@m17n.org>
9264         * international/mule-conf.el: New coding system aliases unix, dos,
9265         and mac.
9267 2008-02-01  Kenichi Handa  <handa@m17n.org>
9269         * international/titdic-cnv.el (tit-process-header): Fix embedded
9270         coding tag.
9271         (titdic-convert): Bind coding-system-for-write to the coding
9272         system specfied in the map file.  Remove `charset' property after
9273         decoding.
9274         (miscdic-convert): Bind coding-system-for-write to the coding
9275         system specfied for the map file.  Fix LANGUAGE arg to
9276         quail-define-package.
9277         (batch-miscdic-convert): Check if a file is directory or not.
9279 2008-02-01  Kenichi Handa  <handa@m17n.org>
9281         * international/mule.el (coding-system-equal): Move from mule-util.el.
9283         * international/mule-util.el (coding-system-equal): Move to mule.el.
9285 2008-02-01  Kenichi Handa  <handa@m17n.org>
9287         * international/encoded-kb.el (encoded-kbd-decode-code-list):
9288         New function.
9289         (encoded-kbd-self-insert-charset, encoded-kbd-setup-keymap):
9290         Support multibyte charsets.
9292 2008-02-01  Kenichi Handa  <handa@m17n.org>
9294         * language/china-util.el (hz-set-msb-table): Turn chars beyond 128
9295         to eight-bit chars.
9297         * international/mule-conf.el: Don't define coding system
9298         `undecided' here.
9300 2008-02-01  Kenichi Handa  <handa@m17n.org>
9302         * international/mule-cmds.el (locale-language-names): Fix for
9303         gb18030 and gdk.
9305 2008-02-01  Kenichi Handa  <handa@m17n.org>
9307         * international/fontset.el (font-encoding-alist): Add gbk.
9308         (charset-script-alist): Add chinese-gbk.
9310 2008-02-01  Kenichi Handa  <handa@m17n.org>
9312         * language/chinese.el (chinese-gbk): Include ascii in charset-list.
9314 2008-02-01  Kenichi Handa  <handa@m17n.org>
9316         * language/japanese.el ("Japanese"): Fix ordering of charsets.
9318 2008-02-01  Kenichi Handa  <handa@m17n.org>
9320         * international/encoded-kb.el (encoded-kbd-self-insert-charset)
9321         (encoded-kbd-self-insert-utf-8, encoded-kbd-setup-keymap)
9322         (encoded-kbd-mode): Adjust code merged from trunk for unicode branch.
9324 2008-02-01  Kenichi Handa  <handa@m17n.org>
9326         * descr-text.el (describe-char): Fix for the case CODE is a cons
9327         of integers.
9329 2008-02-01  Steven Tamm  <steventamm@mac.com>
9331         * term/mac-win.el: Use mac-standard-fontset-spec to create fontset-mac.
9332         (mac-standard-fontset-spec): Create.
9334 2008-02-01  Kenichi Handa  <handa@m17n.org>
9336         * international/mule-diag.el (unicode-data):
9337         Call find-file-noselect with NOWARN t.
9339 2008-02-01  Kenichi Handa  <handa@m17n.org>
9341         * international/mule-conf.el (cp932-2-byte): Fix :code-space.
9343 2008-02-01  Kenichi Handa  <handa@m17n.org>
9345         * international/characters.el: Give more CJK characters the
9346         category `|'.
9348         * descr-text.el (describe-char): Make it work on *Help* buffer.
9349         Suppress auto-composition on a region describing about composition.
9351         * language/european.el (diacritic-compose-region)
9352         (diacritic-compose-string, diacritic-composition-function):
9353         Compose diacritical marks only with a character whose syntax is
9354         word constituent.
9355         (diacritic-post-read-conversion): Delete it.
9357 2008-02-01  Kenichi Handa  <handa@m17n.org>
9359         * composite.el (auto-compose-chars): Execute the main code in
9360         condition-case.
9362 2008-02-01  Kenichi Handa  <handa@m17n.org>
9364         * international/fontset.el (x-complement-fontset-spec):
9365         Don't change CHARSET_REGISTRY and CHARSET_ENCODING fields.
9367 2008-02-01  Kenichi Handa  <handa@m17n.org>
9369         * international/characters.el (next-word-boundary-kana):
9370         Handle half-width kana.
9372 2008-02-01  Kenichi Handa  <handa@m17n.org>
9374         * international/mule-conf.el (indian-1-column): Fix :emacs-mule-id.
9376 2008-02-01  Kenichi Handa  <handa@m17n.org>
9378         * language/japanese.el (japanese-iso-8bit): Fix order of :charset-list.
9380         * mail/rmail.el (rmail-decode-babyl-format):
9381         Use with-coding-priority instead of detect-coding-with-priority.
9383 2008-02-01  Kenichi Handa  <handa@m17n.org>
9385         * international/mule.el (make-translation-table)
9386         (make-translation-table-from-vector): Set the second extra slot of
9387         the char table to 1.
9388         (make-translation-table-from-alist): Fix handling of multiple entries.
9390 2008-02-01  Kenichi Handa  <handa@m17n.org>
9392         * language/japanese.el (jisx0213-to-unicode, unicode-to-jisx0213):
9393         New translation tables.
9395         * international/mule.el (make-translation-table-from-alist):
9396         New function.
9398 2008-02-01  Kenichi Handa  <handa@m17n.org>
9400         * international/mule.el (translate-region): Re-implement it here.
9401         Make it interactive.
9403 2008-02-01  Kenichi Handa  <handa@m17n.org>
9405         * ps-mule.el (ps-mule-font-info-database): Doc fix.
9407 2008-02-01  Kenichi Handa  <handa@m17n.org>
9409         * international/mule-conf.el (chinese-cns11643-15): New charset.
9411 2008-02-01  Kenichi Handa  <handa@m17n.org>
9413         * international/fontset.el (font-encoding-alist): Add entries for
9414         variations of cns11643 fonts.
9415         (setup-default-fontset): Add cns11643 fonts as fallback fonts.
9417 2008-02-01  Kenichi Handa  <handa@m17n.org>
9419         * international/mule-diag.el (list-charset-chars): Put charset
9420         text property.
9422         * international/fontset.el (setup-default-fontset): Delete the
9423         entry for symbol script, add JISX0213 to kana script, specify
9424         fallback fonts.
9426 2008-02-01  Kenichi Handa  <handa@m17n.org>
9428         * international/fontset.el (setup-default-fontset)
9429         (font-encoding-alist): Register "JISX0213.2004-1".
9431         * international/mule-diag.el (list-character-sets): Fix the first
9432         line message.
9433         (sort-listed-character-sets): Adjust for the change of
9434         list-characters-sets-1.
9435         (list-character-sets-1): List supplementary character sets in a
9436         different section.
9437         (list-charset-chars): Validate charset at early stage.
9439         * international/characters.el: Fix `han' script range.
9441         * international/mule-conf.el (japanese-jisx0213.2004-1):
9442         Specify :code-space.
9443         (cp932-2-byte): Fix :code-space.
9444         (unicode-smp, unicode-sip, unicode-ssp): New charsets.
9446 2008-02-01  Kenichi Handa  <handa@m17n.org>
9448         * international/mule-conf.el (japanese-jisx0213.2004-1):
9449         Specify :dimension 2.
9451         * language/japanese.el (iso-2022-jp): Exclude japanese-jisx0212.
9452         (iso-2022-jp-2004, euc-jis-2004, japanese-shift-jis-2004):
9453         New coding systems.
9454         (iso-2022-jp-3, euc-jisx0213, shift_jis-2004): New coding system
9455         aliases.
9456         ("Japanese"): Add new charsets and coding systems.
9458 2008-02-01  Kenichi Handa  <handa@m17n.org>
9460         * language/japanese.el (japanese-ucs-cp932-to-jis-map):
9461         Rename from japanese-ucs-cp932-map.
9462         (japanese-ucs-jis-to-cp932-map): Rename from japanese-ucs-jis-map.
9463         (japanese-ucs-glibc-map): Delete this translation table.
9464         (japanese-ucs-glibc-to-jis-map, japanese-ucs-jis-to-glibc-map):
9465         New translation tables.
9467 2008-02-01  Kenichi Handa  <handa@m17n.org>
9469         * cus-start.el: Handle charset-map-path, not charset-map-directory.
9471 2008-02-01  Kenichi Handa  <handa@m17n.org>
9473         * term/x-win.el (x-selection-value): Optimize for ASCII only case.
9475 2008-02-01  Kenichi Handa  <handa@m17n.org>
9477         * language/japanese.el: Add map #x00A6 <-> #xFFE4 to translation
9478         tables japanese-ucs-*-map.
9480 2008-02-01  Kenichi Handa  <handa@m17n.org>
9482         * international/eucjp-ms.el: New file (automatically generated by
9483         admin/charsets/Makefile).
9485         * international/cp51932.el: New file (automatically generated by
9486         admin/charsets/Makefile).
9488         * language/japanese.el: Load cp51932 and eucjp-ms.
9489         (japanese-ucs-cp932-map, japanese-ucs-jis-map)
9490         (japanese-ucs-glibc-map): New translation tables.
9491         (eucjp-ms): New coding system.
9493         * international/mule.el (coding-system-put): Delete it.
9494         It's implemented in C now.
9496         * international/mule-conf.el (katakana-sjis): Fix :superset to :subset.
9497         (japanese-jisx0213-a): New supplementary charset.
9498         (japanese-jisx0213.2004-1): New charset.
9500 2008-02-01  Kenichi Handa  <handa@m17n.org>
9502         * language/japanese.el (japanese-cp932): New coding system.
9503         (cp932): New alias of it.
9505         * international/mule-conf.el (katakana-sjis, cp932-2-byte)
9506         (cp932): New charsets.
9508         * international/mule.el (define-charset): If :code-space is not
9509         given, generate it from :dimension.
9511 2008-02-01  Kenichi Handa  <handa@m17n.org>
9513         * composite.el (reference-point-alist): Doc fix.
9514         (encode-composition-rule, decode-composition-rule):
9515         Handle a rule (GREF NREF XOFF YOFF).
9517 2008-02-01  Kenichi Handa  <handa@m17n.org>
9519         * language/european.el (diacritic-composition-function): Fix for
9520         the case that POS is at the head.  Allow combining with more characters.
9522 2008-02-01  Kenichi Handa  <handa@m17n.org>
9524         * descr-text.el (describe-char): Check `charset' property.
9525         Show the code point in the charset in hexadigits.
9527         * international/mule-diag.el (stretches-for-character-list):
9528         Delete it.
9529         (list-block-of-chars): Use tabs instead of `display' property for
9530         aligning characters.
9531         (print-fontset-element): Fix the printing of XLFD.
9533 2008-02-01  Kenichi Handa  <handa@m17n.org>
9535         * international/encoded-kb.el (encoded-kbd-self-insert-utf-8):
9536         New function.
9537         (encoded-kbd-setup-keymap, encoded-kbd-mode): Add code for
9538         handling utf-8.
9540 2008-02-01  Kenichi Handa  <handa@m17n.org>
9542         * faces.el (read-face-font): Include fontsets in the completion list.
9544         * international/mule-cmds.el (set-locale-environment):
9545         Insert locale-translation-file-name in a unibyte buffer.
9547         * international/characters.el: Fix setting of category `|'.
9549 2008-02-01  Kenichi Handa  <handa@m17n.org>
9551         * language/chinese.el (chinese-gb18030): Fix :charset-list.
9553 2008-02-01  Kenichi Handa  <handa@m17n.org>
9555         * international/mule-cmds.el (select-safe-coding-system): Fix for
9556         the case that the first element of default-coding-system is t.
9557         Fix a message when some coding systems are rejected.
9559 2008-02-01  Kenichi Handa  <handa@m17n.org>
9561         * international/mule-cmds.el (set-language-environment): Put
9562         higher priority to charsets listed in `charset' property of the
9563         language environment.
9565 2008-02-01  Kenichi Handa  <handa@m17n.org>
9567         * composite.el (auto-compose-chars): Don't do unnecessary
9568         save-exclusion and save-restriction.
9570 2008-02-01  Kenichi Handa  <handa@m17n.org>
9572         * international/mule-conf.el (ctext-no-compositions):
9573         Remove garbage arguments.
9575         * international/mule.el (make-coding-system): Fix generation of
9576         properties.
9578         * international/fontset.el (setup-default-fontset): Specify fonts
9579         for `symbol' script.
9581         * international/characters.el (script-list): Include `currency'
9582         in `symbol'.
9584 2008-02-01  Alex Schroeder  <alex@gnu.org>
9586         * timezone.el (timezone-parse-date): Fix style 8 to accept ISO
9587         8601 format (a capital T between the date and the time).
9589 2008-02-01  Kenichi Handa  <handa@m17n.org>
9591         * international/mule.el (private-char-area-1-min)
9592         (private-char-area-1-max, private-char-area-2-min)
9593         (private-char-area-2-max, emacs-mule-charset-table): New variables.
9594         (convert-define-charset-argument): New function.
9595         (define-charset): Handle the old calling style.
9596         Update emacs-mule-charset-table.
9597         (make-char-internal): New function.
9599 2008-02-01  Jason Rumney  <jasonr@gnu.org>
9601         * w32-charset-info-alist: Define iso10646-1 always.
9603 2008-02-01  Kenichi Handa  <handa@m17n.org>
9605         * composite.el (compose-region): Doc fix (delete duplicated line).
9607 2008-02-01  Kenichi Handa  <handa@m17n.org>
9609         * international/characters.el: Fix syntax for Ethiopic.
9611 2008-02-01  Jason Rumney  <jasonr@gnu.org>
9613         * w32-fns.el (w32-charset-info-alist): Accept more charset aliases.
9615         * makefile.w32-in (DONTCOMPILE): Remove old languages.
9616         Add international/latin1-disp.el.
9617         (LC_ALL): Define as C.
9619 2008-02-01  Jason Rumney  <jasonr@gnu.org>
9621         * term/w32-win.el: Don't set fontsets to use sjis.
9623 2008-02-01  Kenichi Handa  <handa@m17n.org>
9625         * language/japanese.el (iso-2022-jp, iso-2022-jp-2)
9626         (japanese-iso-8bit): Fix the order of charsets in :charset-list.
9628 2008-02-01  Kenichi Handa  <handa@m17n.org>
9630         * composite.el (auto-composition-chunk-size): Delete variable.
9631         (auto-compose-chars): Always stop after processing a newline.
9633 2008-02-01  Kenichi Handa  <handa@m17n.org>
9635         * international/mule.el (define-coding-system): Fix attribute
9636         name :for-unibyte.
9638 2008-02-01  Kenichi Handa  <handa@m17n.org>
9640         * ps-bdf.el: Largely re-write.
9642         * ps-mule.el: Largely re-write.
9644         * ps-print.el (ps-generate-string-list): Delete function.
9645         (ps-rh-cache, ps-lf-cache, ps-rf-cache): Delete variables.
9646         (ps-header-footer-string): Delete function.
9647         (ps-encode-header-string-function): New variable.
9648         (ps-generate-header-line): Call ps-encode-header-string-function.
9649         (ps-basic-plot-string-function): New variable
9650         (ps-begin-job): Set ps-basic-plot-string-function and
9651         ps-encode-header-string-function.  For setting up headers and
9652         footers, don't use caches such as ps-rh-cache.  Don't call
9653         ps-mule-begin-page.
9654         (ps-basic-plot-str, ps-basic-plot-string, ps-control-character):
9655         Don't call ps-mule-prepare-ascii-font.
9656         (ps-plot-region): Don't pay attention to composition and
9657         non-ASCII characters.
9658         (ps-generate): Call ps-mule-end-job.
9659         (ps-mule-prepare-ascii-font, ps-mule-set-ascii-font)
9660         (ps-mule-plot-string, ps-mule-begin-page): Delete autoload.
9661         (ps-mule-end-job): Declare autoload.
9663         * composite.el (auto-compose-region): New function.
9665 2008-02-01  Dave Love  <fx@gnu.org>
9667         * international/mule-util.el
9668         (detect-coding-with-language-environment): Doc fix.
9670         * composite.el: Doc fixes.
9671         (auto-compose-chars): Use functionp, not fboundp.
9673         * international/mule-diag.el (list-charset-chars): Set buffer file
9674         coding system.
9676         * progmodes/cap-words.el (capitalized-words-mode): Add autoload
9677         cookie.  Doc fix.
9679 2008-02-01  Dave Love  <fx@gnu.org>
9681         * international/mule-diag.el (list-charset-chars): Set buffer file
9682         coding system.
9684         * progmodes/cap-words.el (capitalized-words-mode): Add autoload
9685         cookie.  Doc fix.
9687         * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
9688         * progmodes/sh-script.el (sh-font-lock-syntactic-face-function):
9689         * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
9690         * eshell/esh-opt.el (eshell-process-option):
9691         * emulation/keypad.el (keypad-setup):
9692         * emacs-lisp/lisp-mode.el (prin1-char):
9693         * emacs-lisp/generic.el (generic-mode-set-comments):
9694         * edmacro.el (edmacro-parse-keys):
9695         * disp-table.el (standard-display-default): Use characterp.
9697 2008-02-01  Kenichi Handa  <handa@m17n.org>
9699         * international/mule-conf.el (utf-16-be): Make it an alias of
9700         utf-16be-with-signature.
9701         (utf-16-le): Make it an alias of utf-16le-with-signature.
9702         (utf-16-be-with-signature, utf-16-le-with-signature): Remove these
9703         coding system aliases.
9705         * international/utf-7.el (utf-7-decode, utf-7-encode):
9706         Use utf-16be, not utf-16-be.
9708 2008-02-01  Kenichi Handa  <handa@m17n.org>
9710         * international/mule.el (coding-system-category): New function.
9711         (set-coding-priority): Re-write.
9712         (make-translation-table): Re-write.
9714         * international/mule-cmds.el (universal-coding-system-argument):
9715         Check the coding system type `undecided', not `t'.
9716         (sort-coding-systems): Fix for iso-2022 coding systems.
9717         (find-multibyte-characters): Fix for eight-bit chars.
9718         (set-language-environment): Set charset priorities according to
9719         the charsets supported by the coding systems of higher priorities.
9721 2008-02-01  Kenichi Handa  <handa@m17n.org>
9723         * font-lock.el
9724         (font-lock-match-c-style-declaration-item-and-skip-to-next):
9725         Check (match-end 2) before going there.
9727 2008-02-01  Kenichi Handa  <handa@m17n.org>
9729         * international/mule.el (ctext-non-standard-designations-alist):
9730         Exclude entries for iso8859-1[03456].  Fix docstring.
9731         (ctext-pre-write-conversion): Make it work for the case that FROM
9732         is a string.  Don't do unnecessary save-restriction and
9733         narrow-to-region.
9735 2008-02-01  Kenichi Handa  <handa@m17n.org>
9737         * international/mule.el (ctext-non-standard-encodings-alist):
9738         Rename from non-standard-icccm-encodings-alist.
9739         (ctext-non-standard-encodings-regexp): New variable
9740         (ctext-post-read-conversion): Full rewrite.
9741         (ctext-non-standard-designations-alist): Rename from
9742         non-standard-designations-alist.
9743         (ctext-pre-write-conversion): Full rewrite.
9744         (define-coding-system): Doc fix (escape '"' by '\').
9746 2008-02-01  Dave Love  <fx@gnu.org>
9748         * international/mule-conf.el (utf-16le, utf-16be-16be)
9749         (utf-16le-with-signature, utf-16be-with-signature, utf-16):
9750         Define :mime-text-unsuitable.  Rename `utf-16{b,l}e...' from
9751         `-16-{b,l}e-' and define aliases for the old names.
9753         * international/mule.el (define-coding-system): Doc fix.
9755 2008-02-01  Dave Love  <fx@gnu.org>
9757         * international/utf-7.el: New file.
9759         * international/mule-conf.el (utf-7): New.
9761 2008-02-01  Kenichi Handa  <handa@m17n.org>
9763         * international/mule-conf.el (utf-16): Add :endian 'big.
9765         * international/mule.el (define-coding-system): Fix docstring
9766         about :bom and :endian.
9768 2008-02-01  Dave Love  <fx@gnu.org>
9770         * international/mule-diag.el (describe-character-set):
9771         Fix printing dimensions.  Use `×', not `x'.
9773 2008-02-01  Kenichi Handa  <handa@m17n.org>
9775         * international/fontset.el: Register CDAC fonts in
9776         face-font-rescale-alist instead of face-resizing-fonts.
9778 2008-02-01  Kenichi Handa  <handa@m17n.org>
9780         * international/mule-conf.el (utf-16-le): Rename from utf-16-le-nosig.
9781         (utf-16-be): Rename from utf-16-be-nosig.
9782         (utf-16-le-with-signature): Rename from utf-16-le.
9783         (utf-16-be-with-signature): Rename from utf-16-be.
9784         (utf-16): Set :bom to (utf-16-le-with-signature .
9785         utf-16-be-with-signature).
9787 2008-02-01  Dave Love  <fx@gnu.org>
9789         * language/georgian.el (georgian-ps, georgian-academy): New coding
9790         system.
9792         * language/chinese.el (chinese-big5-hkscs): New coding system.
9793         (big5-hkscs, cn-big5-hkscs): New aliases.
9795         * international/mule-conf.el (big5-hkscs, georgian-academy):
9796         New charset.
9797         (ibm1047): Doc fix.
9798         (pt154): Add mime-charset.
9799         (ptcp154, cp154): New aliases.
9801 2008-02-01  Dave Love  <fx@gnu.org>
9803         * international/mule.el (charset-iso-final-char, define-coding-system):
9804         Doc fix.
9806 2008-02-01  Kenichi Handa  <handa@m17n.org>
9808         * international/ccl.el (define-ccl-program): Fset charset-id
9809         to charset-id-internal temporarily.
9811 2008-02-01  Kenichi Handa  <handa@m17n.org>
9813         * international/mule-diag.el (list-block-of-chars):
9814         Use decode-char instead of make-char.
9816 2008-02-01  Kenichi Handa  <handa@m17n.org>
9818         * international/fontset.el: Enable the default fontset to use
9819         unicode fonts for ASCII characters.
9820         (x-decompose-font-name): Don't try to resolve PATTERN by
9821         x-resolve-font-name.
9822         (x-complement-fontset-spec): Never prepend an ASCII font.
9823         (create-fontset-from-fontset-spec): If a fontset of the same name
9824         already exists, override it instead of signalling an error.  Don't
9825         turn `ascii' into `latin'.  Don't update fontset-alias-alist here.
9827         * international/mule-conf.el (unicode-bmp): Delete duplicated
9828         definition.  Give it :code-offset 0.
9830         * international/mule-diag.el (print-fontset-element): New function.
9831         (print-fontset): Use print-fontset-element to print the elements
9832         of a fontset.  Use it also to print fonts fallen back to the
9833         default fontsets.
9835         * term/x-win.el: Delete the code to create a fontset from the X
9836         resource "Font".
9838 2008-02-01  Kenichi Handa  <handa@m17n.org>
9840         * international/mule-diag.el (print-fontset): Insert proper
9841         newline and indentation spaces.
9843 2008-02-01  Dave Love  <fx@gnu.org>
9845         * emacs-lisp/byte-opt.el (side-effect-free-fns): Add langinfo,
9846         multibyte-char-to-unibyte.
9848         * emacs-lisp/cl-macs.el (cl-make-type-test): Use characterp.
9850         * international/mule-cmds.el (find-coding-systems-for-charsets):
9851         Use coding-system-type, coding-system-charset-list.
9852         (standard-keyboard-coding-systems): Delete.
9853         (set-locale-environment): Maybe set keyboard coding system.
9854         Avoid typical warning about codeset in C locale.
9856 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9858         * international/fontset.el (x-complement-fontset-spec): If a
9859         fontname doesn't conform to XLFD format, try to get XLFD name by
9860         x-list-fonts.
9862 2008-02-01  Dave Love  <fx@gnu.org>
9864         * international/mule-conf.el (mik, pt154): New charsets.
9866         * language/cyrillic.el (mik, pt154): New coding systems.
9868 2008-02-01  Dave Love  <fx@gnu.org>
9870         * international/characters.el: Move parts around so that syntax
9871         definitions aren't overwritten wrongly.
9873         * international/mule-diag.el (unicode-data): Fix treatment of
9874         numeric-value fields.
9876 2008-02-01  Dave Love  <fx@gnu.org>
9878         * progmodes/cap-words.el: New file.
9880 2008-02-01  Kenichi Handa  <handa@m17n.org>
9882         The following changes are to make character composition happen
9883         automatically on displaying.
9885         * composite.el: Remove all autoload cookies.
9886         (composition-function-table): Move variable declaration from
9887         composite.c.  Change format.
9888         (save-buffer-state): Copy from font-lock.el.
9889         (auto-composition-chunk-size): New variable.
9890         (auto-compose-chars): New function.  Set
9891         auto-composition-function to it.
9892         (toggle-auto-composition): New function.
9894         * international/characters.el: Make all chararacters in the
9895         charset tibetan to tibetan script.
9897         * international/mule-conf.el (tibetan): Fix :code-space property.
9898         (tibetan-1-column): Delete :superset property, add :code-offset
9899         property.
9901         * international/quail.el (quail-input-string-to-events): Don't
9902         generate compose-chars-after events.
9904         * language/devanagari.el: Register devanagari-composable-function
9905         in composition-function-table for Devanagari characters.
9907         * language/devan-util.el: Register devanagari-composable-pattern
9908         in indian-composable-pattern.
9909         (devanagari-composition-function): Add autoload cookie.  Change
9910         arguments to conform to composition-function-table.
9912         * language/european.el: Register combining characters in
9913         composition-function-table.
9914         (diacritic-composition-function): Change arguments to conform to
9915         composition-function-table.
9917         * language/indian.el (indian-composable-pattern): New variable.
9919         * language/ind-util.el (indian-compose-region): Don't call
9920         compose-chars-after, instead call a function registered in
9921         composition-function-table.
9923         * language/lao.el: Register lao-composition-function in
9924         composition-function-table for Lao vowels and tones.
9925         (lao): Don't use lao-post-read-conversion.
9927         * language/lao-util.el (lao-post-read-conversion): Delete this function.
9928         (lao-composition-function): Change arguments to conform to
9929         composition-function-table.
9931         * language/thai.el: Register thai-composition-function in
9932         composition-function-table for Thai vowels and tones.
9933         (thai-tis620): Don't use thai-post-read-conversion.
9935         * language/thai-util.el (thai-post-read-conversion): Delete function.
9936         (thai-composition-function): Change arguments to conform to
9937         composition-function-table.
9939         * language/tibetan.el: Register tibetan-composition-function in
9940         composition-function-table for Tibetan characters.
9942         * language/tibet-util.el (tibetan-composition-function):
9943         Change arguments to conform to composition-function-table.
9945         * loadup.el: Load composite.
9947 2008-02-01  Dave Love  <fx@gnu.org>
9949         * international/mule-diag.el (unicode-data): Find unicodedata-file
9950         literally.
9952 2008-02-01  Dave Love  <fx@gnu.org>
9954         * international/fontset.el: Doc fixes.
9955         ("fontset-default"): Add iso8859-15.
9957 2008-02-01  Kenichi Handa  <handa@m17n.org>
9959         * international/fontset.el ("fontset-default"): Add an entry for
9960         `indian-is13194' charset.
9962         * international/mule-conf.el (indian-is13194): Delete :unify-map
9963         property.  Don't unify this charset.
9964         (indian-2-column): Delete :superset property, add :code-offset property.
9966         * language/devan-util.el: Delete the superfluous autoload cookie
9967         near the head of the file.
9968         (devanagari-compose-region): Add autoload cookie.
9970         * language/ind-util.el (indian-2-column-to-ucs-region):
9971         Add autoload cookie.
9973 2008-02-01  Kenichi Handa  <handa@m17n.org>
9975         * international/fontset.el ("fontset-default"): Add an entry for
9976         `devanagari' script and `malayalam-glyph' charset.
9977         (face-resizing-fonts): Register CDAC fonts.
9979         * international/mule-conf.el (malayalam-glyph): New charset.
9981 2008-02-01  Dave Love  <fx@gnu.org>
9983         * term/x-win.el: Fix typo in loop setting x-keysym-table.
9985 2008-02-01  Dave Love  <fx@gnu.org>
9987         * international/mule-conf.el (utf-8-emacs): Delete :mime-charset.
9989         * term/x-win.el: Remove some ancient compatibility code.  Populate
9990         x-keysym-table.
9992         * international/mule-cmds.el (wid-edit): Require when compiling.
9993         (set-locale-environment): Check locale against coding system
9994         aliases too.
9996 2008-02-01  Kenichi Handa  <handa@m17n.org>
9998         * language/indian.el (in-is13194-devanagari):
9999         Fix :post-read-conversion and :pre-write-conversion.
10001 2008-02-01  Dave Love  <fx@gnu.org>
10003         * international/mule-cmds.el (charset): Supply doc, :tag.
10005 2008-02-01  Kenichi Handa  <handa@m17n.org>
10007         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Be sure to
10008         return a unibyte string.
10010 2008-02-01  Kenichi Handa  <handa@m17n.org>
10012         * international/mule-cmds.el (set-locale-environment):
10013         Delete superfluous ')'s at the tail.
10015 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10017         * international/mule.el (define-coding-system): Fix typo;
10018         "docode" -> "decode".
10020 2008-02-01  Dave Love  <fx@gnu.org>
10022         * emacs-lisp/byte-opt.el (side-effect-free-fns):
10023          Add string-make-unibyte string-make-multibyte string-to-multibyte
10024          string-as-multibyte string-as-unibyte.
10026 2008-02-01  Dave Love  <fx@gnu.org>
10028         * language/english.el (ibm1047, cp1047): New.
10030         * international/mule-conf.el (alternativnyj): Use new table.
10031         (cp866): Define standalone, not as alias.
10032         (ibm866): Change alias.
10033         (ibm1047): New.
10035         * language/cyrillic.el (cyrillic-alternativnyj):
10036         Remove mime-charset.  Use alternativnj charset.
10037         (cp866): Remove alias.  Define standalone.
10039 2008-02-01  Dave Love  <fx@gnu.org>
10041         * language/european.el ("Latin-2", "Latin-5"): Doc fix.
10043         * language/cyrillic.el ("Bulgarian"): Fix input method and charset.
10044         ("Tajik", "Belarusian"): Fix charset.
10046         * international/mule-cmds.el (describe-language-environment):
10047         Be case-insensitive when looking for input methods.
10048         (locale-name-match): Doc fix.
10049         (locale-charset-match-p): New.
10050         (set-locale-environment): Warn if coding system doesn't agree
10051         with system locale.
10053 2008-02-01  Kenichi Handa  <handa@m17n.org>
10055         * international/mule-cmds.el (select-safe-coding-system): If
10056         :mime-charset property of a coding system is not equal to that
10057         coding system, don't show that :mime-charset name.
10059 2008-02-01  Dave Love  <fx@gnu.org>
10061         * international/quail.el (quail-help): Fix underlining.
10063         * language/chinese.el (chinese-gb18030, gb18030)
10064         ("Chinese-GB18030"): New.
10066         * international/mule-cmds.el (locale-language-names): Add GB18030.
10068         * international/swedish.el: Don't require latin-1.
10070 2008-02-01  Dave Love  <fx@gnu.org>
10072         * language/czech.el ("Czech"):
10073         * language/slovak.el ("Slovak"):
10074         * language/romanian.el ("Romanian"): Remove unibyte-syntax property.
10076         * language/greek.el ("Greek"): Remove unibyte-syntax property.
10077         (cp737): New coding system.
10079         * language/european.el: Remove unibyte-syntax properties.
10080         Augment some coding-system properties.
10082         * international/mule-cmds.el (set-language-environment):
10083         Check for charset property of environment.
10084         (language-info-alist): Doc fix.
10086         * Makefile.in (DONTCOMPILE): Remove latin-N.el.
10088         * international/characters.el: Add Latin-1.
10090         * international/latin-1.el, international/latin-2.el,
10091         * international/latin-3.el, international/latin-4.el,
10092         * international/latin-5.el, international/latin-8.el,
10093         * international/latin-9.el: Delete.
10095         * loadup.el: Remove international/latin-N.el.
10097         * case-table.el (set-case-syntax-charset, set-case-syntax-1)
10098         (set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
10099         Undo last changes.
10101         * international/mule-diag.el (unicode-data): Check that
10102         `unicodedata-file' exists.
10104 2008-02-01  Kenichi Handa  <handa@m17n.org>
10106         * international/fontset.el (charset-script-alist): Fix script names.
10108 2008-02-01  Kenichi Handa  <handa@m17n.org>
10110         * international/latin-1.el: Bind set-case-syntax-charset to
10111         iso-8859-1.  Never provide latin-1.
10113         * international/latin-2.el: Bind set-case-syntax-charset to
10114         iso-8859-2.  Never provide latin-2.
10116         * international/latin-3.el: Bind set-case-syntax-charset to
10117         iso-8859-3.  Never provide latin-3.
10119         * international/latin-4.el: Bind set-case-syntax-charset to
10120         iso-8859-4.  Never provide latin-4.
10122         * international/latin-5.el: Bind set-case-syntax-charset to
10123         iso-8859-9.  Never provide latin-5.
10125         * international/latin-8.el: Bind set-case-syntax-charset to
10126         iso-8859-14.  Never provide latin-8.
10128         * international/latin-9.el: Bind set-case-syntax-charset to
10129         iso-8859-15.  Never provide latin-9.
10131         * case-table.el (set-case-syntax-set-multibyte): Delete variable.
10132         (set-case-syntax-charset): New variable.
10133         (set-case-syntax-1): New function.
10134         (set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
10135         Call set-case-syntax-1 on arguments.
10137         * international/mule-cmds.el (set-language-environment): Delete
10138         unnecessary setup of syntax/case for unibyte case.
10140 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10142         * international/fontset.el (generate-fontset-menu): Exclude the
10143         default fontset.
10145         * faces.el (describe-face): Describe :fontset property too.
10147 2008-02-01  Dave Love  <fx@gnu.org>
10149         * international/characters.el: Don't set char width of CJK
10150         charsets generally.  Add some non-word syntax cases.
10151         (korean-ksc5601): Fix ranges with symbol syntax.
10153 2008-02-01  Dave Love  <fx@gnu.org>
10155         * Makefile.in (DONTCOMPILE): Add indian.el.
10157         * language/ind-util.el:
10158         (ucs-bengali-to-is13194-alist, ucs-assamese-to-is13194-alist)
10159         (ucs-gurmukhi-to-is13194-alist, ucs-gujarati-to-is13194-alist)
10160         (ucs-oriya-to-is13194-alist, ucs-tamil-to-is13194-alist)
10161         (ucs-telugu-to-is13194-alist, ucs-malayalam-to-is13194-alist):
10162         Remove declarations and let-bind them in re-written top-level loop
10163         over scripts, including ucs-devanagari-to-is13194-alist.
10165 2008-02-01  Dave Love  <fx@gnu.org>
10167         * international/mule-cmds.el (charset): Move.
10168         (language-info-custom-alist): Move.  Alter :set.
10169         (find-coding-systems-for-charsets): Check charset type before
10170         getting :charset-list.
10172         * language/ind-util.el (iscii-to-ucs-region): Fix typo.
10174 2008-02-01  Dave Love  <fx@gnu.org>
10176         * wid-edit.el (widget-string-complete): New.
10177         (widget-coding-system-prompt-value-history): Delete.
10178         (coding-system): Use coding-system-value-history.
10180         * international/mule-cmds.el (charset): New widget.
10181         (language-info-custom-alist): Use it.
10182         (default-input-method): Modify :type.
10184 2008-02-01  Dave Love  <fx@gnu.org>
10186         * language/ind-util.el (ucs-devanagari-to-is13194-alist)
10187         (indian-glyph-char, indian-char-glyph): Delete.
10188         (is13194-default-repertory): Rename from is13194-default-repartory.
10189         (iscii-to-ucs-region): Hoist evals from loop.
10191         * language/devan-util.el (dev-charseq): Avoid indian-glyph-char.
10193         * language/indian.el (indian-script-table)
10194         (ccl-encode-indian-glyph-font): Delete.
10196         * international/mule-cmds.el (language-info-custom-alist): New.
10197         (input-method-activate-hook, input-method-inactivate-hook)
10198         (input-method-after-insert-chunk-hook)
10199         (input-method-use-echo-area, set-language-environment-hook)
10200         (exit-language-environment-hook): Customize.
10201         (find-coding-systems-for-charsets): Rewrite.
10202         (default-input-method): Add :link.
10204 2008-02-01  Dave Love  <fx@gnu.org>
10206         * international/mule-conf.el (eight-bit): Add :docstring,
10207         :short-name properties.
10208         (cp851): Doc fix.
10209         (unicode-bmp): New.
10211         * case-table.el (set-case-syntax-pair): Remove check on byte lengths.
10213         * language/european.el (cp858): New.
10214         ("Turkish"): Add special case rules.
10216 2008-02-01  Dave Love  <fx@gnu.org>
10218         * international/characters.el: Make Ÿ and ÿ a case pair.
10220 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10222         * international/mule-conf.el: Don't define the charset iso-8859-1
10223         here, just setup its properties.
10225 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10227         * international/mule-conf.el (utf-8): Give :mime-charset property.
10229 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10231         * international/characters.el: Remove duplicated case setting for
10232         Cyrillic and Greek letters.  Don't setup printable-chars here.
10234         * case-table.el (describe-buffer-case-table): Handle the case
10235         that KEY is a cons within map-char-table.
10237 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10239         * international/characters.el: Fix categories ?A and ?C.
10240         Treat ASCII characters as `latin' script.
10242 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10244         * international/fontset.el (fontset-plain-name): If the fontset
10245         name doesn't ends with "-fontset-*", use family name as the first
10246         part of the plain name.
10247         (create-fontset-from-ascii-font): If "fontset-startup" is not yet
10248         created, use that name for the fontset.  Fix arguments to
10249         subst-char-in-string.
10251 2008-02-01  Dave Love  <fx@gnu.org>
10253         * term.el (term-char-mode): Remove generic-character-list code.
10255         * ruler-mode.el (ruler-mode-character-validate): Use characterp.
10257         * wid-edit.el (character): Use characterp.
10259         * international/mule-diag.el (describe-coding-system): Add utf-16 case.
10261         * language/viet-util.el (viet-encode-viscii-char): Use encode-char.
10263         * language/cyrillic.el ("Tajik", "Bulgarian", "Belarusian"):
10264         Add charset.
10265         ("Ukrainian"): New.
10267         * language/georgian.el (georgian-ps): New coding system.
10269 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10271         * international/mule-cmds.el (reset-language-environment):
10272         Don't set nonascii-translation-table and nonascii-insert-offset.
10273         Call set-unibyte-charset, not set-primary-charset.
10274         (nonascii-translation-table, nonascii-insert-offset):
10275         Declare these variable as obsolete ones.
10276         (set-language-environment): Call set-unibyte-charset, not
10277         set-primary-charset.  Call set-charset-priority with `charset'
10278         info of the language environment.
10280 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10282         * international/characters.el (next-word-boundary-han):
10283         Don't treat katakana following han characters as a part of a word.
10285 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10287         * international/characters.el: Call map-charset-chars on big5 (not
10288         chinese-big5-1/2) to set categories `c', `C', and `|'.
10289         (next-word-boundary-han, next-word-boundary-kana): New function.
10290         Register it in next-word-boundary-function-table.
10292 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10294         * arc-mode.el (archive-file-name-coding-system): New variable.
10295         Make it permanent-local.
10296         (byte-after, bref, insert-unibyte): New function.  Change most of
10297         char-after, aref, insert to them respectively.
10298         (archive-mode): Set archive-file-name-coding-system.
10299         (archive-summarize): Don't change the buffer's multibyteness.
10300         (archive-extract): Inherit archive-file-name-coding-system from
10301         archive-superior-buffer.  Bind coding-system-for-write to
10302         archive-file-name-coding-system.
10303         (archive-*-write-file-member): Encode ENAME by
10304         archive-file-name-coding-system.  Bind coding-system-for-write to
10305         no-conversion.
10306         (archive-rename-entry): Encode the filename by
10307         archive-file-name-coding-system.
10308         (archive-mode-revert): Don't change the buffer's multibyteness.
10309         (archive-arc-summarize, archive-lzh-summarize)
10310         (archive-zoo-summarize): Don't change the buffer's multibyteness.
10311         Decode filenames by archive-file-name-coding-system.
10312         (archive-arc-rename-entry, archive-zip-chmod-entry): Don't change
10313         the buffer's multibyteness.
10315         * tar-mode.el (tar-file-name-coding-system): New variable.
10316         Make it permanent-local.
10317         (tar-header-block-tokenize): Decode filename and linkname by
10318         tar-file-name-coding-system.
10319         (tar-header-block-checksum): Call multibyte-char-to-unibyte to get
10320         the byte value of eight-bit chars.
10321         (tar-summarize-buffer): Call set-buffer-multibyte with METHOD
10322         `to'.  Delete unnecessary call of position-bytes.
10323         (tar-mode): Set tar-file-name-coding-system.  Delete unnecessary
10324         call of position-bytes.
10325         (tar-extract): Simplify by calling decode-coding-region with
10326         DESTINATION argument.  Don't toggle multibyteness of tar buffer.
10327         (tar-copy, tar-expunge): Don't toggle multibyteness of tar buffer.
10328         (tar-clear-modification-flags): Delete unnecessary call of
10329         position-bytes.
10330         (tar-rename-entry): Call tar-alter-one-field with encoded new name.
10331         (tar-alter-one-field): Don't toggle multibyteness of tar buffer.
10332         Convert new-data-string by string-to-multibyte before inserting it.
10333         (tar-subfile-save-buffer): Don't toggle multibyteness of tar
10334         buffer.  Simplify by calling encoding-coding-region with
10335         DESTINATION argument.
10336         (tar-mode-write-file): Delete unnecessary call of byte-to-position.
10338 2008-02-01  Dave Love  <fx@gnu.org>
10340         * international/titdic-cnv.el (quail-cxterm-package-ext-info): Doc fix.
10342         * emacs-lisp/copyright.el (copyright-regexp): Remove redundancy.
10344 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10346         * international/characters.el: Setup char-script-table.
10348         * international/fontset.el: Setup the default fontset by the new
10349         script-based way.
10350         (x-complement-fontset-spec): Change the format of arg FONTLIST to
10351         an alist of charsets vs font name lists.
10352         (charset-script-alist): New variable.
10353         (create-fontset-from-fontset-spec): Allow script name in
10354         FONTSET-SPEC.  If charset is specified in FONTSET-SPEC, change it
10355         to the corresponding script name.
10356         (create-fontset-from-ascii-font): Slight tuning.
10358         * international/mule-conf.el (devanagari-glyph): New charset.
10359         Unify these charsets: korean-ksc5601, ipa, tibetan, ethiopic,
10360         japanese-jisx0208, japanese-jisx0212, japanese-jisx0213-1,
10361         japanese-jisx0213-2.
10363         * international/mule-diag.el (print-fontset): Use describe-vector
10364         to handle a char table returned by fontset-info.
10366         * language/indian.el: Don't register ccl-encode-indian-glyph-font
10367         and ccl-encode-unicode-font in font-ccl-encoder-alist.
10369 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10371         * international/mule-util.el (detect-coding-with-priority):
10372         Fix the place of using `,' marker in backquote form.
10374 2008-02-01  Dave Love  <fx@gnu.org>
10376         * international/mule-conf.el (mule-unicode-e000-ffff): Set :max-code.
10378         * international/mule-util.el (with-coding-priority): Fix.
10380         * international/mule.el (set-coding-priority): Fix obsolete spec.
10382 2008-02-01  Dave Love  <fx@gnu.org>
10384         * international/mule-cmds.el (leim-list-header): Add coding tag.
10386 2008-02-01  Dave Love  <fx@gnu.org>
10388         * international/mule-cmds.el (find-coding-systems-region)
10389         (language-info-alist, reset-language-environment, princ-list): Doc fix.
10390         (input-method-verbose-flag): Fix :type.
10392 2008-02-01  Dave Love  <fx@gnu.org>
10394         * international/mule.el (set-char-table-default): Make obsolete.
10396 2008-02-01  Dave Love  <fx@gnu.org>
10398         * language/devanagari.el ("Devanagari"): Fix coding-system,
10399         coding-priority.
10401         * international/mule-diag.el (describe-char-after): Modify display
10402         list processing.
10403         (unicodedata-file, unicodedata-find): New.
10405 2008-02-01  Dave Love  <fx@gnu.org>
10407         * emacs-lisp/bytecomp.el (batch-byte-compile-if-not-done): Add
10408         autoload cookie.
10410         * international/ja-dic-cnv.el (skkdic-convert): Add coding tag.
10412 2008-02-01  Dave Love  <fx@gnu.org>
10414         * international/mule-util.el (detect-coding-with-priority): Rewrite.
10416 2008-02-01  Dave Love  <fx@gnu.org>
10418         * composite.el (compose-string): Doc fix.
10420         * language/georgian.el ("Georgian"): Delete code-pages feature,
10421         add nonascii-translation.
10423         * language/european.el ("German", "French", "Spanish"):
10424         Add latin-9 as alternative coding system.
10425         ("Slovenian", "Polish"): Add windows-1250 as alternative coding system.
10426         ("Dutch"): Add latin-9 as alternative coding system.  Add input method.
10427         ("Turkish"): Add windows-1254 and latin-3 as alternative coding systems.
10428         ("Lithuanian", "Latvian"): Add windows-1257 as alternative coding
10429         system.
10431         * emacs-lisp/byte-opt.el (side-effect-free-fns): Add decode-char,
10432         encode-coding-char.
10433         (side-effect-and-error-free-fns): Add charsetp, max-char,
10434         primary-charset.
10436         * simple.el: Don't require cl when compiling.
10438         * Makefile.in (DONTCOMPILE): Fix duplicates.
10440         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Fix typo.
10442         * international/mule.el: Doc fixes.
10443         (load-with-code-conversion): Fix coding-system-type test.
10445         * international/mule-cmds.el (sort-coding-systems): Comment out
10446         iso-2022 case.
10447         (encoded-string-description): Fix coding-system-type test.
10449 2008-02-01  Dave Love  <fx@gnu.org>
10451         * international/characters.el: Make korean-ksc5601 double-width.
10453         * international/mule.el (auto-coding-regexp-alist):
10454         Recognize Emacs 20/1 byte-compiled files.
10456         * international/mule-conf.el (file-coding-system-alist):
10457         Change .elc to utf-8-emacs.
10459         * emacs-lisp/bytecomp.el (byte-compile-fix-header): Adjust for use
10460         of utf-8-emacs.
10461         (byte-compile-insert-header): Update magic number.  Add ballast.
10462         (map-char-table): Use byte-compile-funarg-2.
10464 2008-02-01  Dave Love  <fx@gnu.org>
10466         * language/cyrillic.el ("Belarusian"): Doc fix.
10467         (cp1125, koi8-t): Doc fix.
10469         * international/mule-cmds.el (find-multibyte-characters): Doc fix.
10470         (find-multibyte-characters): Don't test for charset `unknown'.
10471         (locale-language-names): Change or add: be, bs, cy, mk, ru.koi8,
10472         ru, sr_YU, tg, wa, zh.gbk.
10473         (locale-language-names): Change sp to Cyrillic.
10474         (locale-charset-language-names): Match @euro after utf-8.
10476 2008-02-01  Dave Love  <fx@gnu.org>
10478         * language/chinese.el (chinese-gbk, gbk, cp936, windows-936):
10479         New coding systems.
10480         ("Chinese-GBK"): New environment.
10482         * language/thai-util.el: Remove redundant unicodes in category-setting.
10484         * language/lao-util.el: Remove redundant unicodes in category-setting.
10486         * international/mule-conf.el (japanese-jisx0213-1)
10487         (japanese-jisx0213-2): Add unify-map.
10489 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10491         * international/quail.el (quail-update-leim-list-file):
10492         Force writing the file by iso-2022-7bit.
10494         * international/titdic-cnv.el (miscdic-convert): Force writing the
10495         file by iso-2022-7bit.
10497         * international/mule.el (define-charset): Change the attribute
10498         :parents to :subset or :superset.
10500         * international/mule-conf.el: Adjust for the change of
10501         define-charset (:parent -> :subset or :superset).
10503         * international/characters.el: Fix the last change.
10505 2008-02-01  Dave Love  <fx@gnu.org>
10507         * language/cyril-util.el (cyrillic-encode-koi8-r-char)
10508         (cyrillic-encode-alternativnyj-char): Fix.
10509         (standard-display-cyrillic-translit): Remove redundant unicodes.
10511 2008-02-01  Dave Love  <fx@gnu.org>
10513         * language/cyrillic.el ("Tajik", "Bulgarian", "Belarusian"):
10514         New environments.
10516         * international/mule-conf.el (control-1): New charset.
10517         (eight-bit-control, eight-bit-graphic): Redefine to use raw-bytes space.
10518         (korean-ksc5601): Redefine to use code-offset and unify-map.
10520 2008-02-01  Dave Love  <fx@gnu.org>
10522         * international/mule-conf.el (tcvn-5712): New charset.
10524         * language/vietnamese.el (vietnamese-tcvn, tcvn): New coding system.
10525         ("Vietnamese"): Doc fix.
10527 2008-02-01  Dave Love  <fx@gnu.org>
10529         * international/mule-conf.el (windows-936): New alias.
10531         * cus-start.el: Add scalable-fonts-allowed.
10533         * international/characters.el: Reinstate various CJK syntax and
10534         category setup.  Remove obsolete syntax setting in Greek section.
10535         Optimize the char tables.
10537         * language/thai.el ("Thai"): Add cp874, iso-8859-11 coding systems.
10539         * language/vietnamese.el ("Vietnamese"): Add windows-1258 coding system.
10541         * language/greek.el ("Greek"): Add windows-1253, cp851, cp869
10542         coding systems.
10544         * language/romanian.el ("Romanian"): Add iso-latin-10 coding system.
10546 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10548         * international/characters.el (printable-chars): Setup correctly.
10550 2008-02-01  Dave Love  <fx@gnu.org>
10552         * cus-start.el: Add selection-coding-system.
10554         * language/hebrew.el ("Hebrew"): Add windows-1255, cp862 coding systems.
10556         * language/china-util.el (post-read-decode-hz)
10557         (pre-write-encode-hz): Move from chinese.el.
10558         (big5-to-flat-code, flat-code-to-big5, euc-to-flat-code)
10559         (flat-code-to-euc, expand-euc-big5-alist, big5-to-cns): Delete.
10561         * language/chinese.el (post-read-decode-hz)
10562         (pre-write-encode-hz): Move to china-util.el.
10564         * case-table.el (set-case-syntax-pair): Test again for equal byte
10565         lengths of the pair.
10567         * international/characters.el: Add Vietnamese category to
10568         equivalent unicodes.
10570 2008-02-01  Dave Love  <fx@gnu.org>
10572         * international/mule-conf.el (chinese-sisheng, ipa)
10573         (indian-is13194, tibetan, ethiopic): Add :unify-map.
10575         * international/mule-diag.el (describe-character-set): Account for
10576         more than two dimensions of possibly different size.
10577         (describe-current-coding-system): Add selection-coding-system.
10579         * international/mule-cmds.el (unify-8859-on-encoding-mode)
10580         (unify-8859-on-decoding-mode): Move from mule.el.
10582         * international/mule.el (unify-8859-on-encoding-mode)
10583         (unify-8859-on-decoding-mode): Remove :init-value.
10584         (charset-chars): Add optional dimension arg.
10585         (unify-8859-on-encoding-mode, unify-8859-on-decoding-mode):
10586         Move to mule-cmds.el.
10588 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10590         * international/fontset.el: Change registry for japanese-jisx0208
10591         to "JISX0208*" in the default fontset.
10592         (font-encoding-alist): Add an entry for "JISX0208.1983" and
10593         "ISO10646.indian-1".
10595 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10597         * language/japanese.el (japanese-iso-7bit-1978-irv):
10598         Add `designation' to :flags, `ascii' to :charset-list.
10600         * international/mule.el (define-charset): New args :min-code and
10601         :max-code.
10602         (coding-system-iso-2022-flags): Add use-roman, use-oldjis.
10604         * international/mule-conf.el (chinese-gbk): Change :code-offset to
10605         #x160000.
10606         (gb18030-2-byte, gb18030-4-byte-bmp, gb18030-4-byte-smp)
10607         (gb18030-4-byte-ext-1, gb18030-4-byte-ext-2, gb18030): New charsets.
10609 2008-02-01  Dave Love  <fx@gnu.org>
10611         * language/thai.el (iso-8859-11): New coding system.
10613         * international/mule-conf.el: Doc fixes.
10614         (iso-8859-11): New.
10616 2008-02-01  Dave Love  <fx@albion.dl.ac.uk>
10618         * cus-start.el (scalable-fonts-allowed): Add.
10620 2008-02-01  Dave Love  <fx@gnu.org>
10622         * international/mule.el (unify-8859-on-encoding-mode)
10623         (unify-8859-on-decoding-mode): Dummy versions.
10625         * international/ucs-tables.el: Remove.
10627         * Makefile.in (DONTCOMPILE): Add language/chinese.el,
10628         language/japanese.el.
10630         * international/mule-conf.el: Doc fixes.
10631         (cp936): New alias.
10632         (cp720, cp858): New charsets.
10634         * mail/sendmail.el (mail-recover-1, mail-recover): Use utf-8-emacs
10635         coding system, not emacs-mule.
10637         * files.el (revert-buffer, recover-file): Likewise.
10639         * desktop.el (desktop-save): Likewise.
10641 2008-02-01  Dave Love  <fx@gnu.org>
10643         * international/mule.el (with-category-table): Use make-symbol.
10644         (coding-system-list): Use coding-system-aliases.
10645         (make-translation-table): Don't deal with generic characters.
10647         * international/mule-util.el (coding-system-post-read-conversion)
10648         (coding-system-pre-write-conversion)
10649         (coding-system-translation-table-for-decode)
10650         (coding-system-translation-table-for-encode): Get the right properties.
10651         (with-coding-priority): New macro.
10652         (detect-coding-with-language-environment): Use it.
10653         (coding-system-equal): Use coding-system-plist.
10655         * international/encoded-kb.el (encoded-kbd-setup-keymap) <ccl>:
10656         Use :valid property.
10658         * international/mule-cmds.el (encode-coding-char):
10659         Use find-coding-systems-string.  Don't use make-char.
10660         (describe-language-environment): Use coding-system-aliases.
10661         (prefer-coding-system): Doc fix.
10663         * international/mule-diag.el (describe-current-coding-system):
10664         Fix aliases listing.
10665         (print-iso-2022-flags): Delete.
10666         (print-designation): Partial re-write.
10667         (describe-coding-system): Deal with iso-2022 designations, flags.
10668         Fix shift_jis case.
10669         (describe-char-after): Use characterp.  Print explicit unicode.
10670         Remove some obsolete code.
10671         (print-coding-system-briefly): Fix printing aliases.
10672         (print-coding-system): Use coding-system-aliases.
10673         (mule-diag): Don't list coding categories.
10675         * international/mule-conf.el: Doc fixes.  Remove redundant :long-name properties.
10676         Re-order charset priorities.
10677         (binary): New alias.
10678         (iso-8859-16): Fix nickname.
10679         (define-iso-single-byte-charset): Un-define after use.
10681 2008-02-01  Dave Love  <fx@gnu.org>
10683         * international/characters.el: Additional double width specifications.
10685         * international/mule-diag.el (print-coding-system): Incomplete updates.
10686         (describe-character-set): List more properties.
10687         (print-fontset): Fix case of vector font-spec.
10688         (describe-current-coding-system): Fix iso-7, iso-7-else.
10690         * international/mule-conf.el (ibm866): Fix alias.
10691         (iso-8859-16): Fix nickname.
10693 2008-02-01  Dave Love  <fx@gnu.org>
10695         * language/ind-util.el: Avoid decode-char.
10696         (indian--puthash-char, indian--puthash-c, indian--puthash-cv):
10697         Use characterp, not char-valid-p.
10699         * language/devan-util.el: Add coding tag, avoid decode-char.
10701         * international/titdic-cnv.el: Add coding tag.
10702         (tit-process-header): Add coding tag to output.
10704         * language/thai.el (cp874, ibm874): New coding systems.
10706         * emacs-lisp/byte-opt.el <side-effect-and-error-free-fns>:
10707         Add character-p.
10709         * language/european.el (cp852, ibm852, cp857, ibm857, cp860)
10710         (ibm860, cp861, ibm861, cp863, cp865, ibm865, cp437, ibm437):
10711         New coding systems.
10712         <set-language-info-alist>: Avoid decode-char.
10714         * language/hebrew.el (cp862, ibm862): New coding systems.
10716         * language/greek.el (cp851, ibm851, cp869, ibm869): New coding systems.
10718         * language/cyrillic.el (cp855, ibm855): New coding systems.
10720         * international/mule-conf.el: Avoid decode-char in top-level code
10721         for self-inserting multibyte chars.
10722         (cp437, cp737, cp775, cp851, cp852, cp855, cp857, cp855, cp857)
10723         (cp860, cp861, cp862, cp863, cp864, cp865, cp869, cp874):
10724         New charsets.
10726         * international/characters.el: Various simplifications and additions.
10728 2008-02-01  Dave Love  <fx@gnu.org>
10730         * international/mule-conf.el (code-pages): Provide, for compatibility.
10732         * international/code-pages.el: Remove.
10734 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10736         * Makefile.in: Cancel the 2008-02-01 change of mine.
10738         * international/fontset.el: Add setting for unicode font at the
10739         end of the default fontset.
10741 2008-02-01  Dave Love  <fx@gnu.org>
10743         * international/mule-conf.el (adobe-standard-encoding, symbol):
10744         Adjust :code-space.
10745         (ibm850): Add :ascii-compatible-p.
10747 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10749         * international/mule-conf.el (vietnamese-viscii-lower)
10750         (vietnamese-viscii-upper): Supply them :code-offset, then unify by
10751         mapping table.
10753 2008-02-01  Dave Love  <fx@gnu.org>
10755         * cus-start.el: Add charset-map-directory.
10757         * international/fontset.el (font-encoding-alist): Add adobe-symbol.
10759         * format.el (format-alist): Remove ibm, mac, hp entries (available
10760         natively).
10762         * language/romanian.el (iso-latin-10): Add :mime-charset.
10763         ("Romanian"): Add doc.
10765         * international/mule-conf.el (iso-8859-10, symbol)
10766         (adobe-standard-encoding, ibm850): New charsets.
10767         (iso-8859-13): Fix IR number, final char.
10768         (file-coding-system-alist): Add .xml.
10770         * language/european.el (iso-latin-6, iso-8859-10, latin-6)
10771         (iso-latin-7, iso-8859-13, latin-7, hp-roman8, roman8)
10772         (adobe-standard-encoding, cp850, ibm850): New coding systems.
10773         ("Latin-6", "Latin-7"): New language environments.
10775 2008-02-01  Dave Love  <fx@gnu.org>
10777         * Makefile.in (DONTCOMPILE): Remove ucs-tables, utf-8,
10778         utf-8-subst; add vietnamese, cyrillic, czech.
10780         * language/romanian.el (iso-latin-10): New coding system.
10782         * international/mule-conf.el (emacs-mule): Set :charset-list,
10783         consistent with coding-system-charset-list doc.
10784         (iso-8859-16): New charset.
10786         * international/mule-diag.el (describe-coding-system): Avoid error
10787         for iso-2022, emacs-mule.
10789 2008-02-01  Dave Love  <fx@gnu.org>
10791         * international/codepage.el: Remove or comment out most of code.
10792         (codepage-setup): Re-write as trivial, obsolete function.
10794         * language/utf-8-lang.el ("UTF-8"): Use utf-8, not mule-utf-8.
10795         Remove setup function.
10797         * language/english.el (ebcdic-us, ebcdic-uk): New coding systems.
10799         * Makefile.in (DONTCOMPILE): Add language/vietnamese.el,
10800         language/cyrillic.el, language/czech.el.
10802         * language/vietnamese.el (windows-1258, cp1258): New coding systems.
10803         (font-ccl-encoder-alist): Remove viscii, vscii.
10805         * language/hebrew.el (windows-1255, cp1255): New coding systems.
10807         * language/european.el (windows-1254, cp1254, windows-1257)
10808         (cp1257, next, iso-latin-7, iso-8859-13, latin-7): New coding systems.
10809         ("Latin-7", "Lithuanian", "Latvian"): Don't require code-pages.
10811         * language/greek.el (windows-1253, cp1253): New coding systems.
10813         * international/mule-conf.el (ebcdic-us, ebcdic-uk): Change map
10814         file name.
10815         (windows-1253, windows-1254, windows-1255, windows-1256)
10816         (windows-1257, windows-1258, next): New charsets.
10818         * international/utf-8.el, international/utf-8-subst.el: Remove.
10820         * international/mule.el: Doc fixes.
10821         (charset-list, generic-char-p, set-coding-priority): Make obsolete.
10822         (coding-system-get): Try to convert old-style symbol to keyword.
10823         (define-charset): Purecopy strings in property list.
10824         (define-coding-system): Purecopy docstring.
10826         * international/mule-diag.el (list-character-sets-2): Avoid
10827         charset-bytes.
10828         (list-iso-charset-chars, list-non-iso-charset-chars): Delete.
10829         (list-block-of-chars): Re-write.
10830         (describe-character-set): Show more properties.
10831         (describe-char-after): Correct codepoint display.
10832         (print-coding-system): Use symbolic types.
10834 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10836         * Makefile.in: Be sure also to run emacs with LANG=C.
10838 2008-02-01  Dave Love  <fx@gnu.org>
10840         * international/mule-diag.el: Doc fixes.
10841         (sort-charset-list, charset-multibyte-form-string): Remove.
10842         (list-character-sets, list-character-sets-1)
10843         (list-character-sets-2): Re-write.
10844         (non-iso-charset-alist): Set to nil and made obsolete.
10845         (decode-codepage-char): Re-write and made obsolete.
10846         (read-charset): Don't use non-iso-charset-alist.
10847         (describe-coding-system): Use keyword properties.
10848         (describe-character-set): Re-write.
10850         * international/mule-conf.el (koi8-u, koi8-t, georgian-ps)
10851         (windows-1250, windows-1251, windows-1252, cp1125, ebcdic-us)
10852         (ebcdic-uk): New charsets.
10854         * language/cyrillic.el (koi8-u, koi8-t, windows-1251, cp1125):
10855         New coding systems.
10857         * language/european.el (windows-1252): New coding system.
10859 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10861         * Makefile.in: By sure to run emacs with LC_ALL=C.
10863         * international/encoded-kb.el (encoded-kbd-handle-8bit): Call
10864         encoded-kbd-self-insert-iso2022-8bit with argument 1.
10865         (encoded-kbd-self-insert-charset): New function.
10866         (encoded-kbd-setup-keymap, encoded-kbd-mode): Handle a
10867         coding-system of type charset.
10869 2008-02-01  Dave Love  <fx@gnu.org>
10871         * international/mule-cmds.el (set-locale-environment): Comment out
10872         set-keyboard-coding-system stuff.
10874 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10876         * international/mule.el (define-coding-system): Doc fix;
10877         sjis->shift-jis.
10879         * international/mule-conf.el: Use decode-char instead of make-char.
10881         * international/encoded-kb.el (encoded-kbd-self-insert-iso2022-8bit):
10882         New arg ARG.  Directly call self-insert-command.  This is a
10883         temporary workaround to make it work with latin-1.
10884         (encoded-kbd-mode): Change `sjis' to `shift-jis'.
10886         * international/characters.el: Setup char-width-table for CJK
10887         characters.
10889 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10891         * international/ja-dic-utl.el (skkdic-jisx0208-hiragana-block):
10892         Fix the initial value to specify character range of
10893         japanese-jisx0208, not unicode.
10895         * international/characters.el: Set syntax/category for
10896         japanese-jisx0208.
10898 2008-02-01  Dave Love  <fx@gnu.org>
10900         * mail/sendmail.el (sendmail-send-it): Use :mime-charset, not
10901         mime-charset.
10903         * language/vietnamese.el, language/korean.el, language/japanese.el:
10904         * language/hebrew.el, language/greek.el, language/chinese.el:
10905         Fix :mime-charset properties.
10907         * language/cyrillic.el (cyrillic-iso-8bit, cyrillic-koi8)
10908         (cyrillic-alternativnyj): Fix :mime-charset.
10909         (cp878, cp866): New alias.
10911         * language/european.el: Fix mime-charset properties.
10913         * international/mule-cmds.el (sort-coding-systems)
10914         (select-safe-coding-system, select-message-coding-system): Use
10915         :mime-charset, not 'mime-charset.
10917         * international/mule-conf.el: Add various :mime-charset properties.
10919 2008-02-01  Dave Love  <fx@gnu.org>
10921         * international/encoded-kb.el (encoded-kbd-self-insert-ccl): Fix
10922         getting decoder.
10923         (encoded-kbd-mode): Fix code for coding system type and designations.
10925         * international/mule-conf.el: Spelling fixes.
10927 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10929         * international/fontset.el (fontset-plain-name): Handle the case
10930         that size, weight, slant are not specified in the fontset name.
10932 2008-02-01  Yong Lu  <lyongu@asia-infonet.com>
10934         * language/greek.el (greek-iso-8bit): Fix typo.
10936 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10938         * language/chinese.el (chinese-big5): Change :coding-type to `charset'.
10940 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10942         * international/characters.el: Change encoding to utf-8-emacs.
10943         Remove apparent duplicate codes.
10945 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10947         * international/fontset.el: Change the registry for
10948         chinese-gb2312 and add the registry for chinese-gbk.
10950         * international/mule.el (charset-chars): Fix typo.
10952         * international/mule-conf.el (chinese-gbk): New charset.
10954         * international/titdic-cnv.el (titdic-convert): Read into a
10955         unibyte buffer then make the buffer multibyte.
10957 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10959         * international/mule-conf.el (utf-16-le, utf-16-be): Use :bom attribute
10960         instead of :signature.
10962 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10964         * language/czech.el ("Czech"): Set `iso-8859-2' for
10965         `nonascii-translation'.
10967         * language/romanian.el ("Romanian"): Likewise.
10969         * language/slovak.el ("Slovak"): Likewise.
10971         * international/characters.el: Optimize calls of modify-category-entry.
10973 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10975         * bindings.el: Don't bind multibyte characters to
10976         self-insert-command here.  It's done in mule-conf.el.
10978         * case-table.el (set-case-syntax-offset): Delete variable.
10979         (set-case-syntax-1): Delete function.  Change callers.
10980         (set-case-syntax-delims): Don't check byte length of characters.
10982         * isearch.el (isearch-mode-map): Call set-char-table-range to bind
10983         characters to isearch-printing-char.
10985         * loadup.el: Don't load "international/utf-8".  Don't call
10986         update-coding-systems-internal.  Bind coding-system-for-write to
10987         `utf-8' while writing fns-XXX.el.  Call clear-charset-maps before
10988         dumping.
10990         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Adjust for the
10991         change of map-char-table.
10993         * eshell/esh-mode.el: Adjust for the change of map-char-table.
10995         * international/characters.el: Adjust for the deletion of
10996         generic characters.
10998         * international/code-pages.el (cp-make-translation-table)
10999         (cp-valid-codes, cp-fix-safe-chars): Delete.  Change caller.
11000         (cp-make-coding-system): Call define-coding-system.
11002         * international/fontset.el: Rewrite most code.
11004         * international/ja-dic-cnv.el (skkdic-get-kana-compact-codes):
11005         Call encode-char instead of split-char.
11007         * international/ja-dic-utl.el (skkdic-jisx0208-hiragana-block):
11008         Change value.
11009         (skkdic-lookup-key): Call encode-char instead of split-char.
11011         * international/titdic-cnv.el (titdic-convert): Bind
11012         coding-system-for-write to 'iso-2022-7bit.  Don't work on unibyte
11013         buffer.
11015         * international/latin-1.el: Don't bind set-case-syntax-offset.
11017         * international/latin-2.el: Don't bind set-case-syntax-offset.
11019         * international/latin-3.el: Don't bind set-case-syntax-offset.
11021         * international/latin-4.el: Don't bind set-case-syntax-offset.
11023         * international/latin-5.el: Don't bind set-case-syntax-offset.
11025         * international/latin-8.el: Don't bind set-case-syntax-offset.
11027         * international/latin-9.el: Don't bind set-case-syntax-offset.
11029         * international/mule-cmds.el: Don't use coding category.
11030         Call set-coding-system-priority instead of set-coding-priority.
11031         (sort-coding-systems, select-safe-coding-system):
11032         Call coding-system-priority-list to get the most preferred one.
11033         (reset-language-environment): Order of coding system priority
11034         changed.  Set primary charset to iso-8859-1.
11035         (set-language-environment-coding-systems):
11036         Call set-coding-system-priority instead of set-coding-priority.
11037         (get-charset-property, put-charset-property): Move to mule.el.
11039         * international/mule-conf.el: Ful re-write.
11041         * international/mule-diag.el (print-designation): Change arguments.
11042         (print-iso-2022-flags): New function.
11043         (describe-coding-system, describe-current-coding-system):
11044         Adjust for the new structure of coding system.
11046         * international/mule.el (char-valid-p): Make it an alias of characterp.
11047         (define-charset): Full re-design.
11048         (charset-quoted-standard-p): Delete.
11049         (charsetp): Move to charset.c.
11050         (charset-info, charset-id, charset-bytes, charset-width)
11051         (charset-directioin, charset-iso-graphic-plane)
11052         (charset-reverse-charset): Delete.
11053         (charset-dimension, charset-chars, charset-iso-final-char)
11054         (charset-description, charset-short-name, charset-long-name):
11055         Call charset-plist instead of charset-info.
11056         (charset-plist, set-charset-plist): Move to charset.c.
11057         (get-charset-property, put-charset-property): Move from
11058         mule-cmds.el.  Call charset-plist and set-charset-plist.
11059         (make-char): Delete.
11060         (generic-char-p): Make it always return nil.
11061         (decode-char, encode-char): Move to charset.c.
11062         (coding-spec-XXX-idx): Delete variables.
11063         (coding-system-iso-2022-flags): New variable.
11064         (define-coding-system): New function.
11065         (transform-make-coding-system-args, make-coding-system): Delete.
11066         (set-coding-priority): Make it obsolete.
11067         (after-insert-file-set-buffer-file-coding-system)
11068         (find-new-buffer-file-coding-system): Adjust for the new coding
11069         system structure.
11071         * language/chinese.el, language/cyrillic.el, language/european.el:
11072         * language/greek.el, language/hebrew.el, language/indian.el:
11073         * language/japanese.el, language/korean.el, language/lao.el:
11074         * language/thai.el, language/tibetan.el, language/vietnamese.el:
11075         Call define-coding-system instead of make-coding-system.
11076         Delete all CCL program.
11078         * textmodes/sgml-mode.el (sgml-mode-map): Use encode-char instead
11079         of make-char.
11080         (sgml-char-names-table): Fix iteration limit.
11082         * term/mac-win.el: Delete unnecessary calls of set-fontset-font.
11083         (ccl-encode-mac-roman-font): Delete.
11085         * Makefile.in (DONTCOMPILE): Add latin1-disp.el, ucs-tables.el,
11086         utf-8.el, and utf-8-subst.el as they can't be bytecompiled
11087         currently.  This is just a temporary workaround.
11089 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11091         * whitespace.el (global-whitespace-mode): Use `find-file-hook' instead
11092         of `find-file-hooks'.
11093         (global-whitespace-toggle-options): Doc fix.
11095 2008-02-01  Juanma Barranquero  <lekktu@gmail.com>
11097         * whitespace.el (whitespace): Set :version tag to 23.1.
11098         (whitespace-turn-off, whitespace-toggle-options): Fix typos.
11099         (whitespace-style, whitespace-chars, whitespace-space)
11100         (whitespace-hspace, whitespace-tab, whitespace-newline)
11101         (whitespace-trailing, whitespace-line, whitespace-space-before-tab)
11102         (whitespace-indentation, whitespace-empty, whitespace-space-after-tab)
11103         (whitespace-hspace-regexp, whitespace-space-regexp)
11104         (whitespace-tab-regexp, whitespace-trailing-regexp)
11105         (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
11106         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
11107         (whitespace-space-after-tab-regexp, whitespace-line-column)
11108         (whitespace-display-mappings, global-whitespace-toggle-options)
11109         (whitespace-cleanup, whitespace-cleanup-region)
11110         (whitespace-interactive-char): Doc fixes.
11112 2008-02-01  Juanma Barranquero  <lekktu@gmail.com>
11114         * whitespace.el (global-whitespace-mode): Fix modeline lighter.
11115         When turning off the global mode, turn off the local modes too
11116         if whitespace is being unloaded.
11117         (whitespace-unload-function): New function.
11119 2008-02-01  Thien-Thi Nguyen  <ttn@gnuvola.org>
11121         * vc.el (vc-update): Fix bug: Specify branch tip as
11122         vc-checkout REVISION.  Reported by Dan Nicolaescu.
11124 2008-02-01  Glenn Morris  <rgm@gnu.org>
11126         * info.el (bookmark-make-cell-function, bookmark-search-size)
11127         (bookmark-current-bookmark): Declare variables for compiler.
11128         (bookmark-buffer-file-name, bookmark-get-filename)
11129         (bookmark-get-front-context-string)
11130         (bookmark-get-rear-context-string, bookmark-get-position)
11131         (bookmark-get-info-node, bookmark-file-or-variation-thereof)
11132         (bookmark-jump-noselect): Declare functions for compiler.
11133         (Info-bookmark-make-cell): Fix argument list to match example of
11134         `bookmark-make-cell-for-text-file'.
11135         (Info-bookmark-jump): Don't require info inside info.el.
11137 2008-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
11139         * progmodes/verilog-mode.el (verilog-sk-prompt-msb)
11140         (verilog-sk-module, verilog-sk-function, verilog-sk-begin)
11141         (verilog-sk-if, verilog-sk-wire, verilog-sk-for)
11142         (verilog-sk-state-machine): Quote all calls to
11143         "auxiliary skeleton"s to prevent infloops.
11145 2008-02-01  Jason Rumney  <jasonr@gnu.org>
11147         * w32-fns.el: Partially revert 2007-11-10 change.
11149 2008-02-01  Martin Rudalics  <rudalics@gmx.at>
11151         * mail/rmail.el (rmail-highlight): Fix specification.
11152         Reported by pod <pod@herald.ox.ac.uk>.
11154 2008-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11156         * image-mode.el (image-mode-current-vscroll)
11157         (image-mode-current-hscroll): Make buffer-local.
11158         (image-set-window-vscroll, image-set-window-hscroll): Simplify.
11159         (image-reset-current-vhscroll): Use the latest setting when displaying
11160         for the first time in a window.  Apply to all windows in the frame.
11161         (image-mode): Don't make image-mode-current-[vh]scroll buffer-local.
11163         * progmodes/grep.el (grep-compute-defaults):
11164         Don't mix up defaults for different connections to the same host.
11166 2008-01-31  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11168         * blank-mode.el: Rename to whitespace.el.
11170         * obsolete/whitespace.el: Rename to obsolete/old-whitespace.el.
11172 2008-01-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11174         * net/rcompile.el (remote-compile): Remove broken code.
11176 2008-01-31  Jason Rumney  <jasonr@gnu.org>
11178         * term/w32-win.el (image-library-alist): Prefer libxpm.dll.
11180 2008-01-31  Juanma Barranquero  <lekktu@gmail.com>
11182         * linum.el (linum-unload-function): New function.
11184 2008-01-30  Nick Roberts  <nickrob@snap.net.nz>
11186         * progmodes/gdb-ui.el (gdb-var-set-format-regexp): New constant.
11187         (gdb-var-set-format-handler): New function.
11188         (gdb-var-set-format): Use it.
11190 2008-01-30  Juanma Barranquero  <lekktu@gmail.com>
11192         * emacs-lisp/check-declare.el (check-declare-directory):
11193         * emacs-lisp/authors.el (authors): Use `find-program' and
11194         `grep-program' instead of hardcoded program names.
11196         * emacs-lisp/cl-loaddefs.el: Update.
11198 2008-01-30  Tassilo Horn  <tassilo@member.fsf.org>
11200         * info.el (Info-bookmark-make-cell, Info-bookmark-jump): New functions.
11201         Implement bookmark support the new make-cell/handler way.
11202         (Info-mode): Bind bookmark-make-cell-function to
11203         Info-bookmark-make-cell buffer locally.
11205 2008-01-30  Richard Stallman  <rms@gnu.org>
11207         * progmodes/etags.el (tags-query-replace): Delete unused optional args.
11208         Doc fix.
11210         * files.el (hack-local-variables): Don't query about fake variables.
11212 2008-01-30  Markus Triska  <markus.triska@gmx.at>
11214         * linum.el: New file.
11216 2008-01-29  Michael Albinus  <michael.albinus@gmx.de>
11218         * net/tramp.el (tramp-methods): Use "-H" option for "sudo".
11219         Suggested by Trent W. Buck <trentbuck@gmail.com>.  Make ("%h")
11220         a single element in "plinkx".
11221         (tramp-handle-shell-command): Reuse "*Async Shell Command*" or
11222         "*Shell Command Output*" buffers.  Check, whether there is already
11223         an asynchronous process running.  Display always the buffer of the
11224         asynchronous process.
11225         (tramp-compute-multi-hops): Adapt error message.
11227 2008-01-29  Alan Mackenzie  <acm@muc.de>
11229         * progmodes/cc-langs.el (c-specifier-key): Exclude "template"
11230         from this regexp; part of same fix as next change to cc-engine.el.
11232         * progmodes/cc-engine.el (c-guess-basic-syntax, CASE 5A.5):
11233         Anchor the "{" of a template function correctly on "template", not the
11234         following "<".
11236         * progmodes/cc-defs.el (c-version): Increase to 5.31.5.
11238 2008-01-29  Tassilo Horn  <tassilo@member.fsf.org>
11240         * doc-view.el (doc-view-mode): Adapt to image-mode-current-vscroll
11241         and image-mode-current-hscroll being alists now.
11243         * image-mode.el (image-mode-current-vscroll)
11244         (image-mode-current-hscroll): Add doc strings.
11245         (image-set-window-vscroll, image-set-window-hscroll)
11246         (image-reset-current-vhscroll, image-mode): Adapt to
11247         image-mode-current-vscroll and image-mode-current-hscroll being
11248         alists now.
11250 2008-01-29  Martin Rudalics  <rudalics@gmx.at>
11252         * emacs-lisp/find-func.el (find-function-search-for-symbol):
11253         Strip extension from .emacs.el to make sure symbol is searched
11254         in .emacs too.
11256 2008-01-29  Tassilo Horn  <tassilo@member.fsf.org>
11258         * doc-view.el (doc-view-mode): Use facilities below to
11259         restore [vh]scroll when switching buffers.
11261         * image-mode.el (image-mode-current-vscroll)
11262         (image-mode-current-hscroll): New variables.
11263         (image-set-window-hscroll, image-set-window-vscroll): New functions.
11264         (image-forward-hscroll, image-next-line, image-bol, image-eol)
11265         (image-bob, image-eob): Use them.
11266         (image-reset-current-vhscroll): New function.
11267         (image-mode): Make new variables buffer-local and reset [vh]scroll
11268         on window configuration changes.
11270 2008-01-27  Nick Roberts  <nickrob@snap.net.nz>
11272         * progmodes/gdb-ui.el (gdb-create-define-alist): Don't call
11273         gdb-cpp-define-alist-program if file is nil (currently only
11274         " *partial-output-...").
11276 2008-01-27  Richard Stallman  <rms@gnu.org>
11278         * allout.el: Many doc fixes.
11279         (allout-encrypt-string): Fix error message.
11281 2008-01-26  Eli Zaretskii  <eliz@gnu.org>
11283         * progmodes/etags.el (tags-query-replace): Doc fix.
11285 2008-01-25  Juanma Barranquero  <lekktu@gmail.com>
11287         * allout.el (allout-unload-function): New function.
11289 2008-01-25  Juanma Barranquero  <lekktu@gmail.com>
11291         * allout.el (allout-prefix-data): Doc fix.
11292         (allout-show-current-subtree): Reflow docstring.
11293         (allout-use-mode-specific-leader, allout-use-hanging-indents)
11294         (produce-allout-mode-map, allout-overlay-interior-modification-handler)
11295         (allout-next-heading, allout-previous-heading, allout-rebullet-heading)
11296         (allout-rebullet-topic, allout-rebullet-topic-grunt, allout-kill-topic)
11297         (allout-copy-topic-as-kill, allout-listify-exposed)
11298         (allout-process-exposed, allout-encrypted-key-info)
11299         (allout-update-passphrase-mnemonic-aids)
11300         (allout-next-topic-pending-encryption)
11301         (allout-tests-globally-true): Fix typos in docstrings.
11303 2008-01-23  Jason Rumney  <jasonr@gnu.org>
11305         * lpr.el (printer-name): Do not set on MS Windows.
11307 2008-01-28  Michael Albinus  <michael.albinus@gmx.de>
11309         * net/tramp.el (tramp-handle-shell-command): Use "/bin/sh -c" for
11310         the command.
11312 2008-01-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11314         * whitespace.el: Moved to obsolete dir.
11316         * blank-mode.el: New version 9.2.  Replace whitespace functions by
11317         aliases in blank-mode.
11318         (whitespace-buffer): New fun.
11319         (whitespace-region): Alias for whitespace-buffer, because there is no
11320         blank-region fun.
11321         (whitespace-cleanup): Alias for blank-cleanup.
11322         (whitespace-cleanup-region): Alias for blank-cleanup-region.
11324 2008-01-27  Juanma Barranquero  <lekktu@gmail.com>
11326         * server.el (server-log-time-function): Doc fix.
11327         (server-buffer): Fix typo in docstring.
11329 2008-01-27  Martin Rudalics  <rudalics@gmx.at>
11331         * view.el (view-buffer): Explain in doc-string why exit-action
11332         should not be set to kill-buffer.
11334         * arc-mode.el (archive-extract):
11335         * tar-mode.el (tar-extract): Use kill-buffer-if-not-modified as
11336         exit-action when viewing the buffer.
11338 2008-01-27  Dan Nicolaescu  <dann@ics.uci.edu>
11340         * add-log.el (change-log-search-file-name): Work harder to find
11341         the correct file name.
11342         (change-log-find-file): Fix typo.
11343         (change-log-start-entry-re): Move definition earlier.
11345 2007-01-27  Jan Nieuwenhuizen  <janneke@gnu.org>
11347         * add-log.el (change-log-search-file-name, change-log-find-file):
11348         New function.
11349         (change-log-font-lock-keywords): Move file name matching ...
11350         (change-log-file-names-re): ... here.  New defconst.
11351         (change-log-mode-map): New binding C-c C-f to change-log-find-file.
11353 2008-01-27  Alan Mackenzie  <acm@muc.de>
11355         * progmodes/cc-awk.el, progmodes/cc-engine.el: Correct typos,
11356         enhance comments.
11358 2008-01-27  Michael Albinus  <michael.albinus@gmx.de>
11360         * net/tramp.el (tramp-compute-multi-hops): In case of su(do)?
11361         methods, the host name must be a local host.
11363 2008-01-27  Dan Nicolaescu  <dann@ics.uci.edu>
11365         * vc.el: Add TODO item about not defaulting to RCS.
11367         * server.el (server-process-filter): Check for non-nil before
11368         calling file-directory-p.
11370 2008-01-27  Alan Mackenzie  <acm@muc.de>
11372         * progmodes/cc-vars.el (c-hanging-braces-alist): New element for
11373         arglist-cont-nonempty.
11375         * progmodes/cc-cmds.el (c-brace-newlines): Determine the newlines
11376         for a brace with syntax arglist-cont-nonempty.
11378         * progmodes/cc-styles.el (c-style-alist): Add elements for
11379         arglist-cont-nonempty into 5 styles (gnu, ellemtel, linux, python, awk).
11381 2008-01-27  Thien-Thi Nguyen  <ttn@gnuvola.org>
11383         * button.el (define-button-type): Clarify type of NAME in docstring.
11385 2008-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11387         * server.el (server-buffer): New const.
11388         (server-log): New var.
11389         (server-log): Use them.
11390         (server-process-filter): (Try to) run the continuation in the same cwd
11391         as the client's.
11393 2008-01-26  Alan Mackenzie  <acm@muc.de>
11395         * progmodes/cc-defs.el (c-save-buffer-state):
11396         Bind buffer-file-name and buffer-file-truename to nil, to prevent
11397         primitives generating "buffer is read only" messages.
11399 2008-01-20  Ulf Jasper  <ulf.jasper@web.de>
11401         * calendar/icalendar.el (icalendar-version): Increase to "0.17".
11402         (icalendar-import-format): Doc fix.  Allow function type.
11403         (icalendar--read-element): Doc fix.
11404         (icalendar--parse-summary-and-rest): Doc fix.  Handle function
11405         type icalendar-import-format.  Make regexps non-greedy.
11406         (icalendar--format-ical-event): Handle function type
11407         icalendar-import-format.
11408         (icalendar-import-format-sample): New function.
11410 2008-01-26  Thien-Thi Nguyen  <ttn@gnuvola.org>
11412         * vc.el (vc-exec-after): For mode-line-process highlighting, if
11413         `compile' is not available, fall back to font-lock-warning-face.
11415 2008-01-26  Phil Sung  <psung@mit.edu>  (tiny change)
11417         * wdired.el (wdired-get-filename): Change `(1+ beg)' to `beg' so
11418         that the filename end is found even when the filename is empty.
11419         Fixes error and spurious newlines when marking files for deletion.
11421 2008-01-26  Martin Rudalics  <rudalics@gmx.at>
11423         * subr.el (find-tag-default): Simplify using exclusively
11424         skip-syntax-backward/-forward.
11426 2008-01-26  Michael Albinus  <michael.albinus@gmx.de>
11428         * vc.el (vc-directory, vc-update-change-log): Remove check for
11429         Tramp.  Both functions work for it, though pretty slow
11430         (`vc-directory').  Maybe the implementation can be optimized.
11432         * net/tramp.el (tramp-dissect-file-name): Raise an error when
11433         Tramp 2.0 syntax is used.
11434         Suggested by Trent W. Buck <trentbuck@gmail.com>.
11436 2008-01-26  Eli Zaretskii  <eliz@gnu.org>
11438         * ls-lisp.el (ls-lisp-insert-directory): If -n switch is used,
11439         invoke directory-files-and-attributes with last argument `integer'
11440         instead of `string'.
11441         (insert-directory): Add -n to the list of supported switches
11442         mentioned in the doc string.
11444 2008-01-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11446         * blank-mode.el: New version 9.1.  Handle "long" line tail
11447         visualization.  Doc fix.
11448         (blank-line-length): Rename to blank-line-column.
11449         (blank-chars-value-list, blank-toggle-option-alist, blank-help-text):
11450         Initialization fix.
11451         (blank-replace-spaces-by-tabs): New fun.
11452         (blank-cleanup, blank-cleanup-region, blank-color-on): Code fix.
11454 2008-01-25  Richard Stallman  <rms@gnu.org>
11456         * subr.el (add-hook): Implement `permanent-local-hook' property.
11458         * loadhist.el (file-provides, file-requires): Push the filename right.
11460 2008-01-25  Martin Rudalics  <rudalics@gmx.at>
11462         * emacs-lisp/find-func.el (find-library): Wrap search for
11463         library name in condition-case to avoid reporting a scan-error.
11465 2008-01-25  Juanma Barranquero  <lekktu@gmail.com>
11467         * server.el (server-process-filter): Don't force
11468         the authentication string to be followed by "\n".
11470 2008-01-25  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11472         * blank-mode.el: New version 9.0.  New commands to clean up some blank
11473         problems like trailing blanks.  New faces and regexp for visualizing
11474         the blank problems.  Doc fix.
11475         (blank-chars, blank-global-modes, blank-chars-value-list)
11476         (blank-toggle-option-alist, blank-help-text): Initialization fix.
11477         (blank-indentation, blank-empty, blank-space-after-tab): New faces.
11478         (blank-indentation, blank-empty, blank-space-after-tab)
11479         (blank-indentation-regexp, blank-empty-at-bob-regexp)
11480         (blank-empty-at-eob-regexp, blank-space-after-tab-regexp): New options.
11481         (blank-cleanup, blank-cleanup-region): New commands.
11482         (blank-color-on): Code fix.
11484 2008-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
11486         * ibuffer.el (ibuffer-default-sorting-mode): Add option to sort by
11487         file name.
11488         (ibuffer-mode-map): Add binding to sort by file name.
11489         (ibuffer-filename/process-header-map): New variable.
11490         (filename-and-process): Add a header that sorts by file name.
11491         (ibuffer-mode): Mention sorting by file name.
11493         * ibuf-ext.el (filename/process): New sorter.
11495 2008-01-25  Sven Joachim  <svenjoac@gmx.de>
11497         * view.el (kill-buffer-if-not-modified): Don't pass t to
11498         buffer-modified-p.
11500 2008-01-24  Michael Albinus  <michael.albinus@gmx.de>
11502         * net/tramp.el (tramp-do-copy-or-rename-file): Flush the cache of
11503         the source file in case of `rename'.
11504         Reported by Pete Forman <pete.forman@westerngeco.com>.
11506 2008-01-24  Ken Manheimer  <ken.manheimer@gmail.com>
11508         * allout.el (allout-keybindings-list): In initial setting, express
11509         meta-prefixed allout keys as vectors instead of strings, since the
11510         string form is interpreted in some cases as composed key
11511         modifiers, eg, accented keys.
11513         (allout-line-boundary-regexp): Clarify description.
11515         (set-allout-regexp): Repair the expressions so that the formfeed
11516         part is identified as one of the top-level groups, and is
11517         included in all the forms, not just the -line-boundary-regexp one.
11519         (allout-prefix-data): Incorporate information from the various
11520         allout regexp's formfeed alternative group, when present.
11522         (allout-write-file-hook-handler): Rectify mangling of the error
11523         handling.  It was broken in 2007-12-06T19:56:41Z!deego@gnufans.org, where an `error'
11524         condition-case handler was apparently reformatted as if it was a
11525         call to the error function.  An apparent repair attempt in version
11526         1.101 situated the original body of the error handling code as
11527         bogus condition-case handlers.  I've returned to just about the
11528         working code that was originally there, removing an unnecessary -
11529         but benign - enclosing 'progn'.  (Automated or cursory code fixes
11530         often aren't.)
11532         (allout-region-active-p): Fallback to value of mark-active if
11533         neither use-region-p nor region-active-p are present, for
11534         compatability with current and recent emacs major releases.
11536 2008-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
11538         * textmodes/reftex-toc.el (reftex-toc-next, reftex-toc-previous)
11539         (reftex-toc-restore-region):
11540         * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer)
11541         (reftex-index-phrases-apply-to-region):
11542         * textmodes/ispell.el (ispell-word):
11543         * progmodes/vhdl-mode.el (vhdl-keep-region-active):
11544         * progmodes/pascal.el (pascal-mark-defun):
11545         * progmodes/f90.el (f90-mark-subprogram, f90-indent-region)
11546         (f90-fill-region):
11547         * emulation/tpu-edt.el (tpu-set-mark):
11548         * emulation/crisp.el (crisp-region-active):
11549         * winner.el (winner-active-region):
11550         * ansi-color.el (ansi-color-set-extent-face): Use featurep instead
11551         of bound tests in order to resolve conditionals at compile time.
11553 2008-01-24  Juanma Barranquero  <lekktu@gmail.com>
11555         * delsel.el (delsel-unload-function): Don't use `remprop'; it is
11556         not autoloaded, and we wouldn't want to load CL just to unload
11557         delsel.el anyway.  Suggested by Martin Rudalics <rudalics@gmx.at>.
11559 2008-01-24  Martin Rudalics  <rudalics@gmx.at>
11561         * delsel.el (delete-selection-pre-hook): Avoid clearing out
11562         pre-command-hook when text is read-only.
11564 2008-01-24  Thien-Thi Nguyen  <ttn@gnuvola.org>
11566         * vc.el (vc-process-filter): Do nothing if buffer not live.
11567         (vc-diff-finish): Rename from vc-diff-sentinel.
11568         No longer take REV1-NAME and REV2-NAME.
11569         Instead, take BUFFER-NAME.  Do nothing if buffer not live.
11570         Don't do window resize if no window displays buffer.
11571         (vc-diff-internal): Use vc-diff-finish.
11573         * vc.el (vc-next-action): Fix two instances of "free-var file" bug:
11574         In both cases, convert single call to one wrapped in dolist.
11576 2008-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
11578         * vc.el: Add a TODO item about missing files.
11579         (vc-exec-after): Add a tooltip to the new mode-line item.
11581 2008-01-24  Glenn Morris  <rgm@gnu.org>
11583         * t-mouse.el (gpm-mouse-start): Declare as a function.
11585 2008-01-23  Michael Albinus  <michael.albinus@gmx.de>
11587         * net/tramp.el (tramp-remote-process-environment): Set "LC_ALL=C".
11588         (tramp-end-of-output): Add `tramp-rsh-end-of-line' into the regexp.
11589         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11590         Don't send `tramp-rsh-end-of-line' additionally, when setting the
11591         prompt.
11592         (tramp-wait-for-output): Distinguish different prompt formats.
11593         (tramp-get-test-nt-command): Don't check for "\n" in the prompt.
11594         (tramp-local-host-p): Check whether temp directory is writable.
11596 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11598         * vc.el: Add TODO items.
11600 2008-01-23  Carsten Dominik  <dominik@science.uva.nl>
11602         * replace.el (occur-mode-find-occurrence-hook): New hook that can
11603         be used to reveal or highlight the location of a match.
11604         (occur-mode-goto-occurrence, occur-mode-goto-occurrence-other-window)
11605         (occur-mode-display-occurrence): Run `occur-mode-find-occurrence-hook'.
11607 2008-01-23  Martin Rudalics  <rudalics@gmx.at>
11609         * progmodes/hideif.el (hide-ifdef-shadow): Add version number
11610         for defcustom.
11611         (hide-ifdef-shadow): Add version number for defface.
11613 2008-01-23  Glenn Morris  <rgm@gnu.org>
11615         * textmodes/org.el (org-export-latex-cleaned-string): Fix declaration.
11617 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11619         * progmodes/sh-script.el (sh-basic-offset):
11620         * progmodes/cc-vars.el (c-syntactic-indentation)
11621         (c-syntactic-indentation-in-macros): Mark as safe.
11623 2008-01-23  Richard Stallman  <rms@gnu.org>
11625         * icomplete.el (icomplete-get-keys):
11626         Look up KEYS using all maps in proper buffer.
11628 2008-01-23  Juanma Barranquero  <lekktu@gmail.com>
11630         * frame.el (display-mm-height, display-mm-width):
11631         * whitespace.el (whitespace-check-leading-whitespace)
11632         (whitespace-check-trailing-whitespace)
11633         (whitespace-check-spacetab-whitespace)
11634         (whitespace-check-indent-whitespace)
11635         (whitespace-check-ateol-whitespace):
11636         * progmodes/ada-xref.el (ada-convert-file-name): Fix typo in docstring.
11638 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11640         * vc-arch.el (vc-arch-delete-rej-if-obsolete): Remove the
11641         after-save-hook so that it is not called multiple times.
11643         * vc-svn.el (vc-svn-resolve-when-done): Likewise.
11645 2008-01-23  Eli Zaretskii  <eliz@gnu.org>
11647         * view.el (view-file-other-window, view-file-other-frame):
11648         Don't kill the buffer if it is modified.  Doc fixes.
11649         (kill-buffer-if-not-modified): New function.
11650         (view-file): Don't kill the buffer if it is modified.
11652         * progmodes/ebrowse.el (ebrowse-view-file-other-window): Delete.
11653         (ebrowse-view/find-file-and-search-pattern):
11654         Call view-file-other-window instead of ebrowse-view-file-other-window.
11655         (ebrowse-view-file-other-frame): Don't call
11656         current-window-configuration.  Fix second argument in the call to
11657         view-mode-enter.  Doc fix.
11659 2008-01-23  Richard Stallman  <rms@gnu.org>
11661         * subr.el (atomic-change-group): Prevent undo list truncation.
11663 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11665         * files.el (safe-local-eval-forms):
11666         Mark (add-hook 'write-file-hooks 'time-stamp) as safe.
11668 2008-01-23  Nick Roberts  <nickrob@snap.net.nz>
11670         * comint.el (comint-insert-input): Set point first.
11672         * progmodes/gdb-ui.el (gdb-dequeue-input): Make doubly sure
11673         session doesn't hang because gdb-pending-triggers is non-nil.
11674         (gdb-frame-handler): Use buffer-file-name instead of
11675         buffer-name in case of duplicate file names.
11677 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11679         * progmodes/verilog-mode.el (verilog-mode-map): Don't bind C-M-a,
11680         C-M-e and C-M-h for emacs, they work by default.
11681         (verilog-emacs-features): Remove.
11682         (verilog-setup-dual-comments, verilog-populate-syntax-table):
11683         Remove.  Move syntax table initialization ...
11684         (verilog-mode-syntax-table): ... here.
11685         (verilog-mode): Don't initialize the syntax table here.
11686         (verilog-mark-defun): Only do something useful for XEmacs, Emacs
11687         does not need it.
11689 2008-01-23  Wilson Snyder  <wsnyder@wsnyder.org>
11691         * progmodes/verilog-mode.el (verilog-booleanp): New function for
11692         backward compatibility.  Replace all uses of booleanp with
11693         verilog-booleanp.
11695 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11697         * vc-hg.el (vc-hg-diff): Don't pass an empty string.
11699 2008-01-23  Wilson Snyder  <wsnyder@wsnyder.org>
11701         * progmodes/verilog-mode.el (top-level): Fix spacing.
11702         (verilog-mode-version, verilog-mode-release-date):
11703         Update version number.
11704         (verilog-mode-release-emacs): New variable.
11705         (compile-command, reporter-prompt-for-summary-p):
11706         Define for byte compiler.
11707         (verilog-startup-message-lines, verilog-startup-message-displayed)
11708         (verilog-display-startup-message): Remove.
11709         (verilog-highlight-p1800-keywords): Improve docstring.
11710         (sigs-in, sigs-out, got-sig, got-rvalue, uses-delayed)
11711         (vector-skip-list): Only defvar at compile time.
11712         (verilog-highlight-translate-off, verilog-indent-level)
11713         (verilog-indent-level-module, verilog-indent-level-declaration)
11714         (verilog-indent-declaration-macros, verilog-indent-lists)
11715         (verilog-indent-level-behavioral, verilog-indent-level-directive)
11716         (verilog-cexp-indent, verilog-case-indent, verilog-auto-newline)
11717         (verilog-auto-indent-on-newline, verilog-tab-always-indent)
11718         (verilog-tab-to-comment, verilog-indent-begin-after-if)
11719         (verilog-align-ifelse, verilog-minimum-comment-distance)
11720         (verilog-auto-lineup, verilog-highlight-p1800-keywords)
11721         (verilog-auto-endcomments, verilog-auto-read-includes)
11722         (verilog-auto-star-expand, verilog-auto-star-save)
11723         (verilog-library-flags, verilog-library-directories)
11724         (verilog-library-files, verilog-library-extensions)
11725         (verilog-active-low-regexp, verilog-auto-sense-include-inputs)
11726         (verilog-auto-sense-defines-constant, verilog-auto-reset-widths)
11727         (verilog-assignment-delay, verilog-auto-inst-vector)
11728         (verilog-auto-inst-template-numbers, verilog-auto-input-ignore-regexp)
11729         (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
11730         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
11731         Add safe-local-variable properties.
11732         (verilog-statement-menu, verilog-company, verilog-re-search-forward)
11733         (verilog-re-search-backward, verilog-error-regexp-add)
11734         (verilog-end-block-re, verilog-emacs-features)
11735         (verilog-populate-syntax-table, verilog-setup-dual-comments)
11736         (verilog-type-font-keywords, verilog-inside-comment-p)
11737         (electric-verilog-backward-sexp, verilog-backward-sexp)
11738         (verilog-forward-sexp, verilog-font-lock-init, verilog-mode)
11739         (electric-verilog-terminate-line, electric-verilog-semi)
11740         (electric-verilog-tab, verilog-insert-1, verilog-insert-indices)
11741         (verilog-generate-numbers, verilog-comment-region, verilog-label-be)
11742         (verilog-beg-of-statement, verilog-in-case-region-p)
11743         (verilog-in-struct-region-p, verilog-in-generate-region-p)
11744         (verilog-in-fork-region-p, verilog-backward-case-item)
11745         (verilog-set-auto-endcomments, verilog-get-expr)
11746         (verilog-expand-vector-internal, verilog-surelint-off)
11747         (verilog-batch-execute-func, verilog-calculate-indent)
11748         (verilog-calc-1, verilog-calculate-indent-directive)
11749         (verilog-leap-to-head, verilog-continued-line)
11750         (verilog-backward-token, verilog-backward-syntactic-ws)
11751         (verilog-forward-syntactic-ws, verilog-backward-ws&directives)
11752         (verilog-forward-ws&directives, verilog-at-constraint-p)
11753         (verilog-skip-backward-comments, verilog-indent-line-relative)
11754         (verilog-do-indent, verilog-indent-comment, verilog-more-comment)
11755         (verilog-pretty-declarations, verilog-pretty-expr)
11756         (verilog-just-one-space, verilog-indent-declaration)
11757         (verilog-get-completion-decl, verilog-goto-defun, verilog-showscopes)
11758         (verilog-header, verilog-signals-combine-bus, verilog-read-decls)
11759         (verilog-read-always-signals-recurse, verilog-read-instants)
11760         (verilog-read-auto-template, verilog-set-define)
11761         (verilog-read-defines, verilog-read-signals, verilog-getopt)
11762         (verilog-is-number, verilog-expand-dirnames, verilog-modi-lookup)
11763         (verilog-modi-cache-results, verilog-insert-one-definition)
11764         (verilog-make-width-expression, verilog-delete-autos-lined)
11765         (verilog-auto-save-check, verilog-auto-arg, verilog-auto-inst-port)
11766         (verilog-auto-inst, verilog-auto-inst-param, verilog-auto-reg)
11767         (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
11768         (verilog-auto-output-every, verilog-auto-input, verilog-auto-inout)
11769         (verilog-auto-inout-module, verilog-auto-sense, verilog-auto-reset)
11770         (verilog-auto-tieoff, verilog-auto-unused, verilog-auto-ascii-enum)
11771         (verilog-auto, verilog-sk-define-signal, verilog-mode-mouse-map)
11772         (verilog-load-file-at-mouse, verilog-load-file-at-point)
11773         (verilog-library-files): Cleanup spacing of )'s they should not be
11774         on unique lines.  Fix checkdoc warnings.
11776 2008-01-22  Glenn Morris  <rgm@gnu.org>
11778         * progmodes/hideif.el (hide-ifdef-initially, hide-ifdef-read-only)
11779         (hide-ifdef-lines, hide-ifdef-shadow): Remove autoload cookies
11780         from defcustoms.
11781         (hide-ifdef-shadow): Remove autoload cookie from defface.
11783         * vc.el (vc-diff-sentinel): Do not write a footer if there were
11784         differences.
11786 2008-01-21  Reiner Steib  <Reiner.Steib@gmx.de>
11788         * pcvs-defs.el (cvs-menu): Improve cvs-mode-find-file,
11789         cvs-mode-find-file-other-window.  Add cvs-mode-diff-yesterday and
11790         manual entry.
11792 2008-01-21  Michael Albinus  <michael.albinus@gmx.de>
11794         * net/dbus.el (dbus-ignore-errors): New macro.
11795         (dbus-unregister-object): New defun.  Moved from dbusbind.c.
11796         (dbus-handle-event, dbus-list-activatable-names, dbus-list-names)
11797         (dbus-list-queued-owners, dbus-get-name-owner, dbus-introspect)
11798         (dbus-get-signatures): Apply `dbus-ignore-errors'.
11800 2008-01-21  Martin Rudalics  <rudalics@gmx.at>
11802         * outline.el (outline-up-heading): Fix check for top level to
11803         avoid infinite looping in hide-other.
11805 2008-01-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
11807         * vc.el (vc-process-sentinel): After calling the previous
11808         sentinel, do nothing if the process' buffer is not live.
11810 2008-01-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11812         * blank-mode.el: Fix a problem of cleaning blank faces when turning off
11813         blank-mode in some buffers (like *info* buffers).  Reported by Juanma
11814         Barranquero <lekktu@gmail.com>.  Eliminate `-face' suffix of all
11815         blank-mode faces.  Doc fix.  New version 8.1.
11816         (blank-turn-on, blank-turn-off): Replace (and CONDITION BODY) by (when
11817         CONDITION BODY).
11818         (blank-space-face): Face/option name replaced by blank-space.
11819         (blank-hspace-face): Face/option name replaced by blank-hspace.
11820         (blank-tab-face): Face/option name replaced by blank-tab.
11821         (blank-newline-face): Face/option name replaced by blank-newline.
11822         (blank-trailing-face): Face/option name replaced by blank-trailing.
11823         (blank-line-face): Face/option name replaced by blank-line.
11824         (blank-space-before-tab-face): Face/option name replaced by
11825         blank-space-before-tab.
11826         (blank-color-on, blank-color-off, blank-display-char-on): Fix code.
11828 2008-01-21  Juanma Barranquero  <lekktu@gmail.com>
11830         * blank-mode.el (blank-style, blank-chars, blank-hspace-regexp)
11831         (blank-space-regexp, blank-tab-regexp, blank-trailing-regexp)
11832         (blank-space-before-tab-regexp, blank-global-modes, blank-mode)
11833         (global-blank-mode): Doc fixes.
11834         (blank, blank-space-face, blank-hspace-face, blank-tab-face)
11835         (blank-newline-face, blank-trailing-face, blank-line-face)
11836         (blank-space-before-tab-face, blank-display-mappings)
11837         (blank-chars-value-list, blank-style-value-list, blank-toggle-options)
11838         (global-blank-toggle-options, blank-help-text, blank-interactive-char)
11839         (blank-turn-on, blank-turn-off, blank-color-on, blank-color-off):
11840         Fix typos in docstrings.
11842 2008-01-21  Juanma Barranquero  <lekktu@gmail.com>
11844         * server.el (server-log-time-function): New variable.
11845         (server-log): Use it.
11847 2008-01-21  Glenn Morris  <rgm@gnu.org>
11849         * progmodes/hideif.el: Move defcustoms and defface to start of file.
11851         * textmodes/org.el (org-entry-properties): Let-bind `clocksum'.
11853 2008-01-21  Juanma Barranquero  <lekktu@gmail.com>
11855         * textmodes/org.el (org-unmodified, org-cycle-emulate-tab)
11856         (org-descriptive-links, org-link-file-path-type)
11857         (org-remember-use-refile-when-interactive)
11858         (org-agenda-skip-timestamp-if-done, org-agenda-scheduled-leaders)
11859         (org-export-ascii-bullets, org-agenda-deadline-faces)
11860         (turn-on-orgstruct++, orgtbl-to-texinfo, org-mhe-get-header)
11861         (org-batch-agenda, org-batch-agenda-csv, org-fix-agenda-info)
11862         (org-kill-note-or-show-branches): Fix typos in docstrings.
11864 2008-01-20  Thien-Thi Nguyen  <ttn@gnuvola.org>
11866         * vc.el (vc-process-sentinel): Set mode-line-process.
11867         (vc-exec-after): Likewise, for the `run' process status.
11869 2008-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11871         * ibuffer.el (ibuffer-mode): Fix last change.
11873 2008-01-20  Dan Nicolaescu  <dann@ics.uci.edu>
11875         * vc-hg.el (vc-hg-registered):
11876         * vc-svn.el (vc-svn-registered): Make it work for non-existent files.
11878 2008-01-20  Martin Rudalics  <rudalics@gmx.at>
11880         * repeat.el (repeat-undo-count): New variable.
11881         (repeat): For self-insertions make undo boundary only after 20
11882         repetitions.  Inhibit point recording unless repeat-repeat-char is nil.
11884 2008-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
11886         * net/imap.el (imap-ping-server): New variable.
11887         (imap-opened): On add extra ping if imap-ping-server is non-nil.
11888         (imap-ping-server): Minor doc string fixes.
11890 2008-01-19  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
11892         * net/imap.el (imap-ping-server): New function.
11893         (imap-opened): Call imap-ping-server.
11895 2008-01-20  Glenn Morris  <rgm@gnu.org>
11897         * progmodes/python.el: Quote all calls to "auxiliary skeleton"s to
11898         prevent infloops.
11900 2008-01-20  Martin Svenson  <phromo@gmail.com>  (tiny change)
11902         * progmodes/python.el (python-imports): Default to "None".
11904 2008-01-19  Tom Tromey  <tromey@redhat.com>
11906         * vc-svn.el (vc-svn-after-dir-status): New function.
11907         (vc-svn-dir-status): Run svn asynchronously.
11909 2008-01-19  Martin Rudalics  <rudalics@gmx.at>
11911         * progmodes/hideif.el (hide-ifdef-shadow): New option.
11912         (hide-ifdef-shadow): New face.
11913         (hide-ifdef-toggle-shadowing): New function to toggle between
11914         shadowing and making code invisible.
11915         (hide-ifdef-mode-submap): Add binding for hide-ifdef-toggle-shadowing.
11916         (hide-ifdef-mode-menu): Add entry for hide-ifdef-toggle-shadowing.
11917         (hide-ifdef-region-internal): Give new overlay hide-ifdef
11918         property.  Shadow text when hide-ifdef-shadow is non-nil.
11919         (hif-show-ifdef-region): Remove overlays with hide-ifdef property set.
11920         (hif-hide-line): Use when instead of if.
11921         (hide-ifdef-initially, hide-ifdef-read-only, hide-ifdef-lines):
11922         Remove unneeded * from doc-strings.
11924 2008-01-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11926         * doc-view.el (doc-view-goto-page): Don't move point any more, now that
11927         the hscroll behavior was fixed.
11928         (doc-view-mode): Disable auto-hscroll-mode.
11930 2008-01-18  Tom Tromey  <tromey@redhat.com>
11932         * vc-svn.el (vc-svn-dir-status): New function.
11934 2008-01-18  Dan Nicolaescu  <dann@ics.uci.edu>
11936         * vc.el: Make vc-status asynchronous.
11937         (vc-update-vc-status-buffer): New function broken out of ...
11938         (vc-status-refresh): ... here.  Pass vc-update-vc-status-buffer to
11939         the dir-status backend function.
11941         * vc-hg.el (vc-hg-dir-status): Compute the status asynchronously.
11942         Move the output processing to ...
11943         (vc-hg-after-dir-status): ... here.  Call the function passed as
11944         an argument with the results.
11946 2008-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11948         * doc-view.el (doc-view-pdf/ps->png): Make sure we a have a valid cwd.
11949         (doc-view-insert-image): Do something if the image is missing.
11950         (doc-view-mode): Don't use file-remote-p.
11952 2008-01-18  Bastien Guerry  <Bastien.Guerry@ens.fr>
11954         * textmodes/org-export-latex.el (org-export-latex-cleaned-string): Fix.
11955         (org-export-latex-special-chars): Convert "..." in \ldots
11956         and skip tables.
11957         (org-export-latex-fontify-headline): Change parameter name.
11958         (org-export-as-latex): Handle export of subtrees.
11959         (org-export-latex-make-header): New argument TITLE.
11960         (org-export-latex-content): New argument EXCLUDE-LIST.
11961         (org-list-parse-list): New name for org-export-latex-parse-list.
11962         (org-export-latex-make-header): New name for
11963         org-export-latex-make-preamble.
11964         (org-list-to-generic): New name of org-export-list-to-generic.
11965         (org-list-to-latex): New name of org-export-list-to-latex.
11966         (org-list-item-begin, org-list-end, org-list-insert-radio-list)
11967         (org-list-send-list, org-list-to-texinfo)
11968         (org-list-to-html): New functions.
11969         (org-export-latex-tables-column-borders)
11970         (org-export-latex-default-class, org-export-latex-classes)
11971         (org-export-latex-classes-sectioning)
11972         (org-list-radio-list-templates): New options.
11973         (org-export-latex-header): New variable.
11974         (org-latex-entities): New constant.
11975         (org-export-latex-default-sectioning, org-export-latex-preamble)
11976         (org-export-latex-prepare-text-option)
11977         (org-export-latex-get-sectioning): Remove.
11979 2008-01-18  Carsten Dominik  <dominik@science.uva.nl>
11981         * textmodes/org-publish.el (org-publish-current-project):
11982         Fix bug with forcing publication.
11984         * textmodes/org.el (org-export-with-special-strings): New option.
11985         (org-export-html-convert-special-strings): New function.
11986         (org-html-do-expand): `org-export-html-convert-special-strings'
11987         added to the list of conversion.
11988         (org-infile-export-plist, org-get-current-options): Add support
11989         for "-" in the #+OPTION line to let user switch on/off special
11990         strings conversion.
11991         (org-export-plist-vars): New :html-table-tag property.
11992         (org-export-as-html, org-format-org-table-html)
11993         (org-format-table-table-html) Use the :html-table-tag property
11994         instead of the `org-export-html-table-tag' global value.
11995         (org-additional-option-like-keywords): Add "TBLFM".
11996         (org-entry-properties): Include the CLOCKSUM special property.
11997         (org-columns-edit-value): Do not allow to edit the special
11998         CLOCKSUM property.
11999         (org-flag-drawer): Use the original value of `outline-regexp'.
12000         (org-remember-handler): Add invisible-ok flag to call to
12001         `org-end-of-subtree'.
12002         (org-agenda-highlight-todo): Respect
12003         `org-agenda-todo-keyword-format'.
12004         (org-agenda-todo-keyword-format): New option.
12005         (org-infile-export-plist): No restriction while searching for options.
12006         (org-remember-handler): Remove comments at the end of the buffer.
12007         (org-remember-use-refile-when-interactive): New option.
12008         (org-table-sort-lines): Make sure sorting works on link
12009         descritions only, and ignores the link.
12010         (org-sort-entries-or-items): Make sure the end of the subtree is
12011         included.
12012         (org-refile-use-outline-path): New allowed values `file' and
12013         `full-file-path'.
12014         (org-get-refile-targets): Respect new values for
12015         `org-refile-use-outline-path'.
12016         (org-agenda-get-restriction-and-command): DEL goes back to initial list.
12017         (org-export-as-xoxo): Restore point when done.
12018         (org-open-file): Allow multiple %s in command.
12019         (org-clock-in-switch-to-state): New option.
12020         (org-first-list-item-p): New function.
12021         (org-last-remember-storage-locations): New variable.
12022         (org-get-refile-targets): Interpret the new maxlevel setting.
12023         (org-refile-targets): New option `:maxlevel'.
12024         (org-copy-subtree): Include empty lines before but not after subtree.
12025         (org-back-over-empty-lines, org-skip-whitespace): New functions.
12026         (org-move-item-down, org-move-item-up): Include empty lines before
12027         but not after item.
12028         (org-first-sibling-p): New function.
12029         (org-remember-apply-template): Defaults, completions and history
12030         for template prompts.  Also, interpret new `%!' escape.
12031         (org-context-choices): New constant.
12032         (org-bound-and-true-p): New macro.
12033         (org-imenu-depth): New option.
12034         (org-imenu-markers): New variable.
12035         (org-imenu-new-marker, org-imenu-get-tree)
12036         (org-speedbar-set-agenda-restriction): New functions.
12037         (org-agenda-set-restriction-lock)
12038         (org-agenda-remove-restriction-lock)
12039         (org-agenda-maybe-redo): New functions.
12040         (org-agenda-restriction-lock): New face.
12041         (org-agenda-restriction-lock-overlay)
12042         (org-speedbar-restriction-lock-overlay): New variables.
12043         (org-open-at-point): Remove obsolete way to do redirection in
12044         shell links.
12045         (org-imenu-and-speedbar): New customization group.
12046         (org-entry-properties): Return keyword-less time strings.
12047         (org-clock-heading-function): New option.
12048         (org-clock-in): Use `org-clock-heading-function'.
12049         (org-calendar-holiday): Try to use `calendar-check-holidays'
12050         instead of the obsolete `check-calendar-holidays'.
12051         (org-export-html-special-string-regexps): New constant.
12052         (org-massive-special-regexp): New variable.
12053         (org-compute-latex-and-specials-regexp)
12054         (org-do-latex-and-special-faces): New functions.
12055         (org-latex-and-export-specials): New face.
12056         (org-highlight-latex-fragments-and-specials): New option.
12057         (org-link-escape-chars): Use characters instead of strings.
12058         (org-link-escape-chars-browser, org-link-escape)
12059         (org-link-unescape): Use characters instead of strings.
12060         (org-export-html-convert-sub-super, org-html-do-expand): Check for
12061         protected text.
12062         (org-emphasis-alist): Additional `verbatim' flag.
12063         (org-set-emph-re): Handle the verbatim flag and compute
12064         `org-verbatim-re'.
12065         (org-cleaned-string-for-export): Protect verbatim elements.
12066         (org-verbatim-re): New variable.
12067         (org-hide-emphasis-markers): New option.
12068         (org-additional-option-like-keywords): Add new keywords.
12069         (org-get-entry): Rename from `org-get-cleaned-entry'.
12070         (org-icalendar-cleanup-string): New function for quoting icalendar text.
12071         (org-agenda-skip-scheduled-if-done): New option.
12072         (org-agenda-get-scheduled, org-agenda-get-blocks): Use
12073         `org-agenda-skip-scheduled-if-done'.
12074         (org-prepare-agenda-buffers): Allow buffers as arguments.
12075         (org-entry-properties): Add CATEGORY as a special property.
12076         (org-use-property-inheritance): Allow a list of properties as a value.
12077         (org-eval-in-calendar): No longer update the prompt.
12078         (org-read-date-popup-calendar): Rename from
12079         `org-popup-calendar-for-date-prompt'.
12080         (org-read-date-display-live): New variable.
12081         (org-read-date-display): New function.
12082         (org-read-date-analyze): New function.
12083         (org-remember-apply-template): Define `remember-finalize' if it is
12084         not yet defined.
12085         (org-remember-insinuate): New function.
12086         (org-read-date-prefer-future): New option.
12087         (org-read-date): Respect the setting of
12088         `org-read-date-prefer-future'.  Use `org-read-date-analyze'.
12089         (org-set-font-lock-defaults): Use `org-archive-tag' instead of a
12090         hardcoded string.
12091         (org-remember-apply-template): Use `remember-finalize' instead of
12092         `remember-buffer'.
12093         (org-columns-compute, org-column-number-to-string)
12094         (org-columns-uncompile-format, org-columns-compile-format)
12095         (org-columns-compile-format): Handle printf format specifier.
12096         (org-columns-new, org-column-number-to-string)
12097         (org-columns-uncompile-format, org-columns-compile-format):
12098         Support for new currency summary type.
12099         (org-tree-to-indirect-buffer): Do not kill old buffer when
12100         `org-indirect-buffer-display' is `new-frame'.
12101         (org-indirect-buffer-display): Document that `new-frame' leads to
12102         indiret buffer proliferation.
12103         (org-agenda-list): Use `org-extend-today-until'.
12104         (org-extend-today-until): New option.
12105         (org-format-org-table-html): Use lower-case for <col> tag.
12106         (org-agenda-execute): New command.
12107         (org-agenda-mode-map): Keybindings of "g" "G", "e" modified.
12108         (org-select-remember-template): New function.
12109         (org-remember-apply-template): Use `org-select-remember-template'.
12110         (org-go-to-remember-target): New function.
12112 2008-01-18  Dan Nicolaescu  <dann@ics.uci.edu>
12114         * vc.el: Add a TODO note about vc-state.
12115         (vc-next-action): Register 'unregistered and 'ignored files.
12116         Use when and unless instead of if where appropriate.
12117         (vc-start-entry): Fix typo.
12118         (vc-status): Autoload it.
12120 2008-01-18  Glenn Morris  <rgm@gnu.org>
12122         * ffap.el (ffap-alist): Remove space from RFC regexp.
12124 2008-01-18  Richard Stallman  <rms@gnu.org>
12126         * custom.el (custom-theme-recalc-face): Use face-spec-set rather
12127         than face-spec-recalc.
12129 2008-01-18  Glenn Morris  <rgm@gnu.org>
12131         * ibuffer.el (ibuffer-mode): Fix typo in previous change.
12133 2008-01-17  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12134             Miles Bader  <miles@gnu.org>
12136         * blank-mode.el: New file.  Minor mode to visualise (HARD) SPACE,
12137         TAB, NEWLINE.  Miles Bader <miles@gnu.org> wrote the original code
12138         for handling display table (via visws.el package), his code was
12139         modified, but the main idea was kept.
12141 2008-01-17  Glenn Morris  <rgm@gnu.org>
12143         * ibuf-ext.el (ibuffer-auto-mode, ibuffer-save-filter-groups)
12144         (ibuffer-save-filters): Remove calls to deleted
12145         ibuffer-update-mode-name.
12147 2008-01-16  Martin Rudalics  <rudalics@gmx.at>
12149         * longlines.el (longlines-mode, longlines-show-region)
12150         (longlines-unshow-hard-newlines): Bind buffer-file-name and
12151         buffer-file-truename to nil while modifying buffer.
12153         * cus-edit.el (custom-reset-standard-variables-list)
12154         (custom-reset-standard-faces-list): New variables.
12155         (custom-reset-standard-save-and-update): New function.
12156         (Custom-save): Apply custom-mark-to-save before and
12157         custom-state-set-and-redraw after saving options.
12158         (Custom-reset-standard): Apply custom-mark-to-reset-standard to
12159         options and call custom-reset-standard-save-and-update.
12160         (custom-variable, custom-face, custom-group): Provide new
12161         entries for custom-mark-to-save, custom-mark-to-reset-standard,
12162         and custom-state-set-and-redraw.
12163         (custom-variable-mark-to-save)
12164         (custom-variable-state-set-and-redraw)
12165         (custom-variable-mark-to-reset-standard)
12166         (custom-face-mark-to-save, custom-face-state-set-and-redraw)
12167         (custom-face-mark-to-reset-standard)
12168         (custom-group-mark-to-save, custom-group-state-set-and-redraw)
12169         (custom-group-mark-to-reset-standard): New functions.
12170         (custom-variable-save): Move save, state-set, and redraw
12171         functionality to custom-variable-mark-to-save.
12172         (custom-face-save): Move save, state-set, and redraw
12173         functionality to custom-face-mark-to-save.
12174         (custom-group-save): Move save, state-set, and redraw
12175         functionality to custom-group-mark-to-save.
12176         (custom-variable-reset-standard, custom-face-reset-standard)
12177         (custom-group-reset-standard): Move save, state-set, and redraw
12178         functionality to custom-reset-standard-save-and-update.
12180         (custom-buffer-create-internal): Fix text in verbose help.
12181         (custom-face-value-create): Indent doc-strings of faces like
12182         those of variables.
12184 2008-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12186         * server.el (server-process-filter): Replace lineno and columnnno
12187         which defaulted to 1&0 with filepos which defaults to nil.
12188         (server-goto-line-column): Only receive the filepos.
12189         Only move if filepos is non-nil.
12190         (server-visit-files): Slight restructure to consolidate two calls to
12191         server-goto-line-column into just one.
12193         * nxml/nxml-mode.el (nxml-mode): Use mode-line-process to indicate
12194         the use of degraded mode.
12195         (nxml-degrade): Don't change mode-name.
12197         * nxml/rng-nxml.el (rng-nxml-mode-init):
12198         Don't overwrite mode-line-process.
12200         * ibuffer.el (mode): Pass the buffer to format-mode-line.
12201         (ibuffer-update-mode-name): Remove.
12202         (ibuffer-redisplay, ibuffer-update, ibuffer-mode): Don't call it.
12203         (ibuffer-mode): Use mode-line-process instead.
12205         * ibuf-ext.el (ibuffer-auto-update-changed, ibuffer-auto-mode):
12206         Use derived-mode-p.
12207         (ibuffer-mark-by-mode-regexp): Pass the buffer to format-mode-line.
12209         * help.el (describe-mode): Pass the right buffer to format-mode-line.
12211 2008-01-16  Glenn Morris  <rgm@gnu.org>
12213         * comint.el (comint-regexp-arg): Fix no-input case.
12215 2008-01-16  Dan Nicolaescu  <dann@ics.uci.edu>
12217         * smerge-mode.el (smerge-start-session): Rename from smerge-auto.
12218         * pcvs.el (cvs-revert-if-needed):
12219         * vc.el (vc-maybe-resolve-conflicts): Rename callers.
12221         * vc-svn.el (vc-svn-find-file-hook):
12222         * vc-arch.el (vc-arch-find-file-hook): Undo previous change.
12224 2008-01-16  Ulf Jasper  <ulf.jasper@web.de>
12226         * calendar/icalendar.el (icalendar-version): Increase to 0.16.
12227         (icalendar-export-file, icalendar-import-file):
12228         Restore significant trailing whitespace in `interactive' prompts.
12230 2008-01-16  Tom Tromey  <tromey@redhat.com>
12232         * calendar/icalendar.el (icalendar--convert-tz-offset)
12233         (icalendar--parse-vtimezone, icalendar--convert-all-timezones)
12234         (icalendar--find-time-zone): New functions.
12235         (icalendar--decode-isodatetime): Add `zone' argument, passed to
12236         `decode-time'.  Doc fix.
12237         (icalendar--convert-ical-to-diary): Compute zone-map.
12238         Pass timezone to icalendar--decode-isodatetime.
12240 2008-01-16  Alan Mackenzie  <acm@muc.de>
12242         * progmodes/cc-vars.el (c-constant-symbol): Put this defun inside
12243         an eval-and-compile, so as to permit byte-compiling (e.g. in
12244         bootstrap).
12246 2008-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12248         * emacs-lisp/easymenu.el (easy-menu-avoid-duplicate-keys): New var.
12249         (easy-menu-create-menu, easy-menu-convert-item-1): Use it to avoid
12250         using the same key for different menu entries.
12252         * smerge-mode.el (smerge-refine): Also work on "same change conflicts".
12253         (smerge-makeup-conflict): New command.
12255 2008-01-15  Thien-Thi Nguyen  <ttn@gnuvola.org>
12257         * log-edit.el (log-edit): Doc fix.
12259 2008-01-15  Glenn Morris  <rgm@gnu.org>
12261         * diff-mode.el (diff-end-of-hunk): Revert 2008-01-08 change.
12263 2008-01-14  Alan Mackenzie  <acm@muc.de>
12265         * progmodes/cc-vars.el (c-constant-symbol): New function which
12266         supersedes c-const-symbol.  During a customize-.. call it enables
12267         an element of (e.g.) c-hanging-braces alist to have its name
12268         displayed, even when the default value of c-h-b etc. doesn't
12269         include the elemnt.  Replace uses of the old function by the new.
12271         * progmodes/cc-vars.el (c-hanging-braces-alist): Remove the
12272         obscure non-working fragment ":value c-".
12274 2008-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12276         * abbrev.el (clear-abbrev-table): Can't pass a symbol to intern.
12278 2008-01-14  Michael Albinus  <michael.albinus@gmx.de>
12280         * net/tramp.el (tramp-local-host-p): Use `tramp-file-name-host'
12281         instead of `tramp-file-name-real-host'.
12283         * net/trampver.el: Update release number.
12285 2008-01-14  Alan Mackenzie  <acm@muc.de>
12287         * progmodes/cc-engine.el (c-guess-basic-syntax): Prevent a macro
12288         call inside a struct being recognised as a K&R argument.
12290 2008-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12292         * progmodes/compile.el (compilation-error-regexp-alist-alist):
12293         Accept "fatal error" from MSFT.
12294         Reported by Jared Finder <jfinder@crypticstudios.com>.
12296 2008-01-14  Dan Nicolaescu  <dann@ics.uci.edu>
12298         * smerge-mode.el (smerge-auto): New function.
12299         * vc-svn.el (vc-svn-find-file-hook):
12300         * vc-arch.el (vc-arch-find-file-hook):
12301         * pcvs.el (cvs-revert-if-needed):
12302         * vc.el (vc-maybe-resolve-conflicts): Use it instead of vc-mode.
12303         (top-level): Add a Todo list.
12305 2008-01-13  Dan Nicolaescu  <dann@ics.uci.edu>
12307         * vc.el (vc-update): Resolve conflicts if necessary instead of
12308         just updating the buffer.
12310         * vc-cvs.el (vc-cvs-merge-news): Ignore the error status of the
12311         update command so that we can parse the output.
12313 2008-01-13  Martin Rudalics  <rudalics@gmx.at>
12315         * mail/rmail.el (rmail-convert-to-babyl-format):
12316         Remove save-excursion to avoid infinite looping.
12317         Reported by dnz <dnz@bk.ru>.
12319 2008-01-12  Glenn Morris  <rgm@gnu.org>
12321         * woman.el (woman-parse-numeric-arg): Change handling of `==':
12322         can be interned without a function definition.
12324 2008-01-12  Jason Rumney  <jasonr@gnu.org>
12326         * nxml/nxml-mode.el (nxml-enable-unicode-char-name-sets)
12327         (rng-nxml-mode-init): Declare.
12329 2008-01-11  Jason Rumney  <jasonr@gnu.org>
12331         * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add some defaults.
12332         (rng-preferred-prefix-alist-default): Remove.
12334         * nxml/nxml-uchnm.el (nxml-internal-unicode-char-name-sets-enabled):
12335         Rename from nxml-enable-unicode-char-name-sets-flag.
12336         (nxml-enable-unicode-char-name-sets-1): Merge into
12337         nxml-enable-unicode-char-name-sets.
12338         (nxml-enable-unicode-char-name-sets): Don't unconditionally set
12339         nxml-char-name-ignore-case here.
12341         * nxml/nxml-mode.el (nxml-mode): Call rng-nxml-mode-init directly.
12342         Update doc string and commentary.
12343         (nxml-char-name-ignore-case): Change default value.
12344         (nxml-mode): Call nxml-enable-unicode-char-name-sets directly.
12346 2008-01-11  Martin Rudalics  <rudalics@gmx.at>
12348         * cus-start.el (all): Add missing version entries.
12350 2008-01-11  Glenn Morris  <rgm@gnu.org>
12352         * language/china-util.el (big5-to-flat-code, flat-code-to-big5)
12353         (euc-to-flat-code, flat-code-to-euc):
12354         * textmodes/org.el (elmo-msgdb-overview-get-entity)
12355         (wl-summary-buffer-msgdb): Declare as funtions.
12357 2008-01-10  Martin Rudalics  <rudalics@gmx.at>
12359         * progmodes/ada-mode.el (ada-set-syntax-table-properties):
12360         Bind buffer-file-name and buffer-file-truename.
12362         * fringe.el (fringe-mode-explicit): New variable.
12363         (set-fringe-mode): Don't alter default-frame-alist when just
12364         loading this file.
12366 2008-01-10  Tassilo Horn  <tassilo@member.fsf.org>
12368         * doc-view.el (doc-view-buffer-file-name): New variable.
12369         (doc-view-convert-current-doc, doc-view-search)
12370         (doc-view-current-cache-dir, doc-view-initiate-display)
12371         (doc-view-mode): Use it.
12372         (doc-view-bookmark-make-cell): Use variable buffer-file-name
12373         instead of function.
12375 2008-01-10  Dan Nicolaescu  <dann@ics.uci.edu>
12377         * vc-svn.el (vc-svn-registered): Return the correct value for
12378         ignored and unregistered files.
12380 2008-01-10  Tassilo Horn  <tassilo@member.fsf.org>
12382         * doc-view.el (tramp): Require tramp because we use tramp-tramp-file-p.
12384 2008-01-10  Tom Tromey  <tromey@redhat.com>
12386         * vc.el (vc-status-unmark-all-files): New function.
12387         (vc-status-unmark-all-files): Likewise.
12388         (vc-status-mode-map): Add bindings.
12390 2008-01-10  Michael Kifer  <kifer@cs.stonybrook.edu>
12392         * ediff*.el: Uncomment declare-function.
12394         * emulation/viper*.el: Uncomment declare-function.
12396 2008-01-09  Tassilo Horn  <tassilo@member.fsf.org>
12398         * doc-view.el (doc-view-mode): Support tramp, compressed files and
12399         files inside archives uniformly.
12401 2008-01-09  Eric S. Raymond  <esr@snark.thyrsus.com>
12403         * textmodes/sgml-mode.el (sgml-tag-syntax-table): Initialize this
12404         constant with a computation on sgml-specials rather than a literal
12405         list.  Without this change the syntax table is generated
12406         incorrectly, and the mode will think it's in a comment following
12407         any instance of the string "--".
12409 2008-01-09  Tassilo Horn  <tassilo@member.fsf.org>
12411         * doc-view.el (doc-view-mode-p): Add EPS as supported type.
12412         (doc-view-mode): Support document files inside archives.
12414 2008-01-09  Dan Nicolaescu  <dann@ics.uci.edu>
12416         * vc.el (vc-deduce-fileset): Return the currently selected file if
12417         no files are selected when using vc-status.
12419 2008-01-09  Michael Kifer  <kifer@cs.stonybrook.edu>
12421         * ediff*.el: Comment out declare-function.  "make bootstrap"
12422         stops with an error and Emacs does not compile with those things in.
12423         Besides, declare-function is not defined in XEmacs.
12425         * ediff-util (eqiff-quit): Autoraise minibuffer.
12427         * ediff-diff.el (ediff-convert-fine-diffs-to-overlays): Make it a defun.
12429         * emulation/viper*.el: Comment out declare-function -- not defined
12430         in XEmacs.
12432         * emulation/viper-ex.el (viper-info-on-file):
12433         Take care of indirect buffers.
12435         * emulation/viper.el (viper-set-hooks, set-cursor-color):
12436         Set viper-vi-state-cursor-color.
12438 2008-01-09  Tom Tromey  <tromey@redhat.com>
12440         * vc.el (vc-status-headers): Rename from vc-status-insert-headers.
12441         Just return header.
12442         (vc-status-move-to-goal-column): New function.
12443         (vc-status-mode-map): Define more keys.
12444         (vc-status-mode): Use vc-status-refresh.  Now 'special.
12445         (vc-status-refresh): New function.
12446         (vc-status-next-line): Likewise.
12447         (vc-status-previous-line): Likewise.
12448         (vc-status-mark-file): Use vc-status-next-line.
12449         (vc-status-unmark-file): Use vc-status-previous-line.
12450         (vc-status-unmark-file-up): New function.
12451         (vc-status-register): Likewise.
12452         (vc-status-find-file): Likewise.
12453         (vc-status-find-file-other-window): Likewise.
12454         (vc-status-current-file): Likewise.
12455         (vc-ensure-vc-buffer): Understand vc-status mode.
12457         * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".
12459 2008-01-09  Glenn Morris  <rgm@gnu.org>
12461         * ffap.el (ffap-string-at-point-mode-alist): Add `\' to file
12462         entry, for Windows.
12464 2008-01-09  Tom Tromey  <tromey@redhat.com>
12466         * play/blackbox.el (blackbox-mode-map): Add `q' and [return] bindings.
12468 2008-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12470         * ffap.el (ffap-read-file-or-url): Don't use let-binding to temporarily
12471         add a file-name handler.
12473 2008-01-08  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
12475         * textmodes/bibtex.el (bibtex-initialize): New autoloaded command.
12476         Rename from function bibtex-files-expand.  New optional arg select.
12477         (bibtex-flash-head): Allow blink-matching-delay being zero.
12478         (bibtex-clean-entry): Use atomic-change-group.
12479         (bibtex-format-entry): Check presence of required fields only
12480         after formatting of fields.  Use member-ignore-case.  Do not use
12481         bibtex-parse-entry.  Do not use booktitle field to set a missing title.
12482         (bibtex-autofill-entry): Do not call undo-boundary.
12483         (bibtex-lessp): Handle crossref keys that point to another bibtex file.
12484         (bibtex-sort-buffer, bibtex-prepare-new-entry, bibtex-validate):
12485         Parse keys if necessary.
12487 2008-01-08  Nick Roberts  <nickrob@snap.net.nz>
12489         * progmodes/gdb-ui.el (gdb-var-list-children-1): Put varnum in
12490         quotes in case of spaces, e.g. STL containers (not pretty).
12492 2008-01-08  Nick Roberts  <nickrob@snap.net.nz>
12494         * progmodes/gdb-ui.el (gud-gdb-command-name):
12495         Explain "--annotate=3" option is necessary for the Graphical Interface.
12497 2008-01-08  Nick Roberts  <nickrob@snap.net.nz>
12499         * progmodes/hideif.el (hide-ifdef-mode-menu): Put hide-ifdef commands
12500         on menu bar.
12502 2008-01-08  Michael Albinus  <michael.albinus@gmx.de>
12504         * ffap.el (ffap-read-file-or-url): Let-bind
12505         `file-name-handler-alist' due to `rfn-eshadow-update-overlay'.
12507 2008-01-08  Sven Joachim  <svenjoac@gmx.de>
12509         * vc-bzr.el: Fix typo in header.
12511 2008-01-08  Eli Zaretskii  <eliz@gnu.org>
12513         * Makefile.in (custom-deps, finder-data): Depend on autoloads
12514         instead of loaddefs.el.
12516 2008-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12518         * vc-cvs.el (vc-cvs-annotate-time): Don't move backward when text
12519         gets inserted out-of-order.
12521 2008-01-08  Riccardo Murri  <riccardo.murri@gmail.com>
12523         * vc-bzr.el: Copyright and version headers update.
12524         Remove some outdated comments through the whole file.
12525         (vc-bzr-program-args): Remove because unused.
12526         (vc-bzr-log-switches): New customization option.
12527         (vc-bzr-command): Use LC_MESSAGES=C instead of LC_ALL=C.  No longer
12528         use `vc-bzr-program-args'.
12529         (vc-bzr-register): Fix for working with both 22.1 and CVS version of
12530         `vc-find-root' (patch by Andreas Hoenen).
12531         (vc-bzr-status): Update regex to match latest Bzr output.
12532         Remove redundant test.
12533         (vc-bzr-init-version): New function.
12534         (vc-bzr-unregister): Must not delete file.
12535         (vc-bzr-find-version): New function.
12536         (vc-bzr-checkout): Argument `rev' is explicit revision only if it's
12537         a non-empty string, otherwise take head revision.
12538         (vc-bzr-print-log): Pass `vc-bzr-log-switches' to "bzr log".
12539         (vc-bzr-diff): Simpler build of the revision spec string.
12540         (vc-annotate-convert-time, vc-bzr-annotate-difference):
12541         Remove: compatibility hacks for Emacs21, not needed in Emacs 22.
12542         (vc-bzr-dir-state): Add code comments.  Removed redundant statement.
12543         (vc-bzr-dired-state-info): Only provide custom strings for
12544         overloaded VC state 'edited; otherwise fallback to
12545         `vc-default-dired-state-info'.
12547 2008-01-08  Richard Stallman  <rms@gnu.org>
12549         * delsel.el (delete-selection-mode): Doc fix.
12551 2008-01-08  Nick Roberts  <nickrob@snap.net.nz>
12553         * progmodes/gud.el (gud-def): Do nothing if gud-running is t.
12554         (gud-speedbar-menu-items): Add item for gdb-var-set-format below.
12556         * progmodes/gdb-ui.el (gdb-var-set-format): Set the output format
12557         of watch expressions (only works fully with GDB 6.7 or later).
12559 2008-01-08  Dan Nicolaescu  <dann@ics.uci.edu>
12561         * time-stamp.el (time-stamp-time-zone):
12562         * whitespace.el (whitespace-check-buffer-leading)
12563         (whitespace-check-buffer-trailing, whitespace-check-buffer-indent)
12564         (whitespace-check-buffer-spacetab, whitespace-check-buffer-ateol):
12565         * progmodes/sh-script.el (sh-indentation):
12566         * textmodes/ispell.el (ispell-local-pdict):
12567         Add safe-local-variable properties.
12569 2008-01-08  Michael Albinus  <michael.albinus@gmx.de>
12571         * vc-git.el (vc-git--call): Apply `process-file' instead of
12572         `call-process'.
12574         * net/tramp.el (tramp-remote-process-environment): Add "LC_CTYPE=C".
12575         Reported by Pete Forman <pete.forman@westerngeco.com>.
12576         (tramp-perl-encode, tramp-perl-decode): Update copyrights.
12577         (tramp-handle-process-file): Handle the case where DESTINATION is
12578         a consp with t as car.
12579         (tramp-wait-for-output): We shall remove exactly what has been
12580         find by the search.
12582 2008-01-08  Kevin Ryde  <user42@zip.com.au>
12584         * progmodes/compile.el (compilation-error-regexp-alist-alist):
12585         For perl, allow "during global destruction" at end.  Add entry for
12586         two-arg form of the Test module ok() func.
12588 2008-01-08  Glenn Morris  <rgm@gnu.org>
12590         * diff-mode.el (diff-end-of-hunk): Don't match empty lines in
12591         unified format.
12593         * mouse.el (mouse-major-mode-menu): Suppress duplicate menus.
12595 2008-01-08  Ralf Angeli  <angeli@caeruleus.net>
12597         * textmodes/reftex-toc.el (reftex-make-separate-toc-frame):
12598         Simplify selection of frame focusing function.
12600 2008-01-08  Michael Olson  <mwolson@gnu.org>
12602         * textmodes/remember.el (remember-region): Fix typo in docstring.
12604 2008-01-08  Lennart Borgman  <lennart.borgman.073@student.lu.se>
12606         * textmodes/remember.el (remember): If there is a visible region
12607         [that is, the mark is active and transient mark mode is enabled]
12608         then use this region for the initial contents of the *Remember*
12609         buffer.  Use `region-beginning' and `region-end' instead of
12610         `point' and `mark'.
12612 2008-01-07  Dan Nicolaescu  <dann@ics.uci.edu>
12614         * vc-hg.el (vc-hg-dir-state, vc-hg-dir-status): Pass the dir
12615         argument to vc-hg-command.
12616         (vc-hg-log-view-mode): Handle the user field better.
12618 2008-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12620         * vc.el (vc-ensure-vc-buffer): Check liveness of vc-parent-buffer.
12622 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
12624         * vc.el (vc-status-fileinfo): New defstruct.
12625         (vc-status): New defvar.
12626         (vc-status-insert-headers, vc-status-printer, vc-status)
12627         (vc-status-mode-map, vc-status-mode, vc-status-mark-file)
12628         (vc-status-unmark-file, vc-status-marked-files): New functions.
12630         * vc-hg.el (vc-hg-dir-status): New function.
12632 2008-01-06  Martin Rudalics  <rudalics@gmx.at>
12634         * cus-edit.el (custom-tool-bar-map): Move initialization of this
12635         keymap from here ...
12636         (custom-mode): ... to here.  Reported by Reiner Steib.
12638 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
12640         * obsolete/x-apollo.el: Remove file for unsupported system.
12642         * term/x-win.el (vendor-specific-keysyms): Remove reference to
12643         Apollo.
12645         * progmodes/gud.el (gud-dgux-p): Remove.
12646         (dbx): Remove reference to dgux.
12648         * progmodes/ps-mode.el (ps-mode-print-function):
12649         * ps-print.el (ps-lp-system):
12650         * paths.el (rmail-spool-directory):
12651         * ls-lisp.el (ls-lisp-emulation):
12652         * lpr.el (lpr-lp-system):
12653         * dired.el (dired-chown-program): Remove references to dgux.
12655 2008-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12657         * vc.el (vc-process-sentinel): Fix apparent typo.
12658         (vc-do-command): Forcefully kill any left over process.
12659         Use start-file-process.
12660         (vc-annotate-get-time-set-line-props): Check we don't move backward.
12662 2008-01-04  Michael Albinus  <michael.albinus@gmx.de>
12664         * net/dbus.el (dbus-list-hash-table)
12665         (dbus-name-owner-changed-handler): Replace "signal" by "member".
12666         (dbus-check-event): Add serial number to event.
12667         (dbus-handle-event): Apply return message if needed.
12668         (dbus-event-serial-number): New defun.
12669         (dbus-event-service-name, dbus-event-path-name)
12670         (dbus-event-interface-name, dbus-event-member-name):
12671         Adapt implementation to serial number.
12673 2008-01-04  Juanma Barranquero  <lekktu@gmail.com>
12675         * bs.el (bs--get-mode-name): Fix typo in previous change.
12677 2008-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
12679         * mouse.el (mouse-popup-menubar): Fix typo.
12681         * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Move one more
12682         form inside with-current-buffer.
12684         * progmodes/antlr-mode.el (provide): Move to the end of file.
12685         (require): Don't require font-lock and compile.
12686         (outline-level, imenu-use-markers, imenu-create-index-function):
12687         Move declarations to top level.
12688         (cond-emacs-xemacs-macfn): Declare for compiler.
12690         * vc-bzr.el (vc-bzr-root):
12691         * vc-arch.el (vc-arch-root): Only set a property if the file is
12692         managed by this backend.
12694         * vc-hg.el (vc-hg-state): Support the new status code for up-to-date.
12696 2008-01-04  Tassilo Horn  <tassilo@member.fsf.org>
12698         * doc-view.el (doc-view-scroll-up-or-next-page)
12699         (doc-view-scroll-down-or-previous-page): Don't scroll to the
12700         top/bottom again when on the first/last page.
12702         * doc-view.el (doc-view-scroll-up-or-next-page)
12703         (doc-view-scroll-down-or-previous-page): Use image-scroll-up and
12704         image-scroll-down instead of the non-image equivalents.
12705         Don't rely on a signalled condition but switch pages when scrolling
12706         doesn't change the vertical position anymore.
12707         (doc-view-mode-map): Remap scroll-{up,down} to
12708         image-scroll-{up,down}.
12710 2008-01-04  Rob Riepel  <riepel@networking.Stanford.EDU>
12712         * emulation/tpu-edt.el (tpu-load-xkeys): Recommend to run the
12713         tpu-mapper command rather than load the tpu-mapper package.
12715         * emulation/tpu-mapper.el (tpu-mapper): New command.
12716         Contains all the code previously at top-level.
12718 2008-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12720         * bs.el (bs--sort-by-mode, bs--get-mode-name):
12721         * imenu.el (imenu-add-to-menubar):
12722         * makesum.el (make-command-summary):
12723         * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
12724         (mouse-buffer-menu):
12725         * msb.el (msb--mode-menu-cond):
12726         * calc/calc-embed.el (calc-do-embedded):
12727         * emacs-lisp/helper.el (Helper-describe-mode):
12728         * mail/emacsbug.el (report-emacs-bug):
12729         * progmodes/hideshow.el (hs-grok-mode-type):
12730         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
12731         * textmodes/table.el (*table--cell-describe-mode):
12732         Pass mode-name through format-mode-line.
12734 2008-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12736         * progmodes/ada-xref.el (ada-prj-find-prj-file):
12737         * progmodes/ada-mode.el (comment-region):
12738         * calendar/todo-mode.el (todo-insert-item):
12739         * bookmark.el (bookmark-buffer-name):
12740         Test major-mode rather than mode-name.
12742 2008-01-04  Richard Stallman  <rms@gnu.org>
12744         * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
12745         Call byte-compile-warn-about-unresolved-functions outside
12746         the with-current-buffer.
12747         (byte-compile-insert-header): Use with-current-buffer.
12749 2008-01-04  Glenn Morris  <rgm@gnu.org>
12751         * startup.el (fancy-about-screen): Remove reference to deleted
12752         `fancy-splash-help-echo' variable.
12754         * version.el (emacs-copyright): Update to 2008.
12756         * net/tramp-smb.el (tramp-smb-handle-insert-directory): Use mapc
12757         rather than mapcar.
12759         * progmodes/cc-vars.el (defcustom-c-stylevar): Revert previous
12760         change (merge mistake).
12762         * doc-view.el (doc-view-search-internal): Don't use `incf'.
12764         * doc-view.el (bookmark-make-cell-function, bookmark-get-filename)
12765         (bookmark-get-bookmark-record):
12766         * image-mode.el (bookmark-make-cell-function)
12767         (bookmark-get-filename, bookmark-get-bookmark-record)
12768         (bookmark-get-position):
12769         * log-view.el (vc-modify-change-comment):
12770         * progmodes/grep.el (find-name-arg): Declare for compiler.
12772 2008-01-04  Juanma Barranquero  <lekktu@gmail.com>
12774         * savehist.el (savehist-coding-system): Default to a variant coding
12775         system with explicit unix end-of-line conversion, which is safer.
12777 2008-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12779         * ibuf-ext.el (mode-name sorter, ibuffer-mark-by-mode-regexp):
12780         * ibuffer.el (mode column): Use format-mode-line.
12782         * server.el (server-create-window-system-frame): Remove workaround for
12783         a bug that has been fixed.
12785 2008-01-03  Magnus Henoch  <magnus@zemdatav>
12787         * net/dbus.el (dbus-name-owner-changed-handler):
12788         Use dbus-unregister-object instead of dbus-unregister-signal.
12790 2008-01-03  Drew Adams  <drew.adams@oracle.com>
12792         * frame.el (frame-geom-value-cons, frame-geom-spec-cons): New fns.
12794 2008-01-03  Richard Stallman  <rms@gnu.org>
12796         * replace.el (occur-context-lines): New subroutine,
12797         broken out of occur-engine.
12798         (occur-engine): Call it.
12800 2008-01-03  Alexandre Julliard  <julliard@winehq.org>
12802         * vc-git.el (vc-git--ls-files-state): New function.
12803         (vc-git-dir-state): Use it instead of processing the status
12804         results here.
12806 2008-01-02  Eric S. Raymond  <esr@snark.thyrsus.com>
12808         * progmodes/grep.el (grep-find-ignored-directories):
12809         Initialize from the value of vc-directory-exclusion-list.
12811         * vc-hooks.el (vc-directory-exclusion-list): Include "_darcs",
12812         even though we don't have a back end for darcs yet.
12814 2008-01-02  Karl Fogel  <kfogel@red-bean.com>
12816         Change a return type, for greater extensibility.
12817         See http://lists.gnu.org/archive/html/emacs-devel/2007-12/msg01077.html
12818         and its thread for discussion leading to this change.
12820         * bookmark.el (bookmark-jump-noselect):
12821         Return an alist instead of a dotted pair.
12822         (bookmark-jump, bookmark-jump-other-window, bookmark-insert)
12823         (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
12824         (bookmark-bmenu-switch-other-window): Adjust accordingly.
12825         (bookmark-make-cell-function): Adjust documentation accordingly.
12827         * image-mode.el (image-bookmark-jump):
12828         Adjust return type accordingly; document.
12830         * doc-view.el (doc-view-bookmark-jump):
12831         Adjust return type accordingly; document.
12833 2008-01-02  Miles Bader  <miles@gnu.org>
12835         * net/rcirc.el (rcirc-log-filename-function): New variable.
12836         (rcirc-log): Use `rcirc-log-filename-function' to generate the
12837         log-file name.  Don't log anything if it returns nil.
12838         (rcirc-log-write): Use `expand-file-name' when merging the
12839         log-file name from the alist with rcirc-log-directory; this does
12840         the right thing if the name in the alist already an absolute
12841         filename.  Make the log-file directory if necessary.
12843 2007-12-29  Richard Stallman  <rms@gnu.org>
12845         * font-lock.el (font-lock-prepend-text-property)
12846         (font-lock-append-text-property): Canonicalize the face and
12847         font-lock-face properties.
12849         * faces.el (facep): Doc fix.
12851         * startup.el (fancy-startup-tail, fancy-about-text)
12852         (fancy-startup-text): Regularize format of face property.
12854         * facemenu.el (list-colors-print): Use :background and :foreground
12855         instead of background-color and foreground-color.
12857 2007-12-29  Drew Adams  <drew.adams@oracle.com>
12859         * cus-edit.el (custom-add-parent-links):
12860         Fill the "Parent documentation" text.
12862 2007-12-29  Eli Zaretskii  <eliz@gnu.org>
12864         * textmodes/ispell.el (ispell-grep-command): Use "grep" on
12865         MS-Windows and MS-DOS.
12866         (ispell-grep-options): Use "-Ei" on MS-Windows and MS-DOS.
12868 2008-01-02  Eric S. Raymond  <esr@snark.thyrsus.com>
12870         * vc-svn.el (vc-svn-modify-change comment): New function.
12872 2008-01-01  Dan Nicolaescu  <dann@ics.uci.edu>
12874         * vc-git.el (vc-git-dir-state): Set the vc-backend property.
12875         Do not disable undo, with-temp-buffer does it by default.
12877 2008-01-01  Eric S. Raymond  <esr@snark.thyrsus.com>
12879         * vc-svn.el (vc-svn-parse-status): Set the `unregisted' property
12880         correctly.
12882         * vc.el (vc-dired-hook): Speed tuning.  Replace a vc-backend call
12883         with vc-state.
12884         (vc-next-action): Fix vc-transfer-file call.
12886 2007-12-31  Tom Tromey  <tromey@redhat.com>
12888         * emacs-lisp/elp.el (elp-results): Use header-line-format for header.
12889         Move point to the start of the buffer.
12891 2007-12-31  Dan Nicolaescu  <dann@ics.uci.edu>
12893         * vc-cvs.el (vc-cvs-parse-entry): Set the vc-backend property.
12895         * vc.el: State that dir-state is required to set the vc-state and
12896         vc-backend properties.
12898 2007-12-31  Martin Rudalics  <rudalics@gmx.at>
12900         * man.el (Man-default-man-entry): Make this a defun.
12901         Improve guessing mechanism and handling of section numbers.
12903 2007-12-31  Richard Stallman  <rms@gnu.org>
12905         * faces.el (face-all-attributes): If FRAME is nil, return defaults.
12907 2007-12-31  Jay Belanger  <jay.p.belanger@gmail.com>
12909         * calc/calc-units.el (calc-convert-temperature): Ensure that units
12910         are on the result even when the result is zero.
12912 2007-12-30  Michael Albinus  <michael.albinus@gmx.de>
12914         * net/dbus.el (dbus-name-owner-changed-handler): Make the function
12915         resistent towards wrong parameters.
12916         (dbus-handle-event): Propagate D-Bus errors only in the debug case.
12918 2007-12-30  Richard Stallman  <rms@gnu.org>
12920         * faces.el (face-all-attributes): New function.
12922         * faces.el (face-differs-from-default-p): Compute list of attr names
12923         from face-attribute-name-alist.
12925         * cus-edit.el (custom-face-set): Call `face-spec-set' with FOR-DEFFACE.
12926         (custom-face-save): Likewise.
12927         (custom-face-reset-saved, custom-face-reset-standard): Likewise.
12929         * cus-face.el (custom-declare-face): Per frame, use `face-spec-set-2'.
12930         (custom-theme-set-faces): Clear `face-override-spec' property.
12931         Call `face-spec-set' with FOR-DEFFACE.
12933         * custom.el (custom-theme-recalc-face): Simply call `face-spec-recalc'.
12935         * faces.el (face-spec-set): Third arg is now FOR-DEFFACE.
12936         Use of frame as third arg is deprecated.
12937         Handle `face-override-spec' property.
12938         (face-spec-recalc): New function.
12939         (face-spec-set-2): New function.
12940         (frame-set-background-mode): Handle `face-override-spec' property.
12941         Use `face-spec-recalc'.
12942         (face-set-after-frame-default): Use `face-spec-recalc'.
12944 2007-12-29  Nick Roberts  <nickrob@snap.net.nz>
12946         * thumbs.el (thumbs-conversion-program): Add comment for Windows XP.
12948 2007-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
12950         * vc-hg.el (vc-hg-dir-state): Set the vc-backend property.
12952 2007-12-29  Eric S. Raymond  <esr@snark.thyrsus.com>
12954         * vc-svn.el (vc-svn-parse-status): Recognize 'unregistered,
12955         'added, 'removed.
12957         * vc.el (header coment): Better description of dir-state.
12958         (vc-compatible-state): New function.  Checks whether two states
12959         can be in the same changeset; used with 'edited it can test whether
12960         the next action for a state should be commit.
12961         (vc-default-dired-state-info): Display 'removed state.
12962         (vc-dired-hook): Turn off undo, this is a speed tweak.
12964         * vc-bzr.el (vc-bzr-dir-state): Recognize 'added.
12966         * vc-hg.el (vc-bzr-hg-state): Recognize 'added and 'removed.
12967         Cope with the possibility that the 'C' status flag might change
12968         in 0.9,6.
12970         * vc-git.el (vc-bzr-dir-state): Recognize 'removed.
12972 2007-12-29  Thien-Thi Nguyen  <ttn@gnuvola.org>
12974         * files.el (cd-absolute): Fix omission bug:
12975         Make `list-buffers-directory' buffer-local.
12977 2007-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
12979         * vc-hg.el (vc-hg-dir-state): Deal with the up-to-date state.
12981 2007-12-29  Jay Belanger  <jay.p.belanger@gmail.com>
12983         * calc/calc-aent.el (math-read-token): Fix misplaced parentheses.
12985         * calc/calc-lang.el (calc-yacas-language, calc-maxima-language)
12986         (calc-giac-language, math-yacas-parse-Sum, math-yacas-compose-sum)
12987         (math-yacas-compose-deriv, math-yacas-compose-taylor)
12988         (math-maxima-parse-subst, math-maxima-parse-taylor)
12989         (math-maxima-compose-taylor, math-maxima-compose-subst)
12990         (math-maxima-compose-if, math-lang-switch-args)
12991         (math-lang-compose-switch-args, math-read-giac-subscr):
12992         New functions.
12993         (calc-lang-allow-underscores, calc-lang-allow-percentsigns)
12994         (calc-lang-brackets-are-subscripts, calc-lang-c-type-hex):
12995         Add languages.
12996         (math-vector-brackets, math-complex-format, math-variable-table)
12997         (math-parse-table, math-oper-table, math-function-table)
12998         (math-special-function-table, math-compose-subscr):
12999         Add values for new languages.
13001         * calc/calccomp.el (math-compose-expr): Add new languages.
13003         * calc/calc.el (calc-language): Add languages to docstring.
13005         * calc/calc-ext.el (calc-init-extensions): Add keybindings
13006         for new languages.  Autoload commands to change languages.
13008         * calc/calc-help.el (calc-d-prefix-help): Add new languages.
13010         * calc/calc-menu.el (calc-modes-menu): Add new languages.
13011         (calc-arithmetic-menu, calc-scientific-function-menu)
13012         (calc-algebra-menu, calc-graphics-menu, calc-vectors-menu)
13013         (calc-units-menu, calc-variables-menu, calc-stack-menu):
13014         Add :active keywords.
13016 2007-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
13018         * vc-hg.el (vc-hg-registered): Return the false when vc-hg-state
13019         returns 'ignored or 'unregistered.
13020         (vc-hg-state): Pass "-A" to the status command and deal with the
13021         output.
13022         (vc-hg-dir-state): Pass "-A" to the status command.
13024 2007-12-29  Richard Stallman  <rms@gnu.org>
13026         * progmodes/compile.el (compilation-start): Set initial visible
13027         point properly even when compilation buffer already current.
13029 2007-12-29  Richard Stallman  <rms@gnu.org>
13031         * files.el (conf-mode-maybe): New function.
13032         (auto-mode-alist): Use conf-mode-maybe for .conf etc.
13034 2007-12-29  Martin Rudalics  <rudalics@gmx.at>
13036         * textmodes/fill.el (fill-find-break-point): Fix doc-string typo.
13038 2007-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
13040         * progmodes/asm-mode.el (asm-mode-map): Add a major mode menu.
13042 2007-12-29  Richard Stallman  <rms@gnu.org>
13044         * comint.el (comint-mode-map): Explicitly bind `delete' and `kp-delete'
13045         so they never do EOF.
13047 2007-12-29  Richard Stallman  <rms@gnu.org>
13049         * faces.el (copy-face): Create the new face explicitly if it
13050         does not exist already.
13052 2007-12-29  Eli Zaretskii  <eliz@gnu.org>
13054         * simple.el (minibuffer-history, shell-command-history)
13055         (set-variable-value-history):
13056         * replace.el (regexp-history):
13057         * international/mule-cmds.el (input-method-history):
13058         * files.el (file-name-history): Add reference to history-length in
13059         the doc string.
13061 2007-12-29  Richard Stallman  <rms@gnu.org>
13063         * comint.el (comint-password-prompt-regexp): Match `Enter Password'.
13065 2007-12-29  Jason Rumney  <jasonr@gnu.org>
13067         * find-dired.el (find-name-arg): New custom variable.
13068         (find-name-dired): Use it.
13069         (find-dired-find-program): Remove.
13070         (find-dired): Use find-program.
13071         (find-grep-dired): Use grep-program.
13073         * progmodes/grep.el (rgrep): Use find-name-arg.
13075 2007-12-29  Thien-Thi Nguyen  <ttn@gnuvola.org>
13077         * progmodes/cc-vars.el (defcustom-c-stylevar):
13078         Revert to pre-2007-12-12 version.
13080 2007-12-29  Richard Stallman  <rms@gnu.org>
13082         * emacs-lisp/find-func.el (find-function-after-hook): Add :type.
13084         * info.el (Info-clone-buffer): Rename from Info-clone-buffer-hook.
13085         Use changed.
13087         * startup.el (fancy-splash-help-echo): Var deleted.
13088         (fancy-splash-insert): Get help-echo from (startup-echo-area-message).
13089         (fancy-about-screen): Don't display fancy-splash-help-echo.
13091         * menu-bar.el (menu-bar-describe-menu): Remove dots from menu text.
13093 2007-12-28  Eric S. Raymond  <esr@snark.thyrsus.com>
13095         * vc-hooks.el, vc.el: Move vc-directory-exclusion-list from vc.el
13096         to vc-hooks.el so it will be available to other modes, such as
13097         speedbar.el.  Also, teach it to recognize monotone state directories.
13099         * speedbar.el: Remove this mode's fragile assumptions about
13100         version-control systems.  Instead, make it use logic from
13101         vc-hooks.el so it will become smarter whenever VC mode does.
13103         * vc-hooks.el: 'added is a real state, not a future hypothetical one.
13104         Fix the documentation.
13106         * vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el, vc-mcvs.el, vc-svn.el:
13107         Modify all instances of the dir-state back-end method to suppress
13108         keeping undo lists on the buffers holding status output, which
13109         can get extremely large.
13111         * vc-cvs.el, vc-svn.el: Simplify backend dired-state-info functions
13112         so they don't do work that the default one can do instead.
13114         * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
13115         states, and the new return-value convention.  These are not
13116         actually used yet, just set.
13118         * vc-svn.el (vc-svn-parse-status): Set 'ignored and 'unregistered
13119         states when appropriate.
13121         * vc-hg.el (vc-hg-state, vc-hg-dir-state): Set 'ignored and
13122         'unregistered when appropriate.
13124         * vc-git.el: Document that we don't set the new states yet.
13126         * vc.el (vc-dired-state-info): Display 'added, 'unregistered and
13127         'ignored states.
13129         * vc-cvs.el (vc-cvs-parse-status): Set the 'ignored state when
13130         appropriate.
13132         * vc-bzr.el (vc-bzr-dir-state): Set 'ignored and 'unregistered
13133         when appropriate.
13135 2007-12-28  Nick Roberts  <nickrob@snap.net.nz>
13137         * thumbs.el (thumbs-call-convert): Use call-process directly
13138         with thumbs-conversion-program instead of through shell-file-name
13139         for better error reporting.
13141 2007-12-27  Jay Belanger  <jay.p.belanger@gmail.com>
13143         * calc/calc-aent.el (math-remove-percentsigns):
13144         * calc/calccomp.el (math-to-percentsigns): Change placeholder
13145         for percent signs.
13147 2007-12-27  Eric S. Raymond  <esr@snark.thyrsus.com>
13149         * vc.el (vc-dired-ignorable-p, vc-dired-hook): Speed optimization;
13150         use completion-ignored-extensions to detect files that should be
13151         ignorted in VC-Dired listings, heading off lots of expensive calls
13152         to (vc-state).
13154         * vc.el (vc-dired-hook): Show unregistered file status as "?" in
13155         non-terse mode.
13156         (vc-dired-ignorable-p): Ignore Makefile when it has a peer named
13157         Makefile.in or Makefile.am.
13159 2007-12-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13161         * ps-print.el (ps-mark-active-p): Fun returned back.
13162         (ps-print-preprint-region): Use `ps-mark-active-p' instead of
13163         `region-active-p' for error checking.
13165 2007-12-27  Eric S. Raymond  <esr@snark.thyrsus.com>
13167         * vc.el, vc-sccs.el, vc-rcs.el, vc-cvs.el, vc-mcvs.el:
13168         Put new machinery in place to support editing of change comments
13169         with 'e' in a log-view buffer.  Not documented yet as this
13170         only works for SCCS, RCS, and maybe CVS if you have admin
13171         privileges.  When we have backend support for Subversion and
13172         more modern systems it will be time to write this up.
13174 2007-12-27  Kenichi Handa  <handa@ni.aist.go.jp>
13176         * international/mule-cmds.el (select-safe-coding-system):
13177         When a buffer is modified, cancel the writing.
13179 2007-12-26  Eric S. Raymond  <esr@snark.thyrsus.com>
13181         * log-view.el: Add Subversion and Mercurial log format samples.
13183         * vc.el (vc-dired-hook): Significantly speed up by arranging for
13184         it to call the backend dir-state hook (if it exists)
13185         exactly *once*, rather than once per each subdirectory (with
13186         dired-state-info calls on all toplevel files slowing it down even
13187         further).  For this to work, backend dir-state methods have to
13188         recurse to subdirectories.  Most of them already did anyway; a few
13189         needed *non*-recursion switches removed.  This change mostly
13190         removed code that was perversely bad and should have been shot
13191         through the head years ago.
13193         * vc-bzr.el (vc-bzr-dir-state):
13194         * vc-cvs.el (vc-cvs-dir-state):
13195         * vc-mcvs.el (vc-mcvs-dir-state):
13196         * vc-svn.el (vc-svn-dir-state): Recurse in subdirectories.
13198         * vc-svn.el (vc-svn-print-log): svn log doesn't actually accept
13199         multiple arguments, so generate logs sequentially when we get them.
13200         * vc-hg.el (vc-hg-print-log): Gives this CVS-like "Working file:"
13201         headers so the various log bindings can do the right thing.
13202         * vc-cvs.el (vc-cvs-print-log): Fix a misleading comment.
13204 2007-12-26  Andreas Schwab  <schwab@suse.de>
13206         * font-lock.el (save-buffer-state): Make sure the state of the
13207         buffer is always restored.
13209 2007-12-26  Jay Belanger  <jay.p.belanger@gmail.com>
13211         * calc/calc.el (calc-lang-allow-percentsigns): New variable.
13213         * calc/calc-lang.el (calc-lang-allow-percentsigns): Declare as
13214         a variable.
13216         * calc/calccomp.el (math-to-percentsigns): New function.
13217         (math-compose-var): Handle variables with percent signs.
13218         (math-compose-expr): Handle function names with percent signs.
13220         * calc/calc-aent.el (math-to-percentsigns): Declare as function.
13221         (math-read-exprs): Handle percent signs in languages that
13222         allow them.
13223         (math-restore-underscores): Remove function.
13224         (math-remove-percentsigns, math-restore-placeholders):
13225         New functions.
13227 2007-12-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13229         * ps-print.el (ps-print-preprint-region): Use `region-active-p' instead
13230         of `mark' for error checking.
13232 2007-12-26  Tassilo Horn  <tassilo@member.fsf.org>
13234         * image-mode.el (image-bookmark-make-cell, image-bookmark-jump):
13235         New functions.
13236         (image-mode): Set bookmark-make-cell-function appropriately.
13238         * doc-view.el (doc-view-bookmark-jump): Correct misspelled arg name.
13240         * bookmark.el (bookmark-make-cell-function): New variable.
13241         (bookmark-make): Call bookmark-make-cell-function's function
13242         instead of bookmark-make-cell.
13243         (bookmark-get-handler, bookmark-jump-internal): New functions.
13244         (bookmark-jump, bookmark-jump-other-window, bookmark-insert)
13245         (bookmark-bmenu-2-window, bookmark-bmenu-other-window):
13246         Use bookmark-jump-internal.
13247         (bookmark-make-cell-for-text-file): Rename from bookmark-make-cell.
13249         * doc-view.el (doc-view-bookmark-make-cell)
13250         (doc-view-bookmark-jump): New functions.
13251         (doc-view-mode): Set bookmark-make-cell-function buffer-locally.
13253 2007-12-25  Miles Bader  <miles@gnu.org>
13255         * indent.el (indent-for-tab-command): Rigidly indent the following
13256         sexp along with the current line when a prefix arg is given in the
13257         non-active-region case.  Specify raw prefix in interactive spec.
13258         Simplify main indentation logic to get rid of the conditional call
13259         to `indent-according-to-mode' (it just ended up calling
13260         `indent-line-function' in all cases anyway, which can be done more
13261         simply here).  Remove unnecessary test of ARG in active region case.
13263 2007-12-25  Richard Stallman  <rms@gnu.org>
13265         * allout.el (allout-region-active-p): Rename from my-region-active-p.
13266         Use `use-region-p'.
13267         (allout-write-file-hook-handler): Simplify code.
13269         * ps-print.el (ps-mark-active-p): Function deleted.
13270         (ps-print-preprint-region): Use (mark) for the error check.
13272         * tooltip.el (tooltip-region-active-p): Use `use-region-p'.
13274         * winner.el (winner-active-region): Use `mark-active' if it's defined.
13276         * progmodes/ada-mode.el (ada-region-selected): Use `use-region-p'.
13278         * textmodes/org.el (org-region-active-p): Use `use-region-p'.
13280         * progmodes/idlwave.el (idlwave-region-active-p): Use `use-region-p'.
13282         * textmodes/reftex.el (reftex-region-active-p): Use `use-region-p'.
13284         * progmodes/cc-defs.el (c-region-is-active-p):
13285         Use `mark-active' if it's defined.
13287         * progmodes/cc-cmds.el (c-indent-line-or-region):
13288         Pass prefix arg to `c-indent-command'.  Use `use-region-p'.
13290         * simple.el (select-active-regions): New option.
13291         (set-mark): Obey it.
13292         (yank-pop-change-selection): New option.
13293         (current-kill): Obey it.
13295         * simple.el (use-region-p): Rename from `region-active-p'.
13296         (region-active-p): New function.
13298 2007-12-25  David Golden  <david.delaharpe.golden@gmail.com>  (tiny change)
13300         * term/x-win.el (x-select-enable-primary): New option.
13301         (x-select-text, x-cut-buffer-or-selection-value): Obey it.
13303         * mouse.el (mouse-yank-primary): New function (almost same
13304         as mouse-yank-secondary).
13306 2007-12-25  Dan Nicolaescu  <dann@ics.uci.edu>
13308         * calculator.el:
13309         * dframe.el:
13310         * iswitchb.el:
13311         * whitespace.el:
13312         * winner.el:
13313         * emacs-lisp/checkdoc.el:
13314         * mail/feedmail.el:
13315         * net/quickurl.el:
13316         * obsolete/fast-lock.el:
13317         * play/5x5.el:
13318         * progmodes/delphi.el:
13319         * progmodes/idlw-shell.el:
13320         * progmodes/idlwave.el:
13321         * textmodes/artist.el:
13322         * textmodes/ispell.el:
13323         * textmodes/texinfmt.el:
13324         * textmodes/texinfo.el: Remove obsolete definitions of backward
13325         compatibility macros for defcustom, defgroup, defface, when,
13326         unless, with-current-buffer and with-temp-message.
13328 2007-12-24  Nick Roberts  <nickrob@snap.net.nz>
13330         * progmodes/verilog-mode.el: Reformat parts to 80 columns.
13332 2007-12-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13334         * server.el (server-save-buffers-kill-terminal): Check the `proc' is
13335         indeed a process.
13337 2007-12-23  Richard Stallman  <rms@gnu.org>
13339         * simple.el (region-active-p): New function.
13340         (use-empty-active-region): New variable.
13342         * dired-aux.el (dired): Load dired.el at run time too.
13344 2007-12-23  Juri Linkov  <juri@jurta.org>
13346         * man.el (Man-follow-manual-reference): Fill the minibuffer's
13347         default list with a full list of references.
13349         * files.el (auto-mode-alist): Add \\' to doc-view files regexp.
13351 2007-12-23  Andreas Schwab  <schwab@suse.de>
13353         * files.el (switch-to-buffer-other-frame): Return the buffer
13354         switched to.
13356 2007-12-23  Michael Albinus  <michael.albinus@gmx.de>
13358         Sync with Tramp 2.1.12.
13360         * net/tramp.el: New todo item.
13362         * net/tramp-smb.el (tramp-smb-handle-insert-directory): Handle "-F"
13363         switch.  Reported by Mark T. Kennedy <mkennedy@diamondbackcap.com>.
13365         * net/trampver.el: Update release number.
13367 2007-12-22  Richard Stallman  <rms@gnu.org>
13369         * newcomment.el (comment-region-default): Don't triple the
13370         comment starter if the first region line isn't indented enough.
13372 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
13374         * net/imap.el (imap-authenticate): Use current-buffer instead of
13375         buffer, for the cases where imap-authenticate is called with a nil
13376         buffer parameter.
13378 2007-12-21  Martin Rudalics  <rudalics@gmx.at>
13380         * autoinsert.el (auto-insert-alist): Remove nonsensical precision
13381         specifier from format-string.  Reported by Ye Wenbin.
13383 2007-12-20  Jason Rumney  <jasonr@gnu.org>
13385         * nxml/nxml-mode.el (nxml-faces): Rename from nxml-highlighting-faces.
13386         Parent group is font-lock-faces.
13387         (nxml-light-blue-color, nxml-dark-blue-color, nxml-green-color)
13388         (nxml-sky-blue-color, nxml-dark-green-color, nxml-light-green-color):
13389         (nxml-version): Remove.
13390         (nxml-delimited-data, nxml-name, nxml-ref, nxml-delimiter)
13391         (nxml-text, nxml-comment-content, nxml-comment-delimiter)
13392         (nxml-processing-instruction-delimiter)
13393         (nxml-processing-instruction-target)
13394         (nxml-processing-instruction-content, nxml-cdata-section-delimiter)
13395         (nxml-cdata-section-CDATA, nxml-cdata-section-content)
13396         (nxml-char-ref-number, nxml-char-ref-delimiter, nxml-entity-ref-name)
13397         (nxml-entity-ref-delimiter, nxml-tag-delimiter, nxml-tag-slash)
13398         (nxml-element-prefix, nxml-element-colon, nxml-element-local-name)
13399         (nxml-attribute-prefix, nxml-attribute-colon)
13400         (nxml-attribute-local-name, nxml-namespace-attribute-xmlns)
13401         (nxml-namespace-attribute-colon, nxml-namespace-attribute-prefix)
13402         (nxml-attribute-value, nxml-attribute-value-delimiter)
13403         (nxml-namespace-attibute-value)
13404         (nxml-namespace-attribure-value-delimiter)
13405         (nxml-prolog-literal-delimiter, nxml-prolog-literal-content)
13406         (nxml-prolog-keyword, nxml-markup-declaration-delimiter, nxml-hash)
13407         (nxml-glyph): Rename, removing -face suffix.
13408         Inherit from existing font-lock faces.
13409         (nxml-apply-fontify-rule, nxml-char-ref-display-extra):
13410         Use new face names.
13412         * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
13413         (nxml-outline-active-indicator, nxml-outline-ellipsis):
13414         Rename, removing -face suffix.
13415         (nxml-highlighted-less-than, nxml-highlighted-greater-than)
13416         (nxml-highlighted-colon, nxml-highlighted-slash)
13417         (nxml-highlighted-ellipsis, nxml-highlighted-inactive-minus)
13418         (nxml-highlighted-active-minus, nxml-highlighted-active-plus)
13419         (nxml-highlighted-qname, nxml-outline-display-heading):
13420         Use new face names.
13422         * nxml/rng-valid.el (rng-error): Rename from rng-error-face.
13424         * nxml/rng-nxml.el (rng-nxml-easy-menu): Remove nxml-version.
13426 2007-12-19  Martin Rudalics  <rudalics@gmx.at>
13428         * cus-start.el (all): Use correct group name for members of
13429         mode-line group.
13431         * man.el (Man-default-man-entry): When looking for default man
13432         entry title search text preceding point.  Use when instead of if.
13434         * indent.el (indent-for-tab-command): Fix doc-string typo.
13436         * vc.el (vc-ensure-vc-buffer): Avoid infinite looping when
13437         vc-parent-buffer is the current buffer.
13439         * info-look.el (info-lookup, info-lookup-setup-mode)
13440         (info-lookup-make-completions): Avoid clobbering Info-history and
13441         Info-history-list.
13443 2007-12-19  Glenn Morris  <rgm@gnu.org>
13445         * progmodes/verilog-mode.el (top-level): Don't require compile.
13446         (compilation-error-regexp-alist, compilation-last-buffer):
13447         Define for compiler.
13448         (verilog-insert-1): New function.
13449         (verilog-insert-indices, verilog-generate-numbers): Doc fixes.
13450         Use verilog-insert-1.
13451         (verilog-surelint-off): Use next-error-last-buffer if bound.
13452         Check compile buffer is live.
13454 2007-12-19  John J Foerch  <jjfoerch@earthlink.net>  (tiny change)
13456         * progmodes/compile.el (compilation-start): Don't pass a FRAME
13457         argument to display-buffer.
13459 2007-12-19  Jason Rumney  <jasonr@gnu.org>
13461         * nxml/rng-maint.el (rng-format-manual): Do not autoload.
13462         (rng-autoload-modules, rng-update-autoloads, rng-compile-modules)
13463         (rng-byte-compile-load, rng-write-version): Remove.
13465         * nxml/rng-loc.el (rng-schema-locating-files-default)
13466         (rng-schema-locating-file-schema-file): Use files in etc/schemas.
13467         (rng-schema-loader-alist): Use rng-c-load-schema to load rnc files.
13469 2007-12-18  Michael Albinus  <michael.albinus@gmx.de>
13471         * files.el (cd-absolute): Set `list-buffers-directory' in order to
13472         show correct path in buffer list.
13474         * net/tramp.el (tramp-open-connection-setup-interactive-shell)
13475         (tramp-find-shell): Send only single prompt setting commands, in
13476         order to avoid double-prompt.
13478         * net/tramp-compat.el (top): Require cl only when compiling.
13479         Reported by Glenn Morris <rgm@gnu.org>.
13481 2007-12-18  Thien-Thi Nguyen  <ttn@gnuvola.org>
13483         * progmodes/cc-vars.el (defcustom-c-stylevar): Eval VAL.
13484         (c-comment-continuation-stars): No longer declare with
13485         cc-bytecomp-obsolete-var and cc-bytecomp-defvar.
13486         (c-block-comment-prefix): Use symbol-value to
13487         access c-comment-continuation-stars.
13488         * progmodes/cc-mode.el (c-initialize-cc-mode):
13489         Use symbol-value to access c-comment-continuation-stars.
13491 2007-12-18  Mark A. Hershberger  <mah@everybody.org>
13493         * xml.el (xml-escape-string): New function.  Escape string using
13494         xml-entity-alist.
13495         (xml-debug-print-internal): Use xml-escape-string to escape
13496         characters in attributes and in text children of elements.
13498 2007-12-18  Glenn Morris  <rgm@gnu.org>
13500         * progmodes/cc-subword.el (c-subword-mode): Drop support for
13501         systems without define-minor-mode.
13503         * progmodes/cc-vars.el (defcustom-c-stylevar): Remove debugging message.
13505         * progmodes/verilog-mode.el: Replace all instances of
13506         string-to-int with string-to-number, insert-string with insert,
13507         and read-input with read-string.
13508         (top-level): No need to require imenu, reporter, dinotrace, vc,
13509         font-lock when compiling.  Always require compile.  Relegate remaining
13510         compatibility cruft to XEmacs.  Don't require font-lock.
13511         (verilog-version): Remove superfluous concat.
13512         (dinotrace-unannotate-all, zmacs-activate-region, customize-apropos):
13513         No need to define.
13514         (verilog-regexp-opt): On Emacs, just make it an alias for regexp-opt.
13515         (verilog-font-lock-keywords, verilog-font-lock-keywords-1)
13516         (verilog-font-lock-keywords-2, verilog-font-lock-keywords-3)
13517         (verilog-startup-message-displayed): These are variables, not constants.
13518         (verilog-batch-execute-func, verilog-auto-inst)
13519         (verilog-auto-inst-param): Use mapc rather than mapcar.
13520         (sigs-in, sigs-inout, sigs-out): Define for compiler rather than
13521         actually defining.
13522         (verilog-modi-get-decls, verilog-modi-get-sub-decls)
13523         (verilog-modi-get-outputs, verilog-modi-get-inouts)
13524         (verilog-modi-get-inputs, verilog-modi-get-wires)
13525         (verilog-modi-get-regs, verilog-modi-get-assigns)
13526         (verilog-modi-get-consts, verilog-modi-get-gparams)
13527         (verilog-modi-get-sub-outputs, verilog-modi-get-sub-inouts)
13528         (verilog-modi-get-sub-inputs): Move inline functions earlier in
13529         the file.
13530         (sigs-in, sigs-out): Don't declare multiple times.
13531         (got-sig, got-rvalue, uses-delayed): Define for compiler with just
13532         `defvar'.
13533         (verilog-auto): Call dinotrace-unannotate-all only if bound.
13534         (verilog-module-inside-filename-p): No need to wrap fboundp test
13535         in condition-case.
13536         (reporter-submit-bug-report): Autoload it.
13537         (verilog-mark-defun): Call zmacs-activate-region only if bound.
13538         (verilog-font-customize): Call customize-apropos only if bound.
13539         (verilog-getopt-flags, verilog-auto-reeval-locals):
13540         Use make-local-variable rather than make-variable-buffer-local.
13541         (verilog-company, verilog-project, verilog-modi-cache-list):
13542         Move make-variable-buffer-local calls to top-level.
13543         (font-lock-defaults-alist): Don't define it.
13544         (verilog-need-fld): Remove.
13545         (verilog-font-lock-init): Don't set font-lock-defaults-alist.
13546         (verilog-mode): Only call make-local-hook on XEmacs.
13547         Set font-lock-defaults rather than using verilog-font-lock-init.
13549 2007-12-17  Andreas Schwab  <schwab@suse.de>
13551         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
13552         Fix comment typo.
13554 2007-12-16  Michael Albinus  <michael.albinus@gmx.de>
13556         * net/dbus.el (dbus-name-owner-changed-handler):
13557         Use `dbus-unregister-signal' for removing old rules.
13558         Obey new structure of `dbus-registered-functions-table'.
13560 2007-12-12  Thien-Thi Nguyen  <ttn@gnuvola.org>
13562         * progmodes/cc-vars.el (defcustom-c-stylevar): Rewrite.
13564 2007-12-11  Dan Nicolaescu  <dann@ics.uci.edu>
13566         * progmodes/verilog-mode.el (set-buffer-menubar): Remove unused
13567         function.
13568         (add-submenu): Only define for XEmacs.
13569         (verilog-regexp-words): Revert previous change, keep the other
13570         definition.
13572 2007-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
13574         * progmodes/perl-mode.el (perl-continued-statement-offset)
13575         (perl-continued-brace-offset, perl-brace-offset)
13576         (perl-brace-imaginary-offset, perl-label-offset):
13577         * progmodes/cperl-mode.el (cperl-brace-offset)
13578         (cperl-continued-brace-offset, cperl-label-offset)
13579         (cperl-continued-statement-offset)
13580         (cperl-extra-newline-before-brace, cperl-merge-trailing-else):
13581         Add safe-local-variable properties.
13583 2007-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
13585         * progmodes/verilog-mode.el (verilog-mode-map)
13586         (verilog-template-map, verilog-mode-mouse-map): Fix typos.
13587         (verilog-colorize-include-files): Use only overlay functions so
13588         that it can work on both emacs and XEmacs.
13589         (set-extent-keymap): Remove unused defun.
13590         (verilog-kill-existing-comment, verilog-insert-date)
13591         (verilog-insert-year): Rename in order not to pollute the global
13592         namespace from kill-existing-comment, insert-date and
13593         insert-year, respectively.
13594         (verilog-set-auto-endcomments, verilog-header): Update callers.
13596         * files.el (auto-mode-alist): Recognize verilog files.
13598         * progmodes/verilog-mode.el (verilog-string-replace-matches)
13599         (verilog-string-remove-spaces, verilog-re-search-forward)
13600         (verilog-re-search-backward, verilog-re-search-forward-quick)
13601         (verilog-re-search-backward-quick, verilog-get-beg-of-line)
13602         (verilog-get-end-of-line, verilog-within-string): Move definitions
13603         before first use.  No code changes.
13605 2007-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
13607         * progmodes/verilog-mode.el (verilog-mode-version)
13608         (verilog-mode-release-date): Don't use expanding keywords.
13609         (provide): Move to the end of file.
13610         (fboundp): Don't check if eval-when-compile is bound, it is used
13611         later in the file without checking.
13612         (when, unless): Copy definitions from subr.el.
13613         (char-before, defcustom, defface, customize-group)
13614         (verilog-batch-error-wrapper): Don't use old style backquotes.
13615         (verilog-regexp-opt): Avoid using the cl function case.
13616         (verilog-regexp-words): Remove duplicated definition.
13617         (verilog-mode-abbrev-table): Remove, duplicate.
13618         (verilog-mode-map, verilog-template-map, verilog-mode-mouse-map):
13619         Declare and initialize in one step.
13620         (verilog-declaration-prefix-re, verilog-declaration-re)
13621         (verilog-end-of-statement, verilog-indent-declaration)
13622         (verilog-get-lineup-indent): Remove trailing whitespace.
13623         (verilog-mode): Fix autoload cookie.
13624         Set beginning-of-defun-function and end-of-defun-function.  Use when
13625         instead of if.
13626         (verilog-emacs-features, verilog-auto-ascii-enum)
13627         (verilog-insert-indices): Escape braces in doc strings.
13629 2007-12-08  Michael McNamara  <mac@verilog.com>
13630             Wilson Snyder  <wsnyder@wsnyder.org>
13632         * progmodes/verilog-mode.el: New file.
13634 2007-12-08  Eli Zaretskii  <eliz@fencepost.gnu.org>
13636         * international/latexenc.el (latexenc-find-file-coding-system):
13637         If both coding-system-for-write and buffer-file-coding-system of
13638         latex-main-file are nil, use `undecided'.
13640 2007-12-06  Jason Rumney  <jasonr@gnu.org>
13642         * mouse.el (mouse-buffer-menu-alist): Keep buffer names left aligned.
13644 2007-12-12  Yoni Rabkin Katzenell  <yoni-r@actcom.com>  (tiny change)
13646         * files.el (revert-buffer): Docstring fix.
13648 2007-12-11  Glenn Morris  <rgm@gnu.org>
13650         * emacs-lisp/check-declare.el (check-declare-verify): Handle deffoo.
13652 2007-12-11  Jay Belanger  <jay.p.belanger@gmail.com>
13654         * calc/calc-aent.el (math-restore-underscores)
13655         (math-string-restore-underscores): New functions.
13656         (math-read-factor): Properly check variable names with underscores
13657         for entries in `math-expr-variable-mapping'.
13659         * calc/calc-lang.el (math-lang-name): New property name.
13661         * calc/calc.el (calc-set-mode-line): Use `math-lang-name'
13662         to set language name.
13664 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13666         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
13668 2007-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13670         * server.el (server-select-display): Fix important typo.
13671         (server-process-filter): Turn a "" display into nil.
13673 2007-12-09  Juri Linkov  <juri@jurta.org>
13675         * replace.el (keep-lines, flush-lines, how-many): Doc fix.
13676         Check search-upper-case before calling isearch-no-upper-case-p
13677         to set case-fold-search.
13678         (occur): Doc fix.
13679         (occur-1, perform-replace): Check search-upper-case before calling
13680         isearch-no-upper-case-p to set case-fold-search.
13682         * isearch.el (search-upper-case): Doc fix.
13683         (isearch-mode-map): Bind `M-s o' to isearch-occur.
13684         (isearch-query-replace): Doc fix.  Let-bind search-upper-case to nil.
13685         (isearch-query-replace-regexp): Doc fix.
13686         (isearch-occur): New function.
13688 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
13690         * pgg.el, pgg-parse.el (declare-function): Add new no-op macro for
13691         backward compatibility.
13693         * net/imap.el (imap-string-to-integer): New function.
13695 2007-12-09  David Kastrup  <dak@gnu.org>
13697         * emacs-lisp/lisp-mnt.el (lm-verify): Make it work with
13698         directories.  Not sure anybody uses this anymore, though.
13700 2007-12-09  Glenn Morris  <rgm@gnu.org>
13702         * emulation/viper-init.el (top-level): Use dolist rather than mapc
13703         in make-variable-frame-local call.
13705 2007-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
13707         * mail/hashcash.el (declare-function):
13708         * net/imap.el (declare-function): New no-op macro for backward
13709         compatibility.
13711 2007-12-08  Eli Zaretskii  <eliz@gnu.org>
13713         Sync makefile.w32-in with Makefile.in.
13715         * makefile.w32-in (check-declare): New target.
13716         (BYTE_COMPILE_EXTRA_FLAGS): New variable.
13717         (.el.elc, compile-CMD, compile-SH, compile-always-CMD)
13718         (compile-always-SH, compile-calc-CMD, compile-calc-SH)
13719         ($(lisp)/progmodes/cc-mode.elc): Use it.
13720         ($(lisp)/progmodes/cc-mode.elc): New rule.
13722 2007-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
13724         * indent.el (tab-stop-list): Mark as safe-local-variable.
13726         * generic-x.el (etc-sudoers-generic-mode): New mode.
13727         (generic-unix-modes): Add it.
13729 2007-12-08  Michael Albinus  <michael.albinus@gmx.de>
13731         * net/dbus.el (dbus-hash-table=): Remove function.  We cannot
13732         apply wildcards in a hash table key; there is no usable hash code then.
13733         (dbus-registered-functions-table): Use `equal' as test function.
13734         (dbus-name-owner-changed-handler): Rewrite due to new hash table
13735         structure.
13737 2007-12-08  Martin Rudalics  <rudalics@gmx.at>
13739         * progmodes/cc-cmds.el (c-mask-paragraph): Avoid invalid search
13740         bound error in block comment branch.
13742 2007-12-08  David Kastrup  <dak@gnu.org>
13744         * textmodes/reftex.el (reftex-select-with-char):
13745         * textmodes/reftex-toc.el (reftex-toc-do-promote)
13746         (reftex-toc-visit-location, reftex-toc-find-section):
13747         * textmodes/reftex-index.el (reftex-index-show-entry):
13748         * textmodes/org.el (org-cycle-hide-archived-subtrees)
13749         (org-table-rotate-recalc-marks, org-mark-ring-push)
13750         (org-follow-info-link, org-mhe-get-message-folder-from-index)
13751         (org-auto-repeat-maybe, org-store-log-note, org-delete-property)
13752         (org-evaluate-time-range, org-edit-agenda-file-list):
13753         * textmodes/artist.el (artist-select-next-op-in-list)
13754         (artist-select-prev-op-in-list):
13755         * term/mac-win.el (mac-service-insert-text):
13756         * startup.el (fancy-about-screen):
13757         * progmodes/vhdl-mode.el (vhdl-decision-query):
13758         * progmodes/idlwave.el (idlwave-template)
13759         (idlwave-scroll-completions, idlwave-display-completion-list):
13760         * progmodes/ebrowse.el (ebrowse-show-progress):
13761         * progmodes/cperl-mode.el (cperl-find-pods-heres):
13762         * progmodes/antlr-mode.el (antlr-insert-option-do):
13763         * play/mpuz.el (mpuz-close-game):
13764         * net/rcirc.el (rcirc-next-active-buffer):
13765         * mail/reporter.el (reporter-update-status):
13766         * kmacro.el (kmacro-display):
13767         * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
13768         * emulation/viper-util.el (viper-save-setting):
13769         * emacs-lisp/lisp-mnt.el (lm-verify):
13770         * emacs-lisp/edebug.el (edebug-set-mode):
13771         * emacs-lisp/checkdoc.el (checkdoc-rogue-spaces, checkdoc-defun):
13772         * calendar/calendar.el (calendar-print-day-of-year):
13773         * calc/calcalg3.el (calc-curve-fit):
13774         * calc/calcalg2.el (math-integral):
13775         * calc/calc.el (calc-read-key-sequence, calc-version):
13776         * calc/calc-mode.el (calc-set-simplify-mode):
13777         * calc/calc-ext.el (calc-fancy-prefix): Fix buggy call to `message'.
13779 2007-12-07  D. Goel  <deego3@gmail.com>
13781         * progmodes/idlw-shell.el (idlwave-shell-display-line)
13782         * progmodes/ada-xref.el (ada-find-file, ada-get-all-references)
13783         (ada-xref-find-in-modified-ali, ada-find-in-src-path)
13784         * mail/uce.el (uce-reply-to-uce)
13785         * progmodes/vhdl-mode.el (vhdl-template-modify)
13786         * mail/feedmail.el (feedmail-dump-message-to-queue): Improve calls
13787         to `error' (as suggested by RMS.)
13789 2007-12-07  Glenn Morris  <rgm@gnu.org>
13791         * allout.el (allout-write-file-hook-handler):
13792         * textmodes/reftex.el (reftex-TeX-master-file):
13793         * textmodes/reftex-parse.el (reftex-short-context):
13794         Revert previous change.
13796 2007-12-07  Michael Albinus  <michael.albinus@gmx.de>
13798         * net/dbus.el (dbus-hash-table=): Fix for new hash table key structure.
13799         (dbus-list-hash-table, dbus-name-owner-changed-handler): New defuns.
13800         (dbus-check-event, dbus-handle-event, dbus-event-bus-name)
13801         (dbus-event-service-name, dbus-event-path-name)
13802         (dbus-event-interface-name, dbus-event-member-name): Fix for new
13803         event structure.
13804         (dbus-list-activatable-names, dbus-list-names)
13805         (dbus-list-queued-owners, dbus-get-name-owner, dbus-introspect):
13806         Reorder `dbus-call-method' arguments.
13808 2007-12-06  D. Goel  <deego3@gmail.com>
13810         * allout.el (allout-write-file-hook-handler):
13811         * textmodes/reftex.el (reftex-TeX-master-file):
13812         * textmodes/org.el (org-paste-subtree):
13813         * progmodes/vhdl-mode.el (vhdl-template-modify):
13814         * progmodes/idlw-shell.el (idlwave-shell-send-command)
13815         (idlwave-shell-display-line):
13816         * progmodes/ada-xref.el (ada-find-file, ada-get-all-references)
13817         (ada-xref-find-in-modified-ali, ada-find-in-src-path):
13818         * net/trampver.el (x):
13819         * mail/uce.el (uce-reply-to-uce):
13820         * mail/rmailout.el (rmail-output):
13821         * mail/feedmail.el (feedmail-dump-message-to-queue):
13822         * whitespace.el (whitespace-write-file-hook):
13823         * wdired.el (wdired-check-kill-buffer):
13824         * vc.el (vc-update):
13825         * vc-mcvs.el (vc-mcvs-checkin):
13826         * vc-cvs.el (vc-cvs-checkin):
13827         * man.el (Man-bgproc-sentinel, Man-goto-see-also-section):
13828         * ibuffer.el (ibuffer-current-buffer):
13829         * dired.el (dired-move-to-end-of-filename):
13830         * bindings.el (complete-symbol):
13831         * textmodes/org-publish.el (org-publish-file):
13832         (org-publish-current-project):
13833         * textmodes/reftex-parse.el (reftex-short-context):
13834         * textmodes/texinfmt.el: Fix buggy calls to `error'.
13836 2007-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13838         * doc-view.el (doc-view-dvi->pdf-sentinel)
13839         (doc-view-pdf/ps->png-sentinel, doc-view-pdf->txt-sentinel)
13840         (doc-view-ps->pdf-sentinel, doc-view-display): Don't change buffer
13841         within a sentinel or timer.
13842         (doc-view-display): Don't try to display before the requested page
13843         is available, unless told to do so explicitly.
13844         (doc-view-pdf/ps->png-sentinel, doc-view-initiate-display):
13845         Force display even if the requested page is not available.
13847 2007-12-06  Richard Stallman  <rms@gnu.org>
13849         * help-fns.el (describe-function-1): Call ad-get-advice-info
13850         only on symbols.
13852 2007-12-06  Glenn Morris  <rgm@gnu.org>
13854         * progmodes/antlr-mode.el (antlr-keyword, antlr-syntax)
13855         (antlr-ruledef, antlr-tokendef, antlr-ruleref-face)
13856         (antlr-tokenref, antlr-literal): Inherit from standard font-lock
13857         faces in non-light-background case.
13859         * add-log.el, dired-aux.el, font-lock.el, help-fns.el, ido.el:
13860         * informat.el, emacs-lisp/bytecomp.el, emacs-lisp/gulp.el:
13861         * emacs-lisp/tcover-ses.el, emacs-lisp/timer.el, emulation/edt.el:
13862         * emulation/vi.el, emulation/viper-cmd.el:
13863         * international/titdic-cnv.el, mail/emacsbug.el, progmodes/dcl-mode.el:
13864         * progmodes/prolog.el, progmodes/ps-mode.el, progmodes/python.el:
13865         * textmodes/fill.el: Remove directory part from filenames in
13866         function declarations.
13868         * dired-aux.el (mailcap-mime-info): Update declaration.
13870 2007-12-05  Richard Stallman  <rms@gnu.org>
13872         * wid-edit.el (widget-type): Doc fix.
13874 2007-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13876         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
13877         Don't match "sub { (...) ... }".
13879 2007-12-05  Richard Stallman  <rms@gnu.org>
13881         * international/mule-cmds.el (toggle-input-method-active): New var.
13882         (toggle-input-method): Bind toggle-input-method-active to t.
13883         Error if it was already non-nil.
13885 2007-12-05  Reiner Steib  <Reiner.Steib@gmx.de>
13887         * net/tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
13889 2007-12-05  Elias Oltmanns  <eo@nebensachen.de>
13891         * net/tls.el (open-tls-stream): Actually consult tls-checktrust to
13892         see if certs should be verified and what is to be done in the
13893         event of a verification failure.
13895 2007-12-05  Reiner Steib  <Reiner.Steib@gmx.de>
13897         * net/tls.el (tls-program): Provide more custom choices from
13898         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
13899         (tls-process-connection-type, tls-success): Remove "*" in doc string.
13900         (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
13901         version.  Minor improvement to doc strings.
13902         (tls-program): Add comment.
13904 2007-12-05  Elias Oltmanns  <eo@nebensachen.de>
13906         * net/tls.el (tls-certtool-program, tls-hostmismatch): New variables.
13907         (tls-checktrust): New variable.  Check if GNU TLS complained about a
13908         mismatch between the hostname provided in the certificate and the name
13909         of the host connnecting to.
13910         (open-tls-stream): Use them.  Check certificates against trusted root
13911         certificates.
13913 2007-12-05  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
13915         * net/imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
13916         (imap-parse-status): Upcase status-att for broken servers that sends
13917         them lower-case (e.g., MS Exchange 2007).
13919 2007-12-05  D. Goel  <deego3@gmail.com>
13921         * simple.el (undo):
13922         * image-dired.el (image-dired-display-thumb-properties):
13923         (image-dired-modify-mark-on-thumb-original-file):
13924         (image-dired-dired-display-properties):
13925         * help.el (help-window-display-message):
13926         * files.el (hack-local-variables-confirm):
13927         * ediff.el (ediff-version):
13928         * complete.el (pc-chunk-after, PC-temp-minibuffer-message):
13929         `message' and `error': Ensure that first arg is a format string.
13931         * emacs-lisp/find-func.el (find-library-name): Prefer files with
13932         ".el" suffix over "".
13934 2007-12-05  Michael Albinus  <michael.albinus@gmx.de>
13936         * net/dbus.el (dbus-hash-table=): Allow nil as wildcard in the
13937         interface and member fields.
13939 2007-12-05  Glenn Morris  <rgm@gnu.org>
13941         * eshell/em-alias.el (pcomplete-stub): Define for compiler.
13942         (pcomplete-here): Autoload it.
13944         * eshell/em-basic.el (print-func): No need to define for compiler.
13946         * eshell/esh-cmd.el (eshell-debug-command):
13947         * eshell/esh-io.el (eshell-print): Move definitions before use.
13949         * eshell/esh-module.el (eshell-load-defgroups): Eval and compile.
13951         * eshell/esh-util.el (top-level): Don't require pp.
13952         Use condition-case rather than ignore-errors.
13954         * eshell/eshell.el (eshell-buffer-name): Define for compiler.
13956         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el
13957         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
13958         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el
13959         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el
13960         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el
13961         * eshell/em-xtra.el, eshell/esh-cmd.el, eshell/esh-test.el
13962         * eshell/esh-util.el, eshell/eshell.el: Require individual files
13963         if needed when compiling, rather than esh-maint.  Collect any
13964         require statements.  Move provide statement to end.  Move any
13965         commentary to start.
13967         * eshell/esh-arg.el, eshell/esh-ext.el, eshell/esh-io.el:
13968         * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el:
13969         * eshell/esh-proc.el, eshell/esh-var.el:
13970         Require individual files if needed when compiling, rather than
13971         esh-maint.  Collect any require statements.  Leave provide at start.
13972         Move any commentary to start.
13974         * emacs-lisp/bytecomp.el (byte-compile-declare-function):
13975         Remove declared function from byte-compile-noruntime-functions.
13977         * ediff-util.el (ediff-version):
13978         * progmodes/python.el (compilation-shell-minor-mode):
13979         * textmodes/org.el (Info-goto-node, calendar-astro-date-string)
13980         (calendar-bahai-date-string, calendar-check-holidays)
13981         (calendar-chinese-date-string, calendar-coptic-date-string)
13982         (calendar-ethiopic-date-string, calendar-forward-day)
13983         (calendar-french-date-string, calendar-goto-date)
13984         (calendar-goto-today, calendar-hebrew-date-string)
13985         (calendar-islamic-date-string, calendar-iso-date-string)
13986         (calendar-julian-date-string, calendar-mayan-date-string)
13987         (calendar-persian-date-string, gnus-summary-last-subject)
13988         (parse-time-string, rmail-show-message): Declare as functions.
13990 2007-12-05  Michael Olson  <mwolson@gnu.org>
13992         * textmodes/remember.el: Merge contents of remember-diary.el here,
13993         updating header.  Add autoload cookie so that byte-compilation
13994         works without warning.
13995         (remember-diary-file): Default to nil, since diary might not yet
13996         be loaded at this point, which would deny us access to diary-file.
13997         (remember-diary-extract-entries): If remember-diary-file is nil,
13998         then use diary-file instead.
14000         * textmodes/remember-diary.el: Remove, due to the issue of needing
14001         the first 8 characters of a filename to be unique.
14003 2007-12-04  Michael Albinus  <michael.albinus@gmx.de>
14005         * net/dbus.el (dbus-hash-table=): New defun.
14006         (dbus-hash-table-test): New hash table test function, used in
14007         `dbus-registered-functions-table'.
14008         (dbus-check-event, dbus-handle-event, dbus-event-bus-name)
14009         (dbus-event-service-name, dbus-event-path-name)
14010         (dbus-event-interface-name, dbus-event-member-name):
14011         Rewrite, due to new structure of `dbus-event'.
14013 2007-12-04  Juanma Barranquero  <lekktu@gmail.com>
14015         * ido.el (ido-save-history): Set the `coding' local
14016         variable in the first line of the file.
14018 2007-12-04  Glenn Morris  <rgm@gnu.org>
14020         * password-cache.el: Move here from gnus/password.el.
14021         (top-level): Don't require cl when compiling.
14022         (password-read-and-add): Doc fix.  Make obsolete.
14024         * net/tramp.el: Require password-cache or password.
14026         * emulation/cua-base.el (top-level): Move (provide 'cua-base) to end.
14027         No longer provide 'cua.  Don't require cua-rect, cua-gmrk when
14028         compiling.
14029         (cua-set-rectangle-mark): Add doc string to autoload.
14030         (cua--rectangle, cua--last-killed-rectangle)
14031         (cua--global-mark-active): Always define for compiler.
14032         (cua-copy-rectangle, cua-cut-rectangle, cua--rectangle-left)
14033         (cua--delete-rectangle, cua--insert-rectangle)
14034         (cua--rectangle-corner, cua--rectangle-assert)
14035         (cua--insert-at-global-mark, cua--global-mark-post-command):
14036         Declare as functions.
14038         * emulation/cua-gmrk.el (top-level): Move provide to end.
14040         * emulation/cua-rect.el (top-level): Move provide to end.
14041         Don't require cua-gmrk when compiling.
14042         (cua--cut-rectangle-to-global-mark)
14043         (cua--copy-rectangle-to-global-mark): Declare as functions.
14045         * emulation/viper-init.el (viper-replace-overlay-cursor-color)
14046         (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
14047         (viper-vi-state-cursor-color):
14048         Consolidate make-variable-frame-local calls.
14050         * net/eudcb-bbdb.el (bbdb-address-streets): Declare as a function.
14051         (eudc-bbdb-extract-addresses): Use bbdb-address-streets rather
14052         than bbdb-address-street1,2,3.
14054         * textmodes/reftex-toc.el (reftex-make-separate-toc-frame):
14055         Try x-focus-frame before focus-frame.  Only try focus-frame on XEmacs.
14057 2007-12-03  Karl Fogel  <kfogel@red-bean.com>
14059         * saveplace.el (save-place-quiet): Remove, reverting 2007-12-02T19:54:46Z!kfogel@red-bean.com.
14060         (save-place-alist-to-file, load-save-place-alist-from-file):
14061         Don't print non-error messages at all, there's really no need.
14062         Do print if there's a problem, and clarify message in that case.
14064 2007-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
14066         * ediff-diff.el (ediff-prepare-error-list):
14067         * ediff-util.el (ediff-setup): Disable undo for ediff-error-buffer.
14069 2007-12-03  Tassilo Horn  <tassilo@member.fsf.org>
14071         * doc-view.el (doc-view-initiate-display): Use `doc-view-mode-p'.
14072         (doc-view-current-overlay, doc-view-pending-cache-flush):
14073         Add doc string.
14075 2007-12-03  Richard Stallman  <rms@gnu.org>
14077         * subr.el (declare-function): Move from byte-run.el.
14079         * emacs-lisp/byte-run.el (declare-function): Move to subr.el.
14081         * window.el (recenter-top-bottom): Don't use `ecase'.
14083 2007-12-02  Karl Fogel  <kfogel@red-bean.com>
14085         * saveplace.el (save-place-alist-to-file):
14086         Set coding-system-for-write once and refer to it throughout.
14087         Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk>.
14089 2007-12-02  Karl Fogel  <kfogel@red-bean.com>
14091         * saveplace.el (save-place-alist-to-file): Use `utf-8' coding
14092         system when writing, and set it in the first-line file variables.
14093         Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk> and
14094         Juanma Barranquero.
14096 2007-12-02  Glenn Morris  <rgm@gnu.org>
14098         * emacs-lisp/bytecomp.el (byte-compile-declare-function):
14099         Reverse branches of if statement.
14101         * emulation/viper-cmd.el (top-level): Don't require advice.
14102         Don't load viper-util, viper-keym, viper-mous, viper-macs,
14103         viper-ex when compiling.
14105         * emulation/viper-ex.el (top-level): Don't load viper-util,
14106         viper-keym when compiling.
14108         * emulation/viper-init.el (top-level): Move provide statement to end.
14110         * emulation/viper-keym.el (top-level): Don't load viper-util when
14111         compiling.  Move provide statement to end.
14113         * emulation/viper-macs.el (top-level): Don't load viper-util,
14114         viper-keym, viper-mous when compiling.
14116         * emulation/viper-mous.el (top-level): Don't load viper-util when
14117         compiling.
14119         * emulation/viper-util.el (top-level): Don't load viper-init when
14120         compiling.
14122         * emulation/viper.el (top-level): Don't require ring.
14123         Don't load viper-init, viper-cmd when compiling.
14125         * net/sasl-cram.el, net/sasl-digest.el, net/sasl-ntlm.el, net/sasl.el:
14126         Move here from gnus/.
14128 2007-12-02  Karl Fogel  <kfogel@red-bean.com>
14130         Offer option for saveplace to be quiet about loading and saving.
14131         Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk>.
14133         * saveplace.el (save-place-quiet): New customizable boolean.
14134         (save-place-alist-to-file, load-save-place-alist-from-file): Use it
14135         to determine whether to print loading/saving messages.
14137 2007-12-02  Glenn Morris  <rgm@gnu.org>
14139         * mail/binhex.el: Move here from gnus/.
14140         (binhex): New custom group.
14141         (binhex-decoder-program, binhex-decoder-switches)
14142         (binhex-use-external): Move to the binhex custom group.
14144         * mail/uudecode.el: Move here from gnus/.
14145         (uudecode): New custom group.
14146         (uudecode-decoder-program, uudecode-decoder-switches)
14147         (uudecode-use-external): Move to the uudecode custom group.
14149         * net/netrc.el (top-level): Don't load `encrypt' features.
14150         (netrc-parse): Don't use encrypt.
14151         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
14153         * progmodes/python.el (top-level): Don't require cl when compiling.
14155 2007-12-02  Agustín Martín  <agustin.martin@hispalinux.es>
14157         * textmodes/flyspell.el (flyspell-large-region): Explicitly set
14158         encoding for aspell process and for communication with it.
14159         Only add "-d" option if not already present.
14160         Use ispell-current-dictionary and ispell-current-personal-dictionary.
14161         General reorganization.
14163         * textmodes/ispell.el (ispell-aspell-find-dictionary): Do not set
14164         encoding here.
14165         (ispell-start-process): Explicitly set encoding here if using aspell.
14167 2007-12-02  Dan Nicolaescu  <dann@ics.uci.edu>
14169         * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Also pass a diff
14170         function to log-edit.
14172 2007-12-02  Michael Albinus  <michael.albinus@gmx.de>
14174         * net/dbus.el: New file.
14176 2007-12-02  Jay Belanger  <jay.p.belanger@gmail.com>
14178         * calc/calc.el (calc-lang-slash-idiv, calc-lang-allow-underscores)
14179         (calc-lang-c-type-hex, calc-lang-brackets-are-subscripts)
14180         (calc-lang-parens-are-subscripts): New variables.
14181         (math-expr-special-function-mapping): Remove variable.
14182         (math-eqn-ignore-words, math-tex-ignore-words)
14183         (math-latex-ignore-words): Move to calc-lang.el.
14185         * calc/calc-lang.el (math-compose-vector, math-compose-var)
14186         (math-tex-expr-is-flat): Declare as functions.
14187         (calc-lang-slash-idiv, calc-lang-allow-underscores)
14188         (math-comp-left-bracket, math-comp-right-bracket)
14189         (math-comp-comma, math-comp-vector-prec): Declare as variables.
14190         (math-var-formatter, math-matrix-formatter)
14191         (math-lang-adjust-words, math-lang-read-symbol, math-land-read)
14192         (math-punc-table, math-compose-subscr, math-dots)
14193         (math-func-formatter): New property names to store language
14194         specific information.
14195         (math-compose-tex-var, math-compose-tex-intv)
14196         (math-compose-maple-intv, math-compose-eqn-intv)
14197         (math-compose-tex-sum, math-compose-tex-func)
14198         (math-compose-tex-intv): New functions.
14199         (math-eqn-ignore-words, math-tex-ignore-words)
14200         (math-latex-ignore-words): Move from calc.el.
14201         (math-special-function-table): Add entries for tex.
14202         (calc-lang-slash-idiv, calc-lang-allows-underscores):
14203         New variables.
14204         (math-compose-latex-frac): Rename from `math-latex-print-frac'.
14205         (math-compose-tex-matrix, math-compose-eqn-matrix)
14206         (math-eqn-special-functions): Move from calccomp.el.
14208         * calc/calccomp.el (math-compose-var): New function.
14209         (math-compose-expr): Allow more special functions to be used.
14210         Change test for formatting fractions.  Use variables and property
14211         names to help with language specific formatting.
14212         (math-compose-tex-matrix, math-compose-eqn-matrix)
14213         (math-eqn-special-functions): Move to calc-lang.el.
14214         (math-compose-rows): Use property names to help with language
14215         specific formatting.
14217         * calc/calc-aent.el (math-read-factor): Turn multiple subscripts
14218         into nested subscripts.
14219         (math-read-token): Use variables and property names to help with
14220         language specific parsing.
14221         (math-read-expression-level): Use variables to help with language
14222         specific parsing.
14224 2007-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14226         * arc-mode.el (archive-find-type): Add recognition of rar-exe format.
14227         (archive-rar-summarize): Allow the file name to be passed as argument.
14228         Remove unused vars `header' and `footer'.
14229         (archive-rar-exe-summarize, archive-rar-exe-extract): New functions.
14231 2007-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
14233         * log-edit.el (log-edit-show-diff): New function.
14234         (log-edit-mode-map, log-edit-menu): Bind it.
14235         (log-edit-diff-function): New variable.
14236         (log-edit): Change the 3rd param to be an alist and accept a
14237         function that computes a diff for the files involved.
14239         * vc.el (vc-log-edit): Add a diff function parameter to log-edit.
14241 2007-12-01  Martin Rudalics  <rudalics@gmx.at>
14243         * play/blackbox.el (bb-up, bb-down): Revert 2007-10-21 change and
14244         wrap next-/previous-line in with-no-warnings.
14246 2007-12-01  Glenn Morris  <rgm@gnu.org>
14248         * format-spec.el, hex-util.el, sha1.el: Move here from gnus/.
14250         * net/dig.el: Move here from gnus/.
14251         (dig-mode): Replace gnus-run-mode-hooks with equivalent expansion.
14253         * net/dns.el: Move here from gnus/.
14254         (top-level): Don't require mm-util, or cl when compiling.
14255         (dns-write-name, dns-read, dns-read-type, query-dns):
14256         Replace mm-with-unibyte-buffer with its expansion.
14257         (query-dns): Replace decf and ignore-errors with non-cl equivalents.
14259         * progmodes/gdb-ui.el (gud-remove, gud-break):
14260         * progmodes/gud.el (gdb-create-define-alist)
14261         (gdb-restore-windows, gdb-reset, global-hl-line-highlight)
14262         (hl-line-highlight, gdb-display-source-buffer)
14263         (gdb-display-buffer, c-langelem-sym, c-langelem-pos)
14264         (syntax-symbol, syntax-point, gdb-enqueue-input): Declare as functions.
14266 2007-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
14268         * textmodes/org-export-latex.el (org-export-latex-cleaned-string):
14269         Move args on defun line.
14271         * textmodes/org.el (org-calendar-holiday):
14272         Use calendar-check-holidays instead of the obsolete
14273         check-calendar-holidays.
14274         (add-to-diary-list, table--at-cell-p, Info-find-node, bbdb)
14275         (bbdb-company, bbdb-current-record, bbdb-name)
14276         (bbdb-record-getprop, bbdb-record-name)
14277         (bibtex-beginning-of-entry, bibtex-generate-autokey)
14278         (bibtex-parse-entry, bibtex-url, cdlatex-tab)
14279         (dired-get-filename, gnus-article-show-summary, mh-display-msg)
14280         (mh-find-path, mh-get-header-field, mh-get-msg-num)
14281         (mh-header-display, mh-index-previous-folder)
14282         (mh-normalize-folder-name, mh-search, mh-search-choose, mh-show)
14283         (mh-show-buffer-message-number, mh-show-header-display)
14284         (mh-show-msg, mh-show-show, mh-visit-folder)
14285         (org-export-latex-cleaned-string, remember)
14286         (remember-buffer-desc, rmail-narrow-to-non-pruned-header)
14287         (rmail-what-message, elmo-folder-exists-p)
14288         (elmo-message-entity-field, elmo-message-field)
14289         (vm-beginning-of-message, vm-follow-summary-cursor)
14290         (vm-get-header-contents, vm-isearch-narrow, vm-isearch-update)
14291         (vm-select-folder-buffer, vm-su-message-id, vm-su-subject)
14292         (vm-summarize, wl-folder-get-elmo-folder)
14293         (wl-summary-goto-folder-subr)
14294         (wl-summary-jump-to-msg-by-message-id, wl-summary-line-from)
14295         (wl-summary-line-subject, wl-summary-message-number)
14296         (wl-summary-redisplay): Declare as functions.
14298 2007-11-30  Martin Rudalics  <rudalics@gmx.at>
14300         * longlines.el (longlines-show-hard-newlines): Remove handling of
14301         buffer-undo-list and buffer-modified status.
14302         (longlines-show-region, longlines-unshow-hard-newlines):
14303         Handle buffer-undo-list, buffer-modified status, inhibit-read-only, and
14304         inhibit-modification-hooks here to avoid that a buffer appears
14305         modified when toggling visibility of hard newlines.
14307 2007-11-30  Glenn Morris  <rgm@gnu.org>
14309         * nxml/rng-maint.el (rng-do-some-validation): Fix declaration.
14311         * progmodes/idlw-complete-structtag.el
14312         (idlwave-sintern-structtag):
14313         * progmodes/idlw-help.el (idlwave-sintern-sysvar)
14314         (idlwave-sintern-sysvartag):
14315         * progmodes/idlwave.el (idlwave-sintern-class-tag)
14316         (idlwave-sintern-sysvar, idlwave-sintern-sysvartag): Declare as
14317         functions.
14319 2007-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
14321         * textmodes/reftex-index.el (texmathp):
14322         * textmodes/reftex-auc.el (TeX-argument-insert)
14323         (TeX-argument-prompt, multi-prompt, LaTeX-add-index-entries)
14324         (LaTeX-add-labels, LaTeX-bibitem-list, LaTeX-index-entry-list)
14325         (LaTeX-label-list):
14326         * nxml/rng-maint.el (rng-clear-cached-state, rng-clear-overlays)
14327         (rng-clear-conditional-region, rng-do-some-validation): Declare as
14328         functions.
14329         (rng-error-count, rng-validate-up-to-date-end): Pacify byte compiler.
14331 2007-11-30  Glenn Morris  <rgm@gnu.org>
14333         * emacs-lisp/byte-run.el (declare-function): Add optional fourth
14334         argument and document it.
14336         * emacs-lisp/bytecomp.el (byte-compile-declare-function):
14337         Third argument to declare-function must be a list to specify arglist.
14339         * emacs-lisp/check-declare.el (check-declare-scan): Doc fix.
14340         Handle declare-function third argument `t' and fourth argument.
14341         (check-declare-verify): Doc fix.  Handle `fileonly' case.
14342         Use progn rather than prog1.
14344         * desktop.el (uniquify-item-base):
14345         * term/mac-win.el (url-type): Declare as functions.
14347         * net/eudcb-bbdb.el (bbdb-phone-location, bbdb-record-phones)
14348         (bbdb-address-city, bbdb-address-state, bbdb-address-zip)
14349         (bbdb-address-location, bbdb-record-addresses): Pass non-nil
14350         fourth arg to declare-function.
14352         * play/dunnet.el: Don't require cl when compiling.
14353         (byte-compile-warnings): Set via file local variables.
14354         (dun-parse): Let-bind `beg' and `line'.
14356 2007-11-29  Alexandre Julliard  <julliard@winehq.org>
14358         * vc-git.el (vc-git-dir-state): Fix the git command arguments.
14360 2007-11-29  Ari Roponen  <ari.roponen@gmail.com>  (tiny change)
14362         * calendar/time-date.el (encode-time-value): Doc fix.
14364 2007-11-29  Glenn Morris  <rgm@gnu.org>
14366         * calendar/time-date.el (with-decoded-time-value): Doc fix.
14368         * textmodes/css-mode.el (prog-mode): Remove.
14369         (css-mode): Derive from fundamental-mode rather than prog-mode.
14371         * emacs-lisp/byte-run.el (declare-function): Doc fix.
14373         * emacs-lisp/check-declare.el (check-declare-locate)
14374         (check-declare-verify): Handle `external' files.
14375         (check-declare-errmsg): New function.
14376         (check-declare-verify, check-declare-file, check-declare-directory):
14377         Use check-declare-errmsg to report the number of problems.
14379         * ffap.el (w3-view-this-url)
14380         * mail/mspools.el (vm-visit-folder)
14381         * net/browse-url.el (w3-fetch-other-window, w3-fetch)
14382         * net/eudcb-bbdb.el (bbdb-phone-location, bbdb-phone-string)
14383         (bbdb-record-phones, bbdb-address-city, bbdb-address-state)
14384         (bbdb-address-zip, bbdb-address-location, bbdb-record-addresses)
14385         (bbdb-records)
14386         * net/eudc-export.el (bbdb-parse-phone-number, bbdb-string-trim)
14387         * net/imap.el (sasl-find-mechanism, sasl-mechanism-name)
14388         (sasl-make-client, sasl-next-step, sasl-step-data)
14389         (sasl-step-set-data)
14390         * net/newsticker.el (w3m-toggle-inline-image, htmlr-reset)
14391         (htmlr-step): Declare as functions.
14393         * net/eudcb-bbdb.el (eudc-bbdb-extract-addresses):
14394         Use bbdb-address-zip rather than bbdb-address-zip-string.
14396 2007-11-28  Richard Stallman  <rms@gnu.org>
14398         * md4.el, net/hmac-def.el, net/hmac-md5.el, net/ntlm.el:
14399         Move here from gnus/.
14401 2007-11-28  Martin Rudalics  <rudalics@gmx.at>
14403         * newcomment.el (comment-region-internal): Fix newline insertion
14404         in `block' case.
14406 2007-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14408         * pcvs-parse.el (cvs-parse-table): Adjust regexp for resurrections.
14410 2007-11-28  Glenn Morris  <rgm@gnu.org>
14412         * Makefile.in (maintainer-clean): Depend on bootstrap-clean to
14413         delete .elc files.
14415         * nxml/char-name/unicode: Move to etc/nxml/.
14416         * nxml/nxml-uchnm.el (top-level): Adapt for moved unicode files.
14418         * nxml/nxml-enc.el (xmltok-get-declared-encoding-position):
14419         Declare as a function.
14421         * nxml/nxml-maint.el (nxml-create-unicode-char-name-sets):
14422         * nxml/nxml-mode.el (nxml-get-char-name, nxml-insert-named-char):
14423         * nxml/xsd-regexp.el (xsdre-gen-categories): Change mapcar -> mapc.
14425         * nxml/nxml-outln.el (nxml-token-start-tag-p)
14426         (nxml-token-end-tag-p): Move definitions before use.
14428         * nxml/nxml-rap.el (nxml-prolog-regions): Declare for compiler.
14430         * nxml/nxml-uchnm.el (top-level)
14431         (nxml-enable-unicode-char-name-sets-1): Use mapc rather than mapcar.
14432         (nxml-enabled-unicode-blocks): Add custom group.
14434         * nxml/xmltok.el (xmltok-scan-char-ref, xmltok-char-number):
14435         Use string-to-number rather than string-to-int.
14437         * dired-x.el (dired-omit-old-add-entry): Declare as function.
14438         Move definition before use.
14439         (dired-old-find-buffer-nocreate): Declare as function.
14441         * emacs-lisp/check-declare.el (check-declare-locate): Reflow doc.
14442         (check-declare-verify): Handle fset.
14444         * emulation/edt.el (edt-user-emulation-setup):
14445         Test edt-setup-user-bindings is bound before calling.
14447         * emulation/tpu-edt.el: Don't require cl when compiling.
14448         (tpu-emacs-search, tpu-emacs-rev-search): Declare as functions.
14449         (tpu-edt-off): Use condition-case rather than ignore-errors.
14450         Use with-no-warnings.
14452         * eshell/esh-util.el (top-level): Use require rather than load for
14453         ange-ftp.
14455         * mail/supercite.el (sc-version): Redefine as an alias for
14456         emacs-version.
14457         (sc-help-address): Remove.
14458         (sc-version): Use emacs-version rather than sc-version.
14459         (sc-submit-bug-report): Redefine as an alias for report-emacs-bug.
14461         * net/socks.el (socks-original-open-network-stream): Declare as
14462         function.  Move definition before use.
14464 2007-11-28  Jay Belanger  <jay.p.belanger@gmail.com>
14466         * calc/calc-ext.el (math-sqrt-raw, math-map-vec)
14467         (math-make-frac): Declare as functions.
14469 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
14471         * progmodes/cperl-mode.el (compilation-error-regexp-alist):
14472         Pacify byte compiler.
14473         (cperl-mode): Use with-no-warnings for setting vc-header-alist.
14475         * progmodes/idlwave.el (idlwave-shell-get-path-info)
14476         (idlwave-shell-temp-file, idlwave-shell-is-running)
14477         (widget-value, comint-dynamic-complete-filename, Info-goto-node):
14478         * progmodes/idlw-help.el (idlwave-prepare-structure-tag-completion)
14479         (idlwave-all-method-classes, idlwave-all-method-keyword-classes)
14480         (idlwave-beginning-of-statement, idlwave-best-rinfo-assoc)
14481         (idlwave-class-found-in, idlwave-class-or-superclass-with-tag)
14482         (idlwave-completing-read, idlwave-current-routine)
14483         (idlwave-downcase-safe, idlwave-entry-find-keyword)
14484         (idlwave-expand-keyword, idlwave-find-class-definition)
14485         (idlwave-find-inherited-class, idlwave-find-struct-tag)
14486         (idlwave-get-buffer-visiting, idlwave-in-quote)
14487         (idlwave-make-full-name, idlwave-members-only)
14488         (idlwave-popup-select, idlwave-routine-source-file)
14489         (idlwave-routines, idlwave-sintern-class)
14490         (idlwave-sintern-keyword, idlwave-sintern-method)
14491         (idlwave-sintern-routine-or-method)
14492         (idlwave-substitute-link-target, idlwave-sys-dir)
14493         (idlwave-this-word, idlwave-what-module-find-class)
14494         (idlwave-where):
14495         * progmodes/idlw-complete-structtag.el (idlwave-shell-buffer):
14496         * mail/uce.el (rmail-msg-is-pruned)
14497         (rmail-maybe-set-message-counters, rmail-msgbeg, rmail-msgend)
14498         (rmail-toggle-header):
14499         * mail/sendmail.el (dired-view-file, dired-get-filename):
14500         * mail/rmailkwd.el (rmail-maybe-set-message-counters)
14501         (rmail-display-labels, rmail-msgbeg)
14502         (rmail-set-message-deleted-p, rmail-message-labels-p)
14503         (rmail-show-message, mail-comma-list-regexp)
14504         (mail-parse-comma-list):
14505         * mail/rmail.el (rmail-spam-filter, rmail-summary-goto-msg)
14506         (rmail-summary-mark-undeleted, rmail-summary-mark-deleted)
14507         (rfc822-addresses, mail-abbrev-make-syntax-table)
14508         (mail-sendmail-delimit-header, mail-header-end):
14509         * mail/hashcash.el (message-narrow-to-headers-or-head)
14510         (message-fetch-field, message-goto-eoh)
14511         (message-narrow-to-headers):
14512         * vc.el (view-mode-exit): Declare as functions.
14514         * mail/vms-pmail.el:
14515         * vmsproc.el:
14516         * vms-patch.el: Don't byte compile these files, they don't work.
14518 2007-11-27  Glenn Morris  <rgm@gnu.org>
14520         * calc/calc-ext.el (math-read-big-rec):
14521         * calc/calc-nlfit.el (math-map-binop):
14522         * calc/calc.el (math-normalize-nonstandard): Fix declarations.
14524         * eshell/eshell.el (eshell-report-bug): Add version number of
14525         obsolescence.
14527         * emulation/viper.el, emulation/viper-util.el,
14528         emulation/viper-macs.el, emulation/viper-keym.el,
14529         emulation/viper-ex.el, emulation/viper-cmd.el:
14530         Load viper-*.el files silently.
14532         * ediff-diff.el, ediff-help.el, ediff-merg.el, ediff-mult.el,
14533         ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el, ediff.el:
14534         Load ediff-*.el files silently.
14536         * ediff.el: Load dired silently.  Don't load info, pcl-cvs when
14537         compiling.
14538         (Info-goto-node): Declare as a function.
14540         * ediff-init.el: Don't load ange-ftp when compiling.
14541         * ediff-util.el: Don't load reporter when compiling.
14543         * ediff-wind.el (ediff-display-pixel-width)
14544         (ediff-display-pixel-height):
14545         * generic-x.el (ini-generic-mode):
14546         * ps-print.el (ps-mule-encode-header-string, ps-mule-begin-page)
14547         (ps-mule-prepare-ascii-font, ps-mule-set-ascii-font)
14548         (ps-mule-initialize, ps-mule-begin-job):
14549         * calendar/cal-bahai.el (add-to-diary-list, diary-name-pattern)
14550         (mark-calendar-days-named):
14551         * calendar/cal-hebrew.el (holiday-filter-visible-calendar)
14552         (add-to-diary-list, diary-name-pattern)
14553         (mark-calendar-days-named):
14554         * calendar/cal-islam.el (add-to-diary-list, diary-name-pattern)
14555         (mark-calendar-days-named):
14556         * calendar/cal-x.el (make-fancy-diary-buffer):
14557         * calendar/holidays.el (calendar-absolute-from-julian):
14558         * calendar/todo-mode.el (calendar-current-date):
14559         * calendar/cal-menu.el (calendar-increment-month)
14560         (calendar-month-name, extract-calendar-year)
14561         (calendar-cursor-to-date, holiday-list, calendar-sunrise-sunset)
14562         (calendar-current-date, calendar-cursor-holidays)
14563         (calendar-date-string, insert-diary-entry, calendar-set-mark)
14564         (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
14565         (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
14566         (cal-tex-cursor-filofax-daily, cal-tex-cursor-filofax-2week)
14567         (cal-tex-cursor-filofax-week, cal-tex-cursor-month)
14568         (cal-tex-cursor-month-landscape, cal-tex-cursor-year)
14569         (cal-tex-cursor-filofax-year, cal-tex-cursor-year-landscape)
14570         (calendar-day-of-year-string, calendar-iso-date-string)
14571         (calendar-julian-date-string, calendar-astro-date-string)
14572         (calendar-absolute-from-gregorian, calendar-hebrew-date-string)
14573         (calendar-persian-date-string, calendar-bahai-date-string)
14574         (calendar-islamic-date-string, calendar-chinese-date-string)
14575         (calendar-coptic-date-string, calendar-ethiopic-date-string)
14576         (calendar-french-date-string, calendar-mayan-date-string)
14577         (calendar-print-chinese-date, calendar-goto-date):
14578         Declare as functions.
14580         * calendar/calendar.el (nongregorian-diary-listing-hook): Doc fix.
14581         (Info-find-emacs-command-nodes, Info-find-node): Declare as functions.
14583         * ffap.el (ffap-bug, ffap-submit-bug): Redefine as obsolete
14584         aliases for report-emacs-bug.
14585         (gnus-summary-select-article, gnus-configure-windows): Declare as
14586         functions.
14588         * pgg-parse.el (pgg-parse-24, pgg-parse-crc24-string): Declare for
14589         compiler.
14591         * pgg.el (pgg-clear-string): Declare as a function.
14592         (pgg-run-at-time-1): Wrap whole definition in (featurep 'xemacs) test.
14593         (pgg-run-at-time, pgg-cancel-timer): Move definitions before use.
14595         * emacs-lisp/check-declare.el (check-declare-locate):
14596         Handle compressed files.
14597         (check-declare-verify): Handle define-generic-mode,
14598         define-global(ized)-minor-mode, define-obsolete-function-alias.
14600 2007-11-27  Jay Belanger  <jay.p.belanger@gmail.com>
14602         * calc/calc-menu.el (calc-modes-menu): Add normal and incomplete
14603         algebraic modes.
14605         * calc/calc-aent.el (calc-refresh-evaltos, calc-execute-kbd-macro)
14606         (math-is-true, calc-explain-why, calc-alg-edit)
14607         (math-composite-inequalities, math-flatten-lands)
14608         (math-multi-subst, calcFunc-vmatches, math-simplify)
14609         (math-known-matrixp, math-parse-fortran-subscr, math-to-radians-2)
14610         (math-read-string, math-read-brackets, math-read-angle-brackets):
14611         Declare as functions.
14613         * calc/calcalg3.el (calc-fit-s-shaped-logistic-curve)
14614         (calc-fit-bell-shaped-logistic-curve)
14615         (calc-fit-hubbert-linear-curve, calc-graph-add-curve)
14616         (calc-graph-lookup, calc-graph-set-styles, math-min-list)
14617         (math-max-list): Declare as functions.
14618         (math-map-binop): New function.
14619         (calc-curve-fit): Replace `mapcar*' by `math-map-binop'.
14621         * calc/calc.el (calc-set-language, calc-edit-finish)
14622         (calc-edit-cancel, calc-do-quick-calc, calc-do-calc-eval)
14623         (calc-do-keypad, calcFunc-unixtime, math-parse-date)
14624         (math-lessp, calc-embedded-finish-command)
14625         (calc-embedded-select-buffer, calc-embedded-mode-line-change)
14626         (calc-push-list-in-macro, calc-replace-selections)
14627         (calc-record-list, calc-normalize-fancy, calc-do-handle-whys)
14628         (calc-top-selected, calc-sel-error, calc-pop-stack-in-macro)
14629         (calc-embedded-stack-change, calc-refresh-evaltos)
14630         (calc-do-refresh, calc-binary-op-fancy, calc-unary-op-fancy)
14631         (calc-delete-selection, calc-alg-digit-entry, calc-alg-entry)
14632         (calc-dots, calc-temp-minibuffer-message, math-read-radix-digit)
14633         (calc-digit-dots, math-normalize-fancy, math-normalize-nonstandard)
14634         (math-recompile-eval-rules, math-apply-rewrites, calc-record-why)
14635         (math-dimension-error, calc-incomplete-error, math-float-fancy)
14636         (math-neg-fancy, math-zerop, calc-add-fractions)
14637         (math-add-objects-fancy, math-add-symb-fancy, math-mul-zero)
14638         (calc-mul-fractions, math-mul-objects-fancy, math-mul-symb-fancy)
14639         (math-reject-arg, math-div-by-zero, math-div-zero, math-make-frac)
14640         (calc-div-fractions, math-div-objects-fancy, math-div-symb-fancy)
14641         (math-compose-expr, math-comp-width, math-composition-to-string)
14642         (math-stack-value-offset-fancy, math-format-flat-expr-fancy)
14643         (math-adjust-fraction, math-format-binary, math-format-radix)
14644         (math-group-float, math-mod, math-format-number-fancy)
14645         (math-format-bignum-fancy, math-read-number-fancy)
14646         (calc-do-grab-region, calc-do-grab-rectangle, calc-do-embedded)
14647         (calc-do-embedded-activate, math-do-defmath)
14648         (calc-load-everything): Declare as functions.
14650         * calc/calc-ext.el (math-clip, math-round, math-simplify)
14651         (math-simplify-extended, math-simplify-units, calc-set-language)
14652         (calc-flush-caches, calc-save-modes, calc-embedded-modes-change)
14653         (calc-embedded-var-change, math-mul-float, math-arctan-raw)
14654         (math-sqrt-float, math-exp-minus-1-raw, math-normalize-polar)
14655         (math-normalize-hms, math-normalize-mod, math-make-sdev)
14656         (math-make-intv, math-normalize-logical-op, math-possible-signs)
14657         (math-infinite-dir, math-calcFunc-to-var)
14658         (calc-embedded-evaluate-expr, math-known-nonzerop)
14659         (math-read-expr-level, math-read-big-rec, math-read-big-balance)
14660         (math-format-date, math-vector-is-string, math-vector-to-string)
14661         (math-format-radix-float, math-compose-expr, math-abs)
14662         (math-format-bignum-binary, math-format-bignum-octal)
14663         (math-format-bignum-hex, math-format-bignum-radix)
14664         (math-compute-max-digits): Declare as functions.
14665         (math-provably-realp): Fix typo.
14667         * calc/calc-forms.el (calendar-current-time-zone)
14668         (calendar-absolute-from-gregorian, dst-in-effect): Declare as
14669         functions.
14671         * calc/calc-help.el (Info-goto-node, Info-last): Declare as functions.
14673         * calc/calc-lang.el (math-read-factor, math-read-expr-level):
14674         Declare as functions.
14676         * calc/calc-macs.el (math-zerop, math-negp, math-looks-negp)
14677         (math-posp, math-compare, math-bignum, math-compare-bignum):
14678         Declare as functions.
14680         * calc/calc-misc.el (calc-do-keypad, calc-inv-hyp-prefix-help)
14681         (calc-inverse-prefix-help, calc-hyperbolic-prefix-help)
14682         (calc-explain-why, calc-clear-command-flag)
14683         (calc-roll-down-with-selections, calc-roll-up-with-selections)
14684         (calc-last-args, calc-is-inverse, calc-do-prefix-help)
14685         (math-objvecp, math-known-scalarp, math-vectorp, math-matrixp)
14686         (math-trunc-special, math-trunc-fancy, math-floor-special)
14687         (math-floor-fancy, math-square-matrixp, math-matrix-inv-raw)
14688         (math-known-matrixp, math-mod-fancy, math-pow-of-zero)
14689         (math-pow-zero, math-pow-fancy): Declare as functions.
14691         * calc/calc-mode.el (calc-embedded-save-original-modes):
14692         Declare as a function.
14694         * calc/calc-nlfit.el (calc-get-fit-variables, math-map-binop):
14695         Declare as functions.
14696         (math-nlfit-make-matrix, math-nlfit-find-qmax, math-nlfit-fit)
14697         (math-nlfit-fit-curve, calc-fit-hubbert-linear-curve):
14698         Replace `mapcar*' by `math-map-binop'.
14699         (math-nlfit-make-matrix): Replace `copy-list' with `copy-sequence'.
14701         * calc/calc-prog.el (edmacro-format-keys, edmacro-parse-keys)
14702         (math-read-expr-level): Declare as functions.
14704         * calc/calc-vec.el (math-read-expr-level): Declare as a function.
14706 2007-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14708         * emacs-lisp/lisp.el (end-of-defun): Restructure so that
14709         end-of-defun-function is called consistently, even for negative
14710         arguments.
14711         (end-of-defun-function): Default to forward-sexp.
14713 2007-11-26  Juanma Barranquero  <lekktu@gmail.com>
14715         * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
14717 2007-11-26  Glenn Morris  <rgm@gnu.org>
14719         * calendar/cal-menu.el (cal-menu-holidays-menu): Use :label rather
14720         than :suffix.
14722         * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
14724 2007-11-26  Simon Josefsson  <simon@josefsson.org>
14726         * net/imap.el: Move from ../gnus.
14728 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
14730         * doc-view.el (doc-view-mode-p): New function.
14732 2007-11-25  Dan Nicolaescu  <dann@ics.uci.edu>
14734         * mail/mspools.el (rmail-get-new-mail):
14735         * mail/reporter.el (mail-position-on-field, mail-text):
14736         * mail/rmail.el (mail-position-on-field, mail-text-start)
14737         (rmail-update-summary):
14738         * mail/rmailedit.el (rmail-summary-disable, rmail-summary-enable):
14739         * mail/rmailmsc.el (rmail-parse-file-inboxes, rmail-show-message):
14740         * mail/rmailout.el (rmail-update-summary):
14741         * mail/rmailsort.el (rmail-update-summary):
14742         * mail/sendmail.el (dired-move-to-filename, dired-get-filename)
14743         (dired-view-file):
14744         * mail/uce.el (mail-strip-quoted-names):
14745         * mail/undigest.el (rmail-update-summary):
14746         * mail/unrmail.el (mail-strip-quoted-names):
14747         * ediff.el (diff-latest-backup-file): Declare as functions.
14749         * obsolete/mlsupport.el (ml-previous-page): Fix typo.
14750         (kill-to-end-of-line):
14751         * obsolete/rnews.el (news-set-minor-modes):
14752         Remove non working functions.
14754 2007-11-25  Glenn Morris  <rgm@gnu.org>
14756         * eshell/esh-maint.el (top-level): Use require with NOERROR for
14757         pcomplete.  Don't mess with load-path.
14759         * eshell/eshell.el (eshell-report-bug-address): Remove.
14760         (eshell-report-bug): Redefine as an alias for report-emacs-bug.
14762 2007-11-24  Glenn Morris  <rgm@gnu.org>
14764         * calendar/appt.el: Remove leading `*' from defcustom doc-strings.
14765         (appt-disp-window): Don't require electric.
14766         Simplify minibuffer-avoidance code.
14767         (appt-select-lowest-window): Avoid minibuffer.
14769         * eshell/eshell.el: Remove leading `*' from defcustom doc-strings.
14770         (esh-mode): Require it.
14771         (esh-util): Use require rather than featurep and load.
14772         (eshell): No need to test if eshell-mode is bound; remove obsolete
14773         reference to eshell-auto.
14774         (eshell-command, eshell-command-result): Don't require esh-mode
14775         now that the file does.
14776         (top-level): Move provide statement to the end of the file.
14777         Re-order and update commentary.
14779 2007-11-24  Thien-Thi Nguyen  <ttn@gnuvola.org>
14781         * vc.el (vc-annotate-mode): Frob buffer invisibility spec.
14782         (vc-annotate-toggle-annotation-visibility): New command.
14783         (vc-annotate-mode-map): Bind "V" to it.
14784         (vc-annotate-mode-menu): Add entry for it.
14785         (vc-annotate-get-time-set-line-props): New func.
14786         (vc-annotate-display-autoscale)
14787         (vc-annotate-display-difference): Use it.
14789         * vc-git.el (vc-git-annotate-time): Handle optional field FILENAME.
14790         Also, match one space at end of annotation text, after last paren.
14792 2007-11-24  Michael Albinus  <michael.albinus@gmx.de>
14794         * ido.el (ido-file-name-all-completions-1): Check for fboundp of
14795         `tramp-completion-mode-p' as it is in Tramp 2.1.  Let-bind
14796         `tramp-completion-mode'.
14798 2007-11-24  Thien-Thi Nguyen  <ttn@gnuvola.org>
14800         * vc-git.el (vc-git-show-log-entry): New func.
14802         * vc-git.el (vc-git--call, vc-git--out-ok): New funcs.
14803         (vc-git-state): Use vc-git--call.
14804         (vc-git-registered, vc-git-working-revision)
14805         (vc-git-previous-revision, vc-git-next-revision)
14806         (vc-git--run-command-string, vc-git-symbolic-commit):
14807         Use vc-git--out-ok.
14809 2007-11-24  Glenn Morris  <rgm@gnu.org>
14811         * emacs-lisp/byte-run.el (declare-function): Doc fix.
14813 2007-11-24  Kenichi Handa  <handa@m17n.org>
14815         * international/ucs-tables.el (ucs-8859-7-alist): Update the table.
14817 2007-11-23  David Kastrup  <dak@gnu.org>
14819         * server.el (server-process-filter): Use `command-line-args-left'.
14821 2007-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14823         * nxml/subdirs.el, nxml/char-data/subdirs.el, nxml/rng-auto.el: Remove.
14825 2007-11-23  Dan Nicolaescu  <dann@ics.uci.edu>
14827         * vc.el (vc-deduce-fileset): Also look for a fileset in the parent
14828         buffer if the parent buffer is in vc-dired-mode.
14830 2007-11-23  Mark A. Hershberger  <mah@everybody.org>
14832         * nxml: Initial merge of nxml.  Kept nxml/char-name subdir for now.
14834 2007-11-23  Juri Linkov  <juri@jurta.org>
14836         * dired.el (dired-read-dir-and-switches): For C-x d, set the
14837         value for M-n to the visited file name of the current buffer.
14838         Use minibuffer-with-setup-hook to set minibuffer-default to
14839         buffer-file-name inside read-file-name.
14841         * man.el (Man-getpage-in-background): Don't disregard user option
14842         `Man-width' on non-window systems.  Remove test for `window-system'
14843         around setting envvar "COLUMNS" depending on the value of `Man-width'.
14845         * progmodes/grep.el (grep-process-setup): Set envvar "TERM" to
14846         "emacs-grep".  Set envvar "GREP_OPTIONS" to "--color=auto" instead
14847         of "--color=always".
14849 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14851         * emacs-lisp/lisp.el (beginning-of-defun-raw): Pass `arg' down to
14852         beginning-of-defun-function.
14854 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
14856         * mail/hashcash.el: Move from ../gnus.  Add hashcash payments to email.
14858 2007-11-22  Glenn Morris  <rgm@gnu.org>
14860         * emulation/cua-base.el (x-clipboard-yank): Fix declaration.
14862         * emacs-lisp/check-declare.el (check-declare-locate): New function.
14863         (check-declare-scan): Use check-declare-locate.
14864         (check-declare-verify): No longer adjust fnfile, now
14865         check-declare-locate does it.
14867         * emacs-lisp/byte-run.el (declare-function): Doc fix.
14869 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14871         * subr.el (posn-col-row): Make the `default-value' use explicit.
14873         * window.el (balance-windows): Remove unused var `counter'.
14874         (bw-balance-sub): Remove unused var `lastchild'.
14875         (split-window-vertically): Remove unused var `switch'.
14876         (recenter-top-bottom): Remove unused vars `bottom', `current', `total'.
14878         * emacs-lisp/bytecomp.el
14879         (byte-compile-file-form-custom-declare-variable): Simplify.
14881 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
14883         * cus-edit.el (custom-mode): Define with `define-derived-mode'.
14884         Set `show-trailing-whitespace' to nil.
14886         * dired.el (make-symbolic-link):
14887         * dired-aux.el (mailcap-parse-mailcaps, mailcap-parse-mimetypes)
14888         (mailcap-extension-to-mime, mailcap-mime-info, make-symbolic-link):
14889         * dired-x.el (make-symbolic-link):
14890         * frame.el (x-initialize-window-system):
14891         * menu-bar.el (x-menu-bar-open):
14892         * select.el (x-get-cut-buffer-internal, x-rotate-cut-buffers-internal)
14893         (x-store-cut-buffer-internal):
14894         * wdired.el (make-symbolic-link):
14895         * x-dnd.el (x-register-dnd-atom, x-get-atom-name)
14896         (x-send-client-message):
14897         * emulation/cua-base.el (x-clipboard-yank): Declare as functions.
14899 2007-11-22  Jan Djärv  <jan.h.d@swipnet.se>
14901         * term/x-win.el (x-gtk-map-stock): Check if FILE is a string.
14903 2007-11-22  Glenn Morris  <rgm@gnu.org>
14905         * dos-fns.el (int86):
14906         * term/mac-win.el (mac-font-panel-mode): Fix declarations.
14908         * calendar/cal-menu.el (cal-menu-holidays-menu): Fix holiday-list call.
14910         * calendar/holidays.el (holiday-list): Add autoload cookie.
14912         * emacs-lisp/check-declare.el (check-declare-scan): Expand .c
14913         files relative to src/ directory.
14914         (check-declare-verify): Handle .c files.  Warn if could not find
14915         an arglist to check.
14917         * emacs-lisp/byte-run.el (declare-function): Doc fix.
14919 2007-11-22  Dan Nicolaescu  <dann@ics.uci.edu>
14921         * replace.el (occur-mode-map): Add a major mode menu with entries
14922         for all occur operations.
14924         * international/titdic-cnv.el (dos-8+3-filename):
14925         * obsolete/fast-lock.el (msdos-long-file-names):
14926         * frame.el (msdos-mouse-p):
14927         * files.el (msdos-long-file-names, w32-long-file-name):
14928         * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
14929         (mac-resume-apple-event, mac-font-panel-mode)
14930         (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
14931         (mac-clear-font-name-table):
14932         * term/pc-win.el (msdos-remember-default-colors)
14933         (w16-set-clipboard-data, w16-get-clipboard-data):
14934         * term/w32-win.el (w32-send-sys-command, w32-select-font)
14935         (set-message-beep):
14936         * net/browse-url.el (w32-shell-execute):
14937         * w32-fns.el (set-message-beep, w32-get-clipboard-data)
14938         (w32-get-locale-info, w32-get-valid-locale-ids)
14939         (w32-set-clipboard-data):
14940         * dos-fns.el (int86, msdos-long-file-names):
14941         * dos-w32.el (default-printer-name): Declare as functions.
14943 2007-11-21  Jason Rumney  <jasonr@gnu.org>
14945         * emacs-lisp/byte-run.el (declare-function): Return nil.
14947 2007-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14949         * progmodes/sh-script.el (sh-mode): Set defun-prompt-regexp.
14951 2007-11-21  Juanma Barranquero  <lekktu@gmail.com>
14953         * w32-fns.el: Undo 2007-11-21 change by Dan Nicolaescu.
14955 2007-11-21  Glenn Morris  <rgm@gnu.org>
14957         * emacs-lisp/check-declare.el (check-declare-verify): Skip C files
14958         for now.  Handle define-minor-mode, and defalias (with no argument
14959         checking).
14961 2007-11-21  Dan Nicolaescu  <dann@ics.uci.edu>
14963         * frame.el (msdos-mouse-p):
14964         * files.el (msdos-long-file-names, w32-long-file-name):
14965         * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
14966         (mac-resume-apple-event, mac-font-panel-mode)
14967         (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
14968         (mac-clear-font-name-table):
14969         * term/pc-win.el (msdos-remember-default-colors)
14970         (w16-set-clipboard-data, w16-get-clipboard-data):
14971         * term/w32-win.el (w32-send-sys-command, w32-select-font)
14972         (set-message-beep):
14973         * net/browse-url.el (w32-shell-execute):
14974         * dos-fns.el (int86, msdos-long-file-names):
14975         * dos-w32.el (default-printer-name): Undo previous change.
14977 2007-11-21  Eli Zaretskii  <eliz@gnu.org>
14979         * international/mule-cmds.el (set-locale-environment):
14980         Set default-file-name-coding-system _after_ keyboard and terminal
14981         coding systems.  This fixes last change.
14983         * mail/rmail.el (rmail-current-subject-regexp): Allow more than
14984         one space after "Subject:".
14986 2007-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14988         * pcvs-parse.el (cvs-parse-table): Ignore errors when looking up files
14989         in order to determine if there's a conflict.
14991 2007-11-21  Richard Stallman  <rms@gnu.org>
14993         * bindings.el (esc-map): Bind C-M-l here; moved from reposition.el.
14995         * reposition.el (reposition-window):
14996         Binding C-M-l moved to bindings.el.
14998         * bindings.el (ctl-x-4-map): Bind C-x 4 a here; moved from add-log.el.
15000         * add-log.el (add-change-log-entry-other-window):
15001         Key binding C-x 4 a moved to bindings.el.
15003         * bindings.el (minibuffer-local-map): Bind C-tab here; moved
15004         from filecache.el.
15006         * filecache.el: Minibuffer map bindings moved to bindings.el.
15008 2007-11-21  Jason Rumney  <jasonr@gnu.org>
15010         * international/mule-cmds.el (set-locale-environment):
15011         Set default-file-name-coding-system from system defaults on Windows.
15013 2007-11-21  Jason Rumney  <jasonr@gnu.org>
15015         * term/w32console.el: New term init file for w32 console.
15017         * w32-fns.el (x-alternatives-map): Copy from term/x-win.el.
15018         (x-setup-function-keys): Likewise, replacing top-level key definitions.
15019         (w32-tty-standard-colors): Move to term/w32console.el.
15021         * term/w32-win.el (x-setup-function-keys): Remove.
15023         * term/tty-colors.el (tty-register-default-colors): Remove special
15024         case for w32.
15026 2007-11-21  Dan Nicolaescu  <dann@ics.uci.edu>
15028         * frame.el (msdos-mouse-p):
15029         * generic-x.el (w32-shell-name):
15030         * files.el (msdos-long-file-names, w32-long-file-name)
15031         (dired-get-filename, dired-unmark, dired-do-flagged-delete)
15032         (dos-8+3-filename, vms-read-directory, view-mode-disable):
15033         * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
15034         (mac-resume-apple-event, mac-font-panel-mode)
15035         (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
15036         (mac-clear-font-name-table):
15037         * term/pc-win.el (msdos-remember-default-colors)
15038         (w16-set-clipboard-data, w16-get-clipboard-data):
15039         * term/w32-win.el (w32-send-sys-command, w32-select-font)
15040         (set-message-beep):
15041         * w32-fns.el (set-message-beep, w32-get-clipboard-data)
15042         (w32-get-locale-info, w32-get-valid-locale-ids)
15043         (w32-set-clipboard-data):
15044         * help-fns.el (ad-get-advice-info):
15045         * font-lock.el (fast-lock-after-fontify-buffer)
15046         (fast-lock-after-unfontify-buffer, fast-lock-mode)
15047         (lazy-lock-after-fontify-buffer)
15048         (lazy-lock-after-unfontify-buffer, lazy-lock-mode):
15049         * net/browse-url.el (w32-shell-execute):
15050         * dos-fns.el (int86, msdos-long-file-names):
15051         * dos-w32.el (default-printer-name): Declare as functions.
15053 2007-11-21  Juanma Barranquero  <lekktu@gmail.com>
15055         * textmodes/paragraphs.el (forward-sentence): Doc fix.
15056         Reported by Drew Adams <drew.adams@oracle.com>.
15058 2007-11-20  Jason Rumney  <jasonr@gnu.org>
15060         * term/w32-win.el (x-setup-function-keys): Protect against
15061         multiple calls on the same terminal.
15063 2007-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
15065         * term/mac-win.el (x-setup-function-keys): Only setup
15066         local-function-key-map if it has not been setup already for the
15067         current frame.  Move the suspend-emacs processing here.
15069 2007-11-20  Juanma Barranquero  <lekktu@gmail.com>
15071         * progmodes/grep.el (xargs-program): New variable.
15072         (grep-compute-defaults): Use it.
15073         (grep-default-command): Doc fix.
15074         (grep, lgrep, rgrep): Reflow docstrings.
15076 2007-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
15078         * vc.el (vc-find-revision): Set the parent buffer.
15079         Use when instead of if.
15081         * progmodes/python.el (info-lookup-maybe-add-help):
15082         * progmodes/ps-mode.el (doc-view-minor-mode):
15083         * mail/emacsbug.el (Info-menu, Info-goto-node):
15084         * emulation/viper-keym.el (viper-ex)
15085         (viper-normalize-minor-mode-map-alist, viper-set-mode-vars-for):
15086         * emulation/viper-cmd.el (widget-type, widget-button-press)
15087         (viper-set-hooks):
15088         * emacs-lisp/tcover-unsafep.el (unsafep-function):
15089         * emacs-lisp/tcover-ses.el (ses-set-curcell, ses-update-cells)
15090         (ses-load, ses-vector-delete, ses-create-header-string)
15091         (ses-read-cell, ses-read-symbol, ses-command-hook, ses-jump):
15092         * emacs-lisp/gulp.el (mail-subject, mail-send): Declare as functions.
15094 2007-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15096         * pcvs.el (cvs-revert-if-needed): Fix copy&paste typo.
15098 2007-11-20  Glenn Morris  <rgm@gnu.org>
15100         * emacs-lisp/check-declare.el (check-declare-verify): Tweak regexp
15101         for end of function-name.  Handle define-derived-mode.
15103 2007-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
15105         * progmodes/idlw-help.el: Require browse-url unconditionally, it
15106         is available by default.
15107         (idlwave-help-browse-url-available): Change default to t.
15109         * emulation/edt.el (defgroup, defcustom): Remove definition.
15110         (eval-when-compile): Remove.
15111         (c-mark-function):
15112         * textmodes/reftex-dcr.el (bibtex-beginning-of-entry):
15113         * textmodes/fill.el (comment-search-forward)
15114         (comment-string-strip):
15115         * progmodes/prolog.el (comint-mode, comint-send-string)
15116         (comint-send-region, comint-send-eof):
15117         * progmodes/dcl-mode.el (imenu-default-create-index-function):
15118         * emulation/viper-util.el (viper-forward-Word):
15119         * emulation/vi.el (c-mark-function):
15120         * emulation/edt-vt100.el (vt100-wide-mode):
15121         * emacs-lisp/timer.el (diary-entry-time): Declare as functions.
15123 2007-11-19  Michael Albinus  <michael.albinus@gmx.de>
15125         * net/tramp.el (tramp-open-connection-setup-interactive-shell):
15126         Still some tuning in case of an echoing shell.
15127         (tramp-send-command): Connection property "remote-echo" is not
15128         persistent; cache key is the process therefore.
15130 2007-11-19  Juanma Barranquero  <lekktu@gmail.com>
15132         * replace.el (map-query-replace-regexp): Doc fix (revert part of
15133         2000-05-21T17:04:47Z!fx@gnu.org made on 2000-05-21 with no ChangeLog entry).
15135 2007-11-19  Dan Nicolaescu  <dann@ics.uci.edu>
15137         * progmodes/octave-mod.el (inferior-octave-send-list-and-digest):
15138         * play/yow.el (doctor-ret-or-read):
15139         * vc-hooks.el (vc-dired-resynch-file):
15140         * vc-hg.el (log-view-get-marked):
15141         * smerge-mode.el (ediff-cleanup-mess):
15142         * pcvs.el (vc-editable-p, vc-checkout):
15143         * pcomplete.el (comint-bol):
15144         * informat.el (texinfo-format-refill):
15145         * ido.el (tramp-tramp-file-p):
15146         * ibuffer.el (ibuffer-mark-on-buffer, ibuffer-format-qualifier)
15147         (ibuffer-generate-filter-groups, ibuffer-format-filter-group-data):
15148         * add-log.el (c-beginning-of-defun, c-end-of-defun): Declare as
15149         functions.
15151         * textmodes/ispell.el (ispell-int-char): Make it a defalias
15152         instead of fset.
15153         (ispell-message): Use with-no-warnings for sc-cite-regexp call.
15155         * ido.el (ido-file-internal): Move with-no-warnings to include the
15156         ffap-string-at-point call.
15158         * pcomplete.el (pcomplete-executables): Move defsubst before first use.
15160         * vc-hg.el (vc-hg-revision-table): Fix last change.
15162 2007-11-19  Martin Rudalics  <rudalics@gmx.at>
15164         * menu-bar.el (top-level): Deactivate clipboard-kill-region and
15165         clipboard-yank when the buffer is read-only.
15167         * cus-edit.el (custom-field-keymap): Move to other Custom mode
15168         keymaps such that it's before the definition of Custom-mode-menu.
15169         (Custom-mode-menu): Show it for custom-field-keymap too.
15171 2007-11-19  Nick Roberts  <nickrob@snap.net.nz>
15173         * progmodes/gdb-ui.el: Update commentary.
15175 2007-11-18  Dan Nicolaescu  <dann@ics.uci.edu>
15177         * net/tramp.el (tramp-terminal-type): Remove duplicated definition.
15179 2007-11-19  Glenn Morris  <rgm@gnu.org>
15181         * emacs-lisp/check-declare.el (check-declare-verify): If fnfile
15182         does not exist, try adding `.el' extension.  Also search for defsubsts.
15184         * cus-edit.el (recentf-expand-file-name):
15185         * dired.el (dired-relist-entry):
15186         * subr.el (w32-shell-dos-semantics):
15187         * emacs-lisp/bytecomp.el (compilation-forget-errors):
15188         Declare as functions.
15190 2007-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
15192         * abbrev.el (kill-all-abbrevs, insert-abbrevs)
15193         (prepare-abbrev-list-buffer): Use dolist.
15194         (clear-abbrev-table): Preserve properties.
15196 2007-11-18  Shigeru Fukaya  <shigeru.fukaya@gmail.com>  (tiny change)
15198         * textmodes/texinfmt.el (texinfo-format-printindex):
15199         Collect combined indexes using texinfo-short-index-format-cmds-alist.
15200         Reported on <bug-texinfo@gnu.org>.
15202 2007-11-18  Michael Albinus  <michael.albinus@gmx.de>
15204         * net/tramp.el (tramp-completion-reread-directory-timeout):
15205         New defcustom.
15206         (tramp-handle-file-name-all-completions): Flush directory contents
15207         from cache regularly.
15208         (tramp-set-auto-save-file-modes): Check also for `buffer-modified-p'.
15209         (tramp-open-connection-setup-interactive-shell):
15210         Call `tramp-cleanup-connection' via funcall.
15212         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Temp file is already
15213         created when copying.
15215 2007-11-17  Dan Nicolaescu  <dann@ics.uci.edu>
15217         * eshell/esh-util.el (eshell-under-xemacs-p): Remove.
15218         * eshell/esh-mode.el (eshell-mode-syntax-table, command-running-p):
15219         * eshell/esh-ext.el (eshell-external-command):
15220         * eshell/esh-cmd.el (require):
15221         * eshell/em-unix.el (eshell-plain-locate-behavior):
15222         * eshell/em-cmpl.el (eshell-cmpl-initialize):
15223         Replace eshell-under-xemacs-p with (featurep 'xemacs).
15224         * eshell/esh-mode.el (characterp, char-int): Remove unused
15225         conditional defaliases.
15227         * pcomplete.el (pcomplete-event-matches-key-specifier-p):
15228         Rename from event-matches-key-specifier-p, define unconditionally.
15229         (event-basic-type): Remove unused defalias.
15230         (pcomplete-show-completions):
15231         Use pcomplete-event-matches-key-specifier-p.
15233 2007-11-17  Eli Zaretskii  <eliz@gnu.org>
15235         * eshell/esh-module.el (eshell-load-defgroups): Don't make backups
15236         when saving esh-groups.el.
15238 2007-11-17  Martin Rudalics  <rudalics@gmx.at>
15240         * wid-edit.el (widget-default-complete):
15241         * progmodes/flymake.el (flymake-goto-file-and-line):
15242         Fix typo in (doc-)string.
15244 2007-11-17  Glenn Morris  <rgm@gnu.org>
15246         * emacs-lisp/byte-run.el (declare-function): New macro.
15247         * emacs-lisp/bytecomp.el (byte-compile-declare-function):
15248         New function, byte-hunk-handler for declare-function.
15249         (byte-compile-callargs-warn): Handle declared functions.
15251         * emacs-lisp/check-declare.el: New file.
15252         * Makefile.in (check-declare): New target.
15254         * progmodes/fortran.el (gud-find-c-expr): Declare as a function.
15256         * subr.el (process-lines): Move here from ../admin/admin.el.
15257         * emacs-lisp/authors.el (authors-process-lines): Remove.
15258         (authors): Use process-lines rather than authors-process-lines.
15260         * progmodes/compilation-perl.el, progmodes/compilation-weblint.el:
15261         Remove these files.
15263 2007-11-17  Juanma Barranquero  <lekktu@gmail.com>
15265         * emacs-lisp/backquote.el (backquote):
15266         Improve argument/docstring consistency.
15268         * emacs-lisp/ring.el (ring-size, ring-p, ring-insert)
15269         (ring-length, ring-empty-p): Use c[ad]dr.
15270         (ring-plus1): Use `1+'.
15271         (ring-minus1): Use `zerop'.
15272         (ring-remove): Use c[ad]dr.  Use `when'.
15273         (ring-copy): Use c[ad]dr.  Use `let', not `let*'.
15274         (ring-ref): Use `let', not `let*'.
15275         (ring-insert-at-beginning): Use c[ad]dr.  Doc fix.
15276         (ring-insert+extend): Use c[ad]dr.  Fix typo in docstring.
15277         (ring-member): Simplify.  Doc fix.
15278         (ring-convert-sequence-to-ring): Simplify.
15280 2007-11-17  Juri Linkov  <juri@jurta.org>
15282         * dired-aux.el (dired-create-directory): Allow creating
15283         a directory of an arbitrary depth.  Add a loop to find the topmost
15284         nonexistent parent dir `new', and call `dired-add-file' on it.
15285         Set the `PARENTS' arg of `make-directory' to t.
15287 2007-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
15289         * calc/calc-aent.el (calc-last-user-lang-parse-table): New variable.
15290         (math-build-parse-table): Get parse information from math-parse-table.
15292 2007-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
15294         * window.el (recenter-last-op): New var.
15295         (recenter-top-bottom): New command.
15296         (global-map): Bind it to C-l.
15298         * abbrev.el (abbrev--write): Fix error in transcription from C.
15300         * emulation/pc-select.el (pc-select-shifted-mark): Remove.
15301         (pc-select-ensure-mark): Set mark-active to a special value instead.
15302         Rename from ensure-mark.  Update call callers.
15303         (pc-select-maybe-deactivate-mark): Rename from maybe-deactivate-mark.
15304         Rewrite.  Update all callers.
15305         (pc-selection-mode): Remove redundant var declaration.
15307 2007-11-16  Tassilo Horn  <tassilo@member.fsf.org>
15309         * doc-view.el (doc-view-search-backward, doc-view-search):
15310         Fix assignment to free variable bug.
15312 2007-11-16  Martin Pohlack  <mp26@os.inf.tu-dresden.de>  (tiny change)
15314         * emulation/pc-select.el (pc-select-shifted-mark): New var.
15315         (ensure-mark): Set it.
15316         (maybe-deactivate-mark): New fun.
15317         Use it everywhere instead of (setq mark-active nil).
15319 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
15321         * textmodes/reftex-dcr.el (reftex-start-itimer-once):
15322         Add check for XEmacs.
15324         * calc/calc-menu.el (calc-mode-map): Pacify byte compiler.
15326         * doc-view.el (doc-view-resolution): Add missing :group.
15328 2007-11-16  Juanma Barranquero  <lekktu@gmail.com>
15330         * subr.el (make-variable-frame-local):
15331         Fix typo in obsolescence declaration.
15333 2007-11-16  Werner Lemberg  <wl@gnu.org>
15335         * files.el (set-auto-mode-1): Check second line for -*- if file
15336         starts with '\" (which is used by man pages to identify needed
15337         troff preprocessors).
15339 2007-11-16  Glenn Morris  <rgm@gnu.org>
15341         * mail/mail-extr.el (mail-extr-all-top-level-domains): Update domains.
15343 2007-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
15345         * calc/calc-lang.el (math-oper-table): Fix typo.
15346         Reduce precedence of "/" for TeX.
15348         * calc/calc-menu.el (calc-modes-menu): Add Languages submenu.
15350 2007-11-16  Juri Linkov  <juri@jurta.org>
15352         * dired-aux.el (dired-read-shell-command-default): New function.
15353         (dired-read-shell-command): Use its return value for DEFAULT arg.
15355         * replace.el (keep-lines-read-args, occur-read-primary-args):
15356         Use a list of default values for DEFAULT arg of read-from-minibuffer.
15358         * man.el (Man-heading-regexp): Add 0-9.
15359         (Man-first-heading-regexp): Remove leading space [ \t]* before NAME.
15361 2007-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
15363         * doc-view.el (doc-view-ghostscript-options): Remove resolution arg.
15364         (doc-view-resolution): New custom var.
15365         (doc-view-pdf/ps->png): Use it.
15366         (doc-view-shrink-factor): New var.
15367         (doc-view-enlarge, doc-view-shrink): New commands.
15368         (doc-view-mode-map): Use them.
15370 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
15372         * ediff-wind.el (ediff-window-setup-function):
15373         * simple.el (normal-erase-is-backspace):
15374         * eshell/em-unix.el (eshell/info):
15375         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
15376         Fix typos in docstrings.
15378         * emulation/cua-base.el (cua--keymaps-initialized):
15379         Rename from `cua--keymaps-initalized'.  Callers changed.
15380         (cua-highlight-region-shift-only): Doc fix.
15381         (cua-paste-pop): Fix typo in docstring.
15383 2007-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
15385         * emulation/cua-base.el (cua--pre-command-handler-1):
15386         Use input-decode-map instead of function-key-map.
15387         Use event-modifiers now that it works reliably.
15389         * vc.el (vc-diff-internal): Pop-to-buffer later.
15391         * subr.el (event-modifiers): Use internal-event-symbol-parse-modifiers.
15393         * pcvs.el (cvs-revert-if-needed): Ignore `unknown' files, since cvs
15394         did not touch them.
15396 2007-11-15  Jay Belanger  <jay.p.belanger@gmail.com>
15398         * calc/calc-menu.el: New file.
15399         * calc/calc.el (calc-mode): Require calc-menu.
15401 2007-11-14  Juanma Barranquero  <lekktu@gmail.com>
15403         * isearch-multi.el (isearch-buffers-next-buffer-function): Doc fix.
15405 2007-11-14  Nick Roberts  <nickrob@snap.net.nz>
15407         * progmodes/gdb-ui.el (gdb-parent-bptno-enabled): New variable.
15408         (gdb-breakpoint-regexp, gdb-mouse-toggle-breakpoint-margin)
15409         (gdb-mouse-toggle-breakpoint-fringe, gdb-delete-breakpoint)
15410         (gdb-goto-breakpoint): Generalise for breakpoints with multiple
15411         locations.
15412         (gdb-info-breakpoints-custom, gdb-assembler-custom)
15413         (gdb-toggle-breakpoint): Update for new gdb-breakpoint-regexp.
15414         (gdb-put-breakpoint-icon): Only display icon for parent breakpoint.
15416 2007-11-13  Noah Friedman  <friedman@splode.com>
15418         * calc/calc.el: Add `backward-delete-char-untabify' to the list of
15419         bindings to remap when `calc-scan-for-dels' is non-nil.
15421 2007-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15423         * emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
15424         constant forms.
15425         (byte-compile-nilconstp): New function.
15426         (byte-optimize-cond): Kill subsequent branches when a branch is
15427         know to be taken or not taken.
15428         (byte-optimize-if): Use byte-compile-nilconstp instead of hand coding.
15430 2007-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
15432         * vc.el (vc-register): Allow registering a file passed as a
15433         parameter instead of just the current buffer.
15435 2007-11-12  Michael Albinus  <michael.albinus@gmx.de>
15437         * net/tramp.el (tramp-open-connection-setup-interactive-shell):
15438         Check whether the output of "uname -sr" has been changed.
15440 2007-11-12  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15442         * progmodes/compile.el (compilation-error-regexp-alist-alist): Insert
15443         patterns from compilation-perl.el and compilation-weblint.el files.
15445 2007-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
15447         * progmodes/compilation-perl.el:
15448         * progmodes/compilation-weblint.el: Disable autoloads, they cause
15449         a bootstrap failure.
15451         * vc-cvs.el (vc-cvs-diff): If backup files exist, diff them
15452         instead of doing "cvs diff" in order to avoid accessing the repository.
15454 2007-11-12  Kevin Ryde  <user42@zip.com.au>
15456         * progmodes/compilation-perl.el:
15457         * progmodes/compilation-weblint.el: New files.
15459 2007-11-11  Juanma Barranquero  <lekktu@gmail.com>
15461         * international/iso-cvt.el (iso-translate-conventions): Doc fix.
15462         (iso-aggressive-german-trans-tab, iso-conservative-german-trans-tab)
15463         (iso-tex2iso-trans-tab, iso-gtex2iso-trans-tab): Reflow docstring.
15464         (iso-spanish, iso-german, iso-iso2tex, iso-tex2iso, iso-gtex2iso)
15465         (iso-iso2gtex, iso-iso2duden, iso-iso2sgml, iso-sgml2iso):
15466         Rewrite in active voice.
15468 2007-11-11  Tassilo Horn  <tassilo@member.fsf.org>
15470         * doc-view.el: Add comments about isearch support.
15472 2007-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
15474         * vc.el (vc-start-entry): Fix setting the in the case the function
15475         is called from vc-dired.  Use when instead of if where appropriate.
15477 2007-11-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15479         * ps-print.el (ps-do-despool): Do not force ps-lpr-switches
15480         to be a list.
15481         (ps-begin-job): Error if ps-lpr-switches is not a list.
15483 2007-11-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15485         * faces.el (face-normalize-spec): Remove function.
15486         (frame-set-background-mode): Undo last change.
15488 2007-11-10  Jason Rumney  <jasonr@gnu.org>
15490         * w32-fns.el: Sync charset names with setup-default-fontset.
15491         Append "-1" where second part missing.
15493 2007-11-10  Juri Linkov  <juri@jurta.org>
15495         * isearch.el (isearch-mode-end-hook, isearch-mode-end-hook-quit):
15496         Fix docstring.  Reported by Leo <sdl.web@gmail.com>.
15498         * custom.el (custom-note-var-changed): Remove the `interactive'
15499         spec from this new non-interactive function.
15501 2007-11-10  Tassilo Horn  <tassilo@member.fsf.org>
15503         * doc-view.el (doc-view-mode-map, doc-view-menu)
15504         (doc-view-pdf->txt-sentinel): Adapt to new search UI.
15505         (doc-view-search-backward): New function.
15506         (doc-view-search): Query new regexp if prefix arg is given, else
15507         jump to next/previous match.
15508         (doc-view-mode): Handle compressed files.
15509         (jka-compr): Required for compressed files.
15511 2007-11-10  Paul Pogonyshev  <pogonyshev@gmx.net>
15513         * replace.el (query-replace-show-replacement): New defcustom.
15514         (perform-replace): Use `match-substitute-replacement' if
15515         `query-replace-show-replacement' is non-nil.
15517 2007-11-10  David Kastrup  <dak@gnu.org>
15519         * subr.el (match-substitute-replacement): New function.
15521 2007-11-10  Carsten Dominik  <dominik@science.uva.nl>
15523         * files.el (auto-mode-alist): Select org-mode for files with the
15524         extension ".org".
15526 2007-11-10  Martin Rudalics  <rudalics@gmx.at>
15528         * help.el (help-window, help-window-point-marker): New variables.
15529         (help-window-select): New option.
15530         (with-help-window): New macro for displaying help windows.
15531         (help-window-display-message, help-window-setup-finish)
15532         (help-window-setup): New functions used for setting up help windows.
15533         (print-help-return-message): Reset help-window to nil.
15534         (view-lossage): Use with-help-window instead of
15535         with-output-to-temp-buffer and move help-window-point-marker after
15536         inserted text.
15537         (describe-bindings, describe-key, describe-mode): Use
15538         with-help-window instead of with-output-to-temp-buffer.
15540         * help-mode.el (help-mode): Set view-exit-action to bury the
15541         buffer instead of fiddling with windows.  Simplify code.
15542         (help-mode-finish): When help-window eqs t set it to the selected
15543         window and have with-help-window set up view-return-to-alist.
15544         (help-buffer): Add autoload cookie.
15546         * view.el (view-remove-frame-by-deleting): Change default value to t.
15547         Add autoload cookie.
15548         (view-exit-action, view-file, view-file-other-window)
15549         (view-file-other-frame, view-buffer, view-buffer-other-window)
15550         (view-buffer-other-frame): Rewrite doc strings.
15551         (view-return-to-alist-update): New function to remove stale entries
15552         from view-return-to-alist.
15553         (view-mode-enter): Rewrite doc string and simplify code.
15554         (view-mode-exit): Handle new case 'keep-frame.  Don't reset
15555         view-exit-action to nil.  Simplify code and rewrite doc string.
15557         * apropos.el (apropos-describe-plist):
15558         * descr-text.el (describe-char):
15559         * disp-table.el (describe-display-table):
15560         * faces.el (list-faces-display, describe-face):
15561         * facemenu.el (list-colors-display):
15562         * help-fns.el (describe-function, describe-variable)
15563         (describe-syntax, describe-categories):
15564         Use with-help-window instead of with-output-to-temp-buffer.
15566 2007-11-10  Dan Nicolaescu  <dann@ics.uci.edu>
15568         * emacs-lisp/byte-opt.el (byte-optimize-featurep):
15569         Optimize (featurep 'emacs) to t.
15571         * emacs-lisp/bytecomp.el (byte-compile-find-bound-condition):
15572         New function.
15573         (byte-compile-maybe-guarded): Use it to also look for bound
15574         symbols inside `and' forms.  Comment out non-working code that was
15575         trying to avoid warnings for XEmacs code.
15577         * vc.el (vc-diff-internal): Make the *vc-diff* buffer read only.
15579         * vc-svn.el (vc-svn-print-log, vc-svn-diff):
15580         * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-annotate-command):
15581         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff)
15582         (vc-cvs-annotate-command):
15583         * vc-arch.el (vc-arch-diff): Remove test to check if start-process
15584         is bound, it always is.
15586 2007-11-10  Jason Rumney  <jasonr@gnu.org>
15588         * term/w32-win.el (w32-initialize-window-system): Move SJIS font
15589         setup here from global scope.
15591 2007-11-10  Juanma Barranquero  <lekktu@gmail.com>
15593         * ido.el (ido-save-history): Save the history file in UTF-8, not
15594         the current filename coding system.
15596 2007-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
15598         * simple.el (interprogram-cut-function, interprogram-paste-function):
15599         Don't make them frame-local any more.
15601         * faces.el (x-create-frame-with-faces, tty-create-frame-with-faces):
15602         Don't set interprogram-(cut|paste)-function on each frame.
15604         * term/x-win.el (x-select-text, x-cut-buffer-or-selection-value):
15605         Make them work in tty frames.
15606         (interprogram-cut-function, interprogram-paste-function):
15607         Set them globally.
15609 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15611         * international/iso-cvt.el (iso-spanish, iso-german, iso-iso2tex)
15612         (iso-tex2iso, iso-gtex2iso, iso-iso2gtex, iso-iso2duden): Doc fixes.
15613         (iso-iso2duden-trans-tab): Add docstring.
15615 2007-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
15617         * abbrev.el (define-abbrev-table): Record the variable definition.
15619         * emacs-lisp/bytecomp.el (byte-compile-file-form-define-abbrev-table):
15620         New function.
15622 2007-11-09  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15624         * ps-print.el: Clean the code for checking suitable Emacs version.
15625         (ps-do-despool): If ps-lpr-switches is not a list, force it to be one.
15626         (ps-print-version): New version 6.8.1.
15628 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15630         * files.el (enable-local-variables): Doc fix.
15632 2007-11-09  Nick Roberts  <nickrob@snap.net.nz>
15634         * progmodes/gud.el (gud-gdb): Remove vestigial gdba doc and code.
15636 2007-11-09  Sven Joachim  <svenjoac@gmx.de>
15638         * dired-aux.el (dired-copy-file-recursive):
15639         Preserve directory permissions.
15641 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15643         * whitespace.el (whitespace-write-file-hook): Remove interactive spec.
15644         (whitespace-unload-function): New-style unload function.  When run,
15645         unintern `whitespace-unload-hook' and call `unload-feature' recursively
15646         to stop the old hook from messing with the unloading.
15648 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15650         * emacs-lisp/elp.el (elp-report-limit, elp-restore-all)
15651         (elp-unset-master, elp-results): Fix typos.
15652         (elp-sort-by-function, elp-use-standard-output, elp-recycle-buffers-p):
15653         Doc fixes.
15655         * msb.el (msb--many-menus): Remove variable.
15656         (msb-max-menu-items, msb--add-to-menu): Doc fixes.
15657         (msb-menu-cond, msb-item-handling-function, msb--create-function-info)
15658         (msb--toggle-menu-type): Fix typos in docstrings.
15660         * shadowfile.el (shadow-inhibit-overload, shadow-remove-from-todo)
15661         (shadow-insert-var): Doc fixes.
15662         (shadow-file-match, shadow-define-cluster, shadow-define-regexp-group):
15663         Reflow docstrings.
15664         (shadow-parse-fullname, shadow-read-files): Fix typos in docstrings.
15666 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15668         * ediff-hook.el (ediff, ediff-files, ediff-buffers, ebuffers, ediff3)
15669         (ediff-files3, ediff-buffers3, ebuffers3, erevision, ediff-revision):
15670         Fix typos in autoload docstrings.
15672 2007-11-09  Richard Stallman  <rms@gnu.org>
15674         * savehist.el (savehist-save): Obey savehist-ignored-variables.
15676 2007-11-09  Nick Roberts  <nickrob@snap.net.nz>
15678         * progmodes/gdb-ui.el (gdb-delete-out-of-scope): New option.
15679         (gdb-var-update-handler-1): Use it.
15681 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15683         * loadhist.el (unload-feature): Remove erroneous check for the
15684         FEATURE-unload-function variable; check the existence of the
15685         function (that's what the docstring says, and it makes more sense).
15687         * follow.el (follow-unload-function): Add docstring.
15688         (follow-unload-function): Remove variable.
15690         * server.el (server-unload-function): Remove variable.
15691         (server-unload-function): Unbind `server-edit' from `C-x #'.
15693         * ses.el (ses-unload-function): New function.
15695 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15697         * emacs-lisp/unsafep.el (unsafep, unsafep-function)
15698         (unsafep-progn, unsafep-let): Fix typos in docstrings.
15700         * uniquify.el (uniquify-maybe-rerationalize-w/o-cb): Define it
15701         before use to avoid a warning in packages that require uniquify.
15702         (uniquify-unload-function): New function and var.
15704 2007-11-09  Dan Nicolaescu  <dann@ics.uci.edu>
15706         * ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
15707         (ediff-has-face-support-p, ediff-BAD-INFO, ediff-check-version)
15708         (ediff-current-diff-A, ediff-current-diff-B)
15709         (ediff-current-diff-C, ediff-fine-diff-C, ediff-fine-diff-A)
15710         (ediff-fine-diff-B, ediff-fine-diff-Ancestor, ediff-even-diff-A)
15711         (ediff-even-diff-B, ediff-even-diff-C, ediff-even-diff-Ancestor)
15712         (ediff-odd-diff-A, ediff-odd-diff-B, ediff-odd-diff-C)
15713         (ediff-odd-diff-Ancestor, ediff-reset-mouse):
15714         * ediff-wind.el (ediff-narrow-control-frame-leftward-shift)
15715         (ediff-setup-windows-plain-merge)
15716         (ediff-setup-windows-plain-compare, ediff-setup-control-frame)
15717         (ediff-refresh-control-frame, ediff-get-visible-buffer-window):
15718         * ediff-util.el (ediff-setup-keymap, )
15719         (ediff-toggle-wide-display, ediff-toggle-multiframe)
15720         (ediff-toggle-use-toolbar, ediff-really-quit)
15721         (ediff-good-frame-under-mouse)
15722         (ediff-highlight-diff-in-one-buffer)
15723         (ediff-remove-flags-from-buffer, ediff-place-flags-in-buffer1)
15724         (ediff-make-bullet-proof-overlay):
15725         * ediff-mult.el (ediff-setup-meta-map, ediff-emacs-p)
15726         (ediff-set-meta-overlay):
15727         * ediff-help.el (ediff-help-region-map, ediff-set-help-overlays):
15728         * ediff.el (ediff-documentation): Replace ediff-xemacs-p and
15729         ediff-emacs-p with their former definitions.
15731         * emulation/viper-init.el (viper-xemacs-p, viper-emacs-p): Remove.
15732         (viper-has-face-support-p, viper-inactivate-input-method)
15733         (viper-activate-input-method)
15734         (viper-use-replace-region-delimiters, viper-restore-cursor-type):
15735         * emulation/viper-mous.el (viper-multiclick-timeout)
15736         (viper-surrounding-word, viper-mouse-click-insert-word)
15737         (viper-mouse-click-search-word, viper-parse-mouse-key):
15738         * emulation/viper-macs.el (viper-char-array-to-macro):
15739         * emulation/viper.el (viper-go-away, viper-set-hooks)
15740         (viper-non-hook-settings):
15741         * emulation/viper-util.el (viper-get-saved-cursor-color-in-replace-mode)
15742         (viper-get-saved-cursor-color-in-insert-mode)
15743         (viper-get-saved-cursor-color-in-emacs-mode)
15744         (viper-check-version, viper-get-visible-buffer-window)
15745         (viper-file-checked-in-p, viper-set-replace-overlay)
15746         (viper-set-replace-overlay-glyphs, viper-set-minibuffer-overlay)
15747         (viper-check-minibuffer-overlay, viper-read-key-sequence)
15748         (viper-key-to-emacs-key): Replace viper-xemacs-p and viper-emacs-p
15749         with their former definitions.
15750         (viper-eventify-list-xemacs): Only do work for XEmacs.
15751         (viper-set-unread-command-events): Only do work for Emacs.
15752         (viper-overlay-p, viper-make-overlay, viper-overlay-live-p)
15753         (viper-move-overlay, viper-overlay-start, viper-overlay-end)
15754         (viper-overlay-get, viper-overlay-put, viper-read-event)
15755         (viper-characterp, viper-int-to-char, viper-get-face)
15756         (viper-color-defined-p, viper-iconify): New defaliases replacing
15757         the old fsets.
15759         * progmodes/fortran.el (comment-region-function)
15760         (uncomment-region-function): Pacify byte compiler.
15762         * vc.el (vc-diff-internal): Remove code for an old version of gnus.
15764 2007-11-08  Michael Albinus  <michael.albinus@gmx.de>
15766         * net/tramp.el (tramp-maybe-open-connection): Use a local copy of
15767         `process-environment'.
15769 2007-11-08  David Hansen  <david.hansen@gmx.net>  (tiny change)
15771         * eshell/em-dirs.el (eshell-expand-multiple-dots): Change regexp to
15772         match dir like "a...b".
15774 2007-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15776         * smerge-mode.el (smerge-refine-subst): Pass "-d" to diff.
15778 2007-11-07  Michael Albinus  <michael.albinus@gmx.de>
15780         * net/tramp.el (tramp-handle-substitute-in-file-name):
15781         Don't expand the remote connection identification.
15782         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
15783         Set also $PS2 and $PS3 when setting $PS1.  Check for shell echoing
15784         before calling stty.
15786         * net/tramp-cache.el (tramp-cache-print)
15787         (tramp-dump-connection-properties): Fix docstring.
15788         (tramp-list-connections): Rename from `tramp-cache-list-connections'.
15790         * net/tramp-cmds.el (tramp-cleanup-connection): Apply it.
15792         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Don't expand the
15793         remote connection identification when setting connection property.
15795         * net/tramp-smb.el (tramp-smb-handle-substitute-in-file-name):
15796         "//" substitutes only in the local filename part.
15798 2007-11-07  David Hansen  <david.hansen@gmx.net>
15800         * eshell/em-glob.el (eshell-extended-glob): Sort matches.
15802 2007-11-07  Glenn Morris  <rgm@gnu.org>
15804         * emulation/tpu-mapper.el (tpu-map-key): Use unless rather than cond.
15805         Remove superfluous concats.  Move final set-buffer to
15806         non-emacs-specific code.
15808 2007-11-07  Rob Riepel  <riepel@networking.stanford.edu>
15810         * emulation/tpu-mapper.el (tpu-map-key): Remove un-needed cond branch.
15812 2007-11-07  Johan Bockgård  <bojohan@gnu.org>
15814         * eshell/esh-mode.el (eshell-output-filter):
15815         * eshell/esh-proc.el (eshell-insertion-filter, eshell-sentinel):
15816         Use `with-current-buffer'.
15818 2007-11-07  Andreas Schwab  <schwab@suse.de>
15820         * server.el (server-start): Only register cleanup after server was
15821         started.
15823 2007-11-06  Michael Albinus  <michael.albinus@gmx.de>
15825         * net/tramp.el (top): Don't autoload `tramp-cache-print'.
15827         * net/tramp-cache.el (tramp-cache-print): Move down.
15828         (tramp-cache-list-connections): New defun.
15830         * net/tramp-cmds.el (tramp-cleanup-connection): Use it.
15832 2007-11-06  Juanma Barranquero  <lekktu@gmail.com>
15834         * ido.el (ido-save-history): Write the history file in the current
15835         filename coding system, and add `coding' file-local variable.
15837 2007-11-06  Carsten Dominik  <dominik@science.uva.nl>
15839         * textmodes/org.el (org-table-formula-substitute-names):
15840         Remove forgotten temporary debugging code.
15842 2007-11-05  Michael Albinus  <michael.albinus@gmx.de>
15844         * net/tramp.el (tramp-wait-for-output): Ignore escape sequences in
15845         the prompt.
15847 2007-10-05  Chris Moore  <christopher.ian.moore@gmail.com>
15849         * wdired.el (wdired-use-dired-vertical-movement): Doc fix.
15851 2007-11-05  Simon Josefsson  <simon@josefsson.org>
15853         * net/tls.el (tls-end-of-info): Doc fix.
15855 2007-11-05  Kenichi Handa  <handa@ni.aist.go.jp>
15857         * international/utf-7.el (utf-7-imap): New coding system.
15858         (utf-7-imap-post-read-conversion): New function.
15859         (utf-7-imap-pre-write-conversion): New function.
15861 2007-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15863         * abbrev.el (abbrev--write): Fix up typo.
15865 2007-11-04  Juanma Barranquero  <lekktu@gmail.com>
15867         * abbrev.el (define-abbrev-table): Doc fix.
15869 2007-11-04  Thien-Thi Nguyen  <ttn@gnuvola.org>
15871         * info.el (Info-revert-buffer-function): New func.
15872         (Info-mode): Arrange to use it for reverting.
15873         (Info-copy-current-node-name): Add space between filename and nodename.
15875 2007-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15877         * abbrev.el (expand-abbrev): Move point back to expansion's end.
15879 2007-11-04  Glenn Morris  <rgm@gnu.org>
15881         * net/tls.el: Don't require rx when compiling.
15882         (tls-end-of-info): Rewrite without using rx.
15883         (open-tls-stream): Use with-current-buffer.
15885 2007-11-04  Riccardo Murri  <riccardo.murri@gmail.com>
15887         * net/tls.el: Require rx when compiling.
15888         (tls-end-of-info): New variable.
15889         (open-tls-stream): Keep reading input until `tls-end-of-info' is
15890         matched.
15892 2007-11-03  Sean O'Rourke  <seano@cs.ucla.edu>
15894         * register.el (append-to-register, prepend-to-register):
15895         Don't signal error on empty register; use the text, instead.
15897 2007-11-03  Michael Olson  <mwolson@gnu.org>
15899         * textmodes/remember.el (remember-buffer):
15900         Use define-obsolete-function-alias rather than defalias.
15902 2007-11-03  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
15904         * simple.el (bad-packages-alist): Anchor semantic regexp.
15906 2007-11-03  Glenn Morris  <rgm@gnu.org>
15908         * newcomment.el (comment-dwim): Call comment-insert-comment-function,
15909         if defined, for blank lines.  Doc fix.
15911         * progmodes/fortran.el (fortran-mode-map): Don't bind M-;.
15912         (fortran-mode): Set values for comment-region-function,
15913         uncomment-region-function and comment-insert-comment-function.
15914         (fortran-uncomment-region): New function.
15916         * textmodes/nroff-mode.el (nroff-mode):
15917         Set comment-insert-comment-function rather than indent-line-function.
15918         (nroff-indent-line-function): Remove.
15919         (nroff-insert-comment-function): New function.
15921 2007-11-02  Michael Kifer  <kifer@cs.stonybrook.edu>
15923         * ediff-vers.el (ediff-vc-working-revision): Add a quote.
15925 2007-11-02  Michael Kifer  <kifer@cs.stonybrook.edu>
15927         * emulation/viper-ex.el (viper-ex): Do not ignore the region.
15929         * emulation/viper-cmd.el (viper-prev-destructive-command)
15930         (viper-insert-prev-from-insertion-ring): Use ring-copy instead of
15931         copy-sequence.
15933         * ediff-util.el (ediff-make-current-diff-overlay): Do not use face-name.
15934         Got rid of ediff-copy-list.
15936         * ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer): Do not
15937         use face-name.
15938         (ediff-test-utility, ediff-diff-mandatory-option)
15939         (ediff-reset-diff-options): Remove to simplify the mandatory option
15940         handling on Windows.
15941         (ediff-set-diff-options): Add.
15942         (ediff-diff-options): Set "--binary" option as default in some cases.
15944         * ediff-vers.el (ediff-vc-internal): Use ediff-vc-revision-other-window.
15945         (ediff-vc-merge-internal): Use ediff-vc-revision-other-window and
15946         ediff-vc-working-revision.  Require vc-hooks.
15948 2007-11-02  Drake Wilson  <drake@begriffli.ch>  (tiny change)
15950         * files.el (hack-local-variables): Fix membership tests to avoid
15951         treating all variables as safe if `enable-local-variables' is
15952         set to :safe (CVE-2007-5795).
15954 2007-11-02  Glenn Morris  <rgm@gnu.org>
15956         * newcomment.el (comment-indent): Let comment-insert-comment-function,
15957         if defined, do all the work of inserting a new comment.
15959         * progmodes/etags.el (tags-table-mode): Disable undo.
15961         * simple.el (bad-packages-alist): Revert previous change.
15963 2007-11-02  Dan Nicolaescu  <dann@ics.uci.edu>
15965         * emacs-lisp/lselect.el: Move to obsolete/lselect.el.
15967         * obsolete/lselect.el: Do not warn about unknown functions.
15969 2007-11-02  Michael Olson  <mwolson@gnu.org>
15971         * textmodes/remember.el (remember-buffer): Make this an alias of
15972         remember-finalize, because Org uses it.
15974 2007-11-01  Michael Olson  <mwolson@gnu.org>
15976         * textmodes/remember.el: Improve documentation in heading.
15977         (remember-before-remember-hook): Turn into a customizable option.
15978         (remember): Document INITIAL argument.
15979         (remember-region): Remove autoload cookie.  Improve docstring to
15980         mention that it is called from the *Remember* buffer, and does not
15981         have any functional overlap with the `remember' function.
15982         (remember-finalize): Remove autoload cookie.  Rename from
15983         remember-buffer to emphasize that this does not have any
15984         functional overlap with the `remember' function.
15985         (remember-destroy): Remove autoload cookie.
15986         (remember-mode-map): Define and initialize in one step.
15987         (remember-mode): Improve docstring.
15988         (remember-annotation-functions): Default to just '(buffer-file-name),
15989         and don't try to take the default value from Planner.
15991 2007-11-01  Glenn Morris  <rgm@gnu.org>
15993         * doc-view.el (doc-view-cache-directory): Remove superfluous concat.
15995         * simple.el (bad-packages-alist): Add an entry for standalone vc-svn.
15997         * emacs-lisp/authors.el (authors-scan-change-log)
15998         (authors-scan-el): Don't enable local eval; enable only safe local
15999         variables, without querying.
16001         * mail/footnote.el (footnote-numeric-regexp)
16002         (footnote-english-upper-regexp, footnote-english-lower-regexp)
16003         (footnote-roman-lower-regexp, footnote-roman-upper-regexp):
16004         Match multi-character footnotes.
16006         * textmodes/nroff-mode.el (nroff-mode): Set indent-line-function.
16007         (nroff-indent-line-function): New function.
16008         (nroff-count-text-lines): Use nroff-forward-text-line rather than
16009         obsolete alias.
16011 2007-11-01  Ryan Yeske  <rcyeske@gmail.com>
16013         * net/rcirc.el (rcirc-last-quit-line, rcirc-last-line)
16014         (rcirc-elapsed-lines): New argument PROCESS.  Update callers.
16015         (rcirc-print): Only update the line count when not marking the
16016         line as omittable.
16017         (rcirc-log-write): Specify coding system when writing logfile.
16018         (rcirc-markup-fill): Make sure ellipsis does not cause line to wrap.
16020 2007-11-01  Dan Nicolaescu  <dann@ics.uci.edu>
16022         * printing.el (printing): Fix :version, printing.el was included
16023         for in emacs-22.1.
16024         (pr-path-style, pr-path-alist, pr-txt-name)
16025         (pr-txt-printer-alist, pr-ps-name, pr-ps-printer-alist)
16026         (pr-temp-dir, pr-ps-temp-file, pr-file-modes, pr-gv-command)
16027         (pr-gs-command, pr-gs-switches, pr-gs-device, pr-gs-resolution)
16028         (pr-print-using-ghostscript, pr-file-tumble, pr-auto-region)
16029         (pr-auto-mode, pr-mode-alist, pr-ps-utility)
16030         (pr-ps-utility-alist, pr-menu-char-height, pr-menu-char-width)
16031         (pr-setting-database, pr-visible-entry-list)
16032         (pr-delete-temp-file, pr-list-directory, pr-buffer-name)
16033         (pr-buffer-name-ignore, pr-buffer-verbose): Remove incorrect :version.
16035         * ediff-util.el (ediff-nuke-selective-display): Move definition to
16036         top level, make it dependent on the emacs flavor.
16038         * play/gamegrid.el (gamegrid-kill-timer, gamegrid-start-timer):
16039         Test for XEmacs not for itimer.
16041         * term/sun-mouse.el:
16042         * obsolete/sun-fns.el:
16043         * obsolete/sun-curs.el: Remove files.
16045         * term/sun.el (select-previous-complex-command): Remove obsolete code.
16047 2007-10-31  Tassilo Horn  <tassilo@member.fsf.org>
16049         * doc-view.el (doc-view-cache-directory): Fix bug where an integer
16050         was given to concat.
16052 2007-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
16054         * doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys
16055         used normally for goto-line.  Change `g' to revert the buffer.
16056         Add redundant `r' binding for buffer-revert.
16058         * mail/mailabbrev.el (mail-abbrevs-mode): Use define-minor-mode.
16059         (mail-abbrevs-setup): Use abbrev-expand-functions.
16060         (build-mail-abbrevs): Use with-temp-buffer.
16061         (define-mail-abbrev): Simplify.
16062         (mail-abbrev-expand-wrapper): Rename sendmail-pre-abbrev-expand-hook.
16063         Change it for use on abbrev-expand-functions.
16064         (mail-abbrev-complete-alias): Use with-syntax-table.
16066 2007-10-31  Michael Albinus  <michael.albinus@gmx.de>
16068         * net/tramp.el (tramp-handle-shell-command): Call `start-file-process'
16069         directly.  Fix bug in deleting temp file.
16071 2007-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
16073         * progmodes/python.el (python-mode-abbrev-table): Use :regexp.
16074         Merge defvar and define-abbrev-table.
16075         (def-python-skeleton): Use :case-fixed and :enable-function.
16076         (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
16077         Remove.
16078         (python-mode): Don't modify pre-abbrev-expand-hook.
16080 2007-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
16082         * ediff-util.el (ediff-file-checked-out-p)
16083         (ediff-file-checked-in-p): Only call vc-locking-user for XEmacs.
16085 2007-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
16087         * abbrev.el (abbrev-symbol): Correct let->let*.
16088         (abbrev--before-point): Only use abbrev-start-location if before point.
16090 2007-10-31  Juanma Barranquero  <lekktu@gmail.com>
16092         * strokes.el (strokes-alphabetic-lessp): Simplify.  Doc fix.
16093         (strokes-unload-hook): Remove function and variable.
16094         (strokes-unload-function): New-style unload function, adapted
16095         from `strokes-unload-hook'.
16097         * emacs-lisp/cl.el (cl-cannot-unload): Remove function.
16098         (cl-unload-hook): Remove variable.
16099         (cl-unload-function): New-style unload function, adapted
16100         from `cl-cannot-unload'.
16102         * emacs-lisp/elp.el (elp-unload-hook): Remove function and variable.
16103         (elp-unload-function): New-style unload function, adapted
16104         from `elp-unload-hook'.
16106 2007-10-31  Sean O'Rourke  <sorourke@cs.ucsd.edu>
16108         * emacs-lisp/find-func.el (find-library): Use library at
16109         point as default interactive argument.
16111 2007-10-31  Juanma Barranquero  <lekktu@gmail.com>
16113         * shadowfile.el (shadow-join): Remove.
16114         (shadow-shadows): Use `mapconcat' instead of `shadow-join'.
16115         (shadow-initialize): Use `write-file-functions', not `write-file-hooks'.
16116         (shadowfile-unload-hook): Remove function and variable.
16117         (shadowfile-unload-function): New-style unload function, adapted
16118         from `shadowfile-unload-hook'.
16120 2007-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
16122         * progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
16123         only if it is bound.
16125         * textmodes/reftex.el: Move autoloads for before all uses.
16126         (reftex-make-overlay, reftex-overlay-put, reftex-move-overlay)
16127         (reftex-delete-overlay): Move to the top level with the condition
16128         in the body.
16130         * progmodes/simula.el: Use when instead of if.
16132         * iimage.el (iimage-locate-file): Define unconditionally.
16134         * mail/mailabbrev.el (mail-abbrev-next-line):
16135         * emulation/vip.el (vip-enlarge-region, vip-line)
16136         (vip-next-line-at-bol, vip-previous-line)
16137         (vip-previous-line-at-bol, vip-find-char, vip-put-back, ex-read):
16138         Wrap with-no-warnings around uses of next-line and previous-line.
16140         * ediff.el (run-ediff-from-cvs-buffer):
16141         * ediff-vers.el (cvs-run-ediff-on-file-descriptor):
16142         Remove function not used by pcl-cvs anymore.
16143         (noninteractive, generic-sc-get-latest-rev)
16144         (ediff-generic-sc-internal, ediff-generic-sc-merge-internal):
16145         Delete support for long obsolete generic-sc.el.
16147 2007-10-31  Glenn Morris  <rgm@gnu.org>
16149         * cvs-status.el: No longer require pcvs when compiling.
16151         * doc-view.el (doc-view-conversion-refresh-interval)
16152         (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
16153         (doc-view-reset-slice): Doc fixes.
16154         (doc-view-menu): Remove deleted function doc-view-edit-doc.
16156 2007-10-31  Juanma Barranquero  <lekktu@gmail.com>
16158         * help-at-pt.el (help-at-pt-unload-hook): Remove.
16159         Timers are automatically canceled by `unload-feature'.
16161         * delsel.el (delsel-unload-hook): Remove function and variable.
16162         (delsel-unload-function): New-style unload function, adapted
16163         from `delsel-unload-hook'.
16165         * msb.el (msb-unload-hook): Remove function and variable.
16166         (msb-unload-function): New-style unload function, adapted from
16167         `msb-unload-hook'.
16169 2007-10-30  Juanma Barranquero  <lekktu@gmail.com>
16171         * desktop.el (uniquify-managed): Pacify byte compiler.
16172         (desktop-buffer-info): If the buffer name is managed by uniquify,
16173         save the base name, not the uniquified one.
16174         (desktop-create-buffer): Allow `rename-buffer' to generate a new
16175         name in case of conflict.
16177 2007-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16179         * doc-view.el: Use expand-file-name rather than concat.
16180         (doc-view-cache-directory): Add the UID so multiple users won't clash.
16181         (doc-view-current-overlay, doc-view-pending-cache-flush): New vars.
16182         (doc-view-goto-page, doc-view-insert-image, doc-view-buffer-message)
16183         (doc-view-toggle-display): Use an overlay over the whole buffer so as
16184         not to have to touch the buffer's content.
16185         (doc-view-initiate-display): New function, extracted from doc-view-mode.
16186         (doc-view-mode): Use it.  Don't mark as a special mode.
16187         Put the page numbers in the modeline.
16188         Set up the overlay.  Hide the cursor.  Run the mode hook.
16189         Use after-revert-hook rather than revert-buffer-function.
16190         (doc-view-search-internal): Fix typo.
16191         (doc-view-convert-current-doc, doc-view-insert-image): Delay the
16192         image-cache flush.
16193         (doc-view-reconvert-doc): Don't reset the whole mode.
16194         (doc-view-make-safe-dir): New function.
16195         (doc-view-current-cache-dir): Use it.
16197 2007-10-30  Jason Rumney  <jasonr@gnu.org>
16199         * time.el (display-time-world-list): Test for zoneinfo support.
16201 2007-10-30  Michael Albinus  <michael.albinus@gmx.de>
16203         * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
16205         * net/tramp-cache.el (tramp-flush-file-function): Check also
16206         `default-directory' if `buffer-file-name' does not return a
16207         string.  Added to `eshell-pre-command-hook'.
16209 2007-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16211         * doc-view.el (doc-view-current-doc): Remove.
16212         Replace all uses by buffer-file-name.
16213         (doc-view-menu): New menu.
16214         (doc-view-reconvert-doc): Don't bind inhibit-read-only and remove
16215         unused var `doc'.
16216         (doc-view-sort): Simplify.
16217         (doc-view-buffer-message): Don't change buffer-modified-p.
16218         (doc-view-mode): Change it here instead.
16219         Tighten scoping of prev-major-mode.  Don't re-insert the file's content.
16220         Don't modify the global value of revert-buffer-function.
16222         * image-mode.el (image-forward-hscroll, image-next-line, image-eol)
16223         (image-eob, image-mode, image-minor-mode, image-toggle-display-text)
16224         (image-toggle-display): Take overlays into account and don't assume
16225         point-min==1.
16227 2007-10-30  Thien-Thi Nguyen  <ttn@gnuvola.org>
16229         * vc.el (vc-annotate): Fix omission bug:
16230         Specify value for vc-sentinel-movepoint.
16232 2007-10-30  Michael Olson  <mwolson@gnu.org>
16234         * textmodes/remember.el (remember-mode-hook)
16235         (remember-handler-functions, remember-annotation-functions):
16236         Add additional items as options, including some Org functions.
16238 2007-10-30  Tassilo Horn  <tassilo@member.fsf.org>
16240         * doc-view.el: Remove cl-dependency.
16241         (doc-view-buffer-message): Mention new binding K.
16242         (doc-view-convert-current-doc): Use function d-v-current-cache-dir
16243         instead of variable.
16244         (doc-view-current-cache-dir): Better cache dir naming.
16245         (doc-view-current-display): Remove variable.
16246         (doc-view-edit-doc, doc-view-display-maybe): Remove functions.
16247         (doc-view-kill-proc): Set converter process to nil.
16248         (doc-view-minor-mode): New minor mode.
16249         (doc-view-minor-mode-map): New keymap.
16250         (doc-view-mode): Remove text/image switching code.  Use plain defun.
16251         (doc-view-mode-map): New binding K kills converter process.
16252         Remove C-c C-e binding.
16253         (doc-view-mode-text-map): Remove keymap.
16254         (doc-view-pdf/ps->png): Timer calls d-v-display instead of
16255         d-v-display-maybe.
16256         (doc-view-previous-major-mode): New variable.
16257         (doc-view-ps->pdf): Resort args to make ps2pdf happy.
16258         (doc-view-remove-if): New function.
16259         (doc-view-search-next-match, doc-view-search-previous-match): Use it.
16260         (doc-view-toggle-display): Toggle modes instead of display styles.
16261         (doc-view-reconvert-doc): Adapt to new way of doing things.
16263         * progmodes/ps-mode.el (ps-mode-map): Enable doc-view-minor-mode.
16265 2007-10-30  Glenn Morris  <rgm@gnu.org>
16267         * dirtrack.el (dirtrack-mode): Doc fix.
16269         * shell.el (shell-dirtrack-verbose, shell-mode)
16270         (shell-directory-tracker, shell-dirtrack-mode): Doc fix.
16272         * emacs-lisp/bytecomp.el (byte-compile-disable-warning)
16273         (byte-compile-enable-warning): Doc fix.
16275         * emulation/tpu-mapper.el (tpu-map-key): Use with-no-warnings to
16276         suppress byte-opt warning.
16278 2007-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
16280         * emulation/edt.el (edt-emacs19-p, edt-x-emacs19-p)
16281         (edt-gnu-emacs19-p): Remove.
16282         (edt-emacs-variant, edt-window-system): Use feature 'emacs.
16283         (edt-xserver, edt-page-backward, edt-beginning-of-line)
16284         (edt-end-of-line-forward, edt-end-of-line-backward)
16285         (edt-one-word-forward, edt-one-word-backward, edt-character)
16286         (edt-line-forward, edt-next-line, edt-previous-line, edt-top)
16287         (edt-find-forward, edt-find-backward, edt-find-next-forward)
16288         (edt-find-next-backward, edt-reset, edt-advance, edt-backup)
16289         (edt-define-key, edt-bottom-check, edt-sentence-forward)
16290         (edt-sentence-backward, edt-paragraph-forward)
16291         (edt-paragraph-backward, edt-restore-key, edt-window-top)
16292         (edt-window-bottom, edt-scroll-window-forward-line)
16293         (edt-scroll-window-backward-line, edt-line-to-bottom-of-window)
16294         (edt-line-to-top-of-window, edt-paragraph-backward)
16295         (edt-restore-key, edt-window-top, edt-window-bottom)
16296         (edt-scroll-window-forward-line)
16297         (edt-scroll-window-backward-line, edt-line-to-bottom-of-window)
16298         (edt-line-to-middle-of-window, edt-goto-percentage)
16299         (edt-display-the-time, edt-remember, edt-split-window)
16300         (edt-emulation-on, edt-emulation-off)
16301         (edt-default-emulation-setup, edt-user-emulation-setup)
16302         (edt-select-default-global-map, edt-select-user-global-map):
16303         Replace uses of edt-x-emacs19-p and edt-gnu-emacs19-p with feature
16304         tests.
16306         * textmodes/reftex-index.el (reftex-index-selection-or-word):
16307         Use feature test instead of boundp test so it can be resolved at
16308         compile time.
16310         * net/newsticker.el (replace-regexp-in-string): Only define for XEmacs.
16312 2007-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16314         * abbrev.el: Rename `count' and `system-flag' to :count and :system.
16315         Update all users.
16316         (abbrev-get, abbrev-put): Simplify.
16317         (define-abbrev): Don't store the `force' value in the :system property.
16318         (abbrev--before-point): Obey the :enable-function of the abbrev as well.
16320 2007-10-30  Michael Olson  <mwolson@gnu.org>
16322         * desktop.el (desktop-minor-mode-table): Add line for ERC.
16324         * textmodes/remember.el: New file that implements a mode for
16325         quickly jotting down things to remember.
16327         * textmodes/remember-diary.el: A backend for remember.el that
16328         implements saving notes to a Diary file.
16330 2007-10-29  Ken Manheimer  <ken.manheimer@gmail.com>
16332         * allout.el (allout-command-prefix, allout-inhibit-auto-fill):
16333         Relocate in file.
16334         (allout-doublecheck-at-and-shallower): Increase to include
16335         slightly greater depths, since yank interaction is now ok.
16336         Also, elaborate the docstring to explain the situation.
16337         (produce-allout-mode-map, allout-hotspot-key-handler): Use vconcat
16338         instead of concat, so we accommodate key sequences expressed as
16339         vectors as well as strings and lists.
16340         (allout-flag-region, allout-hide-by-annotation): Make the
16341         hidden-text overlays 'front-advance.
16342         (allout-overlay-insert-in-front-handler): Correct docstring's grammar.
16343         (allout-aberrant-container-p, allout-on-current-heading-p)
16344         (allout-e-o-prefix-p, allout-next-heading)
16345         (allout-previous-heading, allout-goto-prefix)
16346         (allout-end-of-prefix, allout-next-sibling-leap)
16347         (allout-next-visible-heading, allout-auto-fill)
16348         (allout-rebullet-heading, allout-kill-line, allout-kill-topic)
16349         (allout-yank-processing, allout-resolve-xref)
16350         (allout-current-topic-collapsed-p, allout-hide-region-body)
16351         (allout-latex-verbatim-quote-curr-line, allout-encrypt-string)
16352         (allout-encrypted-topic-p, allout-next-topic-pending-encryption)
16353         (count-trailing-whitespace-region): Preserve match data, so allout
16354         outline navigation doesn't disrupt other Emacs operations.
16355         (allout-beginning-of-line): Retreat to the beginning of the hidden
16356         text, so fields are respected (for submodes that care).
16357         (allout-end-of-line): Preserve mark activation status when jumping.
16358         (allout-open-topic): Account for opening after a child that
16359         contains a hidden trailing newline.  Preserve match data.
16360         Run allout-structure-added-hook
16361         (allout-encrypt-decrypted): Preserve match data.
16362         (allout-toggle-current-subtree-exposure): Add new interactive
16363         function for toggle subtree exposure - suggested by tassilo.
16364         (move-beginning-of-line, move-end-of-line): Don't use
16365         line-move-invisible-p, it's obsolete - substitute the code, instead.
16367 2007-10-29  Dan Nicolaescu  <dann@ics.uci.edu>
16369         * textmodes/flyspell.el (message-signature-separator):
16370         * longlines.el (message-indent-citation-function): Pacify byte
16371         compiler.
16373         * emacs-lisp/cl-loaddefs.el:
16374         * ldefs-boot.el: Regenerate.
16376         * Makefile.in (BYTE_COMPILE_EXTRA_FLAGS): New variable.
16377         (.el.elc, compile, compile-always, compile-calc)
16378         ($(lisp)/progmodes/cc-mode.elc): Use it.
16380         * ps-print.el (ps-xemacs-color-name, ps-xemacs-face-kind-p):
16381         Only do work for XEmacs.
16382         (ps-xemacs-mapper): Rename from ps-mapper, only work on XEmacs.
16383         (ps-xemacs-extent-sorter): Rename from ps-extent-sorter, only work
16384         on XEmacs.
16385         (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
16386         (ps-x-color-name, ps-x-color-specifier-p)
16387         (ps-x-copy-coding-system, ps-x-device-class)
16388         (ps-x-extent-end-position, ps-x-extent-face)
16389         (ps-x-extent-priority, ps-x-extent-start-position)
16390         (ps-x-face-font-instance, ps-x-find-coding-system)
16391         (ps-x-font-instance-properties, ps-x-make-color-instance)
16392         (ps-x-map-extents, ps-e-face-bold-p, ps-e-face-italic-p)
16393         (ps-e-next-overlay-change, ps-e-overlays-at, ps-e-overlay-get)
16394         (ps-e-overlay-end, ps-e-x-color-values, ps-e-color-values):
16395         (ps-generate-postscript-with-faces): Delete defaliases.
16396         (ps-face-foreground-name, ps-face-background-name)
16397         (ps-color-values, ps-face-bold-p, ps-face-italic-p):
16398         Move definitions to top level, make the body conditional on the Emacs
16399         flavor.  Replace uses of deleted aliases and renamed functions.
16400         (ps-generate-postscript-with-faces, ps-color-device): Replace uses
16401         of deleted aliases and renamed functions.
16403         * calc/calc.el (calc-emacs-type-lucid): Remove.
16404         (calc-digit-map, calcDigit-start, calc-read-key)
16405         (calc-clear-unread-commands):
16406         * calc/calc-ext.el (calc-user-key-map): Replace uses of
16407         calc-emacs-type-lucid with (featurep 'xemacs)
16409         * emulation/tpu-mapper.el: Replace tpu-lucid-emacs19-p with
16410         (featurep 'xemacs).
16411         (tpu-lucid-emacs19-p): Remove.
16412         (tpu-map-key): Make it a function instead of using fset.  Inline
16413         tpu-emacs-map-key and tpu-lucid-map-key.  Use featurep 'xemacs.
16414         (tpu-emacs-map-key, tpu-lucid-map-key): Remove.
16416         * ielm.el: Use featurep 'xemacs.
16418         * progmodes/cperl-mode.el (cperl-xemacs-p): Remove.
16419         (condition-case, cperl-can-font-lock, cperl-singly-quote-face)
16420         (cperl-define-key, cperl-mode-map, cperl-mode, cperl-init-faces)
16421         (cperl-write-tags, cperl-tags-hier-init, cperl-perldoc): Replace
16422         cperl-xemacs-p with (featurep 'xemacs).
16423         (font-lock-cache-position): Pacify byte compiler.
16425 2007-10-29  Drew Adams  <drew.adams@oracle.com>
16427         * faces.el (read-color): New function.
16428         (face-at-point, foreground-color-at-point)
16429         (background-color-at-point): New functions.
16431 2007-10-28  Richard Stallman  <rms@gnu.org>
16433         * net/browse-url.el (browse-url-text-xterm): Rename from
16434         browse-url-lynx-xterm and made generic.
16435         (browse-url-text-emacs): Likewise.
16436         (browse-url-text-browser): New variable.
16437         (browse-url-text-emacs-args): Rename from browse-url-lynx-emacs-args.
16438         (browse-url-text-input-field, browse-url-text-input-attempts)
16439         (browse-url-kde-program): Likewise.
16441 2007-10-29  Glenn Morris  <rgm@gnu.org>
16443         * textmodes/org-publish.el (org-publish-get-plist-from-filename):
16444         Use mapc rather than mapcar (reinstall change deleted without log
16445         entry 2007-10-22).
16447 2007-10-29  Martin Rudalics  <rudalics@gmx.at>
16449         * wdired.el (wdired-next-line, wdired-previous-line):
16450         Use next-line and previous-line wrapped in with-no-warnings.
16452 2007-10-29  Ryan Yeske  <rcyeske@gmail.com>
16454         * net/rcirc.el (rcirc-server-alist): Use keywords for parameter names.
16455         (rcirc-recent-quit-alist): New function.
16456         (rcirc): Print a better message when there is only one connected server.
16457         (rcirc-complete-nick): Do not update the nick table here.
16458         (rcirc-mode-map): Add M-o.
16459         (rcirc-current-line): Add variable.
16460         (rcirc-mode): Setup variables for line based omit.
16461         (rcirc-edit-multiline): Strip text properties.
16462         (rcirc-omit-responses): Add NICK.
16463         (rcirc-omit-threshold): Add variable.
16464         (rcirc-last-quit-line, rcirc-last-line, rcirc-elapsed-lines):
16465         Add functions.
16466         (rcirc-print): Keep track of current line.  Do not fill text if
16467         `rcirc-fill-flag' is null.  Only omit text if the last activity
16468         from the sender is more than `rcirc-omit-threshold' lines ago.
16469         (rcirc-put-nick-channel, rcirc-handler-PRIVMSG): Track line
16470         numbers instead of time.
16471         (rcirc-channel-nicks): Sort by line numbers instead of time.
16472         (rcirc-omit-mode): Add `...' when omitting text and recenter.
16473         (rcirc-handler-JOIN): Restore the joiners linestamp.
16474         (rcirc-maybe-remember-nick-quit): Add function.
16475         (rcirc-handler-QUIT): Record sender in table of recently quit nicks.
16477 2007-10-29  Juanma Barranquero  <lekktu@gmail.com>
16479         * loadhist.el (unload-feature-special-hooks):
16480         Add `delete-frame-functions' and `suspend-tty-functions'.
16482         * server.el (server-unload-function): Rename from `server-unload-hook'
16483         and adapt to new `unload-feature' functionality.  Remove hook from
16484         `kill-buffer-hook' buffer-locally.
16485         (server-unload-hook): Remove.
16486         (server-unload-function): New var; replaces `server-unload-hook'.
16488 2007-10-29  Glenn Morris  <rgm@gnu.org>
16490         * dirtrack.el (dirtrack-debug): Doc fix.
16491         (dirtrack-mode, dirtrack-debug-mode): New names for
16492         dirtrack-toggle and dirtrack-debug-toggle.  Use define-minor-mode.
16493         (dirtrack-toggle, dirtrack-debug-toggle, dirtrackp, dirtrack-debug):
16494         Make obsolete.
16495         (dirtrack-debug-message): Only print message if
16496         dirtrack-debug-mode is non-nil.  Use with-current-buffer.
16497         (dirtrack): Doc fix.  Use dirtrack-mode rather than dirtrackp.
16498         Remove dirtrack-debug checks now that dirtrack-debug-message does this.
16500 2007-10-28  Glenn Morris  <rgm@gnu.org>
16502         * emacs-lisp/bytecomp.el (byte-compile-warnings): Document `not'.
16503         (byte-compile-warnings-safe-p): Handle `not'.
16504         (byte-compile-warning-enabled-p, byte-compile-disable-warning)
16505         (byte-compile-enable-warning): New functions.
16506         (byte-compile-eval-before-compile)
16507         (byte-compile-file-form-require): Use byte-compile-disable-warning.
16508         (byte-compile-close-variables): Locally bind byte-compile-warnings,
16509         but do not modify it.
16510         (byte-compile-eval, byte-compile-obsolete)
16511         (byte-compile-warn-about-unresolved-functions)
16512         (byte-compile-file-form-defvar)
16513         (byte-compile-file-form-custom-declare-variable)
16514         (byte-compile-file-form-require)
16515         (byte-compile-file-form-defmumble, byte-compile-lambda)
16516         (byte-compile-form, byte-compile-normal-call)
16517         (byte-compile-variable-ref, byte-compile-defvar)
16518         (byte-compile-make-variable-buffer-local):
16519         Use byte-compile-warning-enabled-p.
16520         * emacs-lisp/advice.el (ad-compile-function):
16521         Use byte-compile-disable-warning.
16522         * emacs-lisp/cl.el: Move local variables to end of file, and set
16523         byte-compile-warnings to `(not cl-functions)'.
16524         * emacs-lisp/cl-compat.el: Add a local variables section, and set
16525         byte-compile-warnings to `(not cl-functions)'.
16526         * emacs-lisp/cl-macs.el: Unify local variable section, and set
16527         byte-compile-warnings to `(not cl-functions)'.
16528         (cl-do-proclaim): Use byte-compile-disable-warning and
16529         byte-compile-enable-warning.
16530         * emacs-lisp/cl-seq.el: Unify local variable section, and set
16531         byte-compile-warnings to `(not cl-functions)'.
16532         * progmodes/cc-bytecomp.el (cc-bytecomp-ignore-obsolete):
16533         Use byte-compile-disable-warning.
16535 2007-10-28  Dan Nicolaescu  <dann@ics.uci.edu>
16537         * cus-edit.el (custom-browse-insert-prefix):
16538         * emulation/edt.el (edt-x-emacs19-p): Use featurep 'xemacs.
16540 2007-10-28  Juanma Barranquero  <lekktu@gmail.com>
16542         * server.el (server-process-filter): Fix typo in docstring.
16543         (server-log): Reflow docstrings.
16544         (server-delete-client, server-kill-emacs-query-function): Doc fixes.
16545         (server-goto-line-column): Use `when'.
16547 2007-10-28  Juri Linkov  <juri@jurta.org>
16549         * isearch.el (isearch-other-meta-char): Call `isearch-edit-string'
16550         when mouse is clicked on the isearch message.
16551         (isearch-resume): Call `isearch-update' at the end.
16552         Rename argument `search' to `string' to conform to the
16553         isearch terminology.
16555 2007-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
16557         Rewrite abbrev.c in Elisp.
16558         * abbrev.el (abbrev-mode): Move custom group from cus-edit.el.
16559         (abbrev-table-get, abbrev-table-put, abbrev-get)
16560         (abbrev-put, make-abbrev-table, abbrev-table-p, clear-abbrev-table)
16561         (define-abbrev, abbrev--check-chars, define-global-abbrev)
16562         (define-mode-abbrev, abbrev--active-tables, abbrev-symbol)
16563         (abbrev-expansion, abbrev--before-point, expand-abbrev)
16564         (unexpand-abbrev, abbrev--write, abbrev--describe)
16565         (insert-abbrev-table-description, define-abbrev-table):
16566         New funs, largely transcribed from abbrev.c.
16567         (abbrev-with-wrapper-hook): New macro.
16568         (abbrev-table-name-list, global-abbrev-table)
16569         (abbrev-minor-mode-table-alist, fundamental-mode-abbrev-table)
16570         (abbrevs-changed, abbrev-all-caps, abbrev-start-location)
16571         (abbrev-start-location-buffer, last-abbrev, last-abbrev-text)
16572         (last-abbrev-location, pre-abbrev-expand-hook, abbrev-expand-function):
16573         New vars, largely transcribed from abbrev.c.
16574         * cus-edit.el (abbrev-mode): Remove.  Move to abbrev.el.
16575         * cus-start.el: Remove abbrev-all-caps and pre-abbrev-expand-hook.
16576         * loadup.el: Load "abbrev.el" before "lisp-mode.el".
16578 2007-10-27  Glenn Morris  <rgm@gnu.org>
16580         * shell.el (shell-dirtrack-verbose, shell-directory-tracker): Doc fix.
16581         (shell-dirtrack-toggle): Mark as obsolete.
16582         (dirtrack-toggle, dirtrack-mode): No longer alias to
16583         shell-dirtrack-mode.
16585 2007-10-27  Jay Belanger  <jay.p.belanger@gmail.com>
16587         * calc/calc.el (math-standard-opers): Lower the precedence
16588         of negation.
16589         * calc/calc-lang.el (math-oper-table): Lower precedence of
16590         negation for C, TeX, and eqn.
16592 2007-10-27  Dan Nicolaescu  <dann@ics.uci.edu>
16594         * progmodes/cc-defs.el: Reorder conditions to avoid warnings.
16596 2007-10-27  Juanma Barranquero  <lekktu@gmail.com>
16598         * desktop.el (desktop-load-locked-desktop, desktop-base-lock-name)
16599         (desktop-not-loaded-hook): Fix :version tags.
16601 2007-10-27  Michael Albinus  <michael.albinus@gmx.de>
16603         * net/tramp.el (tramp-wrong-passwd-regexp): Tune regexp.
16604         (tramp-get-remote-tmpdir): New defun.
16605         (tramp-make-tramp-temp-file): Use it.
16606         (tramp-local-call-process): New defun.  Replace all calls of
16607         `call-process' by this when appropriate.
16608         (tramp-handle-write-region): Replace calls of `file-attributes' by
16609         `tramp-compat-file-attributes'.
16610         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
16611         Make the first command a `tramp-send-command' call, with let-bind
16612         of `tramp-end-of-output'.
16613         (tramp-version, tramp-bug, tramp-reporter-dump-variable)
16614         (tramp-load-report-modules, tramp-append-tramp-buffers):
16615         Move to tramp-cmds.el.
16617         * net/tramp-fish.el (tramp-fish-handle-copy-file)
16618         (tramp-fish-do-copy-or-rename-file)
16619         (tramp-fish-do-copy-or-rename-file-directly):
16620         * net/tramp-smb.el (tramp-smb-handle-copy-file):
16621         Add parameter PRESERVE-UID-GID.
16623 2007-10-27  Eli Zaretskii  <eliz@gnu.org>
16625         * time.el (zoneinfo-style-world-list, legacy-style-world-list):
16626         New defcustoms.
16627         (display-time-world-list): Use them as appropriate for the current
16628         value of `system-type'.
16630 2007-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
16632         * emulation/pc-select.el (next-line-mark, next-line-nomark)
16633         (previous-line-mark, previous-line-nomark): Wrap with-no-warnings
16634         around uses of previous-line and next-line.
16636         * diff.el (diff-old-file, diff-new-file, diff-extra-args):
16637         New defvars.
16639         * textmodes/css-mode.el (comment-continue):
16640         * net/browse-url.el (url-handler-regexp):
16641         * progmodes/idlw-help.el (idlwave-system-routines):
16642         Pacify byte-compiler.
16644         * textmodes/fill.el (fill-nobreak-p): Replace obsolete alias
16645         line-move-invisible-p with its former definition: invisible-p.
16646         line-move-invisible-p was removed on 2007-08-29.
16648 2007-10-26  Juanma Barranquero  <lekktu@gmail.com>
16650         * files.el (kill-emacs-query-functions): Doc fix;
16651         `save-buffers-kill-emacs' is no longer bound to a key.
16653 2007-10-26  Richard Stallman  <rms@gnu.org>
16655         * isearch-multi.el (isearch-buffers-multi): New option.
16656         (isearch-buffers-search-fun): Test it.
16658         * progmodes/ps-mode.el (ps-mode-map): Delete C-c v binding.
16659         Put ps-run-clear on C-c C-l.
16661         * newcomment.el (comment-styles): New style indent-or-triple.
16662         (comment-style): Make that the default.
16663         (comment-add defvar): Doc fix.
16664         (comment-add): Delete arg EXTRA.
16665         (comment-region-default): Open code call to comment-add.
16666         Handle indent-or-triple style which uses `multi-char' for INDENT.
16668 2007-10-26  Juanma Barranquero  <lekktu@gmail.com>
16670         * eshell/em-unix.el (nil-blank-string): Doc fix.
16672 2007-10-26  John Wiegley  <johnw@newartisans.com>
16674         * eshell/em-unix.el (eshell/diff): Before calling the `diff'
16675         function, ensure that the third argument is turned into a nil if
16676         the string is otherwise completely empty (either no characters, or
16677         all tabs/spaces).  This fixes a bug from a user who found himself
16678         unable to customize `diff-switches' and still use Eshell's diff
16679         command.
16681 2007-10-26  Glenn Morris  <rgm@gnu.org>
16683         * emacs-lisp/bytecomp.el (byte-compile-warnings): Autoload the
16684         safe-local-variable property.
16686 2007-10-26  Gwern Branwen  <gwern0@gmail.com>  (tiny change)
16688         * net/browse-url.el (browse-url-browser-function): Delete grail.
16689         (browse-url-grail): Function and variable deleted.
16690         (browse-url-browser-function): Delete IXI Mosaic.
16691         (browse-url-default-browser): Don't try IXI Mosaic.
16692         (browse-url-iximosaic): Function deleted.
16693         (browse-url-browser-function): Delete MMM.
16694         (browse-url-default-browser): Don't try MMM.
16695         (browse-url-mmm): Function deleted.
16697 2007-10-26  Drew Adams  <drew.adams@oracle.com>
16699         * custom.el (custom-note-var-changed): New function.
16701 2007-10-25  Dan Nicolaescu  <dann@ics.uci.edu>
16703         * emulation/edt-mapper.el (edt-emacs-variant): Replace the only
16704         use with the definition.  Remove.
16706         * add-log.el (change-log-start-entry-re): New defconst.
16707         (change-log-sortable-date-at): Use it.
16708         (change-log-beginning-of-defun, change-log-end-of-defun):
16709         New functions.
16710         (change-log-mode): Use them for beginning-of-defun-function and
16711         end-of-defun-function.
16713 2007-10-25  Jonathan Yavner  <jyavner@member.fsf.org>
16715         * ses.el: Make `ses--symbolic-formulas' a safe local variable.
16716         (ses-mode-print-map): Add `c' and `t' (suggested by Gareth Rees).
16717         (ses-recalculate-cell): Deal with point being just beyond end of
16718         data area (why does this happen?)
16719         (ses-set-curcell): Ditto.
16720         (ses-column-letter): Handle columns beyond 702.  Code written by
16721         Gareth Rees.
16723 2007-10-25  Carsten Dominik  <dominik@science.uva.nl>
16725         * textmodes/org.el (org-agenda-get-restriction-and-command):
16726         Use `mapc' instead of `mapcar'.
16727         (org-agenda-list): Numeric prefix argument can specify the number
16728         of days.
16729         (remember-register, remember-buffer): Prevent byte compiler from
16730         complaining.
16731         (org-todo): Save and restore match data.
16732         (org-no-warnings): New macro.
16733         (org-columns-eval): Use `org-no-warnings'.
16735 2007-10-25  Chris Moore  <christopher.ian.moore@gmail.com>
16737         * comint.el (comint-password-prompt-regexp):
16738         Handle `[sudo] password'-style prompt.
16740 2007-10-25  Glenn Morris  <rgm@gnu.org>
16742         * custom.el (custom-declare-variable): Add :risky and :safe keywords.
16743         (defcustom): Doc fix.
16745         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re):
16746         Add `non_intrinsic'.
16747         (f90-constants-re): Add ieee modules.
16748         (f90-typedef-matcher, f90-typedec-matcher)
16749         (f90-imenu-type-matcher): New functions.
16750         (f90-font-lock-keywords-1): Give module procedures function-name face.
16751         Use `f90-typedef-matcher' for derived types.  Fix `abstract interface'.
16752         Add `use, intrinsic'.
16753         (f90-font-lock-keywords-2): Use `f90-typedec-matcher' for derived types.
16754         Move start of `enum' blocks to separate entry.
16755         (f90-start-block-re): Fix `type', `abstract interface'.
16756         (f90-imenu-generic-expression): Use `f90-imenu-type-matcher' for
16757         derived types.
16758         (f90-mode-abbrev-table): Add `abstract interface', `asynchronous',
16759         `elemental', change `enumerator'.
16760         (f90-no-block-limit): Fix `abstract interface'.
16762         * progmodes/f90.el (f90-indented-comment-re)
16763         (f90-directive-comment-re, f90-break-delimiters):
16764         * progmodes/fortran.el (fortran-comment-line-start-skip)
16765         (fortran-directive-re):
16766         * textmodes/conf-mode.el (conf-space-keywords): Mark these regexps
16767         as safe if they are strings.
16769 2007-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
16771         * startup.el (window-system): Remove.  Don't make it frame-local.
16773 2007-10-24  Richard Stallman  <rms@gnu.org>
16775         * savehist.el (savehist-save): Omit unreadable elements.
16777         * loadhist.el (unload-function-defs-list): Rename from
16778         unload-function-features-list.
16779         (unload-feature-special-hooks, unload-feature): Doc fixes.
16781         * indent.el (indent-to-left-margin): If point's in the indentation,
16782         move to the end of the indentation.
16784         * cus-edit.el (customize-changed-options): Make arg optional.
16786 2007-10-24  Juanma Barranquero  <lekktu@gmail.com>
16788         * bs.el (bs-select, bs-select-other-window): Fix typos in docstrings.
16790 2007-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
16792         * textmodes/org-publish.el (org-publish-attachment): Re-install
16793         accidentally deleted change.
16795 2007-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16797         * term/iris-ansi.el (iris-function-map): Move init into declaration.
16799 2007-10-24  Juanma Barranquero  <lekktu@gmail.com>
16801         * buff-menu.el (Buffer-menu-sort-column): Doc fix.
16802         (Buffer-menu-mode-map): Initialize in the declaration.
16803         (Buffer-menu-mode): Define with `define-derived-mode'.
16805 2007-10-24  Carsten Dominik  <dominik@science.uva.nl>
16807         * textmodes/org.el (org-version): Change to 5.13e.
16808         (org-agenda-file-regexp): Fix typo in docstring.
16809         (org-add-planning-info): Fix bug in parenthesis settings.
16810         (org-scan-tags): Catch the case of indirect buffers with no filename.
16811         (org-fast-tag-selection, org-export-as-ascii, org-export-as-html):
16812         Re-install switch to mapc, had been removed by accident.
16813         (org-columns-map): New binding `C-c C-o'.
16814         (org-columns-menu): Change menu text and added new entry.
16815         (org-columns-eval): Document the use of `next-line'.
16816         (org-columns-open-link): New function.
16817         (org-columns-follow-link): Remove function.
16818         (org-open-link-from-string): New function.
16819         (org-read-date-get-relative): Fix typo in docstring.
16820         (org-read-date-get-relative): Leading +/- is not optional.
16821         (org-agenda-get-restriction-and-command): Always resize window on
16822         first loop cycle.
16823         (org-agenda-open-link): Make sure the link abbreviations are
16824         present in the agenda buffer.
16825         (org-agenda-copy-local-variable): New function.
16827 2007-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16829         * vc.el (vc-update-changelog-rcs2log): Remove incorrect `backend' arg.
16831 2007-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16833         * simple.el (reindent-then-newline-and-indent): Use a `move after
16834         insert' kind of marker in the save-excursion.
16836 2007-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16838         * textmodes/css-mode.el: Require CL.
16839         (comment-continue): Declare.
16841         * subr.el (make-variable-frame-localizable): Remove.
16842         (make-variable-frame-local): Mark obsolete.
16844 2007-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16846         * textmodes/tex-mode.el (tex-uptodate-p): Don't signal an error if one
16847         of the subdirs is unreadable.
16849 2007-10-23  Michael Albinus  <michael.albinus@gmx.de>
16851         * net/tramp.el (tramp-set-file-uid-gid): Protect `call-process'
16852         when we are local.
16854 2007-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16856         * progmodes/python.el (python-current-defun): Remove left-over
16857         assignment to `start'.
16859 2007-10-23  Juanma Barranquero  <lekktu@gmail.com>
16861         * ibuf-ext.el (ibuffer-auto-update-changed): Use `dolist' rather
16862         than `mapcar'; return value is not used.
16864 2007-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
16866         * progmodes/gud.el (gdb-source-window, gud-tooltip-mode)
16867         (hl-line-mode, hl-line-sticky-flag): Pacify byte compiler.
16869 2007-10-23  Juanma Barranquero  <lekktu@gmail.com>
16871         * ibuf-ext.el (ibuffer-switch-to-saved-filters)
16872         (ibuffer-switch-to-saved-filter-groups): Doc fixes.
16874 2007-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
16876         * term/xterm.el (terminal-init-xterm): Experiment with a longer timeout.
16878 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16880         * emacs-lisp/advice.el (ad-make-advised-docstring):
16881         Add ad-advice-info text property to doc string.
16883 2007-10-23  Glenn Morris  <rgm@gnu.org>
16885         * progmodes/f90.el (f90-do-indent, f90-if-indent)
16886         (f90-type-indent, f90-program-indent, f90-associate-indent)
16887         (f90-continuation-indent, f90-comment-region)
16888         (f90-beginning-ampersand, f90-smart-end)
16889         (f90-break-before-delimiters, f90-auto-keyword-case)
16890         (f90-leave-line-no, f90-mode-hook):
16891         Give an appropriate safe-local-variable property.
16893         * progmodes/fortran.el (fortran-tab-mode-default)
16894         (fortran-tab-mode-string, fortran-do-indent, fortran-if-indent)
16895         (fortran-structure-indent, fortran-continuation-indent)
16896         (fortran-comment-indent, fortran-comment-line-extra-indent)
16897         (fortran-comment-line-start)
16898         (fortran-minimum-statement-indent-fixed)
16899         (fortran-minimum-statement-indent-tab)
16900         (fortran-comment-indent-char, fortran-line-number-indent)
16901         (fortran-check-all-num-for-matching-do)
16902         (fortran-blink-matching-if, fortran-continuation-string)
16903         (fortran-comment-region, fortran-electric-line-number)
16904         (fortran-column-ruler-fixed, fortran-column-ruler-tab)
16905         (fortran-analyze-depth, fortran-break-before-delimiters):
16906         Give an appropriate safe-local-variable property.
16908 2007-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
16910         * printing.el: Move variable definitions before use.
16911         (pr-menu-char-width, pr-menu-char-height): Pacify byte compiler.
16913 2007-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16915         * emulation/tpu-edt.el (tpu-edt-old-global-values): New var.
16916         (tpu-edt-off): Use it.
16917         (tpu-edt-on): Set it.  Make sure the tpu-global-map is not already on
16918         the global-map before adding it to global-map.
16920         * menu-bar.el (global-buffers-menu-map): New var.
16921         (global-map, menu-bar-update-buffers): Use it.
16922         * msb.el (msb-menu-bar-update-buffers): Use it.
16923         (msb-sort-by-directory, msb--choose-menu, msb--mode-menu-cond)
16924         (msb--most-recently-used-menu, msb--create-buffer-menu-2):
16925         Use with-current-buffer.
16927 2007-10-22  Juri Linkov  <juri@jurta.org>
16929         * isearch-multi.el: New file.
16931         * isearch.el (isearch-search-string): After finding the next
16932         occurrence switch to buffer isearch-buffers-current-buffer when
16933         isearch-buffers-next-buffer-function is non-nil and
16934         isearch-buffers-current-buffer is live.
16936         * add-log.el (change-log-mode): Make and set buffer-local variable
16937         isearch-buffers-next-buffer-function to change-log-next-buffer.
16938         Call isearch-buffers-minor-mode.
16939         (change-log-next-buffer): New function.
16941 2007-10-22  Bastien Guerry  <Bastien.Guerry@ens.fr>
16943         * textmodes/org-export-latex.el (org-export-latex-protect-string):
16944         Renaming of `org-latex-protect'.
16945         (org-export-latex-emphasis-alist): By default, don't protect
16946         any emphasis formatter from further conversion.
16947         (org-export-latex-tables): Honor column grouping for tables.
16948         (org-export-latex-title-command): New option.
16949         (org-export-latex-treat-backslash-char): Use \textbackslash{} to
16950         export backslash character.
16952 2007-10-22  Carsten Dominik  <dominik@science.uva.nl>
16954         * textmodes/org.el (org-read-date-get-relative): New function.
16955         (org-agenda-file-regexp): New variable.
16956         (org-agenda-files): Allow directories in the variable.
16957         (org-agenda-get-restriction-and-command): New function.
16958         (org-agenda): Use `org-agenda-get-restriction-and-command'.
16959         (org-todo-blocker-hook, org-todo-trigger-hook): New hooks.
16960         (org-entry-is-todo-p, org-entry-is-done-p, org-get-todo-state):
16961         New functions.
16962         (org-entry-add-to-multivalued-property)
16963         (org-entry-remove-from-multivalued-property)
16964         (org-entry-member-in-multivalued-property): New functions.
16965         (org-remember-apply-template): Catch C-g and make sure window
16966         configuration is restored.
16967         (org-agenda-open-link): Make it work with several links in the line.
16968         (org-drawers, org-set-regexps-and-options)
16969         (org-get-current-options): Add support for a DRAWERS in-buffer option.
16970         (org-agenda-window-frame-fractions): New option.
16971         (org-fit-agenda-window): Use `org-agenda-window-frame-fractions'.
16972         (org-columns-cleanup-item, org-find-entry-with-id)
16973         (org-insert-columns-dblock, org-listtable-to-string)
16974         (org-dblock-write:columnview, org-columns-capture-view)
16975         (org-edit-headline): New functions.
16976         (org-agenda-to-appt): Require calendar.
16977         (org-entry-get-with-inheritance): Widen for search.
16978         (org-columns-display-here): Don't mark buffer as modified when
16979         adding space characters to accomodate column overlays.
16980         (org-export-as-html): Better formatting of tags in the toc.
16981         (org-columns-display-here): Make the ITEM column as compact as possible.
16982         (org-remember-templates): Customization interface improved.
16983         (org-export-with-property-drawer): Variable removed.
16984         (org-export-with-drawers): New option.
16985         (org-complex-heading-regexp): New variable.
16986         (org-sort-entries): Rewrite using `sort-subr'.
16987         (org-set-property): More appropriate completion during interactive use.
16988         (org-sort-entries): Allow sorting by property.
16989         (org-additional-option-like-keywords): Add more values.
16990         (org-sort-entries-or-items): Rename from `org-sort-entries'.
16992 2007-10-22  Carsten Dominik  <dominik@science.uva.nl>
16994         * textmodes/org.el (org-get-date-from-calendar): New function.
16995         (org-at-timestamp-p, org-timestamp-change)
16996         (org-remember-templates): First element of each entry is now a
16997         name for the template.
16998         (org-store-log-note): Check for `org-note-abort'.
16999         (org-kill-note-or-show-branches): New command.
17000         (org-fontify-priorities): New option.
17001         (org-fontify-priorities): New function.
17002         (org-cut-subtree, org-copy-subtree): New argument N to
17003         act on N sequential subtrees.
17004         (org-paste-subtree): Fix the level at which a tree is pasted.
17005         (org-fit-agenda-window): Limitations on window size removed.
17006         (org-agenda-find-same-or-today-or-agenda): Rename from
17007         `org-agenda-find-today-or-agenda'.
17008         (org-scheduled-past-days): New option.
17009         (org-agenda-scheduled-leaders)
17010         (org-agenda-deadline-leaders): New options.
17011         (org-agenda-get-deadlines): Use `org-agenda-deadline-leaders'.
17012         (org-agenda-get-scheduled): Use `org-agenda-scheduled-leaders'.
17013         (org-export-with-tags, org-export-plist-vars)
17014         (org-infile-export-plist): New "tags" option.
17015         (org-use-property-inheritance): New option.
17016         (org-cached-entry-get): Use `org-use-property-inheritance'.
17017         (org-remember-apply-template): Fix typo.
17019 2007-10-22  Michael Albinus  <michael.albinus@gmx.de>
17021         * net/tramp.el (tramp-find-shell)
17022         (tramp-open-connection-setup-interactive-shell): Improve sending
17023         initial commands.
17024         (tramp-action-terminal): Send debug message.
17025         (tramp-wait-for-shell-prompt, tramp-send-command-internal): Remove.
17026         (tramp-barf-if-no-shell-prompt): Insert code of
17027         `tramp-wait-for-shell-prompt'.
17029 2007-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
17031         * term/AT386.el (terminal-init-AT386): Use input-decode-map.
17033         * term/vt200.el (terminal-init-vt200):
17034         * term/vt201.el (terminal-init-vt201):
17035         * term/vt220.el (terminal-init-vt220):
17036         * term/vt240.el (terminal-init-vt240):
17037         * term/vt300.el (terminal-init-vt300):
17038         * term/vt320.el (terminal-init-vt320):
17039         * term/vt400.el (terminal-init-vt400):
17040         * term/vt420.el (terminal-init-vt420): Use input-decode-map.
17042         * term/wyse50.el (wyse50-terminal-map): New var.
17043         (terminal-init-wyse50): Use it and input-decode-map.
17044         (enable-arrow-keys): Emasculate.
17046         * term/tvi970.el (tvi970-terminal-map): New var.
17047         (terminal-init-tvi970): Use it and input-decode-map.
17048         (tvi970-keypad-numeric): Remove.
17049         (tvi970-set-keypad-mode): Use a terminal-parameter rather than var.
17051         * term/sun.el (sun-raw-prefix): Fill as part of declaration.
17052         (terminal-init-sun): Use it and input-decode-map.
17054         * term/news.el (terminal-init-news):
17055         * term/lk201.el (terminal-init-lk201):
17056         * term/iris-ansi.el (terminal-init-iris-ansi): Use input-decode-map.
17058 2007-10-22  Sean O'Rourke  <sorourke@cs.ucsd.edu>
17060         * complete.el (PC-expand-many-files): Remove.
17061         (PC-do-completion): Call file-expand-wildcards instead of
17062         PC-expand-many-files.
17064         * net/tramp.el (tramp-handle-expand-many-files): Remove.
17065         (PC-expand-many-files): Remove advice.
17067 2007-10-22  Glenn Morris  <rgm@gnu.org>
17069         * progmodes/f90.el: Remove leading "*" from defcustom doc-strings.
17070         Add some support for Fortran 2003 syntax:
17071         (f90-type-indent): Now also applies to `enum'.
17072         (f90-associate-indent): New user option.
17073         (f90-keywords-re, f90-keywords-level-3-re, f90-procedures-re):
17074         Add some F2003 keywords.
17075         (f90-constants-re): New constant.
17076         (f90-font-lock-keywords-1): Add `associate' blocks, and `abstract
17077         Interface'.
17078         (f90-font-lock-keywords-2): Add `enumerator', `generic', `procedure',
17079         `class'.  Arguments for `type'/`class' may have spaces.  Add a new
17080         element for functions with specified types.  Add `end enum' and
17081         `select type'.  Add `implicit enumerator' and `procedure'.
17082         Add `class default' and `type is', `class is'.  Fix `go to' regexp.
17083         (f90-font-lock-keywords-3): Add `asynchronous' attribute.
17084         (f90-font-lock-keywords-4): Add `f90-constants-re'.
17085         (f90-blocks-re): Add `enum' and `associate'.
17086         (f90-else-like-re): Add `class is', `type is', and `class default'.
17087         (f90-end-type-re): Add `enum'.
17088         (f90-end-associate-re, f90-typeis-re): New constants.
17089         (f90-end-block-re): Add `enum' and `associate'.  Change from
17090         optional whitespace to end-of-word, to avoid `enumerator'.
17091         (f90-start-block-re): Add `select type', `abstract interface', and
17092         `enum'.  Avoid `type is', and `type (sometype)'.
17093         (f90-mode-abbrev-table): Add `enumerator', `protected', and `volatile'.
17094         (f90-mode): Doc fix.
17095         (f90-looking-at-select-case): Doc fix.  Add `select type'.
17096         (f90-looking-at-associate): New function.
17097         (f90-looking-at-type-like): Avoid `type is' and `type (sometype)'.
17098         Add `enum' and `abstract interface'.
17099         (f90-no-block-limit): Add `select type' and `abstract interface'.
17100         (f90-get-correct-indent, f90-calculate-indent)
17101         (f90-end-of-block, f90-beginning-of-block, f90-next-block)
17102         (f90-indent-region, f90-match-end): Handle `associate' blocks.
17104 2007-10-22  Martin Rudalics  <rudalics@gmx.at>
17106         * progmodes/fortran.el (fortran-mode-map, fortran-window-create):
17107         Use window-full-width-p.
17109 2007-10-22  Dan Nicolaescu  <dann@ics.uci.edu>
17111         * mail/vms-pmail.el (insert-signature): Don't use end-of-buffer.
17113         * tooltip.el: Use featurep 'xemacs.
17115         * printing.el: Move variable definitions before use, no code change.
17117 2007-10-22  Juri Linkov  <juri@jurta.org>
17119         * simple.el (goto-history-element): Allow minibuffer-default to be
17120         a list of default values accessible by typing M-n in the minibuffer.
17122         * dired-x.el (dired-guess-shell-command): Put all guesses to the
17123         minibuffer default value list instead of pushing them temporarily
17124         to the history list.
17126 2007-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
17128         * hexl.el (hexl-menu): New major mode menu.
17130 2007-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
17132         * emacs-lisp/byte-opt.el (byte-optimize-featurep): Fix paren typo.
17134 2007-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
17136         * w32-fns.el (w32-quote-process-args):
17137         * dos-w32.el (print-region-function, lpr-headers-switches)
17138         (ps-print-region-function): Pacify byte-compiler.
17140         * emulation/edt-mapper.el (function-key-map):
17141         (edt-map-key): Make it a function instead of using fset.
17142         Inline edt-gnu-map-key and edt-lucid-map-key.  Use featurep 'xemacs.
17143         (edt-gnu-map-key, edt-lucid-map-key): Remove.
17144         (edt-x-emacs-p): Remove.
17145         (edt-emacs-variant, edt-window-system, edt-xserver):
17146         Use featurep 'xemacs.
17148         * net/eudc.el: Use (featurep 'xemacs) instead of the string test.
17149         Replace eudc-xemacs-p with its definition.
17150         (eudc-xemacs-p, eudc-emacs-p, eudc-xemacs-mule-p)
17151         (eudc-emacs-mule-p): Remove.
17152         (eudc-install-menu, eudc-mode): Replace eudc-emacs-p and
17153         eudc-xemacs-p with feature tests.
17155         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-mail-keymap)
17156         (eudc-bob-url-keymap, eudc-bob-sound-keymap)
17157         (eudc-bob-generic-keymap, eudc-bob-popup-menu)
17158         (eudc-bob-toggle-inline-display):
17159         * net/eudc-hotlist.el (eudc-hotlist-emacs-menu):
17160         Replace eudc-emacs-p and eudc-xemacs-p with feature tests.
17162         * net/eudcb-ph.el (eudc-ph-open-session):
17163         Replace eudc-xemacs-mule-p with its former definition.
17165         * progmodes/octave-mod.el (octave-xemacs-p): Remove.
17166         (octave-abbrev-start): Replace octave-xemacs-p with (featurep 'xemacs).
17168         * progmodes/vera-mode.el (vera-xemacs): Remove.
17169         (vera-mode-syntax-table): Replace vera-xemacs with (featurep 'xemacs).
17171         * progmodes/vhdl-mode.el (vhdl-xemacs): Remove.
17172         (vhdl-doc-mode, vhdl-doc-variable, vhdl-compile-init)
17173         (vhdl-speedbar-initialize, vhdl-ps-print-init)
17174         (vhdl-forward-comment, vhdl-mode-map-init, vhdl-show-messages)
17175         (vhdl-emacs-22, vhdl-emacs-21): Replace vhdl-xemacs
17176         with (featurep 'xemacs).
17178         * progmodes/antlr-mode.el (cond-emacs-xemacs-macfn, defunx)
17179         (save-buffer-state-x):
17180         * obsolete/fast-lock.el (fast-lock-verbose):
17181         * emulation/viper-init.el (viper-xemacs-p)
17182         (viper-cond-compile-for-xemacs-or-emacs):
17183         * emacs-lisp/checkdoc.el (checkdoc-minor-mode-map):
17184         * ps-print.el (case-fold-search):
17185         * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs):
17186         * calculator.el (calculator-help): Use featurep 'xemacs.
17188         * progmodes/prolog.el: Undo previous change.
17189         (comint-prompt-regexp, comint-process-echoes): Pacify byte-compiler.
17191         * progmodes/dcl-mode.el:
17192         * play/yow.el:
17193         * calendar/todo-mode.el:
17194         * calendar/cal-hebrew.el:
17195         * vc-hg.el: Undo previous change.
17197         * vms-patch.el: Likewise.
17198         (print-region-function): Pacify byte-compiler.
17200 2007-10-21  Michael Albinus  <michael.albinus@gmx.de>
17202         * files.el (backup-buffer-copy): Call `copy-file' with non-nil
17203         preserve-uid-gid.
17205         * net/ange-ftp.el (ange-ftp-copy-file): Add PRESERVE-UID-GID for
17206         compatibility.  It is not used, though.
17208         * net/tramp.el (top): Put load of all tramp-* files into a dolist.
17209         Require tramp-cmds.el.
17210         (tramp-make-tramp-temp-file): We can get rid of DONT-CREATE.
17211         (tramp-handle-file-name-all-completions): Expand DIRECTORY.
17212         (tramp-do-copy-or-rename-file-directly): Make more rigid checks.
17213         (tramp-do-copy-or-rename-file-out-of-band)
17214         (tramp-maybe-open-connection): Use `make-temp-name'.  This is
17215         possible, because we don't need to create the temporary file, but
17216         we need a prefix for ssh, which has its own temporary file handling.
17217         (tramp-handle-delete-directory): Add "-f" to rmdir.
17218         (tramp-handle-dired-recursive-delete-directory): Call "rm -rf".
17219         (tramp-handle-insert-file-contents): Don't raise a tramp-error but
17220         a signal, in order to give the callee a chance to suppress.
17221         (tramp-handle-write-region): Set owner also in case of short
17222         track.  Don't use compatibility calls for `write-region' anymore.
17223         (tramp-clear-passwd): Add parameter VEC.  Adapt all callees.
17224         (tramp-append-tramp-buffers): Apply `tramp-list-tramp-buffers'.
17226         * net/tramp-cmds.el: New file.
17228         * net/tramp-gw.el (tramp-gw-basic-authentication): Apply VEC to
17229         `tramp-clear-passwd'.
17231         * net/trampver.el: Update release number.
17233 2007-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
17235         * progmodes/gud.el (gud-target-name): Move definition before use.
17237         * progmodes/dcl-mode.el: Require imenu at compile time.
17239         * progmodes/cc-engine.el (c-maybe-stale-found-type):
17240         Pacify byte-compiler.
17242         * obsolete/fast-lock.el: Use featurep test instead of string-match.
17244         * eshell/esh-mode.el (eshell-handle-ansi-color):
17245         Require ansi-color at compile time too.
17247         * eshell/em-unix.el (eshell/info): Require info at compile time too.
17249         * w32-fns.el: Require w32-vars.
17251         * diff-mode.el (diff-refine-hunk): Require smerge-mode at compile
17252         time too.
17254 2007-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
17256         * double.el ([ignore]): Use `ignore'.
17257         (double-setup): Inline into double-mode.
17258         (double-mode): Use define-minor-mode.
17260 2007-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
17262         * textmodes/reftex.el: Move require easymenu before first use.
17263         (reftex-info): Require info at compile too.
17265         * textmodes/org-publish.el (org-publish-org-to-html)
17266         (org-publish-org-to): Require org at compile time too.
17267         (org-publish-attachment): Require at compile time too.
17269         * term/tty-colors.el (w32-tty-standard-colors):
17270         Pacify byte-compiler.
17272         * term/pc-win.el (frame-creation-function-alist): Add to this
17273         instead of setting frame-creation-function.
17275         * play/blackbox.el (bb-up, bb-down): Use forward-line.
17277         * net/rcirc.el (rcirc-markup-text-functions): Move definition earlier.
17279         * calendar/todo-mode.el: Require calendar at compile time.
17281         * calendar/cal-hebrew.el: Require holidays at compile time.
17283         * w32-vars.el: Provide w32-vars.
17285         * term/w32-win.el: Require w32-vars.
17286         (w32-color-map): Pacify byte-compiler.
17288         * loadup.el: Load w32-vars before term/w32-win.
17290 2007-10-20  Juri Linkov  <juri@jurta.org>
17292         * textmodes/fill.el (fill-paragraph): When the region is active,
17293         don't try other `or' branches regardless of the value returned by
17294         fill-region; just return t.
17296 2007-10-20  Eric S. Raymond  <esr@snark.thyrsus.com>
17298         * vc.el (vc-do-command): Condition out a misleading message when
17299         running asynchronously.
17300         (vc-deduce-fileset): New argument enables using an unregistered
17301         visited file as a singleton fileset if nothing else is available.
17302         (vc-next-action): Restore file-registering behavior.
17304 2007-10-20  Jay Belanger  <jay.p.belanger@gmail.com>
17306         * calc/README: Add recent news.
17308 2007-10-20  Dan Nicolaescu  <dann@ics.uci.edu>
17310         * term/x-win.el (x-gtk-stock-map, icon-map-list)
17311         (x-gtk-map-stock): Delete duplicated definitions from merge.
17313         * progmodes/compile.el (compilation-skip-to-next-location)
17314         (compilation-skip-threshold, compilation-skip-visited):
17315         Move definitions earlier.
17317         * play/decipher.el (decipher-keypress):
17318         * play/zone.el (zone-fall-through-ws):
17319         * play/landmark.el (lm-move-down, lm-move-up):
17320         * play/handwrite.el (handwrite):
17321         * mail/mspools.el (mspools-visit-spool):
17322         * wdired.el (wdired-next-line, wdired-previous-line):
17323         * tar-mode.el (tar-subfile-save-buffer):
17324         * scroll-lock.el (scroll-lock-next-line)
17325         (scroll-lock-previous-line):
17326         * image-dired.el (image-dired-next-line)
17327         (image-dired-previous-line):
17328         * ediff-help.el (ediff-help-message-line-length):
17329         Use forward-line.
17331         * smerge-mode.el (smerge-auto-refine):
17332         * diff-mode.el (diff-auto-refine): Add :group.
17334         * play/yow.el: Require doctor at compile time.
17336         * vmsproc.el: Provide vmsproc.
17337         (command-send-input): Use forward-line.
17339         * vms-patch.el: Require ps-print and vmsproc at compile time.
17341         * vc-mtn.el (log-view-message-re, log-view-file-re)
17342         (log-view-font-lock-keywords): Pacify byte-compiler.
17344         * vc-hg.el: Require log-view at compile time.
17346 2007-10-20  Eric S. Raymond  <esr@snark.thyrsus.com>
17348         * log-view.el (log-view-diff): Adapt log-view-diff for new VC API.
17350 2007-10-20  Glenn Morris  <rgm@gnu.org>
17352         * progmodes/f90.el (f90-font-lock-keywords-2)
17353         (f90-looking-at-type-like): Fix regexp typos.
17355 2007-10-19  Juanma Barranquero  <lekktu@gmail.com>
17357         * bs.el (bs--track-window-changes): Don't refresh the whole list.
17358         (bs-mode): Set mode-class property to special.
17360 2007-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17362         * diff-mode.el (diff-auto-refine): New var.
17363         (diff-hunk): Use it.
17364         (diff-ignore-whitespace-hunk): Rename diff-refine-ignore-spaces-hunk.
17365         (diff-refine-change): Rename from diff-fine-change.  Change it.
17366         (diff-refine-preproc): Rename from diff-fine-highlight-preproc.
17367         (diff-refine-hunk): Rename from diff-fine-highlight.
17369 2007-10-20  John Paul Wallington  <jpw@pobox.com>
17371         * help-fns.el (describe-variable-custom-version-info): New function
17372         to return variable's version or package version note.
17373         (describe-variable): Use it, display result.
17375 2007-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17377         * smerge-mode.el (smerge-auto-refine): New var.
17378         (smerge-next, smerge-prev): Use it.
17379         (smerge-batch-resolve): Ad-hoc trick for Arch's .rej files.
17381         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
17382         Add `body' arg.  Cleanup the check-narrow-maybe/re-narrow-maybe mess.
17384         * vc-bzr.el (vc-bzr-diff-tree):
17385         * vc-git.el (vc-git-diff-tree):
17386         * vc-hg.el (vc-hg-diff-tree):
17387         * vc-mcvs.el (vc-mcvs-diff-tree):
17388         * vc-mtn.el (vc-mtn-diff-tree):
17389         * vc-svn.el (vc-svn-diff-tree): Remove.
17391         * vc-mtn.el (vc-mtn-revision-completion-table):
17392         * vc-cvs.el (vc-cvs-revision-completion-table):
17393         * vc-arch.el (vc-arch-revision-completion-table):
17394         * vc-hg.el (vc-hg-revision-completion-table, vc-hg-revision-table):
17395         * vc-git.el (vc-git-revision-completion-table, vc-git-revision-table):
17396         Make it work when the arg is a list of files.
17398 2007-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17400         * vc.el: Remove `diff-tree' operation, now subsumed by `diff'.
17401         Also `revision-completion-table' now takes a list of files.
17402         (vc-deduce-fileset): Remove unused var `regexp'.
17403         Only obey allow-directory-wildcard in dired buffers.
17404         (vc-default-diff-tree): Remove.
17405         (vc-diff-added-files): New var.
17406         (vc-diff-internal): Use it.  Remove arg `backend'.  Update callers.
17407         (vc-version-diff): Revert from `vc-history-diff' to the original name.
17408         Remove the `backend' arg.
17409         (vc-contains-version-controlled-file): Remove.
17410         (vc-diff): Bring it closer to the version in Emacs-22.
17411         (vc-revert): Fix typo in let-binding.
17412         (vc-default-unregister): Remove.
17413         (vc-dired-buffers-for-dir): Remove N^2 behavior.
17415 2007-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
17417         * textmodes/two-column.el (2C-split, 2C-merge):
17418         * textmodes/bib-mode.el (bib-find-key, mark-bib):
17419         * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
17420         * progmodes/etags.el (find-tag-in-order, etags-tags-apropos)
17421         * progmodes/ada-xref.el (ada-get-all-references):
17422         * obsolete/mlsupport.el (ml-next-line, ml-previous-line):
17423         * emulation/vi.el (vi-previous-line-first-nonwhite)
17424         (vi-effective-range, vi-put-before):
17425         * emulation/edt.el (edt-next-line, edt-previous-line)
17426         (edt-paragraph-forward): Use forward-line.
17428         * progmodes/etags.el (tags-apropos): Require apropos at compile
17429         time too.
17431         * progmodes/prolog.el: Require comint when compiling.
17432         (inferior-prolog-flavor): Move defvar before use.
17434 2007-10-19  Richard Stallman  <rms@gnu.org>
17436         * font-core.el (turn-on-font-lock-if-desired):
17437         Rename from `turn-on-font-lock-if-enabled'.
17438         Fully obey `font-lock-global-modes'.
17440 2007-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17442         * diff-mode.el (diff-fine-highlight-preproc): Stick to minimal changes
17443         which will not affect the behavior of things like forward-word.
17444         (diff-fine-highlight): Preserve point.
17446         * doc-view.el (doc-view-mode-map): Use remapping.
17447         Don't rebind C-v, M-v to their default value.
17448         Don't bind mouse-4 and mouse-5: it's mwheel.el's job.
17450         * smerge-mode.el: Add word-granularity refinement.
17451         (smerge-refine-forward-function, smerge-refine-ignore-whitespace)
17452         (smerge-refine-weight-hack): New vars.
17453         (smerge-refine-forward): New fun.
17454         (smerge-refine-chopup-region, smerge-refine-highlight-change): Use them.
17455         (smerge-refine-subst): Use them as well.  Preserve point.
17457 2007-10-19  Juanma Barranquero  <lekktu@gmail.com>
17459         * follow.el (follow-unload-function): New function.
17461         * loadhist.el (unload-function-features-list):
17462         Rename from `unload-hook-features-list'.
17463         (unload-hook-features-list): Add as obsolete alias.
17464         (unload-feature): Use `unload-function-features-list'
17465         and new FEATURE-unload-function.
17467 2007-10-19  Glenn Morris  <rgm@gnu.org>
17469         * bindings.el (mouse-minor-mode-menu)
17470         (minor-mode-menu-from-indicator): Move to mouse.el.
17471         * mouse.el (mouse-minor-mode-menu, minor-mode-menu-from-indicator):
17472         Move here from bindings.el.
17474 2007-10-19  Richard Stallman  <rms@gnu.org>
17476         * help-fns.el (describe-function-1): Don't use the advice origname
17477         if it has no function definition.
17479 2007-10-18  Johan Bockgård  <bojohan@gnu.org>
17481         * net/tramp.el (tramp-rfn-eshadow-update-overlay): Save excursion.
17482         Use `save-restriction' rather than `widen'.
17484 2007-10-18  Richard Stallman  <rms@gnu.org>
17486         * time.el (display-time-world-time-format): Display day # not month #.
17488 2007-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
17490         * files.el (auto-mode-alist): Don't use doc-view for PS and EPS.
17492         * doc-view.el: Remove version keyword.
17493         (doc-view-ghostscript-program, doc-view-dvipdfm-program)
17494         (doc-view-ps2pdf-program): Use executable-find.  Simplify custom type.
17495         (doc-view-ghostscript-options): Improve custom type.
17496         (doc-view-cache-directory, doc-view-conversion-buffer)
17497         (doc-view-conversion-refresh-interval): Simplify custom type.
17499 2007-10-18  Tassilo Horn  <tassilo@member.fsf.org>
17501         * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
17502         (doc-view-pdf/ps->png-sentinel, doc-view-pdf/ps->png)
17503         (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
17504         (doc-view-ps->pdf-sentinel, doc-view-ps->pdf):
17505         Remove superfluous messages.
17506         (doc-view-mode-map): Use the image-mode scrolling commands.
17507         Don't rebind C-x k.
17509 2007-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
17511         * doc-view.el (doc-view-ghostscript-options, doc-view-ps->pdf):
17512         Add comment about "-dSAFER".
17514 2007-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
17516         * term/xterm.el: Don't require xt-mouse.
17517         (terminal-init-xterm): Run terminal-init-xterm-hook rather than
17518         calling turn-on-xterm-mouse-tracking-on-terminal directly.
17520         * xt-mouse.el: Don't change the global function-key-map anny more.
17521         (xterm-mouse-mode): Use terminal-init-xterm-hook.
17522         Don't use after-make-frame-functions now that term/xterm.el calls
17523         us directly.
17524         (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
17525         Use turn-*-xterm-mouse-tracking-on-terminal.  Only once per terminal.
17526         (turn-on-xterm-mouse-tracking-on-terminal): Make param optional.
17527         Setup input-decode-map and remember that xterm-mouse-mode was
17528         enabled in this terminal.
17529         (turn-off-xterm-mouse-tracking-on-terminal): Only disable on those
17530         terminals where it has been enabled.
17532         * faces.el (tty-create-frame-with-faces): Make sure not only
17533         tty-run-terminal-initialization but also set-locale-environment
17534         are run only once per terminal.
17535         (tty-run-terminal-initialization): Don't check if the terminal was
17536         already initted.
17538         * international/encoded-kb.el (encoded-kbd-setup-display): Be careful
17539         not to remove keymaps that just happen to inherit from one of ours.
17540         When setting up our keymap, make sure it won't be accidentally
17541         modified by someone else.
17543 2007-10-18  Thien-Thi Nguyen  <ttn@gnuvola.org>
17545         * textmodes/artist.el (artist-previous-line, artist-next-line):
17546         * dired.el (dired-next-line, dired-previous-line):
17547         * progmodes/delphi.el (delphi-newline):
17548         * textmodes/org.el (org-columns-eval):
17549         Use forward-line.
17551         * emerge.el (emerge-setup): Use insert-buffer-substring.
17552         (emerge-prepare-error-list, emerge-setup-with-ancestor): Likewise.
17554 2007-10-18  Juanma Barranquero  <lekktu@gmail.com>
17556         * textmodes/fill.el (fill-individual-paragraphs): Doc fix.
17557         (adaptive-fill-function): Doc fix.  Remove * from docstring.
17559 2007-10-18  Tom Horsley  <tom.horsley@att.net>
17561         * simple.el (interprogram-paste-function): Doc fix.
17562         (current-kill): Accept list of strings as well
17563         as single string from `interprogram-paste-function'.
17565 2007-10-18  Glenn Morris  <rgm@gnu.org>
17567         * ibuf-ext.el (ibuffer-saved-filter-groups): Doc fix.
17569 2007-10-18  Drew Adams  <drew.adams@oracle.com>
17571         * bindings.el (mode-line-minor-mode-keymap):
17572         Add mouse-minor-mode-menu on mouse-1.
17573         (mode-line-modes): Add mouse-1 to help-echo text.
17574         (mouse-minor-mode-menu, minor-mode-menu-from-indicator):
17575         New functions.
17576         (mode-line-minor-mode-help): Doc fix.
17578 2007-10-17  Juri Linkov  <juri@jurta.org>
17580         * textmodes/fill.el (fill-paragraph-or-region): Remove function
17581         at the request of RMS.
17582         (fill-paragraph): Change `arg' to optional `justify'.  Add interactive
17583         arg `region'.  Fix docstring.  At the first `or' branch add call to
17584         `fill-region' if it the region is active in transient-mark-mode.
17586         * bindings.el (esc-map): Bind M-q to fill-paragraph
17587         instead of fill-paragraph-or-region.
17589         * tutorial.el (tutorial--default-keys): Replace fill-paragraph-or-region
17590         with fill-paragraph.
17592         * textmodes/ispell.el (ispell-word): Add interactive arg `region'.
17593         Fix docstring.
17595         * indent.el (indent-for-tab-command): Change interactive spec from
17596         "P" to "p".  Add check for interactive arg before indenting the
17597         active region.
17599         * files.el (auto-mode-alist): Add \\. before PDF/PS/DVI extensions.
17600         Regroup.
17602 2007-10-17  Juanma Barranquero  <lekktu@gmail.com>
17604         * emacs-lisp/find-func.el: Don't require loadhist.
17606         * loadhist.el (feature-symbols, file-provides, file-requires)
17607         (file-set-intersect, file-dependents): Simplify.
17608         (unload-feature-special-hooks): Update list of special hooks.
17610 2007-10-17  Tassilo Horn  <tassilo@member.fsf.org>
17612         * bindings.el (completion-ignored-extensions): Remove pdf and dvi
17613         extensions since they can be viewed with doc-view.
17615         * files.el (auto-mode-alist): Make doc-view-mode the default mode
17616         for pdf, ps and dvi files.
17618         * doc-view.el: Make doc-view-mode the standard mode for viewing
17619         pdf, [e]ps and dvi files and add binding C-c C-c to toggle between
17620         text and image display.  Add binding C-c C-e to switch to an
17621         editing mode.
17622         (doc-view-ghostscript-options, doc-view-ps->pdf): Add "-dSAFER" to
17623         avoid security problems when rendering files from untrusted sources.
17625 2007-10-17  Aaron Hawley  <aaronh@garden.org>
17627         * tutorial.el (tutorial--save-tutorial): Display message when tutorial
17628         position is not saved.
17630 2007-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
17632         * doc-view.el: Mention xpdf.  Fix spelling of Ghostscript.
17633         (doc-view-ghostscript-options): Fix typo in doc string.
17635 2007-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17637         * progmodes/compile.el (compilation-next-error-function): Fix timestamp
17638         handling, so compilation-fake-loc works again.
17640         * server.el (server-select-display): Nop if we do not support m-f-o-d.
17641         (server-process-filter): Revert last change.
17643         * vc.el (vc-diff-sentinel, vc-diff-internal): Revert some change in the
17644         behavior unrelated to filesets.
17646 2007-10-17  Chong Yidong  <cyd@stupidchicken.com>
17648         * longlines.el (longlines-wrap-follows-window-size): Integer value
17649         specifies wrapping margin.
17650         (longlines-mode, longlines-window-change-function):
17651         Set window-specific wrapping margin based on the above.
17653 2007-10-17  John Wiegley  <johnw@newartisans.com>
17655         * eshell/esh-cmd.el (eshell-complex-commands): Add "ls".
17657 2007-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
17659         * server.el (server-process-filter): Only set display if X11 is
17660         supported.
17662 2007-10-17  Glenn Morris  <rgm@gnu.org>
17664         * progmodes/cc-menus.el (cc-imenu-c++-generic-expression):
17665         Tweak regexp to avoid stack overflow.
17667 2007-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17669         * simple.el (reindent-then-newline-and-indent): Don't assume that
17670         indent-according-to-mode preserves point.
17672 2007-10-16  Juanma Barranquero  <lekktu@gmail.com>
17674         * bs.el (bs--make-header-match-string, bs-show-in-buffer)
17675         (bs--nth-wrapper): Simplify.
17676         (bs-select, bs--insert-one-entry): Simplify.  Use `when'.
17677         (bs-buffer-list): Simplify.  Use `when'.  Use `string-match-p'.
17678         (bs-sort-buffer-interns-are-last): Use `string-match-p'.
17679         (bs-attributes-list, bs-max-window-height, bs-must-always-show-regexp)
17680         (bs-maximal-buffer-name-column, bs-minimal-buffer-name-column)
17681         (bs-configurations, bs-default-configuration)
17682         (bs-alternative-configuration, bs-cycle-configuration-name)
17683         (bs-string-show-always, bs-string-show-never, bs-string-current)
17684         (bs-string-current-marked, bs-string-marked, bs-string-show-normally)
17685         (bs-sort-functions, bs-default-sort-name): Remove * in docstrings.
17686         (bs--redisplay, bs--goto-current-buffer, bs--current-buffer, bs-delete)
17687         (bs-apply-sort-faces, bs-next-config-aux): Use `when'.
17688         (bs--window-config-coming-from): Revert 2006-11-09 change.
17689         (bs--restore-window-config): Keep the selected frame.
17690         (bs--track-window-changes, bs--remove-hooks): New functions.
17691         (bs-mode): Use `define-derived-mode'.  Set hook to track window changes.
17692         (bs--create-header): Remove.
17693         (bs--create-header-line): New function, based on `bs--create-header'.
17694         (bs--show-header): Use `bs--create-header-line'.
17695         (bs--show-with-configuration): Revert 2006-11-09 change.
17696         Don't reuse window unless it is visible on the selected frame.
17697         Restore window configuration (possibly in a different frame)
17698         before creating any window.
17700 2007-10-16  Glenn Morris  <rgm@gnu.org>
17702         * simple.el (blink-matching-open): Don't report false errors with
17703         the `$' syntax class.
17705 2007-10-16  Richard Stallman  <rms@gnu.org>
17707         * emacs-lisp/advice.el (ad-get-advice-info): Change to a function.
17708         (ad-get-advice-info-macro): New macro, like old ad-get-advice-info.
17709         (ad-is-advised, ad-get-advice-info-field)
17710         (ad-set-advice-info-field): Use ad-get-advice-info-macro.
17712 2007-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
17714         * vc-hooks.el (vc-workfile-version): Compatibility alias.
17715         (vc-default-working-revision): Compatibility for backends.
17717 2007-10-15  Juanma Barranquero  <lekktu@gmail.com>
17719         * filesets.el (filesets-alist-get): Use `let' rather than `let*'.
17720         (filesets-ormap, filesets-sort-case-sensitive-flag)
17721         (filesets-remake-shortcut, filesets-ingroup-collect-files):
17722         Fix typos in docstrings.
17723         (filesets-conditional-sort, filesets-find-or-display-file)
17724         (filesets-data-get-name, filesets-data-get-data)
17725         (filesets-data-set, filesets-cmd-query-replace-getargs)
17726         (filesets-ingroup-collect): Doc fixes.
17728 2007-10-15  Sam Steingold  <sds@gnu.org>
17730         * mail/sendmail.el (sendmail-error-reporting-interactive)
17731         (sendmail-error-reporting-non-interactive): New variables for
17732         sendmail error reporting options to simplify support for imperfect
17733         sendmail emulators.
17734         (sendmail-send-it): Use them instead of list literals.
17736 2007-10-15  Juanma Barranquero  <lekktu@gmail.com>
17738         * help-fns.el: Revert previous change; it creates a
17739         dependency loop between advice.el and help-fns.el.
17741 2007-10-15  Juanma Barranquero  <lekktu@gmail.com>
17743         * help-fns.el: Require advice when compiling.
17745 2007-10-14  Drew Adams  <drew.adams@oracle.com>
17747         * emacs-lisp/ring.el (ring-convert-sequence-to-ring)
17748         (ring-insert+extend, ring-remove+insert+extend, ring-member)
17749         (ring-next, ring-previous): New functions.
17751 2007-10-14  Richard Stallman  <rms@gnu.org>
17753         * emacs-lisp/advice.el (documentation): Advice deleted.
17754         Doc for advised functions is now handled at C level.
17755         (ad-stop-advice, ad-start-advice): Don't enable or disable
17756         advice for `documentation'.
17757         (ad-advised-definition-docstring-regexp): Var deleted.
17758         (ad-make-advised-definition-docstring): Store orig name
17759         as text property of string.
17760         (ad-advised-definition-p): Check for text property of docstring.
17762         * help-fns.el (describe-function-1): Find source of advised functions.
17764 2007-10-14  Juri Linkov  <juri@jurta.org>
17766         * faces.el (describe-face): Allow handling a string as the face name.
17768         * textmodes/ispell.el (ispell-word): Call `ispell-region' on the
17769         active region in transient-mark-mode.
17770         (ispell-region): Change messages displayed at the start and end of
17771         the spell-checking to be the same.
17773         * startup.el (fancy-startup-tail): Say exactly what does the button
17774         dismiss ("Dismiss this startup screen").  Use text "Never show
17775         it again" for the checkbox after this button.
17776         (fancy-startup-screen, fancy-about-screen): Put point before the
17777         first link, so the user can quickly select links with the keyboard.
17778         (normal-mouse-startup-screen): Add more useful text describing how
17779         to follow a link.
17781 2007-10-14  Glenn Morris  <rgm@gnu.org>
17783         * progmodes/etags.el (select-tags-table): Disable undo in the
17784         `*Tags Table List*' buffer.
17786 2007-10-13  Eli Zaretskii  <eliz@gnu.org>
17788         * dired.el (dired-warn-writable): New face.
17789         (dired-warn-writable-face): New variable.
17790         (dired-font-lock-keywords): Use dired-warn-writable-face, instead
17791         of dired-warning-face, for group- and world-writable files.
17793 2007-10-13  Richard Stallman  <rms@gnu.org>
17795         * files.el (directory-abbrev-alist): Doc fix.
17797 2007-10-13  Jari Aalto  <jari.aalto@cante.net>
17799         * comint.el (comint-password-prompt-regexp): Add 'LDAP'.
17801 2007-10-12  Martin Rudalics  <rudalics@gmx.at>
17803         * frame.el (set-frame-configuration): Assign name parameter only
17804         if it has been set explicitly before.
17806 2007-10-11  Tom Tromey  <tromey@redhat.com>
17808         * progmodes/gdb-ui.el (gdb-info-stack-custom): Ensure current
17809         frame is visible.
17811 2007-10-10  Richard Stallman  <rms@gnu.org>
17813         * emacs-lisp/debug.el (debugger-setup-buffer): Disable undo
17814         in *Backtrace*.
17816         * faces.el (face-font-selection-order): Doc fix.
17818         * loadhist.el (unload-feature): Doc fix.
17820 2007-10-13  Glenn Morris  <rgm@gnu.org>
17822         * progmodes/octave-mod.el (octave-looking-at-kw): Add doc string.
17823         (octave-re-search-forward-kw, octave-re-search-backward-kw):
17824         Add doc string, and an explicit COUNT argument.
17825         (octave-scan-blocks, octave-beginning-of-defun): Explicitly pass
17826         `inc' to search functions.
17828         * faces.el (face-spec-set): When FRAME is nil, set the default for
17829         new frames (restores pre-2007-09-17 behavior).  Doc fix.
17831 2007-10-13  John W. Eaton  <jwe@octave.org>
17833         * progmodes/octave-mod.el (octave-looking-at-kw)
17834         (octave-re-search-forward-kw, octave-re-search-backward-kw):
17835         New functions.
17836         (octave-in-defun-p, calculate-octave-indent)
17837         (octave-blink-matching-block-open, octave-beginning-of-defun)
17838         (octave-auto-fill): Use octave-looking-at-kw instead of looking-at,
17839         to search for regexps that contain case-sensitive keywords.
17840         (octave-beginning-of-defun): Likewise, for octave-re-search-backward-kw.
17841         (octave-scan-blocks): Likewise, for octave-re-search-forward-kw.
17843 2007-10-13  Dan Nicolaescu  <dann@ics.uci.edu>
17845         * frame.el (select-frame-set-input-focus): Fix typo "max" -> "mac".
17846         Do not use a single clause cond.
17848         * cus-start.el (all): Use test that does not match the X11 version
17849         for mac.
17851 2007-10-13  Markus Gritsch  <m.gritsch@gmail.com>  (tiny change)
17853         * progmodes/ebrowse.el (ebrowse-tree-mode): Disable undo in the
17854         BROWSE buffer.
17856 2007-10-13  Dan Nicolaescu  <dann@ics.uci.edu>
17858         * cus-start.el (all): Undo previous change.
17860 2007-10-13  Glenn Morris  <rgm@gnu.org>
17862         * woman.el (woman0-rename): Fix paren typo.
17864         * mail/feedmail.el (feedmail-run-the-queue)
17865         (feedmail-look-at-queue-directory):
17866         * mail/reporter.el (reporter-dump-state):
17867         * net/eudc-hotlist.el (eudc-edit-hotlist):
17868         * net/eudc.el (eudc-display-records)
17869         (eudc-filter-duplicate-attributes)
17870         (eudc-distribute-field-on-records, eudc-query-form, eudc-process-form):
17871         * net/eudcb-bbdb.el (eudc-bbdb-filter-non-matching-record)
17872         (eudc-bbdb-query-internal):
17873         * net/eudcb-ldap.el (eudc-ldap-simple-query-internal):
17874         * net/socks.el (socks-build-auth-list):
17875         * progmodes/cc-cmds.el (top level):
17876         * progmodes/cc-styles.el (c-make-styles-buffer-local, c-set-style):
17877         * progmodes/cperl-mode.el (top level, cperl-imenu-addback)
17878         (cperl-write-tags, cperl-tags-treeify):
17879         * progmodes/ebnf-yac.el (ebnf-yac-token-table):
17880         * progmodes/ebnf2ps.el (ebnf-map-name, ebnf-dimensions):
17881         * progmodes/idlw-shell.el (idlwave-shell-filter-bp, top level):
17882         * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
17883         (idlwave-toolbar-remove-everywhere):
17884         * progmodes/idlwave.el (idlwave-indent-line)
17885         (idlwave-sintern-keyword-list, idlwave-scan-user-lib-files)
17886         (idlwave-write-paths, idlwave-all-method-classes)
17887         (idlwave-all-method-keyword-classes, idlwave-entry-keywords)
17888         (idlwave-fix-keywords, idlwave-display-calling-sequence)
17889         (idlwave-complete-in-buffer):
17890         * textmodes/org.el (org-export-as-html, org-export-as-ascii)
17891         (org-fast-tag-selection):
17892         * textmodes/reftex-sel.el (reftex-select-item): Use mapc rather
17893         than mapcar.
17895 2007-10-13  Dan Nicolaescu  <dann@ics.uci.edu>
17897         * diff-mode.el (diff-fine-change): Add :group.
17899 2007-10-12  Dan Nicolaescu  <dann@ics.uci.edu>
17901         * cus-start.el (all): Use the same test as the 22.2 branch.
17903 2007-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
17905         * diff-mode.el (diff-current-defun): Force recomputation of
17906         change-log-default-name.
17908 2007-10-12  Chong Yidong  <cyd@stupidchicken.com>
17910         * startup.el (fancy-startup-screen): Remove an unnecessary newline
17911         and some leftover logic regarding dedicated frames.  If showing
17912         concise startup screen, fit window to buffer.
17913         (command-line-1): If we will be using the splash screen, use
17914         find-file instead of find-file-other-window to find additional files.
17915         Comment out unused code for coping with the old sit-for behavior.
17917 2007-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
17919         * term/xterm.el (xterm-function-map, xterm-alternatives-map): Use the
17920         `meta' modifier consistently, rather than using sometimes meta
17921         sometimes alt.
17923 2007-10-12  Martin Rudalics  <rudalics@gmx.at>
17925         * window.el (handle-select-window): Revert part of 2007-10-08
17926         change setting the input focus.
17928 2007-10-12  Glenn Morris  <rgm@gnu.org>
17930         * startup.el (command-line): Do not read abbrev file in batch mode.
17932         * emacs-lisp/byte-opt.el (top level):
17933         * mail/rmail.el (rmail-list-to-menu):
17934         * obsolete/hilit19.el (hilit-mode):
17935         * progmodes/cc-mode.el (c-postprocess-file-styles)
17936         (c-submit-bug-report):
17937         * textmodes/org-publish.el (org-publish-get-plist-from-filename):
17938         * textmodes/reftex.el (reftex-erase-all-selection-and-index-buffers)
17939         (reftex-access-parse-file):
17940         * textmodes/reftex-cite.el (reftex-do-citation)
17941         (reftex-insert-bib-matches):
17942         * textmodes/reftex-ref.el (reftex-offer-label-menu):
17943         * textmodes/reftex-sel.el (reftex-select-unmark):
17944         * textmodes/reftex-toc.el (reftex-toc-do-promote):
17945         * vc-mcvs.el (vc-mcvs-checkin): Use mapc rather than mapcar.
17947         * cus-edit.el (custom-variable-menu, custom-face-menu)
17948         (custom-group-menu): Check init-file-user rather than
17949         user-init-file, in case cus-edit is loaded by site-run-file.
17951 2007-10-11  Dan Nicolaescu  <dann@ics.uci.edu>
17953         * vc.el (vc-deduce-fileset): Delete unused code.
17954         (vc-next-action): Fix typos.
17956 2007-10-11  Juanma Barranquero  <lekktu@gmail.com>
17958         * bs.el (bs--mark-unmark): New function.
17959         (bs-mark-current, bs-unmark-current): Use it.
17961 2007-10-11  Eric S. Raymond  <esr@snark.thyrsus.com>
17963         * vc.el (vc-diff):
17964         (vc-diff-internal): Merge a patch by Juanma Barranquero.  Also,
17965         temporarily disable the check for his edge case of
17966         vc-diff (stopping it from grinding when called from $HOME), as
17967         it's calling some brittle code in vc-hooks.el.
17968         (with-vc-properties): Fix evaluation time of a macro argument.
17969         * ediff-vers.el (ediff-vc-internal):
17970         * vc-hooks.el:
17971         * loaddefs.el: Follow up on VC terminology change.
17973 2007-10-11  Juanma Barranquero  <lekktu@gmail.com>
17975         * follow.el (follow-stop-intercept-process-output):
17976         Use `follow-call-process-filter' rather than `process-filter'.
17977         Simplify.
17979 2007-10-11  Eric S. Raymond  <esr@snark.thyrsus.com>
17981         * vc-hooks.el (vc-registered): Robustify this function a bit
17982         against filenames with no directory component.
17984 2007-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
17986         * international/characters.el: Undo unwanted and unexplained change.
17988 2007-10-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
17990         * ps-print.el: Fix the usage of :foreground and :background face
17991         attributes.  Reported by Nikolaj Schumacher <n_schumacher@web.de>.
17992         (ps-print-version): New version 6.7.6.
17993         (ps-face-attributes, ps-face-attribute-list, ps-face-background):
17994         Fix code.
17995         (ps-face-foreground-color-p, ps-face-background-color-p)
17996         (ps-face-color-p): New inline funs.
17998 2007-10-10  Carsten Dominik  <dominik@science.uva.nl>
18000         * textmodes/org.el (org-additional-option-like-keywords): New constant.
18001         (org-complete): Use `org-additional-option-like-keywords'.
18002         (org-parse-local-options): New function.
18004 2007-10-10  Carsten Dominik  <dominik@science.uva.nl>
18006         * textmodes/org.el (org-in-clocktable-p): New function.
18007         (org-clock-report): Only update the table at point, or insert a new one.
18008         (org-clock-goto): New function.
18009         (org-open-file): Use `start-process-shell-command' instead of
18010         `shell-command' with an ampersand.
18011         (org-deadline, org-schedule): New argument REMOVE to remove the
18012         date from the entry.
18013         (org-agenda-schedule, org-agenda-deadline): Pass the prefix
18014         argument to `org-schedule' and `org-deadline'.
18015         (org-trim): Use the correct expressions for beginning and end of
18016         the string.
18017         (org-get-cleaned-entry): Trim the string before returning it.
18018         (org-clock-find-position): New function.
18019         (org-clock-into-drawer): New option.
18020         (org-agenda-tags-column): Rename from
18021         `org-agenda-align-tags-to-column'.
18022         (org-agenda-align-tags): Allow negative values for
18023         `org-agenda-tags-column'.
18024         (org-insert-labeled-timestamps-before-properties-drawer): Remove var.
18025         (org-agenda-to-appt): New optional argument FILTER.
18026         (org-completion-fallback-command): New variable.
18027         (org-complete): Use `org-completion-fallback-command'.
18028         (org-find-base-buffer-visiting): Catch the case that there is no
18029         buffer visiting the file.
18030         (org-property-or-variable-value): New function.
18031         (org-todo): Use `org-property-or-variable-value'
18032         (org-agenda-compact-blocks): New option.
18033         (org-prepare-agenda, org-agenda-list): Use `org-agenda-compact-blocks'.
18034         (org-agenda-schedule, org-agenda-deadline):
18035         Call `org-agenda-show-new-time'.
18036         (org-agenda-show-new-time): New argument PREFIX.
18037         (org-colgroup-info-to-vline-list): Fix but that cause a
18038         shift in the vertical lines.
18039         (org-buffer-property-keys): New argument INCLUDE-DEFAULTS.
18040         (org-maybe-renumber-ordered-list, org-cycle-list-bullet)
18041         (org-indent-item): No arg in call to `org-fix-bullet-type'.
18042         (org-fix-bullet-type): Remove argument.
18043         (org-read-date): Check for am/pm twice, to catch the end time.
18044         (org-goto-map): Use `suppress-keymap'.
18045         (org-remember-apply-template): Respect the dynamically scoped
18046         selection character.
18048 2007-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
18050         * frame.el (frame-inherited-parameters): Remove unused `environment'
18051         parameter, and let server.el add `client' when needed.
18053         * server.el (server-create-tty-frame)
18054         (server-create-window-system-frame): Set frame-inherited-parameters.
18056         * frame.el (frame-inherited-parameters): New var.
18057         (make-frame): Use it.
18059         * font-lock.el (lisp-font-lock-keywords-2): Remove let-environment.
18061         * env.el (let-environment): Remove.  Unused.
18062         (read-envvar-name): Simplify.
18063         (setenv): Remove unused arg `frame'.
18065         * help-fns.el (describe-variable): Add missing "  " for multiline
18066         obsolescence info and missing EOL after global value.
18068 2007-10-10  Eric S. Raymond  <esr@snark.thyrsus.com>
18070         * add-log.el:
18071         * ediff-vers.el:
18072         * log-view.el:
18073         * pcvs.el:
18074         * vc-arch.el:
18075         * vc-bzr.el:
18076         * vc-cvs.el:
18077         * vc.el:
18078         * vc-git.el:
18079         * vc-hg.el:
18080         * vc-hooks.el:
18081         * vc-mcvs.el:
18082         * vc-mtn.el:
18083         * vc-rcs.el:
18084         * vc-sccs.el:
18085         * vc-svn.el: Terminology cleanup: workfile-version -> working-revision,
18086         {find,init,next,previous,annotate-*,log}-version ->
18087         {find,init,next,previous,annotate-*,log}-revision,
18088         annotate-focus-version -> annotate-working-revision, The term
18089         'focus' is gone.  The term 'revision' is now used consistently
18090         everywhere that reference to a revision ID is intended, replacing
18091         older use of 'version'.
18093 2007-10-10  Juanma Barranquero  <lekktu@gmail.com>
18095         * follow.el: Change all instances of "Follow Mode" to "Follow
18096         mode" in docstrings and messages.
18097         (follow-menu-filter): Fix arg passed to `bound-and-true-p'.
18099 2007-10-10  Eric S. Raymond  <esr@snark.thyrsus.com>
18101         * vc.el (vc-next-action): Rewrite completely; this principal
18102         entry point now operates on a current fileset selected either
18103         explicitly via VC-Dired or implicitly by visiting a file buffer,
18104         rather than always operating on the file of the current buffer as
18105         in older versions.  Rewrite the rest of the mode to match.
18106         (with-vc-properties): Rewrite to operate on a file list.
18107         (with-vc-file): vc-checkin takes a file list argument now.
18108         (vc-post-command-functions): This hook now receives a file list.
18109         (vc-do-command): Take a either a file or a file list as argument.
18110         (vc-deduce-fileset): New function for deducing a file list to
18111         operate on.
18112         (vc-next-action-on-file, vc-next-action-dired): Remove.
18113         Merge into vc-next-action.
18114         (vc-register): Adapt to the fact that vc-start-entry now takes a
18115         file list.
18116         (vc-register-with): New function.
18117         (vc-start-entry): Take a file list argument rather than a
18118         file argument.
18119         (vc-checkout): Cope with vc-start-entry taking a file list.
18120         (vc-steal-lock): Cope with with-vc-properties taking a
18121         file list.
18122         (vc-checkin): Take a file list argument rather than a file argument.
18123         (vc-finish-logentry): Use the filelist passed by vc-start-entry.
18124         (vc-diff-internal): Rewrite for filesets.
18125         (vc-diff-sentinel): New function, tests whether changes were
18126         written into a diff buffer.
18127         (vc-diff): Rewrite for filesets.
18128         (vc-version-diff): Rewrite for filesets.
18129         (vc-print-log): Take a fileset argument.
18130         (vc-revert): Revert the entire selected fileset, not just the
18131         current buffer.
18132         (vc-rollback): Roll back the entire selected fileset, if
18133         possible.  No longer accepts a prefix argument.
18134         (vc-update): Merge new changes for the entire selected
18135         fileset, not just the current buffer.
18136         (vc-revert-file): Cope with with-vc-properties taking a file list.
18137         (vc-default-dired-state-info): Add + status suffix if the file is
18138         modified.
18139         (vc-annotate-warp-version): Use the new diff machinery.
18140         (vc-log-edit): Take a file list argument rather than a file argument.
18142 2007-10-10  Michael Albinus  <michael.albinus@gmx.de>
18144         Sync with Tramp 2.1.11.
18146         * net/tramp.el (tramp-open-connection-setup-interactive-shell):
18147         Pacify byte compiler.
18149         * net/trampver.el: Update release number.
18151 2007-10-09  Richard Stallman  <rms@gnu.org>
18153         * play/gamegrid.el (gamegrid-setup-default-font): Use face-spec-set.
18155 2007-10-09  Juanma Barranquero  <lekktu@gmail.com>
18157         * follow.el: Require easymenu.
18158         (follow-mode-hook, follow-mode): Doc fixes.
18159         (follow-mode-off-hook): Mark as obsolete.
18161 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
18163         * window.el (mouse-autoselect-window-cancel): Don't cancel for
18164         select-window or select-frame events.
18165         (handle-select-window): When autoselecting window set input
18166         focus.  Restructure.
18168         * frame.el (focus-follows-mouse): Move to frame.c.
18169         * cus-start.el (all): Add focus-follows-mouse.
18171 2007-10-08  Juanma Barranquero  <lekktu@gmail.com>
18173         * bs.el (bs-mode): Make sure global-font-lock-mode doesn't
18174         activate font-locking in the *buffer-selection* buffer.
18175         (bs-show-sorted): Doc fix.
18177         * bs.el (bs--get-marked-string, bs--get-modified-string)
18178         (bs--get-readonly-string, bs--get-size-string, bs--get-name)
18179         (bs--get-mode-name, bs-mode): Fix typos in docstrings.
18180         (bs--format-aux): Doc fix.
18182 2007-10-08  Michaël Cadilhac  <michael@cadilhac.name>
18184         * progmodes/gud.el (gud-gud-gdb-command-name): Fix typo in docstring.
18186 2007-10-08  Nick Roberts  <nickrob@snap.net.nz>
18188         * progmodes/gud.el (gud-gud-gdb-command-name): New option.
18189         (gud-gdb): New function for old M-x gdb (text command mode).
18190         (gud-gdb-command-name, gdb): Move to...
18192         * progmodes/gdb-ui.el: ...here and adapt doc string.
18193         (gud-gdba-command-name, gdba): Delete.
18195 2007-10-08  Juanma Barranquero  <lekktu@gmail.com>
18197         * bs.el: Don't defvar `font-lock-verbose'.
18198         (bs-config-clear, bs-kill, bs-string-show-normally, bs-sort-functions)
18199         (bs--get-file-name): Fix typos in docstrings.
18200         (bs--show-header): Use `dolist' instead of `mapcar'.
18201         (bs-mode): Set `show-trailing-whitespace' to nil.
18202         (bs-buffer-sort-function, bs-mouse-select-other-frame)
18203         (bs-visits-non-file, bs-sort-buffer-interns-are-last, bs-show):
18204         Doc fixes.
18206 2007-10-08  Adam Hupp  <adam@hupp.org>  (tiny change)
18208         * progmodes/gud.el (pdb): Specify file for gud-break.
18210 2007-10-08  Nick Roberts  <nickrob@snap.net.nz>
18212         * progmodes/gud.el (gdb): Make graphical mode the default and
18213         switch to text command mode if appropriate, i.e., reverse previous
18214         arrangement.
18215         (gud-gdb-marker-filter): Adapt for above change.
18217         * progmodes/gdb-ui.el (gdb-init-1): Don't set the values
18218         gud-minor-mode and gud-marker-filter.
18219         (gdb-fullname-regexp): New variable.
18220         (gud-gdba-marker-filter): Use it to switch to text command
18221         mode if appropriate.
18223 2007-10-08  Nick Roberts  <nickrob@snap.net.nz>
18225         * progmodes/gud.el (gud-display-line): Find source buffer even when
18226         GUD buffer has its own frame.
18228 2007-10-08  Jan Djärv  <jan.h.d@swipnet.se>
18230         * term/x-win.el (icon-map-list): Set to nil for 22.1 compatibility.
18232 2007-10-08  Jan Djärv  <jan.h.d@swipnet.se>
18234         * term/x-win.el (x-gtk-stock-map): Version is 22.2.
18236 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
18238         * allout.el (allout-before-change-handler): Replace got-char by
18239         goto-char.
18241 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18243         * vc-svn.el (vc-svn-resolve-when-done, vc-svn-find-file-hook): New funs.
18244         Used to try and automatically enabled smerge-mode in the presence of
18245         conflicts and to call `svn resolved' when the conflicts are gone.
18246         (vc-svn-parse-status): Remember the svn-specific status.
18248 2007-10-08  Eli Zaretskii  <eliz@gnu.org>
18250         * menu-bar.el (menu-bar-search-documentation-menu): Rename from
18251         menu-bar-apropos-menu.  All users changed.
18252         (menu-bar-help-menu): Change menu symbols to better match the text
18253         displayed by the menu.
18255 2007-10-08  Dan Nicolaescu  <dann@ics.uci.edu>
18257         * files.el (file-name-sans-versions): Use [:alnum:] and also allow
18258         #, @, : and ^.
18260 2007-10-08  Dan Nicolaescu  <dann@ics.uci.edu>
18262         * pcvs-defs.el (cvs-mode-map): Bind TAB and backtab.
18264         * log-view.el (log-view-mode-map): Likewise.
18266         * diff-mode.el (diff-mode-shared-map): Likewise.
18268 2007-10-08  Dan Nicolaescu  <dann@ics.uci.edu>
18270         * files.el (file-name-sans-versions): Also allow `A-Z'.
18272         * vc.el: Mention all supported VC backends.
18274 2007-10-08  Richard Stallman  <rms@gnu.org>
18276         * wid-edit.el (widget-specify-button): Don't merge mouse-face with
18277         neighbouring buttons.
18279 2007-10-08  Andreas Schwab  <schwab@suse.de>
18281         * files.el (file-name-sans-versions): Also allow `_'.
18283 2007-10-08  Dan Nicolaescu  <dann@ics.uci.edu>
18285         * files.el (file-name-sans-versions): Allow - and a-z in version names.
18287         * log-view.el (log-view-mode-map, log-view-mode-menu):
18288         Bind log-view-annotate-version.
18289         (log-view-beginning-of-defun, log-view-end-of-defun)
18290         (log-view-annotate-version): New functions.
18291         (log-view-mode): Use log-view-beginning-of-defun and
18292         log-view-end-of-defun.
18294 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18296         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix staging.
18298 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18300         * wid-edit.el (widget-image-insert): Don't merge mouse-face with
18301         neighbouring buttons.
18303         * progmodes/compile.el (compilation-error-regexp-alist-alist):
18304         Recognize gcc's use of "note" for informational messages.
18306 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18308         * textmodes/css-mode.el (css-electric-keys): electrick->electric.
18309         (css-mode): Update correspondingly.
18311 2007-10-08  Dan Nicolaescu  <dann@ics.uci.edu>
18313         * vc-git.el (vc-git-log-view-mode): Add font-lock patterns for
18314         Signed-off-by, Acked-by and Merge.
18316 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18318         * ediff-init.el (ediff-verbose-p): This var is not a constant.
18320 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18322         * vc-mtn.el: New file.
18324         * vc-hooks.el (vc-handled-backends): Add Mtn.
18326 2007-10-08  Eli Zaretskii  <eliz@gnu.org>
18328         * files.el (find-file, find-file-other-window)
18329         (find-file-other-frame, find-file-existing, find-file-read-only)
18330         (find-file-read-only-other-window)
18331         (find-file-read-only-other-frame)
18332         (find-alternate-file-other-window, find-alternate-file): Doc fixes.
18334 2007-10-08  Nick Roberts  <nickrob@snap.net.nz>
18336         * progmodes/gud.el (gdb-ready): New variable.
18337         (gdb): Set it to nil.  Set gud-running to nil here...
18338         (gud-common-init): ...instead of here.
18340         * progmodes/gdb-ui.el (gdba, gdb-send, gdb-source-info):
18341         Use gdb-ready.  Discard input until GDB is ready to accept it.
18343 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
18345         * dired.el (dired-warning): Inherit from font-lock-warning-face to
18346         make it show up with eight colors.
18348 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18350         * diff-mode.el (diff-sanity-check-hunk): Fix up the case when unified
18351         diffs are concatenated with no intervening line.
18353 2007-10-08  Dave Love  <fx@gnu.org>
18355         * progmodes/python.el: Merge changes from Dave Love's v2007-Sep-10.
18356         (python-font-lock-keywords): Update to the 2.5 version of the language.
18357         (python-quote-syntax): Let-bind font-lock-syntactic-keywords to nil.
18358         (python-backspace): Only behave funny in code.
18359         (python-compilation-regexp-alist): Add PDB stack trace regexp.
18360         (inferior-python-mode): Add PDB prompt regexp.
18361         (python-fill-paragraph): Refine the fenced-string regexp.
18362         (python-find-imports): Handle imports spanning several lines.
18363         (python-mode): Add `class' to hideshow support.
18365 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18367         * pcvs.el (cvs-mode-add-change-log-entry-other-window):
18368         Use add-log-buffer-file-name-function rather than binding
18369         buffer-file-name, so we don't end up calling change-log-mode in *cvs*
18370         when `fi' is the ChangeLog file itself.
18372         * outline.el (outline-flag-region): Use front-advance.
18374 2007-10-08  Ilya Zakharevich  <ilyaz@cpan.org>
18376         * progmodes/cperl-mode.el: Merge upstream 5.23.
18377         (cperl-where-am-i): Remove function.
18378         (cperl-backward-to-noncomment): Don't go too far when skipping POD/HEREs
18379         (cperl-sniff-for-indent): De-invert [string] and [comment].
18380         When looking for label, skip s:m:y:tr.
18381         (cperl-indent-line): Likewise.
18382         (cperl-mode): Don't assume `font-lock-multiline' is auto-local.
18383         (cperl-windowed-init): Wrong `ps-print' handling.
18384         Both thanks to Chong Yidong.
18385         (cperl-look-at-leading-count): Could fail with unfinished RExen.
18386         (cperl-find-pods-heres): If the second part of s()[] is missing,
18387         don't try to highlight delimiters...
18389 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18391         * progmodes/compile.el (compilation-get-file-structure): Complete last
18392         change by also using spec-directory in the puthash.
18394 2007-10-08  Riccardo Murri  <riccardo.murri@gmail.com>
18396         * vc-bzr.el (vc-bzr-file-name-relative): Use 'when' instead of 'and'.
18397         (vc-bzr-status): Fix shadowing of variable 'status'.
18398         (vc-bzr-workfile-version): Use correct path to 'last-revision' file.
18399         Use `expand-file-name' instead of `concat'.
18400         (vc-bzr-annotate-command): Use option name '--long' instead of '-l'.
18401         Update annotation line regexp.  Fixes launchpad.net [Bug 137435].
18403 2007-10-08  Jason Rumney  <jasonr@gnu.org>
18405         * frame.el (focus-follows-mouse): Doc-fix.  Change default on w32.
18407 2007-10-08  Richard Stallman  <rms@gnu.org>
18409         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Make defcustom.
18410         Add `safe-local-variable' property.
18411         (lisp-body-indent): Likewise.
18413 2007-10-08  Richard Stallman  <rms@gnu.org>
18415         * files.el (hack-local-variables-confirm): Rename arg VARS to ALL-VARS.
18416         Add doc string.
18418 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
18420         * files.el (backup-buffer-copy): Try to overwrite old backup first.
18422 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
18424         * repeat.el (repeat): Use last-repeatable-command instead of
18425         real-last-command.  Run pre- and post-command hooks for
18426         self-insertion.  Update doc-string.
18428 2007-10-08  Alexandre Julliard  <julliard@winehq.org>
18430         * vc-git.el (vc-git-state): Call git-add --refresh to update the
18431         state of the file.
18432         (vc-git-workfile-unchanged-p): Delegate implementation to vc-git-state.
18433         (vc-git-create-repo): Fix invalid command.
18435 2007-10-08  Richard Stallman  <rms@gnu.org>
18437         * textmodes/flyspell.el (flyspell-mode):
18438         Catch errors in flyspell-mode-on.
18440 2007-10-09  Juanma Barranquero  <lekktu@gmail.com>
18442         * term/x-win.el (x-alternatives-map): Remove spurious parenthesis.
18444 2007-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
18446         * international/encoded-kb.el (encoded-kbd-setup-display):
18447         Use input-decode-map rather than local-key-translation-map.
18449         * term/rxvt.el (rxvt-alternatives-map): New map.
18450         (terminal-init-rxvt): Use it.
18451         Bind rxvt-function-map in input-decode-map.
18453         * term/xterm.el (xterm-alternatives-map): New map.
18454         (terminal-init-xterm): Use it.
18455         Bind xterm-function-map in input-decode-map.
18457         * term/x-win.el (x-alternatives-map): New var.
18458         (x-setup-function-keys): Use it.
18460         * help-fns.el (describe-variable): Slightly change the layout of
18461         meta-info to separate it better from the docstring.
18462         Standardize insertion of extra empty lines in various circumstances.
18464         * diff-mode.el (diff-hunk-style): New fun.
18465         (diff-end-of-hunk): Use it.
18466         (diff-context->unified): Use the new `apply' undo element,
18467         if applicable, so as to save undo-log space.
18468         (diff-fine-change): New face.
18469         (diff-fine-highlight-preproc): New function.
18470         (diff-fine-highlight): New command.
18471         (diff-mode-map, diff-mode-menu): Add diff-fine-highlight.
18473         * smerge-mode.el (smerge-refine-chopup-region): Add `preproc' argument.
18474         (smerge-refine-highlight-change): Add `props' argument.
18475         (smerge-refine-subst): New function holding most of smerge-refine.
18476         (smerge-refine): Use it.
18478 2007-10-08  Eric S. Raymond  <esr@snark.thyrsus.com>
18480         * vc.el (vc-default-wash-log): Remove unused code, the
18481         log washers all live in the backends now.
18482         (vc-default-comment-history): Correct for the fact
18483         that wash-log is argumentless in the new API.
18485 2007-10-08  Michael Albinus  <michael.albinus@gmx.de>
18487         * net/tramp.el (tramp-find-foreign-file-name-handler): Check also host.
18488         (tramp-maybe-send-script): Apply `member' but `memq'.
18489         (tramp-advice-file-expand-wildcards): Simplify implementation.
18491 2007-10-08  Juanma Barranquero  <lekktu@gmail.com>
18493         * follow.el (follow-mode): Don't run hooks twice.  Use `when'.
18495         * mb-depth.el (minibuf-depth-indicator-function): New variable.
18496         (minibuf-depth-setup-minibuffer): Use it.
18498 2007-10-07  Glenn Morris  <rgm@gnu.org>
18500         * simple.el (bad-packages-alist): Clarify Semantic and CEDET
18501         version numbers.
18503 2007-10-06  Juri Linkov  <juri@jurta.org>
18505         * textmodes/fill.el (fill-paragraph-or-region): New function.
18507         * bindings.el (esc-map): Bind M-q to fill-paragraph-or-region
18508         instead of fill-paragraph.
18510         * tutorial.el (tutorial--default-keys): Replace fill-paragraph
18511         with fill-paragraph-or-region.  Suspend command is now the same
18512         `suspend-frame' on window systems and on tty.
18514         * image.el (image-type): Check if image-types is bound to not fail
18515         on tty.
18517         * delsel.el (delete-selection-pre-hook):
18518         * emulation/cua-base.el (cua-paste): Check if mouse-region-match
18519         is fbound to not fail on mouseless tty.
18521 2007-10-06  Michael Albinus  <michael.albinus@gmx.de>
18523         * net/tramp.el (top): Move loading of tramp-util.el and
18524         tramp-vc.el to tramp-compat.el.
18525         (tramp-make-tramp-temp-file): Complete rewrite.  Create remote
18526         temporary file if possible, in order to avoid a security hole.
18527         (tramp-do-copy-or-rename-file-out-of-band)
18528         (tramp-maybe-open-connection): Call `tramp-make-tramp-temp-file'
18529         with DONT-CREATE, because the connection is not setup yet.
18530         (tramp-handle-process-file): Rewrite temporary file handling.
18531         (tramp-completion-mode): New defvar.
18532         (tramp-completion-mode-p): Use it.
18534         * net/tramp-compat.el (top): Load tramp-util.el and tramp-vc.el.
18536         * net/tramp-fish.el (tramp-fish-handle-process-file):
18537         Rewrite temporary file handling.
18539 2007-10-06  Eric S. Raymond  <esr@snark.thyrsus.com>
18541         * vc.el: Workfile version -> focus version change.  Port various
18542         comments from new VC to reduce the noise in the diff.
18543         Patch in the new vc-create-repo function to go with the
18544         header comment about it already present.
18545         There are no changes to existing logic in this patch.
18546         (vc-revert-buffer1): Rename to vc-revert-buffer-internal.
18548 2007-10-06  Aaron Hawley  <aaronh@garden.org>
18550         * autoinsert.el (auto-insert-alist): Add a Texinfo entry.
18552 2007-10-05  Chris Moore  <dooglus@gmail.com>
18554         * server.el (server-kill-new-buffers): Doc fix.
18556 2007-10-05  John W. Eaton  <jwe@octave.org>
18558         * progmodes/octave-mod.el (octave-abbrev-table): Add "until".
18559         (octave-begin-keywords): Add "do".
18560         (octave-end-keywords): Remove "end".
18561         (octave-reserved-words): Add "end".  Remove "all_va_args",
18562         "gplot", and 'gsplot".
18563         (octave-text-functions): Remove "gset", "gshow", "set", and "show".
18564         (octave-variables): Remove "IMAGEPATH", "INFO_FILE",
18565         "INFO_PROGRAM", "LOADPATH", "__error_text__", "automatic_replot",
18566         "default_return_value", "define_all_return_values",
18567         "do_fortran_indexing", "empty_list_elements_ok",
18568         "gnuplot_has_multiplot", "implicit_str_to_num_ok",
18569         "ok_to_lose_imaginary_part", "prefer_column_vectors",
18570         "prefer_zero_one_indexing", "propagate_empty_matrices",
18571         "resize_on_range_error", "treat_neg_dim_as_zero",
18572         "warn_assign_as_truth_value", "warn_comma_in_global_decl",
18573         "warn_divide_by_zero", "warn_function_name_clash",
18574         "warn_missing_semicolon", "whitespace_in_literal_matrix".
18575         Add "DEFAULT_EXEC_PATH", "DEFAULT_LOADPATH", "IMAGE_PATH",
18576         "crash_dumps_octave_core", "sighup_dumps_octave_core",
18577         "sigterm_dumps_octave_core".
18578         (octave-block-match-alist): Remove "end" from block-end keywords.
18579         (octave-mode): Update ftp site address.
18581 2007-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
18583         * vc.el: Reorder functions, no code changes.
18585 2007-10-04  Michael Albinus  <michael.albinus@gmx.de>
18587         * net/tramp.el (tramp-make-temp-file): Move to tramp-compat.el.
18588         (tramp-do-copy-or-rename-file-directly): Handle tmpfile only in
18589         the cond clauses where needed.
18590         (tramp-handle-write-region): Rearrange code for proper handling of
18591         tmpfile.
18593         * net/tramp-compat.el (tramp-compat-make-temp-file): New defsubst.
18595         * net/tramp.el:
18596         * net/tramp-fish.el:
18597         * net/tramp-ftp.el:
18598         * net/tramp-smb.el: Rename `tramp-make-temp-file' to
18599         `tramp-compat-make-temp-file'.
18601 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
18603         * image-dired.el (image-dired-image-at-point-p): Fix typo in docstring.
18605 2007-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18607         * emacs-lisp/copyright.el (copyright-update): Don't update if the file
18608         already uses a more recent copyright version than the "current" one.
18610 2007-10-03  Michaël Cadilhac  <michael@cadilhac.name>
18612         * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-reset-slice)
18613         (doc-view-insert-image): Minor aesthetical docstring changes.
18615 2007-10-03  Tassilo Horn  <tassilo@member.fsf.org>
18617         * doc-view.el (doc-view): Don't ignore pdf and dvi files when
18618         completing filename.
18619         (doc-view-search-internal): Docstring change.
18621 2007-10-03  Michael Albinus  <michael.albinus@gmx.de>
18623         * net/tramp.el (top): Add tramp-compat to `tramp-unload-hook'.
18624         (tramp-file-name-handler-alist):
18625         Add `tramp-handle-insert-file-contents-literally'.  Needed for XEmacs.
18626         (tramp-make-temp-file): Use `make-temp-name'.  `make-temp-file',
18627         used before, creates the file already, which is not desired.
18628         (tramp-do-copy-or-rename-file-directly): Simplify handling of
18629         temporary file.
18630         (tramp-handle-insert-file-contents): Assign the result in the
18631         short track case.
18632         (tramp-handle-insert-file-contents-literally): New defun.
18633         (tramp-completion-mode-p): Revert change from 2007-09-24.
18634         Checking for `return' etc as last character is not sufficient, for
18635         example in dired-mode when entering <g> (revert-buffer) or
18636         <s> (dired-sort).
18638         * net/tramp-compat.el (top): Add also compatibility code for loading
18639         appropriate timer package.
18640         (tramp-compat-copy-tree): Check for `subrp' and `symbol-file' in
18641         order to avoid autoloading problems.
18643         * net/tramp-fish.el:
18644         * net/tramp-smb.el: Move further compatibility code to tramp-compat.el.
18646         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Handle the case
18647         where the second parameter of `copy-file' or `rename-file' is a
18648         remote file but not via ftp.
18650 2007-10-02  Richard Stallman  <rms@gnu.org>
18652         * frame.el (cursor-in-non-selected-windows): Doc fix.
18654 2007-10-01  Thien-Thi Nguyen  <ttn@gnuvola.org>
18656         * play/zone.el (zone): Let-bind show-trailing-whitespace to nil.
18657         Suggested by Chris Moore <christopher.ian.moore@gmail.com>.
18659 2007-10-01  Jay Belanger  <jay.p.belanger@gmail.com>
18661         * calc/calc-math.el (math-largest-emacs-expt): Handle the cases
18662         when `expt' doesn't give range errors.
18664 2007-10-01  Markus Triska  <markus.triska@gmx.at>
18666         * calc/calc-math.el (math-smallest-emacs-expt):
18667         Make the computation more robust.
18669 2007-09-30  David Kastrup  <dak@gnu.org>
18671         * startup.el (argv): Alias for `command-line-args-left' to use as
18672         `(pop argv)' inside of --eval command sequences.  Allows for
18673         passing shell commands into Emacs verbatim without need for Lisp
18674         quoting.
18676         * autorevert.el (auto-revert-handler): In `auto-revert-tail-mode',
18677         check only for changed size.
18678         (auto-revert-tail-handler): Get size from caller.  If the file has
18679         shrunk, tail the whole file again (the file presumably has been
18680         rewritten).
18682         * woman.el (woman-topic-all-completions, woman-mini-help):
18683         Fix fallout from 2007-09-07 introduction of `dolist' when the list
18684         actually was being manipulated in the loop.
18685         (woman-Cyg-to-Win, woman-pre-process-region)
18686         (woman-horizontal-escapes, woman-if-body, woman-unescape)
18687         (woman-strings, woman-special-characters, woman1-hc)
18688         (woman-change-fonts, woman-find-next-control-line):
18689         Use `match-beginning' rather than `match-string' when the result is
18690         just used as a flag.
18692 2007-09-30  Michael Albinus  <michael.albinus@gmx.de>
18694         * net/tramp-compat.el: New file.
18696         * net/tramp.el:
18697         * net/tramp-fish.el:
18698         * net/tramp-smb.el:
18699         * net/tramp-uu.el:
18700         * net/trampver.el: Move compatibility code to tramp-compat.el.
18701         Apply `mapc' instead of `mapcar' when the code needs side effects
18702         only.  Move utf-8 coding cookie to the second line.
18704 2007-09-30  Reiner Steib  <Reiner.Steib@gmx.de>
18706         * term/x-win.el (x-gtk-stock-map): Add Gnus and MH-E icons.
18707         Improve custom type.
18708         (icon-map-list): Make it customizable.  Document how to disable
18709         stock icons.
18711 2007-09-30  Richard Stallman  <rms@gnu.org>
18713         * play/zone.el (zone-hiding-modeline): Use mode-line-format.
18715 2007-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
18717         * t-mouse.el (gpm-mouse-mode): Rename from t-mouse-mode.  Rewrite.
18718         (t-mouse-mode): New compatibility alias.
18720 2007-09-28  Dan Nicolaescu  <dann@ics.uci.edu>
18722         * server.el (server-delete-client): Only delete the terminal if it
18723         is non-nil.
18725 2007-09-28  Michael Albinus  <michael.albinus@gmx.de>
18727         * net/tramp.el (with-file-property, with-connection-property):
18728         Highlight as keyword.
18729         (tramp-rfn-eshadow-setup-minibuffer)
18730         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
18731         (tramp-set-file-uid-gid, tramp-do-copy-or-rename-file-via-buffer)
18732         (tramp-do-copy-or-rename-file-directly)
18733         (tramp-do-copy-or-rename-file-out-of-band)
18734         (tramp-handle-shell-command, tramp-get-debug-buffer)
18735         (tramp-send-command-and-read, tramp-equal-remote)
18736         (tramp-get-local-gid): Pacify byte-compiler.
18737         (tramp-handle-file-name-directory): Result shall not be expanded.
18738         (tramp-find-foreign-file-name-handler): Rewrite.
18739         (tramp-dissect-file-name): Add optional parameter NODEFAULT.
18741         * net/tramp-cache.el (tramp-cache-print): Pacify byte-compiler.
18743         * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
18744         Apply `tramp-completion-mode-p'.
18745         (tramp-fish-handle-set-file-times)
18746         (tramp-fish-handle-executable-find)
18747         (tramp-fish-handle-process-file, tramp-fish-get-file-entries)
18748         (tramp-fish-retrieve-data): Pacify byte-compiler.
18750         * net/tramp-gw.el (tramp-gw-basic-authentication):
18751         Call `tramp-read-passwd' with first parameter `nil'.
18753 2007-09-28  Glenn Morris  <rgm@gnu.org>
18755         * mail/supercite.el (sc-attribs-filter-namelist): Use mapc rather
18756         than mapcar.
18758         * textmodes/tex-mode.el (tex-suscript-height-ratio)
18759         (tex-suscript-height-minimum): New customizable variables.
18760         (tex-suscript-height): New function.
18761         (superscript, subscript): Set height using tex-suscript-height
18762         rather than fixing at 0.8.
18763         (tex-fontify-script, tex-font-script-display): Add :version tag.
18765 2007-09-27  Juanma Barranquero  <lekktu@gmail.com>
18767         * progmodes/python.el (python-eldoc-function): Doc fix.
18769 2007-09-27  Glenn Morris  <rgm@gnu.org>
18771         * image.el (image-type-auto-detected-p): Doc fix.  Don't detect an
18772         image if it is not in image-type-auto-detectable, or is there with
18773         a nil value.
18775 2007-09-27  Michael Albinus  <michael.albinus@gmx.de>
18777         * net/tramp.el (tramp-maybe-open-connection): Make test for alive
18778         connection more robust.
18780 2007-09-26  Juanma Barranquero  <lekktu@gmail.com>
18782         * emacs-lisp/eldoc.el (eldoc-function-argstring-format):
18783         Deal with the case that special &keywords are at the beginning or
18784         end of the argument list.  Also add some (incomplete) support for
18785         non-standard arglists.
18787 2007-09-26  Juanma Barranquero  <lekktu@gmail.com>
18789         * emacs-lisp/eldoc.el (eldoc-message-commands-table-size)
18790         (eldoc-message-commands, eldoc-current-idle-delay)
18791         (eldoc-function-argstring-format): Fix typos in docstrings.
18793 2007-09-26  Jay Belanger  <jay.p.belanger@gmail.com>
18795         * calc/calc-units.el (calc-convert-units)
18796         (calc-convert-temperature): Remove unnecessary colons.
18798 2007-09-26  Bastien Guerry  <bzg@altern.org>
18800         * textmodes/org-export-latex.el (org-export-latex-tables-verbatim):
18801         New function.
18802         (org-export-latex-remove-from-headlines): Name changed because of typo.
18803         (org-export-latex-quotation-marks-convention): Option removed.
18804         (org-export-latex-make-preamble): Handle the DATE option.
18805         (org-export-latex-cleaned-string): Now the only cleaning function,
18806         synched up with org.el.
18807         (org-export-latex-lists, org-export-latex-parse-list)
18808         (org-export-list-to-latex): New functions.
18810 2007-09-26  Carsten Dominik  <dominik@science.uva.nl>
18812         * textmodes/org.el (org-kill-is-subtree-p): Use `org-outline-regexp'.
18813         (org-outline-regexp): New constant.
18814         (org-remember-handler): Throw error when the target file is not in
18815         org-mode.
18816         (org-cleaned-string-for-export): No longer call
18817         `org-export-latex-cleaned-string' with an argument.
18818         (org-get-tags): Returns now a list, not a string.
18819         (org-get-tags-string): New function.
18820         (org-archive-subtree): No need to split return of `org-get-tags'.
18821         (org-set-tags, org-entry-properties): Call `org-get-tags-string'
18822         instead of `org-get-tags'.
18823         (org-agenda-format-date): Rename from `org-agenda-date-format'.
18824         (org-time-from-absolute, org-agenda-format-date-aligned): New funs.
18825         (org-compatible-face): New argument INHERITS.  Inherit from this
18826         face if possible.
18827         (org-level-1, org-level-2, org-level-3, org-level-4)
18828         (org-level-5, org-level-6, org-level-7, org-level-8)
18829         (org-special-keyword, org-drawer, org-column, org-warning)
18830         (org-archived, org-todo, org-done, org-headline-done, org-table)
18831         (org-formula, org-code, org-agenda-structure)
18832         (org-scheduled-today, org-scheduled-previously)
18833         (org-upcoming-deadline, org-time-grid): Call `org-compatible-face'
18834         in the new way.
18835         (org-get-heading): New argument NO-TAGS.
18836         (org-fast-tag-selection-include-todo): Made defvar instead of
18837         defcustom, feature is not deprecated.
18838         (org-remember-store-without-prompt): New default value t.
18839         (org-todo-log-states): New variable.
18840         (org-set-regexps-and-options): #+TODO is an alias for SEQ_TODO.
18841         Compute the log states.
18842         (org-goto-map): More commands copied from global map.  Also bind
18843         `org-occur'.
18844         (org-goto): Made into a general lookup command.
18845         (org-get-location): Complete rewrite.
18846         (org-goto-exit-command): New variable.
18847         (org-goto-selected-point): New variable.
18848         (org-goto-ret, org-goto-left, org-goto-right, org-goto-quit):
18849         Set the new variables.
18850         (org-paste-subtree): Whitespace insertion strategy revised.
18851         (org-remember-apply-template): Protect v-A from the possibility
18852         that v-a might be nil.
18853         (org-remember-handler): Insertion rules revised.
18854         (org-todo): Respect org-todo-log-states.
18855         (org-up-heading-safe): New function.
18856         (org-entry-get-with-inheritance): Use `org-up-heading-safe'.
18858 2007-09-26  Dan Nicolaescu  <dann@ics.uci.edu>
18860         * progmodes/cc-cmds.el (c-indent-line-or-region): Only indent the
18861         region if in transient-mark-mode.
18863 2007-09-26  Juanma Barranquero  <lekktu@gmail.com>
18865         * calc/calc-ext.el (calc-init-extensions, calc-reset):
18866         * calc/calc-help.el (calc-full-help):
18867         * calc/calc-misc.el (another-calc):
18868         * calc/calc-store.el (calc-var-name-map):
18869         * calc/calc-stuff.el (calc-flush-caches):
18870         * calc/calc-units.el (math-build-units-table):
18871         * calc/calc.el (calc-digit-map, calc-dispatch-map, calc-mode)
18872         (calc-quit):
18873         * calendar/icalendar.el (icalendar--format-ical-event)
18874         (icalendar--convert-ical-to-diary):
18875         * emacs-lisp/authors.el (authors):
18876         * emacs-lisp/cust-print.el (custom-print-install)
18877         (custom-print-uninstall):
18878         * emacs-lisp/disass.el (disassemble-1):
18879         * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
18880         * emacs-lisp/edebug.el (byte-compile-resolve-functions):
18881         * emacs-lisp/elint.el (elint-current-buffer, elint-check-defun-form)
18882         (elint-check-let-form, elint-check-condition-case-form)
18883         (elint-initialize):
18884         * emacs-lisp/elp.el (elp-results):
18885         * emacs-lisp/generic.el (generic-mode-internal):
18886         * emacs-lisp/re-builder.el (reb-delete-overlays):
18887         * emacs-lisp/regi.el (regi-interpret):
18888         * emacs-lisp/sregex.el (sregex--char-aux):
18889         * emulation/cua-rect.el (cua--deactivate-rectangle)
18890         (cua--highlight-rectangle, cua--rectangle-post-command):
18891         * emulation/viper-keym.el (viper-toggle-key, viper-ESC-key):
18892         * emulation/viper-macs.el (viper-describe-kbd-macros)
18893         (viper-describe-one-macro):
18894         * emulation/viper-util.el (viper-setup-master-buffer):
18895         * emulation/viper.el (set-viper-state-in-major-mode):
18896         * international/mule-diag.el (describe-current-coding-system):
18897         * language/ethio-util.el (ethio-fidel-to-sera-buffer):
18898         * mail/emacsbug.el (report-emacs-bug):
18899         * net/ange-ftp.el (ange-ftp-call-chmod, ange-ftp-parse-bs2000-listing):
18900         * obsolete/hilit19.el (hilit-unhighlight-region)
18901         (hilit-set-mode-patterns):
18902         * play/solitaire.el (solitaire-check, solitaire-solve):
18903         * play/zone.el (zone-pgm-rotate):
18904         * progmodes/ada-mode.el (ada-save-exceptions-to-file):
18905         * progmodes/ada-prj.el (ada-prj-display-page):
18906         * progmodes/delphi.el (delphi-search-directory, delphi-find-unit-file)
18907         (delphi-debug-mode-map, delphi-mode-map, delphi-mode):
18908         * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-view-exit-fn)
18909         (ebrowse-member-mode, ebrowse-save-tree-as, ebrowse-save-class):
18910         * progmodes/sh-script.el (sh-make-vars-local)
18911         (sh-reset-indent-vars-to-global-values):
18912         * progmodes/sql.el (top):
18913         * progmodes/vhdl-mode.el (vhdl-set-style, vhdl-regress-line):
18914         * progmodes/xscheme.el (top):
18915         * textmodes/artist.el (artist-mt-get-symbol-from-keyword-sub)
18916         (artist-go-retrieve-from-symbol-sub, artist-go-get-symbol-shift-sub)
18917         (artist-fc-retrieve-from-symbol-sub, artist-vaporize-line)
18918         (artist-vaporize-lines, artist-ellipse-compute-fill-info)
18919         (artist-submit-bug-report):
18920         * textmodes/flyspell.el (flyspell-delay-commands)
18921         (flyspell-deplacement-commands):
18922         * textmodes/table.el (table--generate-source-epilogue, table-insert)
18923         (table--generate-source-cells-in-a-row, table--make-cell-map)
18924         (*table--cell-describe-bindings): Use `mapc' rather than `mapcar'.
18926 2007-09-25  Juanma Barranquero  <lekktu@gmail.com>
18928         * allout.el (produce-allout-mode-map, allout-process-exposed):
18929         * ansi-color.el (ansi-color-make-color-map):
18930         * autoinsert.el (auto-insert):
18931         * bookmark.el (bookmark-bmenu-list, bookmark-show-all-annotations):
18932         * dired-aux.el (dired-create-files):
18933         * dired.el (dired-restore-desktop-buffer):
18934         * ediff-diff.el (ediff-setup-fine-diff-regions):
18935         * ediff-mult.el (ediff-intersect-directories)
18936         (ediff-redraw-directory-group-buffer, ediff-dir-diff-copy-file)
18937         (ediff-redraw-registry-buffer):
18938         * ediff-ptch.el (ediff-fixup-patch-map):
18939         * ediff-util.el (ediff-toggle-multiframe, ediff-toggle-use-toolbar)
18940         (ediff-really-quit, ediff-clear-diff-vector):
18941         * emerge.el (emerge-really-quit):
18942         * ffap.el (ffap-replace-file-component):
18943         * filecache.el (file-cache-add-directory)
18944         (file-cache-add-directory-recursively)
18945         (file-cache-add-from-file-cache-buffer, file-cache-delete-file-regexp)
18946         (file-cache-delete-directory, file-cache-files-matching-internal)
18947         (file-cache-display):
18948         * files.el (cd):
18949         * find-lisp.el (find-lisp-insert-directory):
18950         * finder.el (finder-compile-keywords):
18951         * help.el (view-emacs-news):
18952         * hi-lock.el (hi-lock-write-interactive-patterns):
18953         * ido.el (ido-to-end, ido-set-matches-1):
18954         * image-dired.el (image-dired-display-thumbs, image-dired-remove-tag)
18955         (image-dired-mark-tagged-files):
18956         * jka-cmpr-hook.el (jka-compr-get-compression-info):
18957         * printing.el (pr-eval-local-alist, pr-eval-setting-alist):
18958         * ps-print.el (ps-background, ps-begin-file)
18959         (ps-build-reference-face-lists):
18960         * simple.el (clone-buffer):
18961         * startup.el (command-line):
18962         * tempo.el (tempo-insert-template, tempo-is-user-element)
18963         (tempo-forward-mark, tempo-backward-mark):
18964         * woman.el (woman-dired-define-keys): Use `mapc' rather than `mapcar'.
18966 2007-09-25  Glenn Morris  <rgm@gnu.org>
18968         * textmodes/tex-mode.el (tex-font-script-display): Doc fix.
18970         * view.el (view-search-no-match-lines): Add a doc string.
18971         Rewrite to simplify and work better.
18973 2007-09-24  Dan Nicolaescu  <dann@ics.uci.edu>
18975         * progmodes/cc-mode.el (c-mode-base-map):
18976         Use c-indent-line-or-region instead of c-indent-line.
18978         * indent.el (indent-for-tab-command): First check if the region is
18979         active.
18981 2007-09-24  Michaël Cadilhac  <michael@cadilhac.name>
18983         * whitespace.el (whitespace-tickle-timer): Don't install the timer if
18984         whitespace-rescan-timer-time is 0.
18986 2007-09-24  Karl Berry  <karl@gnu.org>
18988         * international/mule.el (coding-system-base): Fix doc string grammar.
18990 2007-09-24  Michael Albinus  <michael.albinus@gmx.de>
18992         * net/tramp.el (tramp-completion-mode-p): Rename from
18993         `tramp-completion-mode'.  Revert logic, check `return', `newline'
18994         and such alike.  Packages like Icicles tend to use other completion
18995         characters but `tab' and `space' only.
18997 2007-09-24  Adam Hupp  <adam@hupp.org>
18999         * progmodes/python.el (run-python): Import emacs module without
19000         waiting; prevents lockup on error.
19002 2007-09-23  Richard Stallman  <rms@gnu.org>
19004         * mail/sendmail.el (mail-bury): Delete the frame
19005         if this frame looks like it was made for this message.
19007         * completion.el (completion-separator-self-insert-command)
19008         (completion-separator-self-insert-autofilling):
19009         If `self-insert-command' has been remapped, use the substitute.
19011         * simple.el (copy-region-as-kill): Doc fix.
19013         * textmodes/org.el (org-confirm-shell-link-function)
19014         (org-confirm-elisp-link-function): Doc fixes.
19016 2007-09-23  Glenn Morris  <rgm@gnu.org>
19018         * ses.el (ses-calculate-cell): Don't evaluate unsafe formulae.
19020 2007-09-23  Dan Nicolaescu  <dann@ics.uci.edu>
19022         * term/w32-win.el (w32-drag-n-drop): Use mapc instead of mapcar.
19024         * term/tvi970.el (terminal-init-tvi970): Likewise.
19026         * term/sun-mouse.el (print-mouse-format): Likewise.
19028         * term/sun.el (scroll-down-in-place, scroll-up-in-place):
19029         Use forward-line instead of previous-line and next-line.
19031 2007-09-22  Juri Linkov  <juri@jurta.org>
19033         * textmodes/org.el (org-confirm-shell-link-function): Doc fix.
19035         * tutorial.el (tutorial--default-keys): Update standard bindings:
19036         rename `iconify-or-deiconify-frame' to `suspend-frame',
19037         and `save-buffers-kill-emacs' to `save-buffers-kill-terminal'.
19039 2007-09-22  Juri Linkov  <juri@jurta.org>
19041         * startup.el (fancy-startup-text, fancy-about-text, fancy-startup-tail):
19042         Add help-echo to external links and to links without description.
19043         (fancy-splash-insert): Use help-echo from the 3rd element of the
19044         link specification list, or "Follow this link" if it's nil.  Doc fix.
19046 2007-09-22  Juri Linkov  <juri@jurta.org>
19048         * startup.el (command-line): Rename `inhibit-startup-message' to
19049         `inhibit-startup-screen'.
19050         (fancy-about-text): Use shorter label for "Ordering Manuals".
19051         (fancy-startup-tail): Add optional arg `concise'.  When `concise'
19052         is nil, display a line with "To start..." and 3 links to useful
19053         tasks.  Display the "Dismiss" button and "Don't show this message
19054         again" only when concise is non-nil.
19055         (fancy-startup-screen): Call `fancy-startup-tail' with optional
19056         arg `concise'.  If CONCISE is non-nil, display a concise version
19057         of the splash screen in another window.  Otherwise, switch to the
19058         startup buffer in the same window.
19059         (startup-echo-area-message): Change displayed binding from
19060         C-h C-p (describe-project) to C-h C-a (about-emacs), and change
19061         text "about the GNU system and GNU/Linux" to "about GNU Emacs and
19062         the GNU system".
19063         (display-startup-screen): Fix buffer name from "*About GNU Emacs*"
19064         to "*GNU Emacs*".
19065         (display-about-screen): Don't check the existence of the buffer
19066         "*About GNU Emacs*".
19067         (display-splash-screen): Make alias to `display-startup-screen'.
19068         (command-line-1): Rename `inhibit-startup-message' to
19069         `inhibit-startup-screen'.  Inhibit startup screen when Emacs is
19070         started with command line options "-f", "-funcall", "-e", "-eval",
19071         "-execute", "-insert", "-find-file", "-file", "-visit".
19072         Inhibit startup screen when Emacs is started with a file name only
19073         on tty (i.e. don't inhibit it when started with a file name like
19074         "emacs FILE..." on a window system).
19075         (command-line-1): Simplify logic of displaying the startup screen:
19076         if file-count > 0, then display the concise version in another
19077         window, otherwise display full version in the same window.
19079         * help.el (help-map): Bind C-h C-a to about-emacs.
19080         (help-for-help-internal): Add C-a description to C-h help text.
19082 2007-09-22  Dan Nicolaescu  <dann@ics.uci.edu>
19084         * emacs-lisp/checkdoc.el (checkdoc-force-docstrings-flag)
19085         (checkdoc-permit-comma-termination-flag): Autoload the
19086         safe-local-variable setting.
19088         * bookmark.el (bookmark-xemacsp): Remove.
19089         (bookmark-make): Don't use bookmark-xemacsp,
19090         use (featurep 'xemacs) instead.
19092         * speedbar.el (speedbar-frame-mode)
19093         (speedbar-frame-reposition-smartly)
19094         (speedbar-set-mode-line-format, speedbar-reconfigure-keymaps)
19095         (speedbar-check-vc): Remove use of non-existent variable
19096         dframe-xemacsp, use (featurep 'xemacs) instead.
19098         * indent.el (indent-for-tab-command): Indent the region if
19099         transient-mark-mode and the region is active.
19101 2007-09-21  Francesco Potortì  <pot@gnu.org>
19103         * progmodes/octave-inf.el (inferior-octave-mode): Use add-hook to
19104         add inferior-octave-directory-tracker to the buffer-local value
19105         of comint-input-filter-functions.
19107 2007-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
19109         * xt-mouse.el (xterm-mouse-mode): Re-enable suspend-tty-functions.
19111 2007-09-21  Juanma Barranquero  <lekktu@gmail.com>
19113         * frame.el (suspend-frame): Call `iconify-or-deiconify-frame' also
19114         on w32 frames.
19116 2007-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
19118         * startup.el (normal-top-level): Remove DISPLAY from
19119         process-environment to let it be computed dynamically in callproc.c.
19121         * frame.el (frame-initialize, make-frame):
19122         * faces.el (tty-set-up-initial-frame-faces):
19123         * env.el (setenv): Don't set display-environment-variable.
19125         * server.el (server-getenv-from): Remove.  Use getenv-internal instead.
19126         (server-create-tty-frame): Don't set unused `tty' property.
19127         Set `display' instead of display-environment-variable.
19128         (server-create-window-system-frame): No display-environment-variable.
19130 2007-09-21  Michael Albinus  <michael.albinus@gmx.de>
19132         * rfn-eshadow.el (rfn-eshadow-setup-minibuffer-hook)
19133         (rfn-eshadow-update-overlay-hook): New defvars.
19134         (rfn-eshadow-setup-minibuffer, rfn-eshadow-update-overlay):
19135         Run the hooks.
19137         * net/tramp.el (tramp-rfn-eshadow-overlay): New defvar.
19138         (tramp-rfn-eshadow-setup-minibuffer)
19139         (tramp-rfn-eshadow-update-overlay): New defuns.  Hook into
19140         rfn-eshadow.el.
19142         * net/tramp-smb.el (tramp-smb-errors): Add error message for call
19143         timeout.
19145 2007-09-21  Glenn Morris  <rgm@gnu.org>
19147         * obsolete/sun-fns.el (emacs-quit-menu): Remove emacstool-related code.
19148         * term/sun-mouse.el (suspend-emacstool): Remove.
19149         * term/sun.el: Remove emacstool-related code.
19151         * emacs-lisp/bytecomp.el (byte-compile-warnings)
19152         (byte-compile-warnings-safe-p): Add `mapcar'.
19153         (byte-compile-warning-types): Add mapcar and make-local.
19154         (byte-compile-normal-call): Add option to suppress mapcar warning.
19155         (top-level): Use mapc rather than mapcar in eval-when-compile.
19157         * textmodes/tex-mode.el (tex-validate-region): Handle escaped parens.
19158         (tex-next-unmatched-eparen, tex-last-unended-eparen): New functions.
19159         (latex-forward-sexp-1, latex-backward-sexp-1): Doc fix.
19160         Handle escaped parens.
19161         (latex-forward-sexp): Doc fix.
19163         * eshell/esh-mode.el (eshell-output-filter-functions):
19164         Add eshell-postoutput-scroll-to-bottom.
19166         * loadup.el: Remove termdev.
19168         * progmodes/fortran.el (fortran-mode-abbrev-table, fortran-line-length):
19169         * progmodes/f90.el (f90-mode-abbrev-table): Use mapc rather than mapcar.
19171 2007-09-21  Markus Triska  <markus.triska@gmx.at>
19173         * emacs-lisp/bytecomp.el (byte-compile-normal-call): Warn when
19174         `mapcar' is called for effect.
19176 2007-09-21  Kevin Ryde  <user42@zip.com.au>
19178         * international/mule.el (sgml-html-meta-auto-coding-function):
19179         Bind `case-fold-search' to t.
19181 2007-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19183         * termdev.el: Remove.
19185         * frame.el (get-device-terminal): New function.  Moved from termdev.el.
19186         (frames-on-display-list): Use it.
19188         * bindings.el: Bind C-z to suspend-frame instead of suspend-emacs.
19190         * termdev.el (terminal-id): Ask terminal-live-p before giving up.
19192 2007-09-20  Richard Stallman  <rms@gnu.org>
19194         * newcomment.el (comment-add): If EXTRA, double `comment-add' value.
19196 2007-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19198         * add-log.el (add-log-current-defun): Fix thinko w.r.t derived-mode-p.
19200 2007-09-20  Glenn Morris  <rgm@gnu.org>
19202         * textmodes/tex-mode.el (tex-validate-buffer): Use paragraph
19203         motion functions, rather than hard-coding "\n\n".
19204         (tex-validate-region): Check for eobp, to speed up.
19205         (tex-next-unmatched-end): Doc fix.
19207 2007-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
19209         * files.el (auto-mode-alist): Use archive-mode for .rar files.
19211         * international/mule.el (auto-coding-alist): Rar archives are binary.
19213         * arc-mode.el: Add basic support for Rar.
19214         (archive-find-type): Recognize Rar's signature.
19215         (archive-desummarize): New fun.
19216         (archive-summarize): Use it to restore the buffer's data in case
19217         someone wants to switch to some other major mode.
19218         (archive-resummarize): Use it as well.
19219         (archive-rar-summarize, archive-rar-extract): New functions.
19221         * filesets.el: Remove spurious * in docstrings.
19222         (filesets-running-xemacs): Remove.  Use (featurep 'xemacs) instead.
19223         (filesets-conditional-sort): Remove unused arg `simply-do-it'.
19224         (filesets-ingroup-collect): Remove unused arg `depth'.
19225         (filesets-update): Remove unused arg `version'.
19227         * finder.el (finder-compile-keywords): Fix up comment style.
19228         (finder-mouse-face-on-line): previous-line -> forward-line.
19230         * recentf.el: Remove spurious * in docstrings.
19231         (recentf-save-list): Fix up comment style.
19233         * progmodes/octave-mod.el: Remove spurious * in docstrings.
19234         (octave-mode-map): Move init into declaration and remove \t binding.
19235         (octave-mode-startup-message): Remove unused var.
19236         (octave-scan-blocks): Remove unused arg `from'.
19237         (octave-forward-block, octave-down-block, octave-up-block):
19238         Update callers.
19240         * progmodes/meta-mode.el (meta-mode-syntax-table): Move init into decl.
19241         (meta-mode-map): Likewise and remove \t binding.
19243         * net/snmp-mode.el: Remove spurious * in docstrings.
19244         (snmp-rfc1155-types, snmp-rfc1213-types, snmp-rfc1902-types)
19245         (snmp-rfc1903-types, snmp-rfc1155-access, snmp-rfc1902-access)
19246         (snmp-rfc1212-status, snmp-rfc1902-status): Remove list wrappers now
19247         that completion accepts lists of strings.
19248         (snmp-mode-syntax-table): Move initialization into declaration.
19249         (snmp-mode-map): Likewise and remove \t binding.
19250         (snmp-common-mode): Set tab-always-indent according to snmp-t-a-i.
19251         (snmp-indent-line, snmp-mode-imenu-create-index): Remove unused var.
19252         (snmp-indent-command): Remove.
19254         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Use the default TAB
19255         binding, so tab-always-indent works right.
19257 2007-09-19  Johannes Weiner  <hannes@saeurebad.de>
19259         * net/browse-url.el (browse-url-elinks-new-window): New function.
19260         (browse-url-elinks): Use browse-url-elinks-new-window.
19261         Accept optional second argument `new-window'.  Fix typo in doc-string.
19262         (browse-url-elinks-sentinel): Use browse-url-elinks-new-window.
19263         Improve error message.
19265 2007-09-19  Michaël Cadilhac  <michael@cadilhac.name>
19267         * net/browse-url.el (browse-url-url-encode-chars): Use the right
19268         parameter name in the function body.
19269         Reported by Johannes Weiner.
19271 2007-09-19  Glenn Morris  <rgm@gnu.org>
19273         * net/socks.el (socks-open-network-stream): Signal an explicit
19274         error if the port associated with a service string can't be found.
19276         * textmodes/tex-mode.el (tex-terminate-paragraph):
19277         Use backward-paragraph.
19279 2007-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
19281         * server.el (server-running-p): New function.
19283 2007-09-18  Jason Rumney  <jasonr@gnu.org>
19285         * term/w32-win.el (w32-focus-frame): Make obsolete alias for
19286         x-focus-frame.
19288         * frame.el (select-frame-set-input-focus, select-frame-by-name):
19289         Use x-focus-frame for w32.
19291 2007-09-17  David Kastrup  <dak@gnu.org>
19293         * textmodes/tex-mode.el (tex-verbatim-environments):
19294         Eliminate CL dependency.
19296 2007-09-17  Richard Stallman  <rms@gnu.org>
19298         * newcomment.el (comment-add): New arg EXTRA.
19299         (comment-region-default): Pass EXTRA if not indenting lines.
19301 2007-09-17  Michaël Cadilhac  <michael@cadilhac.name>
19303         * net/browse-url.el (browse-url-url-encode-chars): New function.
19304         URL-encode some chars in a string.
19305         (browse-url-encode-url): Rewrite using the previous function.
19306         (browse-url-file-url): Use `browse-url-url-encode-chars'.
19307         (browse-url-elinks-sentinel): Fix typo.
19308         (browse-url-new-window-flag): Doc change.
19310 2007-09-17  Glenn Morris  <rgm@gnu.org>
19312         * textmodes/tex-mode.el (tex-compilation-parse-errors): Prefer the
19313         filename from `--file-line-error', if it is available.
19315 2007-09-17  Joe Wells  <jbw@macs.hw.ac.uk>  (tiny change)
19317         * textmodes/tex-mode.el (tex-compilation-parse-errors): Also match
19318         TeX `--file-line-error' format.
19320 2007-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
19322         * xt-mouse.el: Delete add-hook calls that were moved to
19323         xterm-mouse-mode.
19324         (xterm-mouse-mode): Disable resume-tty-functions, explain why it
19325         does not work.
19327 2007-09-17  Richard Stallman  <rms@gnu.org>
19329         * cus-face.el (custom-theme-set-faces): Undo previous change.
19331         * faces.el (face-spec-set): When FRAME nil, look up each frame in SPEC.
19333 2007-09-17  Glenn Morris  <rgm@gnu.org>
19335         * textmodes/tex-mode.el (tex-region): Simplify previous change,
19336         handling the case where the region is not in `tex-main-file'.
19337         (tex-region-1): Delete.
19338         (tex-region-header): New function, doing the header part of the
19339         old tex-region-1.
19341 2007-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
19343         * simple.el (newline): Simplify use of prefix-numeric-value.
19344         (line-move-partial): Remove unused var `ppos'.
19345         (line-move-1): Replace 9999 with most-positive-fixnum.
19346         (move-end-of-line): Use more efficient single-property search.
19347         (move-beginning-of-line): Remove unused var `start'.
19348         (blink-matching-open): Restructure in a more functional style.
19350 2007-09-16  Michaël Cadilhac  <michael@cadilhac.name>
19352         * calendar/holidays.el (list-holidays): Remove the cyclic alias.
19354 2007-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
19356         * server.el (server-clients): Only keep procs, no properties any more.
19357         (server-client): Remove.
19358         (server-client-get, server-client-set): Remove, replace all callers by
19359         process-get and process-put resp.
19360         (server-clients-with, server-add-client, server-delete-client)
19361         (server-create-tty-frame, server-create-window-system-frame)
19362         (server-process-filter, server-execute, server-visit-files)
19363         (server-buffer-done, server-kill-buffer-query-function)
19364         (server-kill-emacs-query-function, server-switch-buffer)
19365         (server-save-buffers-kill-terminal): Update accordingly.
19367         * server.el (server-with-environment): Simplify.
19368         (server-select-display, server-unselect-display): Re-add functions that
19369         seem to have been lost in the multi-tty merge.
19370         (server-eval-and-print, server-create-tty-frame)
19371         (server-create-window-system-frame, server-goto-toplevel)
19372         (server-execute, server-return-error): New functions extracted from
19373         server-process-filter.
19374         (server-execute-continuation): New functions.
19375         (server-process-filter): Restructure so that all arguments are analysed
19376         first and then acted upon in a subsequent stage.  This way
19377         server-goto-toplevel can be executed later, when we know if
19378         it's necessary.
19379         Remove the "-version" and "-version-good" support.
19381 2007-09-16  Drew Adams  <drew.adams@oracle.com>
19383         * cus-edit.el (custom-face-edit-activate): Doc fix.
19385 2007-09-16  Glenn Morris  <rgm@gnu.org>
19387         * calendar/cal-menu.el, calendar/calendar.el, calendar/diary-lib.el:
19388         Following cal-bahai renaming, update all instances of
19389         list-bahai-diary-entries to diary-bahai-list-entries,
19390         mark-bahai-diary-entries to diary-bahai-mark-entries,
19391         calendar-goto-bahai-date to calendar-bahai-goto-date,
19392         insert-bahai-diary-entry to diary-bahai-insert-entry,
19393         insert-monthly-bahai-diary-entry to diary-bahai-insert-monthly-entry,
19394         insert-yearly-bahai-diary-entry to diary-bahai-insert-yearly-entry, and
19395         calendar-print-bahai-date to calendar-bahai-print-date.
19397         * textmodes/tex-mode.el (tex-region): Handle the case where the
19398         region is not in `tex-main-file'.  Move the old code that applies
19399         to both cases...
19400         (tex-region-1): ...to this new function.
19402 2007-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19404         * vc.el (vc-process-sentinel): New function.
19405         (vc-exec-after): Use it instead of using ugly hackish analysis and
19406         construction of Elisp code.
19407         (vc-sentinel-movepoint): New dynamically scoped var.
19408         (vc-print-log, vc-annotate): Set it to move the user's point.
19410         * vc-cvs.el (vc-cvs-annotate-time): Use inhibit-read-only and
19411         inhibit-modification-hooks.
19413         * calendar/cal-bahai.el (mark-bahai-diary-entries): Fix up typo.
19414         (calendar-bahai-print-date, calendar-bahai-goto-date)
19415         (diary-bahai-list-entries, diary-bahai-insert-entry):
19416         New names to clean up the namespace a bit more.
19417         (calendar-goto-bahai-date, calendar-print-bahai-date): Compat aliases.
19419 2007-09-15  Glenn Morris  <rgm@gnu.org>
19421         * calendar/holidays.el (holiday-list): Rename it back to
19422         `list-holidays', but leave `holiday-list' as an alias.
19424         * textmodes/bibtex-style.el (bibtex-style-indent-basic): Specify a
19425         custom group.
19427         * textmodes/css-mode.el (css): New custom group.
19428         (css-electrick-keys, css-selector, css-property)
19429         (css-indent-offset): Specify custom group.
19431 2007-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19433         * pcvs.el (cvs-tags-list, cvs-retrieve-revision, cvs-find-modif)
19434         (cvs-execute-single-file): Use process-file.
19435         (cvs-run-process): Use start-file-process.
19437 2007-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
19439         * xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
19440         level.  Remove the hooks when turning off the mode.
19442         * term/xterm.el: Require xt-mouse at compile time.
19443         (terminal-init-xterm): Turn on xterm mouse tracking for this
19444         terminal if xterm-mouse-mode is enabled.
19446 2007-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
19448         * term/xterm.el (xterm-function-map): Replace bindings that were
19449         deleted by the merge.
19451 2007-09-14  Ulf Jasper  <ulf.jasper@web.de>
19453         * play/bubbles.el (bubbles-version): Bump value to "0.5".
19454         (bubbles-mode-map): Move define-key statements here.
19455         (bubbles-game-theme-menu): Ditto.
19456         (bubbles-graphics-theme-menu): Ditto.
19457         (bubbles-menu): Ditto.
19458         (bubbles-mode): Initialize buffer-undo-list, redisplay.
19459         (bubbles--initialize): Reset buffer-undo-list, redisplay.
19460         (bubbles-plop): Set buffer-undo-list, redisplay.
19461         (bubbles-undo): Reset buffer-undo-list, redisplay.
19462         (bubbles--show-images): Take care of missing text properties.
19464 2007-09-14  Glenn Morris  <rgm@gnu.org>
19466         * startup.el (fancy-startup-text, fancy-about-text): Fix face
19467         quoting.
19469         * calendar/cal-hebrew.el, calendar/cal-menu.el
19470         * calendar/calendar.el, calendar/diary-lib.el
19471         * calendar/holidays.el: Rename all instances of
19472         list-calendar-holidays callers to calendar-list-holidays,
19473         list-holidays to holiday-list, check-calendar-holidays to
19474         calendar-check-holidays, mark-calendar-holidays to
19475         calendar-mark-holidays, and filter-visible-calendar-holidays to
19476         holiday-filter-visible-calendar.
19478 2007-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
19480         * term/xterm.el (xterm-function-map): Add C-M- bindings.
19482 2007-09-13  Sascha Wilde  <wilde@sha-bang.de>  (tiny change)
19484         * play/bubbles.el (bubbles--initialize-images): Fix bug:
19485         Use transparent background for empty cells in graphics mode.
19487 2007-09-13  Jari Aalto  <jari.aalto@cante.net>
19489         * man.el (Man-default-man-entry): At end of line, continue looking
19490         to the next line for possible end of hyphenated command.
19492 2007-09-13  Chris Moore  <dooglus@gmail.com>
19494         * shell.el (shell-resync-dirs): Don't move the cursor relative to
19495         the command being edited.
19497 2007-09-12  Jim Meyering  <jim@meyering.net>  (tiny change)
19499         * emacs-lisp/copyright.el (copyright-names-regexp): Doc fix: typo.
19501 2007-09-12  Dan Nicolaescu  <dann@ics.uci.edu>
19503         * term/xterm.el (xterm-function-map): Add bindings for M-S- and
19504         C-M-S- keys.
19506         * term/rxvt.el (rxvt-function-map): Initialize in the declaration.
19508 2007-09-12  Michaël Cadilhac  <michael@cadilhac.name>
19510         * net/browse-url.el (browse-url-encode-url): Fix an infinite loop.
19511         New argument `filename-p' to use one set of confusing chars or another.
19512         (browse-url-file-url): Use the argument.
19513         Suggested by Johannes Weiner.
19515 2007-09-12  Romain Francoise  <romain@orebokech.com>
19517         * cus-start.el (all): Revert 2007-09-08 change.
19519 2007-09-12  Aaron Hawley  <aaronh@garden.org>
19521         * jka-cmpr-hook.el (jka-compr-compression-info-list): Use gzip to
19522         extract .Z files, since it is more common than uncompress.
19524 2007-09-12  Glenn Morris  <rgm@gnu.org>
19526         * textmodes/org-publish.el (org-publish-org-to-html): Remove
19527         duplicate function definition.
19529 2007-09-10  Chris Moore  <dooglus@gmail.com>
19531         * diff-mode.el (diff-sanity-check-hunk):
19532         Also accept single-line hunks.
19534 2007-09-10  Chong Yidong  <cyd@stupidchicken.com>
19536         * startup.el (startup-screen-inhibit-startup-screen)
19537         (pure-space-overflow-message): New vars.
19538         (fancy-splash-insert): Allow functions for face and link specs.
19539         (fancy-splash-head): Remove unused arg.  Move splash text...
19540         (fancy-startup-text, fancy-about-text): ...here.
19541         (fancy-startup-tail): Rename from fancy-splash-tail.
19542         (fancy-startup-screen, fancy-about-screen): Split off from
19543         fancy-splash-screens.
19544         (display-startup-screen): New function.
19545         (display-about-screen): Rename from display-splash-screen.
19546         (command-line-1): Use concise startup screen if necessary.
19548 2007-09-10  Thien-Thi Nguyen  <ttn@gnuvola.org>
19550         * net/browse-url.el (browse-url-encode-url): Use copy-sequence.
19551         Reported by Jan Djärv <jan.h.d@swipnet.se>.
19553 2007-09-10  Dave Love  <fx@gnu.org>
19555         * outline.el (outline-4, outline-5, outline-7):
19556         Move font-lock-builtin-face down from 4 to 7 to better keep the
19557         progression of color brightness, and to better match Org-mode's faces.
19559 2007-09-10  Michaël Cadilhac  <michael@cadilhac.name>
19561         * progmodes/meta-mode.el (meta-font-lock-keywords)
19562         (font-lock-match-meta-declaration-item-and-skip-to-next)
19563         (meta-comment-indent, meta-indent-previous-line)
19564         (meta-indent-unfinished-line, meta-beginning-of-defun)
19565         (meta-end-of-defun, meta-common-initialization): Handle \f.
19566         (meta-indent-unfinished-line): Do not handle a `%' in a string as
19567         a comment-start.
19569         * files.el (file-modes-char-to-who, file-modes-char-to-right)
19570         (file-modes-rights-to-number): Auxiliary functions for symbolic to
19571         numeric notation of file modes.
19572         (file-modes-symbolic-to-number): New.  Convert symbolic modes to its
19573         numeric value.
19574         (read-file-modes): New.  Read either an octal value of a file mode or a
19575         symbolic value, and return its numeric value.
19577         * dired-aux.el (dired-do-chmod): Change to use the built-in
19578         `set-file-modes' and the previous symbolic mode parsing functions.
19580 2007-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
19582         * textmodes/texinfo.el: Remove spurious * in docstrings.
19583         (texinfo-mode-syntax-table, texinfo-mode-map):
19584         Initialize in the declaration.
19586         * tmm.el: Remove spurious * in docstrings.
19587         (tmm-prompt): Use with-current-buffer.
19589         * vcursor.el: Remove spurious * in docstrings.
19590         (vcursor-map): Initialize in the declaration.
19591         (vcursor-use-vcursor-map): Use define-minor-mode.
19592         (vcursor-toggle-vcursor-map): Keep as an obsolete alias.
19594         * wid-browse.el (widget-browse-mode-map, widget-minor-mode-map):
19595         Initialize in the declaration.
19596         (widget-minor-mode): Use define-minor-mode.
19598         * woman.el (woman-mode-map, woman-syntax-table):
19599         Initialize in the declaration.
19601 2007-09-09  Tassilo Horn  <tassilo@member.fsf.org>
19603         * doc-view.el: New file.
19605 2007-09-09  Juri Linkov  <juri@jurta.org>
19607         * Makefile.in (update-authors): Add etc/ to AUTHORS.
19609         * makefile.w32-in (update-authors): Add etc/ to AUTHORS.
19611         * startup.el (initial-buffer-choice): Rename choice "Splash screen"
19612         to "Startup screen".  Fix docstring.
19613         (inhibit-startup-screen): Rename from `inhibit-splash-screen'.
19614         (inhibit-splash-screen): Make alias to `inhibit-startup-screen'.
19615         (inhibit-startup-message): Change alias to `inhibit-startup-screen'.
19616         (initial-scratch-message): Fix docstring.
19617         (fancy-startup-text): Move link to Emacs Manual below Emacs Guided
19618         Tour (which is a kind of tutorial and will be next to Emacs Tutorial).
19619         Add link to "Customize Startup" and set interval between links to
19620         5 spaces.
19621         (fancy-about-text): Add links "Authors" and "Contributing".
19622         (fancy-splash-head): Add text "Welcome to " on the startup screen,
19623         and "This is " on the about screen.  Add link to
19624         "http://www.gnu.org/software/emacs/" for "GNU Emacs".
19625         For the about screen move emacs version to the header from
19626         `fancy-splash-tail' (as it's done already for normal about screen).
19627         (fancy-splash-tail): Insert emacs version only for startup screen.
19628         (normal-splash-screen): Remove duplicate empty lines.
19629         (normal-about-screen): Add links "Authors" and "Contributing".
19631         * menu-bar.el (menu-bar-help-menu):
19632         Move "About Emacs" and "About GNU" to the end of the Help menu.
19633         Move "Emacs Psychotherapist" after "Send Bug Report...".
19634         Move "External Packages" after "Find Emacs Packages".
19636 2007-09-09  Michael Albinus  <michael.albinus@gmx.de>
19638         * net/tramp.el (top): Remove declarations of `tramp-gw-*' symbols,
19639         they are useless with the byte compiler.
19640         (tramp-make-temp-file, tramp-make-tramp-temp-file): Move up.
19641         (tramp-do-copy-or-rename-file-directly): Rearrange let-bindings.
19642         (tramp-compute-multi-hops): Mask `tramp-gw-*' symbols.
19643         (tramp-file-name-real-host, tramp-file-name-port)
19644         (tramp-find-method, tramp-find-user, tramp-find-host): Make them
19645         defuns.
19647         * net/tramp-cache.el (top): Improve error message when
19648         `tramp-persistency-file-name' is corrupted.
19650 2007-09-09  Carsten Dominik  <dominik@science.uva.nl>
19652         * textmodes/org.el (org-re): Also replace the :alpha: class.
19653         (org-todo-tag-alist): Variable removed.
19654         (org-todo-key-alist, org-todo-key-trigger): New variables.
19655         (org-use-fast-todo-selection): New option.
19656         (org-log-done): Docstring fixed.
19657         (org-deadline-warning-days): New default value 14.
19658         (org-edit-timestamp-down-means-later): New option.
19659         (org-tag-alist): Docstring fixed.
19660         (org-fast-tag-selection-include-todo): New option.
19661         (org-export-language-setup): New languages added.
19662         (org-set-regexps-and-options): Compute the new variables.
19663         (org-paste-subtree): Cleaning up.
19664         (org-remember-apply-template): New escape %A.
19665         (org-todo): Call fast TODO selection.
19666         (org-fast-todo-selection): New function.
19667         (org-add-log-note): Allow prefix for abort exit.
19668         (org-at-property-p, org-entry-properties)
19669         (org-columns-get-autowidth-alist): Use :alpha: class.
19670         (org-get-wdays): New function.
19671         (org-agenda-remove-date): New variable.
19672         (org-agenda-get-deadlines): Use `org-get-wdays'.
19673         (org-agenda-get-deadlines): Reverse ee before returning.
19674         (org-format-agenda-item): New argument REMOVE-RE.
19675         (org-agenda-convert-date): Baha'i calendar added.
19676         (org-infile-export-plist): Also find DATE line.
19677         (org-get-min-level): New function.
19678         (org-export-as-html, org-export-as-ascii): Use the date format.
19679         (org-shiftup, org-shiftdown): Use.
19680         `org-edit-timestamp-down-means-later'.
19681         (org-assign-fast-keys): New function.
19683 2007-09-08  Fredrik Axelsson  <f.axelsson@gmail.com>
19685         * cus-start.el (all): Add prefer-window-split-horizontally from
19686         window.c.
19688 2007-09-08  Eli Zaretskii  <eliz@gnu.org>
19690         * net/browse-url.el (browse-url-galeon): Fix last change.
19691         (top-level): Require cl when compiling.
19693 2007-09-08  Carsten Dominik  <dominik@science.uva.nl>
19695         * textmodes/org-export-latex.el: arch-tag restored.
19697         * textmodes/org-publish.el: arch-tag restored.
19699 2007-09-08  Masatake YAMATO  <jet@gyve.org>
19701         * progmodes/which-func.el (which-func-modes): Add diff-mode.
19703         * progmodes/cc-langs.el: Support new keywords added to
19704         objective-c frontend of gcc.
19705         (c-simple-stmt-kwds): Add @throw.
19706         (c-block-stmt-2-kwds): Add @synchronized.
19707         (c-block-stmt-1-kwds): Add @finally and @try.
19709 2007-09-07  Carsten Dominik  <dominik@science.uva.nl>
19711         * textmodes/org.el (org-edit-timestamp-down-means-later): New option.
19712         (org-agenda-after-show-hook): New variable.
19713         (org-columns-compile-format)
19714         (org-columns-get-autowidth-alist, org-buffer-property-keys)
19715         (org-entry-properties, org-at-property-p): Allow [:alnum:] in
19716         property names.
19717         (org-get-wdays): New function.
19719 2007-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19721         * simple.el (normal-erase-is-backspace-setup-frame): Massage.
19723         * term/xterm.el (xterm-function-map): Initialize in the declaration.
19725         * vc-arch.el (vc-arch-checkin): Fix typo.
19727 2007-09-07  Johan Bockgård  <bojohan@gnu.org>
19729         * cus-face.el (custom-theme-set-faces): Set face attributes
19730         locally for each frame.
19732 2007-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19734         * progmodes/fortran.el (fortran-mode): Set font-lock-syntactic-keywords
19735         via font-lock-defaults.
19737         * emacs-lisp/bytecomp.el (byte-compile-log-file): Check major-mode via
19738         derived-mode-p.
19740 2007-09-07  Thien-Thi Nguyen  <ttn@gnuvola.org>
19742         * progmodes/autoconf.el (autoconf-definition-regexp):
19743         Handle optional square brackets around definition name.
19745 2007-09-07  Johannes Weiner  <hannes@saeurebad.de>
19747         * net/browse-url.el (browse-url-browser-function): Add elinks.
19748         (browse-url-elinks-wrapper): New option.
19749         (browse-url-encode-url, browse-url-elinks)
19750         (browse-url-elinks-sentinel): New functions.
19751         (browse-url-file-url, browse-url-netscape, browse-url-mozilla)
19752         (browse-url-firefox, browse-url-galeon, browse-url-epiphany):
19753         Use new function browse-url-encode-url.
19755 2007-09-07  Glenn Morris  <rgm@gnu.org>
19757         * version.el (emacs-version): Revert 2007-08-29 change: no need to
19758         say if multi-tty is present.
19760 2007-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19762         * cus-start.el (split-window-preferred-function): Add custom info.
19764         * calendar/holidays.el (holiday-list, calendar-check-holidays)
19765         (calendar-mark-holidays, calendar-list-holidays)
19766         (holiday-filter-visible-calendar): New names to clean up namespace.
19767         (filter-visible-calendar-holidays, list-calendar-holidays)
19768         (mark-calendar-holidays, check-calendar-holidays, list-holidays):
19769         Add compatibility aliases.
19770         (calendar-check-holidays, calendar-mark-holidays)
19771         (calendar-holiday-list, holiday-filter-visible-calendar): Use dolist.
19772         (holiday-sexp): Replace append with list.
19773         (holiday-filter-visible-calendar): Replace append with push.
19775         * woman.el: Remove spurious * in docstrings.
19776         (woman-mini-help, woman-non-underline-faces, woman0-rename)
19777         (woman-topic-all-completions-merge, woman-file-name-all-completions)
19778         (woman-select-symbol-fonts, woman-expand-directory-path): Use dolist.
19779         (woman-write-directory-cache, woman-display-extended-fonts)
19780         (WoMan-log-begin, WoMan-log-1): Use with-current-buffer.
19781         (woman-really-find-file): Use pop-to-buffer if switch-to-buffer fails.
19782         (woman-mode): Use inhibit-read-only.
19783         (woman-negative-vertical-space): Use dotimes.
19784         (woman2-tagged-paragraph, woman-tab-to-tab-stop): Use insert-char.
19786 2007-09-06  Romain Francoise  <romain@orebokech.com>
19788         * vc-bzr.el (vc-bzr-admin-lastrev): New defconst.
19789         (vc-bzr-workfile-version): Use it.
19791 2007-09-06  Sean O'Rourke  <sorourke@cs.ucsd.edu>
19793         * complete.el (PC-do-completion): Don't try to treat
19794         empty string as an abbreviation.
19796 2007-09-06  Johan Bockgård  <bojohan@dd.chalmers.se>
19798         * help-fns.el (describe-variable): Keep doc's text properties.
19800 2007-09-06  Dan Nicolaescu  <dann@ics.uci.edu>
19802         * vc.el (vc-default-diff-tree): Pass a list to the diff vc command
19803         instead of a file.
19805 2007-09-06  Glenn Morris  <rgm@gnu.org>
19807         * emacs-lisp/checkdoc.el (checkdoc-minor-mode-string): New.
19808         (checkdoc-minor-mode): Allow user to specify lighter via
19809         checkdoc-minor-mode-string.
19811 2007-09-05  Richard Stallman  <rms@gnu.org>
19813         * startup.el (fancy-startup-text): Rename from fancy-splash-text.
19814         Several items removed, simplified, or put on one line.
19815         (fancy-about-text): Add substantial contents, part of startup text.
19816         (fancy-splash-head): Make "GNU" or "GNU/Linux" a link.
19817         (normal-splash-screen): Call normal-mouse-startup-screen,
19818         normal-no-mouse-startup-screen, or normal-about-screen.
19819         (normal-mouse-startup-screen): New fn, broken out, shortened.
19820         (normal-no-mouse-startup-screen): New fn, broken out.
19821         (normal-about-screen): New function, contents all new.
19823 2007-09-05  Michaël Cadilhac  <michael@cadilhac.name>
19825         * emacs-lisp/rx.el (rx): Fix typo in docstring.
19827 2007-09-05  Glenn Morris  <rgm@gnu.org>
19829         * cus-edit.el (custom-buffer-create-internal): Check tool-bar-mode
19830         is bound.
19832 2007-09-05  Johan Bockgård  <bojohan@dd.chalmers.se>
19834         * emacs-lisp/advice.el (ad-make-advised-docstring): Highlight note
19835         in doc string.
19837 2007-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
19839         * server.el (server-start, server-unload-hook): Undo previous change.
19841         * xt-mouse.el: Undo previous change.
19843 2007-09-04  Juri Linkov  <juri@jurta.org>
19845         * startup.el (fancy-about-text): New variable.
19846         (fancy-splash-delay, fancy-splash-max-time): Remove user options.
19847         (fancy-current-text, fancy-splash-stop-time)
19848         (fancy-splash-outer-buffer): Remove variables.
19849         (fancy-splash-head, fancy-splash-tail): Add new optional argument
19850         `startup' and use it to conditionally display different texts for
19851         Startup and About screens.  Don't display Help commands on the About
19852         screen.
19853         (fancy-splash-screens-1): Remove function and move its content to
19854         `fancy-splash-screens' to the part that dislpays the About screen.
19855         (exit-splash-screen): Don't treat specially exiting from
19856         alternating screens.
19857         (fancy-splash-screens): Rename argument `static' to `startup'.
19858         Fix docstring.  Remove code for displaying alternating screens.
19859         Use arg `startup' in calls to `fancy-splash-head', `fancy-splash-tail'.
19860         Remove let-bind for `fancy-splash-outer-buffer' and add let-bind
19861         for `inhibit-read-only'.
19862         (normal-splash-screen): Rename argument `static' to `startup'.
19863         Fix docstring.  Use argument `startup' to conditionally display
19864         different texts for Startup and About screens.  Don't display Help
19865         commands on the About screen.  Remove `unwind-protect' `sit-for'
19866         delay and `kill-buffer' after it.
19867         (display-startup-echo-area-message): Remove call to
19868         `use-fancy-splash-screens-p' because image.el is preloaded and
19869         doesn't display "Loading image... done".
19870         (display-splash-screen): Rename argument `static' to `startup'.
19871         Fix docstring.
19873 2007-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
19875         * server.el (server-start, server-unload-hook):
19876         suspend-tty-functions has been renamed to suspend-tty-hook.
19878         * xt-mouse.el: Likewise.  resume-tty-functions has been renamed to
19879         resume-tty-hook.
19881 2007-09-03  Emanuele Giaquinta  <e.giaquinta@glauco.it>  (tiny change)
19883         * loadup.el: Fix merge problem, only load "button" once.
19885 2007-09-03  Glenn Morris  <rgm@gnu.org>
19887         * vc-svn.el (vc-svn-print-log): If there is only one file, use
19888         "Working file:" as the prefix, for the sake of
19889         log-view-current-file.
19891 2007-09-02  Dan Nicolaescu  <dann@ics.uci.edu>
19893         * term/xterm.el (xterm-modify-other-keys-terminal-list): New variable.
19894         (xterm-turn-on-modify-other-keys): Only turn on modify-other-keys
19895         if the selected frames is in
19896         xterm-modify-other-keys-terminal-list.
19897         (xterm-turn-off-modify-other-keys): Add an optional frame
19898         parameter.  Only turn off modify-other-keys if FRAME is in
19899         xterm-modify-other-keys-terminal-list.
19900         (xterm-remove-modify-other-keys): New function.
19901         (terminal-init-xterm): Use it.  Deal with delete-frame hook.
19902         Add the selected frame to xterm-modify-other-keys-terminal-list.
19904 2007-09-02  Jan Djärv  <jan.h.d@swipnet.se>
19906         * term/x-win.el (x-gtk-stock-map): Map diropen to system-file-manager.
19907         (icon-map-list): New variable.
19908         (x-gtk-map-stock): Use icon-map-list.
19910 2007-09-02  Romain Francoise  <romain@orebokech.com>
19912         * log-view.el (log-view-current-file): Balance parens.
19914 2007-09-02  Glenn Morris  <rgm@gnu.org>
19916         * comint.el (comint-mode): Don't set scroll-conservatively.
19918         * eshell/em-unix.el (eshell/time): Stringify and flatten the
19919         non-command arguments.
19921         * log-view.el (log-view-current-file): Give a more explicit error
19922         if log-view-file-re fails to find a match.
19924 2007-09-01  Thien-Thi Nguyen  <ttn@gnuvola.org>
19926         * emacs-lisp/bytecomp.el (byte-recompile-directory):
19927         Fix bug: Don't expand top-level file name more than once.
19928         Reported by Dmitry Antipov <dmantipov@yandex.ru>.
19930 2007-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
19932         * server.el (server-process-filter): Don't display the splash screen.
19933         It's annoying enough on the initial screen and becomes positively
19934         obnoxious here.
19936 2007-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
19938         * emacs-lisp/avl-tree.el: Use defstruct rather than macros.
19939         Change naming to use "avl-tree--" for internal functions.
19941 2007-08-31  Dan Nicolaescu  <dann@ics.uci.edu>
19943         * term/x-win.el (x-menu-bar-open): Delete duplicated function from
19944         the merge.
19945         (global-set-key): Delete f10 mapping, now done in menu-bar.el.
19946         (provide): Move to the end of file.
19948         * vc-svn.el (vc-svn-diff-tree): Pass a list to vc-svn-diff.
19950 2007-08-31  Michaël Cadilhac  <michael@cadilhac.name>
19952         * textmodes/flyspell.el (flyspell-mark-duplications-exceptions):
19953         New variable.  List of exceptions for the duplicated word rule.
19954         (flyspell-mark-duplications-flag): Mention it.
19955         (flyspell-word): Treat it.
19957         * files.el (create-file-buffer): If the filename sans directory starts
19958         with spaces, remove them.
19960 2007-08-31  Jan Djärv  <jan.h.d@swipnet.se>
19962         * term/x-win.el (x-gtk-stock-map): Add etc/images to keys.
19963         (x-gtk-map-stock): Use two directory elements when matching
19964         file name.
19966 2007-08-31  James Wright  <james@chumsley.org>
19968         * eshell/em-unix.el (eshell/info): New function.
19970 2007-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
19972         * frame.el (frame-initialize, make-frame):
19973         * server.el (server-process-filter):
19974         * faces.el (tty-set-up-initial-frame-faces): Don't set
19975         term-environment-variable since it's not used any more.
19977         * env.el (setenv): Don't treat $TERM specially.
19979         * startup.el (normal-top-level): Set $TERM to `dumb' so that unless
19980         stated otherwise, subprocesses do not send back escape sequences
19981         corresponding to the terminal from which Emacs was started.
19983 2007-08-31  Thien-Thi Nguyen  <ttn@gnuvola.org>
19985         * calculator.el: Require cl for compilation.
19987 2007-08-30  Daniel Pfeiffer  <occitan@esperanto.org>
19989         * outline.el (outline-font-lock-levels): Comment out unused var.
19990         (outline-font-lock-face): Wrap around face list to handle any
19991         nesting depth gracefully.
19993 2007-08-30  Michael Albinus  <michael.albinus@gmx.de>
19995         * net/ange-ftp.el: Add ange-ftp property to `set-file-modes' and
19996         `set-file-times'.
19998 2007-08-30  Carsten Dominik  <dominik@science.uva.nl>
20000         * textmodes/org.el (org-export-visible): Fix drawers before export.
20001         (org-do-sort): Allow sorting by priority.
20002         (org-agenda-files): Ignore non-existing files.
20003         (org-agenda-skip-unavailable-files): New variable.
20004         (org-ellipsis): All a face as value.
20005         (org-mode): Interprete the face value of `org-ellipsis'.
20006         (org-archive-save-context-info): New option.
20007         (org-archive-subtree): Store context info in archived entry.
20008         (org-fast-tag-selection-can-set-todo-state): New variable.
20009         (org-fast-tag-selection): Allow setting TODO states through this
20010         interface.
20011         (org-cycle): Docstring updated.
20012         (org-todo-keyword-faces): New option.
20013         (org-get-todo-face): New function.
20014         (org-set-font-lock-defaults, org-agenda-highlight-todo):
20015         Use `org-get-todo-face'.
20016         (org-switch-to-buffer-other-window): New function.
20017         (org-table-edit-field, org-table-show-reference)
20018         (org-table-edit-formulas, org-add-log-note)
20019         (org-fast-tag-selection, org-agenda, org-prepare-agenda)
20020         (org-timeline): Use `org-switch-to-buffer-other-window' instead of
20021         `switch-to-buffer-other-window' to make sure that the temporary
20022         windows show up on the current frame.
20023         (org-mhe-get-message-real-folder, org-batch-store-agenda-views)
20024         (org-get-entries-from-diary, org-replace-region-by-html):
20025         Don't allow pop-up frames.
20026         (org-agenda-get-deadlines, org-agenda-get-scheduled):
20027         Fix problems with time-of-day.
20028         (org-export-get-title-from-subtree): New function.
20029         (org-agenda-get-scheduled, org-agenda-get-deadlines): Fix problems
20030         with listing items that are DONE.
20031         (org-change-tag-in-region): New command.
20032         (org-agenda-skip-scheduled-if-done)
20033         (org-agenda-skip-deadline-if-done): Docstring clarified.
20034         (org-mode): Hide drawers on startup.
20035         (org-get-todo-face): New function.
20036         (org-todo-keyword-faces): New option.
20037         (org-set-regexps-and-options): Use `org-remove-keyword-keys'.
20038         (org-remove-keyword-keys): New function.
20040 2007-08-30  Jari Aalto  <jari.aalto@cante.net>  (tiny change)
20042         * progmodes/grep.el (grep-find-ignored-directories):
20043         Add monotone _MTN bookkeeping directory in workspaces.
20044         Add RCS control directory.  List items in alphabetical order.
20046         * progmodes/grep.el (grep-files-aliases): Add cc alias.
20047         Sort items in alphabetical order.  Fix parens.
20049 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
20051         * vc-hg.el (vc-hg-extra-menu-map): New variable.
20052         (vc-hg-extra-menu, vc-hg-outgoing, vc-hg-incoming, vc-hg-push)
20053         (vc-hg-pull): New functions.
20054         (vc-hg-outgoing-mode, vc-hg-incoming-mode): New derived modes.
20056         * term/mac-win.el: Don't require url, only autoloaded url
20057         functions are used in this file.
20059 2007-08-29  Andreas Schwab  <schwab@suse.de>
20061         * shell.el (shell): Return correct value from interactive spec.
20063 2007-08-29  Glenn Morris  <rgm@gnu.org>
20065         * version.el (emacs-version): Increase to 23.0.50.
20067 2007-08-29  Jan Djärv  <jan.h.d@swipnet.se>
20069         * term/x-win.el (x-gtk-stock-map): :version changed to 23.1.
20071 2007-08-29  Juri Linkov  <juri@jurta.org>
20073         * loadup.el: Add "button" loading after "faces" and move "startup"
20074         to load after "button".
20076 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
20078         * loadup.el: Load term/mac-win on a Mac using Carbon.
20080         * term/mac-win.el: Provide mac-win.
20081         (mac-initialized): New variable.
20082         (mac-initialize-window-system): New function.  Move global setup here.
20083         (handle-args-function-alist, frame-creation-function-alist):
20084         (window-system-initialization-alist): Add mac entries.
20085         (x-setup-function-keys): New function containing all the
20086         top level function key definitions.
20088         * term/x-win.el (x-menu-bar-open): Use accelerate-menu.
20090         * env.el (read-envvar-name): Don't consider the environment frame param.
20092         * env.el (setenv):
20093         * frame.el (frame-initialize, make-frame):
20094         * faces.el (tty-set-up-initial-frame-faces):
20095         * server.el (server-process-filter): Set
20096         display-environment-variable and term-environment-variable.
20098         * server.el (server-process-filter): Set COLORFGBG and COLORTERM.
20100 2007-08-29  Jason Rumney  <jasonr@gnu.org>
20102         * loadup.el: Only load term/x-win when X is compiled in.
20103         Load term/w32-win and dependencies on windows-nt.
20105         * term/w32-win.el: Reorder to match x-win.el more closely.
20106         Provide w32-win.  Don't throw error when global window-system not w32.
20107         (internal-face-interactive): Remove obsolete function.
20108         (x-setup-function-keys): Use local-function-key-map.
20109         (w32-initialized): New variable.
20110         (w32-initialize-window-system): Set it.
20111         Move more global setup here.
20112         (x-setup-function-keys): New function.
20113         (w32-initialize-window-system): Move non function key global setup here.
20114         (x-cut-buffer-max): Remove.
20115         (w32-initialize-window-system): New function.
20116         (handle-args-function-alist, frame-creation-function-alist):
20117         (window-system-initialization-alist): Add w32 entries.
20119 2007-08-29  David Kastrup  <dak@gnu.org>
20121         * env.el (getenv): Pass frame to getenv-internal.
20123 2007-08-29  Károly Lőrentey  <lorentey@elte.hu>
20125         * version.el (emacs-version): Show if multi-tty is present.
20127         * loadup.el: Delay loading env; mule-conf gets confused by cl
20128         during bootstrap.  Also load termdev and term/x-win.
20130         * bindings.el (mode-line-client): New variable.
20131         (help-echo): Add it to the default mode-line format.
20133         * cus-start.el: Remove bogus window-system reference from GTK test.
20135         * progmodes/ebrowse.el (ebrowse-electric-list-mode-map)
20136         (ebrowse-electric-position-mode-map):
20137         * ebuff-menu.el (electric-buffer-menu-mode-map):
20138         * echistory.el (electric-history-map): Bind C-z to `suspend-frame',
20139         not `suspend-emacs'.
20141         * ediff-wind.el (ediff-setup-windows-automatic): New function.
20142         (ediff-window-setup-function): Use it as default.
20144         * files.el (save-buffers-kill-terminal): New function.
20145         (ctl-x-map): Change binding of C-x C-c to save-buffers-kill-terminal.
20147         * font-lock.el (lisp-font-lock-keywords-2): Add `let-environment'
20148         and `with-selected-frame'.
20150         * help-fns.el (describe-variable): Describe frame-local variables
20151         correctly.
20153         * simple.el (normal-erase-is-backspace-mode): Rewrite for multiple
20154         display support.
20155         (normal-erase-is-backspace-setup-frame): New function.
20157         * subr.el (with-selected-frame): New function.
20158         (read-quoted-char): Use terminal-local binding of
20159         local-function-key-map instead of function-key-map.
20161         * talk.el (talk): New function.
20162         (talk-handle-delete-frame): New function.
20163         (talk-add-display): Open a new frame only if FRAME was not a frame.
20165         * termdev.el: New file.
20167         * menu-bar.el (menu-bar-open): New function.  Bind it to f10.
20168         * term/x-win.el: Don't bind f10.
20169         * tmm.el: Remove autoload binding for f10.
20171         * international/encoded-kb.el (encoded-kbd-setup-display): Use
20172         `set-input-meta-mode'.  Fix broken condition before set-input-mode.
20173         Store the saved input method as a terminal parameter.  Add keymap
20174         parameter.  Use it instead of changing key-translation-map directly.
20175         (saved-key-translation-map, encoded-kbd-mode, saved-input-mode):
20176         Remove.
20177         (encoded-kbd-setup-display): New function.
20179         * international/mule-cmds.el (set-locale-environment): Fix getenv
20180         call.  Use save-buffers-kill-terminal.  Ignore window-system; always
20181         set the keyboard coding system.  Add DISPLAY parameter.
20182         (set-display-table-and-terminal-coding-system): Add DISPLAY
20183         parameter.  Pass it to set-terminal-coding-system.
20185         * international/mule.el (keyboard-coding-system): Test for
20186         encoded-kbd-setup-display, not encoded-kbd-mode.
20187         (set-terminal-coding-system, set-keyboard-coding-system): Add
20188         DISPLAY parameter.
20189         (set-keyboard-coding-system): Use encoded-kbd-setup-display.
20191         * term/README: Update.
20193         * term/linux.el (terminal-init-linux): Use `set-input-meta-mode'.
20195         * term/x-win.el (x-setup-function-keys): New function.  Move
20196         function-key-map tweaks here.  Protect against multiple calls on
20197         the same terminal.  Use terminal-local binding of
20198         local-function-key-map instead of function-key-map.
20199         (x-initialize-window-system): Make a copy of pure list.  Pass a
20200         frame getenv.
20202         * term/vt200.el, term/vt201.el, term/vt220.el, term/vt240.el:
20203         * term/vt300.el, term/vt320.el, term/vt400.el, term/vt420.el:
20204         * term/AT386.el, term/internal.el, term/iris-ansi.el, term/lk201.el:
20205         * term/mac-win.el, term/news.el, term/rxvt.el, term/sun.el:
20206         * term/tvi970.el, term/wyse50.el: Use terminal-local binding of
20207         local-function-key-map instead of function-key-map.
20209         * term/rxvt.el, term/xterm.el: Speed up load time by protecting
20210         `substitute-key-definition' and `define-key' calls against
20211         multiple execution.  Use terminal-local binding of
20212         local-function-key-map instead of function-key-map.  Pass a frame
20213         to getenv.
20215         * edmacro.el (edmacro-format-keys):
20216         * emulation/cua-base.el (cua--pre-command-handler):
20217         * isearch.el (isearch-other-meta-char):
20218         * xt-mouse.el: Use terminal-local binding of
20219         local-function-key-map instead of function-key-map.
20221         * fringe.el (set-fringe-mode): Simplify and fix using
20222         `modify-all-frames-parameters'.
20223         * scroll-bar.el (set-scroll-bar-mode): Ditto.
20224         * tool-bar.el (tool-bar-mode): Ditto.  Remove 'tool-bar-map length
20225         check before calling `tool-bar-setup'.
20226         (tool-bar-setup): New variable.
20227         (tool-bar-setup): Use it to guard against multiple calls.  Add
20228         optional frame parameter, and select that frame before adding items.
20229         (toggle-tool-bar-mode-from-frame): New function.
20231         * menu-bar.el (toggle-menu-bar-mode-from-frame): New function.
20232         (menu-bar-showhide-menu): Use toggle-menu-bar-mode-from-frame and
20233         toggle-tool-bar-mode-from-frame to change "Menu-bar" and
20234         "Tool-bar" toggles to reflect the state of the current frame.
20235         (menu-bar-mode): Simplify and fix using `modify-all-frames-parameters'.
20237         * env.el: Require cl for byte compilation (for `block' and `return').
20238         (environment, setenv-internal): New functions.
20239         (let-environment): New macro.
20240         (setenv, getenv): Add optional terminal parameter.  Update docs.
20241         (setenv): Use setenv-internal.  Always set process-environment.
20242         Handle `local-environment-variables'.
20243         (read-envvar-name, setenv, getenv): Use frame parameters
20244         to store the local environment, not terminal parameters.  Include
20245         `process-environment' as well.
20247         * faces.el (tty-run-terminal-initialization): New function.
20248         (tty-create-frame-with-faces): Use it.  Set up faces and
20249         background mode only after the terminal has been initialized.
20250         Call terminal-init-*.  Don't load the initialization file more
20251         than once.  Call set-locale-environment.
20252         (frame-set-background-mode): Handle the 'background-mode terminal
20253         parameter.
20254         (tty-find-type): New function.
20255         (x-create-frame-with-faces): Remove bogus check for
20256         first frame.  Call `tool-bar-setup'.  Don't make frame visible
20257         until we are done setting up all its parameters.  Call
20258         x-setup-function-keys.
20260         * frame.el (make-frame): Always inherit 'environment and 'client
20261         parameters.  Set up the 'environment frame parameter, when needed.
20262         Also inherit 'client parameter.  Don't override explicitly
20263         specified values with inherited ones.  Add 'terminal frame
20264         parameter.  Append window-system-default-frame-alist to parameters
20265         before calling frame-creation-function.
20266         (frame-initialize): Copy the environment from the initial frame.
20267         (window-system-default-frame-alist): Enhance doc string.
20268         (frame-notice-user-settings): Don't put 'tool-bar-lines in
20269         `default-frame-alist' when initial frame is on a tty.
20270         (modify-all-frames-parameters): Simplify using `assq-delete-all'.
20271         Remove specified parameters from `window-system-default-frame-alist'.
20272         (make-frame-on-tty, framep-on-display, suspend-frame):
20273         Extend doc string, update parameter names.
20274         (frames-on-display-list): Use terminal-id to get the display id.
20275         (frame-notice-user-settings): Extend to apply
20276         settings in `window-system-default-frame-alist' as well.
20277         (terminal-id, terminal-parameters, terminal-parameter)
20278         (set-terminal-parameter, terminal-handle-delete-frame): New functions.
20279         (delete-frame-functions): Add to `delete-frame-functions' hook.
20280         (blink-cursor-mode): Adapt blink-cursor-mode default
20281         value from startup.el.
20282         (make-frame-on-display): Protect condition on x-initialized when
20283         x-win.el is not loaded.  Update doc.
20284         (suspend-frame): Use display-controlling-tty-p to decide between
20285         suspend-emacs and suspend-tty.
20286         (frames-on-display-list): Update for display ids.
20287         (framep-on-display): Ditto.
20288         (suspend-frame): Use display-name, not frame-tty-name.
20289         (selected-terminal): New function.
20291         * server.el: Use `device' instead of `display' or `display-id' in
20292         variable and client parameter names.
20293         (server-select-display): Remove (unused).
20294         (server-tty-live-p, server-handle-delete-tty): Remove.
20295         (server-unquote-arg, server-quote-arg, server-buffer-clients):
20296         Update docs.
20297         (server-getenv-from, server-with-environment, server-send-string)
20298         (server-save-buffers-kill-terminal): New functions.
20299         (server-delete-client): Handle quits in kill-buffer.  Don't kill
20300         modified buffers.  Add extra logging.  Delete frames after
20301         deleting the tty.  Clear 'client parameter before deleting a frame.
20302         Use delete-display, not delete-tty.
20303         (server-visit-files): Don't set `server-existing-buffer' if the
20304         buffer already has other clients.  Return list of buffers
20305         created.  Update doc.  Don't set client-record when nowait.
20306         (server-handle-delete-frame): Delete the client if this was its
20307         last frame.  Check that the frame is alive.  Remove bogus comment.
20308         Add note on possible race condition.  Delete tty clients, if needed.
20309         (server-handle-suspend-tty): Use server-send-string.  Kill the
20310         client in case of errors from process-send-string.  Use the display
20311         parameter.
20312         (server-unload-hook): Remove obsolete delete-tty hook.
20313         (server-start): Ask before restarting if the old server still has
20314         clients.  Add feedback messages.  Remove obsolete delete-tty hook.
20315         (server-process-filter): Use server-send-string.  Accept `-dir'
20316         command.  Switch to *scratch* immediately after creating the frame,
20317         before evaluating any -evals.  Protect `display-splash-screen'
20318         call in a condition-case.  Explain why.  Call
20319         `display-startup-echo-area-message' before
20320         `display-splash-screen'.  Don't display the splash screen when no
20321         frame was created.  Show the Emacs splash screen and startup echo
20322         area message.  Display the *scratch* buffer by default.  Store the
20323         local environment in a frame (not terminal) parameter.  Do not try
20324         to decode environment strings.  Fix reference to the 'display
20325         frame parameter.  Change syntax of environment variables.  Put
20326         environment into terminal parameters, not client parameters.  Use
20327         a dummy client with --no-wait's X frames.  In `-position LINE'
20328         handler, don't ruin the request string until the line number is
20329         extracted.  Log opened files.  Handle -current-frame command.
20330         Don't create frames when it is given.  Don't bind X frames to the
20331         client when we are in -no-wait mode.  Set locale environment
20332         variables from client while creating tty frames.  Disable call to
20333         configure-display-for-locale.  When processing -position command,
20334         don't change the request string until the parameters are
20335         extracted.  Don't try to create an X frame when Emacs does not
20336         support it.  Improve logging.  Temporarily set ncurses-related
20337         environment variables to those of the client while creating a new
20338         tty frame.  Select buffers opened by nowait clients, don't leave
20339         them buried under others.  Set the display parameter, and use it
20340         when appropriate.
20342         * startup.el (display-startup-echo-area-message): Handle
20343         `inhibit-startup-echo-area-message' here.
20344         (command-line-1): Moved from here.
20345         (fancy-splash-screens): Use `overriding-local-map' instead of
20346         `overriding-terminal-local-map' for now; the latter doesn't work
20347         right, it looses keypresses to another terminal.  Use
20348         `overriding-terminal-local-map' to set up keymap.  Install a
20349         `delete-frame-functions' hook to catch `delete-frame' events.
20350         Ignore `select-window' events to cope better with
20351         `focus-follows-mouse'.  Don't switch back to the original buffer
20352         if the splash frame has been killed.  Restore previous buffer, even
20353         if it's *scratch*.
20354         (normal-splash-screen): Don't let-bind `mode-line-format'; it
20355         changes the global binding - setq it instead.  Use
20356         `save-buffers-kill-terminal'.
20357         (display-splash-screen): Don't do anything if the splash screen is
20358         already displayed elsewhere.
20359         (fancy-splash-exit, fancy-splash-delete-frame): New functions.
20360         (command-line): Replace duplicated code with a call to
20361         tty-run-terminal-initialization.  Don't load the terminal
20362         initialization file more than once.  Remove call to nonexistent
20363         function `set-locale-translation-file-name'.
20365         * xt-mouse.el (xterm-mouse-x, xterm-mouse-y): Convert to terminal
20366         parameters.
20367         (xterm-mouse-position-function, xterm-mouse-event): Update.
20368         (xterm-mouse-mode): Don't depend on current value of window-system.
20369         (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
20370         Update for multi-tty.
20371         (turn-on-xterm-mouse-tracking-on-terminal)
20372         (turn-off-xterm-mouse-tracking-on-terminal)
20373         (xterm-mouse-handle-delete-frame): New functions.
20374         (delete-frame-functions, after-make-frame-functions)
20375         (suspend-tty-functions, resume-tty-functions): Install extra hooks
20376         for multi-tty.
20378 2007-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
20380         * simple.el (invisible-p): Remove: implemented in C now.
20381         (line-move-invisible-p): Remove obsolete alias.
20383 2007-08-28  Juri Linkov  <juri@jurta.org>
20385         * image-mode.el (image-type): New variable.
20386         (image-mode): Set default major mode name to "Image[text]".
20387         (image-minor-mode): Change LIGHTER to display image-type in the
20388         mode line.
20389         (image-minor-mode): Set default image-type to "text".
20390         (image-toggle-display): After switching to text mode, set
20391         image-type to "text" and major mode name to "Image[text]".
20392         After switching to image mode, set image-type to actual image
20393         type, and add image type to major mode name.  Let-bind the same
20394         variable names as arguments of `image-type' and `create-image'.
20395         Bind `type' to the result of `image-type' and use it as arg
20396         of `create-image' to not determine the image type twice.
20398 2007-08-28  Michael Albinus  <michael.albinus@gmx.de>
20400         * net/tramp.el (tramp-handle-set-file-times): Flush the file properties.
20401         (tramp-set-file-uid-gid, tramp-get-local-uid)
20402         (tramp-get-local-gid): New defuns.
20403         (tramp-handle-copy-file): Handle new parameter PRESERVE-UID-GID.
20404         (tramp-do-copy-or-rename-file): New parameter PRESERVE-UID-GID.
20405         Improve fast track.
20406         (tramp-do-copy-or-rename-file-directly): Sync parameter list with
20407         the other tramp-do-copy-or-rename-file-* functions.  Major rewrite.
20408         (tramp-handle-file-local-copy, tramp-handle-insert-file-contents)
20409         (tramp-handle-write-region): Improve fast track.
20410         (tramp-handle-file-remote-p): IDENTIFICATION can also be `localname'.
20411         (tramp-maybe-open-connection): Let `process-adaptive-read-buffering'
20412         be nil.
20414 2007-08-28  Ivan Kanis  <apple@kanis.eu>
20416         * time.el: New feature to display several time zones in a buffer.
20417         (display-time-world-mode, display-time-world-display)
20418         (display-time-world, display-time-world-timer): New functions.
20419         (display-time-world-list, display-time-world-time-format)
20420         (display-time-world-buffer-name, display-time-world-timer-enable)
20421         (display-time-world-timer-second, display-time-world-mode-map):
20422         New variables.
20424 2007-08-28  Jan Djärv  <jan.h.d@swipnet.se>
20426         * term/x-win.el (x-gtk-stock-map): New variable.
20427         (x-gtk-map-stock): New function.
20429         * info.el (info-tool-bar-map): Add :rtl keyword to right/left-arrow and
20430         prev/next-node.
20432 2007-08-28  Johan Bockgård  <bojohan@dd.chalmers.se>  (tiny change)
20434         * play/gamegrid.el (gamegrid-init): Set line-spacing to 0.
20436 2007-08-28  Glenn Morris  <rgm@gnu.org>
20438         * progmodes/cc-langs.el (c-constant-kwds): Add java: null, true, false.
20440 2007-08-27  Thien-Thi Nguyen  <ttn@gnuvola.org>
20442         * progmodes/modula2.el (m2-definition, m2-module):
20443         Don't use previous-line.  Reported by T. V. Raman.
20445 2007-08-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20447         * term/mac-win.el (mac-handle-toolbar-switch-mode): Add explicit
20448         argument to tool-bar-mode call.
20450 2007-08-27  Glenn Morris  <rgm@gnu.org>
20452         * diff-mode.el (diff-find-file-name): Only accept regular files,
20453         to rule out /dev/null, directories, etc.
20455         * vc-svn.el (vc-svn-diff): If the repository version of all the
20456         files is the same as the specified OLDVERS, do a local diff.
20458 2007-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
20460         * uniquify.el (uniquify-rationalize-file-buffer-names): Check liveness
20461         of buffers in uniquify-managed.
20463         * simple.el (invisible-p): Rename from text-invisible-p.
20464         Update callers.
20466         * progmodes/cperl-mode.el (defcustom, x-color-defined-p, cperl-is-face)
20467         (cperl-is-face, cperl-force-face, cperl-etags-snarf-tag, cperl-mode)
20468         (cperl-etags-snarf-tag, cperl-etags-goto-tag-location, cperl-init-faces)
20469         (cperl-etags-goto-tag-location): Use new style backquotes.
20471         * net/browse-url.el: Remove spurious * in custom docstrings.
20472         (browse-url-filename-alist): Use new-style backquote.
20474         * emacs-lisp/backquote.el (backquote-unquote-symbol)
20475         (backquote-splice-symbol): Clarify they're not new-style unquotes.
20477         * emacs-lisp/edebug.el (edebug-list-form, edebug-match-symbol, \,)
20478         (\,@): Backslash the , and ,@ which are not new-style unquotes.
20480         * textmodes/texinfmt.el (\,): Clarify it's not a new-style unquote.
20482         * net/socks.el (socks-username/password-auth-filter):
20483         Remove unused vars `state' and `desired-len'.
20484         (socks-parse-services, socks-nslookup-host): Use with-current-buffer.
20485         (socks-wait-for-state-change): Use new-style backquotes.
20487         * pcvs.el (cvs-mode-status): Fix long-standing typo.
20489         * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Check old-style
20490         backquotes after each `read' rather than once per buffer.
20492         * dframe.el: Remove spurious * in custom docstrings.
20493         (dframe-xemacsp): Remove, use (featurep 'xemacs) instead.
20494         (dframe-xemacs20p): Remove, inline at the sole use point.
20495         (defface): Don't defvar the face, don't use old-style backquote.
20496         (defcustom): Don't use old-style backquote.
20497         (dframe-frame-parameter, dframe-mouse-event-p):
20498         Make it obvious that it's always defined.
20499         (dframe-popup-kludge): New function to replace
20500         dframe-xemacs-popup-kludge and dframe-xemacs-popup-kludge.
20501         (dframe-frame-mode, dframe-set-timer-internal)
20502         (dframe-mouse-set-point): Remove use of with-no-warnings from
20503         XEmacs-specific code.
20504         (dframe-set-timer-internal): Fix very old bug with
20505         post-command-idle-hook.
20507         * emacs-lisp/byte-opt.el (byte-optimize-featurep): Handle `sxemacs'.
20509         * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Display a big fat
20510         warning if the file uses old style backquotes.
20512         * emacs-lisp/bytecomp.el (byte-compile-log-file)
20513         (byte-recompile-directory, byte-compile-file)
20514         (byte-compile-from-buffer): Use with-current-buffer.
20516         * simple.el (text-invisible-p): Rename from line-move-invisible-p.
20517         (line-move-invisible-p): Keep as an obsolete alias, just to be safe.
20518         (line-move-1, line-move-finish, line-move-to-column)
20519         (move-end-of-line, move-beginning-of-line): Use new name.
20521         * emacs-lisp/backquote.el (backquote-delay-process): Fix last change.
20523         * progmodes/ada-mode.el: Fix up comment style in header.
20524         (ada-check-emacs-version): Remove.
20525         (ada-mode): Set parse-sexp-* even if they don't exist: can't hurt.
20526         (ada-region-selected): Use (featurep 'xemacs) rather than contortions
20527         to try and quieten the byte-compiler.
20528         (ada-create-keymap): Use [(..)] keys, which work on both (X)Emacs.
20530         * vc.el (vc-annotate-warp-version): Don't use previous-line.
20532 2007-08-27  Johan Bockgård  <bojohan@dd.chalmers.se>
20534         * net/browse-url.el (browse-url-emacs): New function.
20536 2007-08-27  Thien-Thi Nguyen  <ttn@gnuvola.org>
20538         * emacs-lisp/avl-tree.el: New file.
20540 2007-08-26  Michaël Cadilhac  <michael@cadilhac.name>
20542         * hi-lock.el (hi-lock-unface-buffer): Show a x-menu only if the mouse
20543         was used.
20545 2007-08-26  Sean O'Rourke  <seano@cs.ucsd.edu>
20547         * complete.el (PC-do-completion): Make RET accept a non-unique but
20548         complete expansion again.
20550 2007-08-26  Thien-Thi Nguyen  <ttn@gnuvola.org>
20552         * eshell/esh-opt.el (eshell-eval-using-options):
20553         Add debug declaration.
20555 2007-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
20557         * log-view.el (log-view-toggle-mark-entry): Add docstring.
20558         (log-view-get-marked): Likewise.
20560         * vc-hooks.el (vc-registered): Use mapc instead of mapcar.
20561         (vc-delete-automatic-version-backups): Likewise.
20563         * vc.el (vc-dired-buffers-for-dir): Likewise.
20565 2007-08-25  Dan Nicolaescu  <dann@ics.uci.edu>
20567         * progmodes/cperl-mode.el (cperl-indent-level): Autoload the
20568         safe-local-variable setting.
20569         * progmodes/perl-mode.el (perl-indent-level): Likewise.
20571         * log-view.el (log-view-marked-list): Delete variable.
20572         (log-view-mode): Don't use it.
20573         (log-view-toggle-mark-entry): Likewise, simplify.
20574         (log-view-current-tag): Don't return properties.
20575         (log-view-get-marked): New function.
20577 2007-08-25  Alexandre Julliard  <julliard@winehq.org>
20579         * vc-git.el (vc-git-mode-line-string): New function.
20581 2007-08-25  Alan Mackenzie  <acm@muc.de>
20583         * progmodes/cc-langs.el (c-other-decl-block-key-in-symbols-alist):
20584         new language variable.
20586         * progmodes/cc-engine.el (c-brace-anchor-point): new function.
20587         (c-add-stmt-syntax): Give accurate anchor points for "namespace",
20588         "extern" etc., rather than BOI.  Fix addition of spurious
20589         syntactic-symbol 'defun-block-intro, replacing it with
20590         'innamespace, etc.
20592 2007-08-25  Juri Linkov  <juri@jurta.org>
20594         * files.el (auto-mode-alist): Move "\\.x[bp]m\\'" to image-mode.el.
20596         * image-mode.el: Add autoloads to put associations in auto-mode-alist:
20597         associate "\\.x[bp]m\\'" with c-mode and image-mode-maybe, and
20598         "\\.svgz?\\'" with xml-mode and image-mode-maybe.
20600         * image.el (image-type-header-regexps): Use more complex regexp for svg.
20601         (image-type-file-name-regexps): Add ("\\.svgz?\\'" . svg).
20602         (image-type-auto-detectable): Add (svg . maybe).
20604         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add .svgz
20605         to treat it like .tgz.
20607         * calendar/cal-bahai.el: Add file coding cookie.
20609 2007-08-25  Reiner Steib  <Reiner.Steib@gmx.de>
20611         * pcvs.el (cvs-query-directory): Only prompt when prefix is given.
20612         Don't behave differently when executed via M-x.  Add doc string.
20614         * sort.el (sort-fold-case, sort-numeric-base): Mark as
20615         safe-local-variable.
20617 2007-08-25  Jay Belanger  <jay.p.belanger@gmail.com>
20619         * calc/calc-forms.el (var-TimeZone): Make nil explicitly
20620         the default value.
20621         (math-calendar-tzinfo): New variable.
20622         (math-get-calendar-tzinfo): New function.
20623         (calcFunc-tzone, calcFunc-dst): Use Emacs's calendar
20624         to get information when zone is nil.
20626 2007-08-24  Dan Nicolaescu  <dann@ics.uci.edu>
20628         * log-view.el (log-view-toggle-mark-entry): New function.
20629         (log-view-mode-map): Bind it.
20630         (log-view-marked-list): New variable.
20631         (log-view-mode): Make it local.
20633 2007-08-24  Thien-Thi Nguyen  <ttn@gnuvola.org>
20635         * play/zone.el (zone-pgm-rat-race): New func.
20636         (zone-programs): Add `zone-pgm-rat-race'.
20638 2007-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
20640         * emacs-lisp/byte-opt.el (byte-optimize-if): Don't presume `clause' is
20641         a list.
20643 2007-08-24  Thien-Thi Nguyen  <ttn@gnuvola.org>
20645         * progmodes/hideshow.el (hs-match-data): Delete alias.
20646         (hs-hide-block-at-point, hs-find-block-beginning)
20647         (hs-show-block): Use `match-data' directly.
20649 2007-08-24  Martin Rudalics  <rudalics@gmx.at>
20651         * format.el (format-alist): Fix typo in doc-string.
20653 2007-08-24  Michael Albinus  <michael.albinus@gmx.de>
20655         * net/tramp.el (tramp-local-host-p): New defun.
20656         (tramp-handle-file-local-copy, tramp-handle-write-region):
20657         Implement fast track when being on the local host.
20658         (tramp-file-name-handler): Don't set "started" property.  It shall
20659         be reserved for the "ftp" method.
20660         (tramp-make-copy-program-file-name): Use `tramp-file-name-real-host'.
20662         * net/tramp-ftp.el (top): Autoload `tramp-set-connection-property'.
20663         (tramp-ftp-file-name-handler): Set "started" property.
20665 2007-08-24  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
20667         * files.el (backup-buffer-copy): Don't wrap delete in
20668         condition-case, only try to delete if file exists.
20670 2007-08-24  Glenn Morris  <rgm@gnu.org>
20672         * files.el (backup-buffer-copy): Revert 2007-08-22 change.
20674         * startup.el (tutorial-directory): Set with eval-at-startup so it
20675         gets the right value in an installed Emacs.
20677 2007-08-24  Nikolaj Schumacher  <n_schumacher@web.de>  (tiny change)
20679         * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): New face.
20680         (eldoc-highlight-function-argument): Use it.
20682 2007-08-23  Masatake YAMATO  <jet@gyve.org>
20684         * progmodes/cc-fonts.el (gtkdoc-font-lock-doc-comments): Highlight
20685         name of parameters in document body.
20687 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
20689         * emacs-lisp/bytecomp.el (byte-compile-output-docform)
20690         (byte-compile-output-as-comment): Use with-current-buffer rather than
20691         a weird set-buffer&prog1 combination.
20693         * emacs-lisp/byte-opt.el (byte-optimize-if): Move `progn' out of the
20694         test so as to optimise cases where the `progn's result is constant.
20696 2007-08-23  Thien-Thi Nguyen  <ttn@gnuvola.org>
20698         * locate.el (locate-get-file-positions):
20699         Use line-beginning-position and line-end-position.
20701 2007-08-23  John Wiegley  <johnw@newartisans.com>
20703         * calendar/cal-bahai.el: Added in the diacriticals that were
20704         missing for many of the month names.
20706 2007-08-22  Jason Rumney  <jasonr@gnu.org>
20708         * vc-hooks.el (vc-menu-map-filter): Reapply 2007-08-06 bugfix.
20710 2007-08-22  Chong Yidong  <cyd@stupidchicken.com>
20712         * image-mode.el (image-minor-mode): Use image-mode-text-map.
20714 2007-08-22  Sean O'Rourke  <sorourke@cs.ucsd.edu>
20716         * dabbrev.el (dabbrev--progress-reporter): New variable.
20717         (dabbrev--scanning-message): Delete func.
20718         (dabbrev--find-expansion): Use a progress reporter
20719         instead of dabbrev--scanning-message.
20721 2007-08-22  Michael Albinus  <michael.albinus@gmx.de>
20723         * comint.el (comint-exec-1): Raise an error if
20724         `start-file-process' does not return a process object.
20726         * shell.el (shell): Prompt for `default-directory' if it is a
20727         remote file name, and if called with a prefix arg.
20729 2007-08-22  Sam Steingold  <sds@gnu.org>
20731         * pcvs.el (cvs-vc-command-advice): Fix a typo in code (file->files).
20733 2007-08-22  Carsten Dominik  <dominik@science.uva.nl>
20735         * textmodes/org-export-latex.el: New file.
20737         * textmodes/org-publish.el (org-publish-org-to-latex): New function.
20739         * textmodes/org.el (org-agenda-skip): Allow a form for
20740         `org-agenda-skip-function'.
20741         (org-agenda-redo): Re-use local settings.
20742         (org-agenda): Store local settings.
20743         (org-agenda-deadline-faces): New option.
20744         (org-agenda-deadline-face): New function.
20745         (org-agenda-get-deadlines, org-agenda-get-scheduled): Also handle
20746         entries on their due date.
20747         (org-agenda-get-timestamps): No longer handle the due dates of
20748         schedules and deadline items.
20749         (org-insert-link-global, org-open-at-point-global): New commands.
20750         (org-export-as-ascii): Call `org-cleaned-string-for-export' with a
20751         :for-ascii parameter.
20752         (org-skip-comments): Function removed.
20753         (org-cleaned-string-for-export): Handle special table lines.
20754         (org-global-properties): New option.
20755         (org-entry-get-with-inheritance): Check global properties.
20756         (org-local-properties): New variable.
20757         (org-set-regexps-and-options): Find the #+PROPERTY line.
20758         (org-link-types): Change type into variable (was constant).
20759         (org-make-link-regexps): New function.
20760         (org-link-re-with-space, org-link-re-with-space2)
20761         (org-angle-link-re, org-plain-link-re, org-bracket-link-regexp)
20762         (org-bracket-link-analytic-regexp, org-any-link-re): Creation of
20763         these regular expressions happens now in the function
20764         `org-make-link-regexps'.
20765         (org-store-link): Call the functions in
20766         `org-store-link-functions'.
20767         (org-add-link-type): New function.
20768         (org-store-link-functions): New variable.
20769         (org-activate-tags): Force matches to be in headlines.
20770         (org-batch-store-agenda-views): Fix bug with killing agenda buffer.
20771         (org-columns-display-here): Make sure this works in a narrowed
20772         buffer by checking for point-min.
20773         (org-columns-display-here): Make the rest of the line intangible,
20774         so that point never can be there.
20775         (org-cleaned-string-for-export): Use `with-current-buffer'.
20776         (org-replace-region-by-html): Use `with-current-buffer'.
20777         (org-unfontify-region, org-do-occur, org-columns-display-here)
20778         (org-columns-remove-overlays, org-columns-quit)
20779         (org-columns-edit-value, org-columns-next-allowed-value)
20780         (org-eval-in-calendar, org-agenda-undo, org-no-read-only)
20781         (org-finalize-agenda, org-remove-subtree-entries-from-agenda)
20782         (org-agenda-todo, org-agenda-change-all-lines)
20783         (org-agenda-align-tags, org-agenda-priority)
20784         (org-agenda-set-tags, org-agenda-toggle-archive-tag)
20785         (org-agenda-show-new-time, org-cleaned-string-for-export)
20786         (org-export-grab-title-from-buffer)
20787         (org-export-as-ascii, org-export-as-html): Use `inhibit-read-only'
20788         instead of `buffer-read-only'.
20789         (org-export-as-html): Set `coding-system-for-write'.
20790         (org-remember-store-without-prompt): New option.
20791         (org-archive-subtree): Fixed bug with modifying TODO keyword.
20792         (org-beginning-of-line): Also treat C-a special in items.
20793         (org-table-convert-refs-to-rc): Fixed problem with column
20794         reference after "..".
20795         (org-columns-compute): Don't mark buffer modified because of text
20796         properties.
20797         (org-batch-store-agenda-views): Use the variable
20798         `default-directory', not the function.
20799         (org-clock-out-if-current): Respect `org-clock-out-when-done'.
20800         (org-clock-out-when-done): New option.
20801         (org-html-entities): Added HTML entities for smileys.
20803 2007-08-22  Glenn Morris  <rgm@gnu.org>
20805         * image.el (create-image): Doc fix.
20807         * startup.el (tutorial-directory): New constant.
20808         (fancy-splash-text): Tutorials now in tutorial-directory.
20809         * tutorial.el (help-with-tutorial): Tutorials now in
20810         tutorial-directory.
20812 2007-08-22  Michael Albinus  <michael.albinus@gmx.de>
20814         * net/tramp.el (top): Require cl.el, when `copy-tree' is not available
20815         otherwise.
20816         (tramp-get-remote-path): New defun.  Replace occurrences of
20817         `tramp-default-remote-path' by this function.
20818         (tramp-set-remote-path): Move most of the code to
20819         `tramp-get-remote-path'.
20820         (tramp-get-ls-command, tramp-get-remote-id): Don't check for not
20821         existing directories, this is done already in
20822         `tramp-get-remote-path'.
20824 2007-08-22  Paul Pogonyshev  <pogonyshev@gmx.net>
20826         * image-file.el (image-file-name-extensions): Add "svg".
20827         * image.el (image-type-header-regexps): Add svg entry.
20829 2007-08-22  Glenn Morris  <rgm@gnu.org>
20831         * files.el (backup-buffer-copy): Check backup directory is
20832         writable, to avoid infloop deleting old backup.
20834         * mail/rmail.el (rmail-movemail-variant-p): Call on load to set
20835         movemail related variables.
20836         (rmail-insert-inbox-text): Use only rmail-movemail-program, which
20837         will now be set before this is called.
20839 2007-08-21  Juri Linkov  <juri@jurta.org>
20841         * delsel.el (delete-selection-pre-hook):
20842         * emulation/cua-base.el (cua-paste): Use `mouse-region-match'
20843         instead of checking last-command.
20845 2007-08-21  Juri Linkov  <juri@jurta.org>
20847         * loadup.el: Preload "button".
20849 2007-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20851         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20852         Add previous-line and next-line.
20854         * vc-arch.el (vc-arch-extra-menu-map): New var and fun.
20855         (vc-arch-find-file-not-found-hook): Remove, it's now the default.
20857         * vc-hooks.el (vc-menu-entry): New var.
20858         (vc-mode-line-map): Use it so that this menu also uses the extra-menu.
20859         (menu-bar-tools-menu): Add the VC menu here rather than in menu-bar.el.
20860         (vc-menu-map): Declare and initialize in one step.
20861         (vc-menu-map-filter): Move&rename from menu-bar.el:menu-bar-vc-filter.
20863         * menu-bar.el (vc-menu-map): Don't setup any more.
20864         Instead, just create the proper spot in the menu.
20866 2007-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20868         * smerge-mode.el (smerge-resolve): New arg `safe'.
20869         (smerge-resolve-all, smerge-batch-resolve): New function.
20870         (smerge-refine): Make sure `diff' returns the expected result.
20871         (smerge-parsep-re): New const.
20872         (smerge-mode): Use it to adjust paragraph-separate.
20874         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
20875         Correctly match / regexp matchers as first char on a line when
20876         fontifying only that line.
20878         * emacs-lisp/cl-macs.el (cl-transform-lambda): Preserve the match-data.
20880 2007-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20882         * vc-bzr.el: Don't fiddle with vc-handled-backend.
20883         (vc-bzr-registered): Don't redundantly protect against
20884         file-error.  Actually use the format-specific code.
20885         (vc-bzr-buffer-nonblank-p): Remove.
20886         (vc-bzr-status): Change `kindchange' -> `kindchanged'.
20888 2007-08-20  Juri Linkov  <juri@jurta.org>
20890         * startup.el (fancy-splash-text): Change multiple tabs into one
20891         tab.  Remove "Useful File menu items" section (with "Exit Emacs"
20892         and "Recover Crashed Session").
20893         (fancy-splash-screens): Set tab-width to 22.
20894         (normal-splash-screen): Replace literal tabs with \t and
20895         fix whitespace.  Remove "Useful File menu items" section (with
20896         "Exit Emacs" and "Recover Crashed Session").
20898 2007-08-20  Johannes Weiner  <hannes@saeurebad.de>  (tiny change)
20900         * emacs-lisp/lisp-mode.el (preceding-sexp): New fun, the code was
20901         extracted from `eval-last-sexp-1'.
20902         (eval-last-sexp-1): Call `preceding-sexp'.
20904 2007-08-20  Thien-Thi Nguyen  <ttn@gnuvola.org>
20906         * vc-rcs.el (vc-rcs-annotate-command):
20907         Fix bug introduced 2007-07-18T16:32:40Z!esr@snark.thyrsus.com:
20908         Add back :vc-annotate-prefix propertization.
20910 2007-08-20  Andreas Schwab  <schwab@suse.de>
20912         * mail/rmail.el (rmail-autodetect): Doc fix.
20914 2007-08-19  Juri Linkov  <juri@jurta.org>
20916         * startup.el (normal-splash-screen): Add more links.
20918 2007-08-19  Juri Linkov  <juri@jurta.org>
20920         * startup.el (splash-screen-keymap): Rename from `fancy-splash-keymap'
20921         because it's common to both types of splash screen: fancy and normal.
20922         Bind SPC to scroll-up, DEL to scroll-down and `q' to exit-splash-screen.
20923         (exit-splash-screen): Rename from `fancy-splash-quit'.
20924         Use `quit-window' instead of `kill-buffer'.
20925         (fancy-splash-head): Use make-button to insert GNU image link.
20926         (fancy-splash-screens, normal-splash-screen): Rename " About GNU
20927         Emacs" to "*About GNU Emacs*", and " GNU Emacs" to "*GNU Emacs*".
20928         (normal-splash-screen): Put "Browse manuals" on the same line with
20929         "Emacs manual".  Remove descriptions from "Useful tasks" and put
20930         all links in two columns on two lines.
20932 2007-08-19  Michael Kifer  <kifer@cs.stonybrook.edu>
20934         * emulation/viper.el (viper-remove-hooks): Remove some additional
20935         viper hooks when the user calls viper-go-away.
20936         (viper-go-away): Restore the default of default-major-mode.
20937         Save the value of default-major-mode before vaperization.
20939         * emulation/viper-cmd.el: Replace error "" with "Viper bell".
20941         * emulation/viper-ex.el: Replace error "" with "Viper bell".
20943         * ediff-util.el (ediff-make-temp-file): Use the coding system of the
20944         buffer for which file is created.
20946 2007-08-19  Glenn Morris  <rgm@gnu.org>
20948         * Makefile.in (custom-deps, finder-data, autoloads, recompile)
20949         (progmodes/cc-mode.elc, mh-e/mh-loaddefs.el): Use $(emacs) rather
20950         than $(EMACS), so that EMACSLOADPATH is set.  Prevents any system
20951         shadow files messing up the compilation.
20953 2007-08-18  Glenn Morris  <rgm@gnu.org>
20955         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Add doc
20956         string.  Also apply eldoc-argument-case in the help-split-fundoc
20957         case.  Adapt for changed behavior of eldoc-function-argstring,
20958         eldoc-function-argstring-format, and
20959         eldoc-highlight-function-argument.
20960         (eldoc-highlight-function-argument): Handle nil INDEX argument,
20961         just call eldoc-docstring-format-sym-doc in that case.
20962         (eldoc-function-argstring): Change the behavior.  Now it converts
20963         an argument list to a string.
20964         (eldoc-function-argstring-format): Change the behavior.  Now it
20965         applies `eldoc-argument-case' to a string.
20967         * progmodes/scheme.el (scheme-mode-variables): Set
20968         font-lock-comment-start-skip.
20970 2007-08-18  Martin Rudalics  <rudalics@gmx.at>
20972         * progmodes/ada-mode.el (ada-create-syntax-table): Move
20973         set-syntax-table from here to ...
20974         (ada-mode): ... here.  Do not change global value of
20975         comment-multi-line.  Call new function
20976         ada-initialize-syntax-table-properties and add new function
20977         ada-handle-syntax-table-properties to font-lock-mode-hook.
20978         (ada-deactivate-properties, ada-initialize-properties): Replace
20979         by new functions ...
20980         (ada-handle-syntax-table-properties)
20981         (ada-initialize-syntax-table-properties)
20982         (ada-set-syntax-table-properties): ... to set up syntax-table
20983         properties uniformly, independently from whether font-lock-mode
20984         is enabled or not.  Handle read-only buffers and do not change
20985         undo-list when setting syntax-table properties.
20986         (ada-after-change-function): Use ada-set-syntax-table-properties.
20988 2007-08-18  Michaël Cadilhac  <michael@cadilhac.name>
20990         * progmodes/meta-mode.el (meta-indent-calculate-last): Remove.
20991         (meta-indent-current-nesting): Use a computation of the nesting
20992         instead.
20993         (meta-indent-current-indentation): Indentation is given according
20994         to nesting and if the previous line was finished or not.
20995         (meta-indent-unfinished-line): Tell if the current line ends with
20996         a finished expression.
20997         (meta-indent-looking-at-code): Like `looking-at', but checks if
20998         the point is in a string before.
20999         (meta-indent-level-count): Use it.  Don't count parenthesis as it's
21000         done in the nesting function.
21001         (meta-indent-in-string-p): Tell if the current point is in a
21002         string.
21003         (meta-indent-calculate): Treat b-o-b as a special case.  Use the
21004         previous functions.
21006 2007-08-17  Thien-Thi Nguyen  <ttn@gnuvola.org>
21008         * emacs-lisp/copyright.el (copyright-limit): New defsubst.
21009         (copyright-update-year, copyright-update)
21010         (copyright-fix-years): Use it.
21012 2007-08-17  Kimit Yada  <kimitto@gmail.com>  (tiny change)
21014         * emacs-lisp/copyright.el (copyright-update-year):
21015         Fix bug: Handle nil copyright-limit.
21017 2007-08-17  Jay Belanger  <jay.p.belanger@gmail.com>
21019         * calc/calc-units.el (math-standard-units): Give exact
21020         conversion for tsp.
21022         * calc/calc.el (math-bignum-digit-length): Compute the
21023         appropriate value.
21025         * calc/calc-bin.el (math-bignum-logb-digit-size)
21026         (math-bignum-digit-power-of-two):
21027         * calc/calc-comb.el (math-small-factorial-table):
21028         * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
21029         (math-approx-gamma-const):
21030         * calc/calc-funcs.el (math-besJ0, math-besJ1, math-besY0)
21031         (math-besY1, math-bernoulli-b-cache):
21032         * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
21033         Remove `eval-when-compile's.
21035 2007-08-17  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
21037         * progmodes/cperl-mode.el (cperl-look-at-leading-count)
21038         (cperl-find-pods-heres): Fix an error when typing expressions like
21039         `s{a}{b}'.
21041 2007-08-17  Michaël Cadilhac  <michael@cadilhac.name>
21043         * mail/emacsbug.el (report-emacs-bug): Remove the last number of
21044         `emacs-version', use the topic prefix ``version; ''.  Make MS-DOS
21045         a special case (there's no build number).
21047 2007-08-17  T. V. Raman  <raman@users.sf.net>  (tiny change)
21049         * completion.el (symbol-under-point, symbol-before-point)
21050         (symbol-before-point-for-complete): Use buffer-substring-no-properties.
21052 2007-08-17  Glenn Morris  <rgm@gnu.org>
21054         * progmodes/compile.el (compilation-get-file-structure): Make use
21055         of the directory part when checking for an existing entry, to
21056         handle files with same basename in different directories.
21058 2007-08-17  Jay Belanger  <jay.p.belanger@gmail.com>
21060         * calc/calc.el (calc-language-alist): Add texinfo-mode.
21062 2007-08-16  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21064         * ps-print.el (ps-header-font-size, ps-header-title-font-size)
21065         (ps-footer-font-size, ps-line-number-font-size, ps-line-spacing)
21066         (ps-paragraph-spacing): Docstring fix.
21068 2007-08-16  Glenn Morris  <rgm@gnu.org>
21070         * ps-print.el (ps-font-size): Doc fix.
21072 2007-08-16  Richard Stallman  <rms@gnu.org>
21074         * emacs-lisp/copyright.el (copyright-names-regexp): Add custom group.
21076 2007-08-15  Juri Linkov  <juri@jurta.org>
21078         * startup.el (initialization): Change parent group from `internal'
21079         to `environment'.
21080         (initial-buffer-choice): New variable.
21081         (command-line): Revert 2007-07-02 change that sets
21082         buffer-offer-save in *scratch* and enables auto-save in it.
21083         (fancy-splash-text): Add links to existing items.  Add new items
21084         with links for useful tasks.  Move information about Control-g to
21085         fancy-splash-head.  Move "Emacs Guided Tour" to the end.
21086         (fancy-splash-keymap): New variable.
21087         (fancy-splash-last-input-event): Remove variable.
21088         (fancy-splash-insert): Add processing of `:link' element.
21089         (fancy-splash-head): Replace "Type Control-l to begin editing"
21090         with "Type `q' to exit".
21091         (fancy-splash-screens-1): Let-bind inhibit-read-only to t.
21092         (fancy-splash-default-action, fancy-splash-special-event-action):
21093         Remove functions.
21094         (fancy-splash-quit): New function.
21095         (fancy-splash-screens): Rename input arg from `hide-on-input' to
21096         `static' and reverse the condition of its usage.  Don't preserve
21097         original values of `minor-mode-map-alist',
21098         `emulation-mode-map-alists', `special-event-map'.
21099         Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
21100         Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
21101         Remove processing of special events.  Use local key map
21102         `fancy-splash-keymap'.  Set buffer to read-only.
21103         (normal-splash-screen): Rename input arg from `hide-on-input' to
21104         `static' and reverse the condition of its usage.
21105         Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
21106         Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
21107         Add links to existing items.  Add new items with links for useful
21108         tasks.  Use local key map `fancy-splash-keymap'.
21109         (display-splash-screen): Rename input arg from `hide-on-input' to
21110         `static'.
21111         (about-emacs): Add alias to display-splash-screen.
21112         (command-line-1): Use `initial-buffer-choice'.
21114         * menu-bar.el (menu-bar-help-menu):
21115         * term/mac-win.el (mac-apple-event-map): Bind About Emacs menu
21116         item to about-emacs instead of display-splash-screen.
21118 2007-08-15  Jay Belanger  <jay.p.belanger@gmail.com>
21120         * calc/calc-units.el (math-standard-units): Update values.
21121         Put in exact, rational values when possible.
21122         (math-unit-prefixes): Replace floats with powers of ten.
21123         (math-standard-units-systems): Replace floats with integers.
21124         (math-make-unit-string): Remove extra spaces in output.
21126 2007-08-15  Glenn Morris  <rgm@gnu.org>
21128         * mail/undigest.el (rmail-digest-parse-rfc1153sloppy): Be even
21129         sloppier, for the sake of GNU Mailman.
21130         (rmail-digest-rfc1153): Initialize `result' correctly.
21132 2007-08-15  Michaël Cadilhac  <michael@cadilhac.name>
21134         * mail/emacsbug.el (report-emacs-bug): Put `Bug: emacs-version; '
21135         in the mail title.  Suggested by Reiner Steib.
21137 2007-08-14  Chris Hecker  <checker@d6.com>  (tiny change)
21139         * calc/calc-aent.el (calc-do-quick-calc): Add binary
21140         representation of integers to the list of outputs.
21142 2007-08-14  Glenn Morris  <rgm@gnu.org>
21144         * simple.el (bad-packages-alist): New constant.
21145         (bad-package-check): New function.  Together, these two add elements
21146         to `after-load-alist' to check for problematic external packages.
21147         * emulation/cua-base.el: Move CUA-mode check to `bad-packages-alist'.
21149 2007-08-14  Jay Belanger  <jay.p.belanger@gmail.com>
21151         * calc/calc-units.el (math-get-standard-units)
21152         (math-get-units, math-make-unit-string)
21153         (math-get-default-units, math-put-default-units): New functions.
21154         (math-default-units-table): New variable.
21155         (calc-convert-units, calc-convert-temperature): Add machinery
21156         to supply default values.
21158 2007-08-14  Stefan Monnier  <monnier@iro.umontreal.ca>
21160         * emulation/tpu-edt.el: Add tpu-extras's autoloads.
21161         (tpu-gold-map, tpu-global-map): Comment-out the bindings to nil.
21162         (tpu-gold-map): Bind F to tpu-cursor-free-mode.
21163         (minibuffer-local-map): Use funkey symbols rather than esc-sequence.
21165         * emulation/tpu-extras.el: Remove spurious * in docstrings.
21166         Put its autoloads into tpu-edt.el rather than loaddefs.el.
21167         (tpu-cursor-free-mode): Rename from tpu-cursor-free.
21168         Make into a proper minor-mode.
21169         (tpu-backward-char, tpu-next-line, tpu-previous-line)
21170         (tpu-next-end-of-line, tpu-current-end-of-line): Use new name.
21171         (tpu-trim-line-ends-if-needed): Rename from tpu-before-save-hook.
21172         (tpu-set-cursor-free, tpu-set-cursor-bound):
21173         Delegate to tpu-cursor-free-mode.
21174         (tpu-next-line, tpu-previous-line, tpu-forward-line)
21175         (tpu-backward-line, tpu-scroll-window-down, tpu-scroll-window-up):
21176         Use line-move or forward-line instead of next-line-internal.
21178 2007-08-13  Nick Roberts  <nickrob@snap.net.nz>
21180         * progmodes/gdb-ui.el (gdb-send): Handle CTRL-D more carefully.
21182 2007-08-12  Richard Stallman  <rms@gnu.org>
21184         * pcvs.el (cvs-reread-cvsrc, cvs-checkout, cvs-mode-checkout)
21185         (cvs-execute-single-file): Use new name split-string-and-unquote.
21186         (cvs-header-msg): Use new name combine-and-quote-strings.
21188         * emulation/vi.el (vi-next-line): Ignore return value of line-move.
21190         * progmodes/gud.el (gud-common-init): Use new name
21191         split-string-and-unquote.
21193         * progmodes/flymake.el (flymake-err-line-patterns): Fix infloop
21194         in javac regexp.
21196         * pcvs-util.el (cvs-qtypedesc-strings): Use new names
21197         combine-and-quote-strings and split-string-and-unquote.
21199         * subr.el (combine-and-quote-strings): Rename from strings->string.
21200         (split-string-and-unquote): Rename from string->strings.
21202 2007-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21204         * log-view.el (log-view-font-lock-keywords): Use `eval' so as to adapt
21205         to buffer-local settings.
21207         * emacs-lisp/backquote.el (backquote-delay-process): New function.
21208         (backquote-process): Add internal arg `level'.  Use the two to
21209         correctly handle nested backquotes.
21211 2007-08-09  Riccardo Murri  <riccardo.murri@gmail.com>
21213         * vc-bzr.el (vc-bzr-registered): Use \0 instead of literal NULs.
21214         (vc-bzr-state-words): Add "kind changed" state word.
21215         (vc-bzr-status): New function.  Return Bzr idea of file status,
21216         which is different from VC's.
21217         (vc-bzr-state): Use vc-bzr-status.
21218         (vc-workfile-unchanged-p): Use vc-bzr-status.
21219         (vc-bzr-revert): Use synchronous process; expect exitcode 0.
21220         (vc-dired-state): Process "kind changed" state word.
21222 2007-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
21224         * vc-hooks.el (vc-default-find-file-not-found-hook): Do nothing.
21226         * vc-rcs.el (vc-rcs-find-file-not-found-hook):
21227         Move from vc-default-find-file-not-found-hook.
21229 2007-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
21231         * man.el: Remove spurious * in docstrings.
21232         Merge defvars and toplevel setq-defaults.
21233         (Man-highlight-references0): Limit=nil rather than point-max.
21234         (Man-mode-map): Move initialization into the declaration.
21235         (Man-strip-page-headers, Man-unindent): Use dolist & inhibit-read-only.
21236         (Man-view-header-file): Use expand-file-name rather than concat.
21237         (Man-notify-when-ready, Man-bgproc-sentinel): Use with-current-buffer.
21239         * man.el (Man-next-section): Make sure we do not move backward.
21241 2007-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
21243         * files.el (auto-mode-alist): Use the purecopied text (duh!).
21245 2007-08-08  Glenn Morris  <rgm@gnu.org>
21247         * Replace `iff' in doc-strings and comments.
21249 2007-08-08  Martin Rudalics  <rudalics@gmx.at>
21251         * dired.el (dired-pop-to-buffer):
21252         * mouse-drag.el (mouse-drag-should-do-col-scrolling):
21253         * calendar/calendar.el (generate-calendar-window):
21254         * progmodes/compile.el (compilation-set-window-height):
21255         * textmodes/two-column.el (2C-two-columns, 2C-merge):
21256         Use window-full-width-p instead of comparing frame-width and
21257         window-width.
21259         * progmodes/compile.el (compilation-find-buffer): Remove extra
21260         argument in call to compilation-buffer-internal-p.
21262 2007-08-07  Tom Tromey  <tromey@redhat.com>
21264         * progmodes/tcl.el (tcl-indent-level, tcl-continued-indent-level):
21265         Add safe-local-variable property.
21267 2007-08-07  Chong Yidong  <cyd@stupidchicken.com>
21269         * image-mode.el (image-toggle-display): Use image-refresh.
21271 2007-08-07  Riccardo Murri  <riccardo.murri@gmail.com>
21273         * vc-bzr.el: Remove comments about vc-bzr.el being a modified
21274         unofficial version.
21275         (vc-bzr-command): Remove redundant setting of process-connection-type.
21276         (vc-bzr-admin-checkout-format-file): Add autoload.
21277         (vc-bzr-root-dir): Remove in favor of vc-bzr-root.
21278         (vc-bzr-root): Switch to implementation of vc-bzr-root-dir.
21279         (vc-bzr-registered): Compare dirstate format tag with known good
21280         value, abort parsing if match fails.  Warn user in docstring.
21281         (vc-bzr-workfile-version): Case for different Bzr branch formats.
21282         See bzrlib/branch.py in Bzr sources.
21283         (vc-bzr-diff): First argument FILES may be a string rather than a list.
21284         (vc-bzr-shell-command): Remove in favor of
21285         vc-bzr-command-discarding-stderr.
21286         (vc-bzr-command-discarding-stderr): New function.
21288 2007-08-06  Riccardo Murri  <riccardo.murri@gmail.com>
21290         * vc-bzr.el (vc-bzr-registered): Gracefully handle missing "bzr"
21291         program, and return nil.
21292         (vc-bzr-state): Gracefully handle missing "bzr" program, and return nil.
21293         (vc-bzr-state): Look for path names relative to the repository
21294         root after status keyword.
21295         (vc-bzr-file-name-relative): New function.
21296         (vc-bzr-admin-dirname): Reinstate, as other vc-bzr-admin-... paths
21297         depend on it.
21298         (vc-bzr-admin-dirname, ...-checkout-format-file)
21299         (...-branch-format-file, ...-revhistory): Paths to some Bzr internal
21300         files that we now parse directly for speed.
21301         (vc-bzr-root-dir): Use `vc-bzr-admin-checkout-format-file' as witness.
21302         (vc-bzr-registered): Only parse vc-bzr-admin-dirstate file if it exists.
21303         (vc-bzr-state): "bzr status" successful only if exitcode is 0.
21304         (vc-bzr-root): Use `vc-bzr-shell-command'.  Stderr may contain
21305         Bzr warnings, so we must discard it.
21306         (vc-bzr-workfile-version): Speedup counting lines from
21307         `vc-bzr-admin-revhistory' file, but fallback to spawning "bzr revno"
21308         if that file doesn't exist.
21309         (vc-bzr-responsible-p): Use `vc-bzr-root' instead of
21310         `vc-bzr-root-dir' for speed.  Add `vc-bzr-admin-dirname' (not ".bzr"!)
21311         to `vc-directory-exclusion-list'.
21312         (vc-bzr-shell-command): New function.
21314 2007-08-06  Tom Tromey  <tromey@redhat.com>
21316         * diff-mode.el (diff-unified->context, diff-reverse-direction)
21317         (diff-fixup-modifs): Typo in docstring.
21319 2007-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
21321         * emulation/tpu-edt.el (tpu-current-line): Use posn-at-point and
21322         count-screen-lines.
21323         (tpu-edt-off): Disable relevant pieces of advice.
21325         * emulation/tpu-extras.el (tpu-before-save-hook): Rename from
21326         tpu-write-file-hook.  Activate it with add-hook on buffer-save-hook.
21327         (newline, newline-and-indent, do-auto-fill): Use advice instead of
21328         redefining the function.
21329         (tpu-set-scroll-margins): Activate the pieces of advice.
21331 2007-08-06  Martin Rudalics  <rudalics@gmx.at>
21333         * help.el (resize-temp-buffer-window): Use window-full-width-p
21334         instead of comparing frame-width and window-width.
21336 2007-08-13  Stephen Leake  <stephen_leake@stephe-leake.org>
21338         * pcvs-parse.el (cvs-parse-table): Handle additional instance of
21339         optional quotes around files in NEED-UPDATE . REMOVED case.
21341         * progmodes/ada-xref.el (ada-gnatls-args): Fix docstring.
21342         (ada-treat-cmd-string): Improve error message.
21343         (ada-do-file-completion): Call `ada-require-project-file', so
21344         project variables are set properly.
21345         (ada-prj-find-prj-file): Delete Emacs 20.2 support.
21346         (ada-gnatfind-buffer-name): New constant.
21347         (ada-find-any-references): Use new constant.  Set buffer name
21348         properly in compilation-start.  Toggle read-only properly.
21349         (ada-find-in-src-path): Fix spelling error in docstring.
21351         * progmodes/vhdl-mode.el (vhdl-update-progress-info): Avoid divide
21352         by zero error.
21354 2007-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
21356         * emacs-lisp/autoload.el (autoload-print-form): Use print-quoted.
21358 2007-08-12  Richard Stallman  <rms@gnu.org>
21360         * progmodes/sh-script.el (sh): Delete group `unix'.
21362         * progmodes/gud.el (gud): Change to group `processes'.
21364 2007-08-11  Glenn Morris  <rgm@gnu.org>
21366         * progmodes/compile.el (compilation-buffer-name): Don't check
21367         compilation-arguments.  It is superfluous, and the variable isn't
21368         even set when this function is called.
21370 2007-08-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21372         * term/mac-win.el (mac-ae-reopen-application): New function.
21373         (mac-apple-event-map): Bind "reopen application" Apple event to it.
21375 2007-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21377         * textmodes/tex-mode.el (tex-font-lock-unfontify-region): Fix to
21378         take tex-font-script-display into account.
21379         (tex-font-script-display, tex-font-lock-suscript): Change from a cons
21380         cell to a list of 2 elements to simplify the unfontify code.
21382 2007-08-08  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21384         * ps-print.el (ps-default-fg, ps-default-bg): Docstring fix.
21385         (ps-begin-job): Use ps-default-fg and ps-default-bg only when
21386         ps-print-color-p is neither nil nor black-white.  Reported by Christian
21387         Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
21389 2007-08-08  Andreas Schwab  <schwab@suse.de>
21391         * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook): Check for
21392         self-insert-command, not self-insert.
21394 2007-08-08  Glenn Morris  <rgm@gnu.org>
21396         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Make second
21397         argument optional, for backwards compatibility, and only highlight
21398         args when present.  Fix symbol name typo (doc/args).
21400         * help-mode.el (help-make-xrefs): Search for symbol constituents,
21401         rather than just `-'.
21403 2007-08-07  Jay Belanger  <jay.p.belanger@gmail.com>
21405         * calc/calc-units.el (calc-convert-temperature):
21406         Use `/' to create fractions.
21408 2007-08-07  Michael Albinus  <michael.albinus@gmx.de>
21410         * net/tramp.el (tramp-wrong-passwd-regexp): Make the regexp more
21411         global matching.
21412         (tramp-handle-shell-command): Handle OUTPUT-BUFFER and
21413         ERROR-BUFFER more robust.  Display output.
21414         (tramp-file-name-handler): Add a connection property when we found
21415         a foreign file name handler.  This allows backends like ftp to
21416         profit also from usr/host name completion based on connection
21417         cache.
21418         (tramp-send-command-and-read): Search for trash after the regexp
21419         until eol only.  In XEmacs, there is a problem with \n.
21421         * net/tramp-cache.el (top): Read persistent connection history
21422         when cache is empty.
21424 2007-08-07  Nic Ferrier  <nferrier@tapsellferrier.co.uk>  (tiny change)
21426         * net/tramp.el (tramp-handle-process-file): Fix bug inserting
21427         resulting output.
21429 2007-08-07  Sam Steingold  <sds@gnu.org>
21431         * progmodes/compile.el (compilation-start): Pass nil as startfile
21432         to comint-exec.
21434 2007-08-07  Chong Yidong  <cyd@stupidchicken.com>
21436         * longlines.el (longlines-decoded): New variable.
21437         (longlines-mode): Avoid encoding or decoding the buffer twice.
21439 2007-08-07  Martin Rudalics  <rudalics@gmx.at>
21441         * format.el (format-insert-file): Make sure that at most one undo
21442         entry is recorded for the insertion.  Inhibit point-motion and
21443         modification hooks around call to insert-file-contents.
21445 2007-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
21447         * vc.el (vc-annotate): Select temp-buffer before running vc-exec-after.
21448         Select the buffer's window before moving point.
21450 2007-08-07  Richard Stallman  <rms@gnu.org>
21452         * term.el (term): Remove parent group `unix'.
21454         * simple.el (default-indent-new-line): New function.
21455         It calls comment-line-break-function if there are comments.
21456         (do-auto-fill): Use that.
21458 2007-08-07  Sean O'Rourke  <sorourke@cs.ucsd.edu>
21460         * complete.el (PC-lisp-complete-symbol): Complete symbol around point.
21461         (PC-do-completion): Add "acronym completion" for symbols and
21462         filenames, so e.g. "mvbl" expands to "make-variable-buffer-local".
21464 2007-08-06  Sam Steingold  <sds@gnu.org>
21466         * mouse.el (mouse-buffer-menu): Pass mode-name through
21467         format-mode-line because it may be a list,
21468         e.g., (sgml-xml-mode "XML" "SGML"), and not a string.
21470 2007-08-06  Vinicius Jose Latorre  <viniciusig@ig.com.br>
21472         * printing.el (pr-update-menus): Docstring fix.
21474 2007-08-06  Jason Rumney  <jasonr@gnu.org>
21476         * menu-bar.el (menu-bar-vc-filter): Use vc-call-backend.
21478         * vc-hooks.el (vc-call): Add doc string.
21480 2007-08-06  Michael Albinus  <michael.albinus@gmx.de>
21482         * net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
21483         process-filter.
21485 2007-08-06  Kenichi Handa  <handa@m17n.org>
21487         * international/quail.el: Wrap (require 'help-mode) by
21488         eval-when-compile.
21489         (quail-help-init): New function.
21490         (quail-help): Call quail-help-init.
21491         (quail-store-decode-map-key): Change it to a function.
21493 2007-08-05  Jason Rumney  <jasonr@gnu.org>
21495         * vc.el (vc-rollback): Add norevert argument back.
21496         (vc-revert-buffer): Add back as obsolete alias.
21498 2007-08-05  Peter Povinec  <ppovinec@yahoo.com>  (tiny change)
21500         * term.el: Honor term-default-fg-color and term-default-bg-color
21501         settings when modifying term-current-face.
21502         (term-default-fg-color, term-default-bg-color): Initialize from
21503         default term-current-face.
21504         (term-mode, term-reset-terminal): Set term-current-face with
21505         term-default-fg-color and term-default-bg-color.
21506         (term-handle-colors-array): term-current-face has term-default-fg-color
21507         and term-default-bg-color after reset escape sequence.
21508         (term-handle-colors-array): Set term-current-color with
21509         term-default-fg/bg-color instead of ansi-term-color-vector when the
21510         index (term-ansi-current-color or term-ansi-current-bg-color) is zero.
21512 2007-08-05  Jay Belanger  <jay.p.belanger@gmail.com>
21514         * calc/calc-nlfit.el (math-nlfit-curve): Remove unnecessary variables.
21515         (math-nlfit-givens): Let bind free variables.
21517 2007-08-05  Vinicius Jose Latorre  <viniciusig@ig.com.br>
21519         * printing.el: Require lpr and ps-print when loading printing package.
21520         Reported by Glenn Morris <rgm@gnu.org>.
21522 2007-08-05  Michael Albinus  <michael.albinus@gmx.de>
21524         * files.el (set-auto-mode): Handle also remote files wrt
21525         `auto-mode-alist'.
21527 2007-08-04  Jay Belanger  <jay.p.belanger@gmail.com>
21529         * calc/calcalg3.el (calc-curve-fit): Add support for nonlinear
21530         curves and plotting.
21532         * calc/calc-nlfit.el: New file.
21534 2007-08-04  Glenn Morris  <rgm@gnu.org>
21536         * autorevert.el (auto-revert-tail-mode): auto-revert-tail-pos is
21537         zero, not nil, when the library is first loaded.  Check for a file
21538         that has been modified on disk.
21540         * progmodes/cperl-mode.el (cperl-compilation-error-regexp-alist):
21541         Remove duplicate defvar preventing initialization.
21542         (cperl-mode): Fix compilation-error-regexp-alist-alist setting.
21544 2007-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
21546         * diff-mode.el (diff-font-lock-keywords): Fix up false positives.
21547         (diff-beginning-of-file): Adjust to the fact that diff-file-header-re
21548         may match up to 4 lines.
21549         (diff-beginning-of-file-and-junk): Rewrite.
21551 2007-08-03  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21553         * printing.el: Evaluate require only during compilation.
21554         (pr-version): New version 6.9.1.
21555         (deactivate-mark): Replace (defvar VAR nil) by (defvar VAR).
21556         (pr-global-menubar): Fix code.
21558 2007-08-03  Dan Nicolaescu  <dann@ics.uci.edu>
21560         * term.el (term-erase-in-display): Fix case when point is not at
21561         the beginning of the line.
21563 2007-08-03  Jay Belanger  <jay.p.belanger@gmail.com>
21565         * calc/calc-ext.el (math-get-value, math-get-sdev)
21566         (math-contains-sdev): New functions.
21568         * calc/calc-graph.el (calc-graph-format-data)
21569         (calc-graph-add-curve): Check for error forms.
21570         (calc-graph-set-styles): Add option for error forms.
21572 2007-08-03  Miles Bader  <miles@gnu.org>
21574         * vc-hooks.el (vc-handled-backends): Change capitalization of VC
21575         backend names for new backends to `Git', `Hg', and `Bzr'.
21576         * vc-hg.el (vc-hg-dired-state-info): Use `Hg' as VC backend name,
21577         not `HG'.
21578         * vc-git.el (vc-git-dired-state-info): Use `Git' as VC backend
21579         name, not `GIT'.
21580         * vc-bzr.el (vc-bzr-dir-state, vc-bzr-dired-state-info)
21581         (vc-bzr-unload-hook): Use `Bzr' as VC backend name, not `BZR'.
21583 2007-08-03  Richard Stallman  <rms@gnu.org>
21585         * mail/rmailsum.el (rmail-make-summary-line): Find end of msg number
21586         to update deleted flag.
21588         * cus-edit.el (customize-apropos, customize-apropos-options)
21589         (customize-apropos-faces, customize-apropos-groups): Improve prompt.
21591         * menu-bar.el (menu-bar-help-menu): Add "About GNU" menu item.
21593         * startup.el (fancy-splash-head, startup-echo-area-message):
21594         Change message text.
21596         * emulation/tpu-edt.el (next-line-internal): Setting deleted.
21597         All callers use line-move.
21599         * progmodes/compile.el (compilation-find-buffer): Return current
21600         buffer immediately if suitable.
21601         (compile, compilation-buffer-name, compilation-start): Doc fixes.
21603 2007-08-03  Daiki Ueno  <ueno@unixuser.org>
21605         * faces.el (face-normalize-spec): New function.
21606         (frame-set-background-mode): Normalize face-spec before calling
21607         face-spec-match-p.
21609 2007-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
21611         * server.el (server-window): Add switch-to-buffer-other-frame option.
21613 2007-08-03  Glenn Morris  <rgm@gnu.org>
21615         * cus-edit.el (customize-apropos): Make the error message indicate
21616         what kind of thing the user was trying to customize.
21618         * net/telnet.el (telnet-mode): Set comint-use-prompt-regexp to t.
21620         * progmodes/fortran.el (fortran-font-lock-syntactic-keywords):
21621         Fix off-by-one error in previous change.
21623 2007-08-03  Drew Adams  <drew.adams@oracle.com>
21625         * emacs-lisp/pp.el (pp-eval-expression): Add progress message.
21626         Make buffer writable.
21628 2007-08-01  Jay Belanger  <jay.p.belanger@gmail.com>
21630         * calc/calc-math.el (math-sqrt-raw, math-sin-raw-2)
21631         (math-cos-raw-2, math-arctan-raw, math-ln-raw):
21632         Use native Emacs functions, when appropriate.
21634 2007-08-01  Dan Nicolaescu  <dann@ics.uci.edu>
21635             Stefan Monnier  <monnier@iro.umontreal.ca>
21637         * vc.el: Document new VC operation `extra-menu'.
21639         * vc-hooks.el (vc-default-extra-menu): New function.
21641         * menu-bar.el (menu-bar-vc-filter): New function.
21642         (menu-bar-tools-menu): Use it as a filter.
21644 2007-08-01  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
21646         * ibuf-ext.el (ibuffer-mark-old-buffers): Docstring fix.
21648 2007-08-01  Glenn Morris  <rgm@gnu.org>
21650         * progmodes/fortran.el: Remove leading `*' from all defcustom doc
21651         strings.
21652         (fortran-tab-mode-default): Remove needless autoload.
21653         (fortran-tab-mode-string): Add help-echo and mouse properties, and
21654         mark as risky.
21655         (fortran-line-length): New buffer-local variable, safe if integer.
21656         (fortran-if-start-re, fortran-end-prog-re1, fortran-end-prog-re):
21657         Change from variables to constants.
21658         (fortran-font-lock-syntactic-keywords): Delete as a variable,
21659         replace with a new function definition.
21660         (fortran-mode): Use fortran-line-length, and
21661         fortran-font-lock-syntactic-keywords as a function.  Add a
21662         hack-local-variables-hook function.
21663         (fortran-line-length, fortran-hack-local-variables): New functions.
21664         (fortran-window-create, fortran-strip-sequence-nos): Doc fix.
21665         Use fortran-line-length rather than 72.
21666         (fortran-window-create-momentarily): Doc fix.
21668 2007-07-31  Drew Adams  <drew.adams@oracle.com>  (tiny change)
21670         * cus-edit.el (custom-group-value-create, custom-goto-parent):
21671         Fix parent groups link.
21673 2007-07-31  Paul Pogonyshev  <pogonyshev@gmx.net>
21675         * progmodes/python.el (python-current-defun): Adjust to never fall
21676         into infinite loop.
21678 2007-07-31  Stefan Monnier  <monnier@iro.umontreal.ca>
21680         * pcvs.el (cvs-vc-command-advice): Handle the new fileset case.
21682 2007-07-29  Kimit Yada  <kimitto@gmail.com>  (tiny change)
21684         * emacs-lisp/copyright.el (copyright-update-year, copyright-update)
21685         (copyright-fix-years, copyright): Correctly handle the case where
21686         copyright-limit is nil.
21688 2007-07-28  Konstantin Novitsky  <knovitsk@Bear.com>  (tiny change)
21690         * progmodes/python.el (run-python): Fix path separator under w32.
21692 2007-07-30  Richard Stallman  <rms@gnu.org>
21694         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
21695         Treat non-break space as whitespace in Lisp.
21697 2007-07-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21699         * vc.el (vc-dired-hook): Use inhibit-read-only.
21701         * progmodes/compile.el (compilation-forget-errors):
21702         Reset compilation-auto-jump-to-next.
21704 2007-07-30  Michael Olson  <mwolson@gnu.org>
21706         * cus-edit.el (custom-group-save): Fix void function definition
21707         error.  Thanks to Zhang Wei for the report.
21709         * ps-print.el: Check in trivial changes to the autoloads section
21710         caused by the build process.  These autoloads really ought to be
21711         placed in a separate file, methinks.
21713 2007-07-29  Stefan Monnier  <monnier@iro.umontreal.ca>
21715         * calendar/calendar.el (calendar-mode): Make sure
21716         displayed-(month|year) are set.
21717         (calendar-basic-setup): Display buffer before adjusting window sizes.
21718         (generate-calendar-window): Use inhibit-read-only.  Simplify.
21719         Generate buffer and set displayed-month and displayed-year before
21720         calling update-calendar-mode-line.
21722 2007-07-29  Michael Albinus  <michael.albinus@gmx.de>
21724         * net/tramp.el:
21725         * net/tramp-uu.el:
21726         * net/trampver.el: Use utf-8 encoding with coding cookie.
21728         * net/tramp-cache.el:
21729         * net/tramp-fish.el:
21730         * net/tramp-ftp.el:
21731         * net/tramp-gw.el:
21732         * net/tramp-smb.el: Remove coding cookie.
21734         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
21735         Flush buffer file-name's file property.
21736         (tramp-handle-file-remote-p): The first parameter is FILENAME.
21738         * net/trampver.el: Update release number.
21740 2007-07-29  Juri Linkov  <juri@jurta.org>
21742         * dired.el (dired-mode-map): Bind C-x C-q to dired-toggle-read-only.
21743         Filter out menu item "Edit File Names" `wdired-change-to-wdired-mode'
21744         when major-mode is not dired-mode.
21745         (dired-toggle-read-only): New function.
21746         (dired-recursive-deletes): Remove obsolete comments about old
21747         default value.
21748         (dired-do-flagged-delete, dired-do-delete): Refill docstring.
21750         * wdired.el (wdired-exit): New function.
21751         (wdired-mode-map): Bind C-x C-q to wdired-exit.
21753 2007-07-28  Stefan Monnier  <monnier@iro.umontreal.ca>
21755         * cus-edit.el (customize-read-group): New fun.
21756         (customize-group-other-window, customize-face-other-window):
21757         Prompt before delegating to customize-(group|face).
21758         Bind pop-up-windows rather than use the other-window argument.
21759         (customize-group, customize-face): Prompt from the interactive spec.
21760         Remove args `prompt-for-group' and `other-window'.
21762         * emacs-lisp/advice.el (ad-interactive-form): Re-introduce.
21763         (ad-body-forms, ad-advised-interactive-form): Revert this part of
21764         last change.
21766 2007-07-28  Masatake YAMATO  <jet@gyve.org>
21768         * vc.el (vc-dired-mode): Add a menu for VC related operation.
21769         Use backend name as the menu label.  Suggested by David Kastrup.
21771 2007-07-28  Alan Mackenzie  <acm@muc.de>
21773         Fix problem with modes derived from CC Mode:
21774         * progmodes/cc-mode.el (c-make-emacs-variables-local): Move this
21775         macro to cc-langs.
21776         (c-init-language-vars-for): Remove call to above macro.
21777         * progmodes/cc-langs.el (c-make-emacs-variables-local): Macro has
21778         been moved to here.
21779         (c-make-init-lang-vars-fun): Call c-make-emacs-variables-local.
21781 2007-07-28  Eli Zaretskii  <eliz@gnu.org>
21783         * net/trampver.el: Fix the `coding' cookie.
21785 2007-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
21787         * vc-git.el (vc-git-print-log): Support both the old single file
21788         interface and the new one.
21790 2007-07-28  Nick Roberts  <nickrob@snap.net.nz>
21792         * bindings.el (mode-line-remote): Use updated %@ construct.
21794 2007-07-27  Stefan Monnier  <monnier@iro.umontreal.ca>
21796         * calendar/cal-bahai.el (calendar-bahai-month-name-array)
21797         (calendar-bahai-epoch, calendar-bahai-leap-year-p)
21798         (calendar-bahai-leap-base, calendar-bahai-prompt-for-date)
21799         (diary-list-bahai-entries, diary-bahai-mark-entries)
21800         (calendar-bahai-mark-date-pattern, diary-insert-bahai-entry)
21801         (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
21802         New names to clean up namespace.
21803         (list-bahai-diary-entries, mark-bahai-diary-entries)
21804         (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
21805         (insert-yearly-bahai-diary-entry, mark-bahai-calendar-date-pattern):
21806         Add compatibility aliases.
21808         * calendar/appt.el: Don't wrap defvar within eval-when-compile.
21810         * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right)
21811         (calendar-scroll-left-three-months)
21812         (calendar-scroll-right-three-months): Clean up namespace.
21813         (scroll-calendar-left, scroll-calendar-right)
21814         (scroll-calendar-left-three-months)
21815         (scroll-calendar-right-three-months): Add compatibility aliases.
21817         * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
21818         Behave like mouse-scroll-calendar-* when used from the mouse.
21820         * calendar/cal-menu.el (cal-menu-scroll-menu)
21821         (cal-menu-global-mouse-menu):
21822         * calendar/calendar.el (calendar-mode-map):
21823         Use new calendar-scroll-* names.
21824         (mouse-scroll-calendar-left, mouse-scroll-calendar-right):
21825         Remove.  Use calendar-scroll-* directly instead.
21827 2007-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21829         * emacs-lisp/advice.el (ad-interactive-p, ad-interactive-form): Remove.
21830         (ad-body-forms, ad-advised-interactive-form, ad-make-cache-id)
21831         (ad-make-advised-definition, ad-cache-id-verification-code):
21832         Use commandp and interactive-form instead.
21834 2007-07-26  Dan Nicolaescu  <dann@ics.uci.edu>
21836         * vc-git.el: Relicense to GPLv3 or later.
21837         (vc-directory-exclusion-list, vc-handled-backends): Remove.
21839         * vc-hooks.el (vc-handled-backends): Add GIT.
21841         * vc.el (vc-directory-exclusion-list): Add .git.
21843 2007-07-26  Alexandre Julliard  <julliard@winehq.org>
21845         * vc-git.el (vc-git-revision-table)
21846         (vc-git-revision-completion-table): New functions.
21848 2007-07-25  Glenn Morris  <rgm@gnu.org>
21850         * Relicense all FSF files to GPLv3 or later.
21852         * COPYING: Switch to GPLv3.
21854 2007-07-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21856         * pcvs.el (cvs-temp-buffer): Undo last ill-conceived change.
21857         Replace it with another one which disables undo before calling
21858         erase-buffer and then turns it back on if needed.
21860 2007-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
21862         * vc-hg.el (vc-hg-revision-completion-table): Temporarily comment out.
21864 2007-07-24  Glenn Morris  <rgm@gnu.org>
21866         * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
21867         (cal-tex-rules, cal-tex-buffer, cal-tex-24)
21868         (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
21869         (cal-tex-cursor-week, cal-tex-cursor-week2)
21870         (cal-tex-cursor-week-iso, cal-tex-week-hours)
21871         (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
21872         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
21873         (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
21875 2007-07-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21877         * calendar/calendar.el (calendar-mode-map): Move initialization
21878         into declaration.  Add menu bindings (used to be done in cal-menu).
21879         (calendar-mode): Don't add an activate-menubar-hook.
21881         * calendar/cal-menu.el: Break dependency on calendar.el (i.e. do not
21882         modify calendar-mode-map), use easy-menu, and make sure that C-h k
21883         can be used on the menu entries.
21884         (cal-menu-holiday-window-suffix, cal-menu-set-date-title): New funs.
21885         (cal-menu-moon-menu, cal-menu-diary-menu, cal-menu-holidays-menu)
21886         (cal-menu-goto-menu, cal-menu-scroll-menu): New consts.
21887         (cal-menu-context-mouse-menu, cal-menu-global-mouse-menu): New menus.
21888         (calendar-flatten, cal-menu-update): Remove.
21889         (calendar-mouse-insert-hebrew-diary-entry)
21890         (calendar-mouse-insert-islamic-diary-entry)
21891         (calendar-mouse-insert-bahai-diary-entry):
21892         Remove (fold into cal-menu-diary-menu).
21893         (calendar-mouse-2-date-menu, calendar-mouse-cal-tex-menu)
21894         (cal-tex-mouse-filofax): Remove (fold into cal-menu-context-mouse-menu).
21895         (calendar-mouse-3-map): Remove (turn into cal-menu-global-mouse-menu).
21896         (calendar-mouse-view-diary-entries): Minor simplifications.
21897         (calendar-event-to-date): Use with-current-buffer.
21899 2007-07-25  Nick Roberts  <nickrob@snap.net.nz>
21901         * add-log.el (change-log-redate): Remove (not needed anymore and
21902         doesn't appear to work).
21904 2007-07-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21906         * frame.el: Use mapc and dolist instead of mapcar where possible.
21907         (close-display-connection): New command.
21909 2007-07-25  Alexandre Julliard  <julliard@winehq.org>
21911         * vc-git.el (vc-git-log-view-mode): Port to the multi-file vc interface.
21912         (vc-git-create-snapshot, vc-git-retrieve-snapshot): New functions.
21914 2007-07-25  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21916         * ps-print.el (ps-multibyte-buffer): Docstring fix.
21918         * ps-mule.el: Doc fix.
21919         (ps-multibyte-buffer, ps-mule-font-info-database-default)
21920         (ps-mule-external-libraries, ps-mule-begin-job): Docstring fix.
21922 2007-07-25  Glenn Morris  <rgm@gnu.org>
21924         * calendar/cal-tex.el (cal-tex-which-days, cal-tex-holidays)
21925         (cal-tex-diary, cal-tex-daily-string, cal-tex-daily-start)
21926         (cal-tex-daily-end, cal-tex-hook)
21927         (cal-tex-cal-one-month, cal-tex-cal-multi-month)
21928         (cal-tex-year, cal-tex-cursor-week, cal-tex-cursor-week2)
21929         (cal-tex-cursor-week-iso, cal-tex-week-hours)
21930         (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
21931         (cal-tex-cursor-day, cal-tex-insert-preamble): Doc fix.
21932         (cal-tex-day-prefix, cal-tex-day-name-format)
21933         (cal-tex-cal-one-month, cal-tex-cal-multi-month, cal-tex-myday)
21934         (cal-tex-caldate, cal-tex-LaTeX-hourbox)
21935         (cal-tex-LaTeX-subst-list): Change from variables to constants.
21936         (cal-tex-preamble, cal-tex-arg, cal-tex-nl): Simplify with `format'.
21937         (cal-tex-cursor-filofax-year, cal-tex-weekly4-box): Use \textbf,
21938         etc, rather than \bf.
21939         (cal-tex-mini-calendar): Fix typos in previous change.
21940         (cal-tex-latexify-list): Remove inner let binding.
21941         (cal-tex-end-document, cal-tex-banner): Use multi-line
21942         cal-tex-comment.
21943         (cal-tex-comment): Handle embedded newlines.
21944         (cal-tex-LaTeXify-string): Use substring-no-properties.
21946 2007-07-25  Joakim Verona  <joakim@verona.se>  (tiny change)
21948         * progmodes/compile.el (compilation-error-regexp-alist-alist):
21949         Add support for the Maden build tool.
21951 2007-07-25  William Xu  <william.xwl@gmail.com>  (tiny change)
21953         * net/webjump.el (webjump-url-encode): Fix for non-ASCII characters.
21955 2007-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
21957         * pcvs.el (cvs-temp-buffer): Disable undo in temp buffers.
21959 2007-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
21961         * dired.el (dired-mode-map): Bind wdired-change-to-wdired-mode to
21962         C-x C-q.
21964         * vc-git.el (vc-git-print-log): Fix previous change.
21966 2007-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
21968         * window.el (save-selected-window): Minor optimization.
21969         (bw-adjust-window): If operation failed, try with a smaller delta.
21970         (window-fixed-size-p): New function.
21971         (window-area-factor): New var.
21972         (balance-windows-area): New command.
21974         * ps-mule.el (ps-multibyte-buffer): Docstring fixes.
21975         (ps-mule-encode-ethiopic): Make it clear that it's always defined.
21976         (ps-mule-prepare-font-for-components, ps-mule-encode-header-string)
21977         (ps-mule-encode-bit, ps-mule-encode-ucs2): Use dotimes.
21978         (ps-mule-begin-job): Use dolist.
21980 2007-07-24  Michael Albinus  <michael.albinus@gmx.de>
21982         * subr.el (start-file-process-shell-command)
21983         (process-file-shell-command): New defuns.
21985         * progmodes/compile.el (compilation-start):
21986         Apply `start-file-process-shell-command'.
21988 2007-07-24  Alexandre Julliard  <julliard@winehq.org>
21990         * vc-git.el (vc-git-checkout, vc-directory-exclusion-list): Fix typos.
21992 2007-07-24  Alan Mackenzie  <acm@muc.de>
21994         * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
21995         Initialise byte-compile-unresolved-functions before rather than
21996         after a compilation.
21997         (byte-compile-unresolved-functions): Amplify doc string.
21999 2007-07-24  Glenn Morris  <rgm@gnu.org>
22001         * startup.el (normal-splash-screen): Use `emacs-copyright'.
22003         * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
22004         (cal-tex-rules, cal-tex-buffer, cal-tex-24)
22005         (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
22006         (cal-tex-cursor-week, cal-tex-cursor-week2)
22007         (cal-tex-cursor-week-iso, cal-tex-week-hours)
22008         (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
22009         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
22010         (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
22012         * calendar/cal-tex.el: Remove leading `*' from defcustom docs.
22013         (cal-tex-daily-string, cal-tex-daily-start, cal-tex-daily-end)
22014         (cal-tex-day-name-format, cal-tex-cal-one-month)
22015         (cal-tex-cal-multi-month, cal-tex-myday, cal-tex-preamble)
22016         (cal-tex-comment, cal-tex-nl, cal-tex-cmd, cal-tex-e-parbox)
22017         (cal-tex-mini-calendar, cal-tex-em): Doc fix.
22018         (cal-tex-list-holidays, cal-tex-cursor-year)
22019         (cal-tex-cursor-year-landscape, cal-tex-year)
22020         (cal-tex-cursor-filofax-year, cal-tex-cursor-month-landscape)
22021         (cal-tex-cursor-month, cal-tex-insert-days)
22022         (cal-tex-insert-day-names, cal-tex-insert-blank-days)
22023         (cal-tex-first-blank-p, cal-tex-cursor-week)
22024         (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
22025         (cal-tex-week-hours, cal-tex-cursor-week-monday)
22026         (cal-tex-weekly4-box, cal-tex-cursor-filofax-2week)
22027         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily)
22028         (cal-tex-cursor-day, cal-tex-daily-page, cal-tex-mini-calendar)
22029         (cal-tex-latexify-list, cal-tex-previous-month)
22030         (cal-tex-next-month, cal-tex-insert-preamble): General tidy-up and
22031         modernization, including using dotimes rather than
22032         calendar-for-loop.
22033         (cal-tex-LaTeX-subst-list): Remove `@'.
22034         (cal-tex-em, cal-tex-bf, cal-tex-Huge-bf, cal-tex-large-bf):
22035         Use \textit and \textbf rather than \em and \it.
22037         * calendar/cal-bahai.el (list-bahai-diary-entries)
22038         * calendar/cal-hebrew.el (list-hebrew-diary-entries)
22039         * calendar/cal-islam.el (list-islamic-diary-entries)
22040         * calendar/calendar.el (generate-calendar, generate-calendar-month)
22041         * calendar/diary-lib.el (diary-list-entries)
22042         (mark-calendar-date-pattern): Use `dotimes' rather than
22043         `calendar-for-loop'.
22045         * calendar/calendar.el (calendar-for-loop): Doc fix.
22047 2007-07-23  Stefan Monnier  <monnier@iro.umontreal.ca>
22049         * ses.el (ses-cleanup): Prevent Emacs from spuriously checking if the
22050         underlying file is uptodate.
22052 2007-07-23  Christopher J. Madsen  <cjm@cjmweb.net>
22054         * replace.el (perform-replace): Use isearch-no-upper-case-p.
22056 2007-07-23  Stefan Monnier  <monnier@iro.umontreal.ca>
22058         * vc-hooks.el (vc-mode-line-map): New const.
22059         (vc-mode-line): Use it.
22061 2007-07-23  Alexandre Julliard  <julliard@winehq.org>
22063         * vc-git.el (vc-git-delete-file, vc-git-rename-file)
22064         (vc-git-unregister): New functions.
22065         (vc-git-find-version): Use the result of ls-files as a parameter
22066         for cat-file.
22068 2007-07-23  Michael Albinus  <michael.albinus@gmx.de>
22070         * net/tramp.el (tramp-perl-file-attributes)
22071         (tramp-perl-directory-files-and-attributes)
22072         (tramp-handle-file-attributes-with-stat)
22073         (tramp-handle-directory-files-and-attributes-with-stat)
22074         (tramp-convert-file-attributes): Handle huge file sizes.
22076 2007-07-23  Juri Linkov  <juri@jurta.org>
22078         * isearch.el (isearch-message-function): New variable.
22079         (isearch-update, isearch-search): Use it.
22081         * simple.el (goto-history-element): New function created from
22082         next-history-element.
22083         (next-history-element): Most code moved to goto-history-element.
22084         Call goto-history-element with (- minibuffer-history-position n).
22085         (previous-history-element): Call goto-history-element with (+
22086         minibuffer-history-position n).
22087         (minibuffer-setup-hook): Add minibuffer-history-isearch-setup.
22088         (minibuffer-history-isearch-message-overlay): New buffer-local variable.
22089         (minibuffer-history-isearch-setup, minibuffer-history-isearch-end)
22090         (minibuffer-history-isearch-search, minibuffer-history-isearch-message)
22091         (minibuffer-history-isearch-wrap, minibuffer-history-isearch-push-state)
22092         (minibuffer-history-isearch-pop-state): New functions.
22094 2007-07-23  Thien-Thi Nguyen  <ttn@gnuvola.org>
22096         * vc-hooks.el (vc-stay-local-p): Fix bug: Avoid remove-if-not.
22097         Also, if FILE is a list, return non-nil if any of its elements
22098         should stay local.  Update docstring.
22100 2007-07-23  Stefan Monnier  <monnier@iro.umontreal.ca>
22102         * emacs-lisp/copyright.el (copyright-update-year): Fix 2007-05-25
22103         change by reverting a small part.
22105 2007-07-23  Richard Stallman  <rms@gnu.org>
22107         * progmodes/octave-inf.el (inferior-octave-prompt): Accept .exe.
22109 2007-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
22111         * vc-git.el (vc-git-checkin): Delete unused parameter and the code
22112         handling it.  Use vc-git-command.
22113         (vc-git-find-version, vc-git-diff-tree): New functions.
22114         (vc-git-revert): Use vc-git-command.
22115         (vc-git--run-command): Delete.
22117 2007-07-23  Alexandre Julliard  <julliard@winehq.org>
22119         * vc-git.el (vc-git-workfile-unchanged-p): Update comment.
22121 2007-07-20  Kenichi Handa  <handa@m17n.org>
22123         * international/utf-8.el (utf-8-post-read-conversion):
22124         Temporarily bind utf-8-compose-scripts to nil while running
22125         *-compose-region functions.
22127 2007-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
22129         * vc-git.el: Update status.
22130         (vc-directory-exclusion-list): Use eval-after-load.
22132 2007-07-22  Nick Roberts  <nickrob@snap.net.nz>
22134         * bindings.el (mode-line-remote): New variable.
22135         (help-echo): Add to default values of mode-line-format.
22137         * files.el: Mark mode-line-remote as risky.
22139 2007-07-22  Juri Linkov  <juri@jurta.org>
22141         * isearch.el (isearch-edit-string): Save old point and
22142         isearch-other-end to old-point and old-other-end before reading
22143         the search string from minibuffer.  After exiting minibuffer set
22144         point to old-other-end if point and the search direction is the
22145         same as before reading the search string.
22146         (isearch-del-char): Don't set isearch-yank-flag to t.  Put point
22147         to isearch-other-end.  Instead of isearch-search-and-update call
22148         three functions isearch-search, isearch-push-state and isearch-update.
22150 2007-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
22152         * vc-git.el (vc-git-register, vc-git-checkin): Use vc-git-command,
22153         deal with multiple file arguments.
22154         (vc-git-print-log): Deal with multiple file arguments.
22156 2007-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22158         * diff-mode.el (diff-refine-ignore-spaces-hunk): Rename from
22159         diff-refine-hunk.  Adjust users.
22160         (diff-unified-hunk-p, diff-splittable-p): New functions.
22161         (diff-mode-menu): Use it to disable Split when it doesn't work.
22163 2007-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
22165         * diff-mode.el (diff-mode-menu): New entries.
22167 2007-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22169         * diff-mode.el (diff-unified->context): Use the new `apply' undo entry
22170         if applicable, so as to save undo-log space.
22172         * diff-mode.el (diff-find-file-name): Add arg `batch'.
22174         * diff-mode.el (diff-beginning-of-file-and-junk): New function.
22175         (diff-file-kill): Use it.
22176         (diff-beginning-of-hunk): Add arg `try-harder' using it.
22177         (diff-restrict-view, diff-find-source-location, diff-refine-hunk):
22178         Use it so they find the hunk even when we're in the file header.
22180 2007-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
22182         * vc-git.el (vc-git-revision-granularity, vc-git-root)
22183         (vc-git-command, vc-git-dir-state, vc-git-dired-state-info)
22184         (vc-git-create-repo): New functions.
22185         (vc-git-registered): New autoloaded function definition.
22186         (vc-git-registered): Use vc-git-root.
22187         (vc-git-responsible-p): New defalias.
22188         (vc-git-annotate-extract-revision-at-line): Uncomment.
22189         (vc-git-print-log): Add the file name to the log.
22190         (vc-git-log-view-mode): New derived mode.
22191         (vc-git-diff, vc-git-annotate-command): Use vc-git-command.
22193 2007-07-22  Michael Albinus  <michael.albinus@gmx.de>
22195         * progmodes/grep.el (grep-compute-defaults): Keep default values.
22197 2007-07-22  Ralf Angeli  <angeli@caeruleus.net>
22199         * textmodes/reftex.el (reftex-access-parse-file): Create parse
22200         file in a way that does not interfere with recentf mode.
22201         (reftex-access-parse-file): Do not risk destroying an existing
22202         buffer.
22204 2007-07-22  Alexandre Julliard  <julliard@winehq.org>
22206         * vc-git.el: New file.
22208 2007-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22210         * textmodes/tex-mode.el (tex-font-script-display): Change default.
22212 2007-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
22214         * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
22215         for branches and new files.
22217         * vc-hooks.el (vc-default-mode-line-string): Move mouse-face and
22218         local-map handling ...
22219         (vc-mode-line): ... here.  Improve handling of help-echo.
22221         * vc.el (mode-line-string): Document help-echo usage.
22223 2007-07-22  Michael Albinus  <michael.albinus@gmx.de>
22225         Sync with Tramp 2.1.10.
22227         * net/tramp.el (tramp-get-ls-command): Fix typo.
22229         * net/trampver.el: Update release number.
22231 2007-07-22  Jan Djärv  <jan.h.d@swipnet.se>
22233         * startup.el (command-line-x-option-alist): Use x-handle-no-bitmap-icon.
22235         * term/x-win.el (x-handle-no-bitmap-icon): New function.
22237 2007-07-22  Martin Rudalics  <rudalics@gmx.at>
22239         * add-log.el (change-log-fill-parenthesized-list): New function.
22240         (change-log-indent): Call change-log-fill-parenthesized-list.
22241         (change-log-fill-paragraph): Bind fill-indent-according-to-mode to t.
22242         Have lines with leading asterisk start a paragraph.
22244 2007-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
22246         * calc/calc-math.el (math-emacs-precision)
22247         (math-largest-emacs-expt, math-smallest-emacs-expt):
22248         New variables.
22249         (math-use-emacs-fn): New function.
22250         (math-exp-raw): Evaluate with `math-use-emacs-fn', when
22251         appropriate.
22253 2007-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
22255         * image-dired.el (image-dired-sane-db-file): New func.
22256         (image-dired-write-tags, image-dired-remove-tag)
22257         (image-dired-list-tags, image-dired-write-comments)
22258         (image-dired-get-comment, image-dired-mark-tagged-files)
22259         (image-dired-create-gallery-lists): Call new func.
22260         Reported by Dieter Wilhelm <dieter@duenenhof-wilhelm.de>.
22262 2007-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
22264         * vc-hg.el (vc-hg-dir-state): Fix loop.
22265         (vc-hg-print-log): Fix expected return value for vc-hg-command.
22266         (vc-hg-next-version, vc-hg-delete-file, vc-hg-rename-file)
22267         (vc-hg-register, vc-hg-create-repo, vc-hg-checkin)
22268         (vc-hg-revert): Likewise.
22269         (vc-hg-revision-table, vc-hg-revision-completion-table): New
22270         functions.
22272 2007-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
22274         * add-log.el (change-log-resolve-conflict): Don't lose data if the
22275         merge fails.
22277 2007-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
22279         * progmodes/compile.el (compilation-auto-jump-to-first-error):
22280         Add group and version.
22282 2007-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
22284         * add-log.el (add-log-file-name): Use file-relative-name.
22285         (add-change-log-entry): Delay reading
22286         add-log-(full-name|mailing-address) to after we've switched to the
22287         ChangeLog buffer so we get the right value.
22288         (add-change-log-entry, add-log-current-defun, change-log-merge):
22289         Use derived-mode-p rather than checking major-mode directly.
22291         * pcvs.el (cvs-mode-add-change-log-entry-other-window): Use a directory
22292         name for buffer-file-name if it refers to a directory.
22294         * vc-arch.el (vc-arch-diff): Fix last change.
22296         * progmodes/compile.el (compilation-start): Remember the original
22297         directory in a buffer-local compilation-directory.
22298         (compile): Set the global value of compilation-directory.
22299         (recompile): Use compilation-directory even in the compilation buffer.
22301 2007-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
22303         * vc-hg.el (vc-hg-diff): Use vc-hg-command.
22305 2007-07-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
22307         * ps-print.el: Problem with foreground and background color when
22308         printing a buffer with and without faces.  Reported by Christian
22309         Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
22310         (ps-print-version): New version 6.7.5.
22311         (ps-default-fg): Change default value to nil, so black color is used
22312         when a face does not specify a foreground color.
22313         (ps-default-bg): Change default value to nil, so white color is used
22314         for background color.
22315         (ps-begin-job): Fix code.
22317 2007-07-20  Eli Zaretskii  <eliz@gnu.org>
22319         * makefile.w32-in (install-lisp-SH): Don't create subdirectories
22320         in $(INSTALL_DIR)/lisp/ if they already exist.
22322 2007-07-20  Dhruva Krishnamurthy  <dhruvakm@gmail.com>  (tiny change)
22324         * makefile.w32-in (install-lisp-CMD): Don't create subdirectories
22325         in $(INSTALL_DIR)/lisp/ if they already exist.
22327 2007-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
22329         * progmodes/vera-mode.el (vera-re-search-forward)
22330         (vera-re-search-backward): Remove use of store-match-data.
22331         (vera-mode-map): Move initialization into declaration.
22333         * progmodes/flymake.el (flymake-buildfile-dirs): Remove.
22334         (flymake-find-buildfile): Use locate-dominating-file.
22336         * vc.el (vc-delistify): Use mapconcat.
22337         (vc-do-command): Minor simplification.
22338         (vc-expand-dirs): Use push.
22340         * vc-mcvs.el (vc-mcvs-create-repo):
22341         * vc-cvs.el (vc-cvs-create-repo): Remove.
22343         * vc-hooks.el (vc-find-root): Fix case where `file' is the current
22344         directory and the root as well.
22346 2007-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
22348         * vc-hooks.el (vc-default-workfile-unchanged-p): Pass a list
22349         instead of a file.
22351         * vc-hg.el (vc-hg-print-log): Deal with multiple file arguments.
22352         (vc-hg-registered): Replace if with when.
22353         (vc-hg-state): Deal with nonexistent files and handle removed files.
22354         (vc-hg-dir-state, vc-hg-dired-state-info): New functions.
22355         (vc-hg-checkout): Re-enable.
22356         (vc-hg-create-repo): Fix typos.
22357         (vc-hg-print-log): Fix for multiple files.
22358         (vc-hg-workfile-unchanged-p): New function.
22360         * vc.el: Fix typo.
22361         (vc-print-log): Fix call to print-log.
22362         (vc-default-comment-history): Likewise.
22363         (vc-directory-exclusion-list): Add .hg and .bzr.
22364         (vc-diff-internal): Pass a list instead of a file.
22366         * vc-mcvs.el (vc-mcvs-create-repo): Fix typos.
22368         * vc-bzr.el (vc-bzr-create-repo): New function.
22370 2007-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
22372         * vc-hooks.el (vc-find-root): Walk up the tree to find an existing
22373         `file' from which to start the search.
22375 2007-07-19  Eric S. Raymond  <esr@snark.thyrsus.com>
22377         * vc-cvs.el (vc-cvs-checkin, vc-cvs-diff): Finish transition from
22378         having a single file argument to having a list of files as the
22379         first argument.
22381 2007-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
22383         * files.el (locate-dominating-file): New function.
22385 2007-07-18  Michael Albinus  <michael.albinus@gmx.de>
22387         * progmodes/grep.el (grep-host-defaults-alist): New defvar.
22388         (grep-compute-defaults): Use it.
22390 2007-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
22392         * uniquify.el: Docstring fixes.
22394 2007-07-18  Eric S. Raymond  <esr@snark.thyrsus.com>
22396         * vc.el (revision-granularity, create-repo): Document new vc
22397         backend properties.
22398         (vc-rollback): Renamed from vc-cancel-version.  Update references.
22399         Pass a list instead of a file.
22400         (vc-revert): Renamed from vc-revert-buffer.  Update references.
22401         (vc-delistify, vc-expand-dirs): New functions.
22402         (vc-do-command): Rename FILE to FILE-OR-LIST and deal with a list
22403         of files instead of a single file.
22404         (vc-position-context, vc-resync-window, vc-diff-internal)
22405         (vc-print-log): Pass a list instead of a file.
22407         * vc-hooks.el (vc-stay-local-p, vc-backend)
22408         (vc-backend-subdirectory-name): Work on a file list, not a single
22409         file.
22410         (vc-workfile-version): Update docstring.
22411         (vc-menu-map): Use vc-rollback instead of vc-cancel-version and
22412         vc-revert instead of vc-revert-buffer.
22413         (vc-prefix-map): Likewise.  Bind vc-update.
22415         * vc-svn.el (vc-svn-revision-granularity, vc-svn-create-repo)
22416         (vc-svn-wash-log): New functions.
22417         (vc-svn-register, vc-svn-checkin, vc-svn-print-log)
22418         (vc-svn-command): Deal with a list of files, not a single file.
22420         * vc-rcs.el (vc-rcs-revision-granularity, vc-rcs-create-repo)
22421         (vc-rcs-wash-log): New functions.
22422         (vc-rcs-register, vc-rcs-checkin, vc-rcs-diff, vc-rcs-print-log):
22423         Deal with a list of files, not a single file.
22424         (vc-rcs-rollback): Likewise.  Rename from vc-rcs-cancel-version.
22426         * vc-sccs.el (vc-sccs-revision-granularity, vc-sccs-wash-log): New
22427         functions.
22428         (vc-sccs-register, vc-sccs-checkin, vc-sccs-diff): Deal with a
22429         list of files, not a single file.
22431         * vc-mcvs.el (vc-mcvs-revision-granularity, vc-mcvs-create-repo):
22432         New functions.
22433         (vc-mcvs-register, vc-mcvs-checkin, vc-mcvs-print-log)
22434         (vc-mcvs-diff): Deal with a list of files, not a single file.
22436         * vc-hg.el (vc-hg-revision-granularity, vc-hg-create-repo): New
22437         functions.
22438         (vc-hg-print-log): Deal with a list of files, not a single file.
22439         (vc-hg-diff-tree): New function, replace defalias with the same
22440         name.
22441         (vc-hg-register, vc-hg-checkin, vc-hg-command): Rename FILE to
22442         FILES to denote that it is a file list, not a single file.
22444         * vc-cvs.el (vc-cvs-create-repo, vc-cvs-wash-log): New functions.
22445         (vc-cvs-register, vc-cvs-checkin): Deal with a list of files, not
22446         a single file.
22447         (vc-cvs-print-log, vc-cvs-command): Rename FILE to FILES to denote
22448         that it is a file list, not a single file.
22449         (vc-cvs-diff): Likewise.  Simplify.
22451         * vc-arch.el (vc-arch-register, vc-arch-checkin, vc-arch-diff):
22452         Deal with a list of files, not a single file.
22454         * vc-bzr.el (vc-bzr-register, vc-bzr-command, vc-bzr-checkin)
22455         (vc-bzr-print-log): Update FILE parameter name to denote that it
22456         is a file list, not a single file.
22457         (vc-bzr-diff): Likewise.  Use the car of files.
22459 2007-07-18  Juanma Barranquero  <lekktu@gmail.com>
22461         * follow.el (follow-mode-hook, follow-mode-off-hook, follow-mode)
22462         (follow-delete-other-windows-and-split, follow-recenter)
22463         (follow-windows-aligned-p, follow-point-visible-all-windows-p)
22464         (follow-redisplay, follow-estimate-first-window-start)
22465         (follow-xemacs-scrollbar-support, follow-intercept-process-output):
22466         Fix typos in docstrings.
22468 2007-07-18  Martin Rudalics  <rudalics@gmx.at>
22470         * add-log.el (change-log-mode): Use fill-nobreak-predicate to
22471         avoid that filling introduces lines with a single asterisk.
22473         * kmacro.el (kmacro-end-macro): When ignoring empty macro
22474         avoid incorrect kmacro-ring-empty-p messages.
22475         Reported by Michael Schierl <schierlm@gmx.de>.
22477 2007-07-17  Dan Nicolaescu  <dann@ics.uci.edu>
22479         * vc.el: Add more info about the vc-registered function.
22481 2007-07-17  Michael Albinus  <michael.albinus@gmx.de>
22483         * files.el (file-remote-p): Introduce optional parameter
22484         IDENTIFICATION.
22486         * recentf.el (recentf-keep-default-predicate): Adapt call of
22487         `file-remote-p'.
22489         * progmodes/grep.el (grep-probe): Use `process-file'.
22490         (grep-compute-defaults): Handle variables host specific.
22492         * net/ange-ftp.el (ange-ftp-file-remote-p): Handle optional
22493         parameter IDENTIFICATION.
22495         * net/tramp.el (tramp-handle-file-remote-p): Handle optional
22496         parameter IDENTIFICATION.
22497         (tramp-handle-set-file-times): New defun.  Replaces `tramp-touch'.
22498         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
22499         Add entry for `set-file-times'.
22500         (tramp-do-copy-or-rename-file-via-buffer)
22501         (tramp-do-copy-or-rename-file-out-of-band): Use `set-file-times'.
22502         (tramp-handle-unhandled-file-name-directory): Rewrite.
22503         (tramp-convert-file-attributes): Add error handling when inode is
22504         extraordinary big.
22505         (tramp-get-inode): Change parameter from FILE to VEC.
22506         (tramp-handle-start-file-process): Use (current-buffer) if BUFFER
22507         is nil.  This is according to the specification.  Goto (point-max)
22508         when ready.
22509         (tramp-handle-shell-command): Rewrite completely, using
22510         `process-file' and `start-file-process'.
22511         (tramp-methods, tramp-find-shell)
22512         (tramp-open-connection-setup-interactive-shell)
22513         (tramp-maybe-open-connection): Guard against $PROMPT_COMMAND shell
22514         var.  Reported by Steve Youngs <steve@sxemacs.org>.
22516         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add
22517         entry for `set-file-times'.  Rename `start-process' into
22518         `start-file-process'.  Remove `call-process' entry.
22519         (tramp-fish-handle-set-file-times): New defun.
22520         (tramp-fish-handle-executable-find): Use `process-file'.
22521         (tramp-fish-handle-process-file): New defun.  Replaces
22522         `tramp-fish-handle-call-process'.
22523         (tramp-fish-do-copy-or-rename-file-directly): Use
22524         `set-file-times'.
22525         (tramp-fish-get-file-entries): Change `tramp-get-inode' parameter.
22527         * net/tramp-smb.el (tramp-smb-handle-file-attributes): Change
22528         `tramp-get-inode' parameter.
22530 2007-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
22532         * vc-bzr.el (vc-bzr-version, vc-bzr-at-least-version)
22533         (vc-bzr-post-command-function): Remove.  Version 0.8 is already old
22534         nowadays, and by the time Emacs-23 comes out, nobody will even remember
22535         it has ever existed.
22537 2007-07-17  Dan Nicolaescu  <dann@ics.uci.edu>
22539         * vc.el: Undo previous change.
22541 2007-07-16  Eli Zaretskii  <eliz@gnu.org>
22543         * makefile.w32-in (clean): Don't delete *~.
22545 2007-07-16  Stefan Monnier  <monnier@iro.umontreal.ca>
22547         * textmodes/tex-mode.el (tex-verbatim-environments):
22548         Add safe-local-variable property.
22549         (tex-font-lock-syntactic-keywords): Lookup tex-verbatim-environments
22550         when starting font-lock rather than when loading tex-mode.el.
22552         * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Skip over the
22553         whole $( rather than just the $.  Rename from sh-quoted-subshell.
22554         (sh-font-lock-syntactic-keywords): Adjust call accordingly.
22556 2007-07-16  Thien-Thi Nguyen  <ttn@gnuvola.org>
22558         * bookmark.el (bookmark-maybe-sort-alist): Don't modify
22559         bookmark-alist.  Instead, if not sorting, simply return it.
22560         (bookmark-bmenu-list): Call bookmark-maybe-sort-alist
22561         for its return value, not for its side effect.
22563         * emacs-lisp/lisp-mode.el (calculate-lisp-indent): In the
22564         case of alignment under a constant symbol, find and consider
22565         the sexp actually at indentation to be the "last sexp".
22567 2007-07-16  Drew Adams  <drew.adams@oracle.com>
22569         * mouse.el (mouse-yank-secondary): Better error message if no
22570         secondary selection.
22572 2007-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
22574         * vc-hooks.el (vc-handled-backends): Move BZR later in the list.
22576         * term/xterm.el (xterm-turn-on-modify-other-keys)
22577         (xterm-turn-off-modify-other-keys): New functions.
22578         (terminal-init-xterm): Enable the modifyOtherKeys feature if the
22579         terminal supports it.
22581 2007-07-16  Thien-Thi Nguyen  <ttn@gnuvola.org>
22583         * bookmark.el (bookmark-show-all-annotations):
22584         Make sure each inserted annotation ends with newline.
22586 2007-07-15  Richard Stallman  <rms@gnu.org>
22588         * kmacro.el (kmacro-bind-to-key): Avoid comparisons on function keys.
22590         * tutorial.el (tutorial--find-changed-keys):
22591         Handle C-x specially like ESC.
22593 2007-07-15  Aaron Hawley  <aaronh@garden.org>
22595         * tar-mode.el (tar-get-descriptor): No error for zero-length file.
22597 2007-07-15  Juri Linkov  <juri@jurta.org>
22599         * delsel.el (delete-selection-pre-hook):
22600         * emulation/cua-base.el (cua-paste): Before a yank command,
22601         check also whether last-command is one of mouse-save-then-kill,
22602         mouse-secondary-save-then-kill, mouse-set-region, mouse-drag-region.
22604 2007-07-15  Michael Albinus  <michael.albinus@gmx.de>
22606         * recentf.el (recentf-keep-default-predicate): New defun.
22607         (recentf-keep): Use it as initial value.
22609 2007-07-15  Karl Fogel  <kfogel@red-bean.com>
22611         * bookmark.el: Revert 2007-07-13T18:16:17Z!kfogel@red-bean.com,
22612         thus restoring bookmark bindings to three slots under C-x r.  See
22613         http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00705.html.
22615 2007-07-15  Jeff Miller  <jmiller@cablespeed.com>  (tiny change)
22617         * calendar/calendar.el (calendar-goto-bahai-date): Autoload it.
22619 2007-07-15  Jason Rumney  <jasonr@gnu.org>
22621         * w32-fns.el (set-default-process-coding-system): Use dos line ends
22622         for input to cmdproxy on all versions of Windows.
22623         Use dos line ends for input to plink.
22625         * comint.el (comint-simple-send): Concat newline before sending.
22626         (comint-password-prompt-regexp): Recognize plink's passphrase prompt.
22628 2007-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
22630         * emacs-lisp/autoload.el (generated-autoload-file): Autoload the
22631         safe-local-variable setting.
22633 2007-07-14  David Kastrup  <dak@gnu.org>
22635         * emacs-lisp/advice.el (defadvice): Doc fix.
22637 2007-07-14  Juanma Barranquero  <lekktu@gmail.com>
22639         * subr.el (when, unless): Doc fix.
22641 2007-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
22643         * replace.el (match): Use yellow1 instead of yellow.
22645         * progmodes/gdb-ui.el (breakpoint-enabled): Use red1 instead of
22646         red.
22648         * pcvs-info.el (cvs-unknown): Likewise.
22650 2007-07-13  Eli Zaretskii  <eliz@gnu.org>
22652         * makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets.
22653         (install): Use them to copy all *.el files before *.elc.
22655 2007-07-13  Drew Adams  <drew.adams@oracle.com>
22657         * bookmark.el (bookmark-jump-other-window): New function.
22658         (bookmark-map): Bind it to "o".
22660         http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html
22661         and its thread contains discussion about this change.
22662         The original patch was slightly tweaked by Karl Fogel
22663         <kfogel@red-bean.com> before committing.
22665 2007-07-13  Karl Fogel  <kfogel@red-bean.com>
22667         * bookmark.el: Shorten some comments to fit within 80 lines.
22669 2007-07-13  Karl Fogel  <kfogel@red-bean.com>
22671         * bookmark.el: Don't define bookmark keys under the "C-xr" map;
22672         instead, make "C-xp" a prefix for bookmark-map.  Patch by Drew
22673         Adams <drew.adams@oracle.com>, mildly tweaked by me.  See
22674         http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html.
22676 2007-07-13  Carsten Dominik  <dominik@science.uva.nl>
22678         * textmodes/org.el: Bug fixes.
22679         (org-end-of-line): Move to end of line if in headline without tags.
22681 2007-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
22683         * vc-hooks.el: Remove spurious * in docstrings.
22684         (vc-handled-backends): Add BZR.
22686         * vc-hooks.el (vc-find-file-hook): Use with-demoted-errors.
22688 2007-07-12  Davis Herring  <herring@lanl.gov>
22690         * desktop.el (desktop-buffer-info, desktop-save):
22691         Use `desktop-dirname' instead of `dirname'.
22693 2007-07-12  Paul Pogonyshev  <pogonyshev@gmx.net>
22695         * progmodes/which-func.el (which-func-modes): Add `python-mode'.
22697         * progmodes/python.el (python-which-func-length-limit): New var.
22698         (python-which-func): New function.
22699         (python-current-defun): Add optional `length-limit' and try to fit
22700         computed function name to that length.
22701         (python-mode): Hook `python-which-func' up.
22703 2007-07-12  Sean O'Rourke  <sorourke@cs.ucsd.edu>  (tiny change)
22705         * pcomplete.el (pcomplete-entries): Obey pcomplete-ignore-case.
22707         * comint.el (comint-dynamic-complete-as-filename):
22708         Use read-file-name-completion-ignore-case.
22710 2007-07-12  Stefan Monnier  <monnier@iro.umontreal.ca>
22712         * comint.el (comint-dynamic-list-filename-completions):
22713         Use read-file-name-completion-ignore-case.
22715         * vc-cvs.el: Require CL.
22716         (vc-cvs-revision-table, vc-cvs-revision-completion-table):
22717         New functions to provide completion of revision names.
22719         * vc-cvs.el (vc-functions): Clear up the cache when reloading the file.
22720         (vc-cvs-annotate-first-line-re): New const.
22721         (vc-cvs-annotate-process-filter): New fun.
22722         (vc-cvs-annotate-command): Use them and run the command asynchronously.
22724 2007-07-12  Paul Pogonyshev  <pogonyshev@gmx.net>
22726         * emacs-lisp/eldoc.el (eldoc-last-data): Revise documentation.
22727         (eldoc-print-current-symbol-info): Adjust for changed helper
22728         function signatures.
22729         (eldoc-get-fnsym-args-string): Add `args' argument.  Use new
22730         `eldoc-highlight-function-argument'.
22731         (eldoc-highlight-function-argument): New function.
22732         (eldoc-get-var-docstring): Format documentation with
22733         `font-lock-variable-name-face'.
22734         (eldoc-docstring-format-sym-doc): Add `face' argument and apply it
22735         where suited.
22736         (eldoc-fnsym-in-current-sexp): Return a list with argument index.
22737         (eldoc-beginning-of-sexp): Return number of skipped sexps.
22739 2007-07-11  Michael Albinus  <michael.albinus@gmx.de>
22741         * progmodes/compile.el (compilation-start): `start-process' must
22742         still be redefined when calling `start-process-shell-command'.
22744         * progmodes/gud.el (gud-file-name): When `default-directory' is a
22745         remote file name, prepend its remote part to the filename.
22746         (gud-common-init): When `default-directory' is a remote file name,
22747         make the filename relative to it.
22748         Based on a patch by Nick Roberts <nickrob@snap.net.nz>.
22750 2007-07-11  Dan Nicolaescu  <dann@ics.uci.edu>
22752         * vc-hooks.el (vc-default-mode-line-string): Add a mouse face,
22753         mouse binding and a tooltip.
22755 2007-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
22757         * menu-bar.el (vc-menu-map): New defalias.
22759 2007-07-10  Richard Stallman  <rms@gnu.org>
22761         * emacs-lisp/lisp-mode.el (eval-defun):
22762         Explain special handling of `defface'.
22764 2007-07-10  Jim Meyering  <jim@meyering.net>  (tiny change)
22766         * emacs-lisp/copyright.el (copyright-current-gpl-version): Set to 3.
22768         * autoinsert.el (auto-insert-alist): s/2/3/ in the generated comment.
22770 2007-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
22772         * emacs-lisp/cl.el: Load cl-loaddefs.el quietly.
22774         * vc-arch.el (vc-arch-complete): Remove.
22775         (vc-arch-revision-completion-table): Use complete-with-action.
22777         * subr.el (condition-case-no-debug, with-demoted-errors): New macros.
22778         (complete-with-action): New function.
22779         (dynamic-completion-table): Use it.
22781 2007-07-10  Michael Albinus  <michael.albinus@gmx.de>
22783         * comint.el (make-comint, make-comint-in-buffer)
22784         (comint-exec-1): Replace `start-process' by `start-file-process'.
22786         * progmodes/compile.el (compilation-start): Revert redefining
22787         `start-process'.
22789 2007-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
22791         * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Be careful
22792         with EOLs when generating MD5 checksums.
22794         * follow.el: Don't change the global map from the follow-mode-map
22795         defvar, but from the toplevel.  Use easy-menu to unify the Emacs and
22796         XEmacs code.
22797         (turn-on-follow-mode, turn-off-follow-mode): Remove interactive spec
22798         since `follow-mode' should be used instead for that.
22800         * emacs-lisp/easymenu.el (easy-menu-binding): New function.
22801         (easy-menu-do-define): Use it.
22802         (easy-menu-do-add-item): Inline into easy-menu-add-item and then remove.
22804         * progmodes/compile.el (compilation-auto-jump-to-first-error)
22805         (compilation-auto-jump-to-next): New vars.
22806         (compilation-auto-jump): New function.
22807         (compilation-error-properties): Use them to jump to first error.
22808         (compilation-start): Set the var if requested.
22810         * emacs-lisp/autoload.el (update-directory-autoloads): Remove
22811         duplicates without also removing entries from other directories.
22813 2007-07-10  Carsten Dominik  <dominik@science.uva.nl>
22815         * textmodes/org.el (org-agenda-day-view, org-agenda-week-view):
22816         Remember span as default.
22817         (org-columns-edit-value): Rename from `org-column-edit'.
22818         (org-columns-display-here-title): Rename from
22819         `org-overlay-columns-title'.
22820         (org-columns-remove-overlays): Rename from org-remove-column-overlays.
22821         (org-columns-get-autowidth-alist): Rename from
22822         `org-get-columns-autowidth-alist'.
22823         (org-columns-display-here): Rename from `org-overlay-columns'.
22824         (org-columns-new-overlay): Rename from `org-new-column-overlay'.
22825         (org-columns-quit): Rename from `org-column-quit'.
22826         (org-columns-show-value): Rename from `org-column-show-value'.
22827         (org-columns-content, org-columns-widen)
22828         (org-columns-next-allowed-value)
22829         (org-columns-edit-allowed, org-columns-store-format)
22830         (org-columns-uncompile-format, org-columns-redo)
22831         (org-columns-edit-attributes, org-delete-property)
22832         (org-set-property, org-columns-update)
22833         (org-columns-compute, org-columns-eval)
22834         (org-columns-not-in-agenda, org-columns-compute-all)
22835         (org-property-next-allowed-value)
22836         (org-columns-compile-format)
22837         (org-fill-paragraph-experimental)
22838         (org-string-to-number, org-property-action)
22839         (org-columns-move-left, org-columns-new)
22840         (org-column-number-to-string)
22841         (org-property-previous-allowed-value)
22842         (org-at-property-p, org-columns-delete)
22843         (org-columns-previous-allowed-value)
22844         (org-columns-move-right, org-columns-narrow)
22845         (org-property-get-allowed-values)
22846         (org-verify-version, org-column-string-to-number)
22847         (org-delete-property-globally): New functions.
22848         (org-columns-current-fmt): Rename from `org-current-columns-fmt'.
22849         (org-columns-overlays): Rename from `org-column-overlays'.
22850         (org-columns-map): Rename from `org-column-map'.
22851         (org-columns-current-maxwidths): Rename from
22852         `org-current-columns-maxwidths'.
22853         (org-columns-begin-marker, org-columns-current-fmt-compiled)
22854         (org-previous-header-line-format)
22855         (org-columns-inhibit-recalculation)
22856         (org-columns-top-level-marker): New variables.
22857         (org-columns-default-format): Rename from `org-default-columns-format'.
22858         (org-property-re): New constant.
22860 2007-07-10  Guanpeng Xu  <herberteuler@hotmail.com>
22862         * subr.el (looking-at-p, string-match-p): New functions.
22864 2007-07-09  Reiner Steib  <Reiner.Steib@gmx.de>
22866         * textmodes/tex-mode.el (tex-fontify-script)
22867         (tex-font-script-display): New variables to make display of
22868         superscripts and subscripts customizable.
22869         (tex-font-lock-suscript, tex-font-lock-match-suscript): Use them.
22871 2007-07-09  Richard Stallman  <rms@gnu.org>
22873         * isearch.el (isearch-edit-string): Call to isearch-push-state
22874         after the search.
22876 2007-07-09  Jan Djärv  <jan.h.d@swipnet.se>
22878         * window.el (fit-window-to-buffer): Remove setting of window-min-height
22879         to 1 as enlarge-window uses the value to resize/shrink windows other
22880         than WINDOW if needed.
22882 2007-07-08  Katsumi Yamaoka  <yamaoka@jpl.org>
22884         * cus-start.el (file-coding-system-alist): Fix custom type.
22886 2007-07-08  Chong Yidong  <cyd@stupidchicken.com>
22888         * longlines.el (longlines-wrap-region): Avoid marking buffer as
22889         modified.
22890         (longlines-auto-wrap, longlines-window-change-function):
22891         Remove unnecessary calls to set-buffer-modified-p.
22893 2007-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
22895         * vc-cvs.el (vc-cvs-revert): Use vc-default-revert.
22896         (vc-cvs-checkout): Remove last arg now unused; simplify.
22898 2007-07-08  Michael Albinus  <michael.albinus@gmx.de>
22900         * files.el (file-remote-p): Introduce optional parameter CONNECTED.
22902         * net/tramp.el:
22903         * net/tramp-ftp.el:
22904         * net/tramp-smb.el:
22905         * net/tramp-uu.el:
22906         * net/trampver.el: Migrate to Tramp 2.1.
22908         * net/tramp-cache.el:
22909         * net/tramp-fish.el:
22910         * net/tramp-gw.el: New Tramp packages.
22912         * net/tramp-util.el:
22913         * net/tramp-vc.el: Removed.
22915         * net/ange-ftp.el: Add ange-ftp property to 'start-file-process.
22916         (ange-ftp-file-remote-p): Handle optional parameter CONNECTED.
22918         * net/rcompile.el (remote-compile): Handle Tramp 2.1 arguments.
22920         * progmodes/compile.el (compilation-start): Redefine
22921         `start-process' temporarily when `default-directory' is remote.
22922         Remove case of synchronous compilation, this won't happen ever.
22923         (compilation-setup): Make local variable `comint-file-name-prefix'
22924         for remote compilation.
22926 2007-07-08  Martin Rudalics  <rudalics@gmx.at>
22928         * novice.el (disabled-command-function): Fit window to buffer to
22929         make last line visible.
22930         Reported by Stephen Berman <Stephen.Berman at gmx.net>.
22932         * mouse.el (mouse-drag-track): Reset transient-mark-mode to nil
22933         when handling the terminating event.
22935 2007-07-07  Jay Belanger  <jay.p.belanger@gmail.com>
22937         * calc/calc.el (math-read-number-simple): Remove leading 0s.
22938         (math-bignum-digit-length): Change to optimal value.
22940         * calc/calc-bin.el (math-bignum-logb-digit-size)
22941         (math-bignum-digit-power-of-two): Evaluate when compiled.
22943         * calc/calc-comb.el (math-small-factorial-table)
22944         (math-init-random-base, math-prime-test): Remove unnecessary calls
22945         to `math-read-number-simple'.
22947         * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
22948         (math-approx-gamma-const): Add docstrings.
22950         * calc/calc-forms.el (math-julian-date-beginning)
22951         (math-julian-date-beginning-int): New constants.
22952         (math-format-date-part, math-parse-standard-date, calcFunc-julian):
22953         Use the new constants.
22955         * calc/calc-funcs.el (math-gammap1-raw): Add docstring.
22957         * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
22958         Add docstrings.
22960 2007-07-07  Tom Tromey  <tromey@redhat.com>
22962         * vc.el (vc-annotate): Jump to line and output message only after the
22963         process is really all done.
22965 2007-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
22967         * vc.el (vc-exec-after): Don't move point from the sentinel.
22968         Forcefully read all the remaining text in the pipe upon process exit.
22969         (vc-annotate-display-autoscale, vc-annotate-lines):
22970         Don't stop at the first unrecognized line.
22971         (vc-annotate-display-select): Run autoscale after the process is done
22972         since it depends on the whole result.
22974 2007-07-07  Eli Zaretskii  <eliz@gnu.org>
22976         * term/w32-win.el (menu-bar-open): New function.
22977         Bind <f10> to it.
22979 2007-07-07  Michael Albinus  <michael.albinus@gmx.de>
22981         * simple.el (start-file-process): New defun.
22983 2007-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
22985         * files.el (find-file-confirm-nonexistent-file): Rename from
22986         find-file-confirm-inexistent-file.  Update users.
22988         * emacs-lisp/autoload.el (autoload-find-destination): Understand a new
22989         format of autoload block where the file's time-stamp is replaced by its
22990         MD5 checksum.
22991         (autoload-generate-file-autoloads): Use MD5 checksum instead of
22992         time-stamp for secondary autoloads files.
22993         (update-directory-autoloads): Remove duplicate entries.
22994         Use time-less-p for time-stamps, as done in autoload-find-destination.
22996 2007-07-07  Jay Belanger  <jay.p.belanger@gmail.com>
22998         * calc/calc.el (math-read-number): Replace number by variable.
22999         (math-read-number-simple): Properly parse small integers.
23001 2007-07-07  Dan Nicolaescu  <dann@ics.uci.edu>
23003         * vc.el: Fix doc for the checkout function.
23005 2007-07-06  Dan Nicolaescu  <dann@ics.uci.edu>
23007         * vc-hg.el (vc-hg-root): New function.
23008         (vc-hg-registered): Use it.
23009         (vc-hg-diff-tree): New defalias.
23010         (vc-hg-responsible-p): Likewise.
23011         (vc-hg-checkout): Comment out, not needed.
23012         (vc-hg-delete-file, vc-hg-rename-file, vc-hg-could-register)
23013         (vc-hg-find-version, vc-hg-next-version): New functions.
23015 2007-07-06  Andreas Schwab  <schwab@suse.de>
23017         * emacs-lisp/lisp-mode.el (eval-last-sexp): Avoid introducing any
23018         dynamic bindings around the evaluation of the expression.
23019         Reported by Jay Belanger <jay.p.belanger@gmail.com>.
23021 2007-07-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23023         * autorevert.el (auto-revert-tail-handler): Use inhibit-read-only.
23024         Run before-revert-hook.  Suggested by Denis Bueno <denbuen@sandia.gov>.
23025         Use run-hooks rather than run-mode-hooks.
23027 2007-07-05  Jay Belanger  <jay.p.belanger@gmail.com>
23029         * calc/calc-comb.el (math-random-digit): Rename to
23030         `math-random-three-digit-number'.
23031         (math-random-digits): Don't depend on representation of integer.
23033         * calc/calc-bin.el (math-bignum-logb-digit-size)
23034         (math-bignum-digit-power-of-two): New constants.
23035         (math-and-bignum, math-or-bignum, math-xor-bignum, math-diff-bignum)
23036         (math-not-bignum, math-clip-bignum): Use the constants
23037         `math-bignum-digit-power-of-two' and `math-bignum-logb-digit-size'
23038         instead of their values.
23039         (math-clip): Use math-small-integer-size instead of its value.
23041         * calc/calc.el (math-add-bignum): Replace number by constant.
23043 2007-07-05  Chong Yidong  <cyd@stupidchicken.com>
23045         * wid-edit.el (widget-documentation-string-value-create):
23046         Insert indentation spaces.
23048 2007-07-05  Thien-Thi Nguyen  <ttn@gnuvola.org>
23050         * emacs-lisp/byte-opt.el: Revert last change.
23052 2007-07-05  Dan Nicolaescu  <dann@ics.uci.edu>
23054         * vc-hooks.el (vc-handled-backends): Add HG.
23056         * vc-hg.el (vc-handled-backends): Remove, done in vc-hooks.el now.
23058 2007-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
23060         * complete.el (PC-do-complete-and-exit): Add support for the new
23061         `confirm-only' confirmation mode.
23063 2007-07-05  Chong Yidong  <cyd@stupidchicken.com>
23065         * cus-edit.el (custom-commands): New variable.
23066         (custom-tool-bar-map): New variable.  Initialize using
23067         `custom-commands'.
23068         (custom-mode): Use `custom-tool-bar-map'.
23069         (custom-buffer-create-internal): Insert action buttons only if
23070         tool bar is not used.  Use `custom-commands'.
23071         (Custom-help, custom-command-apply): New function.
23072         (custom-command-apply, Custom-set, Custom-save)
23073         (Custom-reset-current, Custom-reset-saved, Custom-reset-standard):
23074         Use `custom-command-apply' instead of duplicating code.
23075         (customize-group-other-window): Call `customize-group' instead of
23076         duplicating code.
23077         (customize-face-other-window): Call `customize-face' instead of
23078         duplicating code.
23079         (customize-group, customize-face): Add optional args for opening
23080         in another window.
23081         (custom-variable-tag): Don't inherit `variable-pitch' face.
23082         (custom-group-tag): Inherit `variable-pitch' face.
23083         (custom-variable-value-create): Set documentation indentation.
23084         (custom-group-value-create): Make group name a link, instead of
23085         using an extra "go to group" button.
23086         (custom-prompt-variable, custom-group-set, custom-group-save)
23087         (custom-group-reset-current, custom-group-reset-saved)
23088         (custom-group-reset-standard): Minor cleanup.
23090 2007-07-05  Thien-Thi Nguyen  <ttn@gnuvola.org>
23092         * Makefile.in (bootstrap-prepare): When copying from
23093         ldefs-boot.el, make sure loaddefs.el is writeable.
23095         (bootstrap-prepare): Make $(lisp)/ps-print.el
23096         and $(lisp)/emacs-lisp/cl-loaddefs.el writable, as well.
23098 2007-07-05  Dan Nicolaescu  <dann@ics.uci.edu>
23100         * vc-hg.el (vc-hg-internal-status): Inline in `vc-hg-state', the
23101         only caller, and delete.
23102         (vc-hg-state): Deal with exceptions and only parse the output on
23103         successful return.
23104         (vc-hg-internal-log): Inline in `vc-hg-workfile-version', the only
23105         caller, and delete.
23106         (vc-hg-workfile-version): Deal with exceptions and only parse the
23107         output on successful return.
23108         (vc-hg-revert): New function.
23110 2007-07-04  Jay Belanger  <jay.p.belanger@gmail.com>
23112         * calculator.el (calculator-expt): Use more cases to determine
23113         the value.
23115 2007-07-03  Dan Nicolaescu  <dann@ics.uci.edu>
23117         * progmodes/gud.el (auto-mode-alist): Match more valid gdb init
23118         file names.
23120 2007-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
23122         * calculator.el (calculator-expt, calculator-integer-p):
23123         New functions.
23124         (calculator-fact): Check to see if the factorial will be too
23125         large before computing it.
23126         (calculator-initial-operators): Use `calculator-expt' to
23127         compute "^".
23128         (calculator-mode): Mention that results which are too large
23129         will return inf.
23130         * calc/calc-comb.el (math-small-factorial-table): Replace list
23131         by vector.
23133 2007-07-03  David Kastrup  <dak@gnu.org>
23135         * shell.el: On request of the authors, remove their addresses for
23136         the sake of bug reports, and add the developer list address as
23137         maintainer information.
23139 2007-07-03  Richard Stallman  <rms@gnu.org>
23141         * files.el (make-directory): Doc fix.
23142         (find-file-confirm-inexistent-file): Make it a defcustom.
23143         Make nil the default.
23145 2007-07-02  Richard Stallman  <rms@gnu.org>
23147         * startup.el (command-line): Set buffer-offer-save in *scratch*
23148         and enable auto-save in it.
23150 2007-07-02  Carsten Dominik  <dominik@science.uva.nl>
23152         * textmodes/org.el (orgstruct-mode-map): New variable.
23153         (orgstruct-mode): New minor mode.
23154         (turn-on-orgstruct, orgstruct-error, orgstruct-setup)
23155         (orgstruct-make-binding, org-context-p, org-get-local-variables)
23156         (org-run-like-in-org-mode): New functions.
23157         (org-cycle-list-bullet): New command.
23158         (org-special-properties, org-property-start-re)
23159         (org-property-end-re): New constants.
23160         (org-with-point-at): New macro.
23161         (org-get-property-block, org-entry-properties, org-entry-get)
23162         (org-entry-delete, org-entry-get-with-inheritance)
23163         (org-entry-put, org-buffer-property-keys): New functions.
23164         (org-insert-property-drawer): New command.
23165         (org-entry-property-inherited-from): New variable.
23166         (org-column): New face.
23167         (org-column-overlays, org-current-columns-fmt)
23168         (org-current-columns-maxwidths, org-column-map): New variables.
23169         (org-column-menu): New menu.
23170         (org-new-column-overlay, org-overlay-columns)
23171         (org-overlay-columns-title, org-remove-column-overlays)
23172         (org-column-show-value, org-column-quit, org-column-edit):
23173         New functions.
23174         (org-columns, org-agenda-columns): New commands.
23175         (org-get-columns-autowidth-alist): New functions.
23176         (org-properties): New customize group.
23177         (org-default-columns-format): New option.
23178         (org-priority): Realign tags after changing priority.
23179         (org-preserve-lc): New macro.
23180         (org-update-checkbox-count): Catch case when there is no headline.
23181         (org-agenda-quit): Remove any column overlays.
23182         (org-beginning-of-item-list): Fixed bug when non-item line is
23183         indented too deep.
23184         (org-cached-props): New variable.
23185         (org-cached-entry-get): New function.
23186         (org-make-tags-matcher): Handle property matches.
23187         (org-table-recalculate): Swap evaluation order: Field formula
23188         first, then column formulas, but don't allow them to overwrite the
23189         field formulas.
23190         (org-table-eval-formula): New argument untouchable.
23191         (org-table-put-field-property): New function.
23193 2007-07-02  Martin Rudalics  <rudalics@gmx.at>
23195         * help-mode.el (help-make-xrefs): Skip spaces too when
23196         skipping tabs.
23198         * ffap.el (dired-at-point-prompter): Improve prompt in
23199         list-directory case.
23201 2007-07-01  Richard Stallman  <rms@gnu.org>
23203         * files.el (find-file-visit-truename): Fix safe-local-variable value.
23205 2007-07-01  Richard Stallman  <rms@gnu.org>
23207         * cus-start.el (max-mini-window-height): Added.
23209 2007-07-01  Sean O'Rourke  <sorourke@cs.ucsd.edu>  (tiny change)
23211         * complete.el (partial-completion-mode): Remove advice of
23212         read-file-name-internal.
23213         (PC-do-completion): Rebind minibuffer-completion-table.
23214         (PC-read-file-name-internal): New function doing what
23215         read-file-name-internal advice did.
23217 2007-07-01  Paul Pogonyshev  <pogonyshev@gmx.net>
23219         * emacs-lisp/byte-opt.el: Set `binding-is-magic'
23220         property on a few symbols.
23221         (byte-compile-side-effect-free-dynamically-safe-ops): New defconst.
23222         (byte-optimize-lapcode): Remove bindings that are not referenced
23223         and certainly will not effect through dynamic scoping.
23225 2007-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
23227         * files.el (find-file-confirm-inexistent-file): New var.
23228         (find-file, find-file-other-window, find-file-other-frame)
23229         (find-file-read-only, find-file-read-only-other-window)
23230         (find-file-read-only-other-frame): Use it.
23232 2007-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23234         * emacs-lisp/rx.el (rx-constituents): Fix up `anything'.
23236 2007-06-29  Juanma Barranquero  <lekktu@gmail.com>
23238         * generic-x.el (generic-define-mswindows-modes)
23239         (generic-define-unix-modes, apache-log-generic-mode)
23240         (bat-generic-mode-keymap, java-manifest-generic-mode)
23241         (show-tabs-generic-mode): Fix typos in docstrings.
23243 2007-06-29  Ryan Yeske  <rcyeske@gmail.com>
23245         * net/rcirc.el (rcirc-server-alist): Rename from rcirc-connections.
23246         (rcirc-default-full-name): Rename from rcirc-default-user-full-name.
23247         (rcirc-clear-activity): Make sure RCIRC-ACTIVITY isn't modified.
23248         (rcirc-print): Never ignore messages from ourself.
23250 2007-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
23252         * font-lock.el (lisp-font-lock-keywords-2): Recognize the new \(?1:..\)
23253         syntax as well.  Reported by Juri Linkov <juri@jurta.org>.
23255 2007-06-28  Jan Djärv  <jan.h.d@swipnet.se>
23257         * dnd.el (dnd-get-local-file-name): Set fixcase to t in call to
23258         replace-regexp-in-string.
23260 2007-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23262         * emacs-lisp/cl.el: Set edebug and indentation before loading
23263         cl-loaddefs.el so that its use of dolist doesn't load cl-macs.
23265 2007-06-28  Andreas Schwab  <schwab@suse.de>
23267         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Depend on
23268         $(lisp)/subdirs.el.
23270 2007-06-28  Juanma Barranquero  <lekktu@gmail.com>
23272         * speedbar.el (speedbar-handle-delete-frame): Don't try to delete
23273         the speedbar frame if nil; that deletes the current frame or
23274         causes an error if it is the only frame.
23275         Reported by Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>.
23277 2007-06-28  Kevin Ryde  <user42@zip.com.au>
23279         * textmodes/nroff-mode.el: Groff \# comments.
23280         (nroff-mode-syntax-table): \# comment intro,
23281         plain # as punct per global table.
23282         (nroff-font-lock-keywords): Add # as a single char escape.
23283         (nroff-mode): In comment-start-skip, match \#.
23285 2007-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23287         * vc-bzr.el (vc-functions): Clear up the cache when reloading the file.
23288         (vc-bzr-workfile-version, vc-bzr-could-register): Don't hardcode
23289         point-min == 1.
23291 2007-06-28  Nick Roberts  <nickrob@snap.net.nz>
23293         * pcvs-util.el (cvs-strings->string, cvs-string->strings):
23294         Rename and move to...
23296         * subr.el (strings->string, string->strings): ...here.
23298         * pcvs.el (cvs-reread-cvsrc, cvs-header-msg, cvs-checkout)
23299         (cvs-mode-checkout, cvs-execute-single-file): Use new function names.
23301         * progmodes/gud.el (gud-common-init): Call string->strings instead
23302         of split-string.
23304 2007-06-27  Michael Albinus  <michael.albinus@gmx.de>
23306         * dired-aux.el: Remove `dired-call-process'.
23307         (dired-check-process): Call `process-file'.
23309         * wdired.el (wdired-do-perm-changes): Call `process-file'.
23311         * net/ange-ftp.el (ange-ftp-dired-call-process): Reimplement it as
23312         `ange-ftp-process-file'.
23314 2007-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
23316         * emacs-lisp/cl.el: Use cl-loaddefs.el rather than manual autoloads.
23318         * emacs-lisp/cl-extra.el:
23319         * emacs-lisp/cl-seq.el:
23320         * emacs-lisp/cl-macs.el: Set generated-autoload-file to cl-loaddefs.el.
23321         Add autoload cookies on all defs autoloaded manually in cl.el.
23323         * emacs-lisp/cl-loaddefs.el: New file.
23325         * textmodes/texinfmt.el (texinfo-raisesections-alist)
23326         (texinfo-lowersections-alist): Merge definition and declaration.
23327         (texinfo-start-of-header, texinfo-end-of-header): Remove.
23328         (texinfo-format-syntax-table): Merge init into declaration.
23329         (texinfo-format-parse-line-args, texinfo-format-parse-args)
23330         (texinfo-format-parse-defun-args, texinfo-format-node)
23331         (texinfo-push-stack, texinfo-multitable-widths)
23332         (texinfo-define-info-enclosure, texinfo-alias)
23333         (texinfo-format-defindex, batch-texinfo-format): Use push.
23334         (texinfo-footnote-number): Remove duplicate declaration.
23336         * ps-print.el: Update with auto-generated autoloads.
23338         * ps-mule.el: Set generated-autoload-file to "ps-print.el".
23340 2007-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
23342         * emacs-lisp/autoload.el (autoload-generated-file): Interpret names
23343         relative to current dir for file-local settings.
23344         (autoload-generate-file-autoloads): Add `outfile' arg.
23345         (update-directory-autoloads): Use it to directly call
23346         autoload-generate-file-autoloads instead of going through
23347         update-file-autoloads so we avoid redundant searches and so we can know
23348         the set of buffers changed so we can save them all.
23350         * emacs-lisp/autoload.el (autoload-find-destination): Return nil
23351         rather than throwing `up-to-date'.
23352         (autoload-generate-file-autoloads): Adjust correspondingly.
23353         (update-file-autoloads): Be careful to let-bind
23354         autoload-modified-buffers and adjust to new calling conventions.
23355         (autoload-modified-buffers): Make it a dynamically scoped var.
23356         (update-directory-autoloads): Use file-relative-name instead of
23357         autoload-trim-file-name.
23358         (autoload-insert-section-header): Don't use autoload-trim-file-name
23359         since the file is already relative now.
23360         (autoload-trim-file-name): Remove.
23362         * vc-arch.el (vc-arch-add-tagline): Do a slightly cleaner job.
23363         (vc-arch-complete, vc-arch--version-completion-table)
23364         (vc-arch-revision-completion-table): New functions to provide
23365         completion of revision names.
23366         (vc-arch-trim-find-least-useful-rev, vc-arch-trim-make-sentinel)
23367         (vc-arch-trim-one-revlib, vc-arch-trim-revlib): New functions
23368         to let the user trim the revlib.
23370         * vc.el: Add new VC operation `revision-completion-table'.
23371         (vc-default-revision-completion-table): New function.
23372         (vc-version-diff, vc-version-other-window): Use it to provide
23373         completion of revision names if the backend provides it.
23375         * log-edit.el (log-edit-changelog-entries): Use with-current-buffer.
23377         * vc-svn.el (vc-svn-repository-hostname): Adjust to non-XML format
23378         of newer .svn/entries.
23380 2007-06-25  David Kastrup  <dak@gnu.org>
23382         * calc/calc-poly.el (math-padded-polynomial)
23383         (math-partial-fractions): Add some function comments.
23385 2007-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
23387         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
23388         Make `outbuf' optional.
23389         (update-file-autoloads): Use it.
23391 2007-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
23393         * emacs-lisp/autoload.el (autoload-modified-buffers): New var.
23394         (autoload-find-destination): Keep it uptodate.
23395         (autoload-save-buffers): New fun.
23396         (update-file-autoloads): Use it.  Re-add the "up to date" message.
23398         * emacs-lisp/autoload.el: Refactor for upcoming changes.
23399         (autoload-find-destination): New function extracted from
23400         update-file-autoloads.
23401         (update-file-autoloads): Use it.
23402         (autoload-generate-file-autoloads): New function extracted from
23403         generate-file-autoloads.  Use file-relative-name.  Delay computation of
23404         output-start to the first cookie.  Remove done-any, replaced by
23405         output-start.
23406         (generate-file-autoloads): Use it.
23408 2007-06-24  Jay Belanger  <jay.p.belanger@gmail.com>
23410         * calc/calc-comb.el (math-init-random-base, math-prime-test):
23411         Use math-read-number-simple to insert constants.
23412         (math-prime-test): Redo calculation of sum.
23414         * calc/calc-misc.el (math-div2-bignum): Use math-bignum-digit-size.
23416         * calc/calc-math.el (math-scale-bignum-digit-size): Rename from
23417         math-scale-bignum-3.
23418         (math-isqrt-bignum): Use math-scale-bignum-digit-size and
23419         math-bignum-digit-size.
23420         (math-isqrt-small): Add another possible initial guess.
23422 2007-06-23  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
23424         * textmodes/bibtex.el (bibtex-entry-format): New options
23425         `whitespace', `braces', and `string'.
23426         (bibtex-field-braces-alist, bibtex-field-strings-alist)
23427         (bibtex-field-braces-opt, bibtex-field-strings-opt)
23428         (bibtex-cite-matcher-alist): New variables.
23429         (bibtex-font-lock-keywords): Use bibtex-cite-matcher-alist.
23430         (bibtex-flash-head): Use blink-matching-delay.
23431         (bibtex-insert-kill, bibtex-mark-entry): Use push-mark.
23432         (bibtex-format-entry, bibtex-reformat): Handle new options of
23433         bibtex-entry-format.
23434         (bibtex-field-re-init, bibtex-font-lock-cite, bibtex-dist):
23435         New functions.
23436         (bibtex-complete-internal): Do not display messages while
23437         minibuffer is used.  Do not leave around a completions buffer
23438         that is out of date.
23439         (bibtex-copy-summary-as-kill): New optional arg.
23440         (bibtex-font-lock-url): New optional arg no-button.
23441         (bibtex-find-crossref): Use `bibtex-cite-matcher-alist'.
23442         (bibtex-url): Allow multiple URLs per entry.
23444 2007-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
23446         * emacs-lisp/autoload.el (autoload-generated-file): New function.
23447         (update-file-autoloads, update-directory-autoloads): Use it.
23448         (autoload-file-load-name): New function.
23449         (generate-file-autoloads, update-file-autoloads): Use it.
23450         (autoload-find-file): Accept non-absolute argument.  Set default-dir.
23451         (generate-file-autoloads): If the autoloaded form is malformed,
23452         indicate the problem with a warning instead of aborting.
23454 2007-06-23  Thien-Thi Nguyen  <ttn@gnuvola.org>
23456         * simple.el (next-error-recenter): Accept `(4)' as well;
23457         also, specify `integer' instead of `number'.
23459 2007-06-23  Eli Zaretskii  <eliz@gnu.org>
23461         * ls-lisp.el (insert-directory): If an invalid regexp error is
23462         thrown, try using FILE as a literal file name, not a wildcard.
23464 2007-06-23  Juanma Barranquero  <lekktu@gmail.com>
23466         * ruler-mode.el (ruler-mode): Prevent clobbering the original
23467         `header-line-format' when reentering ruler mode.
23469 2007-06-23  Eli Zaretskii  <eliz@gnu.org>
23471         * ls-lisp.el (insert-directory): Don't treat FILE as a wildcard if
23472         FILE exists as a file.
23474 2007-06-22  Jay Belanger  <jay.p.belanger@gmail.com>
23476         * calc/calc.el (math-bignum-digit-length)
23477         (math-bignum-digit-size, math-small-integer-size):
23478         New constants.
23479         (math-normalize, math-bignum-big, math-make-float)
23480         (math-div10-bignum, math-scale-left, math-scale-left-bignum)
23481         (math-scale-right, math-scale-right-bignum, math-scale-rounding)
23482         (math-add, math-add-bignum, math-sub-bignum, math-sub, math-mul)
23483         (math-mul-bignum, math-mul-bignum-digit, math-idivmod)
23484         (math-quotient, math-div-bignum, math-div-bignum-digit)
23485         (math-div-bignum-part, math-format-bignum-decimal)
23486         (math-read-bignum): Use math-bignum-digit-length,
23487         math-bignum-digit-size and math-small-integer-size.
23489         * calc/calc-ext.el (math-fixnum-big): Use the variable
23490         math-bignum-digit-size.
23492 2007-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
23494         * log-view.el (log-view-mode-menu): New menu.
23496 2007-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23498         * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change
23499         differently.
23501         * vc-hg.el (vc-hg-registered): Add an autoloaded version.
23502         (vc-hg-log-view-mode): Use log-view-font-lock-keywords.
23504 2007-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
23506         * vc-hg.el (vc-hg-print-log): Insert the file name.
23507         (vc-hg-log-view-mode): Fontify the file name.
23509 2007-06-22  Jay Belanger  <jay.p.belanger@gmail.com>
23511         * calc/calc-forms.el (math-format-date-part, calc-parse-standard-date)
23512         (calcFunc-julian): Fix incorrect number used in calculations.
23514 2007-06-22  Thien-Thi Nguyen  <ttn@gnuvola.org>
23516         * simple.el (next-error-recenter): New defcustom.
23517         (next-error, next-error-internal): Recenter if specified,
23518         immediately prior to running `next-error-hook'.
23520         * progmodes/hideshow.el (hs-show-block): Use line-end-position.
23521         (hs-hide-block-at-point, hs-hide-comment-region): Likewise.
23523         * progmodes/hideshow.el (hs-hide-all): Use progress reporter.
23525 2007-06-22  Jay Belanger  <jay.p.belanger@gmail.com>
23527         * calc/calc-comb.el (math-small-factorial-table): New variable.
23528         (calcFunc-fact): Use `math-small-factorial-table'.
23530         * calc/calc-ext.el (math-defcache): Allow forms to evaluate
23531         initial values.
23532         (math-approx-pi, math-approx-sqrt-e, math-approx-gamma-const):
23533         New variables to use in caches.
23535         * calc/calc-forms.el (math-format-date-part, math-parse-standard-date)
23536         (calcFunc-julian): Use `math-read-number-simple' to insert bignums.
23538         * calc/calc-funcs.el (math-besJ0, math-besJ1, math-besY0, math-besY1)
23539         (math-bernoulli-b-cache): Use math-read-number-simple to insert
23540         bignums.
23542         * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
23543         New variables to use in caches.
23545 2007-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
23547         * vc-bzr.el (vc-bzr-log-view-mode): Add + to the email address regexp.
23549         * vc-hg.el (vc-hg-log-view-mode): New mode.
23551 2007-06-21  Jay Belanger  <jay.p.belanger@gmail.com>
23553         * calc/calc.el (math-read-number-simple): New function.
23555 2007-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
23557         * progmodes/vera-mode.el (vera-mode): Fix `commend-end-skip' setting.
23558         (vera-font-lock-match-item): Fix doc string.
23559         (vera-in-comment-p): Remove unused function.
23560         (vera-skip-forward-literal, vera-skip-backward-literal): Improve code,
23561         use `syntax-ppss'.
23562         (vera-forward-syntactic-ws): Fix argument order.
23563         (vera-prepare-search): Use `with-syntax-table'.
23564         (vera-indent-line): Fix doc string.
23565         (vera-electric-tab): Fix doc string.
23566         (vera-expand-abbrev): Define alias instead of using `fset'.
23567         (vera-comment-uncomment-region): Use `comment-start-skip'.
23569 2007-06-21  Carsten Dominik  <dominik@science.uva.nl>
23571         * textmodes/org.el (org-export-with-footnotes): New option.
23572         (org-export-as-html): Fix replacement bug for XEmacs.
23573         (org-agenda-default-appointment-duration): New option.
23575 2007-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
23577         * vc-hg.el: Add to do items.
23578         (vc-hg-diff): Add support for comparing different revisions.
23579         (vc-hg-diff, vc-hg-annotate-command, vc-hg-annotate-time)
23580         (vc-hg-annotate-extract-revision-at-line)
23581         (vc-hg-previous-version, vc-hg-checkin): New functions.
23582         (vc-hg-annotate-re): New constant.
23584 2007-06-20  Jay Belanger  <jay.p.belanger@gmail.com>
23586         * calc/calc.el (math-standard-ops): Fix precedence of multiplication.
23588 2007-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
23590         * log-view.el (log-view-font-lock-keywords): Use `eval' to consult the
23591         buffer-local value of log-view-*-re if applicable.
23593         * vc-bzr.el (vc-bzr-dir-state): Use setq rather than set.
23594         Use vc-bzr-command rather than the ill defined vc-bzr-command*.
23595         (vc-bzr-command*): Remove both (incompatible) versions.
23596         (vc-bzr-do-command*): Remove.
23597         (vc-bzr-with-process-environment, vc-bzr-std-process-invocation):
23598         Remove by folding into its only caller vc-bzr-command.
23599         (vc-bzr-command): Always set the environment, even when ineffective.
23600         (vc-bzr-version): Minor fix up.
23601         (vc-bzr-admin-dirname): New var.
23602         (vc-bzr-bzr-dir): Remove.
23603         (vc-bzr-root-dir): New fun.
23604         (vc-bzr-registered): Use it.  Add an autoloaded version.
23605         (vc-bzr-responsible-p): Use vc-bzr-root-dir as well.
23606         (vc-bzr-view-log-function): Remove.
23607         (vc-bzr-log-view-mode): New major mode to replace it.
23608         (vc-bzr-print-log): Only activate the old hack if needed.
23610         * vc.el (vc-default-log-view-mode): New function.
23611         (vc-print-log): Add new `log-view-mode' VC operation.
23613 2007-06-20  Juanma Barranquero  <lekktu@gmail.com>
23615         * ido.el (ido-find-file-in-dir): Don't signal an error for
23616         empty directories.
23618         * add-log.el (change-log-mode): Set `show-trailing-whitespace'.
23620         * desktop.el (desktop-read): Run `desktop-not-loaded-hook' in the
23621         directory where the desktop file was found, as the docstring says.
23622         (desktop-kill): Use `read-directory-name'.
23624 2007-06-20  Alan Mackenzie  <acm@muc.de>
23626         * progmodes/cc-mode.el (c-remove-any-local-eval-or-mode-variables):
23627         When removing lines, also remove the \n.  Correction of patch of
23628         2007-04-21.
23630 2007-06-20  Martin Rudalics  <rudalics@gmx.at>
23632         * mouse.el (mouse-drag-mode-line-1): Quit mouse tracking when
23633         event is not a cons cell.  Do not unread drag-mouse-1 events.
23634         Select right window in check whether space was stolen from
23635         window above.
23637         * help-mode.el (help-make-xrefs): Adjust position of new forward
23638         button.
23640 2007-06-20  Riccardo Murri  <riccardo.murri@gmail.com>
23642         * vc-bzr.el (vc-bzr-with-process-environment)
23643         (vc-bzr-std-process-invocation): New macros.
23644         (vc-bzr-command, vc-bzr-command*): Use them.
23645         (vc-bzr-with-c-locale): Remove.
23646         (vc-bzr-dir-state): Replace its use with vc-bzr-command.
23647         (vc-bzr-buffer-nonblank-p): New function.
23648         (vc-bzr-state-words): New const.
23649         (vc-bzr-state): Look for `bzr status' keywords in output.
23650         Display everything else as a warning message to the user.
23651         Fix status report with bzr >= 0.15.
23653 2007-06-20  Dan Nicolaescu  <dann@ics.uci.edu>
23655         * vc-hg.el (vc-hg-global-switches): Simplify.
23656         (vc-hg-state): Handle more states.
23657         (vc-hg-diff): Fix doc-string.
23658         (vc-hg-register): New function.
23659         (vc-hg-checkout): Likewise.
23661 2007-06-20  Reto Zimmermann  <reto@gnu.org>
23663         * progmodes/vera-mode.el: New file.
23665 2007-06-19  Jay Belanger  <jay.p.belanger@gmail.com>
23667         * calc/calc.el (calc-multiplication-has-precendence):
23668         New variable.
23669         (math-standard-ops, math-standard-ops-p, math-expr-ops):
23670         New functions.
23671         (math-expr-opers): Define using math-standard-ops rather than
23672         math-standard-opers.
23673         * calc/calc-aent.el (calc-do-calc-eval): Let math-expr-opers
23674         equal the function math-standard-ops rather than the variable
23675         math-standard-opers.
23676         (calc-algebraic-entry): Let math-expr-opers equal
23677         math-standard-ops or math-expr-ops, as appropriate.
23678         (math-expr-read-level, math-read-factor): Let math-expr-opers
23679         equal math-expr-ops.
23680         * calc/calc-embed.el (calc-embedded-finish-edit):
23681         Let math-expr-opers equal the function math-standard-ops
23682         rather than the variable math-standard-opers.
23683         * calc/calc-ext.el (math-read-plain-expr)
23684         (math-format-flat-expr-fancy): Let math-expr-opers equal the
23685         function math-standard-ops rather than the variable
23686         math-standard-opers.
23687         * calc/calc-lang.el (calc-set-language, math-read-big-rec):
23688         Let math-expr-opers equal the function math-standard-ops rather
23689         than the variable math-standard-opers.
23690         * calc/calc-prog.el (calc-read-parse-table): Let math-expr-opers
23691         equal the function math-standard-ops rather than the variable
23692         math-standard-opers.
23693         * calc/calc-yank.el (calc-finish-stack-edit): Let math-expr-opers
23694         equal the function math-standard-ops rather than the variable
23695         math-standard-opers.
23696         * calc/calccomp.el (math-compose-expr): Let math-expr-opers equal
23697         math-expr-ops.
23699 2007-06-19  Ivan Kanis  <apple@kanis.eu>
23701         * vc-hg.el: New file.
23703 2007-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
23705         * progmodes/sh-script.el (sh-font-lock-paren): Mark the relevant text
23706         with font-lock-multiline.
23708 2007-06-17  Glenn Morris  <rgm@gnu.org>
23710         * lpr.el (lpr-page-header-switches): Move %s to separate element
23711         for correct quoting.  Doc fix.
23713 2007-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
23715         * textmodes/sgml-mode.el (sgml-xml-guess): Return the result rather
23716         than setting sgml-xml-mode.
23717         (sgml-mode, html-mode): Set sgml-xml-mode.
23718         (sgml-skip-tag-backward): Tell if we skipped over matched tags.
23719         (sgml-skip-tag-backward, sgml-electric-tag-pair-overlays): New var.
23720         (sgml-electric-tag-pair-before-change-function)
23721         (sgml-electric-tag-pair-flush-overlays): New functions.
23722         (sgml-electric-tag-pair-mode): New minor mode.
23723         (sgml-font-lock-keywords-2, sgml-get-context, sgml-unclosed-tag-p)
23724         (sgml-calculate-indent): Use assoc-string.
23726 2007-06-16  Karl Fogel  <kfogel@red-bean.com>
23728         * thingatpt.el (thing-at-point-email-regexp): Don't require two
23729         chars before the "@" in an email address.  Andreas Roehler noticed
23730         this problem.
23732 2007-06-15  Karl Fogel  <kfogel@red-bean.com>
23734         * thingatpt.el: Add support for email addresses (`email').
23735         (thing-at-point, bounds-of-thing-at-point): Document `email' support.
23736         (thing-at-point-email-regexp): New variable.
23737         (`email'): Put `bounds-of-thing-at-point' and `thing-at-point'
23738         properties on this symbol, with lambda forms for values.
23740 2007-06-15  Masatake YAMATO  <jet@gyve.org>
23742         * vc-bzr.el (vc-bzr-root): Cache the output of shell command execution.
23744         * vc.el (vc-dired-hook): Check the backend returned from
23745         `vc-responsible-backend' can really handle `subdir'.
23747 2007-06-15  Chong Yidong  <cyd@stupidchicken.com>
23749         * wid-edit.el (widget-add-documentation-string-button):
23750         Fix handling of documentation indent.
23752 2007-06-15  Miles Bader  <miles@fencepost.gnu.org>
23754         * mb-depth.el: New file.
23756 2007-06-15  Masatake YAMATO  <jet@gyve.org>
23758         * vc.el (vc-dired-mode): Show backend name as part of mode name.
23760 2007-06-14  Chong Yidong  <cyd@stupidchicken.com>
23762         * wid-edit.el (widget-default-create): Move ?h handling here...
23763         (widget-default-format-handler): ...from here.
23764         (widget-docstring, widget-add-documentation-string-button): New funs.
23765         (documentation-string): Add :visibility-widget property.
23766         (widget-documentation-string-value-create): Use it.
23768         * cus-edit.el (custom-split-regexp-maybe): Simplify.
23769         (custom-buffer-create-internal): Simplify message.
23770         (custom-variable-tag): Reduce height to normal.
23771         (custom-variable-value-create, custom-face-value-create)
23772         (custom-visibility): New widget.
23773         (custom-visibility): New face.
23774         (custom-group-value-create):
23775         Call widget-add-documentation-string-button, using `custom-visibility'.
23777 2007-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
23779         * emacs-lisp/bytecomp.el (byte-compile-current-group)
23780         (byte-compile-nogroup-warn, byte-compile-file): Revert part of last
23781         change.  Apparently the "warning even if the group is implicit" is
23782         a feature rather than a bug.
23784 2007-06-14  Michael Kifer  <kifer@cs.stonybrook.edu>
23786         * emulation/viper.el (viper-describe-key-ad)
23787         (viper-describe-key-briefly-ad): Different advices for Emacs and XEmacs.
23788         Compile them conditionally.
23789         (viper-version): Belated version change.
23791 2007-06-14  Juanma Barranquero  <lekktu@gmail.com>
23793         * follow.el (follow-all-followers, follow-generic-filter):
23794         * pcomplete.el (pcomplete-restore-windows):
23795         * x-dnd.el (x-dnd-maybe-call-test-function, x-dnd-save-state)
23796         (x-dnd-drop-data):
23797         * emacs-lisp/edebug.el (edebug-pop-to-buffer, edebug-display):
23798         * progmodes/python.el (python-complete-symbol):
23799         * term/mac-win.el (mac-dnd-drop-data): Remove redundant check.
23801 2007-06-13  Ryan Yeske  <rcyeske@gmail.com>
23803         * net/rcirc.el (rcirc-format-response-string): Use rcirc-nick-syntax
23804         around bright and dim regexps.  Make sure bright and dim matches
23805         use word anchors.  Send text through rcirc-markup functions.
23806         (rcirc-url-regexp): Add single quote character.
23807         (rcirc-connect): Write logs to disk on auto-save-hook.
23808         Make server a non-optional argument.
23809         (rcirc-log-alist): New variable.
23810         (rcirc-log-directory): Make customizable.
23811         (rcirc-log-flag): New customizable variable.
23812         (rcirc-log): New function.
23813         (rcirc-print): Use above function.
23814         (rcirc-log-write): New function.
23815         (rcirc-generate-new-buffer-name): Strip text properties.
23816         (rcirc-switch-to-buffer-function): Remove variable.
23817         (rcirc-last-non-irc-buffer): Remove variable.
23818         (rcirc-non-irc-buffer): Add function.
23819         (rcirc-next-active-buffer): Use above function.
23820         (rcirc-keepalive): Send KEEPALIVE ctcp instead of a PING.
23821         (rcirc-handler-ctcp-KEEPALIVE): Add handler.
23822         (rcirc-handler-CTCP): Don't print KEEPALIVE responses.
23823         (rcirc-omit-mode): Add minor-mode.
23824         (rcirc-mode-map): Change C-c C-o binding.
23825         (rcirc-mode): Clear mode-line-process.  Use a custom
23826         fill-paragraph-function.  Set up buffer-invisibility-spec.
23827         (rcirc-response-formats): Remove timestamp code.
23828         (rcirc-omit-responses): Add variable.
23829         (rcirc-print): Don't put the overlay arrow on potentially omitted
23830         lines.  Log line to disk.  Record activity for private messages
23831         from /dim nicks.  Facify the fill-prefix with rcirc-timestamp face.
23832         (rcirc-jump-to-first-unread-line): Print message if there is no
23833         unread text.
23834         (rcirc-clear-unread): New function.
23835         (rcirc-markup-text-functions): Add variable.
23836         (rcirc-markup-timestamp, rcirc-markup-fill): Add functions.
23837         (rcirc-debug): Don't mess with window configuration.
23838         (rcirc-send-message): Send message before printing locally.
23839         Add SILENT argument, do not print message if non-nil.
23840         (rcirc-visible-buffers): New function and variable.
23841         (rcirc-window-configuration-change-1): Add function.
23842         (rcirc-target-buffer): Make sure ACTIONs don't get sent to the
23843         server buffer.
23844         (rcirc-clean-up-buffer): Set rcirc-target to nil when finished.
23845         (rcirc-fill-paragraph): Add function.
23846         (rcirc-record-activity, rcirc-window-configuration-change-1):
23847         Only update the activity string if it has actually changed.
23848         (rcirc-update-activity-string): Remove padding characters from the
23849         mode-line string.
23850         (rcirc-disconnect-buffer): New function to be called when a
23851         channel is parted or the user quits.
23852         (rcirc-server-name): Warn when the server-name hasn't been set.
23853         (rcirc-window-configuration-change): Postpone work until
23854         post-command-hook.
23855         (rcirc-window-configuration-change-1): Update mode-line and
23856         overlay arrows here.
23857         (rcirc-authenticate): Fixc hanserv identification.
23858         (rcirc-default-server): Remove variable.
23859         (rcirc): Connect according to rcirc-connections.
23860         (rcirc-connections): Add variable.
23861         (rcirc-startup-channels-alist): Remove variable.
23862         (rcirc-startup-channels): Remove function.
23864 2007-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
23866         * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change.
23868 2007-06-13  Johan Bockgård  <bojohan@dd.chalmers.se>  (tiny change)
23870         * term/xterm.el (terminal-init-xterm): Escape parens in character
23871         constants.
23873 2007-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
23875         * progmodes/sh-script.el: Remove unneeded * from docstrings.
23876         Use [:alpha:] and [:alnum:] where applicable.
23877         (sh-quoted-subshell): Rewrite to correctly
23878         handle nested mixes of `...' and $(...).
23879         (sh-apply-quoted-subshell): Remove.
23880         (sh-font-lock-syntactic-keywords): Adjust call to sh-quoted-subshell.
23882         * vc-arch.el (vc-arch-command): Remove bzr.  It's a different program.
23884 2007-06-13  Michael Kifer  <kifer@cs.stonybrook.edu>
23886         * ediff-ptch.el (ediff-context-diff-label-regexp): Partially undo
23887         previous change.
23889 2007-06-12  Tom Tromey  <tromey@redhat.com>
23891         * subr.el (user-emacs-directory): New defconst.
23892         * cmuscheme.el (scheme-start-file):
23893         * shell.el (shell):
23894         * completion.el (save-completions-file-name):
23895         * custom.el (custom-theme-directory):
23896         * term/x-win.el (emacs-session-filename):
23897         * filesets.el (filesets-menu-cache-file):
23898         * thumbs.el (thumbs-thumbsdir):
23899         * server.el (server-auth-dir):
23900         * image-dired.el (image-dired-dir):
23901         (image-dired-db-file):
23902         (image-dired-temp-image-file):
23903         (image-dired-gallery-dir):
23904         (image-dired-temp-rotate-image-file):
23905         * play/gamegrid.el (gamegrid-user-score-file-directory):
23906         * savehist.el (savehist-file):
23907         * tutorial.el (tutorial--saved-dir):
23908         * startup.el (auto-save-list-file-prefix): Use user-emacs-directory.
23910 2007-06-12  Ralf Angeli  <angeli@caeruleus.net>
23912         * scroll-lock.el (scroll-lock-mode): Doc fix.
23914 2007-06-12  Michael Kifer  <kifer@cs.stonybrook.edu>
23916         * ediff-ptch.el (ediff-context-diff-label-regexp): Spurious parenthesis.
23918         * ediff-init.el: Doc strings.
23920 2007-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23922         * emacs-lisp/bytecomp.el (byte-compile-current-group): New var.
23923         (byte-compile-file): Bind it.
23924         (byte-compile-nogroup-warn): Use it to avoid spurious warnings when the
23925         group argument is provided implicitly.
23926         (byte-compile-format-warn, byte-compile-from-buffer)
23927         (byte-compile-insert-header): Don't hardcode point-min==1.
23928         (byte-compile-file-form-require): Remove unused var old-load-list.
23929         (byte-compile-eval): Remove unused vars old-autoloads and hist-nil-new.
23931 2007-06-12  Michael Kifer  <kifer@cs.stonybrook.edu>
23933         * emulation/viper-cmd.el (viper-prefix-arg-com, viper-prefix-arg-value):
23934         Display error messages.
23935         (viper-prev-destructive-command, viper-insert-prev-from-insertion-ring):
23936         Get rid of cl.el dependencies.
23938         * emulation/viper-init.el (viper-suppress-input-method-change-message):
23939         New variable.
23940         (viper-activate-input-method-action)
23941         (viper-inactivate-input-method-action):
23942         Use viper-suppress-input-method-change-message.
23944         * emulation/viper-keym.el (viper-vi-basic-map): Disable the bindings
23945         for C-s, C-r.
23947         * emulation/viper-util.el (viper-set-cursor-color-according-to-state):
23948         Use viper-replace-overlay-cursor-color instead of
23949         viper-replace-overlay-cursor-color.
23950         (viper-sit-for-short): Use sit-for with 3 arguments.
23952         * emulation/viper.el (viper-insert-state-mode-list): Add gud-mode.
23953         (viper-major-mode-modifier-list): Add viper-comint-mode-modifier-map
23954         to gud-mode.
23956         * ediff-mult.el (ediff-meta-buffer-brief-message)
23957         (ediff-meta-buffer-verbose-message): New variables.
23958         (ediff-meta-buffer-message): Variable deleted.
23959         (ediff-verbose-help-enabled): New variable.
23960         (ediff-toggle-verbose-help-meta-buffer): New function.
23961         (ediff-redraw-directory-group-buffer): Made aware of short/verbose
23962         message options.
23964         * ediff-ptch.el (ediff-context-diff-label-regexp): Better regexp.
23965         (ediff-fixup-patch-map): Improve heuristic.
23967 2007-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23969         * log-view.el (log-view-file-re, log-view-message-re): Use \(?1:...\).
23970         (log-view-font-lock-keywords): Simplify.
23971         (log-view-current-file, log-view-current-tag): Simplify.
23973 2007-06-12  Sam Steingold  <sds@gnu.org>
23975         * vc-arch.el (vc-arch-command): Also try "baz" and "bzr".
23977 2007-06-12  Juanma Barranquero  <lekktu@gmail.com>
23979         * desktop.el (desktop-load-locked-desktop): New option.
23980         (desktop-read): Use it.
23981         (desktop-truncate, desktop-outvar, desktop-restore-file-buffer):
23982         Use `when'.
23984 2007-06-12  Davis Herring  <herring@lanl.gov>
23986         * desktop.el (desktop-save-mode-off): New function.
23987         (desktop-base-lock-name, desktop-not-loaded-hook): New variables.
23988         (desktop-full-lock-name, desktop-file-modtime, desktop-owner)
23989         (desktop-claim-lock, desktop-release-lock): New functions.
23990         (desktop-kill): Tell `desktop-save' that this is the last save.
23991         Release the lock afterwards.
23992         (desktop-buffer-info): New function.
23993         (desktop-save): Use it.  Run `desktop-save-hook' where the doc
23994         says to.  Detect conflicts, and manage the lock.
23995         (desktop-read): Detect conflicts.  Manage the lock.
23997 2007-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23999         * emulation/tpu-mapper.el (tpu-emacs-map-key): Use new keymap names.
24001         * emulation/tpu-edt.el (tpu-gold-map): Rename from GOLD-map.
24002         (tpu-lucid-emacs-p): Remove.  Use (featurep 'xemacs) instead.
24003         (CSI-map, GOLD-CSI-map, GOLD-SS3-map, SS3-map): Delete vars.
24004         (tpu-gold-map, tpu-global-map): Add all the SS3 and CSI bindings, using
24005         keysyms rather than byte sequences.
24006         (tpu-copy-keyfile): Don't force the user to use tpu-mapper.el.
24008 2007-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
24010         * font-lock.el (font-lock-add-keywords): In case font-lock was only
24011         half-activated, forcefully activate it completely.
24013 2007-06-11  Richard Stallman  <rms@gnu.org>
24015         * cus-edit.el (custom-variable-type): Doc fix.
24017 2007-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
24019         * progmodes/sh-script.el (sh-font-lock-backslash-quote)
24020         (sh-font-lock-flush-syntax-ppss-cache): New functions.
24021         (sh-font-lock-syntactic-keywords): Use them to distinguish the
24022         different possible cases for \'.
24024         * complete.el (PC-bindings): Don't bind things already bound in the
24025         parent keymap.
24027         * textmodes/bibtex-style.el: New file.
24029 2007-06-11  Riccardo Murri  <riccardo.murri@gmail.com>
24031         * vc-bzr.el: New file.
24033 2007-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
24035         * vc-svn.el (vc-svn-program): New var.
24036         (vc-svn-command): Use it.
24038 2007-06-11  Juanma Barranquero  <lekktu@gmail.com>
24040         * server.el (server-switch-buffer): Remove redundant check.
24042 2007-06-10  Martin Rudalics  <rudalics@gmx.at>
24044         * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
24045         Match against file-name-nondirectory.
24046         Fix text on user customization variables.
24047         Reported by Johan Bockgård <bojohan@dd.chalmers.se>.
24049 2007-06-09  Alfred M. Szmidt  <ams@gnu.org>  (tiny change)
24051         * mail/rmail.el (rmail-movemail-variant-in-use): Fix doc typo.
24053 2007-06-09  Davis Herring  <herring@lanl.gov>
24055         * desktop.el (desktop-minor-mode-table): Doc fix.
24057 2007-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
24059         * textmodes/css-mode.el (css-navigation-syntax-table):
24060         Use set-char-table-range so it also works in the unicode branch.
24062 2007-06-08  Nick Roberts  <nickrob@snap.net.nz>
24064         * help-mode.el (help-xref-forward-stack)
24065         (help-xref-stack-forward-item, help-forward-label): New variables.
24066         (help-forward): New button type.
24067         (help-setup-xref): Initialise help-xref-forward-stack.
24068         (help-make-xrefs): Add forward button, if appropriate.
24069         (help-xref-go-back): Push item on forward stack.
24070         (help-xref-go-forward, help-go-forward): New functions.
24072 2007-06-07  Chong Yidong  <cyd@stupidchicken.com>
24074         * dired.el (dired-mode-map): Remove spurious separator.
24076 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
24078         * progmodes/ebrowse.el (ebrowse-draw-file-member-info): Doc fix.
24080         * progmodes/mixal-mode.el (mixal-operation-codes-alist):
24081         * progmodes/idlwave.el (idlwave-one-key-select): Fix typo in docstring.
24083 2007-06-07  Carsten Dominik  <dominik@science.uva.nl>
24085         * textmodes/org.el: Version number fixed.
24087 2007-06-07  Glenn Morris  <rgm@gnu.org>
24089         * version.el (emacs-copyright): New constant.
24090         * startup.el (fancy-splash-tail): Use emacs-copyright.
24091         * calc/calc-help.el (calc-full-help): Use emacs-copyright.
24093         * emacs-lisp/bytecomp.el (byte-compile-warnings): Add new option
24094         `make-local'.
24095         (byte-compile-warnings-safe-p): Add `make-local'.
24096         (byte-compile-make-variable-buffer-local):
24097         Allow byte-compile-warnings to suppress this warning.
24099         * tutorial.el (tutorial--describe-nonstandard-key): Adjust for new
24100         format of "menu" description.
24101         (tutorial--find-changed-keys): Describe the specific menu a
24102         command is in.
24104         * dframe.el (dframe-frame-parameter, dframe-mouse-event-p):
24105         Rewrite compatibility functions to silence byte-compiler.
24107 2007-06-07  Alfred M. Szmidt  <ams@gnu.org>  (tiny change)
24109         * mail/rmailsum.el (rmail-summary-save-buffer): New command.
24110         (rmail-summary-mode-map): Add rmail-summary-save-buffer.
24112 2007-06-07  Eric M. Ludlam  <eric@siege-engine.com>
24114         * emacs-lisp/checkdoc.el (checkdoc-ispell-lisp-words): Remove "iff".
24116 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
24118         * progmodes/ebrowse.el (ebrowse-member-table):
24119         * textmodes/org.el (org-export-ascii-bullets, org-batch-agenda)
24120         (org-batch-agenda-csv): Fix typos in docstrings.
24122 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
24124         * pgg.el (pgg-sign-region, pgg-sign):
24125         * ses.el (ses-call-printer):
24126         * calendar/icalendar.el (icalendar--diarytime-to-isotime):
24127         * textmodes/org.el (org-cycle): Fix typos in docstrings.
24129 2007-06-06  Carsten Dominik  <dominik@science.uva.nl>
24131         * textmodes/org.el (org-export-region-as-html)
24132         (org-replace-region-by-html, org-number-to-letters)
24133         (org-table-fedit-finish, org-normalize-color)
24134         (org-table-fedit-ref-right, org-date-to-gregorian)
24135         (org-table-fedit-move, org-table-convert-refs-to-rc)
24136         (org-calendar-holiday, org-table-fedit-toggle-ref-type)
24137         (org-write-agenda, org-colgroup-info-to-vline-list)
24138         (org-agenda-todo-previousset, org-defkey, org-encode-for-stdout)
24139         (org-indent-line-function, org-export-as-html-to-buffer)
24140         (org-store-agenda-views, org-update-mode-line)
24141         (org-find-if, org-delete-all)
24142         (org-table-fedit-convert-buffer, org-emphasize)
24143         (org-uniquify, org-table-fedit-lisp-indent)
24144         (org-table-fedit-scroll, org-get-todo-sequence-head)
24145         (org-table-fedit-scroll-down, org-table-fedit-line-down)
24146         (org-table-fedit-ref-left, org-agenda-export-csv-mapper)
24147         (org-table-fedit-toggle-coordinates, org-dvipng-color)
24148         (org-table-fedit-line-up, org-table-fedit-ref-down)
24149         (org-table-formula-from-user, org-mode-flyspell-verify)
24150         (org-cycle-show-empty-lines, org-ctrl-c-ret)
24151         (org-table-formula-to-user, org-diary-to-ical-string)
24152         (orgtbl-export, org-table-fedit-post-command)
24153         (org-closed-in-range, org-shiftcontrolright)
24154         (org-table-convert-refs-to-an, org-table-hline-and-move)
24155         (org-table-formula-less-p, org-format-table-ascii)
24156         (org-agenda-get-sexps, org-shift-refpart)
24157         (org-diary-sexp-entry, org-time-string-to-absolute)
24158         (org-table-show-reference, org-letters-to-number)
24159         (org-fix-agenda-info, org-table-fedit-ref-up)
24160         (org-table-fedit-shift-reference, org-table-fedit-abort)
24161         (org-closest-date, org-shiftcontrolleft)
24162         (org-at-heading-or-item-p, org-rematch-and-replace)
24163         (org-agenda-todo-nextset, org-export-grab-title-from-buffer):
24164         New functions.
24165         (org-table-edit-scroll-down, org-finish-edit-formulas)
24166         (org-table-edit-next-field, org-abort-edit-formulas)
24167         (org-font-lock-level, org-export-find-first-heading-line)
24168         (org-table-edit-line-down, org-table-edit-backward-field)
24169         (org-edit-formula-lisp-indent, org-table-edit-move)
24170         (org-check-log-option, org-this-word)
24171         (org-table-edit-line-up, org-table-edit-formulas-post-command)
24172         (org-agenda-file-to-end, org-expand-file-name)
24173         (org-fake-empty-table-line, org-table-edit-scroll)
24174         (org-toggle-log-option, org-show-reference): Function removed.
24175         (org-inhibit-invisibility, org-table-formula-make-cmp-string):
24176         New defsubsts.
24177         (org-unmodified, org-batch-store-agenda-views)
24178         (org-batch-agenda-csv): New macro.
24179         (org-agenda-export): New customization group.
24180         (org-agenda-skip-deadline-if-done, org-agenda-remove-tags)
24181         (org-highest-priority, org-agenda-exporter-settings)
24182         (org-log-done-with-time, org-replace-disputed-keys)
24183         (org-format-latex-header, org-export-table-header-tags)
24184         (org-cycle-separator-lines, org-export-table-data-tags)
24185         (org-icalendar-include-sexps)
24186         (org-empty-line-terminates-plain-lists)
24187         (org-log-repeat, org-special-ctrl-a)
24188         (org-table-use-standard-references, org-disputed-keys)
24189         (org-export-skip-text-before-1st-heading, org-agenda-with-colors)
24190         (org-agenda-export-html-style): New option.
24191         (org-allow-auto-repeat, org-agenda-remove-tags-when-in-prefix)
24192         (org-CUA-compatible): Option removed.
24193         (org-agenda-structure, org-sexp-date): New face.
24194         (org-todo-keywords-for-agenda, org-not-done-keywords)
24195         (org-planning-or-clock-line-re, org-agenda-name)
24196         (org-table-colgroup-info, org-todo-sets)
24197         (constants-unit-system, org-clock-mode-line-entry)
24198         (org-mode-line-timer, org-table-current-begin-pos)
24199         (org-todo-keywords-1, org-mode-line-string)
24200         (org-table-clean-did-remove-column, org-table-fedit-map)
24201         (org-clock-heading, org-table-buffer-is-an)
24202         (org-agenda-info, org-done-keywords)
24203         (org-done-keywords-for-agenda, org-todo-heads)
24204         (org-todo-kwd-alist, org-clock-start-time): New variable.
24205         (org-todo-kwd-priority-p, org-edit-formulas-map)
24206         (org-repeat-re, org-todo-kwd-max-priority)
24207         (org-version, org-done-string)
24208         (org-table-clean-did-remove-column-1, org-disputed-keys):
24209         Remove variables.
24210         (org-table-translate-regexp, org-repeat-re, org-version): New consts.
24211         (org-ts-lengths): Constant removed.
24212         (org-follow-gnus-link): Don't ask how many articles to read.
24213         (org-export-find-first-export-line): Rename from
24214         `org-export-find-first-heading'.
24215         Use `org-export-skip-text-before-1st-heading'.
24216         (org-table-fedit-post-command): Rename from
24217         `org-table-edit-formulas-post-command'.
24218         (org-table-fedit-finish): Rename from `org-finish-edit-formulas'.
24219         (org-table-fedit-abort): Rename from `org-abort-edit-formulas'.
24220         (org-table-fedit-lisp-indent): Rename from
24221         `org-edit-formula-lisp-indent'.
24222         (org-table-show-reference): Rename from `org-show-reference'.
24223         (org-table-store-formulas): Use `org-table-formula-less-p'.
24224         (org-table-edit-formulas): Position cursor to current field equation.
24225         (org-update-checkbox-count, org-hide-archived-subtrees)
24226         (org-timestamp-up-day, org-timestamp-down-day)
24227         (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
24228         (org-shiftmetadown, org-metaleft, org-metaright, org-metaup)
24229         (org-metadown, org-shiftup, org-shiftdown, org-shiftright)
24230         (org-shiftleft, org-ctrl-c-ctrl-c, org-context):
24231         Let `org-on-heading-p' also check for invisible heading.
24232         (org-read-date): Match am/pm times.
24233         (org-eval-in-calendar): Fix default date in prompt.
24235 2007-06-05  Chong Yidong  <cyd@stupidchicken.com>
24237         * files.el (auto-mode-alist): Separate "ChangeLog.1" and
24238         "ChangeLog.a" entries, giving the latter lower priority.
24240 2007-06-05  Juanma Barranquero  <lekktu@gmail.com>
24242         * faces.el (face-id): If the argument is a face alias,
24243         return the ID of the target face.
24245 2007-06-05  Michael Albinus  <michael.albinus@gmx.de>
24247         * net/socks.el (top): Remove unnecessary copyright line.
24249 2007-06-04  Chong Yidong  <cyd@stupidchicken.com>
24251         * longlines.el (longlines-auto-wrap): Handle argument correctly.
24253 2007-06-04  Michael Albinus  <michael.albinus@gmx.de>
24255         * net/socks.el: New file, taken from w3 repository.
24256         (top): Update Copyright.  Don't load cl.el.
24257         (all): Replace `case' by `cond', `string-to-int' by
24258         `string-to-number', and `process-kill-without-query' by
24259         `set-process-query-on-exit-flag'.
24260         (socks-char-int): Remove defalias and all occurrences.
24262 2007-06-04  Juanma Barranquero  <lekktu@gmail.com>
24264         * progmodes/compile.el (compilation-find-file, compilation-handle-exit):
24265         Fix typos in docstrings.
24266         (compilation-search-path, compilation-buffer-name-function): Doc fixes.
24267         (compilation-finish-function): Fix typo in obsolescence declaration.
24269 2007-06-03  Sam Steingold  <sds@gnu.org>
24271         * progmodes/compile.el: Add TIMESTAMP to the LOC data structure, to
24272         handle unending automatic recompilation of changed files (`omake -P').
24273         (compilation-loop): VISITED is now 5th CDR.
24274         (compilation-next-error-function): Set TIMESTAMP.
24276 2007-06-03  Sam Steingold  <sds@gnu.org>
24278         * files.el (kill-buffer-ask): New function.
24279         (kill-some-buffers): Use it.
24280         (kill-matching-buffers): New user command.
24282 2007-06-01  David Kastrup  <dak@gnu.org>
24284         * dired.el (dired-recursive-deletes, dired-recursive-copies):
24285         Change default to `top'.
24287 2007-05-31  Richard Stallman  <rms@gnu.org>
24289         * dired.el (dired-do-flagged-delete, dired-do-delete): Doc fix.
24291 2007-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
24293         * textmodes/css-mode.el: New file.
24295 2007-05-30  Michael Olson  <mwolson@gnu.org>
24297         * emacs-lisp/tq.el (tq-queue-pop): Stifle error when a process has
24298         died and we are trying to send a signal to it.  The program using
24299         tq.el should periodically check to see whether the process has
24300         died and react appropriately -- this is not the responsibility of
24301         tq.el, and is consistent with the rest of the tq.el source code.
24303 2007-05-29  Martin Rudalics  <rudalics@gmx.at>
24305         * textmodes/table.el (table--point-entered-cell-function)
24306         (table--point-left-cell-function):
24307         Bind `inhibit-point-motion-hooks' to t.
24309 2007-05-29  Nikolaj Schumacher  <n_schumacher@web.de>  (tiny change)
24311         * emacs-lisp/rx.el (rx): Doc fix.
24313 2007-05-28  Juanma Barranquero  <lekktu@gmail.com>
24315         * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring.
24317 2007-05-28  Michael Albinus  <michael.albinus@gmx.de>
24319         Sync with Tramp 2.0.56.
24321         * net/tramp.el:
24322         * net/tramp-ftp.el:
24323         * net/tramp-smb.el:
24324         * net/tramp-util.el:
24325         * net/tramp-vc.el:
24326         Don't load cl.el, because that pollutes the namespace.  Replace cl
24327         macros by their implementations where necessary.  Requested by
24328         Richard Stallman <rms@gnu.org>.
24330         * net/tramp.el (top): Make `set-buffer-multibyte' an alias if it
24331         doesn't exist.
24332         (with-parsed-tramp-file-name): Protect debug spec during compilation.
24333         (tramp-handle-insert-directory): Check (featurep 'ls-lisp).
24334         (tramp-file-name-p, tramp-file-name-multi-method)
24335         (tramp-file-name-method, tramp-file-name-user)
24336         (tramp-file-name-host, tramp-file-name-localname): New defuns,
24337         replacing defstruct `tramp-file-name'.
24338         (tramp-handle-file-remote-p, tramp-completion-dissect-file-name1)
24339         (tramp-dissect-file-name, tramp-dissect-multi-file-name):
24340         Apply `vector' instead of `make-tramp-file-name'.
24341         (tramp-handle-make-auto-save-file-name):
24342         Apply `tramp-temporary-file-directory' for compatibility reasons.
24343         (tramp-completion-mode): Use `natnump' instead of `wholenump'
24344         because of XEmacs.
24345         (tramp-completion-mode): `last-input-event' is nil when XEmacs is
24346         started.
24348 2007-05-28  Chong Yidong  <cyd@stupidchicken.com>
24350         * textmodes/sgml-mode.el (sgml-point-entered): Use condition-case.
24352 2007-05-27  Tetsurou Okazaki  <okazaki@be.to>  (tiny change)
24354         * log-edit.el (log-edit-changelog-paragraph): Return point-max
24355         as the end of the ChangeLog paragraph when it ends without a line
24356         termination.
24358 2007-05-27  Ryan Yeske  <rcyeske@gmail.com>
24360         * net/webjump.el (webjump-sample-sites):
24361         Add simple Wikipedia query.
24363 2007-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
24365         * emacs-lisp/derived.el (define-derived-mode): Remove bogus
24366         compatibility code.
24368         * emacs-lisp/copyright.el (copyright-names-regexp): New var.
24369         (copyright-update-year): Use it.
24371         * edmacro.el (edmacro-format-keys): Use current-active-maps.
24373         * ediff-init.el (ediff-defvar-local, ediff-with-current-buffer):
24374         Add indentation and debugging info.  Fix up comment convention.
24376         * cus-dep.el (custom-make-dependencies): Simplify.
24378         * composite.el (compose-region, decompose-region):
24379         Use inhibit-read-only and restore-buffer-modified-p.
24381         * xt-mouse.el (xterm-mouse-truncate-wrap): New function.
24382         (xterm-mouse-event): Use it.
24384 2007-05-25  Juanma Barranquero  <lekktu@gmail.com>
24386         * bs.el (bs-cycle-previous): Don't modify the cycle list until
24387         `switch-to-buffer' has returned succesfully.
24388         (bs-cycle-next): Ditto.  Also, don't bury the buffer when the
24389         window is dedicated (it could iconify the frame).
24391 2007-05-25  Miles Bader  <miles@fencepost.gnu.org>
24393         * vc-hooks.el (vc-find-root): Fix file attribute test.
24395 2007-05-24  Richard Stallman  <rms@gnu.org>
24397         * textmodes/flyspell.el (flyspell-correct-word-before-point):
24398         Don't let opoint be nil.
24399         (flyspell-emacs-popup): Explicit error if no dialogs.
24401 2007-05-24  Chong Yidong  <cyd@stupidchicken.com>
24403         * image-mode.el (image-forward-hscroll, image-backward-hscroll)
24404         (image-next-line, image-previous-line, image-scroll-up)
24405         (image-scroll-down, image-bol, image-eol, image-bob, image-eob):
24406         New functions.
24407         (image-mode-map): Remap motion commands.
24408         (image-mode-text-map): New keymap for viewing images as text.
24409         (image-mode): Use image-mode-map.
24410         (image-toggle-display): Toggle auto-hscroll-mode and mode keymaps.
24412 2007-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
24414         * textmodes/fill.el (canonically-space-region): Make the second arg
24415         a marker if it's not already the case.
24417 2007-05-23  Eli Zaretskii  <eliz@gnu.org>
24419         * tar-mode.el (tar-header-block-summarize, tar-summarize-buffer)
24420         (tar-get-descriptor): Handle type 55, an extended pax header.
24422 2007-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
24424         * autoinsert.el (auto-insert-alist): Quote elisp sample code so as not
24425         to confuse outline-minor-mode.
24427 2007-05-23  Eli Zaretskii  <eliz@gnu.org>
24429         * tar-mode.el (tar-file-name-handler): New function.
24430         (tar-extract): Bind file-name-handler-alist to it to force
24431         find-buffer-file-type-coding-system behave as if the file being
24432         extracted existed.  Use last-coding-system-used to force
24433         buffer-file-coding-system to what decode-coding-region actually
24434         used to decode the file.
24436 2007-05-23  Nikolaj Schumacher  <n_schumacher@web.de>  (tiny change)
24438         * progmodes/compile.el (compilation-handle-exit):
24439         `compilation-finish-function' may change the current buffer.
24441 2007-05-22  Richard Stallman  <rms@gnu.org>
24443         * files.el (set-auto-mode): Doc fix.
24445 2007-05-22  Jan Djärv  <jan.h.d@swipnet.se>
24447         * help-fns.el (find-source-lisp-file): New function.
24448         (describe-function-1): Use find-source-lisp-file to find source
24449         file in compile tree.
24451 2007-05-22  Eli Zaretskii  <eliz@gnu.org>
24453         * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
24455 2007-05-22  Juanma Barranquero  <lekktu@gmail.com>
24457         * emacs-lisp/easy-mmode.el (define-minor-mode)
24458         (easy-mmode-define-navigation): Fix typos in docstrings.
24460 2007-05-22  Glenn Morris  <rgm@gnu.org>
24462         * files.el (auto-mode-alist): Open `.asd' files in lisp-mode.
24464 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24466         * mail/mail-extr.el (mail-extract-address-components):
24467         Recognize non-ASCII characters except for NBSP as words.
24469 2007-05-21  Trent Buck  <trentbuck@gmail.com>  (tiny change)
24471         * net/rcirc.el (rcirc-fill-column): Allow `window-width'.
24472         (rcirc-print): Handle `window-width'.
24473         (rcirc-buffer-maximum-lines): Doc fix.
24475 2007-05-21  Chong Yidong  <cyd@stupidchicken.com>
24477         * image-mode.el (image-toggle-display): Don't clear image cache.
24478         Only use filename in image spec if the file is readable.
24479         Call image-refresh.
24481         * image.el (image-type-from-file-name, image-type): Simplify.
24482         (image-type-auto-detected-p): Don't scan auto-mode-alist.
24484         * files.el (magic-mode-alist): Remove image-type-auto-detected-p.
24485         (magic-fallback-mode-alist): Add image-type-auto-detected-p.
24487 2007-05-20  Nick Roberts  <nickrob@snap.net.nz>
24489         * t-mouse.el (t-mouse-mode): Reset t-mouse-mode to nil if there
24490         is an error.
24492         * term/linux.el (terminal-init-linux): Don't signal an error
24493         if gpm isn't running.
24495 2007-05-20  Nick Roberts  <nickrob@snap.net.nz>
24497         * t-mouse.el: Reduce to a minor-mode macro call.
24498         (t-mouse-mode): Remove the lighter.
24500         * term/linux.el (terminal-init-linux): Enable t-mouse by default.
24502 2007-05-19  Dan Nicolaescu  <dann@ics.uci.edu>
24504         * files.el (auto-mode-alist): Change the regexp so that
24505         ChangeLog.unicode and ChangeLog.multi-tty use change-log-mode.
24507 2007-06-02  Chong Yidong  <cyd@stupidchicken.com>
24509         * Version 22.1 released.
24511 2007-05-19  Chong Yidong  <cyd@stupidchicken.com>
24513         * paren.el (show-paren-function): Undo 2007-04-19 and 2007-04-20
24514         changes.
24516 2007-05-19  Kevin Ryde  <user42@zip.com.au>
24518         * info.el (Info-fontify-node): Fontify https as well as http and ftp.
24520 2007-05-18  Thien-Thi Nguyen  <ttn@gnuvola.org>
24522         * textmodes/sgml-mode.el: Revert last change.
24524 2007-05-18  Richard Stallman  <rms@gnu.org>
24526         * simple.el (push-mark): Doc fix.
24528 2007-05-18  Rob Riepel  <riepel@Stanford.EDU>
24530         * emulation/tpu-edt.el (CSI-map, SS3-map): Move from global-map to
24531         tpu-global-map.
24532         (tpu-original-global-map): Variable deleted.
24533         (tpu-control-keys-map): New keymap variable.
24534         (tpu-set-control-keys): Use tpu-reset-control-keys rather than
24535         setting keymapping directly.
24536         (tpu-reset-control-keys): Use tpu-control-keys-map instead of
24537         tpu-global-map.
24538         (tpu-edt-on): Activate the tpu-global-map.
24539         (tpu-edt-off): Deactivate the tpu-global-map.
24541 2007-05-18  Ryan Yeske  <rcyeske@gmail.com>
24543         * textmodes/ispell.el (ispell-get-word): Return markers
24544         for start and end positions.
24545         (ispell-word): Assume END is a marker.
24547 2007-05-17  Christian Plate  <cplate@web.de>  (tiny change)
24549         * textmodes/sgml-mode.el (sgml-tag):
24550         Fix bug: Call sgml-transformation-function.
24552 2007-05-17  Martin Rudalics  <rudalics@gmx.at>
24554         * hilit-chg.el (highlight-changes-rotate-faces): Don't set
24555         modified flag of buffer.  Use `inhibit-modification-hooks'.
24557 2007-05-16  Richard Stallman  <rms@gnu.org>
24559         * buff-menu.el (Buffer-menu-sort-column): Doc fix.
24561 2007-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
24563         * files.el (magic-mode-alist, magic-fallback-mode-alist):
24564         Move the *ml, Postscript, and XmCD entries to the fallback part.
24566         * files.el (magic-fallback-mode-alist):
24567         Rename from file-start-mode-alist.
24569 2007-05-16  Nikolaj Schumacher  <n_schumacher@web.de>  (tiny change)
24571         * progmodes/compile.el (compilation-handle-exit): Quote first
24572         argument of `run-hook-with-args'.
24574 2007-05-16  Juanma Barranquero  <lekktu@gmail.com>
24576         * buff-menu.el (Buffer-menu-sort-column):
24577         * dabbrev.el (dabbrev-upcase-means-case-search):
24578         * dired.el (dired-recursive-deletes, dired-recursive-copies):
24579         * info.el (Info-current-subfile):
24580         * ls-lisp.el (ls-lisp-verbosity):
24581         * msb.el (msb-menu-cond):
24582         * pcvs.el (cvs-dired-use-hook):
24583         * simple.el (set-mark-command-repeat-pop):
24584         * time.el (display-time-24hr-format, display-time-mail-file):
24585         Doc fixes.
24587         * tutorial.el (get-lang-string, tutorial--find-changed-keys):
24588         * printing.el (pr-ps-fast-fire): Fix typos in docstrings.
24590         * view.el (view-inhibit-help-message): Fix typo in docstring.
24591         (view-scroll-auto-exit, view-try-extend-at-buffer-end): Doc fixes.
24593 2007-05-16  Martin Rudalics  <rudalics@gmx.at>
24595         * textmodes/ispell.el (ispell-start-process): Defend against bad
24596         default-directory.
24598 2007-05-14  Eli Zaretskii  <eliz@gnu.org>
24600         * mail/rmail.el (rmail-convert-to-babyl-format): Check
24601         content-transfer-encoding _last_, because it's its position that
24602         we need as value of base64-header-field-end.
24604 2007-05-14  Juanma Barranquero  <lekktu@gmail.com>
24606         * files.el (mode-require-final-newline, require-final-newline)
24607         (enable-local-variables, enable-local-eval): Doc fixes.
24609 2007-05-13  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24611         * ps-print.el: Use default color when foreground or background color
24612         are unspecified.  Reported by Leo <sdl.web@gmail.com>.
24613         (ps-print-version): New version 6.7.4.
24614         (ps-rgb-color): New argument.  Use default color when color is
24615         unspecified.
24616         (ps-begin-job): Fix code.
24618 2007-05-12  Chong Yidong  <cyd@stupidchicken.com>
24620         * longlines.el (longlines-mode): Make longlines-auto-wrap
24621         buffer-local.  Add hooks unconditionally.
24622         (longlines-auto-wrap): Toggle wrapping.
24623         (longlines-after-change-function)
24624         (longlines-post-command-function): Check longlines-auto-wrap.
24626 2007-05-12  Nick Roberts  <nickrob@snap.net.nz>
24628         * xt-mouse.el (xterm-mouse-debug-buffer): New variable.
24629         (xterm-mouse-translate): Use it.
24631 2007-05-10  Richard Stallman  <rms@gnu.org>
24633         * international/iso-cvt.el (iso-cvt-read-only): Ignore arguments.
24634         (iso-cvt-write-only): Likewise.
24636         * emacs-lisp/easy-mmode.el (define-minor-mode):
24637         Fix generated doc string.
24639         * startup.el (fancy-splash-text): Add URL of guided tour.
24640         Adjust horizontal and vertical whitespace.
24642         * progmodes/compile.el (compilation-handle-exit):
24643         Use run-hook-with-args to run compilation-finish-functions.
24645         * files.el (file-start-mode-alist): New variable.
24646         (magic-mode-regexp-match-limit): Doc fix.
24647         (set-auto-mode): Handle file-start-mode-alist.
24648         A little cleanup of structure.
24650         * dabbrev.el (dabbrev-eliminate-newlines):
24651         Renamed from dabbrev--eliminate-newlines.  All uses changed.
24653 2007-05-10  Michaël Cadilhac  <michael@cadilhac.name>
24655         * man.el (Man-next-section): Don't consider the last line of the page
24656         as being part of any section.
24658 2007-05-10  Stefan Monnier  <monnier@iro.umontreal.ca>
24660         * textmodes/sgml-mode.el (sgml-value): Fix handling of attributes which
24661         can take any number of values.
24663 2007-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
24665         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add citet and citep
24666         to the list of citation commands.
24668 2007-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
24670         * vc-hooks.el (vc-find-root): Stop searching when the user changes.
24672 2007-05-09  Edward O'Connor  <hober0@gmail.com>  (tiny change)
24674         * progmodes/python.el (python-font-lock-keywords)
24675         (python-open-block-statement-p, python-mode): Add support for the new
24676         "with" keyword.
24678 2007-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
24680         * diff-mode.el (diff-apply-hunk, diff-test-hunk): Don't do by default
24681         the exact opposite of diff-goto-source.
24683         * emacs-lisp/advice.el (ad-special-forms): Remove.
24684         (ad-special-form-p): Use subr-arity.
24686         * newcomment.el (comment-search-forward): Make sure we search forward.
24687         (comment-enter-backward): Try and distinguish the non-matching case at
24688         EOB from the non-matching case with a missing comment-end-skip for
24689         a 2-char comment ender.
24690         (comment-choose-indent): New function extracted from comment-indent.
24691         Improve the alignment algorithm.
24692         (comment-indent): Use it.
24694         * textmodes/sgml-mode.el (sgml-lexical-context): Add handling of
24695         XML style Processing Instructions.
24696         (sgml-parse-tag-backward): Handle XML-style PIs.  Also ensure progress.
24697         (sgml-calculate-indent): Handle `pi' context.
24699         * vc.el: Ensure that update-changelog issues an error when used with
24700         a backend that does not implement it.
24701         (vc-update-changelog-rcs2log): Rename from vc-default-update-changelog.
24702         Remove `backend' argument.  Use expand-file-name.
24703         (vc-cvs-update-changelog, vc-rcs-update-changelog): New aliases.
24705         * progmodes/python.el (python-end-of-block): Revert last change.
24706         (python-end-of-statement): Make sure we move *forward*.
24708 2007-05-08  Richard Stallman  <rms@gnu.org>
24710         * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
24711         Don't include non-self-insert commands in the exception for `-'.
24713 2007-05-08  David Reitter  <david.reitter@gmail.com>
24715         * progmodes/python.el (python-guess-indent): Check non-nullness
24716         before comparing indent against the 2..8 interval.
24718 2007-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
24720         * term/mac-win.el (mac-ts-unicode-for-key-event): Check if text is
24721         available.
24723 2007-05-06  Richard Stallman  <rms@gnu.org>
24725         * emacs-lisp/eldoc.el (turn-on-eldoc-mode): Doc fix.
24727 2007-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
24729         * diff.el (diff): Use buffer-local vars diff-old-file and diff-new-file
24730         rather than storing their value in the revert-buffer function.
24732 2007-05-04  Nick Roberts  <nickrob@snap.net.nz>
24734         * t-mouse.el (t-mouse-mode): Do nothing on a graphical display
24735         when disabling t-mouse-mode.
24737 2007-05-01  Davis Herring  <herring@lanl.gov>
24739         * calendar/timeclock.el: Update version number.
24740         (timeclock-modeline-display): Mention timeclock-use-display-time
24741         in explanatory message.
24742         (timeclock-in): Fix non-interactive workday specifications.
24743         (timeclock-log): Don't kill the log buffer if it already existed.
24744         Suppress warnings when finding the log.  Don't check for a nil
24745         project twice.  Run hooks after killing the buffer (if applicable).
24746         (timeclock-geometric-mean): Rename to `timeclock-mean' (it never
24747         was geometric).  All uses changed.
24748         (timeclock-generate-report): Support prefix argument.
24750 2007-05-03  Ryan Yeske  <rcyeske@gmail.com>
24752         * net/rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted
24753         disconnections.
24755 2007-05-01  Romain Francoise  <romain@orebokech.com>
24757         * dired-x.el: Revert 2007-04-06 change.
24759 2007-04-29  Stephen Berman  <Stephen.Berman@gmx.net>
24761         * find-dired.el (find-dired-filter): Propertize all text down to eob.
24763 2007-04-29  Richard Stallman  <rms@gnu.org>
24765         * international/mule.el (auto-coding-alist): Add pdf => no-conversion.
24767 2007-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
24769         * progmodes/cc-mode.el (c-before-change): Use point-min rather
24770         than 1.
24772 2007-04-28  Richard Stallman  <rms@gnu.org>
24774         * progmodes/sh-script.el (sh-mode): Recognize .profile as sh style.
24776 2007-04-28  Nick Roberts  <nickrob@snap.net.nz>
24778         * progmodes/gud.el (gud-menu-map): Pdb can't handle SIGINT so
24779         don't put stop on toolbar.
24781 2007-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
24783         * vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem.
24785 2007-04-28  Eli Zaretskii  <eliz@gnu.org>
24787         * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Use ./mh-e
24788         instead of $(lisp)/mh-e.
24790 2007-04-28  Glenn Morris  <rgm@gnu.org>
24792         * image-dired.el (image-dired-cmd-create-thumbnail-options)
24793         (image-dired-cmd-create-temp-image-options): Replace option
24794         +profile "*" with -strip.
24796 2007-04-27  Chong Yidong  <cyd@stupidchicken.com>
24798         * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
24799         Use window-start and window-end.
24801 2007-04-27  Andreas Schwab  <schwab@suse.de>
24803         * emacs-lisp/sregex.el (sregexq): Fix doc string quoting.
24805 2007-04-27  Eli Zaretskii  <eliz@gnu.org>
24807         * textmodes/fill.el (fill-paragraph): Doc fix.
24809 2007-04-26  Luc Teirlinck  <teirllm@dms.auburn.edu>
24811         * locate.el (locate-in-alternate-database): Doc fix.
24813 2007-04-26  Glenn Morris  <rgm@gnu.org>
24815         * button.el (button): Use underline if supported, else fall back
24816         to color.
24818         * version.el (emacs-version): Increase to 22.1.50.
24820 2007-04-25  Richard Stallman  <rms@gnu.org>
24822         * hi-lock.el (hi-lock-file-patterns-policy): Default to `ask'.
24824 2007-04-25  J.D. Smith  <jdsmith@as.arizona.edu>
24826         * progmodes/idlwave.el (idlwave-beginning-of-subprogram)
24827         (idlwave-end-of-subprogram): Take optional NOMARK arg to prevent
24828         pushing mark.
24829         (idlwave-current-routine): Don't push mark.
24831 2007-04-25  Mathias Dahl  <mathias.dahl@gmail.com>
24833         * image-dired.el (image-dired-display-image): Derive image-type from
24834         filename rather than assuming jpeg, in case no resizing was needed.
24836 2007-04-25  Johan Bockgård  <bojohan@dd.chalmers.se>
24838         * custom.el (defface): Doc fix.
24840 See ChangeLog.12 for earlier changes.
24842 ;; Local Variables:
24843 ;; coding: utf-8
24844 ;; add-log-time-zone-rule: t
24845 ;; End:
24847     Copyright (C) 2007, 2008  Free Software Foundation, Inc.
24849   This file is part of GNU Emacs.
24851   GNU Emacs is free software: you can redistribute it and/or modify
24852   it under the terms of the GNU General Public License as published by
24853   the Free Software Foundation, either version 3 of the License, or
24854   (at your option) any later version.
24856   GNU Emacs is distributed in the hope that it will be useful,
24857   but WITHOUT ANY WARRANTY; without even the implied warranty of
24858   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24859   GNU General Public License for more details.
24861   You should have received a copy of the GNU General Public License
24862   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
24864 ;; arch-tag: 1e8aa93a-fc6c-4ac3-9b10-1f445e1840af