* lisp/emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
[emacs.git] / lisp / ChangeLog
bloba96444a765161bb8fcab04a552b8c3ad87ca7715
1 2012-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
4         (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
5         Use `cl-function' instead.
7 2012-06-14  Juanma Barranquero  <lekktu@gmail.com>
9         * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
10         Suggested by Stefan Monnier while discussing bug#11657.
12 2012-06-14  Sam Steingold  <sds@gnu.org>
14         * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
16 2012-06-14  Andreas Schwab  <schwab@linux-m68k.org>
18         * play/doctor.el (doctor-doc): Remove parameter and use
19         doctor-sent instead of sent.
20         (doctor-read-print): Use doctor-sent instead of sent.  (Bug#11708)
22 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
24         * files.el: Require cl-lib.
25         (file-name-non-special): Replace case -> cl-case.
27         * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
29         * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
30         mapping from #' to function*.
32 2012-06-13  Chong Yidong  <cyd@gnu.org>
34         * mouse.el (mouse-drag-track): Do not set the mark if the user
35         releases the mouse without selecting anything (Bug#11588).
37 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
39         * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
40         as well (bug#11646).
42         * loadup.el: Count byte-code functions as well.
44         * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
45         * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
47         * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
48         (bug#11649).  Add cl-defun and cl-defmacro.
50 2012-06-13  Drew Adams  <drew.adams@oracle.com>
52         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
53         Fix last change.
55 2012-06-13  Michael Albinus  <michael.albinus@gmx.de>
57         * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
58         Otherwise, it blocks in batch mode.
60 2012-06-13  Juanma Barranquero  <lekktu@gmail.com>
62         * help-mode.el (bookmark-make-record-default): Declare.
64 2012-06-13  Chong Yidong  <cyd@gnu.org>
66         * emacs-lisp/package.el (list-packages): Compute a list of
67         packages that are newly-available since the last list-packages
68         invocation.
69         (package-menu--new-package-list): New var.
70         (package-menu--generate, package-menu--print-info)
71         (package-menu--status-predicate, package-menu-mark-install):
72         Handle new status label "new".
74 2012-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
76         * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
77         conversion to backquotes.
79 2012-06-12  Chong Yidong  <cyd@gnu.org>
81         * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
82         Rename from gud-inhibit-global-bindings.
84         * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
86         * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
87         hook from nxml-glyph-set-hook.
89         * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
90         declaration.
92         * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
94         * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
95         Convert to defcustom.
97 2012-06-12  Drew Adams  <drew.adams@oracle.com>
99         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
100         New functions.
101         (help-mode): Use them.
103 2012-06-11  Glenn Morris  <rgm@gnu.org>
105         * progmodes/fortran.el (fortran-font-lock-keywords-3):
106         Use preprocessor face for directives.
107         (fortran-directive-re): Doc fix.
109 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
111         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
112         conversion to backquotes (bug#11652).
114         Fix compiler-expansion of CL's cXXr functions (bug#11673).
115         * emacs-lisp/cl-lib.el (cl--defalias): New function.
116         (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
117         (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
118         (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
119         (cl-ninth, cl-tenth): Mark them as inlinable.
120         (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
121         (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
122         (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
123         (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
124         Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
125         (cl-list*, cl-adjoin): Don't put an autoload manually.
126         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
127         (cl--compiler-macro-list*): Add autoload cookie.
128         (cl--compiler-macro-cXXr): New function.
130         * help-fns.el (help-fns--compiler-macro): New function extracted from
131         describe-function-1; follow aliases and use `compiler-macro' property.
132         (describe-function-1): Use it.
134 2012-06-11  Chong Yidong  <cyd@gnu.org>
136         * startup.el (fancy-splash-head): Use splash.svg even if librsvg
137         is uninstalled, if imagemagick is installed.
139 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
141         * emacs-lisp/cl-lib.el: Use lexical-binding.
142         (cl-map-extents, cl-maclisp-member): Remove.
143         (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
144         (cl--set-substring, cl--block-wrapper, cl--block-throw)
145         (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
146         * emacs-lisp/cl-extra.el: Use lexical-binding.
147         (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
148         (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
149         (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
150         (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
151         * emacs-lisp/cl-seq.el: Use lexical-binding.
152         (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
153         (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
154         (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
155         * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
156         * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
157         CL's internals.
159 2012-06-11  Michael Albinus  <michael.albinus@gmx.de>
161         Sync with Tramp 2.2.6-pre.
163         * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
164         `print-length' and `print-level' to nil, in order to avoid
165         truncation.  Reported by Christopher Schmidt
166         <christopher@ristopher.com>.
168         * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
170         * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
171         New defmacro.
172         (tramp-compat-copy-directory): Add optional argument
173         COPY-CONTENTS.  It is not handled yet.
175         * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
176         (tramp-ftp-file-name-p): Simplify.
178         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
179         * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
180         connection vector.
182         * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
183         (tramp-methods): Do not use `tramp-password-end-of-line'.
184         (tramp-completion-function-alist-putty): Handle UNIX case.
185         (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
186         (tramp-do-file-attributes-with-stat)
187         (tramp-do-directory-files-and-attributes-with-stat) Return uid and
188         gid as real numbers.  They could run out of integer range on cygwin.
189         (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
190         (tramp-sh-handle-expand-file-name): Handle hops.
191         (tramp-open-connection-setup-interactive-shell):
192         Use `tramp-cleanup'.  Move check for busyboxes ...
193         (tramp-find-shell): ... here.  Simplify implementation.
194         Set "remote-shell" property also for alternative shells.
195         (tramp-remote-coding-commands): Check "test -c /dev/stdout".
196         If failing, a regular file would be written otherwise.
197         Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
198         (tramp-find-inline-encoding): Cache the coding commands in the
199         process cache.  Apply test command on the remote side, if defined.
200         (tramp-find-inline-compress): Cache the compress commands in the
201         process cache.
202         (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
203         when requested.  Handle hops.
204         (tramp-current-connection): New defvar.
205         (tramp-maybe-open-connection): Use `tramp-cleanup'.
206         Throw `suppress', if there was a failed connection shortly before.
207         Handle user interrupt.  (Bug#10187)
208         (tramp-get-inline-compress, tramp-get-inline-coding):
209         Read connection properties from the process cache.
211         * net/tramp-smb.el (tramp-smb-server-version)
212         (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
213         New defconsts.
214         (tramp-smb-prompt): Extend for powershell prompt.
215         (tramp-smb-file-name-handler-alist): Add handlers for
216         `process-file', `shell-command' and `start-file-process'.
217         (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
218         (tramp-smb-winexe-shell-command-switch): New defcustoms.
219         (tramp-smb-file-name-p): Simplify.
220         (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
221         (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
222         (tramp-smb-shell-quote-argument): New defuns.
223         (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
224         Implement using "tar".  By this, time-stamps are preserved.
225         (tramp-smb-handle-copy-file): Handle also the case of directories.
226         (tramp-smb-do-file-attributes-with-stat)
227         (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
228         Use `tramp-get-connection-buffer').
229         (tramp-smb-handle-rename-file): Use "rename", when source and
230         target are on the same share.
231         (tramp-smb-maybe-open-connection): Handle wrong passwords.
232         Use `tramp-smb-server-version'.
233         (tramp-smb-wait-for-output): Remove prompt.
235         * net/tramp.el (top): Require 'cl.
236         (tramp-methods, tramp-rsh-end-of-line):
237         Remove `tramp-password-end-of-line' from docstring.
238         (tramp-save-ad-hoc-proxies): New defcustom.
239         (tramp-completion-function-alist): Adapt docstring.
240         (tramp-default-password-end-of-line): Remove defcustom.
241         (tramp-shell-prompt-pattern): Allow "[]" style prompts.  (Bug#11065)
242         (tramp-user-regexp, tramp-file-name-regexp-unified)
243         (tramp-file-name-regexp-url): Extend regexp by hop separator.
244         (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
245         (tramp-remote-file-name-spec-regexp): New defconst.
246         (tramp-file-name-structure): Extend structure for hops.
247         (tramp-get-method-parameter): Move up.
248         (tramp-file-name-p, tramp-dissect-file-name)
249         (with-parsed-tramp-file-name): Handle hops.
250         (tramp-file-name-hop): New defun.
251         (tramp-make-tramp-file-name): New optional arg HOP.
252         (tramp-message-show-progress-reporter-message): New defvar.
253         (tramp-with-progress-reporter): Use it.  We cannot use
254         `tramp-message-show-message' here, because this suppresses also
255         error buffers.
256         (tramp-error-with-buffer): Suppress buffer view, if
257         `tramp-message-show-message' is nil.
258         Use `tramp-get-connection-buffer'.
259         (tramp-cleanup): New defun.
260         (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
261         (tramp-file-name-handler): If `debug-on-error' is set, propagate
262         an error unchanged.
263         (tramp-completion-handle-file-name-all-completions): Handle hops.
264         Fix an error when called from ido.
265         (tramp-completion-dissect-file-name): Use better local variable
266         name.  Add hop to the vector.
267         (tramp-handle-insert-file-contents): Use progress-reporter for the
268         whole scenario.
269         (tramp-action-password): Let-bind `enable-recursive-minibuffers'
270         to `t'.
271         (tramp-check-for-regexp): Simplify search.
272         (tramp-enter-password): Remove it.  Move implementation ...
273         (tramp-action-password): ... here.
274         (tramp-mode-string-to-int, tramp-local-host-p)
275         (tramp-make-tramp-temp-file, tramp-read-passwd)
276         (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
277         Set tramp-autoload cookie.
279         * net/trampver.el: Update release number.
281 2012-06-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
282             Michael Albinus  <michael.albinus@gmx.de>
284         * net/tramp.el (tramp-set-completion-function): Fix docstring.
285         (tramp-parse-group, tramp-parse-file)
286         (tramp-parse-shostkeys-sknownhosts): New defuns.
287         (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
288         (tramp-parse-shosts-group, tramp-parse-sconfig)
289         (tramp-parse-sconfig-group, tramp-parse-shostkeys)
290         (tramp-parse-sknownhosts, tramp-parse-hosts)
291         (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
292         Use them.
293         (tramp-parse-passwd-group, tramp-parse-netrc-group)
294         (tramp-parse-putty-group): Don't narrow.
295         (tramp-parse-putty): Make a loop.
296         (tramp-file-name-handler): Catch the `suppress' signal.
298 2012-06-11  Chong Yidong  <cyd@gnu.org>
300         * image.el (imagemagick-register-types): Put the ImageMagick entry
301         at the end of image-type-file-name-regexps.
303 2012-06-11  Johan BockgÃ¥rd  <bojohan@gnu.org>
305         * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
306         (pcase, pcase-let*, pcase-dolist): Use them.
308 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
310         * emacs-lisp/pcase.el (pcase--let*): New function.
311         (pcase-let*): Use it.  Use pcase--memoize to avoid repeated expansions.
312         (pcase--expand): Use macroexp-let².
314 2012-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
316         * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
317         * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
318         * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
319         * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
320         * emacs-lisp/derived.el: Use pcase instead of `cl'.
321         * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
323 2012-06-10  Glenn Morris  <rgm@gnu.org>
325         * mail/rmail.el (rmail-yank-current-message): Leave point at
326         correct position.  (Bug#11660)
328 2012-06-10  Chong Yidong  <cyd@gnu.org>
330         * allout-widgets.el: Fix code header.
332 2012-06-10  Chong Yidong  <cyd@gnu.org>
334         * cus-edit.el (customize-changed-options-previous-release):
335         Bump to 24.1.
337 2012-06-09  Andreas Schwab  <schwab@linux-m68k.org>
339         * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
341 2012-06-09  Chong Yidong  <cyd@gnu.org>
343         * ebuff-menu.el (electric-buffer-list): Preserve header line.
345 2012-06-09  Martin Rudalics  <rudalics@gmx.at>
347         * window.el (special-display-popup-frame): Don't use
348         window--display-buffer (Bug#11651).
350 2012-06-09  Eli Zaretskii  <eliz@gnu.org>
352         Fix parallel builds: make sure loaddefs.el is not being written
353         while Lisp files are compiled.
354         (compile): Don't depend on 'mh-autoloads'.
355         (compile-CMD, compile-SH): Depend on 'autoloads'.
356         (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
358         * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200.  (Bug#11649)
360 2012-06-09  Chong Yidong  <cyd@gnu.org>
362         * face-remap.el (face-remap-add-relative, face-remap-set-base)
363         (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
364         Doc fixes (Bug#11225).
366 2012-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
368         * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
369         a function if there's a clear indication that it has a compiler-macro.
370         * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
371         (macro-declarations-alist): Add arglist to declaration functions.
372         (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
373         * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
374         * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
375         * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
376         Also add autoload to find the compiler macro.
377         * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
378         (cl--compiler-macro-member, cl--compiler-macro-assoc)
379         (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
380         (cl--compiler-macro-get): New functions, replacing calls to
381         cl-define-compiler-macro.
382         (cl-typep) [compiler-macro]: Use macroexp-let².
384 2012-06-08  Nick Dokos  <nicholas.dokos@hp.com>  (tiny change)
386         * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
387         string properly, fixes Bug#11473.
389 2012-06-08  Chong Yidong  <cyd@gnu.org>
391         * faces.el (set-face-attribute): Doc fix.
392         (modify-face): Don't use :bold and :italic.
393         (error, warning, success): Tweak definitions.
395         * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
396         (custom-modified, custom-set, custom-changed, custom-themed)
397         (custom-saved, custom-button, custom-button-mouse)
398         (custom-button-pressed, custom-state, custom-comment-tag)
399         (custom-variable-tag, custom-group-tag-1, custom-group-tag)
400         (custom-group-subtitle): Use new-style face specs.
401         (custom-invalid-face, custom-rogue-face, custom-modified-face)
402         (custom-set-face, custom-changed-face, custom-saved-face)
403         (custom-button-face, custom-button-pressed-face)
404         (custom-documentation-face, custom-state-face)
405         (custom-comment-face, custom-comment-tag-face)
406         (custom-variable-tag-face, custom-variable-button-face)
407         (custom-face-tag-face, custom-group-tag-face-1)
408         (custom-group-tag-face): Remove obsolete face alias.
410         * epa.el (epa-validity-high, epa-validity-medium)
411         (epa-validity-low, epa-mark, epa-field-name, epa-string)
412         (epa-field-name, epa-field-body):
413         * font-lock.el (font-lock-comment-face, font-lock-string-face)
414         (font-lock-keyword-face, font-lock-builtin-face)
415         (font-lock-function-name-face, font-lock-variable-name-face)
416         (font-lock-type-face, font-lock-constant-face):
417         * ido.el (ido-first-match, ido-only-match, ido-subdir)
418         (ido-virtual, ido-indicator, ido-incomplete-regexp):
419         * speedbar.el (speedbar-button-face, speedbar-file-face)
420         (speedbar-directory-face, speedbar-tag-face)
421         (speedbar-selected-face, speedbar-highlight-face)
422         (speedbar-separator-face):
423         * whitespace.el (whitespace-newline, whitespace-space)
424         (whitespace-hspace, whitespace-tab, whitespace-trailing)
425         (whitespace-line, whitespace-space-before-tab)
426         (whitespace-space-after-tab, whitespace-indentation)
427         (whitespace-empty):
428         * emulation/cua-base.el (cua-global-mark):
429         * eshell/em-prompt.el (eshell-prompt):
430         * net/newst-plainview.el (newsticker-new-item-face)
431         (newsticker-old-item-face, newsticker-immortal-item-face)
432         (newsticker-obsolete-item-face, newsticker-date-face)
433         (newsticker-statistics-face, newsticker-default-face):
434         * net/newst-reader.el (newsticker-feed-face)
435         (newsticker-extra-face, newsticker-enclosure-face):
436         * net/newst-treeview.el (newsticker-treeview-face)
437         (newsticker-treeview-new-face, newsticker-treeview-old-face)
438         (newsticker-treeview-immortal-face)
439         (newsticker-treeview-obsolete-face)
440         (newsticker-treeview-selection-face):
441         * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
442         (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
443         (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
444         (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
445         * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
446         (nxml-outline-active-indicator, nxml-outline-ellipsis):
447         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
448         (mpuz-text):
449         * progmodes/vera-mode.el (vera-font-lock-number)
450         (vera-font-lock-function, vera-font-lock-interface):
451         * textmodes/table.el (table-cell): Use new-style face specs, and
452         don't use the old :bold and :italic attributes.
454         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
455         (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
456         (ebrowse-member-class, ebrowse-progress): Likewise.
457         (ebrowse-tree-mark-face, ebrowse-root-class-face)
458         (ebrowse-file-name-face, ebrowse-default-face)
459         (ebrowse-member-attribute-face, ebrowse-member-class-face)
460         (ebrowse-progress-face): Remove obsolete faces.
462         * progmodes/flymake.el (flymake-errline, flymake-warnline):
463         Inherit from error and warning faces respectively.
465         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
466         Likewise.
467         (flyspell-incorrect-face, flyspell-duplicate-face):
468         Remove obsolete aliases.
470 2012-06-08  Michael Albinus  <michael.albinus@gmx.de>
472         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
473         Avoid infloop.
475 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
477         * startup.el (argv, argi): Make lexically scoped.
478         * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
479         * emacs-lisp/cl-macs.el: Use lexical-binding.
480         Rename cl-bind-* to cl--bind-*.
481         * files.el: Don't require `cl' since it doesn't use it.
482         * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
484 2012-06-08  Juanma Barranquero  <lekktu@gmail.com>
486         * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
487         (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
488         instead of calling external sort utility.
489         (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
491 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
493         * descr-text.el (describe-char): Mention how to insert the
494         character, if the current input method doesn't support it.
495         See the discussion in this thread for the details:
496         http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
498 2012-06-08  Sam Steingold  <sds@gnu.org>
500         * bindings.el (global-map): Bind XF86Forward to next-buffer and
501         XF86Back to previous-buffer.
502         (minibuffer-local-map): Bind them to next-history-element and
503         previous-history-element respectively.
504         * help-mode.el (help-mode-map): Bind them to help-go-forward and
505         help-go-back respectively.
506         * info.el (Info-mode-map): Bind them to Info-history-forward and
507         Info-history-back respectively.
508         These are the keys next to Up on the ThinkPad keyboard.
510 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
512         Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
513         * emacs-lisp/cl-macs.el: Provide itself.
514         (cl--labels-convert-cache): New var.
515         (cl--labels-convert): New function.
516         (cl-flet, cl-labels): New implementation with new semantics, relying on
517         lexical-binding.
518         * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
519         (cl-closure-vars, cl--function-convert-cache)
520         (cl--function-convert): Move from cl-macs.el.
521         (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
522         rename by removing the "cl-" prefix.
523         * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
525 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
527         * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
528         (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
529         (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
530         (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
531         (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
532         (cl-hash-table-count): Add old compatibility aliases.
534         * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
535         Use macroexpand-all-environment instead.
536         (cl--old-macroexpand): New var.
537         (cl--sm-macroexpand): New function.
538         (cl-symbol-macrolet): Use it during macro expansion.
539         (cl--function-convert-cache): New var.
540         (cl--function-convert): New function, extracted from
541         cl-macroexpand-all.
542         (cl-lexical-let): Use it.
544         * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
545         (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
546         (cl-member): Remove old alias.
548         * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
549         (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
550         (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
551         (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
552         (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
553         (cl-macroexpand-cmacs): Remove var.
554         (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
555         Use macroexpand-all instead.
557 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
559         * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
560         (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
561         (macroexp-copyable-p): New functions and macros.
562         * emacs-lisp/edebug.el (edebug-unwrap):
563         * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
564         * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
565         (pcase--let*): Remove.
566         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
567         (byte-compile-constp): Remove.  Use macroexp--const-symbol-p and
568         macroexp-const-p instead.
569         * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
571         * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
572         instead of "cl-" for internal definitions.  Use macroexp-const-p.
573         (cl-old-bc-file-form): Remove var.
574         (cl-const-exprs-p): Remove fun.
575         (cl-labels, cl-macrolet): Use backquote.
576         (cl-lexical-let): Use cl-symbol-macrolet.  Don't use cl-defun-expander.
577         (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
578         (cl-define-setf-expander): Rename from cl-define-setf-method.
579         * emacs-lisp/cl.el: Adjust alias for define-setf-method.
581         * international/mule-cmds.el: Don't require CL.
582         (view-hello-file): Don't use `letf'.
584 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
586         * tmm.el (tmm-prompt): Use string-prefix-p.
587         (tmm-completion-delete-prompt): Don't affect current-buffer outside.
588         (tmm-add-prompt): Use minibuffer-completion-help.
589         (tmm-delete-map): Remove.
591         * subr.el (kbd): Make it its own function.
593 2012-06-07  Stefan Merten  <smerten@oekonux.de>
595         * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
596         Silence compiler warnings.  Fix versions.
597         (rst-position-if, rst-position, rst-some, rst-signum): New functions.
598         (rst-shift-region, rst-adornment-level, rst-compute-tabs)
599         (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
600         (rst-package-emacs-version-alist): Correct Emacs version to
601         represent major merge with upstream.
602         (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
604 2012-06-06  Glenn Morris  <rgm@gnu.org>
606         * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
607         Only print environment variables if set.
609 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
611         * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
612         (macroexp--cons): Rename from maybe-cons.
613         (macroexp--accumulate): Rename from macroexp-accumulate.
614         (macroexp--all-forms): Rename from macroexpand-all-forms.
615         (macroexp--all-clauses): Rename from macroexpand-all-clauses.
616         (macroexp--expand-all): Rename from macroexpand-all-1.
618 2012-06-06  Sam Steingold  <sds@gnu.org>
620         * calendar/calendar.el (calendar-in-read-only-buffer):
621         Call `special-mode' to enable the standard read-only keybindings.
623 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
625         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
626         with "loading" messages (bug#11635).
628 2012-06-06  Michael Albinus  <michael.albinus@gmx.de>
630         * files.el (enable-remote-dir-locals): New option.
631         (hack-dir-local-variables): Use it.  (Bug#1933, Bug#6731)
633         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
634         Ensure, that the temp directory is local.
636         * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
637         `temporary-file-directory'.
639         * progmodes/python.el (python-send-region): Ensure, that the
640         temporary file is created also in the remote case.
642 2012-06-06  Glenn Morris  <rgm@gnu.org>
644         * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
645         (vc-rcs-update-changelog): Use it.
647         * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff
649         * vc/vc-sccs.el (vc-sccs-write-revision): New function.
650         (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
651         (vc-sccs-diff): Replace use of the external vcdiff script.
653 2012-06-05  Glenn Morris  <rgm@gnu.org>
655         * ledit.el: Move to obsolete/.
657 2012-06-05  Sam Steingold  <sds@gnu.org>
659         * calendar/calendar.el (calendar-exit): reinstate the 2012-03-28
660         patch (Bug#11140).
662 2012-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
664         * emacs-list/cust-print.el: Move to obsolete.
666         * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
667         compiler-macro expansion.
669         Add native compiler-macro support.
670         * emacs-lisp/macroexp.el (macroexpand-all-1):
671         Support compiler-macros directly.  Properly follow aliases and apply
672         the compiler macros more thoroughly.
673         * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
674         macroexpand now properly follows aliases.
675         * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
676         (cl-compiler-macroexpand): Use new prop.
677         * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
679         * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
681 2012-06-05  Martin Rudalics  <rudalics@gmx.at>
683         * window.el (get-lru-window, get-mru-window, get-largest-window):
684         New argument NOT-SELECTED to avoid picking the selected window.
685         (window--display-buffer-1, window--display-buffer-2): Replace by
686         new function window--display-buffer
687         (display-buffer-same-window, display-buffer-reuse-window)
688         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
689         Use window--display-buffer.
690         (display-buffer-use-some-window): Remove temporary dedication
691         hack by calling get-lru-window and get-largest-window with
692         NOT-SELECTED argument non-nil.  Call window--display-buffer.
694 2012-06-05  Glenn Morris  <rgm@gnu.org>
696         * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
697         Replace external vcdiff script.
699 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
701         * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
703 2012-06-04  Chong Yidong  <cyd@gnu.org>
705         * image.el (imagemagick-types-inhibit): Revert last change.
706         Add INFO and M.
707         (imagemagick-enabled-types): Remove CIN and EPS*.
709 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
711         * emacs-lisp/cl-lib.el: Rename from cl.el.
712         * emacs-lisp/cl.el: New compatibility file.
713         * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
714         * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
715         to obey the "cl-" prefix.
716         * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
718 2012-06-03  Glenn Morris  <rgm@gnu.org>
720         * emacs-lisp/authors.el (authors-aliases): Addition.
722         * cus-start.el (tool-bar-style, tool-bar-max-label-size):
723         Fix :version.
725 2012-06-03  Stefan Merten  <smerten@oekonux.de>
727         * textmodes/rst.el: Add comments.
728         (rst-transition, rst-adornment): New faces.
729         (rst-adornment-faces-alist): Make default safe to reevaluate.
730         Fixes
731         http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
732         Improve customization tags.
733         (rst-define-level-faces): Clarify meaning.
735 2012-06-03  Chong Yidong  <cyd@gnu.org>
737         * progmodes/compile.el (compilation-mode-line-fail)
738         (compilation-mode-line-run, compilation-mode-line-exit):
739         New faces.
740         (compilation-start, compilation-handle-exit): Use them (Bug#11032).
742 2012-06-03  Jack Duthen  <duthen.mac.01@gmail.com>  (tiny change)
744         * progmodes/which-func.el (which-func-update-ediff-windows):
745         New function.  Use it in ediff-select-hook (Bug#11478).
747 2012-06-03  Chong Yidong  <cyd@gnu.org>
749         * bindings.el: Remove explicit help text from format-mode-line.
750         It is now supplied by mode-line-default-help-echo.
751         (mode-line-front-space, mode-line-end-spaces)
752         (mode-line-misc-info): New variables.
753         (mode-line-modes, mode-line-position): Move the default value to
754         the variable definition.
755         (mode-line-default-help-echo): New defcustom.
756         (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
757         (mode-line-modified-help-echo): New functions.
758         (mode-line-mule-info, mode-line-modified): Use them.
759         (mode-line-eol-desc, propertized-buffer-identification):
760         Consistency fixes for help text.
761         (mode-line-coding-system-map): Allow using mouse-3 to invoke
762         set-buffer-file-coding-system (Bug#289).
763         (mode-line-mule-info-help-echo): Update help text.
765 2012-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
767         * simple.el (execute-extended-command): Set real-this-command
768         (bug#11506).
770 2012-06-02  Chong Yidong  <cyd@gnu.org>
772         Remove incorrect uses of "modeline" in comments, docstrings, and
773         function/variable names (Bug#10329).
775         * cus-edit.el (mode-line):
776         * dframe.el (dframe-mouse-hscroll):
777         * emacs-lisp/re-builder.el:
778         * emacs-lisp/easy-mmode.el (define-minor-mode):
779         * frame.el (set-frame-name):
780         * help.el (lookup-minor-mode-from-indicator):
781         * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
782         * progmodes/cc-cmds.el (c-toggle-auto-newline)
783         (c-toggle-hungry-state):
784         * progmodes/antlr-mode.el (antlr-language-alist):
785         * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
786         * progmodes/vhdl-mode.el (vhdl-mode):
787         * progmodes/which-func.el (which-func, which-func-cleanup-function):
788         * term/ns-win.el (ns-face-at-pos):
789         * term/sup-mouse.el (sup-mouse-report):
790         * textmodes/flyspell.el (flyspell-mode-line-string):
791         * textmodes/ispell.el (ispell-highlight-face):
792         * textmodes/reftex-global.el:
793         * vc/vc-arch.el (vc-arch-mode-line-string):
794         * vc/vc-cvs.el (vc-cvs-mode-line-string):
795         * vc/vc-git.el (vc-git-mode-line-string):
796         * vc/vc-hooks.el (vc-display-status)
797         (vc-default-mode-line-string):
798         * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
800         * ansi-color.el (ansi-color-faces-vector): Change default faces.
802         * dired.el (dired-sort-set-mode-line): Rename from
803         dired-sort-set-modeline.  All callers changed.
805         * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
806         eshell-status-in-modeline.
808         * foldout.el (foldout-mode-line-string): Rename from
809         foldout-modeline-string.  All callers changed.
810         (foldout-update-mode-line): Rename from foldout-update-modeline.
812         * subr.el (redraw-modeline): Make into obsolete alias.
814         * calendar/timeclock.el (timeclock-mode-line-display): Rename from
815         timeclock-modeline-display.  Make old name an alias.
816         (timeclock-update-mode-line): Likewise.  All callers changed.
817         (timeclock-mode-line-display): No need to check before using
818         add-hook.
819         (timeclock-relative, timeclock-day-over-hook)
820         (timeclock-use-elapsed, timeclock-mode-string)
821         (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
823         * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
824         crisp-mode-modeline-string.
826         * play/solitaire.el (solitaire-build-mode-line): Rename from
827         solitaire-build-modeline.  All callers changed.
829         * play/zone.el (zone-hiding-mode-line): Rename from
830         zone-hiding-modeline.  All callers changed.
831         (zone): Remove unusued `modeline-hidden-level' property.
833         * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
834         xscheme-modeline-initialize.  All callers changed.
836         * strokes.el (strokes-lighter): Rename from
837         strokes-modeline-string.
839         * textmodes/sgml-mode.el (html-face-tag-alist)
840         (html-tag-face-alist): Use mode-line face instead of obsolete
841         alias modeline.
843 2012-06-02  Stefan Merten  <smerten@oekonux.de>
845         * textmodes/rst.el: Always require `cl'.
846         (rst-mode-map): Fix meaning of C-M-a / C-M-e.
848 2012-06-02  Chong Yidong  <cyd@gnu.org>
850         * image.el (imagemagick-enabled-types): Rename from
851         imagemagick-types-enable.  Add many more types.
852         (imagemagick-types-inhibit): Change default to nil.
853         (imagemagick-filter-types): Caller changed.
855 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
857         * emacs-lisp/cl-macs.el: Use backquotes.
858         (cl-transform-function-property): Use eval-and-compile rather than
859         abusing `require'.
860         (defstruct): Use declare-function instead of with-no-warnings.
862         * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
863         (byte-compile-output-docform): Re-add the print-circle bindings.
864         (byte-compile-fix-header): Use #$ just because it's shorter.
865         (byte-compile-output-file-form): Remove defun/defmacro.
867 2012-06-01  Martin Rudalics  <rudalics@gmx.at>
869         * simple.el (choose-completion): Remove now obsolete binding for
870         owindow.
872 2012-06-01  Michael Albinus  <michael.albinus@gmx.de>
874         * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
875         in order to avoid "Stack overflow in regexp matcher".
877 2012-05-31  Glenn Morris  <rgm@gnu.org>
879         * image.el: For clarity, call imagemagick-register-types at
880         top-level, rather than relying on a custom :initialize.
881         (imagemagick-types-enable): New option.  (Bug#11557)
882         (imagemagick-filter-types): New function.  (Bug#7406)
883         (imagemagick-register-types): Use imagemagick-filter-types.
884         If disabling support, remove elements altogether rather
885         than using an impossible regexp.
886         (imagemagick-types-inhibit): Give it the default init function.
888 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
890         * emacs-lisp/bytecomp.el (byte-compile-fix-header):
891         Handle arbitrary file name lengths (Bug#11585).
893 2012-05-31  Martin Rudalics  <rudalics@gmx.at>
895         * desktop.el (desktop-read): Clear previous and next buffers for
896         all windows and bury *Messages* buffer (bug#11556).
898 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
900         Add `declare' for `defun'.  Align `defmacro's with it.
901         * emacs-lisp/easy-mmode.el (define-minor-mode)
902         (define-globalized-minor-mode): Don't autoload the var definitions.
903         * emacs-lisp/byte-run.el: Use lexical-binding.
904         (defun-declarations-alist, macro-declarations-alist): New vars.
905         (defmacro, defun): Use them.
906         (make-obsolete, define-obsolete-function-alias)
907         (make-obsolete-variable, define-obsolete-variable-alias):
908         Use `declare'.
909         (macro-declaration-function): Mark obsolete.
910         * emacs-lisp/autoload.el: Use lexical-binding.
911         (make-autoload): Add `expansion' arg.  Rely more on macro expansion.
913 2012-05-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
915         * textmodes/ispell.el (ispell-with-no-warnings):
916         Define as a macro.
917         (ispell-kill-ispell, ispell-change-dictionary):
918         Use `called-interactively-p' for Emacs instead of obsolete
919         `interactive-p'.
921 2012-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
923         * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
924         (macro-declaration-function): Move var from C code.
925         (macro-declaration-function): Define function with defalias.
926         * emacs-lisp/macroexp.el (macroexpand-all-1):
927         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
928         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
929         defun/defmacro any more.
930         * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
931         Provide fallback for unknown arglist.
932         (byte-compile-arglist-warn): Change calling convention.
933         (byte-compile-output-file-form): Move print-vars binding.
934         (byte-compile-output-docform): Simplify accordingly.
935         (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
936         (byte-compile-defmacro-declaration): Remove.
937         (byte-compile-file-form-defmumble): Generalize to defalias.
938         (byte-compile-output-as-comment): Return byte-positions.
939         Simplify callers accordingly.
940         (byte-compile-lambda): Use `assert'.
941         (byte-compile-defun, byte-compile-defmacro): Remove.
942         (byte-compile-file-form-defalias):
943         Use byte-compile-file-form-defmumble.
944         (byte-compile-defalias-warn): Remove.
946 2012-05-29  Stefan Merten  <smerten@oekonux.de>
948         * textmodes/rst.el: Silence `checkdoc-ispell' errors where
949         possible.  Fix authors.  Improve comments.  Improve loading of `cl'.
951         (rst-mode-abbrev-table): Merge definition.
952         (rst-mode): Make sure `font-lock-defaults' is buffer local.
953         (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
955 2012-05-29  Ulf Jasper  <ulf.jasper@web.de>
957         * calendar/icalendar.el
958         (icalendar-export-region): Export UID properly.
960 2012-05-29 Leo <sdl.web@gmail.com>
961         * calendar/icalendar.el (icalendar-import-format):
962         Add `icalendar-import-format-uid' (Bug#11525).
963         (icalendar-import-format-uid): New.
964         (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
965         Export UID.
967 2012-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
969         * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
970         different alternative patterns.
971         (pcase-codegen): Be more careful to preserve identity.
972         (pcase--u1): Don't forget to mark vars as used.
974         * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
975         (byte-compile-close-variables): Bind byte-compile--outbuffer here...
976         (byte-compile-from-buffer): ...rather than here.
978         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
979         functions from byte-compile-function-environment.
981 2012-05-29  Troels Nielsen  <bn.troels@gmail.com>
983         * window.el (window-deletable-p): Avoid deleting the root window
984         of a frame with an active minibuffer.
986 2012-05-29  Martin Rudalics  <rudalics@gmx.at>
988         * simple.el (choose-completion): Use quit-window (Bug#11567).
990 2012-05-29  Chong Yidong  <cyd@gnu.org>
992         * whitespace.el (whitespace-cleanup): Fix usage of
993         whitespace-empty-at-bob-regexp (Bug#11492).
995 2012-05-29  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
997         * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
998         revert (Bug#11488).
1000 2012-05-29  Juri Linkov  <juri@jurta.org>
1002         * isearch.el (isearch-mode-map): Bind `M-s _' to
1003         `isearch-toggle-symbol'.  Bind `M-s c' to
1004         `isearch-toggle-case-fold'.
1005         (search-map): Bind `M-s _' to `isearch-forward-symbol'.
1006         (isearch-forward): Add `M-s _' to the docstring.
1007         (isearch-forward-symbol, isearch-toggle-case-fold)
1008         (isearch-symbol-regexp): New functions.  (Bug#11381)
1010 2012-05-29  Juri Linkov  <juri@jurta.org>
1012         * isearch.el (isearch-word): Add docstring.  (Bug#11381)
1013         (isearch-occur, isearch-search-and-update): If `isearch-word' is
1014         a function, call it to get the regexp.
1015         (isearch-message-prefix): If `isearch-word' holds a symbol, use its
1016         property `isearch-message-prefix' instead of the string "word ".
1017         (isearch-search-fun-default): For the case of `isearch-word',
1018         return a lambda that calls re-search-forward/re-search-backward
1019         with a regexp returned by `word-search-regexp' or by the function
1020         in `isearch-word'.
1022 2012-05-29  Juri Linkov  <juri@jurta.org>
1024         * isearch.el (isearch-search-fun-default): New function.
1025         (isearch-search-fun): Move default part to the new function
1026         `isearch-search-fun-default'.
1027         (isearch-search-fun-function): Set the default value to
1028         `isearch-search-fun-default'.  (Bug#11381)
1030         * comint.el (comint-history-isearch-end):
1031         Use `isearch-search-fun-default'.
1032         (comint-history-isearch-search): Use `isearch-search-fun-default'
1033         and remove spacial case for `isearch-word'.
1034         (comint-history-isearch-wrap): Remove spacial case for
1035         `isearch-word'.
1037         * hexl.el (hexl-isearch-search-function):
1038         Use `isearch-search-fun-default'.
1040         * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
1041         Use `word-search-regexp' for `isearch-word'.
1043         * misearch.el (multi-isearch-search-fun):
1044         Use `isearch-search-fun-default'.
1046         * simple.el (minibuffer-history-isearch-search):
1047         Use `isearch-search-fun-default' and remove spacial case for
1048         `isearch-word'.
1049         (minibuffer-history-isearch-wrap): Remove spacial case for
1050         `isearch-word'.
1052         * textmodes/reftex-global.el (reftex-isearch-wrap-function):
1053         Remove spacial case for `isearch-word'.
1054         (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
1056 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
1058         Decrease XEmacs incompatibilities.
1059         * textmodes/flyspell.el (flyspell-check-pre-word-p):
1060         Use `string-match'.
1061         (flyspell-delete-region-overlays): Use alternative definition for
1062         XEmacs.
1063         (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
1064         (flyspell-word): Use `process-kill-without-query' if XEmacs.
1065         (flyspell-mode-on): Use `interactive-p' if XEmacs.
1066         (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
1067         `define-obsolete-face-alias' under XEmacs, but old method.
1069         * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
1070         `with-no-warnings' definition or Emacs alias.
1071         (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
1072         (ispell-word): Do not use `region-p' if XEmacs.
1074 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
1076         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
1077         Check for `ispell-dictionary-base-alist' instead of full
1078         `ispell-dictionary-alist'.
1079         (ispell-init-process): Show spellchecker when starting new Ispell
1080         process.
1082 2012-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1084         * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
1085         http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
1087 2012-05-27  Juanma Barranquero  <lekktu@gmail.com>
1089         * version.el (motif-version-string, gtk-version-string)
1090         (ns-version-string): Declare.
1092 2012-05-27  Juri Linkov  <juri@jurta.org>
1094         * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
1095         after the `eval-defun-1' specialcaseing
1096         like in `edebug-eval-defun' (bug#10181).
1098         * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
1099         like in `eval-defun-1'.
1101 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
1103         * mail/sendmail.el (mail-yank-region):
1104         Recognize rmail-yank-current-message in addition to insert-buffer.
1105         Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
1106         a *mail* buffer created through rmail-start-mail with sendmail as
1107         mail-user-agent.
1109 2012-05-27  Chong Yidong  <cyd@gnu.org>
1111         * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
1112         Default to 256 (Bug#11267).
1114         * help.el (describe-mode): Doc fix.
1116 2012-05-26  Glenn Morris  <rgm@gnu.org>
1118         * w32-fns.el (w32-init-info): Remove.
1119         * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
1121         * info.el (info-initialize): For self-contained NS builds, put the
1122         included info/ directory at the front.  (Bug#2791)
1124         * paths.el (Info-default-directory-list): Make it a defcustom,
1125         mainly so that we can use custom-initialize-delay.
1127 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1129         * subr.el (buffer-has-markers-at): Mark obsolete.
1131         * subr.el (lambda): Use declare.
1133         * emacs-lisp/lisp-mode.el (lambda):
1134         * emacs-lisp/edebug.el (lambda): Move properties to its definition.
1136 2012-05-26  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
1138         * thingatpt.el (forward-same-syntax): Handle no ARG case.  (Bug#11560)
1140 2012-05-26  Glenn Morris  <rgm@gnu.org>
1142         * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
1144 2012-05-25  Glenn Morris  <rgm@gnu.org>
1146         * paths.el: Remove no-byte-compile.
1147         * loadup.el: No need to load paths.el uncompiled.
1149         * image.el (imagemagick-types-inhibit): Doc fix.
1151         * version.el: Remove no-byte-compile and associated formatting.
1152         * loadup.el: No need to load version.el uncompiled.  AFAICS, this
1153         is ancient code from when there was an "inc-vers.el".
1155 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1157         * progmodes/gdb-mi.el: Minor style changes.
1158         (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
1159         Turn into minor modes.
1160         (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
1161         (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
1162         (gdb-shell): Remove unneeded let-binding.
1163         (gdb-get-many-fields): Eliminate O(n²) behavior.
1165 2012-05-25  Eli Zaretskii  <eliz@gnu.org>
1167         * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
1168         platforms that don't link in fontset.c.
1170 2012-05-25  Juri Linkov  <juri@jurta.org>
1172         Use the same diff color scheme as in modern VCSes (bug#10181).
1174         * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
1175         to avoid confusion with `diff-added' that now uses green colors.
1176         (diff-removed): Use shades of red.
1177         (diff-added): Use shades of green.
1178         (diff-changed): Leave just the yellow color.
1179         (diff-use-changed-face): New variable.
1180         (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
1181         how to highlight context diff changes.
1182         (diff-refine-change): Use shades of yellow.
1183         (diff-refine-removed): New face that uses shades of red.
1184         (diff-refine-added): New face that uses shades of green.
1185         (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
1186         `diff-refine-removed' in the call to `smerge-refine-subst'
1187         depending on the value of `diff-use-changed-face'.
1189         * vc/smerge-mode.el (smerge-mine): Use shades of red.
1190         (smerge-other): Use shades of green.
1191         (smerge-base): Use shades of yellow.
1192         (smerge-refined-change): Empty face.
1193         (smerge-refined-removed): New face that uses shades of red.
1194         (smerge-refined-added): New face that uses shades of green.
1195         (smerge-refine-subst): Rename arg `props' to `props-c'.  Add new
1196         args `props-r' and `props-a', and use them.  Doc fix.
1197         (smerge-refine): Evaluate `smerge-use-changed-face' and depending
1198         on its value use different faces `smerge-refined-change',
1199         `smerge-refined-removed', `smerge-refined-added' in the call to
1200         `smerge-refine-subst'.
1202         * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
1203         Add face condition `min-colors 88' with shades of red.
1204         (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
1205         `min-colors 88' with shades of green.
1206         (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
1207         `min-colors 88' with shades of yellow.
1209 2012-05-24  Glenn Morris  <rgm@gnu.org>
1211         * paths.el (prune-directory-list, remote-shell-program): Move to...
1212         * files.el (prune-directory-list, remote-shell-program): ...here.
1213         For the latter, delay initialization, prefer ssh, just search PATH.
1215         * paths.el (term-file-prefix): Move to faces.el (the only user).
1216         * faces.el (term-file-prefix): Move here, make it a defcustom.
1218         * paths.el (news-directory, news-path, news-inews-program):
1219         Move to gnus/nnspool.el.
1221         * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
1223         * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
1224         * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
1225         Make the latter a defcustom, with a delayed initialization.
1227         * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
1228         These were deleted from Gnus itself late 2010.
1230 2012-05-22  Juanma Barranquero  <lekktu@gmail.com>
1232         * progmodes/which-func.el (which-func-ff-hook):
1233         Check against user-error, not error.
1235         * emacs-lisp/edebug.el (top): Do not load or set up loading of
1236         cl-specs.el, which no longer exists.
1238 2012-05-22  Glenn Morris  <rgm@gnu.org>
1240         * info.el (info-emacs-bug): New command.
1241         * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
1242         * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
1244 2012-05-21  Glenn Morris  <rgm@gnu.org>
1246         * makefile.w32-in (update-subdirs-SH):
1247         * Makefile.in (update-subdirs): Update for moved update-subdirs.
1249 2012-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1251         * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
1253         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1254         Simplify Maven regexp, and make sure the file can't start with a space
1255         (bug#11517).
1257 2012-05-21  Glenn Morris  <rgm@gnu.org>
1259         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1260         Scrap superfluous subshells.
1262 2012-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1264         * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
1265         (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
1267 2012-05-19  Jay Belanger  <jay.p.belanger@gmail.com>
1269         * calc/calc.el (calc-ensure-consistent-units): New variable.
1271         * calc/calc-units.el (math-consistent-units-p)
1272         (math-check-unit-consistency): New functions.
1273         (calc-quick-units, calc-convert-units):
1274         Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
1275         is non-nil.
1276         (calc-extract-units): Fix typo.
1278 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1280         * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
1282         * textmodes/flyspell.el: Commenting style, plus code simplifications.
1283         (flyspell-default-deplacement-commands): Don't spell check after
1284         repeated window/frame switches (e.g. triggered by mouse-movement).
1285         (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
1286         (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
1287         (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
1288         (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
1289         Remove unused vars.
1290         (flyspell-get-casechars, flyspell-get-not-casechars):
1291         Simplify; Don't bother removing a ] just to add it back.
1292         * textmodes/ispell.el (ispell-program-name): Use executable-find.
1294 2012-05-18  Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1296         * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
1297         New functions.
1298         (math-function-table): Add support for more C functions.
1300 2012-05-18  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
1302         * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1303         (flyspell-debug-signal-word-checked): Protect delay handling for
1304         otherchars against empty otherchars.
1306 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1308         * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
1309         their respective macro declarations.
1310         * skeleton.el (define-skeleton):
1311         * progmodes/compile.el (define-compilation-mode):
1312         * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
1313         (define-ibuffer-filter):
1314         * emacs-lisp/generic.el (define-generic-mode):
1315         * emacs-lisp/easy-mmode.el (define-minor-mode)
1316         (define-globalized-minor-mode):
1317         * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
1318         * emacs-lisp/byte-run.el (defsubst):
1319         * custom.el (deftheme): Add doc-string metadata.
1321 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1323         * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
1325 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1327         * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
1329         * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
1330         * emacs-lisp/cl-macs.el: Idem.
1331         * emacs-lisp/cl-specs.el: Remove.
1333 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1335         Minor renaming of internal CL functions and variables.
1336         * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
1337         (cl--position): Rename from cl-position.
1338         (cl--delete-duplicates): Rename from cl-delete-duplicates.
1339         * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
1340         (cl--random-state): Rename from *random-state*.
1342 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1344         * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
1345         parens around the arg list (bug#11499).
1347 2012-05-17  Juri Linkov  <juri@jurta.org>
1349         * isearch.el (word-search-regexp, word-search-backward)
1350         (word-search-forward, word-search-backward-lax)
1351         (word-search-forward-lax): Move functions from search.c
1352         (bug#10145, bug#11381).
1354 2012-05-16  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
1356         * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1357         (flyspell-debug-signal-word-checked): Delay for otherchars as for
1358         normal word components.
1360 2012-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1362         * minibuffer.el (completion--sifn-requote): Fix last change.
1363         (minibuffer-local-must-match-filename-map):
1364         Move define-obsolete-variable-alias before its var.
1366 2012-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1368         * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
1370         * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
1371         behavior.
1372         (completion--string-equal-p): New function.
1373         (completion--twq-all): Use it to get better assertion failure data.
1375         Only handle ".." and '..' quoting in shell-mode (bug#11466).
1376         * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
1377         (shell--requote-argument): New functions.
1378         (shell-completion-vars): Use them.
1379         (shell--parse-pcomplete-arguments): Rename from
1380         shell-parse-pcomplete-arguments.
1381         * comint.el (comint-word): Obey comint-file-name-quote-list.  Simplify.
1382         (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
1383         Obey comint-file-name-quote-list.
1385         * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
1386         (smie-indent-keyword): Use it.
1388 2012-05-14  Stefan Merten  <smerten@oekonux.de>
1390         * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
1392 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1394         * net/rlogin.el (rlogin-mode-map): Fix last change.
1396 2012-05-14  Jason L. Wright  <jason.wright@inl.gov>  (tiny change)
1398         * mail/smtpmail.el (smtpmail-send-command): Send the command and
1399         the following \r\n using a single `process-send-string', since the
1400         Lotus SMTP server refuses to accept any commands if they are sent
1401         with two `process-send-string's (Bug#11444).
1403 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1405         * shell.el (shell-parse-pcomplete-arguments):
1406         Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
1408 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
1410         * image-mode.el: Fit to width/height for rotated images (Bug#11431).
1411         (image-transform-scale, image-transform-right-angle-fudge): New vars.
1412         (image-transform-width, image-transform-fit-width): New functions.
1413         (image-transform-properties): Use them.
1414         (image-transform-check-size): New function.
1415         (image-toggle-display-image): Use it (for testing).
1416         (image-transform-set-rotation): Reduce angle mod 360.
1417         Delete obsolete comment.
1419 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
1421         * image-mode.el: Fix scaling (bug#11399).
1422         (image-transform-resize): Doc fix.
1423         (image-transform-properties): Default scale is 1 and height should
1424         be an integer.
1426 2012-05-13  Johan BockgÃ¥rd  <bojohan@gnu.org>
1428         * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
1429         than hard-coding `car', to fix misbehavior when moving forward.
1431 2012-05-13  Chong Yidong  <cyd@gnu.org>
1433         * emacs-lisp/tabulated-list.el (tabulated-list-format)
1434         (tabulated-list-entries, tabulated-list-padding)
1435         (tabulated-list-sort-key): Make permanent-local.
1437         * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
1438         (electric-buffer-list): Put electric buffer menu
1439         command descriptions in this docstring, instead of the docstring
1440         of electric-buffer-menu-mode.  Code cleanups.
1441         (electric-buffer-menu-mode): Use define-derived-mode.  Rename from
1442         Electric-buffer-menu-mode.
1443         (electric-buffer-update-highlight): Minor code cleanup.
1445 2012-05-13  Michael Albinus  <michael.albinus@gmx.de>
1447         * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
1448         (Bug#11447)
1450 2012-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1452         Move define-obsolete-variable-alias before the var's definition.
1453         * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
1454         * tooltip.el (tooltip-hook):
1455         * textmodes/reftex-toc.el (reftex-toc-map):
1456         * textmodes/reftex-sel.el (reftex-select-label-map)
1457         (reftex-select-bib-map):
1458         * textmodes/reftex-index.el (reftex-index-map)
1459         (reftex-index-phrases-map):
1460         * speedbar.el (speedbar-syntax-table, speedbar-key-map):
1461         * progmodes/meta-mode.el (meta-mode-map):
1462         * novice.el (disabled-command-hook):
1463         * loadhist.el (unload-hook-features-list):
1464         * frame.el (blink-cursor):
1465         * files.el (find-file-not-found-hooks, write-file-hooks)
1466         (write-contents-hooks):
1467         * emulation/tpu-edt.el (GOLD-map):
1468         * emacs-lock.el (emacs-lock-from-exiting):
1469         * emacs-lisp/generic.el (generic-font-lock-defaults):
1470         * emacs-lisp/chart.el (chart-map):
1471         * dos-fns.el (register-name-alist):
1472         * dired-x.el (dired-omit-files-p):
1473         * desktop.el (desktop-enable):
1474         * cus-edit.el (custom-mode-hook):
1475         * buff-menu.el (buffer-menu-mode-hook):
1476         * bookmark.el (bookmark-read-annotation-text-func)
1477         (bookmark-exit-hooks):
1478         * allout.el (allout-mode-deactivate-hook)
1479         (allout-exposure-change-hook, allout-structure-added-hook)
1480         (allout-structure-deleted-hook, allout-structure-shifted-hook):
1481         * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
1482         (dirtrack-debug): Move call to define-obsolete-variable-alias so it
1483         comes before the corresponding variable's definition.
1485 2012-05-12  Chong Yidong  <cyd@gnu.org>
1487         * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
1488         (Buffer-menu-mouse-select): Restore function (Bug#11459).
1489         (Buffer-menu-mode-map): Bind it.
1490         (Buffer-menu--pretty-name): Add a mouse-face property.
1492 2012-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1494         * progmodes/prolog.el: Use SMIE.  Cleanup regexp setup.
1495         (prolog-upper-case-string, prolog-lower-case-string)
1496         (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
1497         (prolog-use-smie, prolog-smie-grammar): New vars.
1498         (prolog-smie-forward-token, prolog-smie-backward-token)
1499         (prolog-smie-rules): New funs.
1500         (prolog-comment-indent): Remove.
1501         (prolog-mode-variables): Use default comment indentation instead.
1502         Setup SMIE.
1503         (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
1504         (prolog-mode): Don't call them any more.
1505         (prolog-electric-colon, prolog-electric-dash)
1506         (prolog-edit-menu-insert-move): Use indent-according-to-mode.
1508         * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
1510         * minibuffer.el (completion--twq-all): Again, allow case differences.
1512         * term.el: Move keymap initialization code to be more idiomatic.
1513         (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
1514         (term-terminal-menu): Move initialization into declaration.
1515         (term-escape-char): Let the user set it in her .emacs.
1517         * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
1518         Provide SMIE-based indentation (not enabled by default yet).
1519         (sh-mode-map): Don't bind electric keys.
1520         Use electric-pair-mode instead of skeleton-pair.
1521         (sh-assignment-regexp): Fit within 80 columns.
1522         (sh-indent-supported): Specify actual shell name instead of boolean.
1523         (sh--maybe-here-document): New fun, from sh-maybe-here-document.
1524         (sh-maybe-here-document): Use it.  Make obsolete.
1525         (sh-electric-here-document-mode) New minor mode.
1526         (sh-mode): Use it.  Don't set sh-indent-supported-here here.
1527         (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
1528         (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
1529         (sh-smie-rc-grammar, sh-use-smie): New vars.
1530         (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
1531         (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
1532         (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
1533         (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
1534         (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
1535         (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
1536         (sh-set-shell): Use smie-setup if requested.
1538         * term.el (term-set-escape-char): Properly set term-escape-char.
1539         See http://stackoverflow.com/questions/10524656.
1541 2012-05-10  Chong Yidong  <cyd@gnu.org>
1543         * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
1544         Use url-generic-parse-url, and handle host names and Windows
1545         filenames properly.
1546         (ffap-url-unwrap-remote): Use url-generic-parse-url.
1547         (ffap-url-unwrap-remote): Accept list values, specifying a list of
1548         URL schemes to work on.
1549         (ffap--toggle-read-only): New function.
1550         (ffap-read-only, ffap-read-only-other-window)
1551         (ffap-read-only-other-frame): Use it.
1552         (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
1553         necessary for ffap-url-unwrap-remote.
1555 2012-05-10  Dave Abrahams  <dave@boostpro.com>
1557         * cus-start.el (create-lockfiles): Add it.
1559 2012-05-09  Chong Yidong  <cyd@gnu.org>
1561         * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
1562         (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
1564 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1566         * shell.el (shell-completion-vars): Fix last change (bug#11348).
1568 2012-05-09  Chong Yidong  <cyd@gnu.org>
1570         * ansi-color.el (ansi-color-process-output): Check for validity of
1571         comint-last-output-start before using it.  This avoids a bad
1572         interaction with gdb-mi's input/output buffer.
1574 2012-05-09  Glenn Morris  <rgm@gnu.org>
1576         * files.el (dir-locals-read-from-file):
1577         Mention dir-locals in any error message.
1579 2012-05-09  Chong Yidong  <cyd@gnu.org>
1581         * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
1582         package (Bug#11410).
1584         * emacs-lisp/package.el (package-buffer-info): Avoid putting local
1585         variables into description.
1587 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1589         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
1590         shell-delimiter-argument-list (bug#11348).
1591         (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
1593 2012-05-09  Juanma Barranquero  <lekktu@gmail.com>
1595         * textmodes/rst.el: Silence byte-compiler warnings.
1596         (rst-re-alist, rst-reset-section-caches): Move around.
1597         (rst-re): Use `characterp', not `char-valid-p'.
1598         (font-lock-beg, font-lock-end): Declare.
1600         * progmodes/idlw-shell.el (specs): Remove reference to deleted
1601         variable `idlwave-shell-activate-alt-keybindings' and simplify.
1603         * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
1605 2012-05-08  Glenn Morris  <rgm@gnu.org>
1607         * files.el (auto-mode-alist): Treat ".make" like ".mk".
1609 2012-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1611         * vc/log-edit.el: Add GNU coding standards highlighting.
1612         (log-edit-font-lock-gnu-style)
1613         (log-edit-font-lock-gnu-keywords): New vars.
1614         (log-edit-font-lock-keywords): New fun.
1615         (log-edit-mode): Don't fold case in font-lock.
1616         (log-edit-font-lock-keywords): Do not assume case-folding.
1618         * imenu.el: Misc cleanup.  Make docstrings out of comments.
1619         Use lexical-binding.
1620         (imenu--index-alist, imenu--last-menubar-index-alist)
1621         (imenu-menubar-modified-tick): Use defvar-local.
1622         (imenu--split-menu): Remove unused var.
1623         (imenu--cleanup-seen): Declare as global.
1624         (imenu--cleanup): Use dolist.
1626         * subr.el (defvar-local): Add debug spec and doc-string position.
1628 2012-05-08  Glenn Morris  <rgm@gnu.org>
1630         * lisp/language/burmese.el, language/cham.el, language/czech.el:
1631         * language/english.el, language/georgian.el, language/greek.el:
1632         * language/japanese.el, language/khmer.el, language/korean.el:
1633         * language/lao.el, language/misc-lang.el, language/romanian.el:
1634         * language/sinhala.el, language/slovak.el, language/tai-viet.el:
1635         * language/thai.el, language/utf-8-lang.el:
1636         Remove no-byte-compile setting.
1638         * play/zone.el (zone-pgm-stress): Don't pollute kill-ring.  (Bug#11388)
1640 2012-05-08  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
1642         * progmodes/make-mode.el (makefile-browse):
1643         Remove unnecessary interactive.  (Bug#11324)
1645 2012-05-07  Glenn Morris  <rgm@gnu.org>
1647         * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
1649         * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
1651 2012-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1653         * loadup.el: Preload newcomment.el.
1654         * newcomment.el: Move autoload-only code to toplevel.
1656         * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
1657         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
1658         Handle new :right-align column property.
1659         (tabulated-list-print-col): Idem, plus use `display' text-property to
1660         try and preserve alignment for variable pitch fonts.
1662 2012-05-07  Chong Yidong  <cyd@gnu.org>
1664         * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
1665         (tabulated-list-use-header-line): New var.
1666         (tabulated-list-init-header): Use it.
1667         (tabulated-list-print-fake-header): New function.
1668         (tabulated-list-print): Use it.
1669         (tabulated-list-sort-button-map): Add non-header-line commands.
1670         (tabulated-list-init-header): Add column name property to basic
1671         labels as well.
1672         (tabulated-list-col-sort): Handle non-header-line button case.
1673         (tabulated-list--sort-by-column-name): Fix a corner case.
1675         * buff-menu.el (list-buffers--refresh):
1676         Handle Buffer-menu-use-header-line.
1678 2012-05-06  Chong Yidong  <cyd@gnu.org>
1680         * buff-menu.el: Convert to Tabulated List mode.
1681         (Buffer-menu-buffer+size-width): Make obsolete.
1682         (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
1683         (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
1684         (Buffer-menu-mode): Derive from tabulated-list-mode.  Move command
1685         documentation into docstring of buffer-menu.
1686         (Buffer-menu-toggle-files-only): Add an informative message.
1687         (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
1688         (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
1689         (Buffer-menu-unmark, Buffer-menu-backup-unmark)
1690         (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
1691         (Buffer-menu-execute, Buffer-menu-select)
1692         (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
1693         (Buffer-menu-bury): Use Tabulated List machinery.
1694         (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
1695         (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
1696         Delete.
1697         (list-buffers--refresh): New function.
1698         (list-buffers-noselect): Use it.
1699         (tabulated-list-entry-size->, Buffer-menu--pretty-name)
1700         (Buffer-menu--pretty-file-name): New helper functions.
1702         * loadup.el: Preload tabulated-list.
1704         * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
1705         tabulated-list-sort-column.
1706         (tabulated-list-init-header): Add the initial aligning space even
1707         if tabulated-list-padding is zero.
1709 2012-05-06  Christopher Schmidt  <christopher@ch.ristopher.com>
1711         * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
1712         whose cdr is not a cons cell correctly (bug#11038).
1714 2012-05-06  Chong Yidong  <cyd@gnu.org>
1716         * emacs-lisp/tabulated-list.el (tabulated-list-format):
1717         Accept additional plist in column descriptors.
1718         (tabulated-list-init-header): Obey it.
1719         (tabulated-list-get-entry): New function.
1720         (tabulated-list-put-tag): Use it.  Use string-width instead of
1721         length.
1722         (tabulated-list--column-number): New function.
1723         (tabulated-list-print): Use it.
1724         (tabulated-list-print-col): New function.
1725         Set `tabulated-list-column-name' property on each column's text.
1726         (tabulated-list-print-entry): Use it.
1727         (tabulated-list-delete-entry, tabulated-list-set-col):
1728         New functions.
1729         (tabulated-list-sort-column): New command (Bug#11337).
1731         * buff-menu.el (list-buffers): Move C-x C-b binding from
1732         buff-menu.el to bindings.el.
1734         * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
1735         :advertised-binding feature.
1737 2012-05-06  Troels Nielsen  <bn.troels@gmail.com>  (tiny change)
1739         * progmodes/compile.el (compilation-internal-error-properties):
1740         Calculate start position correctly when end-col is set but
1741         end-line is not (Bug#11382).
1743 2012-05-06  Wolfgang Jenkner  <wjenkner@inode.at>
1745         * man.el (Man-unindent): Use text-property-default-nonsticky to
1746         prevent untabify from inheriting face properties (Bug#11408).
1748 2012-05-05  Stefan Merten  <smerten@oekonux.de>
1750         * textmodes/rst.el: Major merge with upstream development up to
1751         Docutils SVN r7399 / rst.el V1.2.1.
1753         Clarify maintainership and authors.
1755         (rst-extract-version, rst-cvs-header, rst-cvs-rev)
1756         (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
1757         (rst-official-version, rst-official-cvs-rev, rst-version)
1758         (rst-package-emacs-version-alist): New functions and variables
1759         for version information.
1761         (rst-bullets, rst-uri-schemes, rst-adornment-chars)
1762         (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
1763         (rst-mode-syntax-table, rst-mode): New and corrected functions
1764         and variables representing reStructuredText features.
1766         (rst-re): New function for reStructuredText regexes.  Use in
1767         many places.
1769         (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
1770         (rst-mode-map): Rebind keys.
1772         (rst-mode-lazy, rst-font-lock-keywords)
1773         (rst-font-lock-extend-region)
1774         (rst-font-lock-extend-region-internal)
1775         (rst-font-lock-extend-region-extend)
1776         (rst-font-lock-find-unindented-line-limit)
1777         (rst-font-lock-find-unindented-line-match)
1778         (rst-adornment-level, rst-font-lock-adornment-level)
1779         (rst-font-lock-adornment-match)
1780         (rst-font-lock-handle-adornment-pre-match-form)
1781         (rst-font-lock-handle-adornment-matcher): Major revision of
1782         font-locking.  Integrate with other code.  Use `jit-lock-mode'.
1784         (rst-preferred-adornments, rst-adjust-hook)
1785         (rst-new-adornment-down, rst-preferred-bullets)
1786         (rst-preferred-bullets, rst-indent, rst-indent-width)
1787         (rst-indent-field, rst-indent-literal-normal)
1788         (rst-indent-literal-minimized, rst-indent-comment): Change,
1789         extend and improve customization.
1791         (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
1792         (rst-normalize-cursor-position, rst-get-decoration)
1793         (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
1794         (rst-rstrip, rst-toc-insert-find-delete-contents)
1795         (rst-shift-fill-region, rst-compute-bullet-tabs)
1796         (rst-debug-print-tabs, rst-debug-mark-found)
1797         (rst-shift-region-guts, rst-shift-region-right)
1798         (rst-shift-region-left, rst-use-char-classes)
1799         (rst-font-lock-keywords-function)
1800         (rst-font-lock-indentation-point)
1801         (rst-font-lock-find-unindented-line-begin)
1802         (rst-font-lock-find-unindented-line-end)
1803         (rst-font-lock-find-unindented-line)
1804         (rst-font-lock-adornment-point, rst-font-lock-level)
1805         (rst-adornment-level-alist): Remove functions and variables.
1807         (rst-compare-adornments, rst-get-adornment-match)
1808         (rst-suggest-new-adornment, rst-get-adornments-around)
1809         (rst-adornment-complete-p, rst-get-next-adornment)
1810         (rst-adjust-adornment, rst-display-adornments-hierarchy)
1811         (rst-straighten-adornments): Standardize function names to
1812         use "adornment" instead of "decoration".  Correct callers.
1813         Similar standardizing in many places.
1815         (rst-update-section, rst-adjust, rst-promote-region)
1816         (rst-enumerate-region, rst-bullet-list-region)
1817         (rst-repeat-last-character): Correct use of `interactive'.
1819         (rst-classify-adornment, rst-find-all-adornments)
1820         (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
1821         (rst-find-leftmost-column, rst-repeat-last-character):
1822         Refactor functions.
1824         (rst-find-title-line, rst-reset-section-caches)
1825         (rst-get-adornments-around, rst-adjust-adornment-work)
1826         (rst-arabic-to-roman, rst-roman-to-arabic)
1827         (rst-insert-list-pos, rst-insert-list-new-item)
1828         (rst-insert-list-continue, rst-insert-list, rst-forward-line):
1829         New functions.
1831         (rst-all-sections, rst-section-hierarchy)
1832         (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
1833         New variables.
1835         (rst-toc-return-wincfg, rst-toc-quit-window): Use window
1836         configuration instead of only buffer.  Change where necessary.
1838         (rst-line-tabs, rst-compute-tabs, rst-indent-line)
1839         (rst-shift-region, rst-adaptive-fill): New functions for
1840         indentation and filling.
1842         (rst-comment-line-break, rst-comment-indent)
1843         (rst-comment-insert-comment, rst-comment-region)
1844         (rst-uncomment-region): New functions for handling comments.
1846         (rst-compile): Quote shell arguments.
1848         (rst-compile-pdf-preview, rst-compile-slides-preview):
1849         Delete temporary files after use.
1851 2012-05-05  Glenn Morris  <rgm@gnu.org>
1853         * calendar/cal-html.el: Optionally include holidays in the output.
1854         Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
1855         (cal-html-holidays): New option.
1856         (cal-html-css-default): Add holiday entry.
1857         (holiday-in-range): Autoload it.
1858         (cal-html-htmlify-entry): Add optional class argument.
1859         (cal-html-htmlify-list): Add optional holidays argument.
1860         (cal-html-insert-agenda-days): Include holidays in the output.
1861         (cal-html-one-month): Maybe include holidays.
1863         * calendar/holidays.el (holiday-in-range):
1864         Move here from cal-tex-list-holidays.
1865         * calendar/cal-tex.el (cal-tex-list-holidays):
1866         Make it an obsolete alias for holiday-in-range.  Update all callers.
1868 2012-05-05  Chong Yidong  <cyd@gnu.org>
1870         * select.el (xselect--encode-string): Always use utf-8 for TEXT on
1871         Nextstep.
1873 2012-05-05  Ransom Williams  <auvergnerw@gmail.com>  (tiny change)
1875         * files.el (file-auto-mode-skip): New var.
1876         (set-auto-mode-1): Use it.
1878 2012-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1880         * repeat.el: Use lexical-binding.
1881         (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
1882         (repeat-undo-count): Remove.
1883         (repeat):
1884         * progmodes/octave-mod.el (octave-abbrev-start):
1885         * progmodes/f90.el (f90-abbrev-start):
1886         * face-remap.el (text-scale-adjust):
1887         * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
1889         * emacs-lisp/pcase.el (pcase--let*): New function.
1890         (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
1891         a bit more.
1892         (pcase--split-pred): Be more clever about ruling out overlap between
1893         a predicate and some constant pattern.
1894         (pcase--q1): Use `null' instead of (eq foo nil).
1896         * subr.el (setq-local, defvar-local): New macros.
1897         (kbd): Redefine as an alias.
1898         (with-selected-window): Leave unrelated frames alone.
1899         (set-temporary-overlay-map): New function.
1901 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
1903         * subr.el (user-error): New function.
1904         * window.el (switch-to-buffer):
1905         * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
1906         (smerge-match-conflict):
1907         * simple.el (previous-matching-history-element)
1908         (next-matching-history-element, goto-history-element, undo-more)
1909         (undo-start):
1910         * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
1911         (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
1912         (next-file, tags-loop-scan, list-tags, complete-tag):
1913         * progmodes/compile.el (compilation-loop):
1914         * mouse.el (mouse-minibuffer-check):
1915         * man.el (Man-bgproc-sentinel, Man-goto-page):
1916         * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
1917         (Info-history-forward, Info-follow-reference, Info-menu)
1918         (Info-extract-menu-item, Info-extract-menu-counting)
1919         (Info-forward-node, Info-backward-node, Info-next-menu-item)
1920         (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
1921         (Info-next-reference, Info-prev-reference, Info-index)
1922         (Info-index-next, Info-follow-nearest-node)
1923         (Info-copy-current-node-name):
1924         * imenu.el (imenu--make-index-alist)
1925         (imenu-default-create-index-function, imenu-add-to-menubar):
1926         * files.el (basic-save-buffer, recover-file):
1927         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
1928         * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
1929         (checkdoc-message-text, checkdoc-defun):
1930         * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
1931         * cus-edit.el (customize-changed-options, customize-rogue)
1932         (customize-saved, custom-variable-set, custom-variable-mark-to-save)
1933         (custom-variable-mark-to-reset-standard)
1934         (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
1935         (custom-file):
1936         * completion.el (check-completion-length):
1937         * comint.el (comint-search-arg)
1938         (comint-previous-matching-input-string-position)
1939         (comint-previous-matching-input)
1940         (comint-replace-by-expanded-history-before-point, comint-send-input)
1941         (comint-copy-old-input, comint-backward-matching-input)
1942         (comint-goto-process-mark, comint-set-process-mark):
1943         * calendar/calendar.el (calendar-cursor-to-date): Use it.
1944         * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
1946 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
1948         * dabbrev.el (dabbrev--ignore-case-p): New function.
1949         (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
1950         Use it.
1952         * files.el (automount-dir-prefix): Mark as obsolete.
1954 2012-05-04  Glenn Morris  <rgm@gnu.org>
1956         * patcomp.el, play/bruce.el: Move to obsolete/.
1958 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
1960         Fix minor Y10k bugs.
1961         * arc-mode.el (archive-unixdate):
1962         * autoinsert.el (auto-insert-alist):
1963         * calc/calc-forms.el (math-this-year):
1964         * emacs-lisp/copyright.el (copyright-current-year)
1965         (copyright-update-year, copyright):
1966         * tar-mode.el (tar-clip-time-string):
1967         * time.el (display-time-update):
1968         Don't assume years have 4 digits.
1970 2012-05-04  Chong Yidong  <cyd@gnu.org>
1972         * dos-w32.el (file-name-buffer-file-type-alist)
1973         (direct-print-region-use-command-dot-com):
1974         * ffap.el (ffap-menu-regexp):
1975         * find-file.el (ff-special-constructs):
1976         * follow.el (follow-debug):
1977         * forms.el (forms--debug):
1978         * iswitchb.el (iswitchb-all-frames):
1979         * ido.el (ido-all-frames):
1980         * emacs-lisp/timer.el (timer-max-repeats):
1981         * mail/feedmail.el (feedmail-mail-send-hook)
1982         (feedmail-mail-send-hook-queued):
1983         * mail/footnote.el (footnote-signature-separator):
1984         * mail/mailabbrev.el (mail-alias-separator-string)
1985         (mail-abbrev-mode-regexp):
1986         * mail/rmail.el (rmail-speedbar-match-folder-regexp):
1987         * progmodes/idlwave.el (idlwave-libinfo-file)
1988         (idlwave-default-completion-case-is-down)
1989         (idlwave-library-routines): Convert defvars to defcustoms.
1991         * mail/rmail.el (rmail-decode-mime-charset):
1992         * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
1993         (idlwave-shell-fix-inserted-breaks)
1994         (idlwave-shell-activate-alt-keybindings)
1995         (idlwave-shell-use-breakpoint-glyph):
1996         * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
1998 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2000         * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
2002 2012-05-03  Wilson Snyder  <wsnyder@wsnyder.org>
2004         * progmodes/verilog-mode.el (font-lock-keywords):
2005         Fix mis-highligting auto.  Reported by Craig Barner.
2006         (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
2007         defines from global name space. Reported by Dan Dever.
2008         (verilog-auto-reset, verilog-auto-reset-widths)
2009         (verilog-auto-tieoff): Support using unbased numbers for
2010         AUTORESET and AUTOTIEOFF.
2011         (verilog-submit-bug-report): Update variable list.
2012         (verilog-read-auto-params): Fix AUTOINPUT regexps containing
2013         parenthesis from not matching. Reported by Michael Rytting.
2014         (verilog-auto-template-lint): Fix hash error when linting modules
2015         with no used templates.
2016         (verilog-warn, verilog-warn-error)
2017         (verilog-warn-fatal): When non-interactive report multiple
2018         warnings before exiting.  Suggested by Brad Dobbie.
2019         (verilog-auto-template-lint, verilog-auto-template-warn-unused)
2020         (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
2021         to report unused template errors.  Reported by Brad Dobbie.
2022         (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
2023         nets, bug438. Reported by Vns Blore.
2024         (verilog-auto-inout-module, verilog-auto-reg)
2025         (verilog-read-decls, verilog-read-sub-decls-sig)
2026         (verilog-signals-edit-wire-reg, verilog-signals-with):
2027         Fix passing of Verilog data types in ANSI input/output ports
2028         such as "output logic" into the AUTOs. Special case "wire" and
2029         "reg" for backwards compatibility presuming Verilog 2001.
2030         (verilog-auto-ascii-enum): Add "auto enum" as alias.
2031         (verilog-preprocess): Fix replication of preprocess output.
2032         Reported by Brad Dobbie.
2033         (verilog-auto-inst-interfaced-ports):
2034         Create verilog-auto-inst-interfaced-ports, bug429.
2035         Reported by Julian Gorfajn.
2036         (verilog-after-save-font-hook)
2037         (verilog-before-save-font-hook): New variable.
2038         (verilog-modi-cache-results, verilog-save-font-mod-hooked)
2039         (verilog-save-font-mods): Wrap disabling fontification, reported
2040         by David Rogoff.
2041         (verilog-do-indent, verilog-pretty-declarations-auto)
2042         (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
2043         Reported by Pierre-David Pfister.
2044         (verilog-set-auto-endcomments): Fix endtask auto comments outside
2045         of class declarations, bug292.  Reported by Kevin Heilman.
2046         (verilog-read-decls): Fix 'parameter type' not appearing in
2047         AUTOINSTPARAM, bug340.  Reported by Jonathan Greenlaw.
2048         (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
2049         AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
2050         (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
2051         Reported by David Kravitz.
2053 2012-05-03  Michael McNamara  <mac@mail.brushroad.com>
2055         * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
2056         assignment with tests in ifs and for loops.
2057         (verilog-extended-complete-re, verilog-complete-reg): Change so
2058         that DPI inport functions don't look like fuction declarations.
2059         (verilog-pretty-expr): Don't line up assignment
2060         operations to the test and increment in if and for loops
2061         (verilog-extended-complete-re, verilog-complete-reg): Change so
2062         that DPI inport functions don't look like fuction declarations
2064 2012-05-03  Kenichi Handa  <handa@m17n.org>
2066         * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
2067         decoding, and show a warning message without signaling an error
2068         (Bug#11282).
2070 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2072         * emacs-lisp/bytecomp.el
2073         (byte-compile-file-form-custom-declare-variable): Compile all elements,
2074         since cconv.el might have introduced :fun-body, internal-make-closure,
2075         and friends for bytecomp to handle (bug#11391).
2076         * custom.el (defcustom): Avoid ((λ ..) ..).
2078 2012-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2080         * subr.el (read-passwd): Better clean after ourselves (bug#11392).
2082 2012-05-02  Juanma Barranquero  <lekktu@gmail.com>
2084         * notifications.el (dbus-debug):
2085         * term/linux.el (gpm-mouse-enable):
2086         * term/screen.el (xterm-register-default-colors): Declare.
2088 2012-05-02  Chong Yidong  <cyd@gnu.org>
2090         * cus-start.el (gc-cons-percentage, exec-suffixes)
2091         (dos-display-scancodes, dos-hyper-key, dos-super-key)
2092         (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
2093         (make-cursor-line-fully-visible, void-text-area-pointer)
2094         (font-list-limit): Add customization data.
2096         * allout.el (allout-exposure-change-functions)
2097         (allout-structure-added-functions)
2098         (allout-structure-deleted-functions)
2099         (allout-structure-shifted-functions): Rename abnormal hooks from
2100         *-hook, and convert to defcustoms.
2101         (allout-after-copy-or-kill-hook, allout-post-undo-hook):
2102         Convert to defcustoms.
2103         (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
2105         * allout-widgets.el: Hook callers changed.
2107 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
2109         * mail/rmail.el (rmail-yank-current-message): Use the encoding of
2110         the yanked message in preference to the default value of
2111         buffer-file-coding-system.
2113 2012-05-02  Martin Rudalics  <rudalics@gmx.at>
2115         * window.el (display-buffer--action-function-custom-type):
2116         Fix entry.
2118 2012-05-02  Alan Mackenzie  <acm@muc.de>
2120         * progmodes/cc-defs.el (c-version): Update to 5.32.3.
2122 2012-05-01  Glenn Morris  <rgm@gnu.org>
2124         * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
2126         * eshell/esh-cmd.el (eshell-debug-command): Doc fix.  Add :set.
2128         * cus-edit.el (custom-variable-documentation): Simplify with format.
2130 2012-05-01  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
2131             Stefan Monnier  <monnier@iro.umontreal.ca>
2133         * simple.el (suggest-key-bindings, execute-extended-command):
2134         Move from keyboard.c.
2136 2012-05-01  Chong Yidong  <cyd@gnu.org>
2138         * follow.el: Eliminate advice.
2139         (set-process-filter, process-filter, sit-for): Advice deleted.
2140         (follow-mode-off-hook): Obsolete hook removed.
2141         (follow-avoid-tail-recenter-p, follow-process-filter-alist):
2142         Vars deleted.
2143         (follow-auto): Use a :set function.
2144         (follow-mode): Rewritten.  Don't advise process filters.
2145         (follow-switch-to-current-buffer-all, follow-scroll-up)
2146         (follow-scroll-down): Assume follow-mode is bound.
2147         (follow-comint-scroll-to-bottom)
2148         (follow-align-compilation-windows): New functions.
2149         (follow--window-sorter): New function.
2150         (follow-all-followers): Use it to explicitly sort windows by their
2151         positions; don't make assumptions about next-window order.
2152         (follow-windows-start-end, follow-delete-other-windows-and-split)
2153         (follow-calc-win-start): Doc fix.
2154         (follow-windows-aligned-p, follow-select-if-visible): Don't call
2155         vertical-motion unnecessarily.
2156         (follow-adjust-window): New function.
2157         (follow-post-command-hook): Use it.
2158         (follow-call-set-process-filter, follow-call-process-filter)
2159         (follow-intercept-process-output, follow-tidy-process-filter-alist)
2160         (follow-stop-intercept-process-output, follow-generic-filter):
2161         Functions deleted.
2162         (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
2163         (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
2164         New functions, replacing advice on scroll-bar-* commands.
2165         (follow-mwheel-scroll): New function (Bug#4112).
2167         * comint.el (comint-adjust-point): New function.
2168         (comint-postoutput-scroll-to-bottom): Use it.
2169         Call follow-comint-scroll-to-bottom for Follow mode buffers.
2171 2012-05-01  Glenn Morris  <rgm@gnu.org>
2173         * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
2174         * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
2175         * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
2176         * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
2177         * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
2178         Remove no-byte-compile setting.
2180 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2182         * minibuffer.el (completion-table-with-quoting): Fix compatibility
2183         all-completions code to not return a number in the last cdr.
2185 2012-04-30  Leo Liu  <sdl.web@gmail.com>
2187         * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
2188         read-only error.
2190 2012-04-29  Chong Yidong  <cyd@gnu.org>
2192         * follow.el (follow-calc-win-end): Rewrite to handle partial
2193         screen lines correctly (Bug#8390).
2194         (follow-avoid-tail-recenter): Minor cleanup.
2196 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2198         Avoid the obsolete `assoc' package.
2199         * speedbar.el (speedbar-refresh): Avoid adelete.
2200         (speedbar-file-lists): Simplify and avoid aput.
2201         * man.el (Man--sections, Man--refpages): New vars, replacing
2202         Man-sections-alist and Man-refpages-alist.
2203         (Man-build-section-alist, Man-build-references-alist):
2204         Use them; avoid aput.
2205         (Man--last-section, Man--last-refpage): New vars.
2206         (Man-follow-manual-reference): Use them.
2207         Use the `default' arg of completing-read.
2208         (Man-goto-section): Idem.  Move prompt to the `interactive' spec.
2210 2012-04-27  Chong Yidong  <cyd@gnu.org>
2212         * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
2214         * startup.el (x-apply-session-resources): New function.
2216         * term/ns-win.el (ns-initialize-window-system):
2217         * term/w32-win.el (w32-initialize-window-system):
2218         * term/x-win.el (x-initialize-window-system): Use it to properly
2219         set menu-bar-mode and other vars from X resources, even if the
2220         initial frame is not a window-system frame (Bug#2299).
2222         * subr.el (read-key): Avoid running filter function when setting
2223         up temporary tool bar entries (Bug#9922).
2225 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
2227         * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
2228         (Bug#11344)
2230 2012-04-27  Chong Yidong  <cyd@gnu.org>
2232         * select.el (xselect--encode-string): New function, split from
2233         xselect-convert-to-string.
2234         (xselect-convert-to-string): Use it.
2235         (xselect-convert-to-filename, xselect-convert-to-os)
2236         (xselect-convert-to-host, xselect-convert-to-user): Ensure that
2237         returned strings are properly encoded (Bug#11315).
2239 2012-04-27  Chong Yidong  <cyd@gnu.org>
2241         * simple.el (delete-active-region): Move to killing custom group.
2243 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
2245         * progmodes/which-func.el (which-func-current): Quote %
2246         characters for mode-line processing.
2248 2012-04-27  Chong Yidong  <cyd@gnu.org>
2250         * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
2251         reaching eob (Bug#11286).
2253 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
2255         * progmodes/gdb-mi.el (gdb-control-level): New variable.
2256         (gdb): Make it buffer-local and init to zero.
2257         (gdb-control-commands-regexp): New variable.
2258         (gdb-send): Don't wrap in "-interpreter-exec console" if
2259         gdb-control-level is positive.  Increment gdb-control-level
2260         whenever the command matches gdb-control-commands-regexp, and
2261         decrement it each time the command is "end".  (Bug#11279)
2263 2012-04-27  Martin Rudalics  <rudalics@gmx.at>
2265         * window.el (adjust-window-trailing-edge, enlarge-window)
2266         (shrink-window, window-resize):
2267         * mouse.el (mouse-drag-line): Fix resizing of minibuffer
2268         windows (Bug#11276).
2270 2012-04-27  Chong Yidong  <cyd@gnu.org>
2272         * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
2273         fix "missing prefix" warning.  All callers changed.
2275 2012-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2277         * emacs-lisp/assoc.el: Move to obsolete/.
2279 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2281         * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
2283         * term/ns-win.el (ns-define-service):
2284         * progmodes/pascal.el (pascal-goto-defun):
2285         * progmodes/js.el (js--read-tab):
2286         * progmodes/etags.el (tags-lazy-completion-table):
2287         * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
2288         * emacs-lisp/ewoc.el (ewoc--wrap):
2289         * emacs-lisp/assoc.el (aput, adelete, amake):
2290         * doc-view.el (doc-view-convert-current-doc):
2291         * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
2293 2012-04-26  Chong Yidong  <cyd@gnu.org>
2295         * image.el (image-type-from-buffer): Only return supported image
2296         type (Bug#9045).
2298         * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
2299         value, for symmetry with diff-end-of-hunk.
2300         (diff-split-hunk, diff-find-source-location)
2301         (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
2302         (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
2303         (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
2304         compute the relevant hunk or file properly (Bug#6005).
2305         (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
2307 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2309         * vc/vc-mtn.el:
2310         * vc/vc-hg.el:
2311         * vc/vc-git.el:
2312         * vc/vc-dir.el:
2313         * vc/vc-cvs.el:
2314         * vc/vc-bzr.el:
2315         * vc/vc-arch.el:
2316         * vc/vc.el: Replace lexical-let by lexical-binding.
2317         * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
2318         * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
2319         * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
2321 2012-04-26  Chong Yidong  <cyd@gnu.org>
2323         * vc/diff-mode.el (diff-undo): New command (Bug#5302).
2324         (diff-mode-shared-map): Bind it to / and [remap undo].
2326         * vc/ediff-wind.el (ediff-setup-windows-default): New function.
2327         (ediff-window-setup-function): Use it as the default, to set up
2328         windows based on whether the current frame is graphical (Bug#2138).
2329         (ediff-choose-window-setup-function-automatically): Make obsolete.
2331         * vc/ediff-init.el: Always define ediff-pixel-width/height.
2333 2012-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2335         * ffap.el: Remove old code for obsolete package.
2336         (ffap-complete-as-file-p): Remove.
2338         Use completion-table-with-quoting for comint and pcomplete.
2339         * comint.el (comint--unquote&requote-argument)
2340         (comint--unquote-argument, comint--requote-argument): New functions.
2341         (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
2342         (comint-quote-filename): Use regexp-opt-charset.
2343         (comint--common-suffix, comint--common-quoted-suffix)
2344         (comint--table-subvert): Remove.
2345         (comint-unquote-function, comint-requote-function): New vars.
2346         (comint--complete-file-name-data): Use them with
2347         completion-table-with-quoting.
2348         * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
2349         * pcomplete.el (pcomplete-arg-quote-list)
2350         (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
2351         (pcomplete-unquote-argument-function): Default to non-nil.
2352         (pcomplete-unquote-argument): Simplify.
2353         (pcomplete--common-quoted-suffix): Remove.
2354         (pcomplete-requote-argument-function): New var.
2355         (pcomplete--common-suffix): New function.
2356         (pcomplete-completions-at-point): Use completion-table-with-quoting
2357         and completion-table-subvert.
2359         * minibuffer.el: Use completion-table-with-quoting for read-file-name.
2360         (minibuffer--double-dollars): Preserve properties.
2361         (completion--sifn-requote): New function.
2362         (completion--file-name-table): Rewrite using it and c-t-with-quoting.
2364         * minibuffer.el: Add support for completion of quoted/escaped data.
2365         (completion-table-with-quoting, completion-table-subvert): New funs.
2366         (completion--twq-try, completion--twq-all): New functions.
2367         (completion--nth-completion): New function.
2368         (completion-try-completion, completion-all-completions): Use it.
2370 2012-04-25  Leo Liu  <sdl.web@gmail.com>
2372         * progmodes/python.el (python-pdbtrack-get-source-buffer):
2373         Use compilation-message if available to find real filename.
2375 2012-04-25  Chong Yidong  <cyd@gnu.org>
2377         * vc/diff-mode.el (diff-setup-whitespace): New function.
2378         (diff-mode): Use it.
2380         * vc/diff.el (diff-sentinel):
2381         * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
2382         Whitespace mode variables based on diff style (Bug#8612).
2384 2012-04-25  Leo Liu  <sdl.web@gmail.com>
2386         * progmodes/python.el (python-send-region): Add suffix .py to the
2387         temp file.
2389         * files.el (auto-mode-alist): Use javascript-mode instead.
2391 2012-04-25  Alex Harsanyi  <AlexHarsanyi@gmail.com>
2393         Sync with soap-client repository.  Support SOAP simpleType (Bug#10331).
2395         * soap-client.el (soap-resolve-references-for-sequence-type)
2396         (soap-resolve-references-for-array-type): Hack to prevent self
2397         references, see Bug#9.
2398         (soap-parse-envelope): Report the contents of the 'detail' node
2399         when receiving a fault reply.
2400         (soap-parse-envelope): Report the contents of the entire 'detail' node.
2402         * soap-inspect.el (soap-sample-value-for-simple-type)
2403         (soap-inspect-simple-type): New function.
2405         * soap-client.el (soap-simple-type): New struct.
2406         (soap-default-xsd-types, soap-default-soapenc-types)
2407         (soap-decode-basic-type, soap-encode-basic-type):
2408         support unsignedInt and double basic types.
2409         (soap-resolve-references-for-simple-type)
2410         (soap-parse-simple-type, soap-encode-simple-type): New function.
2411         (soap-parse-schema): Parse xsd:simpleType declarations.
2413         * soap-client.el (soap-default-xsd-types)
2414         (soap-default-soapenc-types): Add integer, byte and anyURI types.
2415         (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
2416         the local name of "soapenc:Array".
2417         (soap-decode-basic-type, soap-encode-basic-type): Support encoding
2418         decoding integer, byte and anyURI xsd types.
2420 2012-04-25  Chong Yidong  <cyd@gnu.org>
2422         * cus-edit.el (custom-buffer-create-internal): Update header text.
2424 2012-04-25  Eli Zaretskii  <eliz@gnu.org>
2426         * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
2427         settings on 'system-type', not on 'window-system'.  On MS-Windows,
2428         set interactive-mode on in GDB.
2430 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2432         * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
2433         (ruby-syntax-propertize-regexp): Remove.
2434         (ruby-syntax-propertize-function): Split regexp into chunks.
2435         Match following code directly.
2437 2012-04-24  Dmitry Gutov  <dgutov@yandex.ru>
2439         * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
2440         (ruby-syntax-propertize-regexp): New function.
2441         (ruby-syntax-propertize-function): Use it to handle regexp not preceded
2442         by a special keyword.
2444         * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
2445         (ruby-syntax-general-delimiters-goto-beg)
2446         (ruby-syntax-propertize-general-delimiters): New functions.
2447         (ruby-syntax-propertize-function): Use them to handle GDL.
2448         (ruby-font-lock-keywords): Move old handling of GDL...
2449         (ruby-font-lock-syntactic-keywords): .. to here.
2450         (ruby-calculate-indent): Adjust indentation for GDL.
2452 2012-04-24  Michael Albinus  <michael.albinus@gmx.de>
2454         * notifications.el (top): Remove unneeded declarations.
2455         (notifications-specification-version): Change to "1.2".
2456         (notifications-interface, notifications-notify-method)
2457         (notifications-close-notification-method): Fix docstring.
2458         (notifications-get-capabilities-method): New defconst.
2459         (notifications-notify): Add :action-items, :resident and
2460         :transient hints.  Change "image_data" to "image-data" and
2461         "image_path" to "image-path".
2462         (notifications-get-capabilities): New defun.
2464 2012-04-24  Leo Liu  <sdl.web@gmail.com>
2466         * progmodes/python.el: Move hideshow setup to the end.
2468 2012-04-24  Martin Rudalics  <rudalics@gmx.at>
2470         * window.el (handle-select-window): Clear echo area since this is
2471         no more done by read_char (Bug#11304).
2473 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2475         * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
2476         and `/ M' to filter-derived-mode.
2477         * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
2478         (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
2479         (ibuffer-mark-by-mode): Use default rather than initial-input.
2480         (ibuffer-filter-by-derived-mode): Autoload and require-match.
2482 2012-04-24  Ivan Andrus  <darthandrus@gmail.com>  (tiny change)
2484         * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
2485         (ibuffer-filter-by-derived-mode): New filter.
2486         * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
2488 2012-04-23  Andreas Politz  <politza@fh-trier.de>
2490         * subr.el (accept-change-group): Fix arg usage (Bug#6095).
2492 2012-04-23  Chong Yidong  <cyd@gnu.org>
2494         * cus-edit.el (customize-apropos, customize-apropos-options):
2495         Disable matching of non-option variables (Bug#11176).
2496         (customize-option, customize-option-other-window)
2497         (customize-changed-options): Doc fix.
2498         (customize-apropos-options, customize-apropos-faces)
2499         (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
2501         * apropos.el (apropos-read-pattern): Make prompt less cryptic.
2502         Fix word list splitting (Bug#11132).
2503         (apropos-symbol, apropos-keybinding, apropos-label)
2504         (apropos-property, apropos-function-button)
2505         (apropos-variable-button, apropos-misc-button): New faces.
2506         (apropos-symbol-face, apropos-keybinding-face)
2507         (apropos-label-face, apropos-property-face, apropos-match-face):
2508         Variables removed (Bug#8396).
2509         (apropos-library-button, apropos-format-plist, apropos-print)
2510         (apropos-print-doc, apropos-describe-plist): Callers changed.
2512 2012-04-23  Michael Albinus  <michael.albinus@gmx.de>
2514         * net/xesam.el (xesam-mode-map): Use let-bound map in
2515         initialization.  (Bug#11292)
2517 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
2519         Preserve ispell session localwords when switching back to
2520         original buffer.
2522         * ispell.el (ispell-buffer-session-localwords): New buffer-local
2523         variable to hold buffer session localwords.
2524         (ispell-kill-ispell): add option 'clear to delete session
2525         localwords.
2526         (ispell-command-loop, ispell-change-dictionary)
2527         (ispell-buffer-local-words): Preserve session localwords when
2528         needed.
2530         * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
2531         Preserve session localwords when needed.
2533 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
2535         * ispell.el (ispell-insert-word) Remove unneeded function using
2536         obsolete `translation-table-for-input'.
2537         (ispell-word, ispell-process-line, ispell-complete-word):
2538         Use plain `insert' instead of removed `ispell-insert-word'.
2540 2012-04-22  Chong Yidong  <cyd@gnu.org>
2542         * cus-edit.el (custom-variable-menu)
2543         (custom-variable-reset-saved, custom-face-menu)
2544         (custom-face-reset-saved): If there is no saved value, make the
2545         "reset-saved" operation bring back the default (Bug#9509).
2546         (custom-face-state): Properly detect themed faces.
2548         * faces.el (face-spec-set): Stop supporting deprecated form of
2549         third arg.
2551 2012-04-22  Michael Albinus  <michael.albinus@gmx.de>
2553         Move functions from C to Lisp.  Make non-blocking method calls
2554         the default.  Implement further D-Bus standard interfaces.
2556         * net/dbus.el (dbus-message-internal): Declare function.
2557         Remove unneeded function declarations.
2558         (defvar dbus-message-type-invalid, dbus-message-type-method-call)
2559         (dbus-message-type-method-return, dbus-message-type-error)
2560         (dbus-message-type-signal): Declare variables.  Remove local
2561         definitions.
2562         (dbus-interface-dbus, dbus-interface-peer)
2563         (dbus-interface-introspectable, dbus-interface-properties)
2564         (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
2565         Adapt docstring.
2566         (dbus-interface-objectmanager): New defconst.
2567         (dbus-call-method, dbus-call-method-asynchronously)
2568         (dbus-send-signal, dbus-method-return-internal)
2569         (dbus-method-error-internal, dbus-register-service)
2570         (dbus-register-signal, dbus-register-method): New defuns, moved
2571         from dbusbind.c
2572         (dbus-call-method-handler, dbus-setenv)
2573         (dbus-get-all-managed-objects, dbus-managed-objects-handler):
2574         New defuns.
2575         (dbus-call-method-non-blocking): Make it an obsolete function.
2576         (dbus-unregister-object, dbus-unregister-service)
2577         (dbus-handle-event, dbus-register-property)
2578         (dbus-property-handler): Obey the new structure of
2579         `bus-registered-objects'.
2580         (dbus-introspect): Use `dbus-call-method'.  Use a timeout.
2581         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
2582         Use `dbus-call-method'.
2584 2012-04-22  Chong Yidong  <cyd@gnu.org>
2586         * cus-edit.el (custom-commands, custom-reset-menu)
2587         (Custom-reset-standard): Tweak labels.
2588         (custom-reset-button-menu): Change default to t.
2589         (custom-buffer-create-internal): For the custom-reset-button-menu
2590         case, put the revert button first.
2591         (custom-group-subtitle): New face.
2592         (custom-group-value-create): Align docstring to a specific column.
2594         * wid-edit.el (widget-documentation-link-add): Don't handle
2595         indentation in this function.
2596         (widget-documentation-string-indent-to): New function.
2597         (widget-documentation-string-value-create): Use it.
2599         * autorevert.el (auto-revert):
2600         * epg-config.el (epg):
2601         * ibuffer.el (ibuffer):
2602         * mpc.el (mpc):
2603         * ses.el (ses):
2604         * eshell/eshell.el (eshell):
2605         * net/ange-ftp.el (ange-ftp):
2606         * progmodes/ebnf2ps.el (postscript):
2607         * progmodes/flymake.el (flymake):
2608         * progmodes/prolog.el (prolog):
2609         * progmodes/verilog-mode.el (verilog-mode):
2610         * progmodes/which-func.el (which-func):
2611         * term/xterm.el (xterm):
2612         * textmodes/picture.el (picture):
2613         * textmodes/tildify.el (tildify):
2614         * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
2615         customization buffers.
2617 2012-04-22  Alan Mackenzie  <acm@muc.de>
2619         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
2620         Adding a ) can hide the resulting (..) from searches.  Fix it.
2621         Bound the backward search to the position of the existing (.
2623 2012-04-21  Juanma Barranquero  <lekktu@gmail.com>
2625         * progmodes/verilog-mode.el (verilog-mode): Check whether
2626         which-func-modes is t before adding verilog-mode.
2627         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
2629 2012-04-21  Leo Liu  <sdl.web@gmail.com>
2631         * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
2633 2012-04-21  Michael Vehrs  <Michael.Burschik@gmx.de>
2635         * woman.el: Add support for "T{ T}" tbl syntax, and fix the
2636         filling of the last column of a table (Bug#5635).
2637         (woman-find-next-control-line): New arg, specifying an additional
2638         regexp component for the control line.
2639         (woman2-roff-buffer): Use it.
2640         (woman-break-table): New function.
2641         (woman2-TS): Use it.
2643 2012-04-21  Chong Yidong  <cyd@gnu.org>
2645         * woman.el (woman-set-buffer-display-table, woman-decode-region)
2646         (woman-horizontal-escapes, woman-negative-vertical-space)
2647         (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
2648         (WoMan-warn-ignored): Use ?\s instead of ?\ .
2650 2012-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2652         * minibuffer.el (completion-file-name-table): Complete user names.
2654 2012-04-20  Leo Liu  <sdl.web@gmail.com>
2656         * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
2657         and pcase-let*.
2659 2012-04-20  Chong Yidong  <cyd@gnu.org>
2661         * server.el (server-execute): Respect initial-buffer-choice if it
2662         is a string and there are no files to open (Bug#2825).
2663         (server-create-window-system-frame, server-create-tty-frame):
2664         Don't switch buffers here.
2665         (server-process-filter): Only try to open a window system frame if
2666         compiled with graphical support (Bug#8314).
2668 2012-04-20  Dan Nicolaescu  <dann@gnu.org>
2670         * battery.el (battery-echo-area-format): Display remaining time
2671         for sysfs backend too (Bug#11269).
2672         (battery-linux-sysfs): Fix conditional for the charge.
2674 2012-04-20  Chong Yidong  <cyd@gnu.org>
2676         * progmodes/gdb-mi.el (gdb): Revert previous change.
2677         (gdb-inferior-io--init-proc): New function.
2678         (gdb-init-1): Use it.
2679         (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
2680         responsible for allocating a new pty and hooking it to gdb when
2681         the old pty gets an EIO due to process exit.
2682         (gdb-delchar-or-quit): New command.  Bind it in gdb-mi buffers.
2683         (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
2684         (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
2686 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
2688         * window.el (window-min-size, window-sizable, window-min-delta)
2689         (window-max-delta, window--resizable, window-resizable)
2690         (window-total-size, window-full-height-p, window-full-width-p)
2691         (window-in-direction, window--resize-mini-window, window-resize)
2692         (window--resize-child-windows-normal)
2693         (window--resize-child-windows, window--resize-siblings)
2694         (window--resize-this-window, adjust-window-trailing-edge)
2695         (enlarge-window, shrink-window): Doc fixes.
2697 2012-04-20  Chong Yidong  <cyd@gnu.org>
2699         * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
2700         New function to call delete-process on the gdb-inferior buffer's pty.
2701         (gdb-reset): Use it, instead of relying on kill-buffer to kill the
2702         pty process (Bug#11273).
2703         (gdb-update): New arg to suppress talking to the gdb process.
2704         (gdb-done-or-error): Use it.
2705         (gdb-stopped-functions): Rename from gdb-stopped-hooks.
2706         (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
2707         sentinel not being called.
2709         * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
2711         * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
2713 2012-04-20  Glenn Morris  <rgm@gnu.org>
2715         * net/network-stream.el (open-network-stream): Doc fix.
2717 2012-04-20  Chong Yidong  <cyd@gnu.org>
2719         * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
2721 2012-04-20  Alan Mackenzie  <acm@muc.de>
2723         Ensure searching for keywords is case sensitive.
2725         * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
2726         (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
2727         (c-defun-name, c-mark-function, c-cpp-define-name)
2728         (c-comment-indent, c-scan-conditionals, c-indent-defun)
2729         (c-context-line-break): Bind case-fold-search to nil.
2731         * progmodes/cc-mode.el (c-font-lock-fontify-region):
2732         Bind case-fold-search to nil.
2734 2012-04-20  Chong Yidong  <cyd@gnu.org>
2736         * mail/sendmail.el (mail-bury): Call return action with the right
2737         Rmail buffer (Bug#11242).
2739         * server.el (server-process-filter): Handle corner case where both
2740         tty and nowait options are present (Bug#11102).
2742 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
2744         * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
2745         (top level): Put into the executable the ident-style '$Id:' tag on
2746         windows-nt as well.
2748 2012-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2750         * electric.el (electric-indent-post-self-insert-function): Check that
2751         electric-indent-mode is enabled in current buffer.
2753 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
2755         * imenu.el (imenu-progress-message): Restore; it is "used" in
2756         erc/erc-imenu.el and net/snmp-mode.el.
2758 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
2760         * avoid.el (mouse-avoidance-mode): Mark unused arg.
2761         (mouse-avoidance-nudge-mouse): Remove unused binding.
2763         * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
2765         * descr-text.el (describe-char):
2766         * progmodes/python.el (python-describe-symbol):
2767         Don't call `toggle-read-only', set `buffer-read-only'.
2769         * imenu.el (imenu-default-goto-function): Mark unused args.
2770         (imenu-progress-message): Remove obsolete macro; all callers changed.
2772         * subr.el (keymap-canonicalize): Remove unused binding.
2773         (read-passwd): Mark unused arg.
2775         * tutorial.el (tutorial--display-changes): Remove unused binding.
2776         (tutorial--save-tutorial-to): Remove unused variable.
2778         * emacs-lisp/package.el (define-package, package-menu-mark-delete)
2779         (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
2780         (package-generate-autoloads, package-menu--generate)
2781         (package-menu--find-upgrades): Remove unused bindings.
2783         * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
2784         (cua-restrict-prefix-rectangle): Doc fixes.  Remove unused bindings.
2785         (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
2786         (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
2787         (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
2788         (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
2789         (cua--rectangle-aux-replace, cua--left-fill-rectangle)
2790         (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
2791         (cua-delete-char-rectangle): Mark unused args.
2792         (cua-align-rectangle): Remove unused binding.
2794         * mail/rmail.el (compilation--message->loc)
2795         (epa--find-coding-system-for-mime-charset): Declare.
2797         * net/dbus.el (dbus-register-service): Declare.
2798         (dbus-name-owner-changed-handler): Remove unused binding.
2800         * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
2801         (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
2802         (nxml-scan-backward-within): Mark unused arg.
2803         (nxml-dynamic-markup-word): Remove unused binding.
2805         * mouse.el (mouse-menu-major-mode-map):
2806         * emacs-lisp/authors.el (authors-scan-change-log)
2807         (authors-add-to-author-list):
2808         * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
2809         * emacs-lisp/smie.el (smie-auto-fill):
2810         * mail/sendmail.el (mail-bury):
2811         * mail/unrmail.el (unrmail):
2812         * net/tls.el (open-tls-stream):
2813         * textmodes/picture.el (picture-mouse-set-point):
2814         Remove unused bindings.
2816 2012-04-19  Michael Albinus  <michael.albinus@gmx.de>
2818         * net/tramp.el (tramp-action-password): Let-bind
2819         `enable-recursive-minibuffers' to t.
2821 2012-04-18  Sam Steingold  <sds@gnu.org>
2823         * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
2824         instead of 'string to accommodate values like [f11].
2825         Always use `vconcat' instead of `concat' on it, like in `gud-def'.
2826         * progmodes/gdb-mi.el: Likewise.
2828 2012-04-18  Leo Liu  <sdl.web@gmail.com>
2830         * abbrev.el (edit-abbrevs): Move point to the abbrev table of
2831         current buffer.
2832         (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
2833         LOCAL is nil.
2835 2012-04-18  Chong Yidong  <cyd@gnu.org>
2837         * simple.el (line-move): Use forward-line if in batch mode
2838         (Bug#11053).
2840 2012-04-18  Christopher Schmidt  <christopher@ch.ristopher.com>
2842         * files.el (after-find-file): Do not try to add a final newline if
2843         the buffer is read-only (Bug#11156).
2845 2012-04-17  Richard Stallman  <rms@gnu.org>
2847         * mail/rmail.el (rmail-start-mail):
2848         Pass (rmail-mail-return...) for the return-action.
2849         Pass (rmail-yank-current-message...) for the yank-action.
2850         (rmail-yank-current-message): New function.
2851         (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
2852         (rmail-reply): Likewise.
2853         (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
2855         * mail/sendmail.el (mail-bury): Choose the first rmail-mode
2856         buffer, not the last.  Reject temp buffers.  Use the rmail-mode
2857         buffer, not newbuf.
2859 2012-04-17  Juanma Barranquero  <lekktu@gmail.com>
2861         * server.el (server-ensure-safe-dir): Simplify.
2863 2012-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2865         * emacs-lisp/smie.el: Provide smarter auto-filling.
2866         (smie-auto-fill): New function.
2867         (smie-setup): Use it.
2869         * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
2871 2012-04-17  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
2873         * newcomment.el (comment-inline-offset): New custom var (bug#11090).
2874         (comment-indent): Use it.
2876 2012-04-17  Vincent Belaïche  <vincentb1@users.sourceforge.net>
2878         * ses.el: The overall change is to add cell renaming, that is
2879         setting fancy names for cell symbols other than name matching
2880         "\\`[A-Z]+[0-9]+\\'" regexp .
2881         (ses-localvars): Add ses--renamed-cell-symb-list.
2882         (ses-create-cell-variable): New defun.
2883         (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
2884         (ses-relocate-formula): Relocate formulas only for cells the
2885         symbols of which are not renamed, i.e. symbols whose names do not
2886         match regexp "\\`[A-Z]+[0-9]+\\'".
2887         (ses-relocate-all): Relocate values only for cells the symbols of
2888         which are not renamed.
2889         (ses-load): Create cells variables as the (ses-cell ...) are read,
2890         in order to check row col consistency with cell symbol name only
2891         for cells that are not renamed.
2892         (ses-replace-name-in-formula): New defun.
2893         (ses-rename-cell): New defun.
2895 2012-04-17  Peter Oliver  <bzr@mavit.org.uk>  (tiny change)
2897         * progmodes/perl-mode.el (perl-indent-parens-as-block):
2898         New option (bug#11118).
2899         (perl-calculate-indent): Respect it.
2901 2012-04-17  Glenn Morris  <rgm@gnu.org>
2903         * dired-aux.el (dired-mark-read-string): Doc fix.
2905 2012-04-17  Dmitry Antipov  <dmantipov@yandex.ru>
2907         * dired-aux.el (dired-mark-read-string): Offer optional completion.
2908         (dired-do-chxxx): Complete chown, chgrp over users, groups.  (Bug#7900)
2910 2012-04-17  Glenn Morris  <rgm@gnu.org>
2912         * mouse.el (mouse-drag-track):
2913         * speedbar.el (speedbar-frame-mode):
2914         Use auto-hscroll-mode rather than the alias automatic-hscrolling.
2916 2012-04-16  Leo Liu  <sdl.web@gmail.com>
2918         * progmodes/python.el: Trivial cleanup.
2920 2012-04-16  Glenn Morris  <rgm@gnu.org>
2922         * vc/vc.el (vc-string-prefix-p):
2923         * vc/pcvs-util.el (cvs-string-prefix-p):
2924         * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
2925         * mpc.el (mpc-string-prefix-p):
2926         Make all of these into obsolete aliases for string-prefix-p.
2927         Update callers.
2928         * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
2930         * textmodes/two-column.el: Move custom options to the start.
2931         (frame-width): Remove compat definition.
2932         (2C-associate-buffer, 2C-dissociate):
2933         Use with-current-buffer rather than save-excursion.
2934         (2C-dissociate): Force a mode-line update.
2935         (2C-autoscroll): Use ignore-errors.
2937         * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
2938         Autoload trivia.
2940         * emacs-lisp/cl-extra.el (*random-state*):
2941         Remove unnecessary declaration.
2943         * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
2945         * play/cookie1.el (cookie-snarf):
2946         Give an explicit error if input file cannot be read.
2948         * play/yow.el (yow-file): Use expand-file-name rather than concat.
2950         * progmodes/perl-mode.el (c-macro-expand):
2951         Remove unnecessary autoload (it is in loaddefs.el).
2953         * textmodes/picture.el (picture-desired-column)
2954         (picture-update-desired-column): Convert comments to doc-strings.
2955         (picture-substitute): Remove function.
2956         (picture-mode-map): Initialize in the defvar.
2958         * woman.el: Remove eval-after-load for tar-mode.
2959         * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
2960         (woman-tar-extract-file): Autoload it.
2962         * frame.el (automatic-hscrolling): Make this alias obsolete.
2964 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
2966         * ispell.el (ispell-set-spellchecker-params): Post-process
2967         `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
2968         (ispell-dictionary-base-alist): Revert to original XEmacs
2969         friendly version for default.  [:alpha:] will be added in
2970         `ispell-set-spellchecker-params' if needed
2972 2012-04-16  Chong Yidong  <cyd@gnu.org>
2974         * image.el (imagemagick--extension-regexp): New variable.
2975         (imagemagick-register-types): Use it.
2976         (imagemagick-types-inhibit): Add :set function.  Allow new value
2977         of t to inhibit all types.
2979         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
2980         so we can preload it.
2982         * loadup.el (fboundp): Preload regexp-opt, needed by
2983         imagemagick-register-types.
2985 2012-04-15  Chong Yidong  <cyd@gnu.org>
2987         * frame.el (scrolling): Remove nearly unused customization group.
2989         * scroll-all.el (scroll-all-mode): Move to windows group.
2991 2012-04-15  Chong Yidong  <cyd@gnu.org>
2993         * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
2995 2012-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2997         Avoid the use of ((lambda ...) ...) in lexical-binding code.
2998         * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
3000 2012-04-15  Glenn Morris  <rgm@gnu.org>
3002         * simple.el (process-file-side-effects): Doc fix.
3004 2012-04-15  Glenn Morris  <rgm@gnu.org>
3006         * international/mule-cmds.el (set-language-environment): Doc fix.
3008 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
3010         * server.el (server-auth-key, server-generate-key): Doc fixes.
3011         (server-get-auth-key): Doc fix.  Use `string-match-p'.
3012         (server-start): Reflow docstring.
3014 2012-04-14  Lars Ingebrigtsen  <larsi@gnus.org>
3016         * server.el (server-generate-key): `called-interactively-p'
3017         requires a parameter.
3019 2012-04-14  Michal Nazarewicz  <mina86@mina86.com>
3021         * server.el (server-auth-key): New variable.
3022         (server-generate-key, server-get-auth-key): New function.
3023         (server-start): Use the new variable and functions to allow
3024         setting a permanent server key (bug#9423).
3026 2012-04-14  Leo Liu  <sdl.web@gmail.com>
3028         * vc/diff-mode.el (diff-file-prev/next): Fix typo.
3030 2012-04-14  Paul Eggert  <eggert@cs.ucla.edu>
3032         Spelling fixes.
3033         * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
3034         Emacs uses American spelling.
3036 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
3038         * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
3039         (emacs-lock--exit-locked-buffer): Return the locked buffer.  Doc fix.
3040         (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
3041         (emacs-lock--kill-buffer-query-functions): Run new hook.  (Bug#11017)
3043 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3045         * progmodes/which-func.el (which-func-modes): Change default.
3047 2012-04-14  Kim F. Storm  <storm@cua.dk>
3049         * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
3050         exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
3052 2012-04-14  Chong Yidong  <cyd@gnu.org>
3054         * custom.el (custom-theme-set-variables): Doc fix.
3056 2012-04-14  Glenn Morris  <rgm@gnu.org>
3058         * international/mule.el (set-auto-coding-for-load): Doc fix.
3060 2012-04-14  Alan Mackenzie  <acm@muc.de>
3062         * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
3063         imenu work again for Objective C Mode.  Correct the *-index values,
3064         these having been disturbed by a previous change in 2011-08.
3066         * progmodes/cc-engine.el (c-before-change-check-<>-operators):
3067         Correct two search limits.
3069 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3071         * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
3073 2012-04-14  Andreas Schwab  <schwab@linux-m68k.org>
3075         * international/characters.el: Fix sorting.
3077 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
3079         * international/characters.el: Add more missing Latin case pairs.
3081 2012-04-14  Glenn Morris  <rgm@gnu.org>
3083         * files.el (dir-locals-set-class-variables): Doc fix.
3085 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
3087         * international/characters.el: Add set-case-syntax-pair call for
3088         LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
3089         counterpart.  (Bug#11209)
3091         * simple.el (shell-command-on-region): Doc fix.  (Bug#11208)
3093 2012-04-14  Glenn Morris  <rgm@gnu.org>
3095         * calendar/holidays.el (calendar-check-holidays): Doc fix.
3097 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
3099         * textmodes/ispell.el (ispell-dictionary-base-alist):
3100         Add data for Hebrew.
3102 2012-04-14  Chong Yidong  <cyd@gnu.org>
3104         * net/rcirc.el (rcirc-cmd-quit):
3105         Revert 2012-03-18 change (Bug#11192).
3107 2012-04-14  Glenn Morris  <rgm@gnu.org>
3109         * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
3111 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
3113         * minibuffer.el (completion-in-region-mode-map):
3114         Bind completion-help-at-point to M-? rather than ?.  (Bug#11182)
3116 2012-04-13  Vivek Dasmohapatra  <vivek@etla.org>
3118         * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
3120 2012-04-13  Masatake YAMATO  <yamato@redhat.com>
3122         * minibuffer.el (minibuffer-local-filename-syntax): New variable
3123         to allow `C-M-f' and `C-M-b' to move to the nearest path
3124         separator (bug#9511).
3126 2012-04-13  Lars Ingebrigtsen  <larsi@gnus.org>
3128         * avoid.el: Require cl when compiling.  And also move the
3129         `provide' to the end.
3131 2012-04-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3133         * avoid.el (mouse-avoidance-banish-position): New variable.
3134         (mouse-avoidance-banish-destination): Use it (bug#10165).
3136 2012-04-13  Leo Liu  <sdl.web@gmail.com>
3138         * progmodes/which-func.el (which-func-modes): Add objc-mode.
3140 2012-04-13  Ken Brown  <kbrown@cornell.edu>
3142         * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
3143         this is no longer needed now that cygstart understands file:// URLs.
3144         (browse-url-filename-alist): For the same reason, don't modify
3145         file:// URLs on Cygwin.
3147 2012-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3149         * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
3150         the region on shift if the binding is already shifted (bug#11221).
3152 2012-04-12  Glenn Morris  <rgm@gnu.org>
3154         * mail/mailpost.el: Move to obsolete/.
3156 2012-04-12  Drew Adams  <drew.adams@oracle.com>
3158         * imenu.el (imenu--generic-function): Ignore invisible definitions
3159         (bug#10123).
3161 2012-04-12  Vivek Dasmohapatra  <vivek@etla.org>
3163         * hexl.el (hexl-bits): New variable.
3164         (hexl-options): Mention the variable in the doc string.
3165         (hexl-rulerise, hexl-line-displen): New functions.
3166         (hexl-mode): Mention the new variable.
3167         (hexl-mode, hexl-current-address, hexl-current-address):
3168         Use the displen.
3169         (hexl-ascii-start-column): New function.
3170         (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
3171         (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
3173 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
3175         * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
3176         '("-i" ENCODING), in 2 separate command-line arguments, to specify
3177         the encoding, as expected by hunspell.
3179 2012-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3181         * battery.el (battery--linux-sysfs-regexp): New const.
3182         (battery-status-function): Use it.  Remove yeeloong special case.
3183         (battery-yeeloong-sysfs): Remove.
3184         (battery-echo-area-format): Remove yeeloong special case.
3186 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3188         * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
3189         Reported by Noah Friedman.
3191         * subr.el (read-passwd): Use read-string.
3193 2012-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3195         * vcursor.el (vcursor-move): Increase the priority of the overlay
3196         (bug#9663).
3198 2012-04-11  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
3200         * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
3201         (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
3203 2012-04-11  William Stevenson  <yhvh2000@gmail.com>
3205         * textmodes/artist.el (artist-mode): Convert artist-mode to use
3206         define-minor-mode (bug#10760).
3208 2012-04-11  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
3210         * progmodes/grep.el (rgrep): Tweak the find command line so
3211         that directories matching `grep-find-ignored-files' won't be
3212         pruned (bug#10351).
3214 2012-04-11  Chong Yidong  <cyd@gnu.org>
3216         * startup.el (command-line): Remove support for long-obsolete
3217         variable font-lock-face-attributes.
3219 2012-04-11  Glenn Morris  <rgm@gnu.org>
3221         * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
3223 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3225         * window.el (window--state-get-1): Obey window-point-insertion-type.
3227 2012-04-11  Lennart Borgman  <lennart.borgman@gmail.com>
3229         * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
3230         to previous function when point is on the first character of a
3231         function.  Take care of that in `narrow-to-defun' (bug#6157).
3233 2012-04-11  Glenn Morris  <rgm@gnu.org>
3235         * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
3236         not just file-errors.
3238         * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
3239         (vc-bzr-sha1): Use internal sha1.
3241 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3243         * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
3245 2012-04-10  Sébastien Gross  <seb@chezwam.org>  (tiny change)
3247         * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
3248         that start in the middle of the line (bug#10496).
3250 2012-04-10  Dan Nicolaescu  <dann@gnu.org>
3252         * battery.el (battery-linux-proc-acpi): Only one battery is
3253         discharged at a time, but that seems to confuse battery.el when
3254         computing `rate-type' for the battery not being discharged
3255         (bug#10332).
3257 2012-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3259         * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
3261         * international/quail.el: Use dolist and simplify.
3262         (quail-define-package, quail-update-keyboard-layout)
3263         (quail-define-rules): Use dolist.
3264         (quail-insert-kbd-layout, quail-get-translation): CSE.
3266         * tmm.el: Use dolist, remove left over hook.
3267         (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
3268         Use dolist.
3269         (calendar-load-hook): Don't mess with it.
3271         * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
3272         Use derived-mode-p.  Run the diff asynchronously.
3274 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3276         * obsolete/mouse-sel.el: Add an Obsolete-since header.
3278 2012-04-10  Juanma Barranquero  <lekktu@gmail.com>
3280         * misc.el: Display absolute path of loaded DLLs (bug#10424).
3281         (list-dynamic-libraries--loaded): New function.
3282         (list-dynamic-libraries--refresh): Use it.
3284 2012-04-10  Nathan Weizenbaum  <nweiz@google.com>
3286         * progmodes/python.el (python-fill-paragraph):
3287         Make python-fill-region in a multiline string work when font-lock is
3288         disabled (bug#7018).
3290 2012-04-10  Laimonas VÄ—bra  <laimonas.vebra@gmail.com>  (tiny change)
3292         * language/european.el (cp775): Add oem/legacy (en)coding on
3293         DOS/MS Windows for the Baltic languages.  There are still plenty
3294         of texts written in this encoding/codepage (bug#6519).
3296 2012-04-10  Glenn Morris  <rgm@gnu.org>
3298         * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
3299         Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
3301 2012-04-10  Florian Adamsky  <florian@adamsky.it>  (tiny change)
3303         * recentf.el (recentf-dialog-mode-map): Add two keybindings for
3304         next-line "n" and previous-line "p" in order to make recentf more
3305         consistent with ibuffer, dired or org-mode (bug#9387).
3307 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3309         * image.el (put-image): Return the overlay created instead of the
3310         optional input string (bug#7834).  Note that this may break code
3311         that is (for some reason or other) depending on `put-image'
3312         returning the string.
3314         * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
3316         * simple.el (zap-to-char): Allow zapping using input methods
3317         (bug#1580).
3319         * textmodes/fill.el (fill-region): Leave point and mark where they
3320         were before filling (bug#5399).
3322 2012-04-09  Glenn Morris  <rgm@gnu.org>
3324         * version.el (emacs-bzr-get-version):
3325         Handle lightweight checkouts of local branches.
3327 2012-04-09  Andreas Schwab  <schwab@linux-m68k.org>
3329         * international/characters.el: Recover lost case pairs.  (Bug#11209)
3331 2012-04-09  Chong Yidong  <cyd@gnu.org>
3333         * custom.el (custom-variable-p): Return nil for non-symbol
3334         arguments instead of signaling an error.
3335         (user-variable-p): Obsolete alias for custom-variable-p.
3337         * apropos.el (apropos-variable):
3338         * files-x.el (read-file-local-variable):
3339         * simple.el (set-variable):
3340         * woman.el (woman-mini-help):
3341         * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
3343 2012-04-09  Glenn Morris  <rgm@gnu.org>
3345         * startup.el (normal-top-level): Don't look for leim-list.el
3346         in places where it will not be found.  (Bug#910)
3348         * international/mule-cmds.el (set-default-coding-systems):
3349         * files.el (normal-mode):
3350         Remove guarded calls to ucs-set-table-for-input.  (Bug#9821)
3351         This function was removed with ucs-tables.el in 2008.
3353 2012-04-08  Eli Zaretskii  <eliz@gnu.org>
3355         * textmodes/ispell.el (ispell-check-version): For hunspell, set
3356         ispell-encoding8-command to "-i", without a trailing space.
3357         (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
3358         separate command-line arguments, to specify the encoding, since
3359         that's how hunspell expects it.
3361 2012-04-08  Glenn Morris  <rgm@gnu.org>
3363         * loadup.el: Load bindings before cus-start.
3364         This reduces somewhat the number of "rogue" settings in emacs -Q.
3366 2012-04-07  Glenn Morris  <rgm@gnu.org>
3368         * version.el (emacs-bzr-get-version): New function.
3369         (emacs-bzr-version): New variable.
3370         * loadup.el (emacs-bzr-version): Set it.  (Bug#8054)
3371         * mail/emacsbug.el (report-emacs-bug): Include bzr version.
3373 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
3375         * international/uni-bidi.el, international/uni-category.el:
3376         * international/uni-combining.el, international/uni-decimal.el:
3377         * international/uni-decomposition.el, international/uni-digit.el:
3378         * international/uni-lowercase.el, international/uni-mirrored.el:
3379         * international/uni-name.el, international/uni-numeric.el:
3380         * international/uni-titlecase.el, international/uni-uppercase.el:
3381         Update for Unicode 6.1.
3383 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
3385         * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
3387 2012-04-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3389         * window.el (shrink-window): Mention the `window-min-height'
3390         variable in the doc string.
3392 2012-04-05  Bastien Guerry  <bzg@altern.org>
3394         * color.el (color-lighten-name): Fix typo.
3396 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3398         * server.el (server--on-display-p): New function.
3399         (server--on-display-p): Use it.
3401 2012-04-04  Gabor Vida  <vidagabor@gmail.com>  (tiny change)
3403         * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
3404         (bug#11145).
3406 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3408         * comint.el (comint--common-quoted-suffix): Check string boundary
3409         before comparing (bug#11158).
3410         * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
3412 2012-04-04  Chong Yidong  <cyd@gnu.org>
3414         * minibuffer.el (completion-extra-properties): Doc fix.
3416         * subr.el (delayed-warnings-hook): Doc fix.
3418 2012-04-04  Daiki Ueno  <ueno@unixuser.org>
3420         * epa.el (epa--select-keys): Bind C-c C-c to finish the key
3421         selection (Bug#11159).
3422         (epa-insert-keys): Inform that the default public key will be
3423         exported if no key is selected.
3425 2012-04-04  Richard Stallman  <rms@gnu.org>
3427         * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
3429 2012-04-03  Chong Yidong  <cyd@gnu.org>
3431         * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
3432         mail-insert-file, not its obsolete alias mail-attach-file.
3434 2012-04-03  Michael Albinus  <michael.albinus@gmx.de>
3436         * notifications.el (notifications-notify): Fix docstring.
3438 2012-04-02  Glenn Morris  <rgm@gnu.org>
3440         * emacs-lisp/authors.el (authors-aliases): Another addition.
3442 2012-04-02  Michael Albinus  <michael.albinus@gmx.de>
3444         * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
3445         `tramp-compat-call-process' instead of `tramp-local-call-process'.
3446         Reported by Magnus Henoch <magnus.henoch@gmail.com>.
3448 2012-04-01  Chong Yidong  <cyd@gnu.org>
3450         * files.el (file-in-directory-p): Rename from file-subdir-of-p.
3451         Handle root directory properly.
3452         (copy-directory): Caller changed.
3454         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
3455         * net/tramp.el (tramp-file-name-for-operation): Callers changed.
3457 2012-03-31  Glenn Morris  <rgm@gnu.org>
3459         * term/xterm.el (xterm-extra-capabilities): Doc fix.
3461         * language/indian.el ("Devanagari"): Fix typo.  (Bug#11103)
3463         * calendar/calendar.el (calendar-window-list)
3464         (calendar-hide-window): Restore.  (Bug#11140)
3465         (calendar-exit): Use calendar-window-list, calendar-hide-window again.
3467         * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
3469 2012-03-30  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3471         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
3472         Check if file is a symlink (Bug#10489).
3474         * files.el (copy-directory): Likewise.
3476 2012-03-30  Chong Yidong  <cyd@gnu.org>
3478         * image.el (imagemagick-types-inhibit)
3479         (imagemagick-register-types): Doc fix.
3481 2012-03-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
3483         * ispell.el (ispell-get-extended-character-mode):
3484         Disable extended-char-mode for hunspell.  hunspell does not support it
3485         and treats ~word as ordinary words in pipe mode.
3487 2012-03-30  Glenn Morris  <rgm@gnu.org>
3489         * tutorial.el (help-with-tutorial): Ensure local variables don't
3490         happen to make the buffer read-only.  (Bug#11127)
3492 2012-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3494         * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
3495         (perl-calculate-indent): Return `noindent' in strings.
3497 2012-03-28  Sam Steingold  <sds@gnu.org>
3499         * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
3500         instead of the broken adhockery which does not prevent calendar
3501         buffers from being displayed at random after exit.
3502         (calendar-window-list, calendar-hide-window): Remove the broken
3503         adhockery.
3505 2012-03-28  Glenn Morris  <rgm@gnu.org>
3507         * replace.el (query-replace-map): Doc fix.
3509 2012-03-28  Andreas Schwab  <schwab@linux-m68k.org>
3511         * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
3512         contents.  (Bug#11109)
3514 2012-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3516         * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
3517         (bug#11077).
3518         (avl-tree--check, avl-tree--check-node): New funs.
3520 2012-03-27  Martin Rudalics  <rudalics@gmx.at>
3522         * window.el (switch-to-visible-buffer): New option.
3523         (switch-to-prev-buffer, switch-to-next-buffer):
3524         Observe switch-to-visible-buffer.  Make sure that checking for a window
3525         showing a buffer already is done on the same frame.
3527 2012-03-27  Glenn Morris  <rgm@gnu.org>
3529         * startup.el (mail-host-address): Doc fix.
3531 2012-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3533         * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
3534         than 197 variables.
3536 2012-03-26  Ami Fischman  <ami@fischman.org>
3538         * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
3540 2012-03-26  Glenn Morris  <rgm@gnu.org>
3542         * files.el (save-buffers-kill-emacs): Doc fix.
3544         * startup.el (normal-top-level, command-line, command-line-1):
3545         Give them doc strings.
3547 2012-03-25  Eli Zaretskii  <eliz@gnu.org>
3549         * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
3550         of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
3552 2012-03-25  Chong Yidong  <cyd@gnu.org>
3554         * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
3555         theme if it was previously enabled before (Bug#11031).
3557         * cus-theme.el (custom-theme-write-faces): Retrieve current face
3558         spec with custom-face-get-current-spec if its :shown-value is not
3559         determined yet (Bug#9337).
3560         (customize-create-theme, custom-theme-revert): Doc fixes.
3562         * button.el (button-at): Minor addition to docstring.
3564 2012-03-24  Simon Leinen  <simon.leinen@gmail.com>
3566         * vc/vc.el (vc-merge): Fix a prompt.
3568 2012-03-24  Chong Yidong  <cyd@gnu.org>
3570         * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
3571         point (Bug#9623).
3573         * button.el (button-at): Minor addition to docstring.
3575 2012-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3577         * newcomment.el (comment-choose-indent): No space after BOL.
3579 2012-03-22  Sam Steingold  <sds@gnu.org>
3581         * window.el (switch-to-prev-buffer): Revert last patch because the
3582         bug turned out to be an advertised feature (Elisp manual 28.14).
3584 2012-03-22  Glenn Morris  <rgm@gnu.org>
3586         * vc/vc-bzr.el (vc-bzr-status-switches): New option.  (Bug#6724)
3587         (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
3589 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3591         * net/network-stream.el (network-stream-open-starttls): Make error
3592         message under Windows be less misleading.
3594 2012-03-22  Liang Wang  <netcasper@gmail.com>  (tiny change)
3596         * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
3597         understands (bug#9942).
3599 2012-03-22  Chong Yidong  <cyd@gnu.org>
3601         * simple.el (end-of-visible-line): Handle return value of
3602         next-single-property-change properly (Bug#9371).
3604 2012-03-22  Kenichi Handa  <handa@m17n.org>
3606         * international/quail.el (quail-insert-kbd-layout): Fix previous
3607         change.  To avoid unwanted bidi reordering, use
3608         bidi-string-mark-left-to-right instead of inserting LRO and PDF.
3610 2012-03-21  Dmitry Gutov  <dgutov@yandex.ru>
3612         * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
3613         (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
3614         (ruby-beginning-of-indent): Be more careful with the difference
3615         between word-boundary and symbol boundary.
3616         (ruby-mode-syntax-table): Make : a symbol constituent.
3618 2012-03-21  Andreas Politz  <politza@fh-trier.de>
3620         * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
3622 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3624         * progmodes/etags.el (tags-completion-at-point-function):
3625         Improve last fix.
3627         * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
3629 2012-03-21  Sam Steingold  <sds@gnu.org>
3631         * progmodes/etags.el (tags-completion-at-point-function):
3632         Avoid the error when point is inside the pattern.
3634 2012-03-21  John Yates  <john@yates-sheets.org>  (tiny change)
3636         * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
3637         line (Bug#10855).
3639 2012-03-21  Drew Adams  <drew.adams@oracle.com>
3641         * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
3643 2012-03-21  Anmol Khirbat  <anmol@khirbat.net>  (tiny change)
3645         * ido.el (ido-set-current-directory, ido-read-internal)
3646         (ido-choose-completion-string, ido-completion-help): Handle nil
3647         value of ido-completion-buffer (Bug#11008).
3649 2012-03-21  Sam Steingold  <sds@gnu.org>
3651         * window.el (switch-to-prev-buffer): Do not switch to a visible
3652         window previous buffer, just like with the frame previous buffers.
3654 2012-03-21  Chong Yidong  <cyd@gnu.org>
3656         * faces.el (make-face, make-empty-face, copy-face):
3657         * face-remap.el (face-remap-add-relative, face-remap-set-base):
3658         Doc fixes.
3660 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3662         * wid-edit.el (widget-complete-field): Remove (bug#11051).
3663         (widget-complete): Remove broken use of it.
3665 2012-03-20  Chong Yidong  <cyd@gnu.org>
3667         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
3668         Use string-width and truncate-string-width to handle arbitrary
3669         characters.
3671 2012-03-20  Tassilo Horn  <tassilo@member.fsf.org>
3673         * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
3674         to draw rectangles, not squares.  (Regression introduced by revno
3675         2011-03-02T03:48:01Z!cyd@stupidchicken.com)
3677 2012-03-18  Chong Yidong  <cyd@gnu.org>
3679         * faces.el (face-spec-reset-face): Don't call display-graphic-p if
3680         it is not yet defined (for temacs).
3682 2012-03-18  Leo Liu  <sdl.web@gmail.com>
3684         * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
3686 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
3688         * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
3689         (ispell-choices-win-default-height, ispell-silently-savep)
3690         (ispell-dictionary-alist, ispell-encoding8-command)
3691         (ispell-check-version, ispell-aspell-find-dictionary)
3692         (ispell-valid-dictionary-list, ispell-words-keyword)
3693         (ispell-get-word, ispell-internal-change-dictionary)
3694         (ispell-region, ispell-skip-region-list)
3695         (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
3696         (ispell-process-line, ispell-minor-mode, ispell-minor-check)
3697         (ispell-message-text-end, ispell-message)
3698         (ispell-buffer-local-parsing): Doc fix.
3700 2012-03-13  Jambunathan K  <kjambunathan@gmail.com>
3702         * htmlfontify.el: Add support for code block fontification for ODT
3703         export (Bug #9914).
3704         (hfy-optimisations): Define new option
3705         `body-text-only'
3706         (hfy-fontify-buffer): Honor above setting.
3707         (hfy-begin-span, hfy-end-span): New routines factored out form
3708         `hfy-fontify-buffer'.
3709         (hfy-begin-span-handler, hfy-end-span-handler): New variables
3710         that permit insertion of custom tags.
3711         (hfy-fontify-buffer): Use above handlers.
3712         (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
3713         (hfy-face-to-css): Re-defined to be a variable.
3714         (hfy-compile-stylesheet): Modify.  Allow stylesheet to be built
3715         over multiple runs.  This is made possible by having the caller let
3716         bind a special variable `hfy-user-sheet-assoc'.
3717         (htmlfontify-string): New defun.
3718         (hfy-compile-face-map): Make sure that the last char in the
3719         buffer is correctly fontified.
3720         (hfy-face-resolve-face): Whitespace only change.
3722 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
3724         * textmodes/ispell.el (ispell-get-decoded-string): Make the error
3725         message more clear.
3727 2012-03-16  Leo Liu  <sdl.web@gmail.com>
3729         * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
3731 2012-03-16  Alan Mackenzie  <acm@muc.de>
3733         Further optimise the handling of large macros.
3735         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
3736         limit to a call of `c-literal-limits'.
3737         (c-determine-+ve-limit): New function.
3738         (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
3739         (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
3740         In CASE 5B, restrict a search limit to 500.
3741         (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
3743         * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
3744         Restrict macro bounds to +-500 from after-change's BEG END.
3746 2012-03-16  Leo Liu  <sdl.web@gmail.com>
3748         * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
3750 2012-03-16  Aaron S. Hawley  <Aaron.S.Hawley@gmail.com>
3752         * tar-mode.el (tar-mode): Fix saving by conditionally undoing
3753         `special-mode' setting of `buffer-read-only'.  (Bug#11010)
3755 2012-03-16  Glenn Morris  <rgm@gnu.org>
3757         * view.el (view-buffer, view-buffer-other-window)
3758         (view-buffer-other-frame): Doc fixes re special mode-class.
3760         * subr.el (eval-after-load): If named feature is provided not from
3761         a file, run after-load forms.  (Bug#10946)
3763         * calendar/calendar.el (calendar-insert-at-column):
3764         Handle non-unit-width characters a bit better.  (Bug#10978)
3766 2012-03-15  Chong Yidong  <cyd@gnu.org>
3768         * emacs-lisp/ring.el (ring-extend): New function.
3769         (ring-insert+extend): Extend the ring correctly (Bug#11019).
3771         * comint.el (comint-read-input-ring)
3772         (comint-add-to-input-history): Grow comint-input-ring lazily.
3774 2012-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3776         * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
3777         Fix up parsing of multiline twoarg non-paired elements (bug#11014).
3779         * imenu.el: Fix multiple inheritance breakage (bug#9199).
3780         (imenu-add-to-menubar): Don't add a redundant index.
3781         (imenu-update-menubar): Handle a dynamically composed keymap.
3783 2012-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
3785         * mail/sendmail.el (mail-encode-header):
3786         Bind rfc2047-encode-encoded-words to nil.
3788 2012-03-13  Glenn Morris  <rgm@gnu.org>
3790         * calendar/calendar.el (calendar-string-spread):
3791         Handle non-unit-width characters a bit better.  (Bug#10978)
3793 2012-03-13  Leo Liu  <sdl.web@gmail.com>
3795         * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
3796         directory and file as argument (Bug#10822).
3798 2012-03-13  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
3800         * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
3801         For dynamically generated code, follow $PC.
3802         (gdb-disassembly-handler-custom): Handle no function name case.
3804 2012-03-13  Tim Landscheidt  <tim@tim-landscheidt.de>  (tiny change)
3806         * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
3807         * emulation/ws-mode.el (ws-query-replace):
3808         * sort.el (sort-regexp-fields):
3809         Fix missing trailing whitespace in interactive prompts.  (Bug#11002)
3811 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3813         * dabbrev.el: Fix cycle completion order (bug#10963).
3814         (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
3815         (dabbrev-completion): Don't use an obarray; provide
3816         a cycle-sort-function.
3818 2012-03-12  Leo Liu  <sdl.web@gmail.com>
3820         * simple.el (kill-new): Use equal-including-properties for comparison.
3821         (kill-do-not-save-duplicates): Doc fix.
3823 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3825         * dabbrev.el: Fix cycle completion (bug#10963).
3826         Use lexical binding and wrap to 80 columns.
3827         (dabbrev-completion): Delay computing the list of completions.
3829 2012-03-12  Kenichi Handa  <handa@m17n.org>
3831         * international/quail.el (quail-insert-kbd-layout): Surround each
3832         row by LRO and PDF instead of inserting many LRMs.  Pad the left
3833         and right of each non-spacing marks.  Insert invisible space
3834         between lower and upper characters to prevent composition.
3836 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3838         * minibuffer.el (minibuffer-complete): Don't get confused when the
3839         function is run twice via different commands (bug#10958).
3840         (complete-with-action): Fix docstring.
3842 2012-03-12  Chong Yidong  <cyd@gnu.org>
3844         * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
3845         (nxml-completion-at-point-function): New function.
3846         (nxml-mode): Use it.
3847         (nxml-bind-meta-tab-to-complete-flag): Default to t.
3849         * emacs-lisp/package.el (package-unpack, package-unpack-single):
3850         Load generated autoloads file before byte compiling (Bug#10970).
3851         (package--make-autoloads-and-compile): New helper fun.
3853 2012-03-12  Christopher Schmidt  <christopher@ch.ristopher.com>
3855         * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
3857 2012-03-11  Michael Albinus  <michael.albinus@gmx.de>
3859         * autorevert.el (auto-revert-handler): Ensure, that
3860         file-readable-p is applied only for local files or in
3861         auto-revert-tail-mode.
3863 2012-03-11  Andreas Schwab  <schwab@linux-m68k.org>
3865         * server.el (server-eval-at): Handle non-tcp connections.
3866         Decode result string.
3868         * server.el (server-msg-size): New constant.
3869         (server-reply-print): New function.
3870         (server-eval-and-print): Use it.
3871         (server-eval-at): Use server-quote-arg and server-unquote-arg.
3872         Handle -print-nonl.
3874 2012-03-11  Christopher Schmidt  <christopher@ch.ristopher.com>
3876         * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
3877         (Bug#10987).
3879 2012-03-11  Chong Yidong  <cyd@gnu.org>
3881         * simple.el (goto-line): Doc fix (Bug#9938).
3883         * subr.el (save-window-excursion): Doc fix (Bug#9979).
3885         * dabbrev.el (dabbrev--find-expansion): Update progress reporter
3886         when finished (Bug#10963).
3888 2012-03-11  Martin Rudalics  <rudalics@gmx.at>
3890         * window.el (split-window-below): Fix bug in case where
3891         split-window-keep-point is nil (Bug#10971).
3893 2012-03-11  Juri Linkov  <juri@jurta.org>
3895         * replace.el (replace-highlight): Set isearch-word to nil
3896         unconditionally.  (Bug#10887)
3898 2012-03-10  Eli Zaretskii  <eliz@gnu.org>
3900         * net/mairix.el (mairix-replace-invalid-chars): Rename from
3901         mairix-replace-illegal-chars; all callers changed.  Don't remove
3902         ^, ~, and = characters: they are meaningful in mairix search specs.
3903         (mairix-widget-create-query): Add usage information about mairix
3904         search forms: negating words, searching for substrings, etc.
3906 2012-03-10  Jae-hyeon Park  <jae-hyeon.park@desy.de>  (tiny change)
3908         * international/fontset.el (font-encoding-alist): Add an entry for
3909         ksx1001 (Bug#5667).
3911 2012-03-10  Richard Stallman  <rms@gnu.org>
3913         * mail/sendmail.el (mail-encode-header):
3914         Set rfc2047-encode-encoded-words.
3916         * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
3918         * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
3919         view buffer means not swapped.
3920         (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
3921         (rmail-write-region-annotate): Error if real text has disappeared.
3923         * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
3925 2012-03-10  Chong Yidong  <cyd@gnu.org>
3927         * emulation/cua-rect.el (cua--init-rectangles):
3928         * emulation/cua-base.el (cua--init-keymaps):
3929         Add delete-forward-char to remappings (Bug#9666).
3931 2012-03-10  Martin Rudalics  <rudalics@gmx.at>
3933         * speedbar.el (speedbar-unhighlight-one-tag-line):
3934         Avoid unhighlighting due to frame switching (Bug#10275).
3936 2012-03-10  Chong Yidong  <cyd@gnu.org>
3938         * minibuffer.el (completion-in-region, completion-help-at-point):
3939         Give the completion field overlay a high priority (Bug#6830).
3941         * dired.el (dired-goto-file): Recognize absolute file name
3942         listings (Bug#7126).
3943         (dired-goto-file-1): New helper function.
3944         (dired-toggle-read-only): Inhibit warnings.
3946 2012-03-09  Michael Albinus  <michael.albinus@gmx.de>
3948         * net/dbus.el (dbus-property-handler): Return empty array if
3949         there are no properties.
3951 2012-03-09  Leo Liu  <sdl.web@gmail.com>
3953         * savehist.el (savehist-printable): Stricter check for string
3954         value (Bug#10937).
3956 2012-03-09  Eli Zaretskii  <eliz@gnu.org>
3958         * mail/smtpmail.el (smtpmail-send-it):
3959         Bind coding-system-for-write to *-unix, so that FCC files are kept in
3960         valid mbox format.
3962 2012-03-09  Glenn Morris  <rgm@gnu.org>
3964         * files.el (dir-locals-find-file):
3965         Don't check result is regular, readable.
3966         (dir-locals-read-from-file): Demote errors.
3968 2012-03-08  Eli Zaretskii  <eliz@gnu.org>
3970         * international/quail.el (quail-insert-kbd-layout):
3971         Insert invisible LRM characters before each character in a keyboard
3972         layout cell, to prevent their reordering by bidi display engine.
3973         For details, see the discussion in
3974         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
3976 2012-03-08  Alan Mackenzie  <acm@muc.de>
3978         * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
3979         the starting position; make it extend the marked region when
3980         invoked repeatedly - all under appropriate circumstances.
3981         Fixes bugs #5525, #10906.
3983 2012-03-08  Glenn Morris  <rgm@gnu.org>
3985         * files.el (locate-dominating-file, dir-locals-find-file):
3986         Undo 2012-03-06 change.
3988 2012-03-07  Eli Zaretskii  <eliz@gnu.org>
3990         * international/quail.el (quail-help):
3991         Force bidi-paragraph-direction be left-to-right.  See discussion in
3992         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
3993         for the reason.
3995 2012-03-07  Michael Albinus  <michael.albinus@gmx.de>
3997         Avoid superfluous registering of signals.  (Bug#10807)
3999         * notifications.el (notifications-on-action-object)
4000         (notifications-on-close-object): New defvars.
4001         (notifications-on-action-signal, notifications-on-closed-signal):
4002         Unregister the signal if not needed any longer.
4003         (notifications-notify): Register `notifications-action-signal' or
4004         `notifications-closed-signal', if :on-action or :on-close has been
4005         passed as argument.
4007 2012-03-07  Chong Yidong  <cyd@gnu.org>
4009         * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
4010         non-X platforms.
4012 2012-03-06  Glenn Morris  <rgm@gnu.org>
4014         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
4015         (x-disown-selection-internal, x-get-selection-internal):
4016         Doc fix (add arglist signatures).  (Bug#10783)
4018 2012-03-06  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
4020         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
4021         Handle breakpoints with no "type".
4023 2012-03-06  Glenn Morris  <rgm@gnu.org>
4025         * files.el (locate-dominating-file): Add optional predicate argument.
4026         (dir-locals-find-file): Make use of above change.
4028 2012-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>
4030         * info.el (Info-insert-dir): Also try "dir.gz".
4032 2012-03-06  Glenn Morris  <rgm@gnu.org>
4034         * files.el (dir-locals-find-file):
4035         Ignore non-readable or non-regular files.  (Bug#10928)
4037         * files.el (locate-dominating-file): Doc fix.
4039 2012-03-06  Adam Spiers  <emacs@adamspiers.org>  (tiny change)
4041         * calendar/calendar.el (calendar-set-mode-line):
4042         `getenv' returns a string.  (Bug#10951)
4044 2012-03-05  Leo Liu  <sdl.web@gmail.com>
4046         * simple.el (backward-delete-char-untabify): Constrain point to
4047         field (Bug#10939).
4049         * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
4051 2012-03-05  Chong Yidong  <cyd@gnu.org>
4053         * simple.el (count-words): If called from Lisp, return the word
4054         count, for symmetry with `count-lines'.  Arglist changed.
4055         (count-words--message): Args changed.  Consolidate counting code
4056         from count-words and count-words-region.
4057         (count-words-region): Caller changed.
4058         (count-lines-region): Make it an obsolete alias.
4060 2012-03-04  Tassilo Horn  <tassilo@member.fsf.org>
4062         * saveplace.el (save-place-to-alist)
4063         (save-place-ignore-files-regexp): Allow value nil to disable this
4064         feature.
4066 2012-03-04  Chong Yidong  <cyd@gnu.org>
4068         * faces.el (face-spec-reset-face): For the default face, reset the
4069         attributes to default values (Bug#10748).
4071 2012-03-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4073         * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
4074         previous patch: Check `message-send-mail-function', and not the
4075         default function (bug#10897).
4077 2012-03-04  Michael Albinus  <michael.albinus@gmx.de>
4079         * notifications.el (notifications-on-action-signal)
4080         (notifications-on-closed-signal): Check for unique service name of
4081         incoming event.  Fix error in removing entry.
4082         (top): Register for signals with wildcard service name.
4083         (notifications-notify): Use daemon unique service name for map entries.
4085 2012-03-04  Chong Yidong  <cyd@gnu.org>
4087         * cus-start.el: Make x-select-enable-clipboard-manager customizable.
4089 2012-03-04  Glenn Morris  <rgm@gnu.org>
4091         * abbrev.el (copy-abbrev-table, abbrev-table-p)
4092         (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
4093         (expand-abbrev, define-abbrev-table): Doc fixes.
4095 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4097         * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
4098         `message-default-send-mail-function' and not `send-mail-function'
4099         when doing the prompting for `sendmail-query-once' before sending
4100         in Message buffers (bug#10897).
4102         * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
4103         This is inconsistent with all the other stream functions, which leave
4104         the setting up to the higher levels (if so wanted) (bug#10931).
4106 2012-03-02  Alan Mackenzie  <acm@muc.de>
4108         Depessimize the handling of very large macros.
4110         * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
4111         (c-macro-cache-syntactic): New variables to implement a one
4112         element macro cache.
4113         (c-invalidate-macro-cache): New function.
4114         (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
4115         Adapt to use the new cache.
4116         (c-state-safe-place): Use better the cache of safe positions.
4117         (c-state-semi-nonlit-pos-cache)
4118         (c-state-semi-nonlit-pos-cache-limit):
4119         New variables for...
4120         (c-state-semi-safe-place): New function.  Here, in a macro is "safe".
4121         (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
4122         (c-in-literal, c-literal-limits, c-determine-limit-get-base):
4123         Use c-state-semi-safe-place.
4125         * progmodes/cc-langs.el (c-get-state-before-change-functions):
4126         Add c-invalidate-macro-cache to the C, C++, Obj entries.
4128 2012-03-02  Michael Albinus  <michael.albinus@gmx.de>
4130         * jka-compr.el (jka-compr-call-process):
4131         Apply `file-accessible-directory-p' only when the default directory is
4132         not remote.
4134 2012-03-01  Michael Albinus  <michael.albinus@gmx.de>
4136         * files.el (file-equal-p): Fix docstring.  Avoid unnecessary
4137         access of FILE2, if FILE1 does not exist.
4139         * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
4140         Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
4142         * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
4143         Add "PAGER=" to `process-environment'.
4145 2012-03-01  Michael R. Mauger  <mmaug@yahoo.com>
4147         * progmodes/sql.el: Bug fix
4148         (sql-get-login-ext): Save login values in globals.
4149         (sql-get-login): Use new version of `sql-get-login-ext'.
4150         (sql-interactive-mode): Set global `sql-connection' to nil.
4151         (sql-connect): Set global values for connection.
4152         (sql-product-interactive): Save global values as buffer local.
4154 2012-02-29  Leo Liu  <sdl.web@gmail.com>
4156         * abbrev.el (define-abbrevs): Reset sys to nil.
4158 2012-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4160         * files.el (file-equal-p): Rename from `files-equal-p'.
4161         Return nil when one or both files don't exist.
4162         (file-subdir-of-p): Now only top directory must exists,
4163         return nil if it doesn't.
4164         (copy-directory): No need to test with `file-subdir-of-p' after
4165         creating dir.
4166         * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
4167         to `file-equal-p'.
4169 2012-02-28  Glenn Morris  <rgm@gnu.org>
4171         * shell.el (shell-mode):
4172         * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
4173         * play/landmark.el (landmark-font-lock-face-O):
4174         * play/handwrite.el (handwrite):
4175         * play/gomoku.el (gomoku-O):
4176         * net/browse-url.el (browse-url-browser-display):
4177         * international/mule.el (define-charset):
4178         * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
4179         * filesets.el (filesets-find-file-delay):
4180         * eshell/em-xtra.el (eshell-xtra):
4181         * eshell/em-unix.el (eshell-grep):
4182         * emulation/viper.el (viper-mode):
4183         * emacs-lisp/regexp-opt.el (regexp-opt-group):
4184         * emacs-lisp/easymenu.el (easy-menu-define):
4185         * calendar/timeclock.el (timeclock-use-display-time):
4186         * bs.el (bs-mode):
4187         * bookmark.el (bookmark-save-flag):
4188         Doc fix (standardize possessive apostrophe usage).
4190 2012-02-27  Chong Yidong  <cyd@gnu.org>
4192         * emulation/viper-cmd.el (viper-intercept-ESC-key):
4193         Fix key-binding lookup for ESC key (Bug#9146).
4195         * font-lock.el (font-lock-specified-p): Rename from
4196         font-lock-spec-present.  Callers changed.
4198 2012-02-27  Daniel Hackney  <dan@haxney.org>
4200         * emacs-lisp/package.el (package-compute-transaction):
4201         Handle holding a package version to t in package-load-list.
4203 2012-02-26  Michael Albinus  <michael.albinus@gmx.de>
4205         * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
4206         (tramp-get-inode, tramp-get-device): Use cached values.
4208 2012-02-26  Alan Mackenzie  <acm@muc.de>
4210         Check there is a font-lock specification before doing initial
4211         fontification.
4213         * font-core.el (font-lock-mode): Move the conditional from
4214         :after-hook to font-lock-initial-fontify.
4215         (font-lock-default-function): Move the check for a specification
4216         to font-lock-spec-present.
4218         * font-lock.el (font-lock-initial-fontify): Call ...
4219         (font-lock-spec-present): New function.
4221 2012-02-26  Jim Blandy  <jimb@red-bean.com>
4223         * progmodes/gdb-mi.el (gdb-mi-quote): New function.
4224         (gdb-send): Apply it to the operand of the '-interpreter-exec
4225         console' command, so that we can pass arguments with (say) quotes
4226         in them.  Store exact string sent in gdb-debug-log (Bug#10765).
4228 2012-02-26  Chong Yidong  <cyd@gnu.org>
4230         * help-fns.el (describe-function-1): Clarify description of
4231         remapping (Bug#10844).
4233         * files.el (files-equal-p): Doc fix.
4234         (file-subdir-of-p): Doc fix.  Convert loop macro to plain Lisp,
4235         and quit the loop once a mismatch is found.
4237 2012-02-25  Juanma Barranquero  <lekktu@gmail.com>
4239         * bs.el (bs--show-with-configuration): Don't throw an error
4240         if the window cannot be split; otherwise, subsequent calls to
4241         bs-show fail, restoring a stale window config.  (Bug#10882)
4243 2012-02-25  Jan Djärv  <jan.h.d@swipnet.se>
4245         * term/ns-win.el (global-map): Bind ns-drag-file to
4246         ns-find-file (Bug#5855, Bug#10050).
4248 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
4250         * calendar/parse-time.el (parse-time-string): Allow extractor to
4251         return nil.
4253 2012-02-25  Michael Albinus  <michael.albinus@gmx.de>
4255         * net/tramp.el (tramp-file-name-for-operation):
4256         Add `files-equal-p' and `file-subdir-of-p'.
4258         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
4259         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
4260         Add COPY-CONTENTS argument.
4262 2012-02-25  Chong Yidong  <cyd@gnu.org>
4264         Add custom groups for VC backends, for consistency with vc-bzr.
4266         * vc/vc-arch.el (vc-arch):
4267         * vc/vc-cvs.el (vc-cvs):
4268         * vc/vc-git.el (vc-git):
4269         * vc/vc-hg.el (vc-hg):
4270         * vc/vc-mtn.el (vc-mtn):
4271         * vc/vc-rcs.el (vc-rcs):
4272         * vc/vc-sccs.el (vc-sccs):
4273         * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
4274         All relevant defcustoms reassigned.
4276 2012-02-25  Chong Yidong  <cyd@gnu.org>
4278         * newcomment.el (comment-styles): Add autoload (Bug#10868).
4280         * term/x-win.el (x-initialize-window-system): Reduce default for
4281         x-selection-timeout to 5 seconds (Bug#8869).
4283 2012-02-24  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4285         * files.el (files-equal-p, file-subdir-of-p): New functions.
4286         (copy-directory): Error when trying to copy a directory on itself.
4287         Add missing copy-contents arg to tramp handler.
4288         * dired-aux.el (dired-copy-file-recursive): Same.
4289         (dired-create-files): Modify destination when source is equal to
4290         dest when copying files.
4291         Return also when dest is a subdir of source.  (Bug#10489)
4293 2012-02-24  Michael Albinus  <michael.albinus@gmx.de>
4295         * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
4296         (Bug#10874)
4298 2012-02-23  Alan Mackenzie  <acm@muc.de>
4300         * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
4301         parameter "after-hook:" to allow the expansion to run code after
4302         the execution of the mode hooks.
4304         * font-lock.el (font-lock-initial-fontify): New function extracted
4305         from font-lock-mode-internal.
4307         * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
4308         :after-hook.
4310 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4312         * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
4313         (completion--cache-all-sorted-completions): New function.
4314         (completion-all-sorted-completions): Use it.
4315         (completion--do-completion, minibuffer-force-complete):
4316         Use it to re-instate the flush hook.
4318         * icomplete.el (icomplete-completions): Replace last fix with a better
4319         one (bug#10850).
4321 2012-02-23  Dmitry Gutov  <dgutov@yandex.ru>
4323         * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
4324         when it might call us back infinitely (bug#10797).
4326 2012-02-23  Glenn Morris  <rgm@gnu.org>
4328         * minibuffer.el (completion-category-overrides): Doc fix.
4330 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4332         * minibuffer.el (completion-table-with-context): Fix inf-loop.
4333         Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
4335 2012-02-23  Glenn Morris  <rgm@gnu.org>
4337         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
4338         (authors-obsolete-files-regexps, authors-ignored-files)
4339         (authors-ambiguous-files, authors-renamed-files-alist):
4340         Add more entries.
4342 2012-02-23  Juri Linkov  <juri@jurta.org>
4344         * isearch.el (isearch-occur): Sync interactive spec with occur's
4345         new feature in `occur-read-primary-args'.  Doc fix.  (Bug#10705)
4347         * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
4349 2012-02-22  Juri Linkov  <juri@jurta.org>
4351         * international/mule-cmds.el (read-char-by-name): Use \` and \'.
4352         (ucs-insert): Doc fix.  Check for hex digits in the string.
4353         Don't display `nil' in the error message.  (Bug#10857)
4355 2012-02-22  Alan Mackenzie  <acm@muc.de>
4357         * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
4359 2012-02-22  Glenn Morris  <rgm@gnu.org>
4361         * ffap.el (ffap-c-path):
4362         * man.el (Man-header-file-path): Handle multiarch.  (Bug#10702)
4364 2012-02-22  Chong Yidong  <cyd@gnu.org>
4366         * custom.el (load-theme): Doc fix.
4368 2012-02-22  Glenn Morris  <rgm@gnu.org>
4370         * dired-x.el (dired-guess-shell-alist-default):
4371         Remove escape sequences from nroff output.  (Bug#172)
4373 2012-02-21  Glenn Morris  <rgm@gnu.org>
4375         * vc/emerge.el (emerge-defvar-local):
4376         Set `permanent-local' property rather than unused `preserved'.
4378         * textmodes/picture.el (picture-delete-char): New alias.
4379         (picture-mode-map): Use it.  (Bug#10860)
4380         (picture-mode): Doc fix.
4382 2012-02-21  Juanma Barranquero  <lekktu@gmail.com>
4384         * newcomment.el (uncomment-region-default): Remove unused binding.
4386 2012-02-21  Glenn Morris  <rgm@gnu.org>
4388         * textmodes/picture.el (picture-motion, picture-motion-reverse)
4389         (picture-self-insert, picture-tab-chars): Doc fix.
4390         (picture-mode-map): Fix C-a, C-e.
4392 2012-02-20  Glenn Morris  <rgm@gnu.org>
4394         * emacs-lisp/authors.el (authors-aliases): Add another entry.
4396 2012-02-20  Leo Liu  <sdl.web@gmail.com>
4398         * icomplete.el (icomplete-completions): Check FROM arg before
4399         passing to substring (Bug#10850).
4401 2012-02-19  Chong Yidong  <cyd@gnu.org>
4403         * comint.el: Require ansi-color.
4404         (comint-output-filter-functions): Add ansi-color-process-output.
4406         * ansi-color.el: Don't set comint-output-filter-functions; it is
4407         now in the initial value defined in comint.el.
4408         (ansi-color-apply-face-function): New variable.
4409         (ansi-color-apply-on-region): Use it.
4410         (ansi-color-apply-overlay-face): New function.
4412         * shell.el (shell): No need to require ansi-color.
4413         (shell-mode): Use ansi-color-apply-face-function to highlight
4414         color escapes using font-lock-face property (Bug#10835).
4416 2012-02-19  Chong Yidong  <cyd@gnu.org>
4418         * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
4419         mode-line formats (Bug#10839).
4421 2012-02-18  Glenn Morris  <rgm@gnu.org>
4423         * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
4425         * mail/undigest.el (unforward-rmail-message): Doc fix.
4427         * saveplace.el (save-place-ignore-files-regexp): Add :version.
4429 2012-02-18  Eli Zaretskii  <eliz@gnu.org>
4431         * international/characters.el (script-list): Sync with the latest
4432         Unicode Character Database.
4434 2012-02-18  Andreas Schwab  <schwab@linux-m68k.org>
4436         * international/titdic-cnv.el: Remove duplicate coding tag.
4437         * language/cham.el: Likewise.
4438         * language/tai-viet.el: Likewise.
4440 2012-02-18  Glenn Morris  <rgm@gnu.org>
4442         * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
4443         * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
4444         (calendar-bahai-all-holidays-flag, calendar-other-dates):
4445         * calendar/diary-lib.el (diary-abbreviated-year-flag):
4446         * calendar/holidays.el (holiday-bahai-holidays)
4447         (calendar-holidays, list-holidays):
4448         Use utf-8 Bahá'í in doc-strings, menus, etc.
4450 2012-02-17  Tassilo Horn  <tassilo@member.fsf.org>
4452         * saveplace.el (save-place-ignore-files-regexp): New variable
4453         allowing for excluding files from saving their location of point.
4454         The default value matches the temporary commit message editing
4455         files from Git, SVN, Bazaar, and Mercurial.
4456         (save-place-to-alist): Use it.
4458 2012-02-17  Lawrence Mitchell <wence@gmx.li>
4459             Stefan Monnier  <monnier@iro.umontreal.ca>
4461         * newcomment.el (uncomment-region-default): Don't leave extra space
4462         when an arg is provided (bug#8150).
4464 2012-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
4466         * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
4468 2012-02-17  Glenn Morris  <rgm@gnu.org>
4470         * net/socks.el: Require network-stream.  (Bug#10599)
4472 2012-02-17  Kenichi Handa  <handa@m17n.org>
4474         * international/charprop.el:
4475         * international/uni-name.el:
4476         * international/uni-old-name.el:
4477         * international/uni-comment.el: Regenerate.
4479 2012-02-16  Glenn Morris  <rgm@gnu.org>
4481         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
4482         Interactively in calendar buffer, give an error if not on a date.
4484 2012-02-15  Glenn Morris  <rgm@gnu.org>
4486         * shell.el (shell-delimiter-argument-list):
4487         Revert 2011-02-17 change.  (Bug#8027)
4489 2012-02-15  Chong Yidong  <cyd@gnu.org>
4491         * minibuffer.el (completion-at-point-functions): Doc fix.
4493         * custom.el (defcustom): Doc fix; note use of defvar.
4495 2012-02-15  Glenn Morris  <rgm@gnu.org>
4497         * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
4498         Doc fixes.
4500 2012-02-14  Glenn Morris  <rgm@gnu.org>
4502         * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
4504 2012-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
4506         * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
4507         way the ports list is computed.
4508         (smtpmail-query-smtp-server): Prompt the user for a port number if
4509         we can't connect to any of the standard ports (bug#10810).
4511 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
4513         * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
4515 2012-02-13  Glenn Morris  <rgm@gnu.org>
4517         * minibuffer.el (read-file-name): Doc fix.  (Bug#10798)
4519 2012-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
4521         * net/gnutls.el (gnutls-trustfiles): New variable.
4522         (gnutls-negotiate): Use it.
4524 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
4526         * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
4527         does its stuff if Gnus is running.
4529 2012-02-13  Alan Mackenzie  <acm@muc.de>
4531         Fix a loop in c-set-fl-decl-start.
4533         * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
4534         c-backward-syntactic-ws actually moves backwards.
4536 2012-02-13  Leo Liu  <sdl.web@gmail.com>
4538         * net/rcirc.el (rcirc-markup-attributes): Move point to the
4539         beginning so that all \C-o chars are removed.
4541 2012-02-12  Teodor Zlatanov  <tzz@lifelogs.com>
4543         * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
4545 2012-02-12  Alan Mackenzie  <acm@muc.de>
4547         Fix infinite loop with long macros.
4548         * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
4550 2012-02-12  Chong Yidong  <cyd@gnu.org>
4552         * window.el (display-buffer): Doc fix (Bug#10785).
4554 2012-02-12  Glenn Morris  <rgm@gnu.org>
4556         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
4557         (x-disown-selection-internal, x-get-selection-internal):
4558         Sync docs with the xselect.c versions.
4560         * allout-widgets.el: Add missing license notice.
4562 2012-02-11  Glenn Morris  <rgm@gnu.org>
4564         * select.el (x-get-selection-internal, x-own-selection-internal)
4565         (x-disown-selection-internal):
4566         * x-dnd.el (x-get-selection-internal): Update declarations.
4568         * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
4570         * window.el (window-sides-slots):
4571         * tool-bar.el (tool-bar-position):
4572         * term/xterm.el (xterm-extra-capabilities):
4573         * ses.el (ses-self-reference-early-detection):
4574         * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
4575         (verilog-auto-wire-type)
4576         (verilog-auto-delete-trailing-whitespace)
4577         (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
4578         (verilog-auto-tieoff-declaration):
4579         * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
4580         (sql-oracle-statement-starters, sql-oracle-scan-on):
4581         * progmodes/prolog.el (prolog-align-comments-flag)
4582         (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
4583         (prolog-left-indent-regexp, prolog-paren-indent-p)
4584         (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
4585         (prolog-types, prolog-mode-specificators)
4586         (prolog-determinism-specificators, prolog-directives)
4587         (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
4588         (prolog-electric-dot-flag)
4589         (prolog-electric-dot-full-predicate-template)
4590         (prolog-electric-underscore-flag, prolog-electric-tab-flag)
4591         (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
4592         (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
4593         (prolog-program-switches, prolog-prompt-regexp)
4594         (prolog-debug-on-string, prolog-debug-off-string)
4595         (prolog-trace-on-string, prolog-trace-off-string)
4596         (prolog-zip-on-string, prolog-zip-off-string)
4597         (prolog-use-standard-consult-compile-method-flag)
4598         (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
4599         (prolog-imenu-max-lines, prolog-info-predicate-index)
4600         (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
4601         (prolog-char-quote-workaround):
4602         * progmodes/cc-vars.el (c-defun-tactic):
4603         * net/tramp.el (tramp-encoding-command-interactive)
4604         (tramp-local-end-of-line):
4605         * net/soap-client.el (soap-client):
4606         * net/netrc.el (netrc-file):
4607         * net/gnutls.el (gnutls):
4608         * minibuffer.el (completion-category-overrides)
4609         (completion-cycle-threshold)
4610         (completion-pcm-complete-word-inserts-delimiters):
4611         * man.el (Man-name-local-regexp):
4612         * mail/feedmail.el (feedmail-display-full-frame):
4613         * international/characters.el (glyphless-char-display-control):
4614         * eshell/em-ls.el (eshell-ls-date-format):
4615         * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
4616         (lisp-lambda-list-keyword-parameter-indentation)
4617         (lisp-lambda-list-keyword-parameter-alignment):
4618         * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
4619         * dired-x.el (dired-omit-verbose):
4620         * cus-theme.el (custom-theme-allow-multiple-selections):
4621         * calc/calc.el (calc-highlight-selections-with-faces)
4622         (calc-lu-field-reference, calc-lu-power-reference)
4623         (calc-note-threshold):
4624         * battery.el (battery-mode-line-limit):
4625         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
4626         (archive-7z-update):
4627         * allout.el (allout-prefixed-keybindings)
4628         (allout-unprefixed-keybindings)
4629         (allout-inhibit-auto-fill-on-headline)
4630         (allout-flattened-numbering-abbreviation):
4631         * allout-widgets.el (allout-widgets-auto-activation)
4632         (allout-widgets-icons-dark-subdir)
4633         (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
4634         (allout-widgets-theme-dark-background)
4635         (allout-widgets-theme-light-background)
4636         (allout-widgets-item-image-properties-emacs)
4637         (allout-widgets-item-image-properties-xemacs)
4638         (allout-widgets-run-unit-tests-on-load)
4639         (allout-widgets-time-decoration-activity)
4640         (allout-widgets-hook-error-post-time)
4641         (allout-widgets-track-decoration):
4642         Add missing :version tags to new defcustoms and defgroups.
4644         * progmodes/sql.el (sql-ansi-statement-starters)
4645         (sql-oracle-statement-starters): Add custom type.
4647         * progmodes/prolog.el: Remove leading '*' from defcustom docs.
4648         (prolog-system-version): Give it a type.
4650 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
4652         * term/pc-win.el (x-select-text, x-selection-owner-p)
4653         (x-own-selection-internal, x-disown-selection-internal)
4654         (x-get-selection-internal): Sync doc strings and argument lists
4655         with xselect.c, common-win.el and x-win.el.  (Bug#10783)
4657 2012-02-11  Leo Liu  <sdl.web@gmail.com>
4659         * progmodes/python.el (python-end-of-statement): Fix infinite
4660         loop.  (Bug#10788)
4662 2012-02-10  Glenn Morris  <rgm@gnu.org>
4664         * international/mule-cmds.el (unify-8859-on-encoding-mode)
4665         (unify-8859-on-decoding-mode): Properly mark as obsolete.
4667 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
4669         * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
4670         about SMTP before checking the From header.
4672         * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
4673         into own function for reuse by emacsbug.el.
4675 2012-02-10  Leo Liu  <sdl.web@gmail.com>
4677         * subr.el (condition-case-unless-debug): Rename from
4678         condition-case-no-debug.  All callers changed.
4679         (with-demoted-errors): Fix caller.
4681         * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
4682         * nxml/rng-valid.el (rng-do-some-validation):
4683         * emacs-lisp/package.el (package-refresh-contents)
4684         (package-menu-execute):
4685         * desktop.el (desktop-create-buffer):
4686         * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
4688 2012-02-10  Glenn Morris  <rgm@gnu.org>
4690         * textmodes/bibtex.el:
4691         Add missing :version tags for new/changed defcustoms.
4693         * files.el (remote-file-name-inhibit-cache): Doc fixes.
4695 2012-02-09  Lars Ingebrigtsen  <larsi@rusty>
4697         * mail/smtpmail.el (smtpmail-user-mail-address): New function.
4698         (smtpmail-via-smtp): Use it, or fall back on the From address.
4699         (smtpmail-send-it): Ditto.
4701 2012-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4703         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
4704         Don't fallback on byte-compile-defvar.  Optimize (defvar foo) away.
4705         (byte-compile-tmp-var): New const.
4706         (byte-compile-defvar): Use it to minimize .elc size.
4707         Just use `defvar' rather than simulate it (bug#10761).
4709 2012-02-09  Glenn Morris  <rgm@gnu.org>
4711         * files.el (rename-uniquely): Doc fix.  (Bug#3806)
4713         * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
4714         Add :version tags.
4716         * progmodes/compile.el (compilation-error-screen-columns)
4717         (compilation-first-column, compilation-filter-start): Doc fixes.
4719         * vc/log-view.el (log-view-toggle-entry-display):
4720         * vc/vc.el (vc-merge, vc-pull): Doc fixes.
4722         * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
4723         (report-emacs-bug-can-use-xdg-email):
4724         (report-emacs-bug-insert-to-mailer): Doc fixes.
4725         (report-emacs-bug): Message fix.
4727         * net/browse-url.el (browse-url-can-use-xdg-open)
4728         (browse-url-xdg-open): Doc fixes.
4730         * electric.el (electric-indent-mode, electric-pair-mode)
4731         (electric-layout-rules, electric-layout-mode): Doc fixes.
4732         (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
4734 2012-02-08  Martin Rudalics  <rudalics@gmx.at>
4736         * server.el (server-unselect-display): Don't inadvertently kill
4737         the current buffer.  (Bug#10729)
4739 2012-02-08  Glenn Morris  <rgm@gnu.org>
4741         * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
4742         (sql-list-table): Doc fixes.
4744         * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
4745         Comment out (does nothing).
4747         * completion.el (dynamic-completion-mode):
4748         * dirtrack.el (dirtrack-debug-mode):
4749         * electric.el (electric-layout-mode):
4750         * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
4751         * face-remap.el (text-scale-mode, buffer-face-mode):
4752         * iimage.el (iimage-mode):
4753         * image-mode.el (image-transform-mode):
4754         * minibuffer.el (completion-in-region-mode):
4755         * scroll-lock.el (scroll-lock-mode):
4756         * simple.el (next-error-follow-minor-mode):
4757         * tar-mode.el (tar-subfile-mode):
4758         * tooltip.el (tooltip-mode):
4759         * vcursor.el (vcursor-use-vcursor-map):
4760         * wid-browse.el (widget-minor-mode):
4761         * emulation/tpu-edt.el (tpu-edt-mode):
4762         * emulation/tpu-extras.el (tpu-cursor-free-mode):
4763         * international/iso-ascii.el (iso-ascii-mode):
4764         * language/thai-util.el (thai-word-mode):
4765         * mail/supercite.el (sc-minor-mode):
4766         * net/goto-addr.el (goto-address-mode):
4767         * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
4768         * progmodes/cwarn.el (cwarn-mode):
4769         * progmodes/flymake.el (flymake-mode):
4770         * progmodes/glasses.el (glasses-mode):
4771         * progmodes/hideshow.el (hs-minor-mode):
4772         * progmodes/pascal.el (pascal-outline-mode):
4773         * textmodes/enriched.el (enriched-mode):
4774         * vc/smerge-mode.el (smerge-mode):
4775         Doc fixes (minor mode argument).
4777 2012-02-07  Eli Zaretskii  <eliz@gnu.org>
4779         * ls-lisp.el (ls-lisp-sanitize): New function.
4780         (ls-lisp-insert-directory): Use it to fix or remove any elements
4781         in file-alist with missing attributes.  (Bug#4673)
4783 2012-02-07  Alan Mackenzie  <acm@muc.de>
4785         Fix spurious recognition of c-in-knr-argdecl.
4787         * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
4788         putative K&R region.
4790 2012-02-07  Alan Mackenzie  <acm@muc.de>
4792         * progmodes/cc-engine.el (c-forward-objc-directive):
4793         Prevent looping in "#pragma mark @implementation".
4795 2012-02-07  Michael Albinus  <michael.albinus@gmx.de>
4797         * notifications.el (notifications-on-closed-signal): Make `reason'
4798         optional.  (Bug#10744)
4800 2012-02-07  Glenn Morris  <rgm@gnu.org>
4802         * emacs-lisp/easy-mmode.el (define-minor-mode):
4803         Doc fixes for the macro and the mode it defines.
4805         * image.el (imagemagick-types-inhibit): Doc fix.
4807         * cus-start.el (imagemagick-render-type): Add it.
4809 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
4811         * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
4812         Set the default at load time, too, so that `font-lock-fontify-buffer'
4813         can be called without setting up the entire mode first.  This fixes
4814         a bug in `mm-inline-text' with C MIME parts.
4816 2012-02-06  Chong Yidong  <cyd@gnu.org>
4818         * simple.el (list-processes--refresh): Delete exited processes
4819         (Bug#8094).
4821         * comint.el (comint-next-prompt): next-single-char-property-change
4822         and prev-single-char-property-change never return nil (Bug#8657).
4824         * custom.el (defcustom): Doc fix (Bug#9711).
4826 2012-02-05  Chong Yidong  <cyd@gnu.org>
4828         * cus-edit.el (custom-variable-reset-backup): Quote the value
4829         before storing it in the customized-value property (Bug#6712).
4830         (custom-display): Add a customization type tag.
4831         (custom-buffer-create-internal): Improve tooltip message.
4833         * wid-edit.el (widget-field-value-get): New optional arg to
4834         suppress trailing whitespace truncation.
4835         (character): Use it (Bug#2689).
4837 2012-02-05  Andreas Schwab  <schwab@linux-m68k.org>
4839         * progmodes/gud.el (gud-pv): Use pv instead of pv1.
4840         * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
4842 2012-02-05  Chong Yidong  <cyd@gnu.org>
4844         * cus-edit.el (custom-variable-value-create): For mismatched
4845         types, show the current value (Bug#7600).
4847         * custom.el (defcustom): Doc fix.
4849 2012-02-05  Glenn Morris  <rgm@gnu.org>
4851         * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
4853 2012-02-05  Juanma Barranquero  <lekktu@gmail.com>
4855         * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
4856         (pp-buffer): Use `ignore-errors', `looking-at-p'.
4857         (pp-last-sexp): Use `looking-at-p'.
4859 2012-02-04  Glenn Morris  <rgm@gnu.org>
4861         * files.el (revert-buffer):
4862         Doc fix (mention revert-buffer-in-progress-p).
4864         * emacs-lisp/ert-x.el (ert-simulate-command):
4865         Check deferred-action-list (which is obsolete) is bound.
4867         * subr.el (with-wrapper-hook): Doc fixes.
4869         * simple.el (filter-buffer-substring-functions)
4870         (buffer-substring-filters, filter-buffer-substring): Doc fixes.
4872 2012-02-04  Lars Ljung  <lars@matholka.se>  (tiny change)
4874         * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
4875         anywhere in shell-file-name, not just at the beginning.  (Bug#10523)
4877 2012-02-04  Leo Liu  <sdl.web@gmail.com>
4879         * emacs-lisp/smie.el: Fix dead link (Bug#10711).
4881 2012-02-04  Glenn Morris  <rgm@gnu.org>
4883         * image.el (image-extension-data): Add obsolete alias.
4885         * isearch.el (isearch-update): Doc fix.
4887         * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
4889         * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
4891 2012-02-03  Glenn Morris  <rgm@gnu.org>
4893         * image.el (image-animated-p): Doc fix.  Use image-animated-types.
4894         (image-animate-timeout): Doc fix.
4896         * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
4898 2012-02-02  Glenn Morris  <rgm@gnu.org>
4900         * server.el (server-auth-dir): Doc fix.
4901         (server-eval-at): Doc fix.  Give an explicit error if !server-use-tcp.
4903         * subr.el (run-mode-hooks): Doc fix.
4905 2012-02-02  Juri Linkov  <juri@jurta.org>
4907         * image-mode.el (image-toggle-display-image): Remove tautological
4908         `major-mode' from the `derived-mode-p' test.
4910 2012-02-02  Kenichi Handa  <handa@m17n.org>
4912         * composite.el (compose-region): Cancel previous change.
4914 2012-02-02  Kenichi Handa  <handa@m17n.org>
4916         * composite.el (compose-region, compose-string): Signal error for
4917         a null string component (Bug#6988).
4919 2012-02-01  Chong Yidong  <cyd@gnu.org>
4921         * view.el (view-buffer-other-window, view-buffer-other-frame):
4922         Handle special modes like view-buffer (Bug#10650).
4923         (view-buffer): Simplify.
4925         * frame.el (set-frame-font): Tweak meaning of third argument.
4927         * dynamic-setting.el (font-setting-change-default-font):
4928         Use set-frame-font (Bug#9982).
4930 2012-02-01  Glenn Morris  <rgm@gnu.org>
4932         * progmodes/compile.el (compilation-internal-error-properties):
4933         Respect compilation-first-column in the "*compilation*" buffer.
4935         * emacs-lisp/easy-mmode.el (define-minor-mode):
4936         Relax :variable's test for a named function.
4938 2012-01-31  Alan Mackenzie  <acm@muc.de>
4940         * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
4941         off by one error.
4943 2012-01-31  Chong Yidong  <cyd@gnu.org>
4945         * frame.el (set-frame-font): New arg ALL-FRAMES.
4947         * menu-bar.el (menu-set-font): Use set-frame-font.
4949         * faces.el (face-spec-reset-face): Don't apply unspecified
4950         attribute values to the default face.
4952 2012-01-31  Juanma Barranquero  <lekktu@gmail.com>
4954         * progmodes/cwarn.el (cwarn): Remove dead link.
4955         (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
4956         Remove * from defcustom docstrings.
4957         (turn-on-cwarn-mode): Make obsolete.
4958         (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
4959         (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
4961 2012-01-31  Glenn Morris  <rgm@gnu.org>
4963         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
4964         Fix :variable handling of mode a symbol not equal to modefun.
4965         Allow named functions to be used as the cdr of :variable.
4967 2012-01-30  Glenn Morris  <rgm@gnu.org>
4969         * emacs-lisp/authors.el (authors-fixed-entries):
4970         Remove reference to deleted file rnewspost.el.
4972 2012-01-29  Juanma Barranquero  <lekktu@gmail.com>
4974         * window.el (window-with-parameter): Remove unused variable `windows'.
4975         (window--side-check): Remove unused variable `code'.
4976         (window--resize-siblings): Remove unused variable `first'.
4977         (adjust-window-trailing-edge): Remove unused variable `failed'.
4978         (window-deletable-p, window--delete): Remove unused variable `buffer'.
4979         Use `let', not `let*'.
4980         (balance-windows-2): Remove unused variable `found'.
4981         (window--state-put-2): Remove unused variable `splits'.
4982         (window-state-put): Remove unused variable `selected'.
4983         (same-window-p): Use `string-match-p'.
4984         (display-buffer-assq-regexp): Remove unused variable `value'.
4985         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
4986         Mark argument ALIST as ignored.
4987         (pop-to-buffer): Remove unused variable `old-window'.
4989 2012-01-29  Eli Zaretskii  <eliz@gnu.org>
4991         * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
4992         and .lzma compressed files.
4994 2012-01-29  Chong Yidong  <cyd@gnu.org>
4996         * frame.el (window-system-default-frame-alist): Doc fix.
4998         * dynamic-setting.el (font-setting-change-default-font): Don't
4999         change the default face if SET-FONT argument is non-nil (Bug#9982).
5001 2012-01-29  Samuel Bronson  <naesten@gmail.com>  (tiny change)
5003         * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
5005 2012-01-29  Syver Enstad  <syver.enstad@cisco.com>  (tiny change)
5007         * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
5008         breakpoints in files outside current directory (Bug#6098).
5010 2012-01-29  Chong Yidong  <cyd@gnu.org>
5012         * progmodes/python.el: Require ansi-color at top-level.
5014         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
5015         Define and use in Emacs Lisp mode (Bug#9360).
5016         (lisp-mode-abbrev-table): Add doc.
5017         (lisp-mode-variables): Don't set local-abbrev-table.
5018         (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
5020 2012-01-28  Roland Winkler  <winkler@gnu.org>
5022         * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
5024 2012-01-28  Roland Winkler  <winkler@gnu.org>
5026         * textmodes/bibtex.el (bibtex-entry-alist): New function.
5027         (bibtex-set-dialect): Use it.  Either set global values of
5028         dialect-dependent variables or bind these variables buffer-locally
5029         (Bug#10254).
5030         (bibtex-mode): Call bibtex-set-dialect via
5031         hack-local-variables-hook.
5032         (bibtex-dialect): Update docstring.
5033         Add safe-local-variable predicate.
5034         (bibtex-entry-alist, bibtex-field-alist): Initialize via
5035         bibtex-set-dialect.
5036         (bibtex-mode-map): Define menu for each dialect.
5037         (bibtex-entry): Fix docstring.
5039 2012-01-28  Chong Yidong  <cyd@gnu.org>
5041         * eshell/esh-arg.el (eshell-quote-argument): New function.
5043         * eshell/esh-ext.el (eshell-invoke-batch-file):
5044         * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
5045         first arg to eshell-parse-command (Bug#10523).
5047 2012-01-28  Drew Adams  <drew.adams@oracle.com>
5049         * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
5050         `default-directory' is non-nil.
5052 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
5054         * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
5055         line that displays system-configuration-options.  (Bug#9924)
5057 2012-01-28  Drew Adams  <drew.adams@oracle.com>
5059         * descr-text.el (describe-char): Show information about POS, in
5060         addition to information about the character at POS.  Improve and
5061         update the doc string.  Change "code point" to "code point in
5062         charset", to avoid confusion with the character's Unicode code
5063         point shown above that.  (Bug#10129)
5065 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
5067         * descr-text.el (describe-char): Show the raw character, not only
5068         its display form at POS.  Suggested by Kenichi Handa <handa@m17n.org>.
5069         See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
5070         for the reasons.
5072 2012-01-28  Phil Hagelberg  <phil@hagelb.org>
5074         * emacs-lisp/package.el (package-install):
5075         Run package-refresh-contents if there is no archive yet (Bug#9798).
5077 2012-01-28  Chong Yidong  <cyd@gnu.org>
5079         * emacs-lisp/package.el (package-maybe-load-descriptor):
5080         New function, split from package-maybe-load-descriptor.
5081         (package-maybe-load-descriptor): Use it.
5082         (package-download-transaction): Fully load required packages
5083         inside the loop, so that `require' calls work (Bug#10593).
5084         (package-install): No need to call package-initialize now.
5086 2012-01-28  Chong Yidong  <cyd@gnu.org>
5088         * simple.el (deactivate-mark): Doc fix (Bug#8614).
5090         * tooltip.el (tooltip-mode): Doc fix.
5091         (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
5093         * frame.el (set-cursor-color): Doc fix (Bug#352).
5095         * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
5096         (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
5098         * cus-edit.el (custom-buffer-create-internal): Fix search button
5099         action (Bug#10542).
5100         (customize-unsaved, customize-saved): Doc fix (Bug#10541).
5102 2012-01-27  Eduard Wiebe  <usenet@pusto.de>
5104         * dired.el (dired-mark-files-regexp):
5105         Include any subdirectory components.  (Bug#10445)
5107 2012-01-27  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
5109         * pcmpl-unix.el (pcmpl-ssh-known-hosts):
5110         Handle [host]:port syntax.  (Bug#10533)
5112 2012-01-27  Alex Harsanyi  <harsanyi@mac.com>
5114         * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
5116 2012-01-26  Glenn Morris  <rgm@gnu.org>
5118         * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
5119         * term.el (term-raw-escape-map): Use Control-X-prefix.
5120         * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map.  (Bug#10566)
5122 2012-01-25  Martin Rudalics  <rudalics@gmx.at>
5124         * window.el (window-state-get, window--state-get-1): Don't deal
5125         with fixed-sizeness of windows.  Simplify code.
5127 2012-01-25  Jérémy Compostella  <jeremy.compostella@gmail.com>
5129         * window.el (window--state-get-1, window--state-put-2):
5130         Don't save and restore the mark.
5132 2012-01-25  Chong Yidong  <cyd@gnu.org>
5134         * custom.el (custom-variable-p): Doc fix.
5136 2012-01-25  Glenn Morris  <rgm@gnu.org>
5138         * dired.el (dired-goto-file): Handle some of the more common
5139         characters that `ls -b' escapes.  (Bug#10596)
5141         * progmodes/compile.el (compilation-next-error-function):
5142         Respect compilation-first-column in the "*compilation*" buffer.
5143         * progmodes/grep.el (grep-first-column): New variable.  (Bug#10594)
5145         * vc/vc.el (vc-modify-change-comment): Scoping fix.  (Bug#10513)
5147 2012-01-24  Glenn Morris  <rgm@gnu.org>
5149         * pcmpl-gnu.el (pcomplete/tar): Handle " - ".  (Bug#10457)
5151 2012-01-24  Julien Danjou  <julien@danjou.info>
5153         * color.el (color-rgb-to-hsl): Fix value computing.
5154         (color-hue-to-rgb): New function.
5155         (color-hsl-to-rgb): New function.
5156         (color-clamp, color-saturate-hsl, color-saturate-name)
5157         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5158         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
5160 2012-01-24  Glenn Morris  <rgm@gnu.org>
5162         * vc/vc-rcs.el (vc-rcs-create-tag):
5163         * vc/vc-sccs.el (vc-sccs-create-tag):
5164         Fix argument spec to be what vc-create-tag expects.  (Bug#10515)
5166 2012-01-23  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
5168         * eshell/esh-util.el (eshell-read-hosts-file):
5169         Skip comment lines.  (Bug#10549)
5171         * eshell/em-unix.el (pcomplete/ssh): Remove.  (Bug#10548)
5173 2012-01-23  Juanma Barranquero  <lekktu@gmail.com>
5175         * subr.el (display-delayed-warnings): Doc fix.
5176         (collapse-delayed-warnings): New function to collapse identical
5177         adjacent warnings.
5178         (delayed-warnings-hook): Add it.
5180 2012-01-22  Michael Albinus  <michael.albinus@gmx.de>
5182         * net/tramp.el (tramp-action-login): Set connection property "login-as".
5184         * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
5185         (tramp-default-user-alist): Don't add "pscp".
5186         (tramp-do-copy-or-rename-file-out-of-band): Use connection
5187         property "login-as", if set.  (Bug#10530)
5189 2012-01-21  Michael Albinus  <michael.albinus@gmx.de>
5191         * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
5192         "plink1" and "psftp".  (Bug#10530)
5194 2012-01-21  Kenichi Handa  <handa@m17n.org>
5196         * international/mule-cmds.el (prefer-coding-system): Show a
5197         warning message if the default value of file-name-coding-system
5198         was not changed.
5200 2012-01-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
5202         * windmove.el (windmove-reference-loc):
5203         Fix windmove-reference-loc miscalculation.
5205 2012-01-21  Jay Belanger  <jay.p.belanger@gmail.com>
5207         * calc/calc-units.el (math-put-default-units): Don't use "1" as a
5208         default unit.
5210 2012-01-21  Glenn Morris  <rgm@gnu.org>
5212         * international/mule.el (auto-coding-alist): Add .tbz.
5214         * files.el (local-enable-local-variables): Doc fix.
5215         (inhibit-local-variables-regexps): Rename from
5216         inhibit-first-line-modes-regexps.  Keep old name as obsolete alias.
5217         Doc fix.  Add some extensions from auto-coding-alist.
5218         (inhibit-local-variables-suffixes):
5219         Rename from inhibit-first-line-modes-suffixes.  Doc fix.
5220         (inhibit-local-variables-p):
5221         New function, extracted from set-auto-mode-1.
5222         (set-auto-mode): Doc fix.  Respect inhibit-local-variables-regexps.
5223         (set-auto-mode-1): Doc fix.  Use inhibit-local-variables-p.
5224         (hack-local-variables): Doc fix.  Make the mode-only case
5225         respect enable-local-variables and friends.
5226         Respect inhibit-local-variables-regexps for file-locals, but
5227         not for directory-locals.
5228         (set-visited-file-name):
5229         Take account of inhibit-local-variables-regexps.
5230         Whether it applies may change as the file name is changed.
5231         * jka-cmpr-hook.el (jka-compr-install):
5232         * jka-compr.el (jka-compr-uninstall):
5233         Update for inhibit-first-line-modes-suffixes name change.
5235 2012-01-20  Martin Rudalics  <rudalics@gmx.at>
5237         * help-macro.el (make-help-screen): Temporarily restore original
5238         binding for minor-mode-map-alist (Bug#10454).
5240 2012-01-19  Julien Danjou  <julien@danjou.info>
5242         * color.el (color-name-to-rgb): Use the white color to find the max
5243         color component value and return correctly computed values.
5244         (color-name-to-rgb): Add missing float conversion for max value.
5246 2012-01-19  Martin Rudalics  <rudalics@gmx.at>
5248         * window.el (window--state-get-1, window-state-get): Do not use
5249         special state value for window-persistent-parameters.
5250         Rename argument IGNORE to WRITABLE.  Rewrite doc-string.
5251         (window--state-put-2): Reset all window parameters to nil before
5252         assigning values of persistent parameters.
5254 2012-01-18  Alan Mackenzie  <acm@muc.de>
5256         Eliminate sluggishness and hangs in fontification of "semicolon
5257         deserts".
5259         * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
5260         Change value 10000 -> 3000.
5261         (c-state-safe-place): Reformulate so it doesn't stack up an
5262         infinite number of wrong entries in c-state-nonlit-pos-cache.
5263         (c-determine-limit-get-base, c-determine-limit): New functions to
5264         determine backward search limits disregarding literals.
5265         (c-find-decl-spots): Amend commenting.
5266         (c-cheap-inside-bracelist-p): New function which detects "={".
5268         * progmodes/cc-fonts.el
5269         (c-make-font-lock-BO-decl-search-function): Give a limit to a
5270         backward search.
5271         (c-font-lock-declarations): Fix an occurrence of point being
5272         undefined.  Check additionally for point being in a bracelist or
5273         near a macro invocation without a semicolon so as to avoid a
5274         fruitless time consuming search for a declarator.  Give a more
5275         precise search limit for declarators using the new
5276         c-determine-limit.
5278 2012-01-18  Glenn Morris  <rgm@gnu.org>
5280         * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
5281         (set-auto-mode): Doc fixes.
5283 2012-01-17  Glenn Morris  <rgm@gnu.org>
5285         * isearch.el (search-nonincremental-instead): Fix doc typo.
5287         * dired.el (dired-insert-directory): Handle newlines in directory name.
5288         (dired-build-subdir-alist): Unescape newlines in directory name.
5290 2012-01-17  Michael Albinus  <michael.albinus@gmx.de>
5292         * net/tramp.el (tramp-local-end-of-line): New defcustom.
5293         (tramp-action-login, tramp-action-yesno, tramp-action-yn)
5294         (tramp-action-terminal): Use it.  (Bug#10530)
5296 2012-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
5298         * minibuffer.el (completion--replace): Strip properties (bug#10062).
5300 2012-01-16  Martin Rudalics  <rudalics@gmx.at>
5302         * window.el (window-state-ignored-parameters): Remove variable.
5303         (window--state-get-1): Rename argument MARKERS to IGNORE.
5304         Handle persistent window parameters.  Make copy of clone-of
5305         parameter only if requested.  (Bug#10348)
5306         (window--state-put-2): Install a window parameter only if it has
5307         a non-nil value or an existing parameter shall be overwritten.
5309 2012-01-15  Michael Albinus  <michael.albinus@gmx.de>
5311         * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
5313 2012-01-14  Eli Zaretskii  <eliz@gnu.org>
5315         * info.el (Info-toc-build): If the Info file has no "Up" pointer,
5316         don't pass the (nil) value of `upnode' to string-match.
5318 2012-01-14  Chong Yidong  <cyd@gnu.org>
5320         * startup.el (command-line): Fix X resource class for cursorColor.
5321         Fix values recognized by the cursorBlink resource.
5323 2012-01-14  Paul Eggert  <eggert@cs.ucla.edu>
5325         * epg.el (epg--make-temp-file): Avoid permission race condition
5326         when running on old Emacs versions (bug#10403).
5328 2012-01-14  Glenn Morris  <rgm@gnu.org>
5330         * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
5332 2012-01-13  Alan Mackenzie  <acm@muc.de>
5334         Fix filling for when filladapt mode is enabled.
5336         * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
5337         c-mask-paragraph, pass in `fill-paragraph' rather than
5338         `fill-region-as-paragraph'.  (This is a reversion of a previous
5339         change.)
5340         * progmodes/cc-mode.el (c-basic-common-init):
5341         Make fill-paragraph-handle-comment buffer local and set it to nil.
5343 2012-01-13  Glenn Morris  <rgm@gnu.org>
5345         * dired.el (dired-switches-escape-p): New function.
5346         (dired-insert-directory): Use dired-switches-escape-p.
5347         (dired-get-filename): Undo "\ " quoting if needed.  (Bug#10469)
5349         * find-dired.el (find-ls-option): Doc fix.  (Bug#10262)
5351 2012-01-12  Glenn Morris  <rgm@gnu.org>
5353         * mail/sendmail.el (mail-mode): Update paragraph-separate for
5354         changes in adaptive-fill-regexp.  (Bug#10276)
5356 2012-01-11  Alan Mackenzie  <acm@muc.de>
5358         Fix Emacs bug #10463 - put `widen's around the critical spots.
5360         * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
5361         widen around each invocation of c-state-pp-to-literal.  Remove an
5362         unused let variable.
5364 2012-01-11  Glenn Morris  <rgm@gnu.org>
5366         * dired-aux.el (dired-do-shell-command): Fix */? logic.  (Bug#6561)
5367         Doc fix.
5369 2012-01-10  Chong Yidong  <cyd@gnu.org>
5371         * net/network-stream.el (network-stream-open-starttls):
5372         Avoid emitting a confusing error message when the server gives a bad
5373         response to the capability command.
5375 2012-01-10  Glenn Morris  <rgm@gnu.org>
5377         * mail/unrmail.el (unrmail): Tweak previous change.
5379 2012-01-09  Chong Yidong  <cyd@gnu.org>
5381         * custom.el (custom-safe-themes): Use SHA-256 for hashing.
5383 2012-01-08  Alan Mackenzie  <acm@muc.de>
5385         Optimise font locking in long enum definitions.
5387         * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
5388         arm to a cond form to handle enums.
5389         * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
5390         * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
5392 2012-01-07  Paul Eggert  <eggert@cs.ucla.edu>
5394         * files.el (move-file-to-trash): Preserve default file modes on error.
5395         (Bug#10401)
5397 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5399         * faces.el (set-face-attribute): Clarify the meaning of the nil
5400         frame (bug#10294).
5402         * subr.el (with-selected-frame): Mention that the selected frame
5403         is restored (bug#9980).
5405         * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
5406         (bug#9759).
5408         * mail/smtpmail.el (password-cache-add): Remove unused declaration.
5409         (password-read): Don't autoload unused function.
5411 2012-01-07  Juanma Barranquero  <lekktu@gmail.com>
5413         * progmodes/which-func.el (which-func-mode): Turn into a
5414         non-interactive function and mark as obsolete (bug#10428).
5416 2012-01-06  Chong Yidong  <cyd@gnu.org>
5418         * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
5419         (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
5420         functions, along with 1 and -1.
5422 2012-01-06  Eli Zaretskii  <eliz@gnu.org>
5424         * time.el (display-time-load-average)
5425         (display-time-default-load-average): Doc fixes.  See the thread
5426         starting at
5427         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
5428         for the details.
5430 2012-01-06  Glenn Morris  <rgm@gnu.org>
5432         * mail/unrmail.el (unrmail): Give an explicit error if the input file
5433         has no messages.  (Bug#10377)
5435         * info.el (Info-mode-map): Bind e to end-of-buffer, rather
5436         than Info-edit.  (Bug#10385)
5438         * time.el (display-time-load-average, display-time-next-load-average):
5439         Doc fixes.
5441         * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
5442         local setting of buffer-read-only to the input buffer.  (Bug#10419)
5444         * calendar/calendar.el (calendar-mode):
5445         Locally set scroll-margin to 0.  (Bug#10379)
5447 2012-01-06  Ulrich Mueller  <ulm@gentoo.org>
5449         * play/doctor.el (doctor-death): Escape "," characters.  (Bug#10370)
5451 2012-01-05  Glenn Morris  <rgm@gnu.org>
5453         * eshell/em-unix.el (diff-no-select): Autoload it.
5454         (eshell/diff): Use diff-no-select.  (Bug#10420)
5456 2012-01-05  Chong Yidong  <cyd@gnu.org>
5458         * shell.el (shell-dynamic-complete-functions): Revert last change.
5459         (shell-command-completion-function): New function.
5460         (shell-completion-vars): Use it to implement
5461         shell-completion-execonly (Bug#10417).
5463         * custom.el (enable-theme): Don't set custom-safe-themes.
5465         * cus-theme.el (custom-theme-merge-theme):
5466         Ignore custom-enabled-themes and custom-safe-themes.
5468 2012-01-05  Michael R. Mauger  <mmaug@yahoo.com>
5470         * progmodes/sql.el (sql-login-hook): Add hook to respond to the
5471         first prompt in `sql-interacive-mode'.
5472         (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
5473         keywords.
5474         (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
5475         (sql-product-interactive): Bug fix: Set `sql-buffer' in
5476         context of original buffer.  Invoke `sql-login-hook'.
5478 2012-01-04  Eli Zaretskii  <eliz@gnu.org>
5480         * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
5481         letters in cite-prefix.
5483 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5485         * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
5487 2012-01-03  Chong Yidong  <cyd@gnu.org>
5489         * shell.el (shell-dynamic-complete-functions):
5490         Put pcomplete-completions-at-point, so as to try
5491         comint-filename-completion first (Bug#10417).
5493 2012-01-02  Richard Stallman  <rms@gnu.org>
5495         * battery.el (battery-status-function):
5496         Detect when to use battery-yeeloong-sysfs.
5497         (battery-echo-area-format): Add string for Yeeloong.
5498         (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
5499         (battery-yeeloong-sysfs): New function.
5501 2012-01-02  Chong Yidong  <cyd@gnu.org>
5503         * dirtrack.el (dirtrack-list): Eliminate unused third element.
5504         (dirtrack): Merge code for handling relative filenames in prompt
5505         from shell-dir-cookie-watcher.
5506         (dirtrack-debug-message): New arg to avoid excess format calls.
5508         * shell.el (shell-dir-cookie-re): Variable deleted.
5509         (shell-dir-cookie-watcher): Function deleted.
5510         (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
5511         with dirtrack-mode.
5513 2012-01-01  Eli Zaretskii  <eliz@gnu.org>
5515         * term/w32-win.el (dynamic-library-alist) <gnutls>:
5516         Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
5517         libgnutls-26.dll.
5519 2011-12-31  Andreas Schwab  <schwab@linux-m68k.org>
5521         * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
5523 2011-12-31  Eli Zaretskii  <eliz@gnu.org>
5525         * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
5526         headers of non-MIME messages, when rmail-enable-mime is non-nil.
5528 2011-12-29  Michael Albinus  <michael.albinus@gmx.de>
5530         * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
5531         also for alternative shells.
5532         (tramp-open-connection-setup-interactive-shell): Check, whether
5533         the shell is a busybox.
5534         (tramp-send-command): Don't suppress multiple prompts for
5535         busyboxes, it hurts.
5537 2011-12-28  Chong Yidong  <cyd@gnu.org>
5539         * progmodes/gdb-mi.el (gdb-get-source-file-list)
5540         (gdb-get-source-file): Move mode line update to
5541         gdb-get-source-file (Bug#10087).
5543 2011-12-25  Chong Yidong  <cyd@gnu.org>
5545         * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
5546         gud-gdb-marker-filter without taking it as an argument.
5547         (gud-gdb-run-command-fetch-lines): Caller changed.
5548         (gud-gdb-completion-function): New variable.
5549         (gud-gdb-completion-at-point): Use it.
5550         (gud-gdb-completions-1): Split from gud-gdb-completions.
5552         * progmodes/gdb-mi.el (gdb-input): Accept command and handler
5553         function as separate arguments.
5554         (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
5555         (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
5556         (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
5557         (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
5558         (gdb-stopped, def-gdb-auto-update-trigger)
5559         (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
5560         (gdb-get-changed-registers, gdb-get-main-selected-frame):
5561         Callers changed.
5562         (gud-gdbmi-completions): New function.
5563         (gdb): Use it for generating the completion table.
5565 2011-12-24  Alan Mackenzie  <acm@muc.de>
5567         Introduce a mechanism to widen the region used in context font
5568         locking.  Use this to protect declarations from losing their contexts.
5570         * progmodes/cc-langs.el (c-before-font-lock-functions):
5571         Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
5572         (c-before-context-fontification-functions): New defvar, a list of
5573         functions to be run just before context (etc.) font locking.
5575         * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
5576         New, functionality extracted from
5577         c-neutralize-syntax-in-and-mark-CPP.
5578         (c-in-after-change-fontification): New variable.
5579         (c-after-change): Set c-in-after-change-fontification.
5580         (c-set-fl-decl-start): Rejig its interface, so it can be called
5581         from both after-change and context fontifying.
5582         (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
5583         New functions.
5584         (c-standard-font-lock-fontify-region-function): New variable.
5585         (c-font-lock-fontify-region): New function.
5587 2011-12-24  Juri Linkov  <juri@jurta.org>
5589         * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
5590         (Bug#10348)
5592 2011-12-23  Michael Albinus  <michael.albinus@gmx.de>
5594         * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
5595         existence of source file.  (Bug#10325)
5597 2011-12-23  Alan Mackenzie  <acm@muc.de>
5599         Fix unstable fontification inside templates.
5601         * progmodes/cc-langs.el (c-before-font-lock-functions):
5602         Newly created from the singular version.  The (c c++ objc) entry now
5603         additionally has c-set-fl-decl-start.  The other languages (apart
5604         from AWK) have that as a single entry.
5606         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
5607         The functionality for "local" declarations has been extracted to
5608         c-set-fl-decl-start.
5610         * progmodes/cc-mode.el (c-common-init, c-after-change):
5611         Changes due to pluralisation of c-before-font-lock-functions.
5612         (c-set-fl-decl-start): New function, extracted from
5613         c-font-lock-enclosing-decls and enhanced.
5615 2011-12-23  Juanma Barranquero  <lekktu@gmail.com>
5617         * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
5619 2011-12-22  Juri Linkov  <juri@jurta.org>
5621         * progmodes/grep.el (rgrep): Fix docstring.  (Bug#10185)
5623 2011-12-22  Chong Yidong  <cyd@gnu.org>
5625         * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
5627 2011-12-21  Drew Adams  <drew.adams@oracle.com>
5629         * files.el (file-remote-p): Fix docstring.  (Bug#10319)
5631 2011-12-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
5633         * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
5635 2011-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
5637         * progmodes/cfengine.el: Add Version.  Improve CFEngine 3.x syntax
5638         highlighting and support.  Fix up comments for capitalization.
5639         (cfengine-mode-debug): New var.
5640         (cfengine3-mode): Change the modeline indicator to "CFE3".
5641         (cfengine3-font-lock-keywords): Improve defun highlighting.
5642         (cfengine2-actions): Rename from `cfengine-actions'.
5643         (cfengine2-font-lock-keywords): Rename from
5644         `cfengine-font-lock-keywords'.
5645         (cfengine2-imenu-expression): Rename from
5646         `cfengine-imenu-expression'.
5647         (cfengine2-outline-level): Rename from `cfengine-outline-level'.
5648         (cfengine2-beginning-of-defun): Rename from
5649         `cfengine-beginning-of-defun'.
5650         (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
5651         (cfengine2-indent-line): Rename from `cfengine-indent-line'.
5652         (cfengine2-mode): Rename from `cfengine-mode'.  Change the
5653         modeline indicator to "CFE2".
5654         (cfengine-mode): Defalias to `cfengine-auto-mode'.
5655         (cfengine-mode-abbrevs): Mark obsolete.
5657 2011-12-21  Chong Yidong  <cyd@gnu.org>
5659         * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
5660         filename argument.
5662 2011-12-20  Martin Rudalics  <rudalics@gmx.at>
5664         * window.el (window-normalize-buffer-to-display): Remove.
5665         (display-buffer): Handle buffer-or-name argument as in Emacs 23.
5667 2011-12-19  Chong Yidong  <cyd@gnu.org>
5669         * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
5670         Don't signal an error in a predicate function; return non-nil.
5671         (vc-dir-mark-file): Move the error here.
5672         (vc-dir-mark-unmark): If acting on the region, keep going if one
5673         of the entries cannot be marked/unmarked.
5674         (vc-dir-mark-all-files): If current entry is a directory, mark
5675         only child files, as documented.
5677 2011-12-19  Vincent Belaïche  <vincentb1@users.sourceforge.net>
5679         * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
5680         branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
5681         addition.
5683 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
5685         * term/ns-win.el (ns-get-selection-internal)
5686         (ns-store-selection-internal): Declare.
5687         (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
5688         Declare as obsolete.
5689         (ns-get-pasteboard, ns-paste-secondary):
5690         Use ns-get-selection-internal.
5691         (ns-set-pasteboard,  ns-copy-including-secondary):
5692         Use ns-store-selection-internal.
5694 2011-12-17  Chong Yidong  <cyd@gnu.org>
5696         * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
5697         (vc-deduce-fileset): Doc fix.
5699 2011-12-16  Andreas Schwab  <schwab@linux-m68k.org>
5701         * calc/calc-misc.el (calc-help): Avoid wrapping help message.
5703 2011-12-13  Sam Steingold  <sds@gnu.org>
5705         * man.el (Man-getpage-in-background): When running under a
5706         window-system, ignore $MANWIDTH and $COLUMNS.
5708 2011-12-15  Kenichi Handa  <handa@m17n.org>
5710         * language/ethio-util.el: Change coding tag to utf-8-emacs.
5711         (setup-ethiopic-environment-internal): Comment out key-binding for
5712         ethio-toggle-punctuation.
5714 2011-12-13  Alan Mackenzie  <acm@muc.de>
5716         Add the switch statement to AWK Mode.
5718         * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
5719         "default" to the keywords regexp.
5721         * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
5722         expression as the rest.
5723         (c-nonlabel-token-key): Allow string literals for AWK.
5724         Refactor for the other modes.
5726         Large brace-block initialisation makes CC Mode slow: Fix.
5727         Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
5728         routines.  Limit backward searching in c-font-lock-enclosing.decl.
5730         * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
5731         pp-state and literal type in addition to the limits.
5732         (c-state-safe-place): New defun, extracted from c-state-literal-at.
5733         (c-state-literal-at): Use the above new defun.
5734         (c-slow-in-literal, c-fast-in-literal): Remove.
5735         (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
5737         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
5738         being in a literal.  Add a limit for backward searching.
5740         * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
5741         c-slow-in-literal.
5743 2011-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5745         * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
5747 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
5749         * window.el (delete-other-windows): Use correct frame in call to
5750         window-with-parameter.
5752 2011-12-12  Daniel Pfeiffer  <occitan@t-online.de>
5754         * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
5755         (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
5756         (makefile-gmake-statements, makefile-makepp-statements):
5757         Use it and add new makepp keywords.
5758         (makefile-makepp-font-lock-keywords): Add new patterns.
5759         (makefile-match-function-end): Match new [...] and [[...]].
5761 2011-12-11  Juanma Barranquero  <lekktu@gmail.com>
5763         * ses.el (ses-call-printer-return, ses-cell-property-get)
5764         (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
5765         (ses-create-cell-variable, ses-reset-header-string)
5766         (ses-cell-set-formula, ses-repair-cell-reference-all)
5767         (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
5768         (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
5769         (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
5770         (ses-aset-with-undo, ses-load, ses-truncate-cell)
5771         (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
5772         (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
5773         (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
5774         (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
5775         (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
5776         (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
5777         (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
5778         (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
5780 2011-12-11  Vincent Belaïche  <vincentb1@users.sourceforge.net>
5782         * ses.el: The overall change is to add cell renaming, that is
5783         setting fancy names for cell symbols other than name matching
5784         "\\`[A-Z]+[0-9]+\\'" regexp .
5785         (ses-create-cell-variable): New defun.
5786         (ses-relocate-formula): Relocate formulas only for cells the
5787         symbols of which are not renamed, i.e. symbols whose names do not
5788         match regexp "\\`[A-Z]+[0-9]+\\'".
5789         (ses-relocate-all): Relocate values only for cells the symbols of
5790         which are not renamed.
5791         (ses-load): Create cells variables as the (ses-cell ...) are read,
5792         in order to check row col consistency with cell symbol name only
5793         for cells that are not renamed.
5794         (ses-replace-name-in-formula): New defun.
5795         (ses-rename-cell): New defun.
5797 2011-12-11  Chong Yidong  <cyd@gnu.org>
5799         * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
5800         for completion via gud-gdb-fetch-lines-filter (Bug#10274).
5802 2011-12-11  Eric Hanchrow  <eric.hanchrow@gmail.com>
5804         * window.el (other-window): Fix docstring.
5806 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
5808         * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
5809         `from' or `to' address before taking its substring.
5810         Fixes incorrect display in Rmail summary buffer whereby an RFC2047
5811         encoded name is chopped in the middle of the encoded string, and
5812         thus displayed encoded.
5814 2011-12-10  Juanma Barranquero  <lekktu@gmail.com>
5816         * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
5818 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
5820         * textmodes/texnfo-upd.el: Update commentary.  Add a warning not
5821         to use texinfo-update-node and commands that call it if the
5822         Texinfo file uses @node lines without next/prev/up pointers.
5823         Correct outdated description about texinfo-master-menu.
5824         (texinfo-all-menus-update, texinfo-master-menu)
5825         (texinfo-update-node, texinfo-every-node-update)
5826         (texinfo-multiple-files-update): Doc fix.  Warn against updating
5827         all the @node lines.
5828         (texinfo-master-menu): Only call texinfo-update-node if the prefix
5829         argument is numeric.  Explain better in the doc string what the
5830         function really does.
5831         (texinfo-insert-master-menu-list): Improve the error message
5832         displayed if there's no menu in the Top node.
5833         (Bug#2975)  See also this thread:
5834         http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
5836 2011-12-09  Manuel Gómez  <mgrojo@gmail.com>  (tiny change)
5838         * speedbar.el (speedbar-supported-extension-expressions):
5839         Add .adb and .ads, commonly used for Ada source code (bug#10256).
5841 2011-12-09  Juanma Barranquero  <lekktu@gmail.com>
5843         * printing.el (pr-mode-alist):
5844         * simple.el (filter-buffer-substring-functions)
5845         (completion-list-insert-choice-function):
5846         * window.el (window-with-parameter, window-atom-root)
5847         (window-sides-slots, window-size-fixed, window-min-delta)
5848         (window-max-delta, window--resize-mini-window)
5849         (window--resize-child-windows-normal, window-tree)
5850         (delete-other-windows, quit-window, split-window)
5851         (display-buffer-record-window, special-display-buffer-names)
5852         (special-display-regexps, special-display-popup-frame)
5853         (same-window-p, split-window-sensibly)
5854         (display-buffer-overriding-action, display-buffer-alist)
5855         (display-buffer-base-action, display-buffer, switch-to-buffer)
5856         (switch-to-buffer-other-window, switch-to-buffer-other-frame)
5857         (fit-window-to-buffer, recenter-positions)
5858         (mouse-autoselect-window-state, mouse-autoselect-window-select):
5859         * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
5860         and remove unneeded backslashes in docstrings.
5862 2011-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5864         * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
5866         * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
5867         (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
5868         end in ".mk".
5869         (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
5870         when reading the makefile (bug#10116).
5872 2011-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5874         * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
5875         (bug#10116).
5877 2011-12-06  Glenn Morris  <rgm@gnu.org>
5879         * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
5881 2011-12-06  Chong Yidong  <cyd@gnu.org>
5883         * progmodes/cc-fonts.el (c-annotation-face): Use defface.
5885 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
5887         * textmodes/table.el (table-shorten-cell): Fix typo.
5889 2011-12-05  Christopher Genovese  <genovese.cr@gmail.com>  (tiny change)
5891         * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
5893 2011-12-05  Eli Zaretskii  <eliz@gnu.org>
5895         * descr-text.el (describe-char): Fix display of strong
5896         right-to-left characters and directional embeddings and overrides.
5898         * simple.el (what-cursor-position): Fix display of codepoints of
5899         strong right-to-left characters.
5901 2011-12-05  Chong Yidong  <cyd@gnu.org>
5903         * faces.el (read-color): Doc fix.
5905 2011-12-05  Glenn Morris  <rgm@gnu.org>
5907         * align.el (align--set-marker): Add doc-string.
5908         Don't try to move something that is not a marker.  (Bug#10216)
5910 2011-12-04  Glenn Morris  <rgm@gnu.org>
5912         * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
5913         overly zealous deletion of trailing whitespace.
5915 2011-12-04  Juanma Barranquero  <lekktu@gmail.com>
5917         * server.el (server-delete-client): On Windows, do not try to delete
5918         the only terminal.
5919         (server-process-filter): On Windows, treat requests for a tty frame as
5920         if they were for a GUI frame if the running server is in GUI mode.
5922 2011-12-03  Glenn Morris  <rgm@gnu.org>
5924         * textmodes/texinfmt.el (batch-texinfo-format): Doc fix.  (Bug#10207)
5926 2011-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5928         * electric.el: Streamline electric-indent's hook.
5929         (electric-indent-chars): Revert to simple list.
5930         (electric-indent-functions): New var.
5931         (electric-indent-post-self-insert-function): Use it.
5933         * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
5934         there's no inferior buffer (bug#10196).
5935         (prolog-consult-compile): Don't use toggle-read-only.
5937 2011-12-02  Michael Albinus  <michael.albinus@gmx.de>
5939         * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
5940         interrupt.  (Bug#10187)
5942 2011-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5944         * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
5945         (bug#9160).
5947         * dired-aux.el (dired-query): Don't assume help-char is modifier-free
5948         (bug#10191).
5950 2011-12-02  Juri Linkov  <juri@jurta.org>
5952         * info.el (Info-search): Display "end of manual" when Isearch
5953         reaches the end of single-file Info manual.  (Bug#9918)
5955 2011-12-02  Eli Zaretskii  <eliz@gnu.org>
5957         * isearch.el (isearch-message-prefix): Run the input method part
5958         of the prompt through bidi-string-mark-left-to-right.  (Bug#10183)
5960 2011-12-02  Juri Linkov  <juri@jurta.org>
5962         * isearch.el (isearch-occur): Use `word-search-regexp' for
5963         `isearch-word'.
5964         (isearch-search-and-update): Add condition for `isearch-word' and
5965         call `word-search-regexp'.  (Bug#10145)
5967 2011-12-01  Glenn Morris  <rgm@gnu.org>
5969         * eshell/em-hist.el (eshell-hist-initialize):
5970         Handle eshell-history-size nil and HISTSIZE set or unset.
5971         (eshell-history-file-name, eshell-history-size): Fix custom type.
5973 2011-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5975         * man.el (Man-completion-table): Fix the lambda case (bug#10168).
5977 2011-12-01  Michael McNamara  <mac@mail.brushroad.com>
5979         * progmodes/verilog-mode.el (verilog-pretty-expr):
5980         Rework verilog-pretty-expr to handle new assignment operators in system
5981         verilog, such as += *= and the like.
5982         (verilog-assignment-operator-re): Regular expression to find the
5983         assigment operator in a verilog assignment.
5984         (verilog-assignment-operation-re): Regular expression to find an
5985         assignment statement for pretty-expr.
5986         (verilog-in-attribute-p): Query returns true if point is in an
5987         attribute context; used to skip these for expression line up from
5988         pretty-expr.
5989         (verilog-in-parameter-p): Query returns true if point is in an
5990         parameter definition context; used to skip these for expression
5991         line up from pretty-expr.
5992         (verilog-in-parenthesis-p): Query returns true if point is in a
5993         parenthetical expression, specifically ( ) but not [ ] or { };
5994         used by pretty-expr.
5995         (verilog-just-one-space): If there is no space, don't add one.
5996         (verilog-get-lineup-indent-2): Specifically skip just attribute
5997         contexts for expression lineup, rather than skipping all
5998         parenthetical expressions.
5999         (verilog-calculate-indent): Fix comment, and fix indent.
6000         (verilog-do-indent): Indent declarations in lists (suggested by
6001         Joachim Lechner).
6002         (verilog-mode-abbrev-table): Populate abbrev mode with the various
6003         skeleton items.
6004         (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
6005         by Alain Mellan).
6007 2011-12-01  Wilson Snyder  <wsnyder@wsnyder.org>
6009         * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
6010         parameters with embedded comments.  Reported by Ray Stevens.
6011         (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
6012         verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
6013         Reported by Tim Holt.
6014         (verilog-auto): Fix AUTOing a upper module then AUTOing module
6015         instantiated by upper module causing wrong expansion until AUTOed a
6016         second time.  Reported by K C Buckenmaier.
6017         (verilog-diff-auto): Fix showing .* as a difference when
6018         `verilog-auto-star-save' off.  Reported by Dan Dever.
6019         (verilog-auto-reset, verilog-read-always-signals)
6020         (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
6021         temporary signals in reset list if
6022         verilog-auto-reset-blocking-in-non is nil, and match assignment
6023         style to each signal's assignment type, bug381.
6024         Reported by Thomas Esposito.
6025         (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
6026         (verilog-uvm-statement-re): Support UVM indentation and
6027         highlighting, with old OVM keywords only.
6028         (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
6029         Support AUTOTIEOFF creating non-wire data types.
6030         Suggested by Jonathan Greenlaw.
6031         (verilog-auto-insert-lisp, verilog-delete-to-paren)
6032         (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
6033         (verilog-inject-sense, verilog-read-inst-pins)
6034         (verilog-read-sub-decls, verilog-read-sub-decls-line):
6035         Fix mismatching parenthesis inside commented out code when deleting
6036         AUTOINST, bug383.  Reported by Jonathan Greenlaw.
6037         (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
6038         non-numeric vector width.  Reported by Alex Reed.
6039         (verilog-auto-ascii-enum): Add "onehot" option to work around not
6040         detecting signals with parameter widths.  Reported by Alex Reed.
6041         (verilog-auto-delete-trailing-whitespace):
6042         With `verilog-auto-delete-trailing-whitespace' remove trailing
6043         whitespace in auto expansion, bug371.  Reported by Brad Dobbie.
6044         (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
6045         Fix verilog-scan-cache corruption when running user AUTO expansion
6046         hooks that call indentation routines.
6047         (verilog-simplify-range-expression): Fix typo ignoring lower case
6048         identifiers.
6049         (verilog-delete-auto): Fix delete-autos to also remove user created
6050         automatics, as long as they start with AUTO.
6051         (verilog-batch-diff-auto, verilog-diff-auto)
6052         (verilog-diff-function): Add `verilog-diff-auto' and bind to
6053         "C-c?"  to report differences in AUTO expansion, ignoring spaces.
6054         (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
6055         (verilog-in-paren-quick, verilog-re-search-backward-quick)
6056         (verilog-re-search-forward-quick, verilog-syntax-ppss):
6057         Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6058         is disabled and its cache will get corrupt, causing AUTOS not to
6059         expand.  Instead use only -quick functions.
6060         (verilog-scan-region): Fix scanning over escaped quotes.
6061         (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
6062         (verilog-re-search-backward-quick)
6063         (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
6064         related functions now ignore strings, to fix misparsing of strings
6065         with magic comments embedded in them.
6066         (verilog-read-auto-template):
6067         Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
6068         Reported by Brad Dobbie.
6069         (verilog-read-auto-template):
6070         Fix 'verilog-auto-inst-template-numbers' with comments.
6071         Reported by Brad Dobbie.
6072         (verilog-auto-inst, verilog-auto-inst-param)
6073         (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
6074         merge conflicts with AUTOINST, bug358.  Reported by Brad Dobbie.
6075         (verilog-auto-inst-template-numbers): Add 'lhs' policy for
6076         debugging templates without merge conflicts, bug357.
6077         Reported by Brad Dobbie.
6078         (verilog-read-auto-template):
6079         Fix verilog-auto-inst-template-numbers with multiple templates.
6080         Reported by Brad Dobbie.
6081         (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
6082         abbrevs so user won't be asked to save.
6083         (verilog-read-auto-lisp-present): Fix to start at beginning of
6084         buffer in case called outside of verilog-auto.
6085         (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
6086         to "X-2".  Reported by Matthew Myers.
6087         (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
6088         all inputs from module templates.  Reported by Leith Johnson.
6089         (verilog-module-inside-filename-p): Fix locating programs as with
6090         modules.
6091         (verilog-auto-inst-port): Fix vl-width expressions when using
6092         verilog-auto-inst-param-value, bug331.  Reported by Julian Gorfajn.
6093         (verilog-decls-get-regs, verilog-decls-get-signals,
6094         verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
6095         verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
6096         verilog-read-decls): Combine reg and wire structures into one var
6097         structure to represent SystemVerilog concepts.
6098         (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
6099         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
6100         (verilog-auto-wire-type, verilog-insert-definition):
6101         Add verilog-auto-wire-type and AUTOLOGIC to support using
6102         SystemVerilog "logic" keyword instead of "wire"/"reg".
6103         (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
6104         to declares outputs that also have assignments (presumably in an
6105         ifdef or generate if so there's not a driver conflict).
6106         Reported by Matthew Myers.
6107         (verilog-auto-declare-nettype, verilog-insert-definition):
6108         Add verilog-auto-declare-nettype to fix declarations using
6109         `default_nettype none.  Reported by Julian Gorfajn.
6110         (verilog-read-always-signals-recurse, verilog-read-decls)
6111         (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
6112         malformed end statement, bug325.  Reported by Joshua Wise and
6113         Andrew Drake.
6114         (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
6115         (verilog-inst-comment-re): Fix not deleting Interfaced comment
6116         when expanding .* in interfaces, bug320.
6117         Reported by Pierre-David Pfister.
6118         (verilog-read-module-name): Fix import statements between module
6119         name and open parenthesis, bug317.
6120         Reported by Pierre-David Pfister.
6121         (verilog-simplify-range-expression): Fix simplification of
6122         multiplications inside AUTOWIRE connections, bug303.
6123         (verilog-auto-inst-port): Support parameter expansion in
6124         multidimensional arrays.
6125         (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
6126         after "assert property".  Reported by Julian Gorfajn.
6127         (verilog-simplify-range-expression): Fix "couldn't merge" errors
6128         with multiplication, bug303.
6129         (verilog-read-decls): Fix parsing of unsigned data types, bug302.
6130         Reported by Jan Frode Lonnum.
6132 2011-11-30  Juanma Barranquero  <lekktu@gmail.com>
6134         * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
6135         (hfy-shell-file-name, hfy-shell):
6136         * international/fontset.el (x-decompose-font-name): Fix typos.
6138 2011-11-29  Ken Brown  <kbrown@cornell.edu>
6140         * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
6141         (gdb-version): Remove defvar.
6142         (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
6143         (gdb-gud-context-command, gdb-non-stop-handler)
6144         (gdb-current-context-command, gdb-stopped): Use it.
6145         (gdb-init-1): Enable pretty printing here.
6146         (gdb-non-stop-handler): Don't enable pretty-printing here.
6147         Check to see if the target supports non-stop mode; if not, turn off
6148         non-stop mode.  Use the following.
6149         (gdb-check-target-async): New defun.
6150         (gud-watch, gdb-stopped): Fix whitespace.
6151         (gdb-get-source-file): Don't try to display the source file if
6152         `gdb-main-file' is nil.
6154 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6156         * align.el: Try to generate fewer markers (bug#10047).
6157         (align--set-marker): New macro.
6158         (align-region): Use it.
6160 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6162         * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
6164 2011-11-29  Chong Yidong  <cyd@gnu.org>
6166         * indent.el (indent-for-tab-command, indent-according-to-mode):
6167         Doc fix.
6168         (indent-region): Doc fix.  Switch nested ifs to equivalent cond.
6170 2011-11-29  Michael Albinus  <michael.albinus@gmx.de>
6172         * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
6173         aware of remote file names.  (Bug#10124)
6175 2011-11-29  Chong Yidong  <cyd@gnu.org>
6177         * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
6179 2011-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6181         * files.el (find-file): Don't use force-same-window (bug#10144).
6182         * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
6183         use pop-to-buffer if the selected window can't be used.
6184         (pop-to-buffer-same-window): Use display-buffer--same-window-action.
6186 2011-11-28  Eli Zaretskii  <eliz@gnu.org>
6188         * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
6189         special-mode-map.
6191 2011-11-28  Chong Yidong  <cyd@gnu.org>
6193         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
6195 2011-11-27  Nick Roberts  <nickrob@snap.net.nz>
6197         * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
6198           gdb-get-source-file-list on gdb-create-source-file-list.
6200 2011-11-26  Eli Zaretskii  <eliz@gnu.org>
6202         * whitespace.el (whitespace-newline): Use a different foreground
6203         color for 16-color light-background displays.
6205 2011-11-24  Chong Yidong  <cyd@gnu.org>
6207         * window.el (display-buffer--special-action): Doc fix.
6209 2011-11-25  Juanma Barranquero  <lekktu@gmail.com>
6211         * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
6212         (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
6213         (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
6214         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
6215         (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
6216         (avl-tree-stack-first):
6217         * emacs-lisp/cconv.el (cconv--analyse-use):
6218         * net/gnutls.el (gnutls-negotiate): Fix typos.
6220 2011-11-24  Glenn Morris  <rgm@gnu.org>
6222         * lpr.el (lpr-windows-system, lpr-lp-system):
6223         * mail/binhex.el (binhex-begin-line):
6224         * progmodes/grep.el (grep-history, grep-find-history):
6225         * textmodes/flyspell.el:
6226         * vc/pcvs-defs.el (cvs-global-menu):
6227         * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
6228         * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
6229         * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
6231         * net/tls.el: Fix case of "GnuTLS".
6233         * paths.el (rmail-file-name): Format doc-string for make-docfile.
6235         * version.el (emacs-build-system): Give it a doc-string.
6237 2011-11-24  Juri Linkov  <juri@jurta.org>
6239         * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
6241 2011-11-24  Glenn Morris  <rgm@gnu.org>
6243         * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
6244         if called on a non-mime message just toggle the headers.  (Bug#8006)
6246 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
6248         * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
6249         (allout-lead-with-comment-string, allout-structure-deleted-hook)
6250         (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
6251         (allout-rebullet-heading, allout-open-sibtopic)
6252         (allout-toggle-current-subtree-encryption)
6253         (allout-toggle-subtree-encryption, allout-encrypt-string)
6254         (allout-next-topic-pending-encryption, allout-adjust-file-variable)
6255         (allout-distinctive-bullets-string, allout-auto-activation):
6256         * window.el (window-normalize-buffer-to-display):
6257         * progmodes/verilog-mode.el (verilog-batch-indent):
6258         * textmodes/bibtex.el (bibtex-field-braces-opt)
6259         (bibtex-field-strings-opt):
6260         * vc/cvs-status.el (cvs-tree-merge):
6261         Fix typos.
6263 2011-11-23  Michael Albinus  <michael.albinus@gmx.de>
6265         * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
6266         `non-essential' to t, in order to avoid remote connections.
6268 2011-11-23  Eli Zaretskii  <eliz@gnu.org>
6270         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6271         On MS-DOS and MS-Windows, compare with loaddefs.el
6272         case-insensitively.
6274 2011-11-23  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
6276         * mail/unrmail.el (unrmail): Always add blank line.  (Bug#7743)
6278 2011-11-23  Glenn Morris  <rgm@gnu.org>
6280         * paths.el (rmail-file-name): Reformat the doc-string so that it
6281         is picked up.
6283         * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
6284         (rmail-auto-file): Ignore case in the "special" field names,
6285         as mail-fetch-field does for all others.
6287         * mail/rmail.el (rmail-forward):
6288         * mail/rmailkwd.el (rmail-set-label):
6289         * mail/rmailout.el (rmail-output, rmail-output-as-seen)
6290         (rmail-output-body-to-file): Give error if no message.  (Bug#10082)
6292         * mail/rmail.el (rmail-current-message): Doc fix.
6294         * mail/rmail.el (rmail-message-filter): Mark as obsolete.  (Bug#2624)
6296 2011-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6298         * server.el (server-eval-and-print): Allow C-g (bug#6585).
6300 2011-11-22  Glenn Morris  <rgm@gnu.org>
6302         * mail/rmailmm.el (test-rmail-mime-handler)
6303         (test-rmail-mime-bulk-handler)
6304         (test-rmail-mime-multipart-handler): Move tests to test/ directory.
6306 2011-11-21  Juri Linkov  <juri@jurta.org>
6308         * calc/calc.el (calc-read-key-sequence):
6309         Let-bind `input-method-function' to nil.  (Bug#10018)
6311 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6313         * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
6314         Tell the caller that the next line needs recomputation, even
6315         though it doesn't start a sexp (bug#10094).
6317 2011-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6319         * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
6321 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6323         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
6324         Use force-same-window.
6326 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
6328         * descr-text.el (describe-char-unicode-data):
6329         * json.el (json-string-escape):
6330         * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
6331         (Footnote-unicode, Footnote-style-p):
6332         * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
6334 2011-11-20  Chong Yidong  <cyd@gnu.org>
6336         * window.el (replace-buffer-in-windows): Restore interactive spec.
6338 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6340         * electric.el (electric-indent-mode): Fix last change (too optimistic).
6342         * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
6343         (byte-compile-global-not-obsolete-vars): New var.
6344         (byte-compile-check-variable, byte-compile-make-obsolete-variable):
6345         Use it.
6346         (byte-compile-warn-obsolete): Align text with the one in *Help*.
6348 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
6350         * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
6351         * progmodes/pascal.el (electric-pascal-equal):
6352         * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
6353         * xml.el (xml-substitute-special): Fix typos.
6355 2011-11-20  Glenn Morris  <rgm@gnu.org>
6357         * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
6358         (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
6359         Doc fixes.
6360         (rmail-decode-mime-charset): Mark as obsolete.
6362         * mail/rmailsum.el (rmail-message-regexp-p-1):
6363         * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
6364         Before using mime functions, check they are set.  (Bug#10077)
6366 2011-11-19  Juri Linkov  <juri@jurta.org>
6368         * info.el (Info-finder-find-node): Use `package--builtins' instead
6369         of `package-alist'.  Use node names formed by the pattern "Keyword "
6370         and the keyword name.
6372 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
6374         * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
6376 2011-11-19  Juri Linkov  <juri@jurta.org>
6378         * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
6379         that calls `revert-buffer' on all Info buffers.  (Bug#9915)
6380         (Info-revert-find-node): Remove let-bindings `old-buffer-name',
6381         `old-history', `old-history-forward'.  Add let-binding
6382         `window-selected'.  Remove calls to `kill-buffer',
6383         `switch-to-buffer' and `Info-mode'.  Set `Info-current-file' to nil
6384         before calling `Info-find-node', so `Info-find-node-2' will reread
6385         the Info file.  Restore window positions only when `window-selected'
6386         is non-nil.
6388 2011-11-19  Juri Linkov  <juri@jurta.org>
6390         * isearch.el (isearch-lazy-highlight-new-loop):
6391         Remove condition `(not isearch-error)'.  (Bug#9918)
6393         * misearch.el (multi-isearch-search-fun): Add condition
6394         `(not bound)' to ignore lazy-highlighting search.
6395         Add the search-failed message "end of multi" when the end of
6396         multi-sequence is reached.  Uncapitalize the search-failed
6397         message "Repeat for next buffer".
6399         * info.el (Info-search): Add the search-failed message
6400         "end of the manual" when the end of the manual is reached
6401         in Isearch mode.
6403 2011-11-19  Juri Linkov  <juri@jurta.org>
6405         * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
6406         Use non-destructive `remove' instead of `delete' because
6407         `Info-history-list' stored to `Info-isearch-initial-history-list' in
6408         `Info-isearch-start' might need to be restored in `Info-isearch-end'.
6410 2011-11-19  Juri Linkov  <juri@jurta.org>
6412         * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
6413         to nil instead of binding `search-ring' and `regexp-search-ring'.
6414         (Bug#9185)
6416 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
6418         * simple.el (line-move): Force movement by logical lines for any
6419         hscrolled window, not only when auto-hscroll-mode is on.
6420         (line-move-visual): Update doc string to that effect.  (Bug#10076)
6422 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
6424         * language/european.el (macintosh): Define as alias for mac-roman.
6426 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
6428         * mail/rmailmm.el (rmail-mime-display-header)
6429         (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
6430         (rmail-mime-entity-segment, rmail-mime-toggle-raw)
6431         (rmail-mime-toggle-hidden, rmail-mime-insert-text)
6432         (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
6433         (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
6434         of a raw aref.
6435         (rmail-mime-entity-segment): To get past the tagline, move forward
6436         2 more lines, to account for the 2 empty lines that precede and
6437         follow the line with the buttons.
6438         (rmail-mime-update-tagline): Move one more line, to get past the
6439         empty line that follows the buttons in the tagline.  (Bug#9520)
6441 2011-11-19  Martin Rudalics  <rudalics@gmx.at>
6443         * window.el (window-max-delta-1, window-min-delta-1)
6444         (window-min-size-1, window-state-get-1, window-state-put-1)
6445         (window-state-put-2): Use "window--" prefix.
6447 2011-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6449         * emacs-lisp/smie.el: Improve warnings and conflict detection.
6450         (smie-warning-count): New var.
6451         (smie-set-prec2tab): Use it.
6452         (smie-bnf->prec2): Improve warnings.  Add docstring.
6453         (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
6454         (smie-bnf--set-class): New function.
6455         (smie-bnf--classify): Rename from smie-bnf-classify.  Rewrite to fix
6456         corner case.
6458         * progmodes/compile.el: Obey compilation-first-column in dest buffer.
6459         (compilation-error-properties, compilation-move-to-column):
6460         Handle compilation-first-column while in the target buffer.
6462         * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
6463         Don't hardcode point-min==1.
6465         * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
6466         (eshell-rewrite-for-command): Remove workaround.
6467         (eshell-do-pipelines, eshell-do-pipelines-synchronously)
6468         (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
6469         * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
6471         * files-x.el (modify-file-local-variable): Obey commenting conventions.
6473 2011-11-17  Glenn Morris  <rgm@gnu.org>
6475         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6476         Ignore buffer-local generated-autoload-file if it is the same
6477         as the global value.  (Bug#10049)
6479 2011-11-17  Juanma Barranquero  <lekktu@gmail.com>
6481         * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
6482         (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
6483         (reftex-toc-previous-heading, reftex-toc-max-level)
6484         (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
6485         (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
6486         (reftex-toc-do-promote, reftex-toc-promote-prepare)
6487         (reftex-toc-promote-action, reftex-toc-extract-section-number)
6488         (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
6489         (reftex-toc-rename-label, reftex-toc-visit-location)
6490         (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
6491         (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
6492         (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
6493         leaving "*toc*" only for references to the buffer.
6495 2011-11-17  Martin Rudalics  <rudalics@gmx.at>
6497         * window.el (window-resize, delete-window, split-window):
6498         Replace window-splits by window-combination-resize.
6499         * cus-start.el (window-splits): Replace by window-combination-resize.
6501 2011-11-17  Glenn Morris  <rgm@gnu.org>
6503         * progmodes/sh-script.el (sh-font-lock-keywords-var):
6504         Make bash entry derive from sh entry, not shell entry.
6506 2011-11-16  Michael Albinus  <michael.albinus@gmx.de>
6508         * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
6509         local file name.
6511 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
6513         * menu-bar.el (menu-bar-file-menu):
6514         * printing.el (pr-ps-utility):
6515         * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
6516         (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
6517         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
6518         (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
6519         (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
6520         (icalendar--convert-cyclic-to-ical)
6521         (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
6522         (icalendar--convert-ical-to-diary)
6523         (icalendar--convert-recurring-to-diary)
6524         (icalendar--convert-non-recurring-all-day-to-diary)
6525         (icalendar-import-format-sample):
6526         * progmodes/idlw-shell.el (idlwave-shell-mode):
6527         * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
6528         (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
6529         (vhdl-ps-print-init): Fix typos.
6531 2011-11-16  Ken Manheimer  <ken.manheimer@gmail.com>
6533         * allout.el, allout-widgets.el (file metadata): Attribute copyright to
6534         FSF and collapse date sequence, obscure author/maintainer email address
6535         better, remove extra version line, track relocation of author's webpage.
6537         * progmodes/python.el (python-pdbtrack-input-prompt)
6538         (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
6539         regular python pdb prompts.  Adjustments shamelessly taken exactly as
6540         suggested in EmacsWiki page (tiny change):
6541         http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
6543 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
6545         * expand.el (expand-pos, expand-index, expand-point):
6546         Remove redundant info from docstring.
6547         (expand-add-abbrevs): Doc fix.
6548         (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
6549         (expand-sample-perl-mode-expand-list): Fix typos.
6551         * net/dbus.el (dbus-event-member-name):
6552         * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
6553         * term/pc-win.el (msdos-create-frame-with-faces):
6554         * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
6556 2011-11-16  Martin Rudalics  <rudalics@gmx.at>
6558         * window.el (split-window, window-state-get-1)
6559         (window-state-put-1, window-state-put-2): Rename occurrences of
6560         window-nest to window-combination-limit.
6561         * cus-start.el (window-nest): Rename to window-combination-limit.
6563 2011-11-16  Chong Yidong  <cyd@gnu.org>
6565         * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
6566         regexp (Bug#10033).
6568 2011-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6570         * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
6571         `completing-read' will remove *Completions* and will preserve
6572         current-buffer for us.
6573         (tmm-add-prompt): Users of *Completions* will always (re)set its
6574         major mode.
6575         (tmm-old-comp-map): Remove.
6577 2011-11-16  Glenn Morris  <rgm@gnu.org>
6579         * mail/rmailedit.el: Require rmailmm when compiling.
6580         (rmail-old-mime-state): New declaration.
6581         (rmail-edit-current-message): If editing a mime message,
6582         edit the "raw" message from the mbox buffer.
6583         (rmail-cease-edit): Handle mime messages.  (Bug#9840)
6585 2011-11-15  Glenn Morris  <rgm@gnu.org>
6587         * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
6588         which wasn't being used.  Add optional arg to force given state.
6589         (rmail-mime): Add optional arg to force given state.
6591 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
6593         * allout.el (allout-encryption-plaintext-sanitization-regexps):
6594         * frame.el (display-mm-dimensions-alist):
6595         * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
6596         (outline-move-subtree-down):
6597         * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
6598         (newsticker--treeview-do-get-node):
6599         * net/quickurl.el (quickurl-list-buffer-name):
6600         * progmodes/dcl-mode.el (dcl-mode):
6601         * progmodes/gdb-mi.el (gdb-mapcar*):
6602         * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
6604 2011-11-15  Glenn Morris  <rgm@gnu.org>
6606         * mail/rmail.el (rmail-file-coding-system): It's only ever used
6607         in a boolean sense, so just make it a boolean, and fix the doc.
6608         (rmail-show-mime-function, rmail-mime-feature)
6609         (rmail-require-mime-maybe): Doc fixes.
6610         (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
6612         * mail/rmailmm.el (rmail-show-mime): Doc fix.
6614 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
6616         * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
6617         (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
6618         (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
6619         (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
6621 2011-11-15  Glenn Morris  <rgm@gnu.org>
6623         * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
6624         (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
6625         (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
6626         (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
6627         (rmail-mime, rmail-show-mime): Doc fixes.
6629         * term/ns-win.el (mode-line-frame-identification):
6630         Leave it alone.  (Bug#10051)
6632         * simple.el (mark-whole-buffer): Doc fix.  (Bug#10023)
6634         * mail/rmailout.el (rmail-output-to-rmail-buffer):
6635         Handle empty buffers.  (Bug#9978)
6637 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
6639         * international/mule.el (define-charset):
6640         * mail/rmailmm.el (rmail-mime-find-header-encoding):
6641         * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
6642         * progmodes/verilog-mode.el (verilog-backward-token):
6643         * textmodes/ispell.el (lookup-words):
6644         * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
6646 2011-11-14  Glenn Morris  <rgm@gnu.org>
6648         * progmodes/executable.el
6649         (executable-make-buffer-file-executable-if-script-p):
6650         Handle file-modes returning nil.
6652         * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
6653         message - not necessary, and causes problems.  (Bug#9831)
6655         * mail/rmailsum.el (rmail-new-summary): Preserve message number.
6657         * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
6659         * mail/rmailsum.el (rmail-summary, rmail-new-summary)
6660         (rmail-new-summary-1): Allow empty summaries.  (Bug#9964)
6661         (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
6663 2011-11-12  Martin Rudalics  <rudalics@gmx.at>
6665         * window.el (window-resize, delete-window): Use window-splits
6666         variable instead of function.
6667         (window-state-get-1, window-state-put-2, window-state-put):
6668         Don't deal with windows' splits status.
6670 2011-11-12  Glenn Morris  <rgm@gnu.org>
6672         * apropos.el (apropos-do-all, apropos-library, apropos-value)
6673         (apropos-documentation): Doc fixes.
6675 2011-11-11  Juanma Barranquero  <lekktu@gmail.com>
6677         * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
6678         * textmodes/sgml-mode.el (html-tag-help): Fix typos.
6680 2011-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6682         * electric.el (electric-indent-post-self-insert-function): Make it
6683         possible for a char to only indent in some circumstances.
6684         (electric-indent-mode): Simplify.
6686 2011-11-11  Martin Rudalics  <rudalics@gmx.at>
6688         * window.el (windows-with-parameter): Remove unused function.
6689         (windows-at-side): Rename to window-at-side-list.
6690         (window-check, window-atom-check, window-atom-check-1)
6691         (window-side-check, window-size-ignore, window-size-fixed-1)
6692         (window-in-direction-2): Prefix with "window--".
6693         (window-tree-1): Rename to window--subtree, fix doc-string.
6695 2011-11-11  Glenn Morris  <rgm@gnu.org>
6697         * subr.el (eval-after-load): If FILE is already loaded,
6698         evaluate FORM before it gets wrapped in more stuff.  (Bug#10009)
6700 2011-11-10  Glenn Morris  <rgm@gnu.org>
6702         * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
6703         Call svn via vc-svn-command rather than vc-do-command.
6704         (vc-svn-command): Add --non-interactive.  (Bug#9993)
6705         (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
6707         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6708         Add toggle-read-only.  (Bug#7292)
6709         * files.el (toggle-read-only): Mention that it should only
6710         be used interactively.  (Bug#10006)
6712 2011-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6714         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6715         Adjust regexp for OCaml warnings.
6717         * electric.el (electric-pair-post-self-insert-function): Let user
6718         turn it off buffer-locally (bug#9932).
6720         * progmodes/python.el (python-beginning-of-statement):
6721         Rewrite (bug#2703).
6723         * progmodes/compile.el: Better handle TABs (bug#9749).
6724         (compilation-internal-error-properties)
6725         (compilation-next-error-function): Obey the target buffer's
6726         compilation-error-screen-columns.
6728 2011-11-09  Juanma Barranquero  <lekktu@gmail.com>
6730         * progmodes/meta-mode.el: Remove obsolete comments.
6731         (meta-right-comment-regexp, meta-ignore-comment-regexp):
6732         Fix typos in docstrings.
6734 2011-11-09  Martin Rudalics  <rudalics@gmx.at>
6736         * window.el (window-size-fixed-p): Rewrite doc-string.
6737         (window-resizable-p): Rename to window--resizable-p.  Update callers.
6738         (window--resizable): New function.  Make all callers of
6739         window-resizable call window--resizable instead.
6740         (window-resizable): Rewrite in terms of window--resizable.
6742 2011-11-08  Glenn Morris  <rgm@gnu.org>
6744         * progmodes/delphi.el (delphi-mode-syntax-table):
6745         Let define-derived-mode define a proper syntax table.  (Bug#9994)
6747 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6749         * window.el: Stay away from defsubst.
6750         (window-list-no-nils): Remove.
6751         (window-state-get-1, window-state-get): Use backquote instead.
6753 2011-11-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6755         * emacs-lisp/find-func.el (find-function-read):
6756         Fix incorrect use of default argument in `completing-read'.
6758 2011-11-08  Martin Rudalics  <rudalics@gmx.at>
6760         * window.el (display-buffer-function, special-display-function):
6761         Mention display-buffer-record-window but do not mention
6762         help-setup parameter in doc-strings.
6763         (window-min-delta): Fix doc-string typo.
6765 2011-11-08  Chong Yidong  <cyd@gnu.org>
6767         * window.el (window-total-height, window-total-width): Doc fix.
6768         (window-body-size): Move from C.
6769         (window-body-height, window-body-width): Move to C.
6771 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6773         * window.el: Make special-display like display-buffer-alist (bug#9532).
6774         (display-buffer--special-action): New function, morphed
6775         from display-buffer--special.
6776         (display-buffer): Use it to handle special-display-buffers at higher
6777         priority (just after display-buffer-alist).
6778         (display-buffer-fallback-action, display-buffer--other-frame-action)
6779         (pop-to-buffer-same-window): Remove display-buffer--special.
6781 2011-11-07  Glenn Morris  <rgm@gnu.org>
6783         * calendar/cal-menu.el (cal-menu-set-date-title):
6784         Do nothing if not in a calendar.  (Bug#9976)
6786 2011-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6788         * files.el (find-file): Always use selected-window.
6790 2011-11-07  Martin Rudalics  <rudalics@gmx.at>
6792         * window.el (window-combinations): Make WINDOW argument
6793         mandatory.  Rewrite doc-string.
6794         (walk-window-subtree, window-atom-check, window-min-delta)
6795         (window-max-delta, window--resize-this-window)
6796         (window--resize-root-window-vertically, window-tree)
6797         (balance-windows, window-state-put): Rewrite doc-strings as to
6798         not mention the term "subwindow".
6799         (window--resize-subwindows-skip-p): Rename to
6800         window--resize-child-windows-skip-p.
6801         (window--resize-subwindows-normal): Rename to
6802         window--resize-child-windows-normal.
6803         (window--resize-subwindows): Rename to
6804         window--resize-child-windows.
6805         (window-or-subwindow-p): Rename to window--in-subtree-p.
6807 2011-11-07  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
6809         * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
6810         Ensure that mbox format messages end in two newlines (Bug#9974).
6812 2011-11-06  Chong Yidong  <cyd@gnu.org>
6814         * window.el (window-combination-p): Function deleted; its
6815         side-effect is not used in any existing code.
6816         (window-combinations, window-combined-p): Call window-*-child
6817         directly.
6819 2011-11-05  Chong Yidong  <cyd@gnu.org>
6821         * window.el (window-valid-p): Rename from window-any-p.
6822         (window-size-ignore, window-state-get): Callers changed.
6823         (window-normalize-window): Rename from window-normalize-any-window.
6824         New arg LIVE-ONLY, replacing window-normalize-live-window.
6825         (window-normalize-live-window): Delete.
6826         (window-combination-p, window-combined-p, window-combinations)
6827         (walk-window-subtree, window-atom-root, window-min-size)
6828         (window-sizable, window-sizable-p, window-size-fixed-p)
6829         (window-min-delta, window-max-delta, window-resizable)
6830         (window-resizable-p, window-full-height-p, window-full-width-p)
6831         (window-current-scroll-bars, window-point-1, set-window-point-1)
6832         (window-at-side-p, window-in-direction, window-resize)
6833         (adjust-window-trailing-edge, maximize-window, minimize-window)
6834         (window-deletable-p, delete-window, delete-other-windows)
6835         (record-window-buffer, unrecord-window-buffer)
6836         (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
6837         (quit-window, split-window, window-state-put)
6838         (set-window-text-height, fit-window-to-buffer)
6839         (shrink-window-if-larger-than-buffer): Callers changed.
6841 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
6843         * mail/rmail.el (rmail-simplified-subject): Decode subject with
6844         rfc2047-decode-string.
6845         (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
6846         warnings.
6848         * window.el (window-body-height, window-body-width): Mention in
6849         the doc string that the return values are in frame's canonical
6850         units.  (Bug#9949)
6852 2011-11-03  Alan Mackenzie  <acm@muc.de>
6854         * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
6855         change in cc-engine.el.
6857 2011-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6859         * window.el (switch-to-buffer): Use `force-same-window' interactively.
6861 2011-11-02  Martin Rudalics  <rudalics@gmx.at>
6863         * window.el (quit-window): Call unrecord-window-buffer after
6864         showing another buffer in the window.  (Bug#9937)
6865         (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
6867 2011-11-02  Juanma Barranquero  <lekktu@gmail.com>
6869         * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
6870         Accept status with more than 9 shelves.  (Bug#9935)
6871         Reported by Colin D Bennett <colin@gibibit.com>.
6873 2011-11-01  Martin Rudalics  <rudalics@gmx.at>
6875         * help.el (with-help-window): Don't reference
6876         temp-buffer-show-specifiers in doc-string.
6878 2011-10-31  Andreas Schwab  <schwab@linux-m68k.org>
6880         * subr.el (keymap--menu-item-with-binding): Ignore item if not a
6881         menu-item.
6883 2011-10-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6885         * whitespace.el: New version 13.2.2.
6886         (whitespace-newline-mode): Disable properly.  Reported by Sarah
6887         <EmacsWiki>.
6889 2011-10-30  Ulf Jasper  <ulf.jasper@web.de>
6891         * net/newst-treeview.el: Remove "Time-stamp".
6892         (newsticker--group-manage-orphan-feeds): Do not call
6893         newsticker--treeview-tree-update.
6894         (newsticker-treeview-update, newsticker-treeview):
6895         Call newsticker--treeview-tree-update if necessary.
6897 2011-10-30  Martin Rudalics  <rudalics@gmx.at>
6899         * window.el (window-iso-combination-p, window-iso-combined-p)
6900         (window-iso-combinations): Remove "iso-" infix.
6901         Suggested by Chong Yidong.
6902         (window-min-size-1, window-size-fixed-1, window-min-delta-1)
6903         (window-max-delta-1, window-resize, window--resize-siblings)
6904         (window--resize-this-window, adjust-window-trailing-edge)
6905         (split-window, balance-windows-1)
6906         (shrink-window-if-larger-than-buffer):
6907         * calendar/calendar.el (calendar-generate-window):
6908         * help.el (resize-temp-buffer-window): Adjust callers accordingly.
6910 2011-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6912         * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
6913         in place (bug#9907).
6914         (eshell-subcommand-arg-values, eshell-rewrite-named-command)
6915         (eshell-rewrite-if-command, eshell-rewrite-for-command)
6916         (eshell-structure-basic-command, eshell-rewrite-while-command)
6917         (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
6918         (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
6919         (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
6920         (eshell-do-pipelines-synchronously, eshell-eval-command):
6921         Use backquotes and prefer setq to set.
6922         (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
6923         (eshell-macrop): Use functionp.
6924         (eshell-do-eval): Handle multiple expressions in `while' body.
6926 2011-10-30  Chong Yidong  <cyd@gnu.org>
6928         * emulation/viper-cmd.el (viper-exec-change): Use push-mark
6929         instead of set-mark (Bug#9810).
6931 2011-10-30  Chong Yidong  <cyd@gnu.org>
6933         * window.el (split-window-below, split-window-right): Rename from
6934         split-window-above-each-other and split-window-side-by-side
6935         respectively.  All callers changed.
6936         (split-window-sensibly, split-window-sensibly): Use them.
6937         (split-window-keep-point): Doc fix.
6939         * isearch.el: Add isearch-scroll property to split-window-below
6940         and split-window-right.
6942         * follow.el (follow-mode):
6943         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
6944         * progmodes/ada-xref.el (ada-gdb-application):
6945         * emulation/vip.el (vip-buffer-in-two-windows):
6946         * image-dired.el (image-dired-dired-with-window-configuration):
6947         * dired-x.el (dired-do-find-marked-files):
6948         * dired.el (dired-pop-to-buffer):
6949         * bs.el (bs--show-with-configuration):
6950         * vc/emerge.el (emerge-setup-windows):
6951         * textmodes/two-column.el (2C-two-columns):
6952         * textmodes/reftex-toc.el (reftex-toc):
6953         * progmodes/gdb-mi.el (gdb-setup-windows):
6954         * progmodes/fortran.el (fortran-window-create):
6955         * net/newst-treeview.el (newsticker--treeview-window-init):
6956         * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
6957         * emulation/tpu-edt.el (tpu-gold-map):
6958         * emulation/crisp.el (crisp-mode-map):
6959         * calendar/calendar.el (calendar-basic-setup): Callers changed.
6961 2011-10-29  Chong Yidong  <cyd@gnu.org>
6963         * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
6965         * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
6967         * textmodes/flyspell.el (flyspell-word): Fix char offset for
6968         forged Ispell output (Bug#7904).
6970         * emacs-lisp/package.el (package-refresh-contents): Add autoload.
6972 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6974         * doc-view.el: Avoid ugly errors about not finding nil.
6975         (doc-view-ghostscript-program, doc-view-dvipdfm-program)
6976         (doc-view-dvipdf-program, doc-view-unoconv-program)
6977         (doc-view-ps2pdf-program, doc-view-pdftotext-program):
6978         Avoid nil or absolute file name as default value.
6979         (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
6981 2011-10-28  Alan Mackenzie  <acm@muc.de>
6983         * progmodes/cc-defs.el (c-version): -> 5.32.2.
6985 2011-10-28  Alan Mackenzie  <acm@muc.de>
6987         Amend the handling of c-beginning/end-of-defun in nested declaration
6988         scopes.
6990         * progmodes/cc-vars.el (c-defun-tactic): Move here from
6991         cc-langs.el.  Change it to a defcustom.
6993         * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
6994         cc-vars.el.
6996         * progmodes/cc-engine.el (c-beginning-of-statement-1):
6997         Prevent "class foo : bar" being spuriously recognized as a label.
6999         * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
7000         Add parameter `inclusive' (to include enclosing braces in the region).
7001         (c-widen-to-enclosing-decl-scope): New function.
7002         (c-while-widening-to-decl-block): New macro.
7003         (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
7004         outward for defun boundaries, and correspondingly change symbol
7005         `respect-enclosure' to `go-outward'.
7006         (c-declaration-limits): Change algorithm to report only the "innermost"
7007         defun's boundaries.
7009 2011-10-28  Deniz Dogan  <deniz@dogan.se>
7011         * net/rcirc.el (rcirc-mode): Use hard newlines.
7013 2011-10-28  Alan Mackenzie  <acm@muc.de>
7015         Amend to indent and fontify macros "which include their own semicolon"
7016         correctly, using the "virtual semicolon" mechanism.
7018         * progmodes/cc-defs.el: Update "virtual semicolon" comments.
7020         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7021         Recode to scan one line at a time rather than having \n and \r
7022         explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
7023         (c-forward-label): Amend for virtual semicolons.
7024         (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
7026         * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
7027         of the new C macros.
7029         * progmodes/cc-langs.el (c-at-vsemi-p-fn):
7030         (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
7031         (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
7032         (c-opt-cpp-macro-define): Make into a full language variable.
7033         (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
7034         AWK Mode (including \n, \r) removed, no longer needed.
7036         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
7037         Invoke c-make-macro-with-semi-re.
7039         * progmodes/cc-vars.el (c-macro-with-semi-re):
7040         (c-macro-names-with-semicolon): New variables.
7041         (c-make-macro-with-semi-re): New function.
7043 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7045         * vc/log-edit.el: Fill empty field rather than adding new one.
7046         (log-edit-add-field): New function.
7047         (log-edit-insert-changelog): Use it.
7049 2011-10-28  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
7051         * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
7053 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7055         * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
7056         (gdb--check-interpreter): New function.
7057         (gdb): Use it.
7059 2011-10-27  Glenn Morris  <rgm@gnu.org>
7061         * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
7062         (least-positive-float, least-negative-float)
7063         (least-positive-normalized-float, least-negative-normalized-float)
7064         (float-epsilon, float-negative-epsilon):
7065         Remove unnecessary declarations.
7067         * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
7068         * emacs-lisp/cl.el (most-positive-float, most-negative-float)
7069         (least-positive-float, least-negative-float)
7070         (least-positive-normalized-float, least-negative-normalized-float)
7071         (float-epsilon, float-negative-epsilon): Add doc-strings,
7072         based on those in cl.texi.
7074         * files.el (set-visited-file-name): If the major-mode changed,
7075         reload the local variables.  (Bug#9796)
7077 2011-10-27  Chong Yidong  <cyd@gnu.org>
7079         * subr.el (change-major-mode-after-body-hook): New hook.
7080         (run-mode-hooks): Run it.
7082         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7083         Use change-major-mode-before-body-hook.
7085         * simple.el (fundamental-mode):
7086         * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
7087         change introducing fundamental-mode-hook.
7089 2011-10-26  Juanma Barranquero  <lekktu@gmail.com>
7091         * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
7093 2011-10-26  Michael Albinus  <michael.albinus@gmx.de>
7095         * ido.el (ido-file-name-all-completions-1): Do not require
7096         tramp.el explicitly.  (Bug#7583)
7098 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7100         * progmodes/octave-mod.el:
7101         * progmodes/octave-inf.el: Update maintainer.
7103 2011-10-26  Chong Yidong  <cyd@gnu.org>
7105         * subr.el (with-wrapper-hook): Rewrite doc.
7107 2011-10-25  Michael Albinus  <michael.albinus@gmx.de>
7109         * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
7110         filenames "/method:foo:".  (Bug#9793)
7112 2011-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7114         * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
7115         (bug#9865).
7117 2011-10-24  Glenn Morris  <rgm@gnu.org>
7119         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.  (Bug#9819)
7121 2011-10-24  Michael Albinus  <michael.albinus@gmx.de>
7123         * notifications.el: Add the requirement of a running D-Bus session
7124         bus to the Commentary.
7126 2011-10-24  Juri Linkov  <juri@jurta.org>
7128         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
7129         `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
7130         (Bug#9364)
7132 2011-10-24  Juri Linkov  <juri@jurta.org>
7134         * info.el (Info-following-node-name-re): Add newline to the list
7135         of allowed characters for leading space.  (Bug#9824)
7137 2011-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7139         * progmodes/octave-inf.el (inferior-octave-mode-map):
7140         Fix C-c C-h binding.
7141         * progmodes/octave-mod.el (octave-help): Remove.
7143 2011-10-23  Michael Albinus  <michael.albinus@gmx.de>
7145         Sync with Tramp 2.2.3.
7147         * net/tramp-cache.el (top): Pacify byte-compiler using
7148         `init-file-user' and `site-run-file'.
7150         * net/trampver.el: Update release number.
7152 2011-10-23  Chong Yidong  <cyd@gnu.org>
7154         * files.el (toggle-read-only): Remove obsolete comment about
7155         version control.
7157         * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
7158         for toggle-read-only.  Note that this hasn't called vc-next-action
7159         since 2008-05-02, though it wasn't documented at the time.
7161         * vc/ediff-init.el (ediff-toggle-read-only-function):
7162         Use toggle-read-only.
7164 2011-10-22  Alan Mackenzie  <bug-cc-mode@gnu.org>
7166         Fix bug #9560, sporadic wrong indentation; improve instrumentation
7167         of c-parse-state.
7169         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
7170         correct faulty logical expression.
7171         (c-parse-state-state, c-record-parse-state-state):
7172         (c-replay-parse-state-state): New defvar/defuns.
7173         (c-debug-parse-state): Use new functions.
7175 2011-10-22  Martin Rudalics  <rudalics@gmx.at>
7177         * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
7178         last fix.  Use window-in-direction correctly.
7180 2011-10-21  Chong Yidong  <cyd@gnu.org>
7182         * progmodes/idlwave.el (idlwave-mode):
7183         * progmodes/vera-mode.el (vera-mode): No need to set
7184         require-final-newline; that's done in prog-mode.
7185         Suggested by Stefan Monnier.
7187 2011-10-21  Martin Rudalics  <rudalics@gmx.at>
7189         * mouse.el (mouse-drag-window-above)
7190         (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
7191         (mouse-drag-mode-line-1, mouse-drag-header-line)
7192         (mouse-drag-vertical-line-rightward-window): Remove.
7193         (mouse-drag-line): New function.
7194         (mouse-drag-mode-line, mouse-drag-header-line)
7195         (mouse-drag-vertical-line): Call mouse-drag-line.
7196         * window.el (window-at-side-p, windows-at-side): New functions.
7198 2011-10-21  Ulrich Mueller  <ulm@gentoo.org>
7200         * tar-mode.el (tar-grind-file-mode):
7201         Fix handling of setuid/setgid, handle sticky bit.  (Bug#9817)
7203 2011-10-21  Chong Yidong  <cyd@gnu.org>
7205         * progmodes/idlwave.el (idlwave-mode):
7206         * progmodes/vera-mode.el (vera-mode):
7207         Use mode-require-final-newline.
7209 2011-10-20  Glenn Morris  <rgm@gnu.org>
7211         * vc/vc.el (vc-next-action): Handle removed directories.  (Bug#9781)
7213 2011-10-20  Christoph Scholtes  <cschol2112@googlemail.com>
7215         * emulation/cua-base.el (cua-set-mark): Fix case of string.
7217 2011-10-20  Chong Yidong  <cyd@gnu.org>
7219         * emulation/cua-base.el (cua-mode):
7220         * mail/footnote.el (footnote-mode):
7221         * mail/mailabbrev.el (mail-abbrevs-mode):
7222         * net/xesam.el (xesam-minor-mode):
7223         * progmodes/bug-reference.el (bug-reference-mode):
7224         * progmodes/cap-words.el (capitalized-words-mode):
7225         * progmodes/compile.el (compilation-minor-mode)
7226         (compilation-shell-minor-mode):
7227         * progmodes/gud.el (gud-tooltip-mode):
7228         * progmodes/hideif.el (hide-ifdef-mode):
7229         * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
7230         * progmodes/subword.el (subword-mode):
7231         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7232         * progmodes/which-func.el (which-function-mode):
7233         * term/tvi970.el (tvi970-set-keypad-mode):
7234         * term/vt100.el (vt100-wide-mode):
7235         * textmodes/flyspell.el (flyspell-mode):
7236         * textmodes/ispell.el (ispell-minor-mode):
7237         * textmodes/nroff-mode.el (nroff-electric-mode):
7238         * textmodes/paragraphs.el (use-hard-newlines):
7239         * textmodes/refill.el (refill-mode):
7240         * textmodes/reftex.el (reftex-mode):
7241         * textmodes/rst.el (rst-minor-mode):
7242         * textmodes/sgml-mode.el (html-autoview-mode)
7243         (sgml-electric-tag-pair-mode):
7244         * textmodes/tex-mode.el (latex-electric-env-pair-mode):
7245         * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
7246         * emulation/crisp.el (crisp-mode):
7247         * emacs-lisp/eldoc.el (eldoc-mode):
7248         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
7249         minor mode behavior.
7251 2011-10-19  Juri Linkov  <juri@jurta.org>
7253         * descr-text.el (describe-char): Add #x2010 and #x2011 to
7254         the list of hard-coded chars with escape-glyph face.
7256 2011-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7258         * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
7260 2011-10-19  Michael Albinus  <michael.albinus@gmx.de>
7262         * net/tramp.el (tramp-connectable-p): Make a stronger check on a
7263         running process.
7265 2011-10-19  Glenn Morris  <rgm@gnu.org>
7267         * vc/vc-bzr.el (vc-bzr-after-dir-status):
7268         Ignore ignored files.  (Bug#9726)
7270 2011-10-19  Chong Yidong  <cyd@gnu.org>
7272         Doc fix for minor modes, stating that an omitted argument enables
7273         the mode unconditionally when called from Lisp.
7275         * abbrev.el (abbrev-mode):
7276         * allout.el (allout-mode):
7277         * autoinsert.el (auto-insert-mode):
7278         * autoarg.el (autoarg-mode, autoarg-kp-mode):
7279         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
7280         (global-auto-revert-mode):
7281         * battery.el (display-battery-mode):
7282         * composite.el (global-auto-composition-mode)
7283         (auto-composition-mode):
7284         * delsel.el (delete-selection-mode):
7285         * desktop.el (desktop-save-mode):
7286         * dired-x.el (dired-omit-mode):
7287         * dirtrack.el (dirtrack-mode):
7288         * doc-view.el (doc-view-minor-mode):
7289         * double.el (double-mode):
7290         * electric.el (electric-indent-mode, electric-pair-mode):
7291         * emacs-lock.el (emacs-lock-mode):
7292         * epa-hook.el (auto-encryption-mode):
7293         * follow.el (follow-mode):
7294         * font-core.el (font-lock-mode):
7295         * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
7296         * help.el (temp-buffer-resize-mode):
7297         * hilit-chg.el (highlight-changes-mode)
7298         (highlight-changes-visible-mode):
7299         * hi-lock.el (hi-lock-mode):
7300         * hl-line.el (hl-line-mode, global-hl-line-mode):
7301         * icomplete.el (icomplete-mode):
7302         * ido.el (ido-everywhere):
7303         * image-file.el (auto-image-file-mode):
7304         * image-mode.el (image-minor-mode):
7305         * iswitchb.el (iswitchb-mode):
7306         * jka-cmpr-hook.el (auto-compression-mode):
7307         * linum.el (linum-mode):
7308         * longlines.el (longlines-mode):
7309         * master.el (master-mode):
7310         * mb-depth.el (minibuffer-depth-indicate-mode):
7311         * menu-bar.el (menu-bar-mode):
7312         * minibuf-eldef.el (minibuffer-electric-default-mode):
7313         * mouse-sel.el (mouse-sel-mode):
7314         * msb.el (msb-mode):
7315         * mwheel.el (mouse-wheel-mode):
7316         * outline.el (outline-minor-mode):
7317         * paren.el (show-paren-mode):
7318         * recentf.el (recentf-mode):
7319         * reveal.el (reveal-mode, global-reveal-mode):
7320         * rfn-eshadow.el (file-name-shadow-mode):
7321         * ruler-mode.el (ruler-mode):
7322         * savehist.el (savehist-mode):
7323         * scroll-all.el (scroll-all-mode):
7324         * scroll-bar.el (scroll-bar-mode):
7325         * server.el (server-mode):
7326         * shell.el (shell-dirtrack-mode):
7327         * simple.el (auto-fill-mode, transient-mark-mode)
7328         (visual-line-mode, overwrite-mode, binary-overwrite-mode)
7329         (line-number-mode, column-number-mode, size-indication-mode)
7330         (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
7331         * strokes.el (strokes-mode):
7332         * time.el (display-time-mode):
7333         * t-mouse.el (gpm-mouse-mode):
7334         * tool-bar.el (tool-bar-mode):
7335         * tooltip.el (tooltip-mode):
7336         * type-break.el (type-break-mode-line-message-mode)
7337         (type-break-query-mode):
7338         * view.el (view-mode):
7339         * whitespace.el (whitespace-mode, whitespace-newline-mode)
7340         (global-whitespace-mode, global-whitespace-newline-mode):
7341         * xt-mouse.el (xterm-mouse-mode): Doc fix.
7343         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7344         Fix autogenerated docstring.
7346 2011-10-19  Juri Linkov  <juri@jurta.org>
7348         * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
7349         by checking environment variables "DESKTOP_SESSION" and
7350         "XDG_CURRENT_DESKTOP".  (Bug#9779)
7352 2011-10-19  Juri Linkov  <juri@jurta.org>
7354         * net/browse-url.el (browse-url-browser-function): Add "Chromium".
7355         (browse-url-chromium-program, browse-url-chromium-arguments):
7356         New defcustoms.
7357         (browse-url-default-browser): Check for `browse-url-chromium' and
7358         call `browse-url-chromium-program'.
7359         (browse-url-chromium): New command.  (Bug#9779)
7361 2011-10-18  Juanma Barranquero  <lekktu@gmail.com>
7363         * facemenu.el (list-colors-duplicates): On Windows, detect more
7364         duplicates by assuming that only colors matching "^System" are
7365         special "system colors".  (Bug#9722)
7367 2011-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7369         * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
7370         to distinguish the author from the committer.
7372 2011-10-18  Michael Albinus  <michael.albinus@gmx.de>
7374         * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
7376 2011-10-18  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
7378         * international/mule.el (sgml-html-meta-auto-coding-function):
7379         Add support for detecting encoding in HTML5 specified only as
7380         <meta charset="UTF-8">.  Implementation just makes http-equiv and
7381         content-type parts from HTML4 encoding string optional.  (Bug#9716)
7383 2011-10-18  Glenn Morris  <rgm@gnu.org>
7385         * vc/vc.el (vc-initial-comment): Mark as obsolete.  (Bug#9745)
7387 2011-10-18  Chong Yidong  <cyd@gnu.org>
7389         * faces.el (cursor): Doc fix.
7391 2011-10-17  Chong Yidong  <cyd@gnu.org>
7393         * font-lock.el (font-lock-maximum-size): Mark as obsolete.
7395 2011-10-17  Ryan Barrett  <emacs@ryanb.org>  (tiny change)
7397         * dirtrack.el (dirtrack): Support shell buffers with path
7398         prefixes, e.g. tramp-based remote shells.  (Bug#9647)
7400 2011-10-17  Teodor Zlatanov  <tzz@lifelogs.com>
7402         * json.el: Bump version to 1.3 and note change in History.
7403         (json-alist-p, json-plist-p): Rewrite to avoid recursion.
7405 2011-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7407         * comint.el (comint-insert-input, comint-send-input)
7408         (comint-get-old-input-default, comint-backward-matching-input)
7409         (comint-next-prompt): Use nil instead of `input' for field property of
7410         past user input (bug#114).
7412         * minibuffer.el (completion--replace): Inherit surrounding properties
7413         (bug#114).
7414         (minibuffer-complete-and-exit): Use it.
7416         * comint.el (comint--table-subvert): Quote the all-completions output
7417         (bug#9160).
7419 2011-10-17  Martin Rudalics  <rudalics@gmx.at>
7421         * ido.el (ido-default-buffer-method): Remove redundant :type entry.
7423         * menu-bar.el (menu-bar-file-menu): Add entry for making new
7424         window on right of selected.  (Bug#9350) Reword other window
7425         entries and separate them from frame entries.
7427 2011-10-15  Glenn Morris  <rgm@gnu.org>
7429         * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
7430         Doc fixes.
7432 2011-10-15  Chong Yidong  <cyd@stupidchicken.com>
7434         * net/network-stream.el (network-stream-open-starttls):
7435         Improve detection of failure due to lack of TLS support.
7437         * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
7438         putting the input text in front and in bold.
7440 2011-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7442         * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
7444         * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
7445         empty buffer.
7447         * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
7448         unread-command-events rather than pushing yet-another event.
7450 2011-10-14  Eli Zaretskii  <eliz@gnu.org>
7452         * mail/sendmail.el (sendmail-query-once): Improve the wording of
7453         the explanation of the possible choices.  Make the options passed
7454         to completing-read shorter.
7456 2011-10-13  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
7458         * textmodes/flyspell.el (flyspell-large-region): Make sure
7459         extended character mode is used if defined (Bug#1339).
7461 2011-10-13  Eli Zaretskii  <eliz@gnu.org>
7463         * simple.el (what-cursor-position): Fix the display of the
7464         character info for LRE, LRO, RLE, and RLO characters by appending
7465         an invisible PDF.
7467 2011-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7469         * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
7470         even in case of error; add debug spec; simplify data flow.
7471         (with-timeout-handler): Remove.
7473 2011-10-12  Michael Albinus  <michael.albinus@gmx.de>
7475         Fix Bug#6019, Bug#9315.
7477         * files.el (set-auto-mode): Call `file-name-sans-versions' for the
7478         complete `buffer-file-name', the local file name part could look
7479         remotely (for example on VMS).
7481         * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
7482         `tramp-run-real-handler'.
7483         (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
7484         already quoted by '"'.
7486         * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
7487         Let `file-name-handler-alist' be nil, the local file name part
7488         could look remotely (for example on VMS).
7490 2011-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7492         * textmodes/flyspell.el (flyspell-word): Move with-local-quit
7493         from here...
7494         (flyspell-post-command-hook): ...to here.
7496 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7498         * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
7499         if not needed.
7500         (sendmail-query-once): Remove OS dependencies.  Make it a 3-way choice
7501         using completion.  Protect against "slow" callers.
7502         Remove the "message hack".
7504 2011-10-11  Juri Linkov  <juri@jurta.org>
7506         * isearch.el (isearch-lazy-highlight-word): New variable.
7507         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
7508         Use it.  (Bug#9727)
7510 2011-10-11  Glenn Morris  <rgm@gnu.org>
7512         * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
7513         like f90-previous-statement does.
7515 2011-10-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7517         * eshell/eshell.el (eshell-command): History should be saved
7518         only in interactive use, to avoid error.
7520 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7522         * minibuffer.el (completion-file-name-table): Fix last change,
7523         i.e. ignore normal errors but not the other ones.
7525 2011-10-10  Martin Rudalics  <rudalics@gmx.at>
7527         * window.el (special-display-buffer-names)
7528         (special-display-regexps): Remove some remnants of earlier
7529         changes from doc-strings.
7530         (quit-windows-on): New function.
7532         * vc/vc.el (vc-revert, vc-rollback):
7533         * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
7534         instead of deleting windows.  (Bug#4557) (Bug#5310) (Bug#5556)
7535         (Bug#6183) (Bug#7074) (Bug#7447)
7537 2011-10-09  Martin Rudalics  <rudalics@gmx.at>
7539         * window.el (frame-auto-hide-function): Add version tag.
7540         (Bug#9699)
7542 2011-10-09  Michael Albinus  <michael.albinus@gmx.de>
7544         * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
7545         condition.
7547 2011-10-09  Leo Liu  <sdl.web@gmail.com>
7549         * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
7550         (Bug#9701)
7552 2011-10-08  Glenn Morris  <rgm@gnu.org>
7554         * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
7555         before the first code statement zero indent.  (Bug#9690)
7557 2011-10-08  Chong Yidong  <cyd@stupidchicken.com>
7559         * simple.el (count-words-region): Always count in the region.
7560         Report the number of lines and characters too.
7561         (count-words): New command, which counts in the buffer if the
7562         region is inactive, as count-words-region used to.
7563         (count-words--message): New function.  Handle plurals.
7564         (count-lines-region): Make it an alias for count-words-region.
7566         * bindings.el (esc-map): Replace count-lines-region with
7567         count-words-region.
7569 2011-10-08  Martin Rudalics  <rudalics@gmx.at>
7571         * window.el (window--delete): Delete dedicated frame
7572         unconditionally when argument KILL is non-nil.  (Bug#9699)
7573         (switch-to-buffer): Fix doc-string typo.
7575 2011-10-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7577         * eshell/eshell.el (eshell-command): Avoid using hooks.
7579 2011-10-07  Chong Yidong  <cyd@stupidchicken.com>
7581         * bindings.el ([M-left],[M-right]): Bind to left-word and
7582         right-word respectively.
7584 2011-10-07  Glenn Morris  <rgm@gnu.org>
7586         * cus-start.el (debug-on-quit): Fix custom type.
7588 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7590         * subr.el (define-key-after): Clarify that the function is not
7591         useful for non-menu keymaps.
7593         * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
7595 2011-10-06  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7597         * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
7598         in current minibuffer (Fix bug with recursive minibuffers).
7600 2011-10-06  Chong Yidong  <cyd@stupidchicken.com>
7602         * progmodes/gdb-mi.el (gdb): Doc fix.
7604 2011-10-05  Martin Rudalics  <rudalics@gmx.at>
7606         * window.el (frame-auto-hide-function): New option replacing
7607         frame-auto-delete.  Suggested by Stefan Monnier.
7608         (window--delete): Call frame-auto-hide-function instead of
7609         investigating frame-auto-delete.
7610         (window-point-1, set-window-point-1): New functions.
7611         (window-in-direction, record-window-buffer, window-state-get-1)
7612         (display-buffer-record-window): Use window-point-1 instead of
7613         window-point.
7614         (set-window-buffer-start-and-point): Use set-window-point-1.
7616 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7618         * emacs-lisp/edebug.el: Heed checkdoc recommendations.
7620 2011-10-05  Glenn Morris  <rgm@gnu.org>
7622         * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
7623         (perl-calculate-indent): Suppress scan errors.  (Bug#2205)
7625 2011-10-05  Leo Liu  <sdl.web@gmail.com>
7627         * subr.el (read-char-choice): Fix argument to buffer-live-p which
7628         works with buffer object.
7630 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7632         * mpc.el (mpc-tool-bar-map): Add labels.
7634 2011-10-04  Glenn Morris  <rgm@gnu.org>
7636         * calendar/holidays.el (calendar-check-holidays): Doc fix.
7638 2011-10-04  Martin Rudalics  <rudalics@gmx.at>
7640         * window.el (window--delete): New function.
7641         (frame-auto-delete): Resuscitate option.
7642         (bury-buffer, replace-buffer-in-windows)
7643         (quit-window): Rewrite using window--delete.
7644         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7645         Pass display-buffer-mark-dedicated to window--display-buffer-2
7646         (Bug#9639).
7648 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7650         * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
7651         returns a list (bug#9554).  Add remote file name completion.
7652         * comint.el (comint--table-subvert): Curry and get quote&unquote
7653         functions as arguments.
7654         (comint--complete-file-name-data): Adjust call accordingly.
7655         * pcomplete.el (pcomplete--table-subvert): Remove.
7656         (pcomplete-completions-at-point): Use comint--table-subvert instead.
7658         * minibuffer.el (completion-table-case-fold): Use currying.
7659         (completion--styles-type, completion--cycling-threshold-type):
7660         New constants.
7661         (completion-styles, completion-category-overrides)
7662         (completion-cycle-threshold): Use them.
7663         * pcomplete.el (pcomplete-completions-at-point): Adjust call to
7664         completion-table-case-fold.
7666 2011-10-03  Stephen Berman  <stephen.berman@gmx.net>
7668         * minibuffer.el (completion-category-overrides): Fix type of styles
7669         and add more user friendly tags (bug#9660).
7671 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7673         * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
7674         (mule-input-method-string): New widget.
7675         (default-input-method, language-info-custom-alist): Use it.
7677 2011-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7679         * pcomplete.el: Require comint.
7680         (pcomplete--common-suffix): Remove.
7681         (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
7682         (pcomplete--table-subvert): Sync with comint--table-subvert.
7683         (pcomplete--entries): Use comint-completion-file-name-table.
7684         * comint.el (comint-unquote-filename): Simplify.
7685         (comint-completion-file-name-table): New function (bug#9616).
7686         (comint--complete-file-name-data): Use it.
7688         * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
7689         (pcmpl-gnu-tar-buffer): Remove.
7690         (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
7691         around.  Make sure pcomplete-suffix-list is only changed temporarily.
7692         Don't look inside the tar's file if it's too large.
7694 2011-10-01  Chong Yidong  <cyd@stupidchicken.com>
7696         * cus-edit.el (custom-mode-map):
7697         * epa.el (epa-key-list-mode-map):
7698         * man.el (Man-mode-map):
7699         * startup.el (splash-screen-keymap):
7700         * simple.el (special-mode-map): Use scroll-up-command and
7701         scroll-down-command.
7703         * progmodes/idlw-help.el (idlwave-help-mode-map):
7704         * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
7705         * net/newst-plainview.el (newsticker-mode-map):
7706         * emulation/ws-mode.el (wordstar-mode-map):
7707         * emulation/vi.el (vi-com-map):
7708         * calc/calc-graph.el (calc-graph-show-dumb):
7709         * term/sun.el (terminal-init-sun):
7710         * term/ns-win.el (global-map):
7711         * progmodes/grep.el (grep-mode-map):
7712         * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
7713         * mail/rmail.el (rmail-mode-map):
7714         * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
7716         * custom.el (custom-safe-themes, load-theme): Treat value of t for
7717         custom-safe-themes as special.
7719 2011-10-01  Julien Danjou  <julien@danjou.info>
7721         * notifications.el (notifications-notify): Fix docstring.
7723 2011-10-01  Per Starbäck  <per@starback.se>
7725         * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call.  (Bug#9643)
7727 2011-09-30  Martin Rudalics  <rudalics@gmx.at>
7729         * startup.el (command-line-1): Fix last fix by inserting
7730         initial-scratch-message into *scratch* before displaying it.
7731         (Bug#9605) and (Bug#9636)
7733 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
7735         * simple.el (line-move): If auto-hscroll-mode is disabled and the
7736         window is hscrolled, move by logical lines.  (Bug#9607)
7737         (line-move-visual): Update the doc string to the above effect.
7739 2011-09-29  Martin Rudalics  <rudalics@gmx.at>
7741         * window.el (display-buffer-record-window): When WINDOW is the
7742         selected window use `point' instead of `window-point'.  (Bug#9626)
7744         * startup.el (command-line-1): Use insert-before-markers when
7745         inserting initial-scratch-message.  (Bug#9605)
7747         * help.el (help-window): Remove variable.
7749 2011-09-29  Glenn Morris  <rgm@gnu.org>
7751         * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
7753 2011-09-29  Juanma Barranquero  <lekktu@gmail.com>
7755         * descr-text.el (describe-char-categories): Accept category
7756         descriptions more than one line long.
7758 2011-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7760         * simple.el (delete-trailing-whitespace): Fix last change.
7762         * progmodes/perl-mode.el (perl-syntax-propertize-function):
7763         Don't confuse "y => 3" as the beginning of a `y' operation.
7765         * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
7766         object has more than 4 slots (bug#9613).
7768 2011-09-28  Juanma Barranquero  <lekktu@gmail.com>
7770         * subr.el (with-output-to-temp-buffer):
7771         * net/quickurl.el (quickurl, quickurl-browse-url):
7772         Fix typos in docstrings.
7774 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
7776         * minibuffer.el (completion-styles)
7777         (completion-category-overrides): Cross reference each other in doc
7778         strings.
7780 2011-09-27  Glenn Morris  <rgm@gnu.org>
7782         * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
7783         to split-string.  (Bug#9606)
7785 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7787         * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
7788         (bug#9615).
7790 2011-09-27  Chong Yidong  <cyd@stupidchicken.com>
7792         * emacs-lisp/package.el (list-packages): Fix echo area message.
7794 2011-09-27  Leo Liu  <sdl.web@gmail.com>
7796         * ido.el (ido-read-internal): Accept cons cell HIST arg.
7798 2011-09-25  Michael Albinus  <michael.albinus@gmx.de>
7800         * net/dbus.el (dbus-unregister-object): Don't release services for
7801         registered signals.  (Bug#9581)
7803 2011-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
7805         * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
7806         function that picks between cfengine 2 and 3 support
7807         automatically.  Update docs accordingly.
7809 2011-09-22  Kenichi Handa  <handa@m17n.org>
7811         * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
7812         ZERO.
7813         (indian-itrans-v5-table-for-tamil): New variable.
7814         (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
7816 2011-09-22  Ken Manheimer  <ken.manheimer@gmail.com>
7818         * allout.el (allout-this-command-hid-stuff): Buffer-local variable
7819         that's true if the current command involved collapsing of text.
7820         It's reset to false at the beginning of the next command.
7821         (allout-post-command-business): Move the cursor to the beginning
7822         of entry if the cursor is hidden and collapsing activity just
7823         happened.
7825 2011-09-24  Chong Yidong  <cyd@stupidchicken.com>
7827         * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
7828         tracking (Bug#9541).
7830 2011-09-24  Ulf Jasper  <ulf.jasper@web.de>
7832         * net/newst-reader.el (newsticker-html-renderer)
7833         (newsticker-show-news): Automatically load html rendering package
7834         if newsticker-html-renderer is set.  Fixes "Warning: defvar ignored
7835         because w3m-fill-column is let-bound" and the error "Symbol's value
7836         as variable is void: w3m-fill-column".
7838 2011-09-24  Michael Albinus  <michael.albinus@gmx.de>
7840         * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
7841         Release services only if they are defined.  (Bug#9581)
7843 2011-09-23  Richard Stallman  <rms@gnu.org>
7845         * textmodes/paragraphs.el (forward-sentence): For backwards case,
7846         distinguish start of paragraph from start of its text.
7848         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
7850         * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
7851         (rmail-generate-viewer-buffer): Put that hook on view buffer.
7852         (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
7854 2011-09-23  Andreas Schwab  <schwab@linux-m68k.org>
7856         * international/mule-diag.el (mule-diag): Insert a newline after
7857         each fontset description.
7859 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7861         * simple.el (delete-trailing-whitespace):
7862         Document last change; simplify.
7864 2011-09-23  Peter J. Weisberg  <pj@irregularexpressions.net>
7866         * simple.el (delete-trailing-whitespace): Also delete
7867         extra newlines at the end of the buffer.
7869         * textmodes/picture.el: Make motion commands obey shift-select-mode.
7870         (picture-newline): Use forward-line so as to ignore fields.
7872 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7874         * subr.el (with-wrapper-hook): Fix edebug spec.
7876 2011-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7878         * simple.el (kill-line): Note effect of `show-trailing-whitespace'
7879         (bug#4538).
7881 2011-09-23  Michael Albinus  <michael.albinus@gmx.de>
7883         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
7884         Fix nasty bug using wrong cached values.
7886 2011-09-23  Alan Mackenzie  <acm@muc.de>
7888         * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
7890 2011-09-23  Chong Yidong  <cyd@stupidchicken.com>
7892         * window.el (pop-to-buffer): Ensure right window is selected if we
7893         chose another frame.
7895 2011-09-22  Eli Zaretskii  <eliz@gnu.org>
7897         * simple.el (what-cursor-position): Use get-char-property-change
7898         and next-single-char-property-change, to be able to show display
7899         properties that come from overlays as well as text properties.
7901 2011-09-22  Chong Yidong  <cyd@stupidchicken.com>
7903         * window.el (pop-to-buffer-same-window): New (reinstated) fun.
7905         * cmuscheme.el (run-scheme, switch-to-scheme):
7906         * cus-edit.el (customize-group, custom-buffer-create)
7907         (customize-browse):
7908         * info.el (info):
7909         * shell.el (shell):
7910         * mail/sendmail.el (mail):
7911         * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
7913 2011-09-22  Richard Stallman  <rms@gnu.org>
7915         * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
7916         move back only to line beg, don't move back over blank lines.
7918 2011-09-22  Michael Albinus  <michael.albinus@gmx.de>
7920         * files.el (copy-directory): Set directory attributes only in case
7921         they could be retrieved from the source directory.  (Bug#9565)
7923 2011-09-22  Dima Kogan  <dkogan@secretsauce.net>  (tiny change)
7925         * progmodes/hideshow.el (hs-looking-at-block-start-p)
7926         (hs-find-block-beginning, hs-hide-level-recursive):
7927         Ignore strings as well as comments.  (Bug#9502)
7929 2011-09-22  Andrew Schein  <andrew@andrewschein.com>  (tiny change)
7931         * progmodes/sql.el (sql-comint-postgres):
7932         Convert port number to a string.  (Bug#9566)
7934 2011-09-22  Martin Rudalics  <rudalics@gmx.at>
7936         * window.el (quit-window): Undedicate window when switching to
7937         previous buffer.  Reported by Thierry Volpiatto
7938         <thierry.volpiatto@gmail.com>.
7939         (special-display-popup-frame): When popping up a new frame reset
7940         its previous buffers to nil.  Simplify code.
7942 2011-09-21  Michael Albinus  <michael.albinus@gmx.de>
7944         * net/tramp.el (tramp-handle-shell-command): Set process sentinel
7945         and process filter, as done also in `shell-command'.
7947 2011-09-21  Martin Rudalics  <rudalics@gmx.at>
7949         * window.el (set-window-buffer-start-and-point):
7950         Call set-window-start with NOFORCE argument t.
7951         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
7952         (quit-window): Reword doc-string.  Handle new format of
7953         quit-restore parameter.  Don't delete window if it has a
7954         previous buffer we can show instead of the present one.
7955         (display-buffer-record-window): Rewrite using a new format for
7956         the quit-restore window parameter
7957         (special-display-popup-frame, display-buffer-same-window)
7958         (display-buffer-reuse-window, display-buffer-pop-up-frame)
7959         (display-buffer-pop-up-window, display-buffer-use-some-window):
7960         Adapt symbol passed to display-buffer-record-window.
7961         * help.el (help-window-setup): Handle new format of quit-restore
7962         parameter.
7964 2011-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7966         * faces.el (face-list): Fix docstring (bug#9564).
7968         * window.el (display-buffer--action-function-custom-type):
7969         Don't include internal functions in the Custom interface.
7971 2011-09-20  Juri Linkov  <juri@jurta.org>
7973         * info.el (Info-history-skip-intermediate-nodes): New defcustom.
7974         (Info-forward-node, Info-backward-node, Info-next-preorder)
7975         (Info-last-preorder): Use it.  (Bug#9528)
7977 2011-09-20  Juri Linkov  <juri@jurta.org>
7979         * info.el (Info-last-preorder): Visit last menu item only when
7980         `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
7982 2011-09-20  Julien Danjou  <julien@danjou.info>
7984         * password-cache.el (password-cache-remove): Remove entries even if the
7985         value is nil, so that password with a nil value (negative caching) is
7986         possible to invalidate.
7988 2011-09-20  Lawrence Mitchell  <wence@gmx.li>
7990         * progmodes/f90.el (f90-break-line): If breaking inside comment delete
7991         all whitespace around breakpoint.  (Bug#9553)
7992         (f90-find-breakpoint): Only break at whitespace inside a comment.
7994 2011-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7996         * minibuffer.el (completion-file-name-table): Keep track of errors.
7997         (completion-table-with-predicate): Handle the case where pred1 is nil.
7998         * pcomplete.el (pcomplete-completions-at-point): Simplify.
8000 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8002         * emacs-lisp/debug.el (debugger-args): Give it a docstring.
8003         (debugger-return-value): Signal an error if the debugging context does
8004         not await any return value.
8006         * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
8007         * image-mode.el (image-toggle-display-text)
8008         (image-toggle-display-image): Stay away from evil `intangible'.
8010 2011-09-19  Leo Liu  <sdl.web@gmail.com>
8012         * replace.el (occur-revert-arguments): Make it permanent-local.
8013         (occur-mode): Don't call font-lock-defontify.
8015 2011-09-19  Chong Yidong  <cyd@stupidchicken.com>
8017         * net/ldap.el (ldap-search-internal): Don't push empty search
8018         result (Bug#9508).
8020 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8022         * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
8024 2011-09-19  Michael Albinus  <michael.albinus@gmx.de>
8026         * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
8027         Suggested by Liam Stitt <stittl@cuug.ab.ca>.
8029 2011-09-18  Juri Linkov  <juri@jurta.org>
8031         * buff-menu.el (Buffer-menu-mode-map):
8032         * dired.el (dired-mode-map):
8033         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
8034         (lisp-interaction-mode-map):
8035         * emacs-lisp/package.el (package-menu-mode-map):
8036         * epa.el (epa-key-list-mode-map):
8037         * menu-bar.el (menu-bar-showhide-tool-bar-menu)
8038         (menu-bar-options-menu):
8039         * outline.el (outline-mode-menu-bar-map):
8040         * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
8041         * vc/vc-dir.el (vc-dir-menu-map):
8042         * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
8043         Capitalize non-function content words in menu item strings.
8045         * dired.el (dired-mode-map): Add menu item for
8046         `image-dired-dired-toggle-marked-thumbs'.
8048 2011-09-18  Juri Linkov  <juri@jurta.org>
8050         * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
8051         to `isearch-case-fold-search' and restore its original value
8052         after the `isearch-mode' call.
8054 2011-09-18  Juri Linkov  <juri@jurta.org>
8056         * progmodes/grep.el (grep-process-setup): Don't check code for 1
8057         because `zgrep' returns 1 for successful matches (bug#9226).
8059 2011-09-18  Juri Linkov  <juri@jurta.org>
8061         * info.el (Info-extract-menu-node-name): Check the second match
8062         for empty string (second test-case of bug#9528).
8063         (Info-last-preorder): Let-bind `Info-history' to nil to not add
8064         intermediate nodes to the history (first test-case of bug#9528).
8066 2011-09-18  Juri Linkov  <juri@jurta.org>
8068         * info.el (Info-mode-syntax-table): New variable.
8069         (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
8071 2011-09-18  Juri Linkov  <juri@jurta.org>
8073         * info.el (Info-file-supports-index-cookies):
8074         Increment line-beginning-position's arg from 3 to 4 because makeinfo
8075         outputs one more line for long file names (bug#4142).
8077 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
8079         * newcomment.el (comment-normalize-vars): If prompting for
8080         comment-start, set comment-start-skip too (Bug#8424).
8082 2011-09-18  Johan BockgÃ¥rd  <bojohan@gnu.org>
8084         * icomplete.el: Fix previous fix of Bug#5849.
8085         (icomplete-mode): Don't set completion-show-inline-help.
8086         (icomplete-minibuffer-setup): Set completion-show-inline-help
8087         locally during icompletion.
8089 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
8091         * woman.el (woman2-process-escapes): Don't delete unrecognized
8092         escapes (Bug#7843).
8094         * files.el (inhibit-first-line-modes-regexps): Add image files.
8095         (hack-local-variables-prop-line): Return nil for malformed
8096         prop-lines (Bug#9044).
8098 2011-09-18  Michael Albinus  <michael.albinus@gmx.de>
8100         * net/tramp.el (top): Don't require 'shell.
8101         (tramp-methods): Fix docstring.
8102         (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8103         Return complete remote file name.  Handle "smb" case.
8104         Use `tramp-tmpdir', if defined for the respective method.
8105         (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
8107         * net/tramp-compat.el (top): Require 'shell.
8109         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8110         (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
8111         `tramp-current-host'.
8112         (tramp-get-remote-tmpdir): Remove.
8114         * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
8115         `tramp-tmpdir' entries.
8116         (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
8117         (tramp-smb-handle-file-attributes): Ignore errors.
8118         (tramp-smb-wait-for-output): Check also for process end.
8120 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8122         * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
8123         when sending QUIT (bug#9312).
8125 2011-09-17  Chong Yidong  <cyd@stupidchicken.com>
8127         * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
8128         (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
8129         occur-mode-display-occurrence.
8130         (occur-edit-mode): Add usage message.
8131         (occur-cease-edit): New command.
8132         (occur-after-change-function): Use text properties to find the
8133         position of the prefix text.
8134         (occur-engine): Set stickiness of prefix text properties.
8136 2011-09-17  Glenn Morris  <rgm@gnu.org>
8138         * progmodes/etags.el (complete-tag):
8139         Fix call to completion-in-region.  (Bug#9526)
8141 2011-09-17  Juri Linkov  <juri@jurta.org>
8143         * textmodes/ispell.el (ispell-word): Add to the error message
8144         the word, ispell program name and current dictionary (bug#9121).
8145         (ispell-tex-arg-end): Capitalize "error" in the error message.
8147 2011-09-17  Andreas Schwab  <schwab@linux-m68k.org>
8149         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
8150         check.  (Bug#4251)
8152 2011-09-17  Juri Linkov  <juri@jurta.org>
8154         * window.el (window-safe-min-height, window-safe-min-width):
8155         Fix typos (followup to bug#9522).
8157 2011-09-17  Sven Joachim  <svenjoac@gmx.de>
8159         * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
8161 2011-09-16  Eli Zaretskii  <eliz@gnu.org>
8163         * simple.el (line-move): If goal-column is set, move by logical
8164         lines, not by display lines.  (Bug#971)
8165         (next-line, previous-line, goal-column, line-move-visual): Doc fix
8166         to reflect the above change.
8168 2011-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8170         * image.el (imagemagick-register-types): Use regexp-opt.
8172 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
8174         * window.el (display-buffer-base-action): Rename from
8175         display-buffer-default-action.  Make default value empty.
8176         (display-buffer-overriding-action): Convert to defvar.
8177         (display-buffer-fallback-action): New var.
8179 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
8181         * emacs-lisp/package.el (package-alist): Fix risky-local-variable
8182         declaration.
8183         (package--add-to-archive-contents): If there is a duplicate entry
8184         with an older version, remove it.
8185         (package-menu-mark-delete, package-menu-mark-install)
8186         (package-menu-mark-unmark): Make unused args optional.
8187         (package-menu-mark-obsolete-for-deletion):
8188         Use package-menu-get-status instead of a regexp search.
8189         (package-menu-get-status): Use tabulated-list-entry.
8190         (package-menu-mark-upgrades): New command.
8191         (package-menu-mode-map): Bind it to U.  Add it to menu bar.
8192         (package-menu-execute): Do installation before deletion.
8193         (package-menu-refresh, package-menu-execute): Use derived-mode-p
8194         instead of checking major-mode.
8195         (package-menu--find-upgrades): New function.
8197 2011-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8199         * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
8200         passwords in the log buffer.
8201         (smtpmail-process-filter): Update the process marker so that the
8202         "broken by peer" status message is inserted in the right place.
8204 2011-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8206         * textmodes/bibtex.el (bibtex-complete-string-cleanup)
8207         (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
8208         bibtex-completion-at-point-function.
8209         (bibtex-completion-at-point-function): Use them.
8211         * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
8213         * mpc.el (mpc-constraints-tag-lookup): New function.
8214         (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
8215         also to browser "album|playlist".
8217 2011-09-14  Juri Linkov  <juri@jurta.org>
8219         * isearch.el (isearch-fail-pos): Add new arg `msg'.  Doc fix.
8220         (isearch-edit-string): Use length of `isearch-string' when
8221         `isearch-fail-pos' returns nil.
8222         (isearch-message): Remove duplicate code and call
8223         `isearch-fail-pos' with arg `t'.
8225 2011-09-14  Chong Yidong  <cyd@stupidchicken.com>
8227         * replace.el (occur-mode-goto-occurrence): Don't force using other
8228         window (Bug#9499).
8230         * dired-aux.el (dired-do-chmod): Don't provide initial input.
8232 2011-09-14  Martin Rudalics  <rudalics@gmx.at>
8234         * window.el (display-buffer-window): Remove.
8235         (display-buffer-record-window): Use help-setup window parameter
8236         instead of variable display-buffer-window.
8237         (display-buffer-function, special-display-buffer-names)
8238         (special-display-function): Mention help-setup parameter instead
8239         of display-buffer-window in doc-string.
8240         * help.el (help-window-setup): New argument help-window.
8241         Use help-window-setup parameter instead of display-buffer-window.
8242         Reword some messages.
8243         (with-help-window): Pass window used for displaying the buffer
8244         to help-window-setup.  Don't set display-buffer-window.
8246 2011-09-13  Glenn Morris  <rgm@gnu.org>
8248         * emacs-lisp/debug.el (debugger-make-xrefs):
8249         Preserve point.  (Bug#9462)
8251 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
8253         * window.el (window-deletable-p): Use next-frame.
8255 2011-09-13  Martin Rudalics  <rudalics@gmx.at>
8257         * window.el (window-auto-delete): Remove.
8258         (window-deletable-p): Remove argument FORCE.  Don't deal with
8259         dedication and previous buffers.
8260         (switch-to-prev-buffer): Don't delete window.
8261         (delete-windows-on): Delete a window's frame if and only if the
8262         window is dedicated.
8263         (replace-buffer-in-windows): Delete buffer's window or frame if
8264         and only if window is dedicated.
8265         (quit-window): Handle quit-restore as before last change.
8266         (bury-buffer): Delete window only if window-deletable-p returns t.
8268 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
8270         * window.el (window-deletable-p): Never delete the last frame on a
8271         given terminal.
8273 2011-09-13  Glenn Morris  <rgm@gnu.org>
8275         * help.el (describe-key-briefly): Copy previous standard-output change.
8277 2011-09-13  PJ Weisberg  <pj@irregularexpressions.net>
8279         * help.el (where-is): Respect non-standard standard-output.  (Bug#9030)
8281 2011-09-13  Glenn Morris  <rgm@gnu.org>
8283         * emacs-lisp/lisp-mode.el (lisp-indent-function):
8284         * progmodes/scheme.el (scheme-indent-function): Doc fixes.
8286 2011-09-12  Chong Yidong  <cyd@stupidchicken.com>
8288         * dired-aux.el (dired-mark-read-string): Don't return default
8289         value on empty input (Bug#9361).
8290         (dired-do-chxxx): Treat empty input for "touch" as no -t option.
8291         Omit initial minibuffer contents.
8292         (dired-do-chmod): Signal an error on empty input.
8293         (dired-mark-read-string): Don't return default on empty input.
8295         * files.el (file-modes-symbolic-to-number): Doc fix.
8297 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8299         * international/mule-cmds.el (ucs-completions): Remove.
8300         (read-char-by-name): Use complete-with-action instead; add metadata.
8302 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
8304         * window.el (display-buffer--action-function-custom-type)
8305         (display-buffer--action-custom-type): New vars.
8306         (display-buffer-alist, display-buffer-default-action)
8307         (display-buffer-overriding-action): Add defcustom types.
8309         * frame.el (delete-other-frames): Doc fix (Bug#276).
8311 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8313         * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
8315 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
8317         Change modes that used same-window-* vars to use switch-to-buffer.
8319         * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
8320         Use switch-to-buffer.
8322         * cus-edit.el (customize-group, custom-buffer-create)
8323         (customize-browse, custom-buffer-create-other-window):
8324         Use switch-to-buffer or switch-to-buffer-other-window.
8326         * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
8327         (Info-prev, Info-up, Info-speedbar-goto-node)
8328         (info-display-manual): Use switch-to-buffer.
8329         (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
8331         * mail/sendmail.el (mail): Use switch-to-buffer.
8332         (mail-recover): Use switch-to-buffer-other-window.
8334         * cmuscheme.el (run-scheme, switch-to-scheme):
8335         * ielm.el (ielm):
8336         * shell.el (shell):
8337         * net/rlogin.el (rlogin):
8338         * net/telnet.el (telnet, rsh):
8339         * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
8341 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
8343         * dired.el (dired-sort-toggle-or-edit): Revert last changes.
8345 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8347         * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
8348         so don't mention it (bug#9301).
8349         (dired-sort-toggle-or-edit): Clarify string further.
8351         * faces.el (face-spec-set-match-display): Make `(type graphic)'
8352         match `x', `w32' and `ns', like the manual says (bug#9029).
8354         * subr.el (eval-after-load): Doc string clarification (bug#9125).
8355         (process-kill-buffer-query-function): Mention the buffer name in
8356         the query.
8358         * image-mode.el (image-next-line): The line parameter is mandatory
8359         (bug#9258).
8361         * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
8362         which can be useful (bug#9301).
8364         * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
8366         * subr.el (match-string): Mention that the current buffer should
8367         be the same as the search was done in (bug#9282).
8369         * facemenu.el: Disable the remove-* commands if the mark isn't
8370         active (bug#9162).
8372 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
8374         * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
8375         of display-buffer.
8376         (Buffer-menu-2-window): Use switch-to-buffer-other-window.
8378         * replace.el (occur-mode-goto-occurrence)
8379         (occur-mode-display-occurrence) Use second arg of pop-to-buffer
8380         and display-buffer.
8382         * mail/reporter.el (reporter-submit-bug-report): Use second arg of
8383         display-buffer.
8385         * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
8386         special-display and same-window variables.
8387         (mail-other-window): Use switch-to-buffer-other-window.
8388         (mail-other-frame): USe switch-to-buffer-other-frame.
8390         * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
8391         Use display-buffer-other-frame.
8392         (gdb-display-gdb-buffer): Use pop-to-buffer.
8394         * progmodes/gud.el (gud-goto-info): Use info-other-window.
8396         * progmodes/python.el: Don't set same-window-buffer-names.
8398         * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
8400         * window.el (display-buffer-alist): Add *Python*.
8402 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
8404         * window.el (display-buffer-alist): Add entry for buffers
8405         previously handled same-window-*.
8406         (display-buffer-alist, display-buffer-default-action)
8407         (display-buffer-overriding-action): Mark as risky.
8408         (display-buffer-alist): Document action function changes.
8409         (display-buffer--same-window-action)
8410         (display-buffer--other-frame-action): New variables.
8411         (switch-to-buffer, display-buffer-other-frame): Use them.
8412         (display-buffer): Rename reuse-frame entry to reusable-frames.
8413         (display-buffer-reuse-selected-window): Function deleted.
8414         (display-buffer-reuse-window): Handle reusable-frames alist entry.
8415         If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
8416         (display-buffer-special): New function.
8417         (display-buffer--maybe-pop-up-frame-or-window): Rename from
8418         display-buffer-reuse-or-pop-window.  Split off special-display
8419         part into display-buffer-special.
8420         (display-buffer-use-some-window): Don't perform any special
8421         pop-up-frames handling.
8422         (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
8423         (display-buffer--maybe-same-window): Rename from
8424         display-buffer-maybe-same-window.
8426         * info.el: Don't set same-window-regexps.
8427         (info-setup): New function.
8428         (info-other-window, info): Call it.
8430         * cus-edit.el: Don't set same-window-regexps.
8431         (customize-group): New argument.
8432         (customize-group-other-window): Use it.
8433         (customize-face, customize-face-other-window): Likewise.
8434         (custom-buffer-create-other-window): Use pop-to-buffer directly.
8436         * net/rlogin.el:
8437         * net/telnet.el:
8438         * progmodes/gud.el: Don't set same-window-regexps.
8440         * cmuscheme.el:
8441         * ielm.el:
8442         * shell.el:
8443         * mail/sendmail.el:
8444         * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
8446 2011-09-10  Juri Linkov  <juri@jurta.org>
8448         * isearch.el (isearch-edit-string): Remove obsolete mention of
8449         `C-w' (`isearch-yank-word-or-char') from docstring.
8450         (isearch-query-replace): Fix typo in docstring (bug#9466).
8452 2011-09-10  Juri Linkov  <juri@jurta.org>
8454         * paren.el (show-paren-function): Don't show escaped parens.
8455         Let-bind `unescaped' to `t' when paren is not escaped.  (Bug#9461)
8457 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
8459         * mail/sendmail.el (mml-to-mime, mml-attach-file)
8460         (mm-default-file-encoding): Remove autoload forms, they are
8461         replaced with autoload cookies in mml.el and mm-encode.el.
8462         (mail-add-attachment): New command.
8463         (mail-mode-map): Add a menu-bar item for mail-add-attachment.
8464         (mail-mode): Mention mail-insert-file and mail-add-attachment in
8465         the doc string.
8466         (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
8468 2011-09-10  Reuben Thomas  <rrt@sc3d.org>
8470         * simple.el (count-words-region): Use buffer if there's no region
8471         (bug#9429).
8473 2011-09-09  Juri Linkov  <juri@jurta.org>
8475         * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
8476         `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
8477         (wdired-isearch-filter-read-only): New function.  (Bug#6362)
8479 2011-09-09  Alan Mackenzie  <acm@muc.de>
8481         * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
8482         spuriously generating `awk-mode-syntax-table'.  (Bug #9448).
8484 2011-09-09  Eli Zaretskii  <eliz@gnu.org>
8486         Fix for Savannah bug#9392.
8487         * simple.el (mail-encode-mml): New defvar.
8489         * mail/rmail.el (mail-encode-mml): Add a defvar.
8490         (rmail-enable-mime-composing): Default to t.
8491         (rmail-forward): Use MIME method of forwarding only if both
8492         rmail-enable-mime-composing and rmail-enable-mime are non-nil.
8493         Set mail-encode-mml non-nil if the MIME method was used.
8495         * mail/sendmail.el (mml-to-mime): Add autoload form.
8496         (mail-encode-mml): Add a defvar.
8497         (mail-mode): Make mail-encode-mml buffer-local and initialize it
8498         to nil.
8499         (mail-send): If mail-encode-mml is non-nil, run the outgoing
8500         message through mml-to-mime, and reset mail-encode-mml to nil.
8502 2011-09-09  Glenn Morris  <rgm@gnu.org>
8504         * woman.el (woman-if-body): When processing an .el block,
8505         do not delete the next .el block as well.  (Bug#9447)
8506         (woman-special-characters): Add oq, cq, and hy characters.
8508 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
8510         * window.el (window-deletable-p): Make sure window is live before
8511         invoking window-prev-buffers.
8513 2011-09-08  Leo Liu  <sdl.web@gmail.com>
8515         * net/rcirc.el (rcirc-cmd-invite): New rcirc command.  (Bug#9453)
8517 2011-09-08  Juri Linkov  <juri@jurta.org>
8519         * progmodes/compile.el (compilation-environment): Make it
8520         a defcustom (bug#8340).
8522 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
8524         * window.el (frame-auto-delete): Rename to window-auto-delete.
8525         Make it control auto-deletion of windows and/or frames.
8526         (window-deletable-p): New argument FORCE.  Rewrite conditions
8527         for deleting window/frame.  (Bug#9419)
8528         (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
8529         Rewrite handling of case when window/frame can be deleted.
8530         (delete-windows-on): Call window-deletable-p with new FORCE
8531         argument t.  (Bug#9456)
8533 2011-09-07  Chong Yidong  <cyd@stupidchicken.com>
8535         * help-mode.el (help-mode): Restore autoload.
8537 2011-09-07  Juri Linkov  <juri@jurta.org>
8539         * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
8540         `compilation-environment'.  Set buffer-local
8541         `compilation-environment' to `thisenv' later after (funcall mode).
8542         (Bug#8340)
8544         * vc/vc-git.el (vc-git-grep): Remove --no-color.  (Bug#9408)
8545         (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
8546         instead of replacing its value.  (Bug#8340)
8548 2011-09-07  Juri Linkov  <juri@jurta.org>
8550         * progmodes/grep.el (grep-regexp-alist): Calculate column positions
8551         based on text properties put by `grep-filter' instead of matching
8552         escape sequences.
8553         (grep-mode): Set buffer-local `compilation-error-screen-columns'
8554         to the value of `grep-error-screen-columns' (bug#9438).
8556 2011-09-07  Juri Linkov  <juri@jurta.org>
8558         * simple.el (next-error-highlight, next-error-highlight-no-select):
8559         Doc fix (bug#9432).
8561 2011-09-07  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
8563         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
8564         Check for null c-opt-block-decls-with-vars-key.  (Bug#9443)
8566 2011-09-07  Leo Liu  <sdl.web@gmail.com>
8568         * net/rcirc.el (rcirc-mode): Conditionally initialize
8569         rcirc-input-ring.
8571 2011-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8573         * emacs-lisp/find-func.el (find-function-C-source): Only set
8574         find-function-C-source-directory after checking that we found a source
8575         file there (bug#9440).
8577 2011-09-06  Alan Mackenzie  <acm@muc.de>
8579         * isearch.el (isearch-other-meta-char): Wherever a key list is
8580         unread, "unread" the prefix arg, too.  This fixes bug #8901.
8582 2011-09-05  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
8584         * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
8586 2011-09-05  Juri Linkov  <juri@jurta.org>
8588         * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
8590 2011-09-05  Juri Linkov  <juri@jurta.org>
8592         * progmodes/grep.el (grep-filter): Avoid incomplete processing by
8593         keeping point where processing of grep matches begins, and
8594         continue to delete remaining escape sequences from the same point.
8595         (grep-filter): Make leading zero optional in "0?1;31m" because
8596         git-grep emits "\033[1;31m" escape sequences unlike expected
8597         "\033[01;31m" as GNU Grep does (bug#9408).
8598         (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
8600 2011-09-05  Juri Linkov  <juri@jurta.org>
8602         * subr.el (y-or-n-p): Capitalize "yes".
8604 2011-09-04  Michael Albinus  <michael.albinus@gmx.de>
8606         * net/tramp.el (top): Require 'shell.  Use `tramp-unload-hook' but
8607         `tramp-cache-unload-hook' where appropriate.
8608         (tramp-methods): Rename `tramp-remote-sh' to
8609         `tramp-remote-shell'.  Add `tramp-remote-shell-args'.
8610         (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
8612         * net/tramp-sh.el (top): Don't require 'shell.
8613         (tramp-methods): Add `tramp-remote-shell' and
8614         `tramp-remote-shell-args' entries.
8615         (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
8616         (tramp-sh-handle-shell-command): Remove.
8617         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
8618         Use `tramp-remote-shell'.
8620 2011-09-03  Chong Yidong  <cyd@stupidchicken.com>
8622         * mail/sendmail.el (sendmail-query-once-function): Delete.
8623         (sendmail-query-once): Save directly to send-mail-function.
8624         Update message-send-mail-function too.
8626         * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
8628 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
8630         * progmodes/python.el (python-mode-map): Use correct function to
8631         start python interpreter from menu-bar (as reported by Geert
8632         Kloosterman).
8633         (inferior-python-mode-map): Fix typo.
8634         (python-shell-map): Remove.
8636 2011-09-03  Deniz Dogan  <deniz@dogan.se>
8638         * net/rcirc.el (rcirc-print): Simplify code for
8639         rcirc-scroll-show-maximum-output.  There is no need to walk
8640         through all windows to find the right one.
8642 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
8644         * help.el (help-return-method): Doc fix.
8646 2011-09-03  Martin Rudalics  <rudalics@gmx.at>
8648         * window.el (window-deletable-p): Don't return a non-nil value
8649         when there's a buffer that was shown in the window before.
8650         (Bug#9419)
8651         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8652         Set window's previous buffers to nil.
8654 2011-09-03  Eli Zaretskii  <eliz@gnu.org>
8656         * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
8657         newline before and after the tag line, so it doesn't interfere
8658         with determining the paragraph direction of bidirectional text.
8660 2011-09-03  Leo Liu  <sdl.web@gmail.com>
8662         * files.el (find-file-not-true-dirname-list): Remove.  (Bug#9422)
8664 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
8666         * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
8667         (pop-to-buffer): Change interactive spec.  Pass second argument
8668         directly to display-buffer.
8669         (display-buffer): Fix interactive spec.  Use functionp to
8670         distinguish between a function and a list of functions.
8672         * abbrev.el (edit-abbrevs):
8673         * arc-mode.el (archive-extract):
8674         * autoinsert.el (auto-insert):
8675         * bookmark.el (bookmark-bmenu-list):
8676         * files.el (find-file):
8677         * view.el (view-buffer):
8678         * progmodes/compile.el (compilation-goto-locus):
8679         * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
8681 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
8683         * window.el (display-buffer-alist): Doc fix.
8684         (display-buffer): Add docstring.  Don't treat
8685         display-buffer-default specially.
8686         (display-buffer-reuse-selected-window)
8687         (display-buffer-same-window, display-buffer-maybe-same-window)
8688         (display-buffer-reuse-window, display-buffer-pop-up-frame)
8689         (display-buffer-pop-up-window)
8690         (display-buffer-reuse-or-pop-window)
8691         (display-buffer-use-some-window): New functions.
8692         (display-buffer-default-action): Use them.
8693         (display-buffer-default): Delete.
8694         (pop-to-buffer-1): Fix choice of actions.
8696 2011-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8698         * minibuffer.el (completion--insert-strings): Don't get confused by
8699         completion entries that end with an LF char.
8701 2011-09-01  Eli Zaretskii  <eliz@gnu.org>
8703         * window.el (frame-auto-delete, window-deletable-p): Doc fix.
8705 2011-09-01  Chong Yidong  <cyd@stupidchicken.com>
8707         * window.el (display-buffer): Restore interactive spec.
8708         (display-buffer-same-window, display-buffer-other-window):
8709         New functions.
8710         (pop-to-buffer-1): New function.  Use the above.
8711         (pop-to-buffer, pop-to-buffer-same-window): Use it.
8712         (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
8714         * view.el (view-buffer-other-window, view-buffer-other-frame):
8715         Just use pop-to-buffer.
8717 2011-09-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
8719         * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories.  (Bug#9391)
8721 2011-09-01  Wilfred Hughes  <wilfred@potatolondon.com>  (tiny change)
8723         * vc/vc-git.el (vc-git-grep): Use --no-color.  (Bug#9408)
8725 2011-08-31  Richard Stallman  <rms@gnu.org>
8727         * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
8728         of the separation of rmail-view-buffer from rmail-buffer.
8729         If you say no to "replace original", the decrypt is in the
8730         view buffer.  If you say yes, the decrypt goes into the
8731         rmail buffer also.
8733 2011-08-31  Martin Rudalics  <rudalics@gmx.at>
8735         * window.el (display-buffer-window): Rewrite doc-string.
8736         (display-buffer-record-window): New function.
8737         (display-buffer-macro-specifiers)
8738         (display-buffer-even-window-sizes, display-buffer-set-height)
8739         (display-buffer-set-width, display-buffer-in-window)
8740         (display-buffer-reuse-window, display-buffer-split-specifiers)
8741         (display-buffer-side-specifiers, display-buffer-split-window-1)
8742         (display-buffer-split-window, display-buffer-split-atom-window)
8743         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
8744         (display-buffer-pop-up-side-window, display-buffer-in-side-window)
8745         (display-buffer-other-window-means-other-frame)
8746         (display-buffer-normalize-special)
8747         (display-buffer-normalize-default)
8748         (display-buffer-normalize-argument)
8749         (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
8750         (display-buffer-normalize-specifiers, display-buffer-frame)
8751         (display-buffer-same-window, display-buffer-same-frame)
8752         (display-buffer-other-window)
8753         (display-buffer-same-frame-other-window)
8754         (display-buffer-other-frame, pop-to-buffer-same-window)
8755         (pop-to-buffer-same-frame, pop-to-buffer-other-window)
8756         (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
8757         (switch-to-buffer-same-frame)
8758         (switch-to-buffer-other-window-same-frame)
8759         (display-buffer-alist-of-strings-p, display-buffer-alist-add)
8760         (display-buffer-alist-set-1, display-buffer-alist-set-2)
8761         (display-buffer-alist-set): Remove.
8762         (display-buffer-function, special-display-buffer-names)
8763         (special-display-regexps, special-display-function):
8764         In doc-string refer to display-buffer-window and quit-restore
8765         parameter.
8766         (pop-up-frame-alist, pop-up-frame-function, special-display-p)
8767         (special-display-frame-alist, special-display-popup-frame)
8768         (same-window-buffer-names, same-window-regexps, same-window-p)
8769         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
8770         (split-window-preferred-function, split-height-threshold)
8771         (split-width-threshold, window-splittable-p)
8772         (split-window-sensibly, window--try-to-split-window)
8773         (window--frame-usable-p, even-window-heights)
8774         (window--even-window-heights, window--display-buffer-1)
8775         (window--display-buffer-2, display-buffer-other-frame):
8776         Restore old Emacs 23 code, order and doc-strings where applicable.
8777         (display-buffer-default, display-buffer-assq-regexp): New functions.
8778         (display-buffer-alist): Rewrite doc-string.
8779         (display-buffer-default-action)
8780         (display-buffer-overriding-action): New variables.
8781         (display-buffer, switch-to-buffer): Rewrite.
8782         (pop-to-buffer): Restore Emacs 23 behavior but use
8783         window-normalize-buffer-to-display.
8784         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
8785         Restore Emacs 23 behavior but use
8786         window-normalize-buffer-to-switch-to.
8787         (pop-to-buffer-same-window): Rewrite.
8788         (pop-to-buffer-other-window, pop-to-buffer-other-frame):
8789         Rewrite using Emacs 23 options.
8791 2011-08-31  Michael Albinus  <michael.albinus@gmx.de>
8793         * net/tramp.el (tramp-root-regexp): Remove.
8794         (tramp-completion-file-name-regexp-unified)
8795         (tramp-completion-file-name-regexp-separate)
8796         (tramp-completion-file-name-regexp-url): Don't use leading volume
8797         letter on win32 systems.  (Bug#5303, Bug#9311)
8798         (tramp-drop-volume-letter): Simplify definition.
8799         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8801 2011-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8803         * subr.el (event-modifiers): Fix "missing modifier" part of docstring
8804         (bug#9356).
8806 2011-08-30  Reuben Thomas  <rrt@sc3d.org>  (tiny change)
8808         * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
8810 2011-08-29  Juri Linkov  <juri@jurta.org>
8812         * isearch.el (isearch-done): Don't display message "Mark saved"
8813         when arg `edit' is non-nil to prevent its flicker in the echo area.
8815 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
8817         * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
8818         obsolete packages for deletion.
8820 2011-08-28  Christoph Scholtes  <cschol2112@googlemail.com>
8822         * help-mode.el (help-mode-map): Add special-mode-map to parent.
8823         (help-mode): Derive help-mode from special-mode.  Don't invoke
8824         view-mode from help-mode.
8825         (help-xref-override-view-map): Remove.
8826         (help-make-xrefs): Remove minor-mode-overriding-map-alist since
8827         view-mode is not used anymore.
8829 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
8831         * server.el (server-port): Doc fix.
8833         * cus-theme.el (custom-theme-choose-mode): Inherit from
8834         special-mode (Bug#9124).
8835         (custom-theme-choose-mode-map): Add special-mode to parent.
8837 2011-08-28  Alan Mackenzie  <acm@muc.de>
8839         * progmodes/cc-fonts.el
8840         (c-make-font-lock-BO-decl-search-function): New function.
8841         (c-basic-matchers-after - "Fontify the clauses after various
8842         keywords"): Extract the three keyword lists for the 3 erroneous
8843         constructs from the list of four, and use the new function above
8844         in place of an old one.
8846 2011-08-28  Deniz Dogan  <deniz@dogan.se>
8848         * net/rcirc.el (rcirc-insert-prev-input)
8849         (rcirc-insert-next-input): Remove unused argument.
8851 2011-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8853         * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
8855 2011-08-27  Alan Mackenzie  <acm@muc.de>
8857         * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
8858         handle function pointer parameters properly.
8860 2011-08-27  Martin Rudalics  <rudalics@gmx.at>
8862         * window.el (display-buffer-reuse-window): Fix case where
8863         selected window was reused with non-nil OTHER-WINDOW argument.
8864         (Bug#9381)
8866 2011-08-27  Deniz Dogan  <deniz@dogan.se>
8868         * net/rcirc.el (rcirc-check-auth-status): Adding support for
8869         oftc's NickServ messages.
8871 2011-08-27  Glenn Morris  <rgm@gnu.org>
8873         * saveplace.el (save-place-limit): Make it finite.  (Bug#9352)
8875 2011-08-26  Chong Yidong  <cyd@stupidchicken.com>
8877         * emacs-lisp/package.el (package-install): Call package-initialize
8878         if called interactively.
8880 2011-08-26  Leo Liu  <sdl.web@gmail.com>
8882         * emacs-lisp/cl-macs.el (defstruct): Fix format.  (Bug#9357)
8884 2011-08-25  Juri Linkov  <juri@jurta.org>
8886         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
8887         `search-whitespace-regexp' (bug#9364).
8889 2011-08-25  Juri Linkov  <juri@jurta.org>
8891         * isearch.el (isearch-edit-string): Let-bind `search-ring' and
8892         `regexp-search-ring' to their global values to protect from
8893         updating by `read-from-minibuffer' (bug#9185).
8895 2011-08-25  Juri Linkov  <juri@jurta.org>
8897         * textmodes/ispell.el (ispell-command-loop): Add newline
8898         at the end of the "Use option `i'..." line.
8900 2011-08-25  Juri Linkov  <juri@jurta.org>
8902         * battery.el (display-battery-mode): If `battery-status-function'
8903         or `battery-mode-line-format' is nil, display the message and set
8904         `display-battery-mode' to nil (bug#9363).
8906 2011-08-25  Eli Zaretskii  <eliz@gnu.org>
8908         * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
8909         bidi-string-mark-left-to-right; they are unnecessary now.
8911 2011-08-25  Deniz Dogan  <deniz@dogan.se>
8913         * net/quickurl.el: Documentation typo fixes.
8915 2011-08-25  Chong Yidong  <cyd@stupidchicken.com>
8917         * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
8919 2011-08-25  Glenn Morris  <rgm@gnu.org>
8921         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
8923         * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
8924         (smtpmail-via-smtp): Handle nil response from smtp.
8926 2011-08-24  Juri Linkov  <juri@jurta.org>
8928         * proced.el (proced-marked): Inherit from `error' instead of
8929         `font-lock-warning-face'.
8931         * ibuffer.el (ibuffer-marked-face): Change default face from
8932         `font-lock-warning-face' to `warning'.
8933         (ibuffer-deletion-face): Change default face from
8934         `font-lock-type-face' to `error'.
8936         * battery.el (battery-update): Use the face `error' instead of
8937         `font-lock-warning-face' (bug#6117).
8939 2011-08-24  Juri Linkov  <juri@jurta.org>
8941         * faces.el (success): Change face color from "Green3" to
8942         "ForestGreen" on light background (bug#9353).
8944 2011-08-24  Chong Yidong  <cyd@stupidchicken.com>
8946         * window.el (quit-window): Rename from quit-restore-window.
8947         Use same arglist as old quit-window.
8948         (frame-auto-delete): Doc fix.
8950         * view.el (view-mode-exit): Use quit-window.
8952 2011-08-24  Juri Linkov  <juri@jurta.org>
8954         * isearch.el (isearch-ring-adjust1): Start visiting previous
8955         search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
8956         (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
8957         for empty search string (when the last search string is reused
8958         automatically) to adjust the isearch ring to the last element and
8959         prepare the correct index for further M-p commands (bug#9185).
8961 2011-08-24  Kenichi Handa  <handa@m17n.org>
8963         * international/ucs-normalize.el: If decomposition property of
8964         CHAR is the default one (i.e. a list of CHAR itself), treat it as
8965         nil.
8966         (nfd, nfkd): Likewise.
8968 2011-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8970         * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
8971         from process filters aren't reliably transmitted to the surrounding
8972         accept-process-output.
8973         (mpc-proc-check): New function.
8974         (mpc-proc-sync): Use it (bug#8293)
8976 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8978         * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
8979         Add compatibility functions (bug#9313).
8981 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
8983         * cus-start.el (all): Add entry for bidi-paragraph-direction.
8985         * international/uni-bidi.el: Regenerate.
8987 2011-08-23  Kenichi Handa  <handa@m17n.org>
8989         * international/charprop.el:
8990         * international/uni-bidi.el:
8991         * international/uni-category.el:
8992         * international/uni-combining.el:
8993         * international/uni-comment.el:
8994         * international/uni-decimal.el:
8995         * international/uni-decomposition.el:
8996         * international/uni-digit.el:
8997         * international/uni-lowercase.el:
8998         * international/uni-mirrored.el:
8999         * international/uni-name.el:
9000         * international/uni-numeric.el:
9001         * international/uni-old-name.el:
9002         * international/uni-titlecase.el:
9003         * international/uni-uppercase.el: Regenerate.
9005 2011-08-23  Martin Rudalics  <rudalics@gmx.at>
9007         * help.el (help-window-setup): Fix message displayed when other
9008         window is reused.  (Bug#9341)
9010 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9012         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
9013         * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
9015         * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
9016         Mark obsolete.
9017         * shell.el (shell-parse-pcomplete-arguments): New function.
9018         (shell-completion-vars): Use it instead (bug#9160).
9020 2011-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9022         * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
9023         strings and comments (bug#9333).
9025         * emacs-lisp/debug.el (debug-arglist): New function.
9026         (debug-convert-byte-code): Use it.  Handle lexical byte-codes.
9027         (debug-on-entry-1): Handle interpreted closures (bug#9120).
9029 2011-08-22  Juri Linkov  <juri@jurta.org>
9031         * progmodes/compile.el (compilation-mode-font-lock-keywords):
9032         Revert regexp that highlights output switches to its old
9033         pre-2010-10-28 value and remove one `?' from it (bug#9319).
9035         * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
9036         to check for empty output (bug#9226).
9038 2011-08-22  Chong Yidong  <cyd@stupidchicken.com>
9040         * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
9041         symbol-constituent as the default, as that stops font-lock from
9042         working properly (Bug#8843).
9044 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9046         * mail/smtpmail.el (smtpmail-via-smtp): Only bind
9047         `coding-system-for-*' around the process open call to avoid
9048         auth-source side effects.
9049         (smtpmail-try-auth-methods): Expand the secret password.
9050         (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
9051         probe hangs.
9053 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
9055         * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
9057         * emacs-lisp/find-func.el (find-function-noselect): New arg
9058         lisp-only.
9060         * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
9061         signal an error for built-in functions (Bug#6664).
9063 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9065         * mail/smtpmail.el (smtpmail-smtp-user): New variable.
9066         (smtpmail-try-auth-methods): Use it.
9068 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
9070         * font-lock.el (font-lock-fontify-region)
9071         (font-lock-unfontify-region, font-lock-default-fontify-buffer)
9072         (font-lock-default-unfontify-buffer)
9073         (font-lock-default-fontify-region)
9074         (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
9076         * progmodes/compile.el (compilation-error-properties):
9077         Fix confusion between file struct and message struct (Bug#9319).
9078         (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
9079         `ant' regexp.
9081         * net/browse-url.el (browse-url-firefox): Don't call
9082         browse-url-firefox-sentinel unless using -remote (Bug#9328).
9084 2011-08-20  Glenn Morris  <rgm@gnu.org>
9086         * tutorial.el (help-with-tutorial): Avoid an error on short screens.
9088         * tutorial.el (tutorial--default-keys): Update some default bindings.
9090         * files.el (hack-local-variables): Fully ignore case for "mode:".
9092 2011-08-20  Alan Mackenzie  <acm@muc.de>
9094         Resolve invalid use of a regexp in regexp-opt.
9096         * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
9097         detection for a java annotation.
9099         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
9100         detection for a java annotation.
9102         * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
9103         handling for java.
9104         (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
9106 2011-08-20  Chong Yidong  <cyd@stupidchicken.com>
9108         * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
9109         (Bug#9274).
9111 2011-08-20  Alan Mackenzie  <acm@muc.de>
9113         Fontify CPP expressions correctly when starting in the middle of
9114         such a construct.  Mainly for when jit-lock etc. starts a chunk
9115         here.
9117         * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
9118         variable.
9119         (c-make-font-lock-search-form): New function, extracted from
9120         c-make-font-lock-search-function.
9121         (c-make-font-lock-search-function): Use the above function.
9122         (c-make-font-lock-context-search-function): New function.
9123         (c-cpp-matchers): Enhance the preprocessor expression case with
9124         the above function
9125         (c-font-lock-complex-decl-prepare): Test for being in a CPP form
9126         which takes an expression.
9128         * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
9130 2011-08-20  Martin Rudalics  <rudalics@gmx.at>
9132         * window.el (display-buffer-reuse-window)
9133         (display-buffer-pop-up-window): Don't reuse or split a side
9134         window.
9136 2011-08-19  Glenn Morris  <rgm@gnu.org>
9138         * files.el (hack-local-variables-prop-line, hack-local-variables):
9139         Downcase "Mode:".  (Bug#9331)
9141 2011-08-18  Chong Yidong  <cyd@stupidchicken.com>
9143         * international/characters.el: Add L and R categories.
9145         * subr.el (bidi-string-mark-left-to-right): Rename from
9146         string-mark-left-to-right.  Use category search.
9148         * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
9150 2011-08-18  Juri Linkov  <juri@jurta.org>
9152         * faces.el (error, warning, success): New faces with definitions
9153         copied from old default values of `font-lock-warning-face',
9154         `compilation-warning', `compilation-info' (bug#6117).
9156         * font-lock.el (font-lock-warning-face): Inherit from `error'.
9158         * progmodes/compile.el (compilation-error): Inherit from `error'.
9159         (compilation-warning): Inherit from `warning'.
9160         (compilation-info): Inherit from `success'.
9162         * dired.el (dired-marked): Inherit from `warning'.
9163         (dired-flagged): Inherit from `error'.
9165 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9167         * mail/smtpmail.el (auth-source): Require to avoid problems with
9168         binding variables (bug#9298).  Also clean up some unused
9169         autoloads.
9171         * net/network-stream.el (network-stream-open-starttls):
9172         Support using starttls.el without using gnutls-cli.
9174 2011-08-17  Juri Linkov  <juri@jurta.org>
9176         * progmodes/grep.el (rgrep): Handle the case when
9177         `grep-find-command' is a cons cell (bug#9278).
9179 2011-08-17  Martin Rudalics  <rudalics@gmx.at>
9181         * window.el (display-buffer-pop-up-frame): Run frame creation
9182         function with BUFFER current (as special-display-popup-frame
9183         does).  Reported by Drew Adams.
9185 2011-08-17  Daiki Ueno  <ueno@unixuser.org>
9187         * epa-mail.el: Simplify GnuPG group expansion using
9188         epg-expand-group.
9189         (epa-mail-group-alist, epa-mail-group-modtime)
9190         (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
9191         (epa-mail-sync-groups, epa-mail-expand-recipient-1)
9192         (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
9193         Remove.
9195 2011-08-16  Feng Li  <fengli@gmail.com>  (tiny change)
9197         * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
9199 2011-08-16  Alan Mackenzie  <acm@muc.de>
9201         * progmodes/cc-engine.el (c-state-cache-non-literal-place):
9202         Correct, to avoid the inside of macros.
9204 2011-08-16  Richard Stallman  <rms@gnu.org>
9206         * epa-mail.el: Handle GnuPG group definitions.
9207         (epa-mail-group-alist, epa-mail-group-modtime)
9208         (epa-mail-gnupg-conf-file): New variables.
9209         (epa-mail-parse-groups, epa-mail-sync-groups)
9210         (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
9211         (epa-mail-expand-recipients): New functions.
9212         (epa-mail-encrypt): Call epa-mail-expand-recipients.
9214         * mail/rmail.el (rmail-epa-decrypt): New command.
9216         * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
9217         Don't bind buffer-read-only, just inhibit-read-only.
9218         (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
9219         (epa-decrypt-armor-in-region): Make error message clearer.
9221 2011-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9223         * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
9224         and "a2b" to "ab" for `prefix'.
9226 2011-08-14  Chong Yidong  <cyd@stupidchicken.com>
9228         * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
9229         filter groups.
9230         (ibuffer-included-in-filter-p-1): Use it.  Suggested by Rafaël
9231         Fourquet (Bug#8804).
9233 2011-08-12  Juanma Barranquero  <lekktu@gmail.com>
9235         * startup.el (argi): Declare as global variable (bug#9275).
9237 2011-08-12  Chong Yidong  <cyd@stupidchicken.com>
9239         * subr.el (string-mark-left-to-right): Search the entire string
9240         for RTL script, not just the terminating character.  Doc fix.
9242 2011-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9244         * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
9245         New function.
9246         (js--regexp-literal, js-syntax-propertize-function): Remove.
9247         (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
9248         (js-mode-map): Don't rebind electric keys.
9249         (js-insert-and-indent): Remove.
9250         (js-mode): Setup electric-layout and electric-indent instead.
9252         * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
9254 2011-08-12  Daiki Ueno  <ueno@unixuser.org>
9256         * epa.el (epa-progress-callback-function): Fix the logic of
9257         displaying progress.
9258         * epa-file.el (epa-file-insert-file-contents): Make progress
9259         display more user-friendly.
9260         (epa-file-write-region): Ditto.
9262 2011-08-10  Chong Yidong  <cyd@stupidchicken.com>
9264         * subr.el (string-mark-left-to-right): New function.
9266         * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
9267         Use string-mark-left-to-right.
9268         (list-buffers-noselect): Caller changed.
9270         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9271         Use string-mark-left-to-right.
9272         (tabulated-list-print): Recenter after moving point.
9274 2011-08-10  Juri Linkov  <juri@jurta.org>
9276         * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
9277         This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
9278         intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
9280 2011-08-09  Chong Yidong  <cyd@stupidchicken.com>
9282         * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
9283         (Bug#7554).
9285 2011-08-09  Andreas Schwab  <schwab@linux-m68k.org>
9287         * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
9288         character.  (Bug#6594)
9290 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
9292         * image-dired.el: Don't use find-file for temporary work (Bug#7895).
9293         (image-dired--with-db-file): New macro.
9294         (image-dired-write-tags, image-dired-remove-tag)
9295         (image-dired-create-gallery-lists, image-dired-write-comments)
9296         (image-dired-get-comment, image-dired-mark-tagged-files)
9297         (image-dired-list-tags, image-dired-gallery-generate): Use it.
9298         (image-dired-gallery-generate): Use insert-file-contents.
9300         * time.el (display-time-world-list, display-time-world-display):
9301         * time-stamp.el (time-stamp-string):
9302         * vc/add-log.el (add-change-log-entry): Use setenv instead of
9303         set-time-zone-rule (Bug#7337).
9305 2011-08-08  Daiki Ueno  <ueno@unixuser.org>
9307         * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
9308         (epg-error-to-string, epg-errors-to-string): New function.
9309         (epg-wait-for-completion): Reverse errors list.
9310         (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
9311         (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
9312         (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
9313         (epg-sign-keys, epg-generate-key-from-file)
9314         (epg-generate-key-from-string): Format errors by using
9315         epg-errors-to-string (bug#9255).
9316         (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
9318 2011-08-07  Juri Linkov  <juri@jurta.org>
9320         * faces.el (list-faces-display): Remove extra angle bracket
9321         from `help-mode-map'.
9323         * info.el (Info-history-toc-nodes): Doc fix.
9325         * longlines.el (longlines-mode): Doc fix.
9327 2011-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9329         * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
9330         of statements and in a few more cases (bug#9183).
9332         * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
9333         New functions.
9334         (cl-transform-lambda): Use them (bug#9239).
9336 2011-08-05  Martin Rudalics  <rudalics@gmx.at>
9338         * window.el (display-buffer-same-window)
9339         (display-buffer-same-frame, display-buffer-other-window)
9340         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
9341         (pop-to-buffer-other-window)
9342         (pop-to-buffer-same-frame-other-window)
9343         (pop-to-buffer-other-frame): Make them defuns.
9344         (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
9346 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9348         * subr.el (make-composed-keymap): Move from C.  Change calling
9349         convention, and improve docstring to bring attention to a subtle point.
9350         * minibuffer.el (completing-read-default): Adjust accordingly.
9352 2011-08-03  Michael Albinus  <michael.albinus@gmx.de>
9354         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
9355         (tramp-open-shell): Use `tramp-shell-quote-argument'.
9357         * net/trampver.el: Update release number.
9359 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9361         * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
9362         "in" (bug#9190).
9364 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9366         * mail/sendmail.el (sendmail-query-once): Restore the current
9367         buffer after querying (bug#9074).
9369         * dired.el (dired-flagged): Use different faces for marked and
9370         flagged files (bug#6117).
9372         * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
9373         (bug#4433).
9375         * ido.el (ido-mode): Switch off the message if called
9376         non-interactively.
9378         * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
9379         before 587, since it appears that that's more likely to work for
9380         more people.
9382         * cus-edit.el (custom-file): When running under emacs -q, always
9383         refuse to save the customizations, even if the .emacs file doesn't
9384         exist.
9386         * info.el: Remove the `Info-beginning-of-buffer' function
9387         (bug#8325).
9389         * net/network-stream.el (network-stream-open-starttls):
9390         Use `starttls-available-p' to see whether starttls.el can be used.
9392 2011-08-01  Martin Rudalics  <rudalics@gmx.at>
9394         * window.el (display-buffer-in-window): Don't set dedicated status
9395         of window here (Bug#9215).
9396         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9397         (display-buffer-pop-up-side-window)
9398         (display-buffer-in-side-window): Set dedicated status of window here.
9400 2011-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9402         * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
9403         before binding generated-autoload-file.
9405 2011-08-01  Deniz Dogan  <deniz@dogan.se>
9407         * net/rcirc.el (rcirc-handler-333): Clarify docstring.
9409 2011-07-30  Michael Albinus  <michael.albinus@gmx.de>
9411         Sync with Tramp 2.2.2.
9413         * net/trampver.el: Update release number.
9415 2011-07-30  Juri Linkov  <juri@jurta.org>
9417         * dired-aux.el (dired-touch-initial): Remove function.
9418         (dired-do-chxxx): For op-symbol `touch', set `initial' to the
9419         current time, and `default' to the last modification time of the
9420         current marked file (bug#6887).
9422 2011-07-28  Jose E. Marchesi  <jemarch@gnu.org>
9424         * simple.el (goto-line): Use string-to-number to provide a
9425         numeric argument to read-number (bug#9163).
9427 2011-07-27  Michael Albinus  <michael.albinus@gmx.de>
9429         * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
9430         connection process, it could be nil.
9432 2011-07-27  Leo Liu  <sdl.web@gmail.com>
9434         Simplify url handling in rcirc-mode.
9436         * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
9437         (rcirc-browse-url-at-mouse): Remove.
9438         * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
9440 2011-07-26  Alan Mackenzie  <acm@muc.de>
9442         Fontify bitfield declarations properly.
9444         * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
9445         (c-symbol-chars): Now exported as a lang variable.
9446         (c-not-primitive-type-keywords): New lang variable.
9448         * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
9449         QT keyword "more" to prevent "more slots: ...." being spuriously
9450         parsed as a bitfield declaration.
9452         * progmodes/cc-engine.el (c-beginning-of-statement-1):
9453         Refactor and enhance to handle bitfield declarations.
9454         (c-punctuation-in): New function.
9455         (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
9456         declarations properly.
9458 2011-07-26  Ulf Jasper  <ulf.jasper@web.de>
9460         * calendar/icalendar.el (icalendar--all-events): Take care of
9461         multiple vcalendars in a single file.
9462         (icalendar--convert-float-to-ical): Checkdoc fixes.
9464 2011-07-25  Deniz Dogan  <deniz@dogan.se>
9466         * image.el (insert-image): Clarifying docstring.
9468 2011-07-24  Michael Albinus  <michael.albinus@gmx.de>
9470         * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
9471         `tramp-send-command-and-check' if there is no error.
9472         (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
9474 2011-07-22  Alan Mackenzie  <acm@muc.de>
9476         Prevent cc-langs.elc being loaded at run time.
9478         * progmodes/cc-mode.el: Remove two autoload forms which loaded
9479         cc-langs.
9481         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
9482         "(require 'cc-langs)".  Quote a form so it will evaluate at
9483         (cc-mode's) compilation time.
9485 2011-07-22  Michael Albinus  <michael.albinus@gmx.de>
9487         * net/tramp.el (tramp-file-name-handler): Avoid recursive
9488         loading.  (Bug#9114)
9490 2011-07-21  Martin Rudalics  <rudalics@gmx.at>
9492         * window.el (display-buffer-pop-up-window)
9493         (display-buffer-pop-up-side-window)
9494         (display-buffer-in-side-window): Call display-buffer-set-height
9495         and display-buffer-set-width after setting the new window's
9496         buffer so `fit-window-to-buffer' and friends work on the right buffer.
9498 2011-07-20  Sam Steingold  <sds@gnu.org>
9500         * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
9501         (etags-tags-included-tables): Call `convert-standard-filename' on
9502         the file names contained in TAGS so that windows Emacs can handle
9503         TAGS files created by cygwin ctags.
9505 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9507         * proced.el (proced-update): Revert yesterday's bug#1779 patch,
9508         which apparently didn't work.
9510 2011-07-19  Roland Winkler  <winkler@gnu.org>
9512         * proced.el (proced-send-signal): For *Marked Processes* buffer
9513         put point at beginning of buffer.
9515 2011-07-19  Stephen Berman  <stephen.berman@gmx.net>
9517         * proced.el (proced-format): Make header lines align with the text
9518         (bug#1779).
9520 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9522         * view.el (view-buffer): Allow running in `special' modes if we're
9523         visiting a file (bug#8615).
9525 2011-07-19  Martin Rudalics  <rudalics@gmx.at>
9527         * window.el (display-buffer-alist-of-strings-p)
9528         (display-buffer-alist-set-1, display-buffer-alist-set-2):
9529         New functions.
9530         (display-buffer-alist-set): Rewrite to handle Emacs 23 options
9531         more accurately.
9533 2011-07-18  Alan Mackenzie  <acm@muc.de>
9535         Fontify declarators properly when, e.g., a jit-lock chunk begins
9536         inside a declaration.
9538         * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
9540         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
9541         New function.
9542         (c-complex-decl-matchers): Insert reference to
9543         c-font-lock-enclosing-decls.
9545         * progmodes/cc-engine.el (c-backward-single-comment):
9546         (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
9547         to nil around calls to (forward-comment -1).
9549 2011-07-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9551         * image.el (put-image): Doc typo fix.
9553         * progmodes/etags.el (tags-search): Doc typo fix.
9555         * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
9556         password if we get errors 550 to 554.
9558 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9560         * net/gnutls.el (gnutls-log-level): Remove.
9562         * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
9563         indentation character (bug#6380).
9565         * files.el (buffer-offer-save): Made permanently local (bug#6241).
9567         * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
9568         to clarify what the problem is (bug#4291).
9570         * simple.el (current-kill): Clarify what
9571         `interprogram-paste-function' does (bug#7500).
9572         (auto-fill-mode): Document `auto-fill-function' in relation to
9573         `auto-fill-mode' (bug#2470).
9575 2011-07-16  Lawrence Mitchell  <wence@gmx.li>
9577         * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
9578         method if slot is read-only (bug#9035).
9580 2011-07-16  Martin Rudalics  <rudalics@gmx.at>
9582         * frame.el (select-frame-set-input-focus): New argument NORECORD.
9583         * window.el (pop-to-buffer): Select window used even if it was
9584         selected before, see discussion of (Bug#8615), (Bug#6954).
9585         Pass argument NORECORD on to select-frame-set-input-focus.
9587 2011-07-15  Glenn Morris  <rgm@gnu.org>
9589         * subr.el (read-char-choice): Allow quitting.  (Bug#9001)
9590         Respect help-form.
9592 2011-07-09  Lawrence Mitchell  <wence@gmx.li>
9594         * net/gnutls.el (gnutls-min-prime-bits): New variable.
9595         (gnutls-negotiate): Use it.
9597 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9599         * net/gnutls.el (gnutls-negotiate):
9600         Upcase `gnutls-algorithm-priority'.
9602 2011-07-15  Glenn Morris  <rgm@gnu.org>
9604         * jka-compr.el (jka-compr-verbose): Move from here...
9605         * jka-cmpr-hook.el (jka-compr-verbose): ... to here.  (Bug#9090)
9606         Add missing :version tag.
9607         * info.el: No need to require jka-compr when compiling.
9609 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9611         * net/gnutls.el (gnutls-algorithm-priority): New variable.
9612         (gnutls-negotiate): Use it.
9614         * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
9616         * info.el (Info-beginning-of-buffer): New command.
9617         (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
9618         announcing `b' as the key (bug#8325).
9619         (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
9621         * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
9623         * international/mule-cmds.el
9624         (describe-specified-language-support): Make the error message
9625         clearer (bug#8905).
9627         * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
9629         * isearch.el (isearch-barrier): Add a doc string, since it's
9630         mentioned in a function doc string (bug#8678).
9632 2011-07-15  Martin Rudalics  <rudalics@gmx.at>
9634         * window.el (switch-to-buffer): Call pop-to-buffer with normalized
9635         buffer argument (Bug#9083) and self-identifying label argument.
9637 2011-07-15  Glenn Morris  <rgm@gnu.org>
9639         * emacs-lisp/debug.el (debug): Doc fix.  (Bug#8273)
9641 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9643         * man.el (Man-fontify-manpage): Fix message when formatting the
9644         man page (bug#7929).
9646 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
9648         * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
9649         argument LRM; if non-nil, append an invisible LRM character to the
9650         buffer name.
9651         (list-buffers-noselect): Call Buffer-menu-buffer+size with the
9652         last argument non-nil, when formatting buffer names.
9653         (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
9654         paragraph direction.
9656 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9658         * man.el (Man-bgproc-sentinel): Skip any arguments and only output
9659         the man page name (bug#7929).
9661         * image.el (put-image): Mention the `put-image' overlay property
9662         (bug#7834).
9664         * scroll-bar.el (set-scroll-bar-mode): Mention that
9665         `scroll-bar-mode' lists the values (bug#7772).
9667         * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
9668         command (bug#7729).
9670         * rect.el (apply-on-rectangle): Return the point after the last
9671         operation.
9672         (string-rectangle): Go to the point after the last operation
9673         (bug#7522).
9675         * printing.el (pr-toggle-region): Clarify the documentation
9676         slightly (bug#7493).
9678         * time.el (display-time-update):
9679         Allow `display-time-mail-function' to return nil (bug#7158).
9680         Fix suggested by Detlev Zundel.
9682         * vc/diff.el (diff): Clarify the order the file names are read
9683         (bug#7111).
9685         * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
9686         the doc string (bug#7015).
9688         * font-lock.el (font-lock-maximum-decoration): Mention what
9689         numeric levels mean (bug#6935).
9691         * startup.el (initial-buffer-choice): Don't mention the `none'
9692         selection, which is against policy.
9694 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
9696         * window.el (display-buffer-normalize-special):
9697         Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
9699 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
9701         * subr.el (version<, version<=, version=): Mention "-CVS" and
9702         "-12345" alpha version numbers.
9704 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
9706         * bindings.el: Add advertised binding for set-mark-command
9707         (Bug#5772).
9709 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
9711         * bindings.el (mode-line-other-buffer):
9712         * bookmark.el (bookmark-bmenu-2-window):
9713         * bs.el (bs-cycle-next, bs-cycle-previous):
9714         * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
9715         switch-to-buffer.
9717         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
9718         Delete.
9720 2011-07-14  Juanma Barranquero  <lekktu@gmail.com>
9722         * follow.el (follow-debug-message, follow-redisplay):
9723         * jka-cmpr-hook.el (with-auto-compression-mode):
9724         Fix typos in docstrings.
9726 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9728         * subr.el (with-silent-modifications): Clarify somewhat what the
9729         macro inhibits (bug#6525).
9731         * simple.el (eval-expression): Note what it does if called
9732         interactively (bug#6495).
9734 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
9736         * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
9737         Use pop-to-buffer buffer-or-name if it is nil.
9739         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9740         Remove switch-to-buffer.
9742 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9744         * files.el (make-directory): Clarify that an error will be raised
9745         if there's an error (bug#6397).
9747         * startup.el (initial-buffer-choice): Add `none' as a choice
9748         (bug#6234).
9750         * subr.el (add-hook): Clarify section about buffer-local hooks
9751         (bug#6218).
9753         * dired.el (dired-flagged): Clarify doc string (bug#6117).
9755 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
9757         * tabify.el (untabify): Preserve the current column so that point
9758         doesn't move (bug#6032).
9760 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9762         * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
9763         Rewrite to avoid awkward possessive "s" (bug#5986).
9765 2011-07-13  Glenn Morris  <rgm@gnu.org>
9767         * dired.el (dired-use-ls-dired): Doc fix.  (Bug#9039).
9768         (dired-insert-directory): Give a message the first time
9769         if ls is found not to support --dired.
9771 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9773         * simple.el (toggle-truncate-lines): Clarify what is toggled
9774         (bug#5580).  Text by Drew Adams.
9776 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
9778         * simple.el (blink-matching-open): Make the error message from the
9779         last change less verbose.
9781 2011-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
9783         * font-lock.el (font-lock-comment-face): Use the high contrast
9784         "yellow" color for font-lock-comment-face on low color terminals
9785         using a dark background color (bug#4221).
9787 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9789         * dired.el (dired-insert-set-properties): Make the doc string
9790         reflect what it does now (bug#5325).
9792         * simple.el (blink-matching-open): Say that we were unable to find
9793         the match within the limit, if we're limited (bug#5122).
9795         * international/mule-cmds.el (prefer-coding-system): Add an
9796         example (bug#4869).
9798         * progmodes/etags.el (tags-search): Document `file-list-form'
9799         (bug#4731).
9801 2011-07-13  Lawrence Mitchell  <wence@gmx.li>
9803         * net/browse-url.el (browse-url-default-browser)
9804         (browse-url-browser-function): Make the default browser choice a
9805         bit more logical (bug#4300).  Also clean up the doc string.
9807 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
9809         * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
9810         binary endings (bug#4440).
9812 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9814         * info.el (info-insert-file-contents): Inhibit jka-compr messages,
9815         which can be pretty annoying (bug#8971).
9817         * jka-compr.el (jka-compr-verbose): New variable, and use
9818         throughout (bug#8971).
9820         * info.el (Info-find-file): Fall back on the installation
9821         directory if we can't find the info node anywhere else.
9823 2011-07-13  Sergei Organov  <osv@javad.com>  (tiny change)
9825         * vc/vc.el (vc-revert-file):
9826         Don't set file time-stamp in the past.  (Bug#5181)
9828 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9830         * files.el (after-find-file): Give a better error message when
9831         trying to find a symlink that points to a file that doesn't exist
9832         (bug#4398).
9834         * progmodes/cc-vars.el: Remove (probably) misleading comment
9835         (bug#4396).
9837 2011-07-12  Johan BockgÃ¥rd  <bojohan@gnu.org>
9839         * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
9841 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
9843         * mouse-sel.el: Hack restoring functionality, while keeping
9844         compatibility with 2010-07-03 changes to mouse selection.
9845         (mouse-sel-primary-overlay): New var.
9846         (mouse-sel-selection-alist): Use it.
9847         (mouse-sel-mode): Doc fix; remove points that are default features
9848         of mouse.el.
9850 2011-07-12  Johan BockgÃ¥rd  <bojohan@gnu.org>
9852         * progmodes/compile.el (compilation-error-regexp-alist-alist):
9853         Fix previous fix (bug#2490).
9855 2011-07-12  Roland Winkler  <winkler@gnu.org>
9857         * textmodes/bibtex.el (bibtex-initialize):
9858         Use pop-to-buffer-same-window.
9859         (bibtex-search-entries): Fix interactive call.
9861 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9863         * progmodes/compile.el (compilation-error-regexp-alist-alist):
9864         Fontise bytecomp Error lines more correctly (bug#2490).
9865         Fix suggested by Johan BockgÃ¥rd.
9867         * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
9869         * dired-x.el (dired-guess-default): Use `delete-dups'.
9871 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
9873         * dired.el (dired-mark-prompt):
9874         * dired-aux.el (dired-read-shell-command): Doc fix.
9876 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9878         * mail/sendmail.el (sendmail-query-once):
9879         Use `customize-save-variable' unconditionally, now that it works under
9880         emacs -Q.
9882         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
9884         * cus-edit.el (custom-file): Take an optional no-error variable.
9885         (customize-save-variable): Set the variable, and give a warning if
9886         running under "emacs -q".
9888 2011-07-11  Juanma Barranquero  <lekktu@gmail.com>
9890         * loadhist.el (unload-feature-special-hooks):
9891         Add `auto-coding-functions', `fill-nobreak-predicate' and
9892         `find-directory-functions' (bug#5327).
9894 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9896         * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
9898         * cus-edit.el (custom-guess-name-alist): -alist variables should
9899         use the `alist' type (bug#3120).  Suggested by Drew Adams.
9901         * printing.el: Add documentation to all the `pr-toggle-' commands.
9903 2011-07-11  Leo Liu  <sdl.web@gmail.com>
9905         * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
9906         backends where it makes sense (bug#2623).
9908 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9910         * dired-x.el (dired-guess-default): Remove duplicate shell command
9911         entries (bug#2028).
9912         (dired-guess-default): Fix grammar in doc string (bug#2028).
9913         (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
9915         * subr.el (remove-duplicates): New conveniency function.
9917 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9919         * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
9920         (bug#1526).
9922 2011-07-10  Martin Rudalics  <rudalics@gmx.at>
9924         * window.el (display-buffer-normalize-default): Don't invert
9925         meaning of even-window-heights.  Reported by Eli Zaretskii
9926         <eliz@gnu.org>.
9928 2011-07-10  Bob Rogers  <rogers@rgrjr.dyndns.org>
9930         * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
9932 2011-07-10  Chong Yidong  <cyd@stupidchicken.com>
9934         * window.el (display-buffer): Fix arguments to
9935         display-buffer-reuse-window in last change.
9937         * faces.el (link): Use a less saturated blue on light backgrounds.
9939         * startup.el (fancy-startup-text, fancy-about-text)
9940         (fancy-startup-tail): Use font-lock faces, for background safety.
9942 2011-07-09  Bob Nnamtrop  <bobnnamtrop@gmail.com>  (tiny change)
9944         * emulation/viper-cmd.el (viper-change-state-to-vi):
9945         Limit triggering of abbrev expansion (Bug#9038).
9947 2011-07-09  Martin Rudalics  <rudalics@gmx.at>
9949         * window.el (display-buffer-default-specifiers): Remove.
9950         (display-buffer-macro-specifiers): Remove default specifiers.
9951         (display-buffer-alist): Default to nil.
9952         (display-buffer-reuse-window): New optional argument other-window.
9953         (display-buffer-pop-up-window): Allow splitting internal
9954         windows.  Check whether a live window was created.
9955         (display-buffer-other-window-means-other-frame)
9956         (display-buffer-normalize-arguments): Rename to
9957         display-buffer-normalize-argument and rewrite.  Set the
9958         other-window specifier.
9959         (display-buffer-normalize-special): New function.
9960         (display-buffer-normalize-options): Rename to
9961         display-buffer-normalize-default and rewrite.
9962         (display-buffer-normalize-options-inhibit): Remove.
9963         (display-buffer-normalize-specifiers): Rewrite.
9964         (display-buffer): Process other-window specifier and call
9965         display-buffer-reuse-window with it.  Emulate Emacs 23 behavior
9966         more faithfully.
9967         (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
9968         (display-buffer-alist-set): Don't handle 'unset default values.
9969         (display-buffer-in-window, display-buffer-alist-set):
9970         Replace symbol "dedicated" by "dedicate".  Reported by Tassilo Horn
9971         <tassilo@member.fsf.org>.
9973 2011-07-09  Leo Liu  <sdl.web@gmail.com>
9975         * register.el (insert-register): Restore accidental change on
9976         2011-06-26.  (Bug#9028)
9978 2011-07-09  Glenn Morris  <rgm@gnu.org>
9980         * subr.el (remq): Handle the empty list.  (Bug#9024)
9982 2011-07-08  Andreas Schwab  <schwab@linux-m68k.org>
9984         * mail/sendmail.el (send-mail-function): No longer delay custom
9985         initialization.
9986         * custom.el (custom-initialize-delay): Doc fix.
9988 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9990         * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
9992 2011-07-08  Michael Albinus  <michael.albinus@gmx.de>
9994         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
9995         human-friendly prompt.
9997 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9999         * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
10000         provided by a particular plugin.
10002 2011-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10004         * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
10005         save customizations (with "emacs -Q"), just set the variable
10006         instead of erroring out.
10008         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10010 2011-07-08  Juri Linkov  <juri@jurta.org>
10012         * arc-mode.el (archive-zip-expunge, archive-zip-update)
10013         (archive-zip-update-case): Use 7z if found by `executable-find'.
10014         The order of searching the available programs is the same as in
10015         `archive-zip-extract' (bug#8968).
10017 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
10019         * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
10020         (menu-bar-options-menu): Tweak descriptions.
10022 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10024         * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
10025         menu items into verb phrases (bug#1421).  Also refill to fit under
10026         80 columns.
10028 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
10030         * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
10031         (Info-read-node-name): Doc fix (Bug#1084).
10033         * thingatpt.el (forward-thing, bounds-of-thing-at-point)
10034         (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
10035         (end-of-sexp, beginning-of-sexp)
10036         (thing-at-point-bounds-of-list-at-point, forward-whitespace)
10037         (forward-symbol, forward-same-syntax, word-at-point)
10038         (sentence-at-point): Doc fix (Bug#1144).
10040 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10042         * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
10043         should cover it (bug#1281).
10045         * cus-edit.el (custom-show): Mark as obsolete.
10047         * net/network-stream.el (network-stream-open-starttls): If GnuTLS
10048         negotiation fails, then possibly try again with a non-encrypted
10049         connection (bug#9017).
10051         * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
10052         be used.
10054 2011-07-07  Richard Stallman  <rms@gnu.org>
10056         * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
10057         property, and handle its changed format.
10058         Look for the correct line number.
10059         Use file's line contents (but not past first =) to find
10060         correct line in message.
10062 2011-07-07  Kenichi Handa  <handa@m17n.org>
10064         * international/characters.el (build-unicode-category-table):
10065         Delete it.
10066         (unicode-category-table): Set it by unicode-property-table-internal.
10068         * international/mule-cmds.el (char-code-property-alist): Move to
10069         to src/chartab.c.
10070         (get-char-code-property): Call unicode-property-table-internal to
10071         load a file.  Call get-unicode-property-internal where necessary.
10072         (put-char-code-property): Call unicode-property-table-internal to
10073         load a file.  Call put-unicode-property-internal where necessary.
10074         put-unicode-property-internal where necessary.
10075         (char-code-property-description):
10076         Call unicode-property-table-internal to load a file.
10078         * international/charprop.el:
10079         * international/uni-bidi.el:
10080         * international/uni-category.el:
10081         * international/uni-combining.el:
10082         * international/uni-comment.el:
10083         * international/uni-decimal.el:
10084         * international/uni-decomposition.el:
10085         * international/uni-digit.el:
10086         * international/uni-lowercase.el:
10087         * international/uni-mirrored.el:
10088         * international/uni-name.el:
10089         * international/uni-numeric.el:
10090         * international/uni-old-name.el:
10091         * international/uni-titlecase.el:
10092         * international/uni-uppercase.el: Regenerate.
10094         * loadup.el: Load international/charprop.el before
10095         international/characters.
10097 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
10099         * window.el (next-buffer, previous-buffer): Signal an error if
10100         called from a minibuffer window.
10102         * bindings.el: Revert 2011-07-04 change.
10104 2011-07-06  Richard Stallman  <rms@gnu.org>
10106         * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
10107         (rmail-mime-insert-bulk, rmail-mime-insert-text):
10108         Treat markers like ints.
10109         (rmail-mime-entity): Doc fix.
10111 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10113         * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
10114         defcustom again for backwards compatibility.
10116         * simple.el (shell-command-on-region): Fill.
10118         * dired-aux.el (dired-kill-line): Add a doc string.
10120         * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
10121         to "\\sw\\|\\s_" (bug#358).
10123         * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
10124         (dired-unmark-backward): Ditto.
10125         (dired-flag-backup-files): Ditto.
10127         * dired-x.el (dired-mark-sexp): Ditto.
10129 2011-07-06  Richard Stallman  <rms@gnu.org>
10131         * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
10132         (rmail-mime-entity): New arg TRUNCATED.
10133         (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
10134         New functions.
10135         (rmail-mime-save): Warn if entity is truncated.
10136         (rmail-mime-toggle-hidden): Likewise, for showing.
10137         (rmail-mime-process-multipart): Record when an entity is truncated.
10139         * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
10140         if ENTITY is a string.
10142 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10144         * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
10145         of faces when `M-C-x'-ing their definitions (bug#8378).
10146         Also clean up the code slightly.
10148         * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
10149         because that makes the colors go away.
10151         * mail/sendmail.el (send-mail-function): Change the default to
10152         `sendmail-query-once'.
10153         (sendmail-query-once): Add an autoload cookie.
10155         * net/network-stream.el (network-stream-open-starttls): Try using
10156         a plain connection even if the server offered STARTTLS, and we
10157         kinda wanted to use it, if Emacs doesn't have any STARTTLS
10158         capability.  This should make smtpmail.el work in slightly more
10159         configurations.
10161 2011-07-06  Michael Albinus  <michael.albinus@gmx.de>
10163         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
10164         New defun.
10165         * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
10167 2011-07-06  Michael R. Mauger  <mmaug@yahoo.com>
10169         * progmodes/sql.el: Version 3.0
10170         (sql-product-alist): Add product :completion-object,
10171         :completion-column, and :statement attributes.
10172         (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
10173         (sql-mode-syntax-table): Mark all punctuation.
10174         (sql-font-lock-keywords-builder): Temporarily remove fallback on
10175         ansi keywords.
10176         (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
10177         (sql-mode-oracle-font-lock-keywords): Improve.
10178         (sql-oracle-show-reserved-words): New function for development.
10179         (sql-product-font-lock): Simplify for source code buffers.
10180         (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
10181         New functions.
10182         (sql-highlight-product): Set product specific syntax table.
10183         (sql-mode-map): Add statement movement functions.
10184         (sql-ansi-statement-starters, sql-oracle-statement-starters):
10185         New variable.
10186         (sql-statement-regexp, sql-beginning-of-statement)
10187         (sql-end-of-statement, sql-signum): New functions.
10188         (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
10189         (sql-show-sqli-buffer): Bug fix.
10190         (sql-interactive-mode): Store connection data as buffer local.
10191         (sql-connect): Add NEW-NAME parameter.  Redesign interaction
10192         with sql-interactive-mode.
10193         (sql-save-connection): Save buffer local settings.
10194         (sql-connection-menu-filter): Change menu entry name.
10195         (sql-product-interactive): Bug fix.
10196         (sql-preoutput-hold): New variable.
10197         (sql-interactive-remove-continuation-prompt): Bug fixes.
10198         (sql-debug-redirect): New variable.
10199         (sql-str-literal): New function.
10200         (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
10201         Redesign.
10202         (sql-oracle-save-settings, sql-oracle-restore-settings)
10203         (sql-oracle-list-all, sql-oracle-list-table): New functions.
10204         (sql-completion-object, sql-completion-column)
10205         (sql-completion-sqlbuf): New variables.
10206         (sql-build-completions-1, sql-build-completions)
10207         (sql-try-completion): New functions.
10208         (sql-read-table-name): Use them.
10209         (sql-contains-names): New buffer local variable.
10210         (sql-list-all, sql-list-table): Use it.
10211         (sql-oracle-completion-types): New variable.
10212         (sql-oracle-completion-object, sql-sqlite-completion-object)
10213         (sql-postgres-completion-object): New functions.
10215 2011-07-06  Glenn Morris  <rgm@gnu.org>
10217         * window.el (pop-to-buffer): Doc fix.
10219 2011-07-06  Markus Heiser  <markus.heiser@darmarit.de>  (tiny change)
10221         * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
10223 2011-07-06  Chong Yidong  <cyd@stupidchicken.com>
10225         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
10227         * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
10229 2011-07-05  Chong Yidong  <cyd@stupidchicken.com>
10231         * button.el (button): Inherit from link face.  Suggested by Dan
10232         Nicolaescu.
10234 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10236         * progmodes/gdb-mi.el: Fit in 80 columns.
10237         (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
10238         switch-to-buffer.
10240         * progmodes/which-func.el (which-func-ff-hook): Don't output a message
10241         if imenu is simply not configured (bug#8941).
10243 2011-07-05  Ken Manheimer  <ken.manheimer@gmail.com>
10245         * allout.el (allout-post-undo-hook): New allout outline-change
10246         event hook to signal undo activity.
10247         (allout-post-command-business): Run allout-post-undo-hook if an
10248         undo just occurred.
10249         (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
10250         * allout-widgets.el (allout-widgets-after-undo-function):
10251         Ensure the integrity of the current item's decoration after it has been
10252         in the vicinity of an undo.
10253         (allout-widgets-mode): Include allout-widgets-after-undo-function
10254         on the new allout-post-undo-hook.
10256 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10258         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
10259         Let define-derived-mode define it.
10260         * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
10261         cycles of abbrev-table inheritance (bug#8998).
10263 2011-07-05  Roland Winkler  <winkler@gnu.org>
10265         * textmodes/bibtex.el: Add support for biblatex.
10266         (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
10267         (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
10268         (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
10269         (bibtex-entry-alist, bibtex-field-alist): New variables.
10270         (bibtex-entry-field-alist): Obsolete alias for
10271         bibtex-BibTeX-entry-alist.
10272         (bibtex-entry-alist, bibtex-field-alist): New widgets.
10273         (bibtex-set-dialect): New command.
10274         (bibtex-entry-type, bibtex-entry-head)
10275         (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
10276         Bind via bibtex-set-dialect.
10277         (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
10278         (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
10279         (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
10280         (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
10281         Define via bibtex-set-dialect.
10282         (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
10283         Obey bibtex-no-opt-remove-re.
10284         (bibtex-vec-push, bibtex-vec-incr): New functions.
10285         (bibtex-format-entry, bibtex-field-list)
10286         (bibtex-print-help-message, bibtex-validate)
10287         (bibtex-search-entries): Use new format of bibtex-entry-alist.
10289 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10291         * progmodes/compile.el (compilation-goto-locus):
10292         * net/tramp-cmds.el (tramp-append-tramp-buffers):
10293         * bs.el (bs-cycle-next, bs-cycle-previous):
10294         * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
10295         * bindings.el (mode-line-other-buffer):
10296         * autoinsert.el (auto-insert):
10297         * arc-mode.el (archive-extract):
10298         * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
10300 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
10302         * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
10303         Fix check of `emacs-lock-unlockable-modes'.
10304         Coerce true values of `emacs-lock--try-unlocking' to t.
10306 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
10308         * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
10309         * emacs-lock.el: New file.
10311 2011-07-05  Julien Danjou  <julien@danjou.info>
10313         * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
10314         than `boundp' to check if face is set.
10316 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
10318         * register.el (registerv-make):
10319         * window.el (window-min-height): Fix typos in docstrings.
10321 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
10323         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
10324         Update doc string.
10326 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
10328         * server.el (server-execute): Catch quit and call
10329         `server-return-error' to pass the error back to emacsclient and
10330         close the connection (bug#8942).
10332 2011-07-04  Ken Manheimer  <ken.manheimer@gmail.com>
10334         * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
10335         insecure exception for current topic.  Also note that auto-saves
10336         are handled differently.
10338         (allout-auto-save-temporarily-disabled, allout-just-did-undo):
10339         State variables for tracking auto-save inhibition situation.
10341         (allout-write-contents-hook-handler): Rename from
10342         'allout-write-file-hook-handler', and describe how it depends on
10343         write-contents-functions sensitivity to non-nil value to prevent
10344         file write.
10346         (allout-auto-save-hook-handler): Remove.  auto-save does not check
10347         this in individual buffers, only in the starting buffer, so this
10348         is not the right way for us to inhibit auto-save in a buffer
10349         according to its condition.
10351         (allout-mode): Use new allout-write-contents-hook-handler, and
10352         only with write-contents-functions.  Remove auto-save provisions -
10353         they're implemented elsewhere.
10355         (allout-before-change-handler): If undo is in progress, note that
10356         for attention of allout-post-command-business.
10358         (allout-post-command-business): If the command we're following was
10359         an undo, check for change in the status of encrypted items and
10360         adjust auto-save inhibitions accordingly.
10362         (allout-toggle-subtree-encryption): Adjust auto-save inhibition
10363         according to whether there are or aren't any plain-text topics
10364         pending encryption.
10366         (allout-inhibit-auto-save-info-for-decryption):
10367         Adjust buffer-saved-size and some allout state to inhibit auto-saves
10368         if there are plain-text topics pending encryption.
10370         (allout-maybe-resume-auto-save-info-after-encryption): Adjust
10371         buffer-saved-size and some allout state to not inhibit auto-saves
10372         if there are no longer any plain-text topics pending encryption.
10374         (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
10375         No longer provide for exemption of the current topic.
10377 2011-07-04  Juri Linkov  <juri@jurta.org>
10379         Add 7z operations to delete and save changed members (bug#8968).
10380         * arc-mode.el (archive-7z-expunge, archive-7z-update):
10381         New defcustoms.
10382         (archive-7z-write-file-member): New function.
10383         (archive-7z-summarize): Fix the number of dashes in the
10384         listing output.
10386 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10388         * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
10389         (bug#8958).
10391 2011-07-04  Chong Yidong  <cyd@stupidchicken.com>
10393         * bindings.el: Ignore next-buffer and previous-buffer in
10394         minibuffer-local-map.
10396         * font-lock.el (font-lock-builtin-face): Change light background
10397         color to dark slate blue (Bug#6693).
10399 2011-07-04  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
10401         * progmodes/gdb-mi.el (gdb): Use completion-at-point.
10403 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10405         * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
10406         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10407         Add switch-to-buffer.
10409 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10411         * isearch.el (isearch-search-fun-function): Clarify further the
10412         meaning of the function returned.
10414 2011-07-04  Michael Albinus  <michael.albinus@gmx.de>
10416         * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
10418         * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
10419         (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
10420         Use it.
10421         (tramp-remote-path): Add "/bin" and "/usr/bin".  On busyboxes,
10422         `tramp-default-remote-path' does not exist.
10423         (tramp-send-command-and-read): New optional argument NOERROR.
10424         (tramp-open-connection-setup-interactive-shell)
10425         (tramp-get-remote-path, tramp-get-remote-stat): Use it.
10426         (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
10427         (tramp-process-sentinel): Flush also process' connection property.
10428         (tramp-sh-handle-start-file-process): Do not set process
10429         sentinel.  It is done now ...
10430         (tramp-maybe-open-connection): ... here.  (Bug#8929)
10432 2011-07-04  MON KEY  <monkey@sandpframing.com>
10434         * play/animate.el (animate-string): Doc fixes and allow changing
10435         the buffer name (bug#5417).
10437 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10439         * play/animate.el (animation-buffer-name): Rename from *animate*.
10441 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
10443         * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
10444         This is simpler and helps future-proof the code.
10445         (timer-until): Use time-subtract and float-time.
10446         (timer--time-less-p): Use time-less-p.
10448 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
10450         * type-break.el (timep): Use the value of `float-time' to avoid a
10451         byte-compiler warning.
10453         * server.el (server-eval-and-print): Return any result, even nil.
10455 2011-07-03  Paul Eggert  <eggert@cs.ucla.edu>
10457         * type-break.el: Accept time formats that the builtins accept.
10458         (timep, type-break-time-difference): Accept any format that
10459         float-time accepts, rather than insisting on (HIGH LOW USECS) format.
10460         This is simpler and helps future-proof the code.
10461         (type-break-time-difference): Round rather than ignoring
10462         subseconds components.
10464 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10466         * info.el (Info-apropos-matches): Make non-interactive, since it
10467         doesn't seem to do anything useful as a command (bug#8829).
10469 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
10471         * frame.el (frame-background-mode, frame-set-background-mode):
10472         Move from faces.el.
10473         (frame-default-terminal-background): New function.
10475         * custom.el (custom-push-theme): Don't record faces in `changed'
10476         theme; this doesn't work correctly for per-frame face settings.
10477         (disable-theme): Use face-set-after-frame-default to reset faces.
10478         (custom--frame-color-default): New function.
10480 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10482         * dired.el (dired-flagging-regexp): Remove unused variable
10483         (bug#8769).
10485 2011-03-29  Kevin Ryde  <user42@zip.com.au>
10487         * progmodes/compile.el (compilation-error-regexp-alist-alist):
10488         `perl-Test2' extend to match possible "fail #N" rep count
10489         (bug#8377).
10491 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10493         * mail/feedmail.el (feedmail-buffer-to-smtpmail):
10494         `smtpmail-via-smtp' now returns the error instead of nil.
10496         * isearch.el (isearch-search-fun-function): Clarify the doc string
10497         (bug#8101).
10499 2011-07-03  Richard Kim  <emacs18@gmail.com>  (tiny change)
10501         * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
10502         unnecessary spaces (bug#8987).
10504 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10506         * net/network-stream.el (open-network-stream): Use the
10507         :end-of-capability command thoughout.
10509 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
10511         * net/network-stream.el (open-network-stream): Add the
10512         :end-of-capability command parameter, used by pop3.el.
10514 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10516         * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
10518         * fringe.el (fringe-query-style): Remove redundant text " (type ?
10519         for list)" (bug#6475).
10521         * files.el (file-expand-wildcards): Ignore non-readable
10522         sub-directories while trying to find matches instead of signaling
10523         an error (bug#6297).
10525         * man.el (Man-reference-regexp): Allow matching possible
10526         word-wrapped references (bug#6289).
10528         * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
10529         for consistency with the other vc buffers (bug#6197).
10530         (vc-checkin): Ditto.
10532         * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
10534         * longlines.el (longlines-mode): Document what ARG does (bug#6150).
10536 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10538         * custom.el (defcustom): Clarify that :set is only used in the
10539         Customize user interface (bug#6089).
10541         * progmodes/flymake.el (flymake-mode): If the buffer isn't
10542         associated with a file, refuse to run instead of erroring out
10543         (bug#6084).
10545         * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
10546         the doc string, since it appears that using `fill-column' always
10547         controls the width (bug#7845).
10549         * simple.el (shell-command-on-region): Say where the error output
10550         went if `shell-command-default-error-buffer' is set (bug#6857).
10552 2011-07-02  Ken Manheimer  <ken.manheimer@gmail.com>
10554         * allout.el (allout-yank-processing): Adjust cursor position for
10555         backwards-deleted space.
10557         (allout-rebullet-heading): Register changes with
10558         allout-exposure-changed-hook, so the modified topic is properly
10559         decorated.
10561 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10563         * minibuffer.el (completion-in-region): Document PREDICATE
10564         (bug#7136).
10566         * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
10567         of keyword/argument pairs (bug#6904).
10569         * replace.el (multi-occur):
10570         Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
10572 2011-07-02  Drew Adams  <drew.adams@oracle.com>
10574         * dired.el (dired-mark-if): Make the message about whether it's
10575         marking or unmarking clearer (bug#8523).
10577 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10579         * disp-table.el (display-table-print-array): New function.
10580         (describe-display-table): Use it to print the vectors more pretty
10581         (Bug#8859).
10583 2011-07-02  Martin Rudalics  <rudalics@gmx.at>
10585         * window.el (window-state-get-1): Don't assign clone numbers.
10586         Add clone-of item to list of window parameters.
10587         (window-state-put-2): Don't process clone numbers.
10588         (display-buffer-alist): Fix doc-string.
10590 2011-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
10592         * subr.el (remq): Don't allocate if it's not needed.
10593         (keymap--menu-item-binding, keymap--menu-item-with-binding)
10594         (keymap--merge-bindings): New functions.
10595         (keymap-canonicalize): Use them to refine the canonicalization.
10596         * minibuffer.el (minibuffer-local-completion-map)
10597         (minibuffer-local-must-match-map): Move initialization from C.
10598         (minibuffer-local-filename-completion-map): Move initialization from C;
10599         don't inherit from anything here.
10600         (minibuffer-local-filename-must-match-map): Make obsolete.
10601         (completing-read-default): Use make-composed-keymap to combine
10602         minibuffer-local-filename-completion-map with either
10603         minibuffer-local-must-match-map or
10604         minibuffer-local-filename-completion-map.
10606 2011-07-01  Glenn Morris  <rgm@gnu.org>
10608         * type-break.el (type-break-time-sum): Use dolist.
10610         * textmodes/flyspell.el (flyspell-word-search-backward):
10611         Replace CL function.
10613 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10615         * mouse.el (mouse--strip-first-event): New function.
10616         (function-key-map): Use it to map fringe clicks to normal clicks
10617         by default.
10619         * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
10620         (vc-bzr-revision-completion-table): Add support for annotate and date.
10622         * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
10623         inherit from parent.
10625 2011-07-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10627         * dired-aux.el (dired-diff): Doc fixup (bug#8816).
10628         (dired-show-file-type): Doc fixup (bug#8818).
10630         * dired.el (dired-mode): Fix up the doc string as suggested by
10631         Drew Adams (bug#8817).
10633         * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
10634         cookie, since the manual says that it should be possible to add
10635         this function to `find-file-hook' (bug#8709).
10637 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
10639         * progmodes/cfengine.el: Moved all cfengine3.el functionality
10640         here.  Noted Ted Zlatanov as the maintainer.
10641         (cfengine-common-settings, cfengine-common-syntax): New functions
10642         to set up common things between `cfengine-mode' and
10643         `cfengine3-mode'.
10644         (cfengine3-mode): New mode.
10645         (cfengine3-defuns cfengine3-defuns-regex
10646         (cfengine3-class-selector-regex cfengine3-category-regex)
10647         (cfengine3-vartypes cfengine3-font-lock-keywords)
10648         (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
10649         (cfengine3-indent-line): Add from cfengine3.el.
10651 2011-07-01  Michael Albinus  <michael.albinus@gmx.de>
10653         * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
10655         * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
10657 2011-07-01  Martin Rudalics  <rudalics@gmx.at>
10659         * window.el (same-window-buffer-names, same-window-regexps)
10660         (same-window-p, special-display-frame-alist)
10661         (special-display-popup-frame, special-display-function)
10662         (special-display-buffer-names, special-display-regexps)
10663         (special-display-p, pop-up-frame-alist, pop-up-frame-function)
10664         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
10665         (split-window-preferred-function, split-height-threshold)
10666         (split-width-threshold, even-window-heights)
10667         (display-buffer-mark-dedicated, window-splittable-p)
10668         (split-window-sensibly, window-safely-shrinkable-p):
10669         Un-obsolete.
10670         (display-buffer): Don't spread args with function specifier
10671         because special-display-popup-frame won't like it.
10673 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
10675         Time-stamp simplifications and fixes.
10676         These improve accuracy slightly, and future-proof the code
10677         against some potential changes to current-time format.
10679         * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
10680         by using time-since and float-time.
10682         * vc/ediff-util.el (ediff-calc-command-time): Use time-since
10683         and float-time.  Say "NNN.NNN seconds" rather than "NNN seconds
10684         + NNN microseconds".
10686         * type-break.el (type-break-time-sum): Rewrite using time-add.
10688         * play/hanoi.el (hanoi-current-time-float): Remove.
10689         All uses replaced by float-time.
10691         * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
10692         This yields a more-accurate answer.
10693         (rng-time-to-float): Remove; no longer needed.
10695         * emacs-lisp/timer.el (timer-relative-time): Use time-add.
10697         * calendar/timeclock.el (timeclock-seconds-to-time):
10698         Defalias to seconds-to-time, since they're the same thing.
10700         * emacs-lisp/elp.el (elp-elapsed-time):
10701         * emacs-lisp/benchmark.el (benchmark-elapse):
10702         * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
10704 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10706         * window.el (bury-buffer): Don't iconify the only frame.
10707         (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
10708         to pop-to-buffer.  Use pop-to-buffer-same-frame if you don't like that.
10710 2011-07-01  Chong Yidong  <cyd@stupidchicken.com>
10712         * eshell/em-smart.el (eshell-smart-display-navigate-list):
10713         Add mouse-yank-primary.
10715 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
10717         * progmodes/cfengine3.el: New file to support CFEngine 3.x.
10719 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10721         * emacs-lisp/find-func.el (find-library--load-name): New fun.
10722         (find-library-name): Use it to find relative load names when provided
10723         absolute file name (bug#8803).
10725 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10727         * textmodes/flyspell.el (flyspell-word): Consider words that
10728         differ only in case as potential doublons (bug#5687).
10730         * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
10731         Remove two rather uninteresting debugging-like messages to make
10732         debbugs.el more silent.
10734         * comint.el (comint-password-prompt-regexp): Accept "Response" as
10735         a password-like phrase.
10737 2011-06-30  Masatake YAMATO  <yamato@redhat.com>
10739         * progmodes/cc-guess.el: New file.
10741         * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
10743         * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
10744         derived from `c-basic-common-init'.
10746         * progmodes/cc-mode.el (top-level): Require cc-guess.
10747         (c-basic-common-init): Use `cc-choose-style-for-mode'.
10749 2011-06-30  Lawrence Mitchell  <wence@gmx.li>
10751         * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
10753 2011-06-30  Alan Mackenzie  <acm@muc.de>
10755         * progmodes/cc-engine.el (c-guess-continued-construct):
10756         Correct the handling of template-args-cont, particularly for when font
10757         lock is disabled.  Name this case as "CASE G".
10759 2011-06-30  Ken Manheimer  <ken.manheimer@gmail.com>
10761         * allout.el (allout-yank-processing): Fix injection of extra space
10762         between bullet and non-whitespace character in first topic when
10763         pasting, ensuring that the actual spacing in the pasted topic
10764         following the bullet char is preserved.  This extra space was
10765         causing pasted encrypted topics to get a decrypted status even
10766         when the content was actually still encrypted.  Now the decryption
10767         status from before the paste is preserved.
10769         (allout-flag-region): Set all allout overlays so they evaporate
10770         when reduced to zero length (evanescent), to prevent overlay
10771         leakage.
10773 2011-06-30  Glenn Morris  <rgm@gnu.org>
10775         * w32-fns.el (w32-charset-info-alist): Declare.
10777         * find-dired.el (find-grep-options): Simplify.
10779         * term/ns-win.el (ns-set-resource): Declare.
10781         * ses.el (row, col): Declare dynamic variables honestly.
10783         * textmodes/reftex-parse.el (index-tags): Declare.
10785 2011-06-30  Chong Yidong  <cyd@stupidchicken.com>
10787         * cus-edit.el (customize-push-and-save): New function.
10789         * files.el (hack-local-variables-confirm): Use it.
10791         * custom.el (load-theme): New arg NO-CONFIRM.
10792         Use customize-push-and-save (Bug#8720).
10793         (custom-enabled-themes): Doc fix.
10795         * cus-theme.el (customize-create-theme)
10796         (custom-theme-merge-theme): Callers to load-theme changed.
10798 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10800         * thingatpt.el (thing-at-point-short-url-regexp): Require that
10801         short URLs have at least one dot in them (bug #7614).
10803         * progmodes/grep.el (rgrep): Bind `process-connection-type' to
10804         nil, because using a pty is apparently too slow (bug #895).
10806 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10808         * mail/sendmail.el (sendmail-query-once): New function.
10809         (sendmail-query-once-function): New variable.
10811 2011-06-29  Glenn Morris  <rgm@gnu.org>
10813         * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
10815         * ses.el (top-level): Require cl when compiling.
10816         (ses-set-localvars): Fix error statement.
10817         Call it at compile time to silence a storm of warnings.
10819 2011-06-29  Martin Rudalics  <rudalics@gmx.at>
10821         * window.el (normalize-live-buffer): Rename to
10822         window-normalize-buffer.
10823         (normalize-live-frame): Rename to window-normalize-frame.
10824         (normalize-any-window): Rename to window-normalize-any-window.
10825         (normalize-live-window): Rename to window-normalize-live-window.
10826         (make-window-atom): Rename to window-make-atom.
10827         (window-resize-reset): Rename to window--resize-reset.
10828         (window-resize-reset-1): Rename to window--resize-reset-1.
10829         (resize-mini-window): Rename to window--resize-mini-window.
10830         (resize-subwindows-skip-p): Rename to
10831         window--resize-subwindows-skip-p.
10832         (resize-subwindows-normal): Rename to
10833         window--resize-subwindows-normal.
10834         (resize-subwindows): Rename to window--resize-subwindows.
10835         (resize-other-windows): Rename to window--resize-siblings.
10836         (resize-this-window): Rename to window--resize-this-window.
10837         (resize-root-window): Rename to window--resize-root-window.
10838         (resize-root-window-vertically): Rename to
10839         window--resize-root-window-vertically.
10840         (normalize-buffer-to-display): Rename to
10841         window-normalize-buffer-to-display.
10842         (normalize-buffer-to-switch-to): Rename to
10843         window-normalize-buffer-to-switch-to.
10844         Correspondingly update all callers of the functions listed
10845         above.
10846         (display-buffer-alist, display-buffer-normalize-arguments)
10847         (display-buffer-normalize-options, display-buffer)
10848         (display-buffer-alist-set): Use "function" instead of
10849         "fun-with-args".
10851 2011-06-28  Chong Yidong  <cyd@stupidchicken.com>
10853         * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
10854         addresses more clearly.  Add hyperlinks for bug-gnu-emacs and
10855         debbugs.gnu.org.  Mention acknowledgment email.
10857 2011-06-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10859         * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
10860         buffer multibyteness, since it shouldn't matter.
10862 2011-06-28  Martin Rudalics  <rudalics@gmx.at>
10864         * window.el (display-buffer-in-side-window): Handle dedicated
10865         windows as in display-buffer-reuse-window.
10866         (display-buffer-normalize-alist): Use value of override
10867         specifier.
10868         (display-buffer-normalize-specifiers): Use value of
10869         other-window-means-other-frame specifier.
10870         (display-buffer-alist): Rewrite some texts in widgets.
10871         (display-buffer): Spread arguments when calling function
10872         specified by fun-with-args.
10874 2011-06-28  Deniz Dogan  <deniz@dogan.se>
10876         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
10877         Unnest `let'.
10879         * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
10880         selectors (Bug#5732).
10881         (css-proprietary-nmstart-re): Use `regexp-opt'.
10883 2011-06-27  Jari Aalto  <jari.aalto@cante.net>
10885         * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
10886         (eshell-ls-date-format): New defcustom.
10887         (eshell-ls-file): Use it.
10889 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10891         * help-fns.el (describe-variable): Fix message for terminal-local vars.
10893 2011-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10895         * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
10896         (ange-ftp-make-tmp-name): New arg.
10897         (ange-ftp-file-local-copy): Use it.
10899 2011-06-27  Jambunathan K  <kjambunathan@gmail.com>
10901         * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
10902         no-conversion (Bug#8870).
10904 2011-06-27  Martin Rudalics  <rudalics@gmx.at>
10906         * window.el (window-right, window-left, window-child)
10907         (window-child-count, window-last-child)
10908         (window-iso-combination-p, walk-window-tree-1)
10909         (window-atom-check-1, window-tree-1, delete-window)
10910         (window-state-get-1, display-buffer-even-window-sizes): Adapt to
10911         new naming conventions - window-vchild, window-hchild,
10912         window-next and window-prev are now called window-top-child,
10913         window-left-child, window-next-sibling and window-prev-sibling
10914         respectively.
10915         (resize-window-reset): Rename to window-resize-reset.
10916         (resize-window-reset-1): Rename to window-resize-reset-1.
10917         (resize-window): Rename to window-resize.
10918         (window-min-height, window-min-width)
10919         (resize-mini-window, resize-this-window, resize-root-window)
10920         (resize-root-window-vertically, adjust-window-trailing-edge)
10921         (enlarge-window, shrink-window, maximize-window)
10922         (minimize-window, delete-window, quit-restore-window)
10923         (split-window, balance-windows, balance-windows-area-adjust)
10924         (balance-windows-area, window-state-put-2)
10925         (display-buffer-even-window-sizes, display-buffer-set-height)
10926         (display-buffer-set-width, set-window-text-height)
10927         (fit-window-to-buffer): Rename all "resize-window" prefixed
10928         calls to use the "window-resize" prefix convention.
10929         (display-buffer-alist): Fix symbol for label specifier.
10930         (display-buffer-reuse-window): Set reuse-dedicated to cdr of
10931         corresponding specifier.
10932         Reported by Juanma Barranquero <lekktu@gmail.com>.
10934 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
10936         * ses.el (ses-destroy-cell-variable-range): Fix heading comment
10937         convention.
10938         (ses-call-printer): Does not pass an empty string to formatter when the
10939         cell is empty to keep from barking printer Calc math-format-value.
10941 2011-06-27  Richard Stallman  <rms@gnu.org>
10943         * battery.el (battery-mode-line-limit): New variable.
10944         (battery-update): Handle it.
10946         * mail/rmailmm.el (rmail-mime-process-multipart):
10947         Handle truncated messages.
10949 2011-06-27  Glenn Morris  <rgm@gnu.org>
10951         * progmodes/flymake.el (flymake-err-line-patterns):
10952         Allow for column numbers in the ant/javac pattern.  (Bug#8866)
10954 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
10956         * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
10957         (ses--clean-!, ses--clean-_): New functions.
10958         (ses-range): Add configurability of readout order, and conversion
10959         to Calc vector.
10961         * ses.el (ses-repair-cell-reference-all): New function.
10962         (ses-cell-symbol): Set macro as safe, so that it can be used in
10963         formulas.
10965         * ses.el: Update cycle detection algorithm.
10966         (ses-localvars): Add ses--Dijkstra-attempt-nb and
10967         ses--Dijkstra-weight-bound, and initial values thereof when applicable.
10968         (ses-set-localvars): New function.
10969         (ses-make-cell): Add property-list as a cell element.
10970         (ses-cell-property-get-fun, ses-cell-property-get)
10971         (ses-cell-property-delq-fun, ses-cell-property-set-fun)
10972         (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
10973         New functions.
10974         (ses-cell-property-set, ses-cell-property-pop)
10975         (ses-cell-property-get-handle): New macro.
10976         (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
10977         New aliases, used for code readability.
10978         (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
10979         cycle detection.
10980         (ses-self-reference-early-detection): New defcustom.
10981         (ses-formula-references): Robustify against self-referring cells.
10982         (ses-mode): Use ses-set-localvars.
10983         (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
10984         before lauching the update processing.
10985         (ses-initialize-Dijkstra-attempt): New function.
10986         (ses-recalculate-cell): Update for cycle detection based on
10987         Dijkstra algorithm.
10989         * ses.el: Fix commenting and indenting convention.
10991 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10993         * bs.el (bs-cycle-next): Complete last change.
10995 2011-06-27  Drew Adams  <drew.adams@oracle.com>
10997         * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
10999 2011-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11001         * net/network-stream.el (network-stream-open-starttls):
11002         Don't re-get capabilities unless we've reestablished connection.
11003         (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
11005         * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
11006         to binary to possibly avoid line encoding issues on Windows (among
11007         other things).
11009 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11011         * net/network-stream.el (open-network-stream): Return an :error
11012         saying what the problem was, if possible.
11014         * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
11015         server.
11017         * net/network-stream.el (network-stream-open-starttls): If we
11018         wanted to use STARTTLS, and the server offered it, but we weren't
11019         able to because we had no STARTTLS support, then close the connection.
11020         (open-network-stream): Return an :error element, if present.
11022 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
11024         * hl-line.el (hl-line-sticky-flag): Doc fix.
11025         (global-hl-line-sticky-flag): New option (Bug#8323).
11026         (global-hl-line-highlight): Obey it.
11028         * vc/vc.el (vc-revert-show-diff): Default to t.
11030 2011-06-26  Ken Manheimer  <ken.manheimer@gmail.com>
11032         * allout-widgets.el (allout-widgets-post-command-business):
11033         Stop decorating intermediate isearch matches.  They're not being
11034         undecorated when an isearch is continued past, and isearch
11035         automatically collapses them.  This leads to "widget leaks", where
11036         decorated items accumulate in collapsed areas.  Lines with lots of
11037         hidden widgets can slow down cursor travel, substantially.
11038         Too much complicated machinery would be needed to ensure undecoration,
11039         so we're doing without this nicety.
11041         (allout-widgets-tally-string): Don't try to do a hash-table-count
11042         of allout-widgets-tally when it's nil.  This eliminates spurious "Error
11043         during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
11044         *Messages* when allout-widgets-maintain-tally is t.
11046 2011-06-26  Martin Rudalics  <rudalics@gmx.at>
11048         * window.el (display-buffer-normalize-argument): Rename to
11049         display-buffer-normalize-arguments.  Handle special meaning of
11050         LABEL argument.  Respect special-display-function when popping up
11051         a new frame.  Fix code searching for a window showing the buffer
11052         on another frame.
11053         (display-buffer-normalize-specifiers):
11054         Call display-buffer-normalize-arguments.
11055         (display-buffer-in-window): Don't undedicate the window if its
11056         buffer remains the same.
11057         Reported by Drew Adams <drew.adams@oracle.com>.
11058         (display-buffer-alist): Add choice for same-window macro
11059         specfier.
11060         (display-buffer): Mention special meaning of LABEL argument in
11061         doc-string.  Fix quoting.  Don't pop up a new frame even as
11062         fallback.
11064 2011-06-26  Juanma Barranquero  <lekktu@gmail.com>
11066         * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
11067         avoid deleting the current window in some cases (bug#8911).
11069 2011-06-26  Andreas Schwab  <schwab@linux-m68k.org>
11071         * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
11072         (Bug#8934)
11074 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11076         * net/network-stream.el (network-stream-open-starttls):
11077         Use built-in TLS support if `gnutls-available-p' is true.
11078         (network-stream-open-tls): Ditto.
11080 2011-06-26  Leo Liu  <sdl.web@gmail.com>
11082         * register.el (registerv): New struct.
11083         (registerv-make): New function.
11084         (jump-to-register, describe-register-1, insert-register):
11085         Support the jump-func, print-func and insert-func slot of a registerv
11086         struct.  (Bug#8415)
11088 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
11090         * vc/vc.el (vc-revert-show-diff): New defcustom.
11091         (vc-diff-internal): New arg specifying diff buffer.
11092         (vc-revert): Obey vc-revert-show-diff.  If we show a diff, don't
11093         reuse an existing *vc-diff* buffer (Bug#8927).
11095         * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
11097 2011-06-26  Glenn Morris  <rgm@gnu.org>
11099         * progmodes/f90.el (f90-critical-indent): New option.
11100         (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
11101         (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
11102         (f90-mode): Doc fix.
11103         (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
11104         (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
11105         (f90-beginning-of-block, f90-next-block, f90-indent-region)
11106         (f90-match-end): Handle block, critical.
11108 2011-06-25  Glenn Morris  <rgm@gnu.org>
11110         * calendar/diary-lib.el (diary-included-files): Doc fix.
11111         (diary-include-files): New function, extracted from
11112         diary-include-other-diary-files and diary-mark-included-diary-files.
11113         (diary-include-other-diary-files, diary-mark-included-diary-files):
11114         Just call diary-include-files.
11115         (diary-mark-entries): Reset diary-included-files on first call.
11117         * calendar/diary-lib.el (diary-mark-entries)
11118         (diary-mark-included-diary-files):
11119         Visit included diary-files in temp buffers.
11121         * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
11122         (f90-blocks-re, f90-program-block-re, f90-end-block-re)
11123         (f90-start-block-re, f90-imenu-generic-expression)
11124         (f90-looking-at-program-block-start, f90-no-block-limit):
11125         Add support for submodules.
11127         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
11128         (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
11130 2011-06-25  Eli Zaretskii  <eliz@gnu.org>
11132         * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
11133         buffer-file-type before setting its value, to avoid disastrous
11134         global effects on decoding files for DOS/Windows systems.  (Bug#8780)
11136 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
11138         * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
11140         * ses.el (ses-unload-function):
11141         * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
11143         * proced.el (proced-unload-function):
11144         * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
11146 2011-06-25  Andreas Rottmann  <a.rottmann@gmx.at>
11148         * server.el (server-create-window-system-frame): Add parameters arg.
11149         (server-process-filter): Doc fix.  Handle frame-parameters.
11151 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
11153         Fix bug#8730, bug#8781.
11155         * loadhist.el (unload--set-major-mode): New function.
11156         (unload-feature): Use it.
11158         * progmodes/python.el (python-after-info-look): Add autoload cookie.
11159         (python-unload-function): New function.
11161 2011-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11163         * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
11165 2011-06-25  Giuseppe Scrivano  <gscrivano@gnu.org>
11167         * net/browse-url.el (browse-url-firefox-program): Add icecat to
11168         the candidates list.
11170 2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
11172         * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
11174 2011-06-23  Richard Stallman  <rms@gnu.org>
11176         * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
11177         (rmail-variables): Set next-error-move-function.
11178         (rmail-what-message): Take argument POS.
11179         (rmail-next-error-move): New function.
11181 2011-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11183         * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
11184         messages for adjacent non-terminals.
11186 2011-06-23  Richard Stallman  <rms@gnu.org>
11188         * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
11189         (rmail-show-message-1): Preserve buffer modified flag.
11190         (rmail-start-mail): Don't specify use of rmail-mail-return;
11191         that's done by mail-bury now.
11192         (rmail-mail-return): Handle arg NEWBUF.
11194 2011-06-23  Michael Albinus  <michael.albinus@gmx.de>
11196         * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
11197         SIZE is a number.
11199 2011-06-23  Martin Rudalics  <rudalics@gmx.at>
11201         * window.el (get-lru-window, get-mru-window)
11202         (get-largest-window): Never return a minibuffer window.
11203         (display-buffer-pop-up-window): Fix a bug that could lead to
11204         reusing the minibuffer window.
11205         (display-buffer): Pass original specifier argument to
11206         display-buffer-function instead of the normalized one.
11207         Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
11209 2011-06-22  Leo Liu  <sdl.web@gmail.com>
11211         * minibuffer.el (completing-read-function)
11212         (completing-read-default): Move from minibuf.c
11214 2011-06-22  Richard Stallman  <rms@gnu.org>
11216         * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
11217         to Rmail even if not started by a special Rmail command.
11219         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
11220         Copy the buffer currently showing just one message.
11222 2011-06-22  Roland Winkler  <winkler@gnu.org>
11224         * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
11225         (bibtex-clean-entry): First delete the old key so that a
11226         customized algorithm for generating the new key does not get
11227         confused by the old key.
11228         (bibtex-url): Obey regexp of first step.
11229         (bibtex-search-entries): Do not use add-to-list with local
11230         list-var.
11232 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11234         * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
11235         stored a user name, then query for the password first, instead of
11236         waiting for SMTP to give an error message and the trying again.
11238 2011-06-22  Lawrence Mitchell  <wence@gmx.li>
11240         * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
11241         BUFFER in call-process.
11243 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11245         * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
11246         QUIT twice.
11247         (smtpmail-try-auth-methods): Require user name and password from
11248         auth-source.
11250 2011-06-22  Martin Rudalics  <rudalics@gmx.at>
11252         * window.el (display-buffer-default-specifiers)
11253         (display-buffer-alist): Remove entries for pop-up-frame-alist.
11254         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
11255         (split-window): Normalize SIDE argument (Bug#8916).
11257         * frame.el (pop-up-frame-alist, pop-up-frame-function)
11258         (special-display-frame-alist, special-display-popup-frame):
11259         Remove duplicate declarations.  These are now in window.el.
11261 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11263         * mail/smtpmail.el (smtpmail-via-smtp):
11264         Set :use-starttls-if-possible so that we always use STARTTLS if the
11265         server supports it.  SMTP servers that support STARTTLS commonly
11266         require it.
11268         * net/network-stream.el (network-stream-open-starttls): Support
11269         upgrading to STARTTLS always, even if we don't have built-in support.
11270         (open-network-stream): Add the :always-query-capabilities keyword.
11272         * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
11273         upgrades with `open-network-stream', and rely solely on
11274         auth-source for all credentials.  Big changes throughout the file,
11275         but in particular:
11276         (smtpmail-auth-credentials): Remove.
11277         (smtpmail-starttls-credentials): Remove.
11278         (smtpmail-via-smtp): Check for servers saying they want AUTH after
11279         MAIL FROM, too.
11281         * net/network-stream.el (network-stream-open-starttls):
11282         Provide support for client certificates both for external and built-in
11283         STARTTLS.
11284         (auth-source): Require.
11285         (open-network-stream): Document the :client-certificate keyword.
11286         (network-stream-certificate): Change cert-cert to cert and
11287         cert-key to key.
11289 2011-06-21  Michael Albinus  <michael.albinus@gmx.de>
11291         * net/tramp-cache.el (top): Don't load the persistency file when
11292         "emacs -Q" has been called.
11294 2011-06-21  Tim Harper  <timcharper@gmail.com>
11296         * term/ns-win.el (ns-initialize-window-system):
11297         Set application-specific `ApplePressAndHoldEnabled' system
11298         resource to NO as it is not yet supported by the NS port.
11300 2011-06-21  Juanma Barranquero  <lekktu@gmail.com>
11302         * misc.el (list-dynamic-libraries--refresh): Compute header here...
11303         (list-dynamic-libraries): ...not here.
11305 2011-06-21  Leo Liu  <sdl.web@gmail.com>
11307         * subr.el (sha1): Implement sha1 using secure-hash.
11309 2011-06-21  Martin Rudalics  <rudalics@gmx.at>
11311         * window.el (display-buffer-alist): In default value do not
11312         enforce searching a window on any but the selected frame.
11313         Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
11314         (display-buffer-select-window): Remove function.
11315         (display-buffer-in-window): When a window on another frame gets
11316         reused, do not select it any more but just raise its frame if
11317         necessary (Bug#8851) and (Bug#8856).
11318         (display-buffer-normalize-options): Handle pop-up-frames related
11319         options more faithfully.
11320         (pop-to-buffer): Don't rely on `display-buffer' selecting the
11321         window if it is on another frame.
11322         (display-buffer-alist, display-buffer-default-specifiers):
11323         Don't make new frame unsplittable by default.
11324         (display-buffer-normalize-argument): Fix doc-string typo and use
11325         'same-frame-other-window instead of 'other-window when associating
11326         with display-buffer-macro-specifiers.
11328 2011-06-21  Vincent Belaïche  <vincent.b.1@hotmail.fr>
11330         * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
11331         New functions.
11332         (5x5-mode-map, 5x5-mode-menu): Bind them.
11333         (5x5-draw-grid): Tweak the solver's rendering.
11335 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11337         * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
11338         `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
11340 2011-06-21  Drew Adams  <drew.adams@oracle.com>
11342         * menu-bar.el: Use function variable instead of switch-to-buffer.
11343         (menu-bar-select-buffer-function): New variable.
11344         (menu-bar-update-buffers): Use it (bug#8876).
11346 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11348         * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
11349         variable's status.
11351 2011-06-20  Jan Djärv  <jan.h.d@swipnet.se>
11353         * x-dnd.el (x-dnd-version-from-flags)
11354         (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
11355         and long as number (Bug#8899).
11356         (x-dnd-handle-xdnd): Call functions above (Bug#8899).
11358 2011-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11360         * minibuffer.el (completion-metadata): Add `metadata' to the alist.
11361         (completion-try-completion, completion-all-completions): Compute the
11362         metadata argument if it's missing; make it optional (bug#8795).
11364         * wid-edit.el: Use lex-bind and move towards completion-at-point.
11365         (widget-complete): Use new :completion-function property.
11366         (widget-completions-at-point): New function.
11367         (default): Use :completion-function instead of :complete.
11368         (widget-default-completions): Rename from widget-default-complete;
11369         Rewrite.
11370         (widget-string-complete, widget-file-complete, widget-color-complete):
11371         Remove functions.
11372         (file, symbol, function, variable, coding-system, color):
11373         * international/mule-cmds.el (default-input-method, charset)
11374         (language-info-custom-alist):
11375         * cus-edit.el (face): Use new property :completions.
11377         * progmodes/pascal.el (pascal-completions-at-point): New function.
11378         (pascal-mode): Use it.
11379         (pascal-mode-map): Use completion-at-point.
11380         (pascal-toggle-completions): Make obsolete.
11381         (pascal-complete-word, pascal-show-completions):
11382         * progmodes/octave-mod.el (octave-complete-symbol):
11383         Redefine as obsolete alias.
11384         * progmodes/octave-inf.el (inferior-octave-completion-at-point):
11385         Signal absence of completion info for old Octave,
11386         (inferior-octave-complete): Redefine as obsolete alias.
11387         * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
11388         (meta-completions-at-point): Rename from meta-complete-symbol and
11389         adapt it for use on completion-at-point-functions.
11390         (meta-common-mode): Use it.
11391         (meta-looking-at-backward, meta-match-buffer): Remove.
11392         (meta-complete-symbol): Redefine as obsolete alias.
11393         (meta-common-mode-map): Use completion-at-point.
11394         * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
11395         (makefile-mode-map): Use completion-at-point.
11396         (makefile-completions-at-point): Rename from makefile-complete and
11397         adapt it for use on completion-at-point-functions.
11398         (makefile-mode): Use it.
11399         (makefile-complete): Redefine as obsolete alias.
11401 2011-06-20  Deniz Dogan  <deniz@dogan.se>
11403         * net/rcirc.el: Delete trailing whitespaces once and for all.
11405 2011-06-20  Daniel Colascione  <dan.colascione@gmail.com>
11407         * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
11409 2011-06-19  Chong Yidong  <cyd@stupidchicken.com>
11411         * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
11413         * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
11415 2011-06-19  Martin Rudalics  <rudalics@gmx.at>
11417         * window.el (display-buffer-other-window-means-other-frame):
11418         Call display-buffer-normalize-alist.
11419         (display-buffer-normalize-specifiers-1): Rename to
11420         display-buffer-normalize-argument.  New argument other-frame.
11421         Rewrite.
11422         (display-buffer-normalize-specifiers-2): Rename to
11423         display-buffer-normalize-options.
11424         (display-buffer-normalize-alist-1): New function.
11425         (display-buffer-normalize-specifiers-3): Rename to
11426         display-buffer-normalize-alist.
11427         Call display-buffer-normalize-alist-1.
11428         (display-buffer-normalize-options-inhibit): New variable.
11429         (display-buffer-normalize-specifiers): Rewrite calling
11430         display-buffer-normalize-alist,
11431         display-buffer-normalize-argument, and
11432         display-buffer-normalize-options.  Don't call the latter if
11433         display-buffer-normalize-options-inhibit is non-nil.
11434         (frame-auto-delete): New option.
11435         (window-deletable-p): Use frame-auto-delete.
11436         (window-list-no-nils, window-state-ignored-parameters)
11437         (window-state-get-1, window-state-get, window-state-put-list)
11438         (window-state-put-1, window-state-put-2, window-state-put):
11439         New functions.
11440         (display-buffer-normalize-options): Move special-display-p group
11441         after pop-up-frame group (Bug#8851) and (Bug#8856).
11443 2011-06-18  Chong Yidong  <cyd@stupidchicken.com>
11445         * emacs-lisp/rx.el (rx-constituents): Add support for numbered
11446         groups (Bug#8776).
11447         (rx-submatch-n): New function.
11448         (rx): Document it.
11450         * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
11451         (Bug#8768).
11453         * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
11455         * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
11457         * cus-face.el (custom-declare-face): Call custom-theme-recalc face
11458         anytime existing face settings are present (Bug#8889).
11460         * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
11461         (delphi-mode): Use define-derived-mode to inherit from prog-mode.
11462         Remove unused argument.
11464 2011-06-18  Martin Rudalics  <rudalics@gmx.at>
11466         * window.el (display-buffer-default-specifiers):
11467         Remove pop-up-frame.  Add pop-up-window-min-height,
11468         pop-up-window-min-width, and another reuse-window specifier
11469         (Bug#8882).  Reported by Dan Nicolaescu <dann@gnu.org>.
11470         (display-buffer-normalize-specifiers-2):
11471         Handle split-height-threshold and split-width-threshold also when
11472         pop-up-windows is unset.  Add a reuse-window specifier for the
11473         case popping up a new window fails.
11474         (special-display-popup-frame): Remove double quoting.
11475         (display-buffer-normalize-specifiers-1): Fix thinko.
11477 2011-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11479         * shell.el (shell-completion-vars): Set pcomplete-termination-string
11480         according to comint-completion-addsuffix.
11482         * pcomplete.el: Convert to lexical binding and fix bug#8819.
11483         (pcomplete-suffix-list): Mark as obsolete.
11484         (pcomplete-completions-at-point): Capture pcomplete-norm-func and
11485         pcomplete-seen in the closure.
11486         (pcomplete-comint-setup): Setup completion-at-point as well.
11487         (pcomplete--entries): New function.
11488         (pcomplete--env-regexp): New var.
11489         (pcomplete-entries): Rewrite to work with partial-completion and
11490         without relying on pcomplete-suffix-list.
11491         (pcomplete-pare-list): Remove, unused.
11493 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
11495         * window.el (display-buffer-alist): Set pop-up-window-min-height
11496         and pop-up-window-min-width in default value.  Reported by
11497         Thierry Volpiatto <thierry.volpiatto@gmail.com>.  New specifier
11498         other-window-means-other-frame.
11499         (display-buffer-macro-specifiers): Comment out entry for
11500         other-window specifier.
11501         (display-buffer-other-window-means-other-frame): New function.
11502         (display-buffer-normalize-specifiers-1): New arguments
11503         buffer-name and label.  Treat other-window case specially.
11504         (display-buffer-normalize-specifiers-2): Treat other-window case
11505         specially.
11506         (display-buffer-normalize-specifiers-3): New function.
11507         (display-buffer-normalize-specifiers):
11508         Call display-buffer-normalize-specifiers-3.
11510 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
11512         * window.el (same-window-p): Fix two typos introduced when
11513         adding with-no-warnings.
11514         (display-buffer-normalize-specifiers-1): Don't check
11515         pop-up-frames for 'unset initialization.
11516         (display-buffer-normalize-specifiers-2): Major rewrite using
11517         special-display-p and same-window-p (Bug#8851) and (Bug#8856).
11518         (pop-up-frames, display-buffer-reuse-frames)
11519         (display-buffer-mark-dedicated): Don't initialize to 'unset.
11520         Suggested by David Engster <deng@randomsample.de>.
11521         (even-window-heights): Initialize to 'unset.
11522         (display-buffer-alist-set): Handle new 'unset initializations.
11523         (display-buffer-macro-specifiers): Don't pop up a new frame in the
11524         other window case.
11526 2011-06-16  Martin Rudalics  <rudalics@gmx.at>
11528         * window.el (display-buffer-normalize-specifiers-1):
11529         Respect current value of pop-up-frames for most reasonable values of
11530         second argument of display-buffer (Bug#8865).
11531         (switch-to-buffer-same-frame, switch-to-buffer-other-window)
11532         (switch-to-buffer-other-window-same-frame)
11533         (switch-to-buffer-other-frame): Fix doc-strings.  Reported by Drew
11534         Adams (Bug#8875).
11535         (display-buffer): Don't check noninteractive when calling
11536         display-buffer-pop-up-frame.
11537         (display-buffer-pop-up-frame): Never pop up a frame in
11538         noninteractive mode (Bug#8857).
11539         (enlarge-window, shrink-window): Don't report an error when the
11540         window can't be resized as requested (Bug#8862).
11542 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11544         * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
11546         * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
11548         * abbrev.el (define-abbrev-table): Don't add a table multiple times.
11550 2011-06-15  Alan Mackenzie  <acm@muc.de>
11552         * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
11553         for declarators, disable knr checking to speed up for normal files.
11554         2: Refactor, replacing a sequence of nested if forms by a cond form.
11556 2011-06-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11558         * net/network-stream.el (open-network-stream): Add the keyword
11559         :always-query-capabilities for the case where you want to force a
11560         `plain' network connection, but the protocol still requires the
11561         capabilitiy command (i.e., SMTP and EHLO).
11563         * subr.el (process-live-p): Rename from `process-alive-p' for
11564         consistency with other `-live-p' functions.
11566 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11568         * window.el (same-window-buffer-names, same-window-regexps)
11569         (special-display-frame-alist, special-display-popup-frame)
11570         (special-display-function, special-display-buffer-names)
11571         (special-display-regexps, pop-up-frame-alist)
11572         (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
11573         (pop-up-windows, split-window-preferred-function)
11574         (split-height-threshold, split-width-threshold, even-window-heights)
11575         (display-buffer-mark-dedicated): Don't encourage the use of
11576         display-buffer-alist from Elisp code.
11578 2011-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
11580         * progmodes/python.el (python-mode): Derive from prog-mode.
11581         * progmodes/ps-mode.el (ps-mode):
11582         * progmodes/mixal-mode.el (mixal-mode):
11583         * progmodes/cfengine.el (cfengine-mode):
11584         * progmodes/ld-script.el (ld-script-mode): Likewise.
11586 2011-06-15  Martin Rudalics  <rudalics@gmx.at>
11588         * window.el (display-buffer-alist): Trim default value to avoid
11589         popping up a new frame (Bug#8857) or reusing an arbitrary window
11590         on another frame.
11591         (display-buffer): Do not fall back on popping up a new frame in
11592         batch mode (Bug#8857).
11594 2011-06-14  Chong Yidong  <cyd@stupidchicken.com>
11596         * cus-theme.el (describe-theme-1): Use custom-theme-p.
11597         (custom-theme-summary): New function.
11598         (customize-themes): Use it.
11600 2011-06-13  Glenn Morris  <rgm@gnu.org>
11602         * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
11604 2011-06-13  Martin Rudalics  <rudalics@gmx.at>
11606         * help.el (help-window): Remove variable.
11607         (help-window-point-marker, temp-buffer-max-height)
11608         (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
11609         (help-print-return-message): Don't set help-window.
11610         (resize-temp-buffer-window): Rewrite cod eand doc-string.
11611         (help-window-setup-finish): Remove.
11612         (help-window-display-message, help-window-setup)
11613         (with-help-window): Major rewrite based on new
11614         display-buffer-window variable.
11616         * help-mode.el (help-mode-finish): Remove help-window related
11617         code.
11619         * view.el (view-exits-all-viewing-windows): Remove reference to
11620         view-return-to-alist in doc-string.
11621         (view-return-to-alist): Make obsolete.
11622         (view-buffer): Call pop-to-buffer-same-window and remove
11623         undo-window code.
11624         (view-buffer-other-window): Call pop-to-buffer-other-window and
11625         simplify code.  Ignore second argument.
11626         (view-buffer-other-frame): Call pop-to-buffer-other-frame and
11627         simplify code.  Ignore second argument.
11628         (view-return-to-alist-update): Make obsolete.
11629         (view-mode-enter): Rename second argument to QUIT-RESTORE.
11630         Rewrite using quit-restore window parameters.
11631         (view-mode-exit): Rename second argument to EXIT-ONLY.
11632         Rewrite using quit-restore-window.
11633         (View-exit, View-exit-and-edit, View-leave, View-quit)
11634         (View-quit-all, View-kill-and-leave): Call view-mode-exit with
11635         appropriate arguments.
11636         (view-end-message): Use quit-restore window parameter.
11638         * window.el (display-buffer-function): Rewrite doc-string.
11639         (display-buffer-window, display-buffer-alist): New variables.
11640         (display-buffer-split-specifiers)
11641         (display-buffer-side-specifiers)
11642         (display-buffer-macro-specifiers): New constants.
11643         (display-buffer-even-window-sizes, display-buffer-set-height)
11644         (display-buffer-set-width, display-buffer-select-window)
11645         (display-buffer-in-window, display-buffer-reuse-window)
11646         (display-buffer-split-window-1, display-buffer-split-window)
11647         (display-buffer-split-atom-window, display-buffer-pop-up-window)
11648         (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
11649         (display-buffer-in-side-window, normalize-buffer-to-display)
11650         (display-buffer-normalize-specifiers-1)
11651         (display-buffer-normalize-specifiers-2)
11652         (display-buffer-normalize-specifiers, display-buffer-frame):
11653         New functions.
11654         (display-buffer): Major rewrite.
11655         (display-buffer-other-window, display-buffer-other-frame)
11656         (pop-to-buffer, switch-to-buffer-other-window)
11657         (switch-to-buffer-other-frame): Rewrite.
11658         (display-buffer-same-window, display-buffer-same-frame)
11659         (display-buffer-same-frame-other-window)
11660         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
11661         (pop-to-buffer-other-window)
11662         (pop-to-buffer-same-frame-other-window)
11663         (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
11664         (switch-to-buffer-other-window-same-frame): New functions.
11665         (same-window-p, special-display-p): Rewrite disabling warnings.
11666         Make obsolete.
11667         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11668         (display-buffer-mark-dedicated): Initialize to symbol 'unset.
11669         Make obsolete
11670         (same-window-buffer-names, same-window-regexps)
11671         (special-display-frame-alist, special-display-popup-frame)
11672         (special-display-function, special-display-buffer-names)
11673         (special-display-regexps, pop-up-frame-alist)
11674         (pop-up-frame-function, split-window-preferred-function)
11675         (split-height-threshold, split-width-threshold)
11676         (even-window-heights): Make obsolete.
11678 2011-06-12  Glenn Morris  <rgm@gnu.org>
11680         * term/xterm.el (terminal-init-xterm): `version' may be nil.  (Bug#8838)
11681         Misc simplifications.
11683 2011-06-12  Martin Rudalics  <rudalics@gmx.at>
11685         * window.el (window-safely-shrinkable-p): Restore function which
11686         was inadvertently removed in change from 2011-06-11.  Declare as
11687         obsolete.
11689         * calendar/calendar.el (calendar-generate-window):
11690         Use window-iso-combined-p instead of combination of one-window-p and
11691         window-safely-shrinkable-p.
11693 2011-06-12  Glenn Morris  <rgm@gnu.org>
11695         * progmodes/fortran.el (fortran-mode-syntax-table):
11696         * progmodes/f90.el (f90-mode-syntax-table):
11697         Set % to punctuation.  (Bug#8820)
11698         (f90-find-tag-default): Remove, no longer needed.
11700 2011-06-12  Daniel Colascione  <dan.colascione@gmail.com>
11702         * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
11704 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
11706         * image.el (image-animated-p): Return animation delay in seconds.
11707         Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
11708         (image-animate-timeout): Remove DELAY argument.  Don't assume
11709         every subimage has the same delay; get it from image-animated-p.
11710         (image-animate): Caller changed.
11712 2011-06-11  Michael Albinus  <michael.albinus@gmx.de>
11714         * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
11715         to ignored backtrace functions.
11717 2011-06-11  Glenn Morris  <rgm@gnu.org>
11719         * calendar/appt.el (appt-disp-window-function): Doc fix.
11720         (appt-check): Handle overlapping appointments.  (Bug#8337)
11722 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
11724         * window.el (window-tree-1, window-tree): New functions, moving
11725         the latter to window.el.
11726         (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
11727         (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
11728         (bw-refresh-edges): Remove.
11729         (balance-windows-1, balance-windows-2): New functions.
11730         (balance-windows): Rewrite in terms of window tree functions,
11731         balance-windows-1 and balance-windows-2.
11732         (bw-adjust-window): Remove.
11733         (balance-windows-area-adjust): New function with functionality of
11734         bw-adjust-window but using resize-window.
11735         (set-window-text-height): Rewrite doc-string.
11736         Use normalize-live-window and resize-window.
11737         (enlarge-window-horizontally, shrink-window-horizontally):
11738         Rename argument to DELTA.
11739         (window-buffer-height): New function.
11740         (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
11741         Rewrite using new window resize routines.
11742         (kill-buffer-and-window, mouse-autoselect-window-select):
11743         Use ignore-errors instead of condition-case.
11744         (quit-window): Call delete-frame instead of delete-windows-on
11745         for the only buffer on frame.
11747 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
11749         * loadup.el (top-level): Load window before files for the sake
11750         of replace-buffer-in-windows.
11752         * files.el (read-buffer-to-switch)
11753         (switch-to-buffer-other-window)
11754         (switch-to-buffer-other-frame, display-buffer-other-frame):
11755         Move to window.el.
11757         * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
11758         (previous-buffer): Move to window.el.
11760         * bindings.el (unbury-buffer): Move to window.el.
11762         * window.el (delete-other-windows-vertically): Move after
11763         definition of delete-other-windows.
11764         (other-window, delete-windows-on, replace-buffer-in-windows):
11765         Move here from window.c.
11766         (record-window-buffer, unrecord-window-buffer)
11767         (set-window-buffer-start-and-point, switch-to-prev-buffer)
11768         (switch-to-next-buffer): New functions.
11769         (get-next-valid-buffer, last-buffer, next-buffer): Move here
11770         from simple.el.  Call switch-to-next-buffer.
11771         (previous-buffer): Move here from simple.el.
11772         Call switch-to-prev-buffer.
11773         (bury-buffer): Move here from buffer.c.  Switch to previous
11774         buffer when window cannot be deleted.
11775         (unbury-buffer): Move here from bindings.el.
11776         (ctl-x-map): Move binding for other-window from window.c to
11777         here.
11778         (read-buffer-to-switch, switch-to-buffer-other-window)
11779         (switch-to-buffer-other-frame): Move here from files.el.
11780         (normalize-buffer-to-switch-to): New functions.
11781         (switch-to-buffer): Move here from buffer.c.
11782         Use read-buffer-to-switch and normalize-buffer-to-switch-to.
11784 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
11786         * window.el (window-min-height, window-min-width): Move here
11787         from window.c.  Add defcustoms and rewrite doc-strings.
11788         (resize-mini-window, resize-window): New functions.
11789         (adjust-window-trailing-edge, enlarge-window, shrink-window):
11790         Move here from window.c.
11791         (maximize-window, minimize-window): New functions.
11792         (delete-window, delete-other-windows, split-window): Move here
11793         from window.c.
11794         (window-split-min-size): New function.
11795         (split-window-keep-point): Mention split-window-above-each-other
11796         instead of split-window-vertically.
11797         (split-window-above-each-other, split-window-vertically):
11798         Rename split-window-vertically to split-window-above-each-other
11799         and provide defalias for old definition.
11800         (split-window-side-by-side, split-window-horizontally):
11801         Rename split-window-horizontally to split-window-side-by-side
11802         and provide defalias for the old definition.
11803         (ctl-x-map): Move bindings for delete-window,
11804         delete-other-windows and enlarge-window here from window.c.
11805         Replace bindings for split-window-vertically and
11806         split-window-horizontally by bindings for
11807         split-window-above-each-other and split-window-side-by-side.
11809         * cus-start.el (all): Remove entries for window-min-height and
11810         window-min-width.  Add entries for window-splits and
11811         window-nest.
11813 2011-06-09  Glenn Morris  <rgm@gnu.org>
11815         * calendar/appt.el (appt-mode-line): New function.
11816         (appt-check, appt-disp-window): Use it.
11818         * files.el (hack-one-local-variable-eval-safep):
11819         Allow minor-modes with explicit +/-1 arguments.
11821 2011-06-09  Teodor Zlatanov  <tzz@lifelogs.com>
11823         * term/xterm.el (xterm): Add defgroup.
11824         (xterm-extra-capabilities): Add defcustom to supply known xterm
11825         capabilities, skip querying them, or query them (default).
11826         (terminal-init-xterm): Use it.
11827         (terminal-init-xterm-modify-other-keys): New function to set up
11828         modifyOtherKeys support to simplify `terminal-init-xterm'.
11830 2011-06-09  Martin Rudalics  <rudalics@gmx.at>
11832         * window.el (resize-window-reset, resize-window-reset-1)
11833         (resize-subwindows-skip-p, resize-subwindows-normal)
11834         (resize-subwindows, resize-other-windows, resize-this-window)
11835         (resize-root-window, resize-root-window-vertically)
11836         (window-deletable-p, window-or-subwindow-p)
11837         (frame-root-window-p): New functions.
11839 2011-06-09  Glenn Morris  <rgm@gnu.org>
11841         * net/ange-ftp.el (ange-ftp-switches-ok): New function.
11842         (ange-ftp-get-files): Use it.
11844 2011-06-09  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
11846         * mail/sendmail.el (mail-recover-1, mail-recover):
11847         * files.el (recover-file, recover-session):
11848         Handle dired-listing-switches not being just a single short option.
11850 2011-06-09  Glenn Morris  <rgm@gnu.org>
11852         * calendar/appt.el (appt-display-message, appt-disp-window):
11853         Handle lists of appointments.
11855 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
11857         * window.el (one-window-p): Move down in code.
11858         Rewrite doc-string.
11859         (window-current-scroll-bars): Rewrite doc-string.
11860         Normalize live window argument.
11861         (walk-windows, get-window-with-predicate, count-windows):
11862         Rewrite doc-string.  Use window-list-1.
11863         (window-in-direction-2, window-in-direction, get-mru-window):
11864         New functions.
11866 2011-06-08  Reuben Thomas  <rrt@sc3d.org>
11868         * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
11869         Doc fix (Bug#8713).
11871 2011-06-08  Chong Yidong  <cyd@stupidchicken.com>
11873         * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
11875 2011-06-08  Juanma Barranquero  <lekktu@gmail.com>
11877         * loadhist.el (unload-feature-special-hooks):
11878         Add `comint-output-filter-functions'.
11880 2011-06-08  Ivan Kanis  <gnu@kanis.fr>
11882         * calendar/appt.el (appt-check): Move some initializations into the let.
11884 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
11886         * window.el (window-height): Defalias to window-total-height.
11887         (window-width): Defalias to window-body-width.
11889 2011-06-07  Chong Yidong  <cyd@stupidchicken.com>
11891         * image-mode.el (image-toggle-animation): New command.
11892         (image-mode-map): Bind it to RET.
11893         (image-mode): Update message.
11894         (image-toggle-display-image): Avoid a spurious cache flush.
11895         (image-transform-rotation): Doc fix.
11896         (image-transform-properties): Return quickly in the normal case.
11897         (image-animate-loop): Rename from image-animate-max-time.
11899         * image.el (image-animate-max-time): Move to image-mode.el.
11900         (create-animated-image): Remove unnecessary function.
11901         (image-animate): Rename from image-animate-start.  New arg.
11902         (image-animate-stop): Remove; just use image-animate-timer.
11903         (image-animate-timer): Use car-safe.
11904         (image-animate-timeout): Rename argument.
11906 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
11908         * window.el (get-lru-window, get-largest-window): Move here from
11909         window.c.  Rename first argument to ALL-FRAMES.
11910         Rephrase doc-strings.
11911         (get-buffer-window-list): Rewrite using window-list-1.
11912         Rephrase doc-string.
11913         (window-safe-min-height, window-safe-min-width): New constants.
11914         (window-size-ignore, window-min-size, window-min-size-1)
11915         (window-sizable, window-sizable-p, window-size-fixed-1)
11916         (window-size-fixed-p, window-min-delta-1, window-min-delta)
11917         (window-max-delta-1, window-max-delta, window-resizable)
11918         (window-resizable-p, window-total-height, window-total-width)
11919         (window-body-width): New functions.
11920         (window-full-height-p, window-full-width-p): Rewrite using
11921         window-total-size.
11922         (window-body-height): Rewrite using window-body-size.
11924 2011-06-06  Martin Rudalics  <rudalics@gmx.at>
11926         * window.el (window-right, window-left, window-child)
11927         (window-child-count, window-last-child, window-any-p)
11928         (normalize-live-buffer, normalize-live-frame)
11929         (normalize-any-window, normalize-live-window)
11930         (window-iso-combination-p, window-iso-combined-p)
11931         (window-iso-combinations)
11932         (walk-window-tree-1, walk-window-tree, walk-window-subtree)
11933         (windows-with-parameter, window-with-parameter)
11934         (window-atom-root, make-window-atom, window-atom-check-1)
11935         (window-atom-check, window-side-check, window-check):
11936         New functions.
11937         (ignore-window-parameters, window-sides, window-sides-vertical)
11938         (window-sides-slots): New variables.
11939         (window-size-fixed): Move down in code.  Minor doc-string fix.
11941 2011-06-05  Andreas Schwab  <schwab@linux-m68k.org>
11943         * comint.el (comint-dynamic-complete-as-filename)
11944         (comint-dynamic-complete-filename): Correctly call
11945         completion-in-region.
11947 2011-06-05  Deniz Dogan  <deniz@dogan.se>
11949         * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
11950         in last change.
11952 2011-06-05  Deniz Dogan  <deniz@dogan.se>
11954         * net/rcirc.el (rcirc-prompt-for-encryption): New function.
11955         (rcirc): Use it to prompt for encryption.
11957 2011-06-05  Roland Winkler  <winkler@gnu.org>
11959         * textmodes/bibtex.el (bibtex-search-buffer): New variable.
11960         (bibtex-search-entries): New command bound to C-c C-a.
11961         (bibtex-display-entries): New function.
11963 2011-06-05  Roland Winkler  <winkler@gnu.org>
11965         * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
11966         (bibtex-insert-kill): After yanking insert newline if necessary.
11967         (bibtex-initialize): Call bibtex-string-files-init only once.
11968         (bibtex-mode): Do not call easy-menu-add.
11969         (bibtex-validate-globally): Use save-excursion in bibtex buffers.
11970         (bibtex-yank): Set arg properly if nil.
11972 2011-06-05  Roland Winkler  <winkler@gnu.org>
11974         * textmodes/bibtex.el (bibtex-search-entry-globally):
11975         New variable.
11976         (bibtex-search-entry): Use it.
11978 2011-06-05  Roland Winkler  <winkler@gnu.org>
11980         * textmodes/bibtex.el (bibtex-entry-format): New option
11981         sort-fields.
11982         (bibtex-format-entry, bibtex-reformat): Honor this option.
11983         (bibtex-parse-entry): Return fields in proper order.
11985 2011-06-05  Juanma Barranquero  <lekktu@gmail.com>
11987         * doc-view.el (doc-view-remove-if): Move computation of result out
11988         of `dolist' to silence misleading lexical-binding warning.
11990 2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
11992         * emacs-lisp/timer.el (timer-activate): Remove unused arg.
11993         (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
11995 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
11997         * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
11998         "SunOS 5.10".
12000 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
12002         * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
12003         (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
12004         (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
12005         (tramp-parse-putty):
12006         * net/tramp-sh.el (tramp-completion-function-alist-rsh)
12007         (tramp-completion-function-alist-ssh)
12008         (tramp-completion-function-alist-telnet)
12009         (tramp-completion-function-alist-su)
12010         (tramp-completion-function-alist-putty): Set `tramp-autoload'
12011         cookie.
12013         * net/tramp-ftp.el:
12014         * net/tramp-sh.el:
12015         * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
12016         load "tramp.el" `tramp-set-completion-function'.
12018 2011-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12020         * shell.el: Require and use pcomplete.
12021         (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
12022         (shell-completion-vars): Set pcomplete-default-completion-function.
12024 2011-06-04  Deniz Dogan  <deniz@dogan.se>
12026         * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
12027         `memq' (Bug#8799).
12029 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12031         * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
12033 2011-06-02  Juanma Barranquero  <lekktu@gmail.com>
12035         * bs.el (bs--mark-unmark, bs--nth-wrapper):
12036         * mpc.el (mpc-select-extend, mpc-songpointer-context):
12037         * vc/log-view.el (log-view-beginning-of-defun):
12038         * vc/smerge-mode.el (smerge-apply-resolution-patch)
12039         (smerge-refine-forward, smerge-refine-chopup-region):
12040         Silence warning for unused `dotimes' counter variables.
12042 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12044         * net/tramp.el (tramp-with-progress-reporter): Rename from
12045         with-progress-reporter.  Use `declare'.
12046         * net/tramp-smb.el:
12047         * net/tramp-sh.el:
12048         * net/tramp-gvfs.el: Update all uses.
12050 2011-06-02  Jay Belanger  <jay.p.belanger@gmail.com>
12052         * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
12053         buffer isn't killed before making it current.
12055 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12057         Silence various byte-compiler warnings.
12058         * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
12059         `access-type' and new obsolescence format.
12060         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
12061         new format.
12062         (byte-compile-check-variable): New `access-type' argument.
12063         Only warn if the access-type is obsolete.
12064         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
12065         (byte-compile-variable-set): Adjust callers.
12066         * help-fns.el (describe-variable): Adjust to new obsolescence format.
12067         * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
12068         setting it as obsolete.
12069         * simple.el (minibuffer-completing-symbol):
12070         * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
12071         access as obsolete.
12072         * minibuffer.el (minibuffer-completing-file-name): Don't make it
12073         obsolete yet.
12074         * international/quail.el (quail-mouse-choose-completion): Remove unused
12075         code referring to obsolete var.
12076         (quail-choose-completion-string): Remove.
12077         * server.el (server-clients-with, server-kill-buffer-query-function)
12078         (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
12079         * proced.el (proced-send-signal):
12080         * emacs-lisp/lisp.el (lisp-complete-symbol):
12081         Replace completion-annotate-function with completion-extra-properties.
12083 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12085         * simple.el (goto-line): Use read-number.
12086         (overriding-map-is-bound): Remove.
12087         (saved-overriding-map): Change default.
12088         (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
12089         Take the map as argument.
12090         (universal-argument, negative-argument, digit-argument): Use it.
12091         (restore-overriding-map): Adjust.
12092         (do-auto-fill): Use fill-forward-paragraph.
12093         (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
12095         * minibuffer.el (minibuffer-inactive-mode-map): New var.
12096         (minibuffer-inactive-mode): New major mode.
12097         * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
12098         the *Messages* buffer" hack.
12099         (mouse-popup-menubar): Don't burp if the event is a normal key.
12101         Miscellaneous tweaks.
12102         * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
12103         lexical scoping as in subr.el's dolist and dotimes.
12104         * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
12105         Silence compiler warning.
12106         * thingatpt.el (forward-whitespace): Trivial coding style fix.
12107         * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
12108         * international/ccl.el (ccl-compile): Trivial simplification.
12109         * help-fns.el (help-do-arg-highlight): Silence compiler warning.
12110         * emacs-lisp/testcover.el (testcover-end): Remove spurious
12111         `printflag' argument.
12112         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
12113         Purecopy the whole obsolescence data.
12115 2011-06-01  Leo Liu  <sdl.web@gmail.com>
12117         * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
12118         improve doc-string as suggested by Marco Pessotto
12119         <melmothx@gmail.com>.
12120         (rcirc-print): Fix last change.
12122 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12124         * minibuffer.el (complete-with-action): Return nil for the metadata and
12125         boundaries of non-functional tables.
12126         (completion-table-dynamic): Return nil for the metadata.
12127         (completion-table-with-terminator): Add default case, using
12128         complete-with-action.
12129         (completion--metadata): New function.
12130         (completion-all-sorted-completions, minibuffer-completion-help): Use it
12131         to try and avoid pathological performance problems.
12132         (completion--embedded-envvar-table): Return `category' metadata.
12134 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12136         * subr.el (process-alive-p): New tiny convenience function.
12138 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12140         * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
12141         content but also its previous major mode.
12143 2011-05-31  Helmut Eller  <eller.helmut@gmail.com>
12145         * emacs-lisp/debug.el (debug): Restore the previous content of the
12146         *Backtrace* buffer when we exit with C-M-c.
12148 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12150         * minibuffer.el: Add metadata method to completion tables.
12151         (completion-category-overrides): New defcustom.
12152         (completion-metadata, completion--field-metadata)
12153         (completion-metadata-get, completion--styles)
12154         (completion--cycle-threshold): New functions.
12155         (completion-try-completion, completion-all-completions):
12156         Add `metadata' argument to choose completion-styles.
12157         (completion--do-completion): Use metadata to choose cycling.
12158         (completion-all-sorted-completions): Use metadata for sorting.
12159         Remove :completion-cycle-penalty which is not needed any more.
12160         (completion--try-word-completion): Add `metadata' argument.
12161         (minibuffer-completion-help): Check metadata for annotation function
12162         and sorting.
12163         (completion-file-name-table): Return `category' metadata.
12164         (minibuffer-completing-file-name): Make obsolete.
12165         * simple.el (minibuffer-completing-symbol): Make obsolete.
12166         * icomplete.el (icomplete-completions): Pass new `metadata' param to
12167         completion-try-completion.
12169 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12171         * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
12173 2011-05-30  Leo Liu  <sdl.web@gmail.com>
12175         * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
12176         (rcirc-print): Decode all incoming messages (bug#8744).
12177         (rcirc-decode-coding-system): Allow value nil for automatic coding
12178         system detection.
12180 2011-06-01  Glenn Morris  <rgm@gnu.org>
12182         * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
12184 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
12186         * image.el (image-animate-max-time): Allow nil and t values.
12187         Default to nil.
12188         (create-animated-image): Doc fix.
12189         (image-animate-start): Remove second arg; just use
12190         image-animate-max-time.
12191         (image-animate-timeout): Doc fix.  Args changed.
12193         * image-mode.el (image-toggle-display-image): Ensure that the
12194         image spec passed to the animate timer is the same object as in
12195         the buffer's display property (Bug#6981).
12196         (image-transform-properties): Doc fix.
12198         * image.el (image-animate-max-time): Default to nil.
12200 2011-05-29  Martin Rudalics  <rudalics@gmx.at>
12202         * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
12203         entire buffer list (Bug#8184).
12205 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
12207         * image.el (imagemagick-types-inhibit)
12208         (imagemagick-register-types): Doc fix.
12210 2011-05-29  Deniz Dogan  <deniz@dogan.se>
12212         * net/rcirc.el (rcirc): Use the user's stored encryption method by
12213         default.
12215 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
12217         * select.el: Don't perform clipboard-manager saving in hooks;
12218         leave the hooks empty.
12220 2011-05-28  Leo Liu  <sdl.web@gmail.com>
12222         * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
12223         (occur-mode-map): Bind occur-edit-mode.  Use occur-menu-map.
12224         (occur-edit-mode): New major mode (Bug#8463).
12225         (occur-after-change-function): New function.
12226         (occur-engine): Give Occur tags a read-only property.
12228 2011-05-28  Kevin Ryde  <user42@zip.com.au>
12230         * subr.el (def-edebug-spec): Doc fix (Bug#8430).
12232 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
12234         * bindings.el (help-echo): Make the initial non-indicator dash
12235         empty on graphical terminals (Bug#7295).
12237         * files.el (auto-mode-alist): Move config rule after the
12238         in-stripping one (Bug#8547).
12240         * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
12242         * startup.el (normal-splash-screen): Remove gratuitous mode-line
12243         setting (Bug#8740).
12245 2011-05-28  Alp Aker  <aker@pitt.edu>  (tiny change)
12247         * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
12248         (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
12249         (Bug#8539).
12251 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
12253         * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
12255 2011-05-28  Dima Kogan  <dkogan@cds.caltech.edu>  (tiny change)
12257         * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
12258         (hs-hide-block-at-point, hs-find-block-beginning)
12259         (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
12260         (Bug#8279).
12262 2011-05-28  Glenn Morris  <rgm@gnu.org>
12264         * startup.el (fancy-about-screen): Use standard mode line.  (Bug#8740)
12266 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
12268         * help-fns.el (describe-function-1): If the function is a derived
12269         major mode, print the parent mode.
12271         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
12272         (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
12274 2011-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12276         * minibuffer.el (completion--capf-wrapper): Check applicability before
12277         returning non-nil for non-exclusive completion data.
12278         * progmodes/etags.el (tags-completion-at-point-function):
12279         * info-look.el (info-lookup-completions-at-point): Mark as
12280         non-exclusive.
12281         (info-complete): Adjust accordingly.
12283         * info-look.el: Convert to lexical-binding and completion-at-point.
12284         (info-lookup-completions-at-point): New function.
12285         (info-complete): Use it and completion-in-region.
12287 2011-05-28  Drew Adams  <drew.adams@oracle.com>
12289         * isearch.el: Let M-e start with point at the first mismatched char.
12290         (isearch-fail-pos): New function.
12291         (isearch-edit-string): Use it.
12293 2011-05-28  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
12295         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12297 2011-05-27  Toby Cubitt  <toby-predictive@dr-qubit.org>
12299         * emacs-lisp/avl-tree.el: New avl-tree-stack datatype.  Add new
12300         traversal functions for avl-trees.
12301         (avl-tree--stack): New struct.
12302         (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
12303         (avl-tree-enter): Add optional `updatefun' arg.
12304         (avl-tree--do-enter): Add optional `updatefun' arg.
12305         Change return value.
12306         (avl-tree-delete): Add optional `test' and `nilflag' args.
12307         (avl-tree--do-delete): Add `test' and `nilflag' args.
12308         Change return value.
12309         (avl-tree-member): Add optional `nilflag'
12310         (avl-tree-member-p): New function.
12311         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
12312         (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
12313         (avl-tree-stack-empty-p): New functions.
12315         * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
12316         avl-tree--del-balance1 and make it work both ways.
12317         (avl-tree--del-balance2): Remove.
12318         (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
12319         make it work both ways.
12320         (avl-tree--enter-balance2): Remove.
12321         (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
12322         New macros.
12323         (avl-tree--mapc, avl-tree-map): Add direction argument.
12325 2011-05-27  David Michael  <fedora.dm0@gmail.com>  (tiny change)
12327         * files.el (interpreter-mode-alist): Add rbash (bug#8745).
12329 2011-05-27  Chong Yidong  <cyd@stupidchicken.com>
12331         * select.el: Support clipboard managers with built-in function
12332         x-clipboard-manager-save, via delete-frame-functions and
12333         kill-emacs-hook.
12334         (xselect-convert-to-targets): Add MULTIPLE target to list.
12335         (xselect-convert-to-save-targets): New function.
12337 2011-05-27  Kenichi Handa  <handa@m17n.org>
12339         * mail/sendmail.el (mail-encode-header): Avoid double encoding by
12340         let-binding rfc2047-encode-encoded-words to nil.
12342 2011-05-27  Glenn Morris  <rgm@gnu.org>
12344         * mail/emacsbug.el: Don't require url-util.
12346         * shell.el (shell-directory-tracker): Case matters.  (Bug#8735)
12348         * files.el (set-auto-mode):
12349         Also respect mode: entries at the end of the file.  (Bug#8586)
12351 2011-05-26  Glenn Morris  <rgm@gnu.org>
12353         * files.el (hack-local-variables-prop-line, hack-local-variables):
12354         Downcase mode names, as seems to be traditional.
12355         (hack-local-variables, hack-local-variables-apply): Doc fixes.
12357         * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
12358         (report-emacs-bug-hook): Try to validate the From address.  (Bug#8038)
12360 2011-05-25  Julien Danjou  <julien@danjou.info>
12362         * textmodes/rst.el (rst-define-level-faces): Do not define face
12363         symbol if it is already defined.
12365 2011-05-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
12367         * play/5x5.el (5x5-new-game, 5x5-randomize):
12368         Reset 5x5-solver-output to nil when a new grid is cast.
12369         (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
12370         these debugging traces, as defmacro breaks the compiled code.
12372 2011-05-24  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
12374         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12376 2011-05-24  Leo Liu  <sdl.web@gmail.com>
12378         * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
12379         (vc-bzr-sha1): Adapt.
12381         * sha1.el: Remove.  Function `sha1' is now builtin.
12383         * bindings.el: Provide sha1 feature.
12385 2011-05-24  Kenichi Handa  <handa@m17n.org>
12387         * mail/sendmail.el: Require `rfc2047'.
12388         (mail-insert-from-field): Do not perform RFC2047 encoding.
12389         (mail-encode-header): New function.
12390         (sendmail-send-it): Set buffer-file-coding-system of the work
12391         buffer to the return value of select-message-coding-system.
12392         Call mail-encode-header.
12394         * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
12396 2011-05-24  Sean Neakums  <sneakums@zork.net>  (tiny change)
12398         * mail/supercite.el (sc-default-cite-frame):
12399         Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
12401 2011-05-24  Glenn Morris  <rgm@gnu.org>
12403         * progmodes/python.el (brm-menu): Declare.
12405         * emulation/viper.el (viper-set-hooks): Declare.
12407         * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
12408         (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
12409         (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
12410         (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
12411         (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
12412         (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
12414 2011-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12416         Add an :exit-function for completion-at-point.
12418         * minibuffer.el (completion--done): New fun.
12419         (completion--do-completion): Use it.  New arg `expect-exact'.
12420         (minibuffer-complete, minibuffer-complete-word): Don't output message,
12421         since completion--do-completion does it for us now.
12422         (minibuffer-force-complete): Use completion--done and
12423         completion--replace.  Handle sole-completion case with more care.
12424         (minibuffer-complete-and-exit): Use new `expect-exact' arg.
12425         (completion-extra-properties): New var.
12426         (completion-annotate-function): Make obsolete.
12427         (minibuffer-completion-help): Adjust accordingly.
12428         Use completion-list-insert-choice-function.
12429         (completion-at-point, completion-help-at-point):
12430         Bind completion-extra-properties.
12431         (completion-pcm-word-delimiters): Add | (for uniquify, for example).
12432         * simple.el (completion-list-insert-choice-function): New var.
12433         (completion-setup-function): Preserve it.
12434         (choose-completion): Pay attention to it, shuffle the code a bit.
12435         (choose-completion-string): New arg `insert-function'.
12437         * textmodes/bibtex.el: Convert to lexical binding.
12438         (bibtex-mode-map): Use completion-at-point.
12439         (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
12440         (bibtex-completion-at-point-function): New fun, from bibtex-complete.
12441         (bibtex-complete): Define as obsolete alias.
12442         (bibtex-complete-internal): Remove.
12443         (bibtex-format-entry): Remove unused sub-group in regexp.
12444         * shell.el (shell--command-completion-data)
12445         (shell-environment-variable-completion):
12446         * pcomplete.el (pcomplete-completions-at-point):
12447         * comint.el (comint--complete-file-name-data): Use :exit-function
12448         instead of completion-table-with-terminator so it also works for
12449         choose-completion.
12451 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12453         * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
12455         * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
12456         (bug#8710).
12458         * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
12460 2011-05-23  Ken Manheimer  <ken.manheimer@gmail.com>
12462         * allout.el (allout-inhibit-auto-fill-on-headline): Create new
12463         customization variable and implement: If non-nil, auto-fill will
12464         be inhibited while on topic's header line.
12466 2011-05-23  Vincent Belaïche  <vincentb1@users.sourceforge.net>
12468         * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
12469         click on.  II/ Make 5x5 multisession.  III/ Ensure that random grids
12470         always have a solution in grid size = 5 cases.
12471         (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
12472         (5x5-solver-output, 5x5-log-buffer): New vars.
12473         (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
12474         Make these variables buffer local to achieve 5x5 multi-session-ness.
12475         (5x5): Set 5x5-grid-size only if SIZE is non-negative.
12476         (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
12477         (5x5-solve-suggest): New funs.
12478         (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
12479         randomize a grid so that we ensure that there is always a solution.
12480         (5x5-make-random-grid): Allow other movement than flipping.
12482 2011-05-23  Kevin Ryde  <user42@zip.com.au>
12484         * emacs-lisp/advice.el (ad-read-advised-function):
12485         Use `function-called-at-point' as the default, if it has
12486         advice and passes PREDICATE.
12488 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12490         * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
12491         byte-compile-lambda if it's actually a lambda.
12493         * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
12494         Fix function quoting.  Use backquote better.
12496 2011-05-22  Yuanle Song  <sylecn@gmail.com>
12498         * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
12499         matching (Bug#8516).
12501 2011-01-22  Jari Aalto  <jari.aalto@cante.net>
12503         * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
12504         different face (Bug#8178).
12506 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
12508         * vc/diff-mode.el (diff-changed): Don't use terminal specs for
12509         defface (Bug#8144).
12511 2011-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12513         * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
12514         funcall as well (bug#8712).  Warn when performing those conversions.
12515         * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
12517         * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
12519 2011-05-22  Glenn Morris  <rgm@gnu.org>
12521         * files.el (hack-local-variables-prop-line): Small simplifications.
12522         (hack-local-variables, hack-local-variables-prop-line):
12523         If MODE-ONLY, return the mode, rather than just `t'.
12525 2011-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12527         * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
12529 2011-05-21  Glenn Morris  <rgm@gnu.org>
12531         * files.el (hack-local-variables-prop-line, hack-local-variables):
12532         If only interested in the mode, don't bother doing the other stuff.
12534         * image-mode.el (image-after-revert-hook):
12535         Redraw all frames on which the image is visible.  (Bug#8567)
12537         * dired-aux.el (dired-touch-initial): Just use current-time.  (Bug#6887)
12539         * wid-edit.el (widget-checklist-match-inline):
12540         Fix 2011-04-19 change.  (Bug#8649)
12542 2011-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12544         * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
12545         Also allow singlespace after single-letter capitals followed by a dot.
12547         * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
12548         enabled.  Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
12550 2011-05-20  Nix  <nix@esperi.org.uk>
12552         * files.el (basic-save-buffer-2):
12553         Fix handling of break-hardlink-on-save with non-existent files.
12555 2011-05-19  Deniz Dogan  <deniz@dogan.se>
12557         * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
12558         (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
12560 2011-05-19  Glenn Morris  <rgm@gnu.org>
12562         * progmodes/f90.el (f90-type-def-re):
12563         Handle "type, bind(c)".  (Bug#8691)
12565         * emacs-lisp/autoload.el (batch-update-autoloads):
12566         Set autoload-excludes by parsing loadup.el rather than Makefiles.
12568 2011-05-18  Michael Albinus  <michael.albinus@gmx.de>
12570         * net/tramp.el (tramp-process-actions): Set "first-password-request"
12571         property for the correct connection in case of multihops.
12573 2011-05-18  Glenn Morris  <rgm@gnu.org>
12575         * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
12576         * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
12578         Rationalize calendar handling of day and month abbrev-arrays.
12579         * calendar/calendar.el (calendar-customized-p): New function.
12580         (calendar-abbrev-construct, calendar-make-alist): Change what it does.
12581         (calendar-day-name-array, calendar-month-name-array): Doc fix.
12582         Add :set function.
12583         (calendar-abbrev-length, calendar-day-abbrev-array)
12584         (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
12585         (calendar-day-abbrev-array, calendar-month-abbrev-array):
12586         Elements may no longer be nil.
12587         (calendar-day-name, calendar-month-name):
12588         Update for changed nature of abbrev arrays.
12589         * calendar/diary-lib.el (diary-name-pattern):
12590         Update for changed nature of abbrev arrays.
12591         (diary-mark-entries-1): Update calendar-make-alist calls.
12592         (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
12593         * calendar/cal-html.el (cal-html-day-abbrev-array):
12594         Simply inherit from calendar-day-abbrev-array.
12596 2011-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12598         * progmodes/grep.el (grep-mode): Disable default
12599         compilation-directory-matcher setting (bug#8684).
12601 2011-05-17  Michael Albinus  <michael.albinus@gmx.de>
12603         * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
12604         instead of "head" and "tail".  There were problems with SunOS 5.9,
12605         and it performs better.
12607 2011-05-17  Glenn Morris  <rgm@gnu.org>
12609         * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
12611         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
12612         Replace obsolete function.
12614         * shell.el (pcomplete-parse-arguments-function): Declare.
12616         * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
12617         (appt-display-diary, appt-display-interval, appt-prev-comp-time)
12618         (appt-check): Doc fixes.
12619         (appt-disp-window-function, appt-delete-window-function):
12620         Remove needless special case in custom :type.
12621         (appt-display-count): Default to 0, not nil.
12622         (appt-check): Reset appt-display-count to 0, not nil.
12624 2011-05-17  Juanma Barranquero  <lekktu@gmail.com>
12626         * progmodes/python.el (python-font-lock-keywords):
12627         Add the Python 3.X keyword "nonlocal" (bug#8639).
12629 2011-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12631         * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
12633 2011-05-16  Kevin Ryde  <user42@zip.com.au>
12635         * info-look.el (makefile-automake-mode): New setups, looking in
12636         automake manual, then makefile-mode.
12637         (makefile-mode): Remove automake manual, have it just in
12638         makefile-automake-mode since there's various things different or
12639         not relevant to plain make.
12640         (makefile-mode): Remove "other-modes" non-existent automake-mode,
12641         believe a hypothetical automake-mode would go to makefile-mode,
12642         not the other way around.
12644 2011-05-15  Chong Yidong  <cyd@stupidchicken.com>
12646         * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
12647         hunk-end tags (Bug#8672).
12649         * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
12650         vc-annotate-show-diff-revision-at-line (Bug#8671).
12652 2011-05-14  Glenn Morris  <rgm@gnu.org>
12654         * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
12655         in the middle of an existing one with multiple authors.  (Bug#8645)
12656         (change-log-font-lock-keywords): Also handle multiple author lines
12657         with leading tabs.  (Bug#8644)
12659         * calendar/appt.el (appt-check): Rename some local variables.
12660         Some simplification/reordering.
12662         * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
12663         (feedmail-sendmail-f-doesnt-sell-me-out)
12664         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
12665         (feedmail-debug-sit-for, feedmail-queue-express-hook)
12666         (feedmail-queue-runner-message-sender): Set :version.
12667         (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
12668         (bbdb-dwim-net-address, vm-mail): Declare.
12669         (feedmail-binmail-gnulinuxish-template):
12670         Rename from feedmail-binmail-linuxish-template.
12671         (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
12672         Use insert-buffer-substring.
12674 2011-05-14  Bill Carpenter  <bill@carpenter.org>
12676         * mail/feedmail.el (feedmail-patch-level): Increase.
12677         (feedmail-debug): New custom group.
12678         (feedmail-confirm-outgoing-timeout)
12679         (feedmail-sendmail-f-doesnt-sell-me-out)
12680         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
12681         (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
12682         (feedmail-sender-line, feedmail-from-line)
12683         (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
12684         (feedmail-spray-this-address)
12685         (feedmail-spray-address-fiddle-plex-list)
12686         (feedmail-queue-use-send-time-for-date)
12687         (feedmail-queue-use-send-time-for-message-id)
12688         (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
12689         (feedmail-buffer-eating-function):
12690         Doc fixes.
12691         (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
12692         (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
12693         (feedmail-message-action-scroll-down): New functions.
12694         (feedmail-queue-directory, feedmail-queue-draft-directory):
12695         Use expand-file-name.
12696         (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
12697         Remove C-v help entry.
12698         (feedmail-queue-buffer-file-name): New variable.
12699         (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
12700         (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
12701         (feedmail-message-action-send-strong, feedmail-message-action-edit)
12702         (feedmail-message-action-draft, feedmail-message-action-draft-strong)
12703         (feedmail-message-action-queue, feedmail-message-action-queue-strong)
12704         (feedmail-message-action-toggle-spray)
12705         (feedmail-run-the-queue-no-prompts)
12706         (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
12707         (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
12708         (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
12709         (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
12710         (feedmail-envelope-deducer, feedmail-fiddle-from)
12711         (feedmail-fiddle-sender, feedmail-default-date-generator)
12712         (feedmail-fiddle-date, feedmail-fiddle-message-id)
12713         (feedmail-fiddle-spray-address)
12714         (feedmail-fiddle-list-of-spray-fiddle-plexes)
12715         (feedmail-fiddle-list-of-fiddle-plexes)
12716         (feedmail-fill-to-cc-function, feedmail-fill-this-one)
12717         (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
12718         (feedmail-queue-runner-message-sender, feedmail-binmail-template):
12719         Change default.  Doc fix.
12720         (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
12721         (feedmail-binmail-linuxish-template): New constant.
12722         (feedmail-buffer-to-sendmail): Doc fix.  Add debug call.
12723         Respect feedmail-sendmail-f-doesnt-sell-me-out.
12724         (feedmail-send-it): Add debug call.
12725         Use feedmail-queue-buffer-file-name, and
12726         feedmail-send-it-immediately-wrapper.
12727         (feedmail-message-action-send): Add debug call.
12728         Use feedmail-send-it-immediately-wrapper.
12729         (feedmail-queue-express-to-queue): Add debug call.
12730         Run feedmail-queue-express-hook.
12731         (feedmail-message-action-help): Add debug call.  Use feedmail-p-h-b-n.
12732         (feedmail-message-action-help-blat):
12733         Rename from feedmail-queue-send-edit-prompt-help-first.
12734         (feedmail-run-the-queue): Add debug call.  Set buffer-file-type.
12735         Check line-endings.  Handle errors better.
12736         (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
12737         Doc fix.  Add debug call.
12738         (feedmail-queue-send-edit-prompt): Doc fix.  Add debug call.
12739         Use feedmail-queue-send-edit-prompt-inner.
12740         (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
12741         (feedmail-queue-send-edit-prompt-inner): New function, extracted
12742         from feedmail-queue-send-edit-prompt.
12743         (feedmail-queue-send-edit-prompt-help)
12744         (feedmail-queue-send-edit-prompt-help-later): Remove functions.
12745         (feedmail-tidy-up-slug): Add debug call.
12746         Respect feedmail-queue-slug-suspect-regexp.
12747         (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
12748         (feedmail-dump-message-to-queue): Add debug call.
12749         Expand queue-directory.
12750         (feedmail-dump-message-to-queue): Change message slightly.
12751         Use feedmail-say-chatter.
12752         (feedmail-rfc822-date): Add debug call.  Bind system-time-locale.
12753         (feedmail-send-it-immediately-wrapper): New function.
12754         (feedmail-send-it-immediately): Add debug calls.  Use let not let*.
12755         Insert empty string rather than newline.  Handle full-frame case.
12756         Use catch/throw.  Use feedmail-say-chatter.
12757         (feedmail-fiddle-from): Try mail-host-address.
12758         (feedmail-default-message-id-generator): Doc fix.
12759         Bind system-time-locale.  Handle missing end.
12760         (feedmail-fiddle-x-mailer): Add debug call.
12761         Handle feedmail-x-mailer-line being nil.
12762         (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
12763         Add debug call.  Use buffer-substring-no-properties.
12764         (feedmail-say-debug, feedmail-say-chatter): New functions.
12765         (feedmail-find-eoh): Give an explicit error.
12767 2011-05-13  Ulf Jasper  <ulf.jasper@web.de>
12769         * net/newst-treeview.el (newsticker-treeview-face): Change default
12770         family from helvetica to sans.
12771         (newsticker-treeview-tool-bar-map): Move tool-bar icons to
12772         etc/images/newsticker.
12774         * net/newst-reader.el (newsticker-feed-face): Change default
12775         family from helvetica to sans.
12777         * net/newst-plainview.el (newsticker-new-item-face)
12778         (newsticker-old-item-face, newsticker-immortal-item-face)
12779         (newsticker-obsolete-item-face, newsticker-date-face)
12780         (newsticker-statistics-face): Change default family from
12781         helvetica to sans.
12782         (newsticker--plainview-tool-bar-map): Move tool-bar icons to
12783         etc/images/newsticker.
12785         * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
12786         (newsticker--process-auto-mark-filter-match): Tell user about
12787         auto-marking.
12789 2011-05-13  Didier Verna  <didier@xemacs.org>
12791         Common Lisp indentation improvements on defmethod and lambda-lists.
12792         * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
12793         TODO entries.
12794         (lisp-lambda-list-keyword-parameter-indentation)
12795         (lisp-lambda-list-keyword-parameter-alignment)
12796         (lisp-lambda-list-keyword-alignment): New customizable user options.
12797         (lisp-indent-defun-method): Improve docstring.
12798         (extended-loop-p): Fix comment.
12799         (lisp-indent-lambda-list-keywords-regexp): New variable.
12800         (lisp-indent-lambda-list): New function.
12801         (lisp-indent-259): Use it.
12802         (lisp-indent-defmethod): Support for more than one
12803         method qualifier and properly indent methods lambda-lists.
12804         (defgeneric): Provide a missing common-lisp-indent-function property.
12806 2011-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12808         * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
12809         bounds for the empty string (bug#8667).
12811 2011-05-13  Glenn Morris  <rgm@gnu.org>
12813         * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
12815         * mail/sendmail.el (sendmail-program): Try executable-find first.
12816         (sendmail-send-it): `sendmail-program' cannot be unbound.
12818         * calendar/appt.el (appt-make-list): Simplify.
12819         (appt-time-msg-list): Doc fix.
12820         (appt-check): Change mode-line message at the time of the appointment.
12822 2011-05-12  Andreas Schwab  <schwab@linux-m68k.org>
12824         * progmodes/ld-script.el (ld-script-keywords)
12825         (ld-script-builtins): Update keywords list.
12827 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12829         * progmodes/grep.el (grep-filter): Don't trip on partial lines.
12831         * shell.el (shell-completion-vars): New function.
12832         (shell-mode):
12833         * simple.el (read-shell-command): Use it.
12834         (blink-matching-open): No need for " [...]" in minibuffer-message.
12836 2011-05-12  Glenn Morris  <rgm@gnu.org>
12838         * calendar/appt.el (appt-now-displayed): Remove pointless variable.
12839         (appt-check): Simplify.
12841 2011-05-12  Eli Zaretskii  <eliz@gnu.org>
12843         * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
12844         literal "/dev/null".
12846 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12848         * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
12849         Fix typo.
12851 2011-05-12  Ralph Schleicher  <rs@ralph-schleicher.de>
12853         * progmodes/which-func.el (which-function):
12854         Use add-log-current-defun instead of add-log-current-defun-function,
12855         which might not be defined (Bug#8260).
12857 2011-05-12  Glenn Morris  <rgm@gnu.org>
12859         * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
12860         Let byte-compile-initial-macro-environment always take precedence.
12862 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12864         * net/rcirc.el: Add support for SSL/TLS connections.
12865         (rcirc-server-alist): New field `encryption'.
12866         (rcirc): Check `encryption' settings.
12867         (rcirc-connect): New arg `encryption'.  Use open-network-stream.
12868         Merge make-local-variable into `set'.
12869         (rcirc--connection-open-p): New function.
12870         (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
12871         the process is not a network process (e.g. running gnutls-cli).
12872         (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
12873         Make rcirc-(en|de)code-coding-system local here.
12874         (rcirc-mode): Merge make-local-variable into `set'.
12875         (rcirc-parent-buffer): Make permanent buffer-local.
12876         (rcirc-multiline-minor-mode): Don't do it here.
12877         (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
12878         there's no server buffer.
12880 2011-05-11  Glenn Morris  <rgm@gnu.org>
12882         * newcomment.el (comment-kill): Prefix "unused" local.
12884         * term/w32console.el (get-screen-color): Declare.
12886         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
12887         Handle symbol elements of byte-compile-initial-macro-environment.
12889 2011-05-10  Leo Liu  <sdl.web@gmail.com>
12891         * bookmark.el (bookmark-bmenu-mode-map):
12892         Bind bookmark-bmenu-search to `/'.
12894         * mail/footnote.el: Convert to utf-8 encoding.
12895         (footnote-unicode-string, footnote-unicode-regexp): New variable.
12896         (Footnote-unicode): New function.
12897         (footnote-style-alist): Add unicode style to the list.
12898         (footnote-style): Doc fix.
12900 2011-05-10  Jim Meyering  <meyering@redhat.com>
12902         Fix doubled-word typos.
12903         * international/quail.el (quail-insert-kbd-layout): and and -> and
12904         * kermit.el: and and -> and
12905         * net/ldap.el (ldap-search-internal): to to -> to
12906         * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
12907         * progmodes/js.el (js-mode): and and -> and
12908         * textmodes/artist.el (artist-move-to-xy): at at -> at
12909         (artist-draw-region-trim-line-endings): if if -> if
12910         And Safetyc -> Safety.
12911         * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
12913 2011-05-10  Glenn Morris  <rgm@gnu.org>
12914             Stefan Monnier  <monnier@iro.umontreal.ca>
12916         * files.el (hack-one-local-variable-eval-safep):
12917         Consider "eval: (foo-mode)" to be safe.  (Bug#8613)
12919 2011-05-10  Glenn Morris  <rgm@gnu.org>
12921         * calendar/diary-lib.el (diary-list-entries-hook)
12922         (diary-mark-entries-hook, diary-nongregorian-listing-hook)
12923         (diary-nongregorian-marking-hook, diary-list-entries)
12924         (diary-include-other-diary-files, diary-mark-entries)
12925         (diary-mark-included-diary-files): Doc fixes.
12927 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
12929         * misc.el: Require tabulated-list.el during compilation.
12931 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
12933         * progmodes/compile.el (compilation-start):
12934         Run compilation-filter-hook for the async case too.
12935         (compilation-filter-hook): Doc fix.
12937 2011-05-09  Deniz Dogan  <deniz@dogan.se>
12939         * wdired.el: Remove outdated installation comment.  Fix usage
12940         comment.
12942 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
12944         * misc.el: Implement new command `list-dynamic-libraries'.
12945         (list-dynamic-libraries--loaded-only-p): New variable.
12946         (list-dynamic-libraries--refresh): New function.
12947         (list-dynamic-libraries): New command.
12949 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
12951         * progmodes/compile.el (compilation-error-regexp-alist-alist):
12952         Fix the ant regexp to handle end-line and end-column info from jikes.
12953         Re-introduce maven regexp.  Give the ruby-Test::Unit regexp a
12954         higher priority to avoid clobbering by gnu.
12956 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
12958         * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
12959         if the face has existing theme settings (Bug#8454).
12961 2011-05-08  Ralph Schleicher  <rs@ralph-schleicher.de>
12963         * progmodes/perl-mode.el (perl-imenu-generic-expression):
12964         Only match variables declared via `my' or `our' (Bug#8261).
12966         * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
12967         special file names `.' and `..' (Bug#8259).
12969 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
12971         * progmodes/grep.el (grep-mode-font-lock-keywords):
12972         Remove buffer-changing entries.
12973         (grep-filter): New function.
12974         (grep-mode): Add it to compilation-filter-hook.
12976         * progmodes/compile.el (compilation-filter-hook)
12977         (compilation-filter-start): New defvars.
12978         (compilation-filter): Call compilation-filter-hook prior to
12979         updating the process mark.
12981 2011-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12983         * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
12985 2011-05-07  Eli Zaretskii  <eliz@gnu.org>
12987         * mail/sendmail.el (send-mail-function): On MS-Windows, default to
12988         mailclient-send-it even if window-system is nil.  (Bug#8595)
12990         * term/w32console.el (terminal-init-w32console):
12991         Call get-screen-color and use its output to set the frame
12992         background-mode.  (Bug#8597)
12994 2011-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12996         Make bytecomp.el understand that defmethod defines funs (bug#8631).
12997         * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
12998         New functions.
12999         (defgeneric, eieio--defmethod): Use them.
13000         (eieio-defgeneric): Remove.
13001         (defmethod): Call defgeneric in a way visible to the byte-compiler.
13003 2011-05-07  Glenn Morris  <rgm@gnu.org>
13005         * calendar/timeclock.el (timeclock-log-data): Remove unused local.
13006         Use let rather than let*.
13007         (timeclock-find-discrep): Remove unused local.
13009         * calendar/diary-lib.el (diary-comment-start): Doc fix.
13011         * calendar/appt.el (appt-time-msg-list): Doc fix.
13013 2011-05-06  Noah Friedman  <friedman@splode.com>
13015         * apropos.el (apropos-print-doc): Only use
13016         emacs-lisp-docstring-fill-column when it is bound to an integer,
13017         per that variable's documentation.
13019 2011-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13021         * lpr.el (print-region-1): Echo lpr-program's output, so error messages
13022         and warnings are not silently discarded (e.g. use -d instead of -P).
13024 2011-05-06  Glenn Morris  <rgm@gnu.org>
13026         * calendar/appt.el (appt-message-warning-time): Doc fix.
13027         (appt-warning-time-regexp): New option.
13028         (appt-make-list): Respect appt-message-warning-time.
13030         * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
13031         New options.
13032         (diary-add-to-list): Strip comments from the displayed string.
13033         (diary-mode): Set comment-start and comment-end.
13035         * vc/diff-mode.el (smerge-refine-subst): Declare.
13036         (diff-refine-hunk): Don't require smerge-mode when compiling.
13038 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
13040         * simple.el (list-processes): Return nil as the docstring says.
13042 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
13044         * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
13045         to "".
13046         (ange-ftp-write-region, ange-ftp-insert-file-contents)
13047         (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
13048         determining of binary transfer.  (Bug#7383)
13050 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
13052         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13053         Fix port computation bug.  (Bug#8618)
13055 2011-05-05  Glenn Morris  <rgm@gnu.org>
13057         * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
13059         * simple.el (shell-dynamic-complete-functions)
13060         (comint-dynamic-complete-functions): Declare.
13062         * net/network-stream.el (gnutls-negotiate):
13063         * simple.el (tabulated-list-print): Fix declarations.
13065         * progmodes/gud.el (syntax-symbol, syntax-point):
13066         Remove unnecessary and incorrect declarations.
13068         * emacs-lisp/check-declare.el (check-declare-scan):
13069         Handle byte-compile-initial-macro-environment in bytecomp.el
13071 2011-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13073         Fix earlier half-done eieio-defmethod change (bug#8338).
13074         * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
13075         Streamline and change calling convention.
13076         (defmethod): Adjust accordingly and simplify.
13077         (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
13078         new eieio--defmethod.
13079         (slot-boundp): Minor CSE simplification.
13081 2011-05-05  Milan Zamazal  <pdm@zamazal.org>
13083         * progmodes/glasses.el (glasses-separate-capital-groups): New option.
13084         (glasses-make-readable): Use glasses-separate-capital-groups.
13086 2011-05-05  Juanma Barranquero  <lekktu@gmail.com>
13088         * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
13089         (warning-series): Doc fix.
13090         (display-warning): Don't try to create the buffer if we just found it.
13092 2011-05-04  Chong Yidong  <cyd@stupidchicken.com>
13094         * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
13095         (autoload-find-generated-file): New function.
13096         (generate-file-autoloads): Bind generated-autoload-file to
13097         buffer-file-name.
13098         (update-file-autoloads, update-directory-autoloads):
13099         Use autoload-find-generated-file.  If called interactively, prompt for
13100         output file (Bug#7989).
13101         (batch-update-autoloads): Doc fix.
13103 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
13105         * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
13107 2011-05-04  Glenn Morris  <rgm@gnu.org>
13109         * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
13110         function, so it follows changes in calendar-date-style.
13111         (diary-fancy-date-matcher): New function.
13112         (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
13113         (diary-fancy-font-lock-fontify-region-function):
13114         Use diary-fancy-date-pattern as a function.
13116         * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
13117         non-numbers for `year' etc pseudo-variables.  (Bug#8583)
13119 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
13121         * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
13122         instead of positional arguments.  Allow :keylist and :crlfiles
13123         arguments.
13124         (open-gnutls-stream): Call it.
13126         * net/network-stream.el (network-stream-open-starttls): Adjust to
13127         call `gnutls-negotiate' with :process and :hostname arguments.
13129 2011-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
13131         * minibuffer.el (completion--message): New function.
13132         (completion--do-completion, minibuffer-complete)
13133         (minibuffer-force-complete, minibuffer-complete-word): Use it.
13134         (completion--do-completion): Don't ignore completion-auto-help when in
13135         icomplete-mode.
13137         * whitespace.el (whitespace-trailing-regexp): Don't rely on the
13138         internal encoding (e.g. tibetan zero is not whitespace).
13139         (global-whitespace-mode): Prefer save-current-buffer.
13140         (whitespace-trailing-regexp): Remove useless save-match-data.
13141         (whitespace-empty-at-bob-regexp): Minor simplification.
13143 2011-05-03  Chong Yidong  <cyd@stupidchicken.com>
13145         * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
13147 2011-05-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13149         * textmodes/ispell.el (ispell-add-per-file-word-list):
13150         Use `concat' to create string for insertion.
13152 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13154         * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
13155         Avoid open-line which runs post-self-insert-hook.
13156         (bibtex-fill-entry): Remove unused `end' var.
13158 2011-05-03  Dirk Ullrich  <dirk.ullrich@googlemail.com>  (tiny change)
13160         * textmodes/ispell.el (ispell-add-per-file-word-list):
13161         Protect against `nil' value of `comment-start' (Bug#8579).
13163 2011-05-03  Leo Liu  <sdl.web@gmail.com>
13165         * isearch.el (isearch-yank-pop): New command.
13166         (isearch-mode-map): Bind it to `M-y'.
13167         (isearch-forward): Mention it.
13169 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13171         * simple.el (minibuffer-complete-shell-command): Remove.
13172         (minibuffer-local-shell-command-map): Use completion-at-point.
13173         (read-shell-command): Setup completion vars here instead.
13174         (read-expression-map): Bind TAB to symbol completion.
13176         * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
13177         error directly rather via storing it into `results'.
13179 2011-05-02  Leo Liu  <sdl.web@gmail.com>
13181         * vc/diff.el: Fix description.
13183 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13185         * server.el (server-eval-at): New function.
13187 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13189         * net/network-stream.el (open-network-stream): Take a :nowait
13190         parameter and pass it on to `make-network-process'.
13191         (network-stream-open-plain): Ditto.
13193 2011-04-30  Andreas Schwab  <schwab@linux-m68k.org>
13195         * faces.el (face-spec-set-match-display): Don't match toolkit
13196         options on terminal frames.
13198 2011-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13200         * progmodes/pascal.el: Use lexical binding.
13201         (pascal-mode-map): Remove author preferences.
13203         * pcomplete.el (pcomplete-std-complete): Don't abuse
13204         completion-at-point.
13206 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
13208         * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
13209         removing code that has been dead since 1991 or so.
13211         * startup.el (command-line): When warning about "_emacs", use a
13212         delayed warning to allow the user to filter it out.
13214 2011-04-28  Deniz Dogan  <deniz@dogan.se>
13216         * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
13217         user has not joined.
13219 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13221         * pcomplete.el (pcomplete-completions-at-point): Return nil if there
13222         aren't any completions at point.
13224 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
13226         * subr.el (display-delayed-warnings): New function.
13227         (delayed-warnings-hook): New variable.
13229 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13231         * minibuffer.el (completion-at-point, completion-help-at-point):
13232         Don't presume that a given completion-at-point-function will always
13233         use the same calling convention.
13235         * pcomplete.el (pcomplete-completions-at-point):
13236         Obey pcomplete-ignore-case.  Don't call pcomplete-norm-func unless
13237         pcomplete-seen is non-nil.
13238         (pcomplete-comint-setup): Also recognize the new comint/shell
13239         completion functions.
13240         (pcomplete-do-complete): Don't call pcomplete-norm-func unless
13241         pcomplete-seen is non-nil.
13243 2011-04-27  Niels Giesen  <niels.giesen@gmail.com>
13245         * calendar/icalendar.el (diary-lib): Add require statement.
13246         (icalendar--create-uid): Read out a uid from a text-property on
13247         the first character in the entry.  This allows for code to add its
13248         own uid to the entry.
13249         (icalendar--convert-float-to-ical): Add export of
13250         `diary-float'-entries save for those with the optional DAY
13251         argument.
13253 2011-04-27  Daniel Colascione  <dan.colascione@gmail.com>
13255         * subr.el (shell-quote-argument): Use alternate escaping strategy
13256         when we spot a variable reference in a string.
13258 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
13260         * cus-start.el (all): Define customization for debug-on-event.
13262 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
13264         * subr.el (shell-quote-argument): Escape correctly under Windows.
13266 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13268         * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
13270 2011-04-25  Michael Albinus  <michael.albinus@gmx.de>
13272         * net/tramp.el (tramp-process-actions): Add POS argument.
13273         Delete region between POS and (pos).
13275         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13276         Use `nil' position in `tramp-process-actions' call.
13277         (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
13279         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
13280         position in `tramp-process-actions' call.
13282         * net/trampver.el: Update release number.
13284 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13286         * custom.el (defcustom): Obey lexical-binding.
13288         Fix octave-inf completion problems reported by Alexander Klimov.
13289         * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
13290         Inherit from octave-mode-syntax-table.
13291         (inferior-octave-mode): Set info-lookup-mode.
13292         (inferior-octave-completion-at-point): New function.
13293         (inferior-octave-complete): Use it and completion-in-region.
13294         (inferior-octave-dynamic-complete-functions): Use it as well, and use
13295         comint-filename-completion.
13296         * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
13297         symbol elements which shouldn't be word elements.
13298         (octave-font-lock-keywords, octave-beginning-of-defun)
13299         (octave-function-header-regexp): Adjust regexps accordingly.
13300         (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
13302 2011-04-25  Juanma Barranquero  <lekktu@gmail.com>
13304         * net/gnutls.el (gnutls-errorp): Declare before first use.
13306 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
13308         * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
13309         verify-error, and verify-hostname-error parameters.  Check whether
13310         default trustfile exists before going to use it.  Add missing
13311         argument to gnutls-message-maybe call.  Return value.
13312         Reported by Claudio Bley <claudio.bley@gmail.com>.
13313         (open-gnutls-stream): Add usage example.
13315         * net/network-stream.el (network-stream-open-starttls): Give host
13316         parameter to `gnutls-negotiate'.
13317         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
13318         * subr.el (shell-quote-argument): Escape correctly under Windows.
13320 2011-04-24  Daniel Colascione  <dan.colascione@gmail.com>
13322         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
13323         Use correct match group (bug#8438).
13325 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
13327         * emacs-lisp/package.el (package-built-in-p): Fix typo.
13328         (package-menu--generate): New arg specifying packages to show.
13329         (package-menu-refresh, package-menu-execute, list-packages):
13330         Callers changed.
13331         (package-show-package-list): New function, replacing deleted
13332         package--list-packages (renamed because it is non-internal).
13334         * finder.el (finder-list-matches): Use package-show-package-list
13335         instead of deleted package--list-packages.
13337         * vc/vc-annotate.el (vc-annotate-goto-line): New command.
13338         Based on a previous implementation by Juanma Barranquero (Bug#8366).
13339         (vc-annotate-mode-map): Bind it to RET.
13341 2011-04-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
13343         * progmodes/etags.el (next-file): Don't use set-buffer to change
13344         buffers (Bug#8478).
13346 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
13348         * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
13350         * apropos.el (apropos-label-face): Avoid variable-pitch face.
13351         (apropos-accumulator): Doc fix.
13352         (apropos-function, apropos-macro, apropos-command)
13353         (apropos-variable, apropos-face, apropos-group, apropos-widget)
13354         (apropos-plist): Add face property.
13355         (apropos-symbols-internal): Fix indentation.
13356         (apropos-print): Simplify help, and recognize apropos-multi-type.
13357         (apropos-print-doc): Use button-type-get to extract the button's
13358         face property.  Fill docstring (Bug#8352).
13360 2011-04-23  Juanma Barranquero  <lekktu@gmail.com>
13362         * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
13364         * play/mpuz.el (mpuz-silent): Doc fix.
13365         (mpuz-mode-map): Use mapc.
13366         (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
13367         (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
13368         Fix typos in docstrings.
13370         * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
13371         (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
13373         * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
13375 2011-04-23  Chong Yidong  <cyd@stupidchicken.com>
13377         * minibuffer.el (completion--do-completion): Avoid the "Next char
13378         not unique" prompt if icomplete-mode is enabled (Bug#5849).
13380         * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
13381         mouse-2 into unread-command-events, it is interpreted correctly.
13383         * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
13384         (image-toggle-display): Doc fix.
13386 2011-04-23  Stephen Berman  <stephen.berman@gmx.net>
13388         * textmodes/page.el (what-page): Use line-number-at-pos to
13389         calculate line number (Bug#6825).
13391 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
13393         * eshell/esh-mode.el (find-tag-interactive): Declare function.
13394         (eshell-find-tag): Remove `with-no-warnings', unneeded now.
13395         Pass argument NO-DEFAULT to `find-tag-interactive'.
13397 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
13399         Lexical-binding cleanup.
13401         * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
13402         (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
13403         * progmodes/ada-prj.el (ada-prj-initialize-values)
13404         (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
13405         (ada-prj-show-value):
13406         * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
13407         * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
13408         (antlr-invalidate-context-cache, antlr-options-menu-filter)
13409         (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
13410         * progmodes/bug-reference.el (bug-reference-push-button):
13411         * progmodes/fortran.el (fortran-line-length):
13412         * progmodes/glasses.el (glasses-change):
13413         * progmodes/octave-mod.el (octave-fill-paragraph):
13414         * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
13415         (python-pdbtrack-grub-for-buffer, python-sentinel):
13416         * progmodes/sql.el (sql-save-connection):
13417         * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
13418         * progmodes/xscheme.el (xscheme-enter-debugger-mode):
13419         Mark unused parameters.
13421         * progmodes/compile.el (compilation--flush-directory-cache)
13422         (compilation--flush-parse, compile-internal): Mark unused parameters.
13423         (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
13424         (compilation-next-error-function): Remove unused variable `timestamp'.
13426         * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
13427         (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
13429         * progmodes/dcl-mode.el (dcl-end-of-command):
13430         Remove unused variable `start'.
13431         (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
13432         (dcl-option-value-basic, dcl-option-value-offset)
13433         (dcl-option-value-margin-offset, dcl-option-value-comment-line):
13434         Mark unused parameters.
13435         (dcl-save-local-variable): Remove unused variable `val'.
13436         (mode): Declare.
13438         * progmodes/delphi.el (delphi-save-state, delphi-after-change):
13439         Mark unused parameters.
13440         (delphi-ignore-changes): Move before first use.
13441         (delphi-charset-token-at): Remove unused variable `start'.
13442         (delphi-else-start): Remove unused variable `if-count'.
13443         (delphi-comment-block-start, delphi-comment-block-end):
13444         Remove unused variable `kind'.
13445         (delphi-indent-line): Remove unused variable `new-point'.
13447         * progmodes/ebrowse.el (ebrowse-files-list)
13448         (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
13449         Mark unused parameters.  Don't quote `lambda'.
13450         (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
13451         Don't quote `lambda'.
13452         (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
13453         (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
13454         (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
13455         (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
13456         Use `ignore-errors'.
13457         (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
13458         (ebrowse-view/find-file-and-search-pattern)
13459         (ebrowse-view/find-member-declaration/definition):
13460         Rename parameter TAGS-FILE-NAME to TAGS-FILE.
13461         (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
13462         Rename parameter PREFIX-ARG to PREFIX.
13463         (ebrowse-tags-read-name): Remove unused variables `start' and
13464         `member-info'.
13465         (ebrowse-display-member-buffer): Rename variable `tags-file-name'
13466         to `tags-file'.
13468         * progmodes/etags.el (local-find-tag-hook): Declare.
13469         (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
13470         Mark unused parameters.
13472         * progmodes/executable.el (compilation-error-regexp-alist): Declare.
13473         (executable-interpret): Mark unused parameter.
13475         * progmodes/flymake.el (flymake-process-sentinel)
13476         (flymake-after-change-function)
13477         (flymake-create-temp-with-folder-structure)
13478         (flymake-get-include-dirs-dot): Mark unused parameters.
13479         (flymake-safe-delete-directory): Remove unused variable `err'.
13481         * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
13482         (speedbar-timer-fn, speedbar-line-text)
13483         (speedbar-change-expand-button-char, speedbar-delete-subblock)
13484         (speedbar-center-buffer-smartly): Declare functions.
13485         (gdb-find-watch-expression): Remove unused variable `array'.
13486         (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
13487         (gdb-starting): Mark unused parameters.
13488         (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
13489         (gdb-table-string): Remove unused variable `res'.
13490         (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
13491         (gdb-disassembly-handler-custom): Remove unused variable `pos'.
13492         (gdb-display-buffer): Remove unused variable `cur-size'.
13494         * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
13495         allow lexical-binding compilation.
13496         (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
13497         (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
13498         (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
13499         Mark unused parameters.
13500         (gud-gdb-marker-filter): Remove unused variable `match'.
13501         (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
13502         lambda expressions and funcall them, instead of using `fset'.
13504         * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
13505         HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
13507         * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
13508         variable `header-beg'; use `let'.
13510         * progmodes/icon.el (indent-icon-exp): Remove unused variables
13511         `restart', `last-sexp' and `at-do'.
13513         * progmodes/js.el (js--debug): Mark unused parameter.
13514         (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
13515         (js--splice-into-items): Remove unused variable `item'.
13516         (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
13518         * progmodes/make-mode.el (makefile-make-font-lock-keywords):
13519         Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
13520         (makefile-complete): Remove unused variable `try'.
13521         (makefile-fill-paragraph, makefile-match-function-end):
13522         Mark unused parameters.
13524         * progmodes/octave-inf.el (inferior-octave-complete):
13525         Remove unused variable `proc'.
13526         (inferior-octave-output-digest): Mark unused parameter.
13528         * progmodes/perl-mode.el (perl-calculate-indent):
13529         Remove unused variable `err'.
13531         * progmodes/prolog.el (prolog-mode-keybindings-inferior)
13532         (prolog-indent-line): Mark unused parameters.
13533         (prolog-indent-line): Remove unused variable `beg'.
13535         * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
13536         (reporter-dont-compact-list): Declare.
13538         * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
13539         Remove unused variable `char'.
13540         (sh-debug): Mark unused parameter.
13541         (sh-get-indent-info): Remove unused variable `start'.
13542         (sh-calculate-indent): Remove unused variable `var'.
13544         * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
13545         (simula-electric-keyword): Remove unused variable `null'.
13546         (simula-search-backward, simula-search-forward): Remove unused
13547         variables `begin' and `end'.
13549         * progmodes/vera-mode.el (vera-guess-basic-syntax):
13550         Remove unused variable `pos'.
13551         (vera-electric-tab, vera-comment-uncomment-region):
13552         Mark unused parameters.
13553         (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
13555 2011-04-22  Chong Yidong  <cyd@stupidchicken.com>
13557         * emacs-lisp/package.el (package--builtins, package-alist)
13558         (package-load-descriptor, package-built-in-p, package-activate)
13559         (define-package, package-installed-p)
13560         (package-compute-transaction, package-buffer-info)
13561         (package--push): Doc fix.  Distinguish more clearly between
13562         version strings and version lists.
13564 2011-04-21  Juanma Barranquero  <lekktu@gmail.com>
13566         Lexical-binding cleanup.
13568         * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
13569         (5x5-make-mutate-best):
13570         * play/fortune.el (fortune-in-buffer):
13571         * play/gomoku.el (gomoku-init-display):
13572         * play/solitaire.el (solitaire, solitaire-do-check):
13573         * play/tetris.el (tetris-default-update-speed-function):
13574         Mark unused parameters.
13576         * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
13577         (bubbles--shift): Remove unused variable `char-org'.
13578         (bubbles--set-faces): Remove unused variable `fg-col'.  Simplify.
13579         (bubbles--show-images): Remove unused variable `char'.
13581         * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
13582         (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
13583         (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
13584         (decipher-analyze-buffer): Use ?\s.
13585         (decipher-make-checkpoint): Remove unused variable `mapping'.
13587         * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
13589         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
13590         Remove unused variable `result'; use `let'.
13592         * play/gametree.el (gametree-current-layout, gametree-apply-layout):
13593         Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
13594         (gametree-children-shown-p, gametree-compute-reduced-score):
13595         Use `ignore-errors'.
13597         * play/handwrite.el (ps-lpr-switches): Declare.
13598         (handwrite): Remove unused variables `pmin' and `lastp'.
13600         * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
13602         * play/landmark.el (landmark-init-display)
13603         (landmark-update-naught-weights): Mark unused parameters.
13604         (landmark-y): Remove unused variable `noise'.  Simplify.
13605         (landmark-human-plays): Remove unused variable `score'.
13607         * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
13608         (mpuz-try-proposal): Remove unused variable `game'.
13610         * play/zone.el (life-patterns): Declare.
13612 2011-04-20  Juanma Barranquero  <lekktu@gmail.com>
13614         * vc/vc.el (ediff-vc-internal): Declare function.
13616 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13618         * shell.el: Use lexical-binding and std completion UI.
13619         (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
13620         (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
13621         comint-preoutput-filter-functions rather than on
13622         comint-output-filter-functions.
13623         (shell-command-completion, shell--command-completion-data)
13624         (shell-filename-completion, shell-environment-variable-completion)
13625         (shell-c-a-p-replace-by-expanded-directory): New functions.
13626         (shell-dynamic-complete-functions, shell-dynamic-complete-command)
13627         (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
13628         (shell-dynamic-complete-environment-variable): Use them.
13629         (shell-dynamic-complete-as-environment-variable)
13630         (shell-dynamic-complete-as-command): Remove.
13631         (shell-match-partial-variable): Match past point.
13632         * comint.el: Clean up use of completion-at-point-functions.
13633         (comint-completion-at-point): New function.
13634         (comint-mode): Use it completion-at-point-functions.
13635         (comint-dynamic-complete): Make it obsolete.
13636         (comint-replace-by-expanded-history-before-point): Add dry-run arg.
13637         (comint-c-a-p-replace-by-expanded-history): New function.
13638         (comint-dynamic-complete-functions)
13639         (comint-replace-by-expanded-history): Use it.
13640         * minibuffer.el (completion-table-with-terminator): Allow dynamic
13641         termination strings.  Try harder to avoid second try-completion.
13642         (completion-in-region-mode-map): Disable bindings that don't work yet.
13644         * comint.el: Use lexical-binding.  Require CL.
13645         (comint-dynamic-complete-functions): Use comint-filename-completion.
13646         (comint-completion-addsuffix): Tweak custom type.
13647         (comint-filename-completion, comint--common-suffix)
13648         (comint--common-quoted-suffix, comint--table-subvert)
13649         (comint--complete-file-name-data): New functions.
13650         (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
13651         (comint-dynamic-list-filename-completions): Use them.
13652         (comint-dynamic-simple-complete): Make obsolete.
13654         * minibuffer.el (completion-in-region-mode):
13655         Keep completion-in-region-mode--predicate global.
13656         (completion-in-region--postch):
13657         Assume completion-in-region-mode--predicate is not null.
13659         * progmodes/flymake.el (flymake-start-syntax-check-process):
13660         Obey `dir'.  Simplify.
13662         * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
13663         we're in VC after all.
13665 2011-04-20  Christoph Scholtes  <cschol2112@googlemail.com>
13667         * vc/vc.el (vc-diff-build-argument-list-internal)
13668         (vc-version-ediff, vc-ediff): New commands.
13669         (vc-version-diff): Use vc-diff-build-argument-list-internal.
13671 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13673         * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
13674         add sanity check.
13676         * obsolete/erc-hecomplete.el: Make obsolete.
13677         * obsolete/: Standardize obsolescence info in the header.
13679 2011-04-20  Glenn Morris  <rgm@gnu.org>
13681         * calendar/solar.el (solar-horizontal-coordinates):
13682         Use the longitude argument rather than `calendar-longitude'.
13683         (solar-date-next-longitude): Remove unused locals.
13685 2011-04-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13687         * whitespace.el: New version 13.2.1.
13689 2011-04-20  felix  <EmacsWiki>  (tiny change)
13691         * whitespace.el (global-whitespace-mode): Keep highlight when
13692         switching between major modes on a file.
13694 2011-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13696         * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
13697         (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
13698         multi-line comments as well.
13700 2011-04-19  Juanma Barranquero  <lekktu@gmail.com>
13702         Lexical-binding cleanup.
13704         * arc-mode.el (archive-mode-revert):
13705         * cmuscheme.el (scheme-interactively-start-process):
13706         * custom.el (custom-initialize-delay):
13707         * dnd.el (dnd-open-local-file, dnd-open-remote-url):
13708         * dos-w32.el (direct-print-region-helper, direct-print-region-function):
13709         * emacs-lock.el (emacs-lock-clear-sentinel):
13710         * ezimage.el (defezimage):
13711         * follow.el (follow-avoid-tail-recenter):
13712         * fringe.el (set-fringe-mode-1):
13713         * generic-x.el (bat-generic-mode-compile):
13714         * help-mode.el (help-info-variable, help-do-xref)
13715         (help-mode-revert-buffer):
13716         * help.el (view-emacs-todo):
13717         * iswitchb.el (iswitchb-completion-help):
13718         * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
13719         * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
13720         (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
13721         * locate.el (locate-update):
13722         * longlines.el (longlines-encode-region)
13723         (longlines-after-change-function):
13724         * outline.el (outline-isearch-open-invisible):
13725         * ps-def.el (declare-function, charset-dimension, char-width)
13726         (encode-char):
13727         * ps-mule.el (ps-mule-plot-string):
13728         * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
13729         (recentf-edit-list-select, recentf-edit-list-validate)
13730         (recentf-open-files-action):
13731         * rect.el (delete-whitespace-rectangle-line)
13732         (rectangle-number-line-callback):
13733         * register.el (window-configuration-to-register)
13734         (frame-configuration-to-register):
13735         * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
13736         * select.el (xselect-convert-to-string, xselect-convert-to-length)
13737         (xselect-convert-to-targets, xselect-convert-to-delete)
13738         (xselect-convert-to-filename, xselect-convert-to-charpos)
13739         (xselect-convert-to-lineno, xselect-convert-to-colno)
13740         (xselect-convert-to-os, xselect-convert-to-host)
13741         (xselect-convert-to-user, xselect-convert-to-class)
13742         (xselect-convert-to-name, xselect-convert-to-integer)
13743         (xselect-convert-to-atom, xselect-convert-to-identity):
13744         * subr.el (declare, ignore, process-kill-without-query)
13745         (text-clone-maintain):
13746         * terminal.el (te-get-char, te-tic-sentinel):
13747         * tool-bar.el (tool-bar-make-keymap):
13748         * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
13749         * type-break.el (type-break-mode, type-break-noninteractive-query):
13750         * view.el (View-back-to-mark):
13751         * wid-browse.el (widget-browse-action, widget-browse-widget)
13752         (widget-browse-widgets, widget-browse-sexp):
13753         * widget.el (define-widget-keywords):
13754         * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
13755         Mark unused parameters.
13757         * align.el (align-adjust-col-for-rule): Mark unused parameter.
13758         (align-areas): Remove unused variable `look'.
13759         (align-region): Remove unused variables `real-end' and `pos-list'.
13761         * apropos.el (apropos-score-doc): Remove unused variable `i'.
13763         * bindings.el (mode-line-modified, mode-line-remote):
13764         Mark unused parameters.
13765         (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
13767         * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
13768         (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
13770         * comint.el (comint-history-isearch-pop-state)
13771         (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
13772         (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
13773         (comint-substitute-in-file-name): Doc fix.
13775         * completion.el (cmpl-statistics-block): Mark unused parameter.
13776         (add-completions-from-tags-table, add-completions-from-lisp-buffer)
13777         (save-completions-to-file, load-completions-from-file):
13778         Remove unused local variable `e'.
13780         * composite.el (compose-chars): Remove unused variable `len'.
13781         (lgstring-insert-glyph): Remove unused variable `g'.
13782         (compose-glyph-string): Remove unused variables `ascent',
13783         `descent', `lbearing' and `rbearing'.
13784         (compose-glyph-string-relative): Remove unused variables
13785         `lbearing', `rbearing' and `wadjust'.
13786         (compose-gstring-for-graphic): Remove unused variables `header',
13787         `wadjust', `xoff' and `yoff'.  Use `let', not `let*'.
13788         (compose-gstring-for-terminal): Remove unused variables `header'
13789         and `nchars'.  Use `let', not `let*'.
13791         * cus-edit.el (Custom-set, Custom-save, custom-reset)
13792         (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
13793         (Custom-buffer-done, custom-buffer-create-internal)
13794         (custom-browse-visibility-action, custom-browse-group-tag-action)
13795         (custom-browse-variable-tag-action, custom-browse-face-tag-action)
13796         (widget-magic-mouse-down-action, custom-toggle-parent)
13797         (custom-add-parent-links, custom-toggle-hide-variable)
13798         (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
13799         (custom-toggle-hide-face, face, hook, custom-group-link-action)
13800         (custom-face-menu-create, custom-variable-menu-create, get)
13801         (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
13802         (custom-reset-standard-save-and-update): Remove unused variable `value'.
13803         (customize-apropos): Remove unused variable `tests'.
13804         (custom-group-value-create): Remove unused variable `hidden-p'.
13805         (sort-fold-case): Declare.
13807         * cus-theme.el (custom-reset-standard-faces-list)
13808         (custom-reset-standard-variables-list): Declare.
13809         (customize-create-theme, custom-theme-revert, custom-theme-write)
13810         (custom-theme-choose-mode, customize-themes, custom-theme-save):
13811         Mark unused parameters.
13813         * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
13815         * delim-col.el (delimit-columns-max): Move defvar before first use.
13817         * descr-text.el (describe-char-categories): Don't quote `lambda'.
13818         (describe-char): Don't quote `lambda'.  Mark unused parameter.
13820         * desktop.el (desktop-save-buffer-p): Mark unused parameter.
13821         (auto-insert): Declare.
13822         (desktop-restore-file-buffer): Rename desktop-* parameters;
13823         mark unused ones.
13824         (desktop-create-buffer): Rename desktop-* parameters and bind them.
13825         (desktop-buffer): Rename desktop-* parameters.
13827         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
13828         (dframe-reposition-frame-xemacs, dframe-help-echo)
13829         (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
13830         Mark unused parameters.
13832         * dired-aux.el (backup-extract-version-start, overwrite-query)
13833         (overwrite-backup-query, rename-regexp-query)
13834         (rename-non-directory-query): Declare.
13835         (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
13836         (dired-add-entry): Remove unused variable `orig-file-name'.
13837         (dired-copy-file-recursive): Remove unused variable `dirfailed'.
13838         Use parameter PRESERVE-TIME instead of accessing dynamic variable
13839         `dired-copy-preserve-time' directly.
13840         (dired-do-create-files-regexp): Remove unused variable `fn-count'.
13841         (dired-insert-subdir-newpos): Rename unused variable `pos'.
13843         * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
13844         (dired-virtual-revert, dired-make-relative-symlink):
13845         Mark unused parameters.
13846         (manual-program): Declare.
13847         (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
13848         (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
13849         wrapped in `with-no-warnings' to avoid replacing one warning by another.
13851         * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
13853         * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
13855         * echistory.el (electric-history-in-progress, Helper-return-blurb):
13856         Declare.
13858         * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
13860         * electric.el (Electric-command-loop): Rename parameter
13861         INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
13863         * expand.el (expand-in-literal): Remove unused variable `here'.
13865         * facemenu.el (facemenu-add-new-color):
13866         Remove unused variable `docstring'.
13868         * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
13869         (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
13870         (face-attr-construct): Mark unused parameter.  Doc fix.
13871         (read-color): Remove unused variable `hex-string'.
13873         * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
13874         (locate-dominating-file): Remove unused vars `prev-file' and `user'.
13875         (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
13876         (display-buffer-other-frame): Remove unused variable `old-window'.
13877         (kill-buffer-hook): Declare.
13878         (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
13879         Mark unused parameters.
13880         (after-find-file): Pass 1 to `auto-save-mode', not t.
13882         * files-x.el (auto-insert): Declare.
13883         (modify-file-local-variable-prop-line): Remove unused variable `val'.
13885         * find-lisp.el (find-lisp-find-dired-internal): Remove unused
13886         variable `buf'.  Mark unused parameter.
13887         (find-lisp-insert-directory): Mark unused parameter.
13889         * format.el (format-decode-run-method): Mark unused parameter; doc fix.
13890         (format-encode-region): Remove unused variables `cur-buf' and `result'.
13891         (format-common-tail): Remove, unused.
13892         (format-deannotate-region): Remove unused variable `loc'.
13893         (format-annotate-region): Remove unused variable `p'.
13894         (format-annotate-single-property-change): Remove unused variables
13895         `default' and `tail'.
13897         * forms.el (read-file-filter): Declare.
13898         (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
13900         * frame.el (frame-creation-function-alist): Mark unused parameter.
13901         (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
13903         * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
13904         Remove unused parameters.
13905         (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
13906         (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
13908         * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
13909         (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
13910         (hfy-prepare-tag-map): Mark unused parameters.
13911         (htmlfontify-buffer): Use `called-interactively-p'.
13913         * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
13914         (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
13915         (ibuffer-do-occur): Mark unused parameters.
13916         (ibuffer-forward-next-marked): Remove unused variable `curmark'.
13917         (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
13919         * ibuffer.el: Don't quote `lambda'.
13920         (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
13921         (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
13922         Mark unused parameters.
13924         * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
13925         (ido-completing-read): Mark unused parameters.
13926         (ido-copy-current-word): Mark unused parameters;
13927         remove unused variable `name'.
13928         (ido-sort-merged-list): Remove unused parameter `dirs'.
13930         * ielm.el (ielm-input-sender): Mark unused parameter.
13931         (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
13932         (ielm-output, ielm-wbuf, ielm-pmark): Declare.
13933         (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
13934         `ielm-string' as a dynamic variable accessible from the IELM prompt.
13935         Bind `ielm-string' to INPUT-STRING.  Remove unused variable `err'.
13937         * image-dired.el (image-dired-display-thumbs): Remove unused
13938         variables `curr-file' and `count'.
13939         (image-dired-remove-tag): Remove unused variable `start'.
13940         (image-dired-tag-files, image-dired-create-thumbs): Remove unused
13941         variable `curr-file'
13942         (image-dired-rotate-original): Remove unused variable `temp-file'.
13943         (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
13944         Remove unused variable `file'.
13945         (image-dired-gallery-generate): Remove unused variable `curr'.
13946         (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
13948         * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
13950         * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
13952         * informat.el (texinfo-command-start, texinfo-command-end): Declare.
13954         * isearch.el (minibuffer-history-symbol): Declare.
13955         (isearch-edit-string): Remove unused variable `err'.
13956         (isearch-message-prefix, isearch-message-suffix):
13957         Mark unused parameters.
13959         * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
13961         * macros.el (insert-kbd-macro): Remove unused variable `mods'.
13963         * makesum.el (double-column): Remove unused variable `cnt'.
13965         * misearch.el (multi-isearch-pop-state): Mark unused parameter.
13966         (ido-ignore-item-temp-list): Declare.
13968         * mouse-drag.el (mouse-drag-throw): Remove unused variables
13969         `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
13970         `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
13971         (mouse-drag-drag): Remove unused variables `mouse-delta' and
13972         `mouse-col-delta'.
13974         * mouse-sel.el (mouse-extend-internal):
13975         Remove unused variable `orig-window-frame'.
13977         * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
13978         (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
13979         Move declarations before first use.
13980         (pcomplete-opt): Mark unused parameters; doc fix.
13982         * proced.el (proced-revert): Mark unused parameter.
13983         (proced-send-signal): Remove unused variable `err'.
13985         * ps-print.el (ps-print-preprint-region, ps-print-preprint):
13986         Rename parameter PREFIX-ARG to ARG.
13987         (ps-basic-plot-string, ps-basic-plot-whitespace):
13988         Mark unused parameters.
13990         * replace.el (replace-count): Define.
13991         (occur-revert-function): Mark unused parameters.
13992         (ido-ignore-item-temp-list, isearch-error, isearch-forward)
13993         (isearch-case-fold-search, isearch-string): Declare.
13994         (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
13995         bind `case-fold-search'.  Remove unused variables `beg' and `end',
13996         and simplify.
13997         (replace-eval-replacement): Rename parameter REPLACE-COUNT to
13998         COUNT and bind `replace-count'.
13999         (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
14000         to COUNT.
14002         * savehist.el (print-readably, print-string-length): Declare.
14004         * shadowfile.el (shadow-expand-cluster-in-file-name):
14005         Remove unused variable `cluster'.
14006         (shadow-copy-file): Remove unused variable `i'.
14007         (shadow-noquery, shadow-clusters, shadow-site-cluster)
14008         (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
14009         (shadow-define-literal-group, shadow-define-regexp-group)
14010         (shadow-make-group, shadow-shadows-of): Clean up docstrings.
14012         * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
14013         (shell): Use `called-interactively-p'.
14014         (shell-directory-tracker): Remove unused variable `chdir-failure'.
14016         * simple.el (compilation-context-lines, comint-file-name-quote-list)
14017         (comint-file-name-chars, comint-delimiter-argument-list): Declare.
14018         (delete-backward-char): Remove unused variable `ocol'.
14019         (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
14020         (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
14021         (event-apply-hyper-modifier, event-apply-shift-modifier)
14022         (event-apply-control-modifier, event-apply-meta-modifier):
14023         Mark unused parameters.
14024         (undo-make-selective-list): Remove duplicate variable `undo-elt'.
14025         (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
14027         * speedbar.el (speedbar-ignored-directory-expressions)
14028         (speedbar-supported-extension-expressions, speedbar-directory-buttons)
14029         (speedbar-find-file, speedbar-dir-follow)
14030         (speedbar-directory-buttons-follow, speedbar-tag-find)
14031         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
14032         (speedbar-buffers-line-directory, speedbar-buffer-click):
14033         Mark unused parameters.
14034         (speedbar-tag-file): Remove unused variable `mode'.
14035         (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
14037         * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
14039         * talk.el (talk): Remove unused variable `display'.
14041         * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
14042         (tar-write-region-annotate): Mark unused parameter.
14044         * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
14045         (minutes, seconds, time-zone, day, year, monthname, month, dayname):
14046         Declare them, wrapped in `with-no-warnings' to avoid replacing one
14047         warning by another.
14049         * time-stamp.el (time-stamp-string-preprocess):
14050         Remove unused variable `require-padding'.
14052         * tree-widget.el (widget-glyph-enable): Declare.
14053         (tree-widget-action): Mark unused parameter.
14055         * w32-fns.el (x-get-selection): Mark unused parameter.
14056         (autoload-make-program, generated-autoload-file): Declare.
14058         * wdired.el (wdired-revert): Mark unused parameters.
14059         (wdired-xcase-word): Remove unused variable `err'.
14061         * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
14062         (whitespace-help-scroll): Remove unused variable `data-help'.
14064         * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
14065         (widget-image-insert, widget-after-change, default)
14066         (widget-default-format-handler, widget-default-notify)
14067         (widget-default-prompt-value, widget-info-link-action)
14068         (widget-url-link-action, widget-function-link-action)
14069         (widget-variable-link-action, widget-file-link-action)
14070         (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
14071         (widget-field-prompt-internal, widget-field-action, widget-field-match)
14072         (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
14073         (widget-insert-button-action, widget-delete-button-action, visibility)
14074         (widget-documentation-link-action, widget-documentation-string-action)
14075         (widget-const-prompt-value, widget-regexp-match, symbol)
14076         (widget-coding-system-prompt-value)
14077         (widget-key-sequence-value-to-external, sexp)
14078         (widget-sexp-value-to-internal, character, vector, cons)
14079         (widget-choice-prompt-value, widget-boolean-prompt-value)
14080         (widget-color--choose-action): Mark unused parameters.
14081         (widget-item-match-inline, widget-choice-match-inline)
14082         (widget-checklist-match, widget-checklist-match-inline)
14083         (widget-group-match): Rename parameter VALUES to VALS.
14084         (widget-field-value-set): Remove unused variable `size'.
14085         (widget-color-action): Remove unused variables `value' and `start'.
14087         * windmove.el (windmove-wrap-loc-for-movement): Remove unused
14088         variable `dir'.  Doc fix.
14089         (windmove-find-other-window): Don't pass it.
14091         * window.el (count-windows): Mark unused parameter.
14092         (bw-adjust-window): Remove unused variable `err'.
14094         * woman.el (woman-file-name): Remove unused variable `default'.
14095         (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
14096         WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
14097         (global-font-lock-mode): Declare.
14098         (woman-decode-region): Mark unused parameter.
14099         (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
14101         * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
14102         (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
14103         (x-dnd-handle-moz-url): Remove unused variable `title'.
14104         (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
14106         * xml.el (xml-parse-tag, xml-parse-attlist):
14107         Remove unused variable `pos'.
14109 2011-04-19  Glenn Morris  <rgm@gnu.org>
14111         * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
14112         (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
14113         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
14114         (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
14115         * calendar/cal-html.el (cal-html-insert-minical):
14116         * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
14117         (calendar-mark-date-pattern):
14118         Prefix "unused" locals.
14120         * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
14121         optional argument `style'.
14123         * calendar/appt.el (appt-make-list):
14124         * calendar/cal-china.el (calendar-chinese-date-string):
14125         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
14126         (diary-hebrew-yahrzeit):
14127         * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
14128         * calendar/calendar.el (calendar-generate-window):
14129         * calendar/time-date.el (time-to-days):
14130         Remove unused local variables.
14132 2011-04-18  Chong Yidong  <cyd@stupidchicken.com>
14134         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
14135         glyphless-char-display table.
14136         (tabulated-list-glyphless-char-display): New var.
14138 2011-04-18  Sam Steingold  <sds@gnu.org>
14140         * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
14141         to acknowledgments.
14143 2011-04-17  Glenn Morris  <rgm@gnu.org>
14145         * calendar/diary-lib.el (diary-sexp-entry):
14146         * calendar/holidays.el (holiday-sexp):
14147         Set debug-on-error rather than the removed stack-trace-on-error.
14149 2011-04-16  Glenn Morris  <rgm@gnu.org>
14151         * progmodes/f90.el: Use lexical-binding.
14152         (f90-get-correct-indent): Remove unnecessary local variable `cont'.
14154 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14156         * mail/sendmail.el (mail-mode-map): Use completion-at-point.
14157         (mail-mode): Setup mailalias completion here instead.
14158         * mail/mailalias.el: Use lexical-binding.
14159         (pattern, mailalias-done): Declare dynamic.
14160         (mail-completion-at-point-function): New function, from mail-complete.
14161         (mail-complete): Use it.
14162         (mail-completion-expand): New function.
14163         (mail-get-names): Use it.
14164         (mail-directory, mail-directory-process, mail-directory-stream):
14165         Don't use `pattern' for lexically bound arg.
14167         * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
14169         * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
14170         (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
14171         (hfy-etags-cmd-alist): Don't eval-and-compile any more.
14173         * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
14174         (byte-save-window-excursion, byte-temp-output-buffer-setup)
14175         (byte-interactive-p): Define them again, for use when inlining
14176         old code.
14178 2011-04-15  Juanma Barranquero  <lekktu@gmail.com>
14180         * loadup.el: Use `string-to-number', not `string-to-int'.
14182 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14184         * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
14185         gud-gdb-complete-command.
14186         (gud-gdb-completions): New function, from gud-gdb-complete-command.
14187         (gud-gdb-completion-at-point): New function.
14188         (gud-gdb-completions): Remove.
14190 2011-04-14  Michael Albinus  <michael.albinus@gmx.de>
14192         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
14193         when the scripts fail.  Use `tramp-do-file-attributes-with-ls' then.
14194         (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
14195         whether `executable-find' is bound.
14197         * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
14199 2011-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14201         * minibuffer.el (completion-in-region-mode-predicate)
14202         (completion-in-region-mode--predicate): New vars.
14203         (completion-in-region, completion-in-region--postch)
14204         (completion-in-region-mode): Use them.
14205         (completion--capf-wrapper): Also return the hook function.
14206         (completion-at-point, completion-help-at-point):
14207         Adjust and provide a predicate.
14209         Preserve arg names for advice of subr and lexical functions (bug#8457).
14210         * help-fns.el (help-function-arglist): Consolidate the subr and
14211         new-byte-code cases.  Add argument `preserve-names' to extract names
14212         from the docstring when needed.
14213         * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
14214         (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
14215         (ad-arglist): Use help-function-arglist's new arg.
14216         (ad-definition-type): Use cond.
14218 2011-04-13  Juanma Barranquero  <lekktu@gmail.com>
14220         * autorevert.el (auto-revert-handler):
14221         Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
14222         which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
14223         Don't quote lambda.
14225         * image-mode.el (image-transform-set-scale):
14226         Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
14228 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14230         * net/network-stream.el (network-stream-open-starttls): Only do
14231         opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
14232         Upgrades via gnutls-cli are too slow to be done opportunistically.
14234 2011-04-12  Juanma Barranquero  <lekktu@gmail.com>
14236         * dframe.el (dframe-current-frame): Remove spurious quote.
14238 2011-04-12  Glenn Morris  <rgm@gnu.org>
14240         * calendar/cal-tex.el (cal-tex-end-document):
14241         Try to automatically use latin1 input if needed.
14243         * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
14244         Don't try to cons a mark onto an empty element.
14246 2011-04-11  Leo Liu  <sdl.web@gmail.com>
14248         * ido.el (ido-buffer-internal): Allow method 'kill for virtual
14249         buffers.
14250         (ido-kill-buffer-at-head): Support killing virtual buffers.
14252 2011-04-10  Chong Yidong  <cyd@stupidchicken.com>
14254         * minibuffer.el (completion-show-inline-help): New var.
14255         (completion--do-completion, minibuffer-complete)
14256         (minibuffer-force-complete, minibuffer-complete-word):
14257         Inhibit minibuffer messages if completion-show-inline-help is nil.
14259         * icomplete.el (icomplete-mode): Bind completion-show-inline-help
14260         to avoid interference from inline help (Bug#5849).
14262 2011-04-10  Leo Liu  <sdl.web@gmail.com>
14264         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14265         Fix typo.
14267 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
14269         * image-mode.el (image-toggle-display-image): Signal an error if
14270         not in Image mode.
14271         (image-transform-mode, image-transform-resize)
14272         (image-transform-set-rotation): Doc fix.
14273         (image-transform-set-resize): Delete.
14274         (image-transform-set-scale, image-transform-fit-to-height)
14275         (image-transform-fit-to-width): Handle image-toggle-display-image
14276         and image-transform-resize directly.
14278 2011-04-08  Sho Nakatani  <lay.sakura@gmail.com>
14280         * doc-view.el (doc-view-fit-width-to-window)
14281         (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
14282         New functions for fitting the shown image to the Emacs window size.
14283         (doc-view-mode-map): Add bindings for the new functions.
14285 2011-04-08  Juanma Barranquero  <lekktu@gmail.com>
14287         * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
14288         Fix typo in docstring.
14290 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
14292         * files.el (file-size-human-readable): Produce one digit after
14293         decimal, like "ls -lh" does.
14295         * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
14296         the file size representation.
14298         * simple.el (list-processes): If async subprocesses are not
14299         available, error out with a clear error message.
14301 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
14303         * help.el (help-form-show): New function, to be called from C.
14304         Put help-form output in a buffer named differently than *Help*.
14306 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
14308         * files.el (file-size-human-readable): New function.
14310         * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
14311         computing the representation inline.  Don't require `cl'.
14313 2011-04-08  Glenn Morris  <rgm@gnu.org>
14315         * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
14317         * net/browse-url.el (browse-url-firefox):
14318         Test system-type, not system-configuration.
14320         * vc/log-edit.el (log-edit-empty-buffer-p): New function.
14321         (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
14322         Use log-edit-empty-buffer-p.  (Bug#7598)
14324         * net/rlogin.el (rlogin-process-connection-type): Simplify.
14325         (rlogin-mode-map): Initialize in the defvar.
14326         (rlogin): Use ignore-errors.
14328         * replace.el (occur-mode-map): Some fixes for menu items.
14330 2011-04-07  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
14332         * play/morse.el (denato-region): Handle varying case.  (Bug#8386)
14334 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
14336         * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
14337         issuing unused warnings.
14339         * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
14340         macro directly.
14342         * simple.el: Lisp reimplement of list-processes.  Based on an
14343         earlier reimplementation by Leo Liu, but using tabulated-list.el.
14344         (process-menu-mode): New major mode.
14345         (list-processes--refresh, list-processes):
14346         (process-menu-visit-buffer): New functions.
14348         * files.el (save-buffers-kill-emacs): Don't assume any return
14349         value of list-processes, which is undocumented anyway.
14351 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
14353         * emacs-lisp/tabulated-list.el: New file.
14355         * emacs-lisp/package.el: Use Tabulated List mode.
14356         (package-menu-mode-map): Inherit from tabulated-list-mode-map.
14357         (package-menu-mode): Derive from tabulated-list-mode.  Set up the
14358         table format using Tabulated List mode variables.
14359         (package--push): New macro, replacing package-list-maybe-add.
14360         (package-menu--generate): Use package--push.  Renamed from
14361         package--generate-package-list.
14362         (package-menu-refresh, list-packages): Use it.
14363         (package-menu--print-info): Rename from package-print-package.
14364         Return insertion data instead of inserting it directly.
14365         (package-menu-describe-package, package-menu-execute):
14366         Use tabulated-list-get-id.
14367         (package-menu-mark-delete, package-menu-mark-install)
14368         (package-menu-mark-unmark, package-menu-backup-unmark)
14369         (package-menu-mark-obsolete-for-deletion):
14370         Use tabulated-list-put-tag.
14371         (package--list-packages, package-menu-revert)
14372         (package-menu-get-package, package-menu-get-version)
14373         (package-menu-sort-by-column): Functions deleted.
14374         (package-menu-package-list, package-menu-sort-key): Vars deleted.
14375         (package-menu--status-predicate, package-menu--version-predicate)
14376         (package-menu--name-predicate)
14377         (package-menu--description-predicate): Handle arguments in the
14378         Tabulated List format.
14379         (package-list-packages-no-fetch): Call list-packages.
14381 2011-04-06  Juanma Barranquero  <lekktu@gmail.com>
14383         * files.el (after-find-file-from-revert-buffer): Remove variable.
14384         (after-find-file): Don't bind it.
14385         (revert-buffer-in-progress-p): New variable.
14386         (revert-buffer): Bind it.
14387         Pass nil for `after-find-file-from-revert-buffer'.
14389         * saveplace.el (save-place-find-file-hook): Use new variable
14390         `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
14392 2011-04-06  Glenn Morris  <rgm@gnu.org>
14394         * Makefile.in (AUTOGEN_VCS): New variable.
14395         (autoloads): Use $AUTOGEN_VCS.
14397         * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
14398         * calendar/calendar.el (calendar-mode-map):
14399         Check for toolkit scroll bars.  (Bug#8305)
14401 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
14403         * minibuffer.el (completion-in-region--postch)
14404         (completion-in-region-mode): Remove unnecessary messages.
14406 2011-04-05  Juanma Barranquero  <lekktu@gmail.com>
14408         * font-lock.el (font-lock-refresh-defaults):
14409         Don't bind `hi-lock--inhibit-font-lock-hook', removed in
14410         2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
14412         * info.el (Info-directory-list, Info-read-node-name-2)
14413         (Info-split-parameter-string): Doc fixes.
14414         (Info-virtual-nodes): Reflow docstring.
14415         (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
14416         (Info-apropos-toc-nodes, info-finder, Info-get-token)
14417         (Info-find-emacs-command-nodes, Info-speedbar-key-map):
14418         Fix typos in docstrings.
14419         (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
14420         (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
14421         (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
14422         (Info-restore-desktop-buffer): Mark unused parameters.
14423         (Info-directory-find-file, Info-directory-find-node)
14424         (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
14425         (Info-virtual-index-find-node, Info-apropos-find-file)
14426         (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
14427         Mark unused parameters; fix typos in docstrings.
14428         (Info-virtual-index): Remove unused local variable `nodename'.
14430 2011-04-05  Deniz Dogan  <deniz@dogan.se>
14432         * net/rcirc.el: Update my e-mail address.
14433         (rcirc-mode-map): Remove M-o binding.
14435 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
14437         * startup.el (command-line): Save the cursor's theme-face
14438         directly, instead of using face-override-spec.
14440         * custom.el (load-theme): Minor optimization in assigning faces.
14442 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
14444         * help-fns.el (describe-variable): Complete all variables having
14445         documentation, including keywords.
14446         http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
14448 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
14450         Convert to lexical-binding.
14452         * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
14453         (bs--get-marked-string, bs--get-modified-string)
14454         (bs--get-readonly-string, bs--get-size-string, bs--get-name)
14455         (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
14456         (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
14458         * ehelp.el (electric-help-execute-extended)
14459         (electric-help-ctrl-x-prefix):
14460         * hexl.el (hexl-revert-buffer-function):
14461         * linum.el (linum-after-change, linum-after-scroll):
14462         * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
14464         * help-fns.el (help-describe-category-set): Remove unused ERR variable.
14466 2011-04-04  Daiki Ueno  <ueno@unixuser.org>
14468         * epa-dired.el:
14469         * epa-mail.el:
14470         * epa-hook.el:
14471         * epa-file.el:
14472         * epa.el:
14473         * epg.el: Use lexical binding.
14475 2011-04-03  Chong Yidong  <cyd@stupidchicken.com>
14477         * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
14479         * textmodes/flyspell.el (flyspell-word): Recognize default
14480         dictionary case for flyspell-mark-duplications-exceptions.
14481         Use regexp matching for languages.
14482         (flyspell-mark-duplications-exceptions): Add "that" and "had" for
14483         default dictionary (Bug#7926).
14485 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
14487         * emacs-lisp/package.el (package--with-work-buffer):
14488         Recognize https URLs.
14490         * net/network-stream.el: Move from gnus/proto-stream.el.
14491         Change prefix to network-stream throughout.
14492         (open-protocol-stream): Merge into open-network-stream, leaving
14493         open-protocol-stream as an alias.  Handle nil BUFFER args.
14495         * subr.el (open-network-stream): Move to net/network-stream.el.
14497 2011-04-02  Glenn Morris  <rgm@gnu.org>
14499         * find-dired.el (find-exec-terminator): New option.
14500         (find-ls-option): Test for -ls support.
14501         (find-ls-subdir-switches): Test for -b in find-ls-option.
14502         (find-dired, find-grep-dired): Doc fixes.
14503         (find-dired): Use find-exec-terminator.
14505         * find-dired.el (find-ls-option, find-ls-subdir-switches)
14506         (find-grep-options): Do not autoload these defcustoms, remove purecopy.
14507         (find-name-arg): Remove purecopy.
14509         * progmodes/grep.el (grep-find-use-xargs): Doc fix.
14510         (grep-compute-defaults): Check for `-exec COMMAND +' support.
14511         Set grep-find-use-xargs, grep-find-command, and grep-find-template
14512         accordingly.  Don't add the null-device if not needed.
14514         * files.el (save-some-buffers): Doc fix.
14516 2011-04-02  Eli Zaretskii  <eliz@gnu.org>
14518         * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
14520 2011-04-01  Juanma Barranquero  <lekktu@gmail.com>
14522         * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
14523         Use `dolist' rather than `mapcar'.
14525 2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14527         Add lexical binding.
14529         * subr.el (apply-partially): Use new closures rather than CL.
14530         (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
14531         (dolist, dotimes): Use slightly different expansion for lexical code.
14532         (functionp): Move to C.
14533         (letrec): New macro.
14534         (with-wrapper-hook): Use it and apply-partially instead of CL.
14535         (eval-after-load): Preserve lexical-binding.
14536         (save-window-excursion, with-output-to-temp-buffer): Turn them
14537         into macros.
14539         * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
14541         * help-fns.el (help-split-fundoc): Return nil if there's nothing else
14542         than the arglist.
14543         (help-add-fundoc-usage): Don't add `Not documented'.
14544         (help-function-arglist): Handle closures, subroutines, and new
14545         byte-code-functions.
14546         (help-make-usage): Remove leading underscores.
14547         (describe-function-1): Handle closures.
14548         (describe-variable): Use special-variable-p for completion.
14550         * files.el (lexical-binding): Declare safe.
14552         * emacs-lisp/pcase.el: Don't use destructuring-bind.
14553         (pcase--memoize): Rename from pcase-memoize.  Change weakness.
14554         (pcase): Add `let' pattern.
14555         Change memoization so it actually works.
14556         (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
14557         (pcase--u1) <guard, pred>: Fix possible shadowing problem.
14558         <let>: New case.
14560         * emacs-lisp/macroexp.el: Use lexical binding.
14561         (macroexpand-all-1): Check obsolete macros.  Expand compiler-macros.
14562         Don't convert ' to #' without checking that it's indeed quoting
14563         a lambda.
14565         * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
14566         Use eval-sexp-add-defvars.
14567         (eval-sexp-add-defvars): New fun.
14569         * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
14571         * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
14572         Don't autoload.
14573         (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
14574         than the internal `byte-compile-lambda'.
14575         (defmethod): Don't hide code under quotes.
14576         (eieio-defmethod): New `code' argument.
14578         * emacs-lisp/eieio-comp.el: Remove.
14580         * emacs-lisp/edebug.el (edebug-eval-defun)
14581         (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
14582         (edebug-toggle): Avoid `eval'.
14584         * emacs-lisp/disass.el (disassemble-internal): Handle new
14585         `closure' objects.
14586         (disassemble-1): Handle new byte codes.
14588         * emacs-lisp/cl.el (pushnew): Silence warning.
14590         * emacs-lisp/cl-macs.el (cl-byte-compile-block)
14591         (cl-byte-compile-throw): Remove.
14592         (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
14594         * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
14595         closures.
14597         * emacs-lisp/cconv.el: New file.
14599         * emacs-lisp/bytecomp.el: Use lexical binding instead of
14600         a "bytecomp-" prefix.  Macroexpand everything as a separate phase.
14601         (byte-compile-initial-macro-environment):
14602         Handle declare-function here.
14603         (byte-compile--lexical-environment): New var.
14604         (byte-stack-ref, byte-stack-set, byte-discardN)
14605         (byte-discardN-preserve-tos): New lap codes.
14606         (byte-interactive-p): Don't use any more.
14607         (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
14608         New macros.
14609         (byte-compile-lapcode): Use them and handle new lap codes.
14610         (byte-compile-obsolete): Remove.
14611         (byte-compile-arglist-signature): Handle new byte-code arg"lists".
14612         (byte-compile-arglist-warn): Check late def of inlinable funs.
14613         (byte-compile-cl-warn): Don't silence warnings for compiler-macros
14614         since they should have been expanded by now.
14615         (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
14616         (byte-compile-from-buffer): Remove unused second arg.
14617         (byte-compile-preprocess): New function.
14618         (byte-compile-toplevel-file-form): New function to distinguish
14619         file-form calls from outside from file-form calls from hunk-handlers.
14620         (byte-compile-file-form): Simplify.
14621         (byte-compile-file-form-defsubst): Remove.
14622         (byte-compile-file-form-defmumble): Simplify now that
14623         byte-compile-lambda always returns a byte-code-function.
14624         (byte-compile): Preprocess.
14625         (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
14626         Remove, not used any more.
14627         (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
14628         (byte-compile-make-args-desc): New funs.
14629         (byte-compile-lambda): Handle lexical functions.  Always return
14630         a byte-code-function.
14631         (byte-compile-reserved-constants): New var, to make up room for
14632         closed-over variables.
14633         (byte-compile-constants-vector): Obey it.
14634         (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
14635         (byte-compile-macroexpand-declare-function): New function.
14636         (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
14637         byte-code-functions.
14638         (byte-compile-form): Check obsolescence here.
14639         (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
14640         (byte-compile-variable-ref): Remove.
14641         (byte-compile-dynamic-variable-op): New fun.
14642         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
14643         (byte-compile-variable-set): New funs.
14644         (byte-compile-discard): Add 2 args.
14645         (byte-compile-stack-ref, byte-compile-stack-set)
14646         (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
14647         (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
14648         macroexpand-all instead.
14649         (byte-compile-quote-form): Remove.
14650         (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
14651         (byte-compile-bind, byte-compile-unbind): New funs.
14652         (byte-compile-let): Handle let* and lexical binding.
14653         (byte-compile-let*): Remove.
14654         (byte-compile-catch, byte-compile-unwind-protect)
14655         (byte-compile-track-mouse, byte-compile-condition-case):
14656         Handle a new :fun-body form, used for lexical scoping.
14657         (byte-compile-save-window-excursion)
14658         (byte-compile-with-output-to-temp-buffer): Remove.
14659         (byte-compile-defun): Simplify.
14660         (byte-compile-stack-adjustment): New fun.
14661         (byte-compile-out): Use it.
14662         (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
14664         * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
14665         handler any more.
14667         * emacs-lisp/byte-opt.el: Use lexical binding.
14668         (byte-inline-lapcode): Remove (to bytecomp).
14669         (byte-compile-inline-expand): Pay attention to inlining to/from
14670         lexically bound code.
14671         (byte-compile-unfold-lambda): Don't handle byte-code-functions
14672         any more.
14673         (byte-optimize-form-code-walker): Don't handle save-window-excursion
14674         any more and don't call compiler-macros.
14675         (byte-compile-splice-in-already-compiled-code): Remove.
14676         (byte-code): Don't inline any more.
14677         (disassemble-offset): Receive `bytes' as argument rather than via
14678         dynamic scoping.
14679         (byte-compile-tag-number): Declare before first use.
14680         (byte-decompile-bytecode-1): Handle new byte-codes, don't change
14681         `return' even if make-spliceable.
14682         (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
14683         obsolete interactive-p.
14684         (byte-optimize-lapcode): Optimize new lap-codes.
14685         Don't trip up on new form of `byte-constant' lap code.
14687         * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
14689         * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
14691         * custom.el (custom-initialize-default, custom-declare-variable):
14692         Use `defvar'.
14694         * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
14695         New variables.
14696         (compile-onefile, .el.elc, compile-calc, recompile): Use them.
14697         (COMPILE_FIRST): Add macroexp and cconv.
14698         * makefile.w32-in: Mirror changes in Makefile.in.
14700         * vc/cvs-status.el:
14701         * vc/diff-mode.el:
14702         * vc/log-edit.el:
14703         * vc/log-view.el:
14704         * vc/smerge-mode.el:
14705         * textmodes/bibtex-style.el:
14706         * textmodes/css.el:
14707         * startup.el:
14708         * uniquify.el:
14709         * minibuffer.el:
14710         * newcomment.el:
14711         * reveal.el:
14712         * server.el:
14713         * mpc.el:
14714         * emacs-lisp/smie.el:
14715         * doc-view.el:
14716         * dired.el:
14717         * abbrev.el: Use lexical binding.
14719 2011-04-01  Eli Zaretskii  <eliz@gnu.org>
14721         * info.el (info-display-manual): New function.
14723 2011-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
14725         * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
14727 2011-03-31  Tassilo Horn  <tassilo@member.fsf.org>
14729         * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
14730         an entry for that server in rcirc-authinfo.  (Bug#8385)
14732 2011-03-31  Glenn Morris  <rgm@gnu.org>
14734         * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
14736         * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
14738 2011-03-30  Christoph Scholtes  <cschol2112@googlemail.com>
14740         * progmodes/python.el (python-default-interpreter)
14741         (python-python-command-args, python-jython-command-args)
14742         (python-which-shell, python-which-args, python-which-bufname)
14743         (python-file-queue, python-comint-output-filter-function)
14744         (python-toggle-shells, python-shell): Remove obsolete defcustoms,
14745         variables and functions.
14747 2011-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14749         * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
14750         (completion-in-region-mode): New minor mode.
14751         (completion-in-region): Use it.
14752         (completion-in-region--data, completion-in-region-mode-map): New vars.
14753         (completion-in-region--postch): New function.
14754         (completion--capf-misbehave-funs, completion--capf-safe-funs):
14755         New vars.
14756         (completion--capf-wrapper): New function.
14757         (completion-at-point): Use it to track well-behavedness of
14758         hook functions.
14759         (completion-help-at-point): New command.
14761 2011-03-30  Jason Merrill  <jason@redhat.com>  (tiny change)
14763         * vc/add-log.el (add-change-log-entry): Don't use whitespace
14764         syntax class to search for whitespace on a single line
14765         (Message-ID: <4D938140.4030905@redhat.com>).
14767 2011-03-30  Leo Liu  <sdl.web@gmail.com>
14769         * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
14770         New commands.
14771         (edit-abbrevs-map): Bind them here.
14772         (write-abbrev-file): New optinal arg VERBOSE.  (Bug#5937)
14774 2011-03-29  Ken Manheimer  <ken.manheimer@gmail.com>
14776         * allout.el (allout-hide-by-annotation, allout-flag-region):
14777         Reduce possibility of overlay leakage by making them volatile.
14779         * allout-widgets.el (allout-widgets-tally): Define as nil so the
14780         hash is not shared between buffers.  Mode initialization is
14781         responsible for giving it a useful starting value.
14782         (allout-item-span): Reduce possibility of overlay leakage by
14783         making them volatile.
14784         (allout-widgets-count-buttons-in-region): Add diagnostic function
14785         for tracking down button overlay leaks.
14787 2011-03-29  Leo Liu  <sdl.web@gmail.com>
14789         * ido.el (ido-read-internal): Use the default history var
14790         minibuffer-history if no HISTORY is specified.
14792 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
14794         * net/imap.el (imap-shell-open, imap-process-connection-type):
14795         Use imap-process-connection-type for 'shell' streams as well as
14796         Kerberos, SSL, other subprocesses.
14798 2011-03-28  Leo Liu  <sdl.web@gmail.com>
14800         * abbrev.el (abbrev-table-empty-p): New function.
14801         (prepare-abbrev-list-buffer): Place empty abbrev tables after
14802         nonempty ones.  (Bug#5937)
14804 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
14806         * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
14808 2011-03-27  Leo Liu  <sdl.web@gmail.com>
14810         * ansi-color.el (ansi-color-names-vector): Allow cons cell value
14811         for foreground and background colors.
14812         (ansi-color-make-color-map): Adapt.
14814 2011-03-25  Leo Liu  <sdl.web@gmail.com>
14816         * midnight.el (midnight-time-float): Remove.  Note it calculates
14817         the microsecond component incorrectly and seconds-to-time does the
14818         same job.
14819         Remove redundant (require 'timer).
14821         * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
14822         (ido-completions): Remove unused arguments.  (Bug#8329)
14824 2011-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14826         * minibuffer.el (completion--flush-all-sorted-completions):
14827         Remove itself from hook.
14828         (completion-at-point): Let the functions perform the completion
14829         immediately and return nil or t.
14830         * comint.el (comint-dynamic-complete-functions): Now identical to
14831         completion-at-point-functions.
14832         (comint-dynamic-list-input-ring): Remove unused var `index'.
14833         (comint--match-partial-filename, comint--unquote&expand-filename):
14834         New funs, split from comint-match-partial-filename.
14835         (comint-dynamic-complete): Use completion-at-point.
14836         (comint-dynamic-complete-filename): Use comint--match-partial-filename.
14838 2011-03-24  Drew Adams  <drew.adams@oracle.com>
14840         * thingatpt.el: Support `defun'.
14842 2011-03-23  Leo Liu  <sdl.web@gmail.com>
14844         * abbrevlist.el: Move to obsolete/abbrevlist.el.
14846         * help-mode.el (help-mode-finish): Tweak regexp.
14848 2011-03-23  Glenn Morris  <rgm@gnu.org>
14850         * eshell/esh-opt.el (eshell-eval-using-options):
14851         Do not bind unused local variable `eshell-option-stub'.
14853         * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
14855 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
14857         * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
14858         keymap variable in `with-no-warnings' to avoid a warning when the
14859         keymap has been already `defconst'ed.
14861 2011-03-22  Leo Liu  <sdl.web@gmail.com>
14863         * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
14864         encode all chars in abbrevs; otherwise use emacs-mule or
14865         utf-8-emacs.  (Bug#8308)
14867 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
14869         * simple.el (backward-delete-char-untabify):
14870         Avoid warning about using `delete-backward-char'.
14872         * image.el (image-type-file-name-regexps): Make it variable.
14873         `imagemagick-register-types' modifies it, and the user may want
14874         to add new extensions for known image types.
14875         (imagemagick-register-types): Throw error if not using ImageMagick.
14877 2011-03-22  Leo Liu  <sdl.web@gmail.com>
14879         * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
14880         located before rcirc-prompt-end-marker.
14881         (rcirc-complete): Error if point is not after rcirc prompt.
14882         Handle the case when table is nil.
14883         (rcirc-user-authenticated): Define to fix compiler warning.
14885 2011-03-22  Chong Yidong  <cyd@stupidchicken.com>
14887         * custom.el (custom--inhibit-theme-enable): Make it affect only
14888         custom-theme-set-variables and custom-theme-set-faces.
14889         (provide-theme): Ignore custom--inhibit-theme-enable.
14890         (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
14891         (custom-enabling-themes): Delete variable.
14892         (enable-theme): Accept only loaded themes as arguments.
14893         Ignore the special custom-enabled-themes variable.
14894         (custom-enabled-themes): Forbid themes from setting this.
14895         Eliminate use of custom-enabling-themes.
14896         (custom-push-theme): Quote "changed" custom var entry.
14898 2011-03-21  Leo Liu  <sdl.web@gmail.com>
14900         * ido.el (ido-read-internal): Add ido-selected to history instead
14901         of user input.
14903 2011-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14905         * subr.el (deferred-action-list, deferred-action-function):
14906         Mark obsolete.
14908 2011-03-21  Leo Liu  <sdl.web@gmail.com>
14910         * vc/log-view.el: Remove (require 'wid-edit), not needed after the
14911         change on 2011-02-13 (bug#8309).
14913         * minibuffer.el (read-file-name-function): Change default value.
14914         (read-file-name--defaults): Rename from read-file-name-defaults.
14915         (read-file-name-default): Rename from read-file-name.
14916         (read-file-name): Call read-file-name-function.
14918 2011-03-21  Glenn Morris  <rgm@gnu.org>
14920         * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
14921         Doc fixes.
14923 2011-03-21  Chong Yidong  <cyd@stupidchicken.com>
14925         * cus-theme.el: Add missing provide statement.
14926         (customize-create-theme): Extract theme value correctly.
14927         (custom-theme-visit-theme): Autoload.
14928         (customize-create-theme): Prompt before inserting default faces.
14930 2011-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
14932         * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
14933         units and musical notes.
14935 2011-03-20  Leo Liu  <sdl.web@gmail.com>
14937         * ido.el (ido-read-internal): Use completing-read-default.
14938         (ido-completing-read): Fix compatibility with completing-read.
14940 2011-03-20  Christian Ohler  <ohler@gnu.org>
14942         * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
14943         (ert-delete-all-tests): Use `called-interactively-p' rather than
14944         `interactive-p'.
14945         (ert--make-xrefs-region): Respect END.
14947 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
14949         * dired-aux.el (dired-create-directory): Signal an error if the
14950         directory already exists (Bug#8246).
14952         * facemenu.el (list-colors-display): Call list-faces-display
14953         inside with-help-window.
14954         (list-colors-print): Use display property to align the final
14955         column, instead of checking window-width.
14957 2011-03-19  Eli Zaretskii  <eliz@gnu.org>
14959         * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
14960         windows-nt systems.
14961         (emerge-protect-metachars): Quote correctly for ms-dos and
14962         windows-nt systems.
14964 2011-03-19  Ralph Schleicher  <rs@ralph-schleicher.de>
14966         * info.el (info-initialize): Replace all uses of `:' with
14967         path-separator for compatibility with non-Unix systems.
14968         Cache quoting of path-separator.  (Bug#8258)
14970 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
14972         * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
14973         (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
14974         (mouse-avoidance-mode): Fix typos in docstrings.
14976 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
14978         * startup.el (package-subdirectory-regexp): Move from package.el.
14979         Omit \\` and \\', and let callers add them.
14981         * emacs-lisp/package.el (package-strip-version)
14982         (package-load-all-descriptors): Add \\` and \\' to
14983         package-subdirectory-regexp before using it.
14984         (package-untar-buffer): New arg DIR; ensure that file untars only
14985         into this expected directory.  Remove superfluous delete-region.
14986         (package-unpack): Caller changed.
14987         (package-tar-file-info): Use package-subdirectory-regexp.
14989 2011-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14991         * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
14992         diff-mode-shared-map (bug#8284).
14993         (diff-mode-shared-map): Re-introduce some bindings that were problematic.
14995 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14997         * calendar/time-date.el (format-seconds): Use assoc instead of
14998         assoc-string, since assoc-string doesn't exist in XEmacs.
15000 2011-03-17  Juanma Barranquero  <lekktu@gmail.com>
15002         * custom.el (custom-known-themes): Reflow docstring.
15003         (custom-theme-load-path): Fix typo in docstring.
15004         (load-theme): Fix typo in error message.
15005         (custom-available-themes, custom-variable-theme-value):
15006         Use `let', not `let*'.
15008 2011-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
15010         * calc/README: Mention inclusion of musical notes.
15012         * calc/calc-units.el (calc-lu-quant): Rename from
15013         `calc-logunits-quantity'.
15014         (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
15015         (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
15016         (calc-db): Rename from `calc-dblevel'.
15017         (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
15018         (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
15019         (calc-np): Rename from `calc-nplevel'.
15020         (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
15021         (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
15022         (calc-lu-plus): Rename from `calc-logunits-add'.
15023         (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
15024         (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
15025         (calc-lu-minus): Rename from `calc-logunits-sub'.
15026         (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
15027         (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
15028         (calc-lu-times): Rename from `calc-logunits-mul'.
15029         (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
15030         (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
15031         (calc-lu-divide): Rename from `calc-logunits-div'.
15032         (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
15033         (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
15035         * calc/calc-ext.el (calc-init-extensions): Update the names of the
15036         functions being autoloaded.
15038         * calc/calc.el (calc-lu-power-reference): Rename from
15039         `calc-logunits-power-reference'.
15040         (calc-lu-field-reference): Rename from
15041         `calc-logunits-field-reference'.
15043         * calc/calc-help.el (calc-l-prefix-help):
15044         Mention musical note functions.
15046 2011-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
15048         * minibuffer.el (completion-all-sorted-completions):
15049         Use :completion-cycle-penalty text property if present.
15051 2011-03-16  Ken Manheimer  <ken.manheimer@gmail.com>
15053         * allout.el (allout-yank-processing): Adjust for new rebulleting
15054         regime so bullet being yanked is used without prompting the user
15055         for a choice.
15057 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
15059         * startup.el (command-line): Warn the user that _emacs is deprecated.
15061 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
15063         * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
15064         (delphi-verbose, delphi-comment-face, delphi-string-face)
15065         (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
15066         (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
15067         (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
15068         (delphi-new-comment-line, delphi-font-lock-defaults)
15069         (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
15070         Fix typos in docstrings.
15072 2011-03-15  Ken Manheimer  <ken.manheimer@gmail.com>
15074         * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
15075         Invert the roles of character and string values for INSTEAD, so a
15076         string is used for the more common case of a defaulting prompt.
15078 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
15080         * progmodes/ruby-mode.el (ruby-backward-sexp):
15081         * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
15082         * play/gamegrid.el (gamegrid-make-face):
15083         * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
15084         (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
15085         * notifications.el (notifications-notify):
15086         * net/xesam.el (xesam-search-engines):
15087         * net/quickurl.el (quickurl-list-insert):
15088         * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
15090 2011-03-15  Chong Yidong  <cyd@stupidchicken.com>
15092         * startup.el (command-line): Update package subdirectory regexp.
15094 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
15096         * allout.el (allout-abbreviate-flattened-numbering)
15097         (allout-mode-deactivate-hook): Fix up obsolescence "date".
15099         * subr.el (read-char-choice): Only show the cursor after the prompt,
15100         not after the answer.
15102 2011-03-15  Kevin Ryde  <user42@zip.com.au>
15104         * help-fns.el (variable-at-point): Skip leading quotes, if any
15105         (bug#8253).
15107 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
15109         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
15110         warning message.
15112 2011-03-14  Michael Albinus  <michael.albinus@gmx.de>
15114         * shell.el (shell): When called interactively, offer to change the
15115         shell file name on remote hosts.
15117 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
15119         * net/ldap.el (ldap-search-internal): Add `auth-source-search'
15120         integration for LDAP parameters.  The host, base, user or binddn,
15121         and secret tokens can be specified in a netrc file, for instance.
15122         This is optional because an `auth-source' parameter must be
15123         specified in the search attributes.
15125 2011-03-13  Juanma Barranquero  <lekktu@gmail.com>
15127         * help.el (describe-mode): Link to the mode's definition (bug#8185).
15129 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15131         * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
15132         into declaration.  Remove redundant and harmful binding.
15134 2011-03-12  Eli Zaretskii  <eliz@gnu.org>
15136         * files.el (file-ownership-preserved-p): Pass `integer' as an
15137         explicit 2nd argument to `file-attributes'.  If the file's owner
15138         is the Administrators group on Windows, and the current user is
15139         Administrator, consider that a match.
15141         * server.el (server-ensure-safe-dir): Consider server directory
15142         safe on MS-Windows if its owner is the Administrators group while
15143         the current Emacs user is Administrator.  Use `=' to compare
15144         numerical UIDs, since they could be integers or floats.
15146 2011-03-12  Juanma Barranquero  <lekktu@gmail.com>
15148         * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
15150 2011-03-12  Michael Albinus  <michael.albinus@gmx.de>
15152         Sync with Tramp 2.2.1.
15154         * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
15156         * net/trampver.el: Update release number.
15158 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15160         * progmodes/compile.el (compilation--previous-directory): Fix up
15161         various nil/dead-marker mismatches (bug#8014).
15162         (compilation-directory-properties, compilation-error-properties):
15163         Don't call it at a position past the one we're about to change.
15165         * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
15166         Disable obsolescence warnings in the file that declares it.
15168 2011-03-11  Ken Manheimer  <ken.manheimer@gmail.com>
15170         * allout-widgets.el (allout-widgets-tally):
15171         Initialize allout-widgets-tally as a hash table rather than nil to
15172         prevent mode-line redisplay warnings.  Also, clarify the module
15173         description and fix a comment typo.
15175 2011-03-11  Juanma Barranquero  <lekktu@gmail.com>
15177         * help-fns.el (describe-variable): Don't complete keywords.
15178         Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
15180 2011-03-10  Chong Yidong  <cyd@stupidchicken.com>
15182         * emacs-lisp/package.el (package-version-join): Impose a standard
15183         string representation for pre/alpha/beta version lists.
15184         (package-unpack-single): Standardize the directory name by passing
15185         it through package-version-join.
15186         (package-strip-rcs-id): Accept any version string that does not
15187         signal an error in version-to-list.
15189 2011-03-10  Michael Albinus  <michael.albinus@gmx.de>
15191         * simple.el (delete-trailing-whitespace): Return nil for the
15192         benefit of `write-file-functions'.
15194 2011-03-10  Glenn Morris  <rgm@gnu.org>
15196         * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
15198         * vc/vc-git.el (vc-git-program): New option.
15199         (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
15200         (vc-git--call): Use it.
15202         * eshell/esh-util.el (eshell-condition-case): Doc fix.
15204         * cus-edit.el (Custom-newline): If no button at point, look
15205         for a subgroup button at start-of-line.  (Bug#2298)
15207         * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
15209 2011-03-10  Julien Danjou  <julien@danjou.info>
15211         * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
15212         `cursor-type' is nil.
15214 2011-03-09  Jay Belanger  <jay.p.belanger@gmail.com>
15216         * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
15218 2011-03-09  Ken Manheimer  <ken.manheimer@gmail.com>
15220         * allout.el: Change so yank of distinctive-bullet items
15221         preserves the existing header prefix, rebulleting it if necessary,
15222         rather than replacing it.  This is necessary for proper operation
15223         of cooperative addons like allout-widgets.
15224         (allout-make-topic-prefix, allout-rebullet-heading):
15225         Change SOLICIT arg to INSTEAD, and interpret additionally a string
15226         value as alternate bullet to be used, instead of prompting the user
15227         for a bullet character.
15229 2011-03-09  Michael Albinus  <michael.albinus@gmx.de>
15231         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15232         Do not use `tramp-file-name-port', because this returns also
15233         `tramp-default-port'.
15235 2011-03-09  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
15237         * net/rcirc.el (rcirc-handler-001): Remove useless
15238         with-rcirc-process-buffer.
15239         (rcirc-check-auth-status): Swap arguments to string-match.
15241 2011-03-09  Glenn Morris  <rgm@gnu.org>
15243         * shell.el (shell-mode):
15244         Set comint-input-ring-size from HISTSIZE.  (Bug#7889)
15246         * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
15247         Check for GDBHISTFILE, HISTSIZE, etc.  (Bug#7889)
15249 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
15251         * emacs-lisp/package.el (package-refresh-contents)
15252         (package-menu-execute): Use condition-case-no-debug.
15254 2011-03-08  Michael Albinus  <michael.albinus@gmx.de>
15256         * simple.el (shell-command-to-string): Use `process-file'.
15258         * emacs-lisp/package.el (package-tar-file-info): Handle also
15259         remote files.
15261         * emacs-lisp/package-x.el (package-upload-buffer-internal):
15262         Use `equal' for upload base check.
15264 2011-03-08  Arni Magnusson  <arnima@hafro.is>  (tiny change)
15266         * textmodes/texinfo.el (texinfo-environments):
15267         Add deftypecv, deftypeivar, deftypemethod, deftypeop, html.  (Bug#2783)
15269 2011-03-08  Glenn Morris  <rgm@gnu.org>
15271         * cus-start.el (cursor-in-non-selected-windows):
15272         Fix :set quoting oddness.  (Bug#8192)
15274         * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
15275         in some setf expressions.  (Bug#2159)
15277 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
15279         * custom.el (custom-available-themes): Return themes in
15280         alphabetical order.
15282 See ChangeLog.15 for earlier changes.
15284 ;; Local Variables:
15285 ;; coding: utf-8
15286 ;; End:
15288   Copyright (C) 2011-2012  Free Software Foundation, Inc.
15290   This file is part of GNU Emacs.
15292   GNU Emacs is free software: you can redistribute it and/or modify
15293   it under the terms of the GNU General Public License as published by
15294   the Free Software Foundation, either version 3 of the License, or
15295   (at your option) any later version.
15297   GNU Emacs is distributed in the hope that it will be useful,
15298   but WITHOUT ANY WARRANTY; without even the implied warranty of
15299   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15300   GNU General Public License for more details.
15302   You should have received a copy of the GNU General Public License
15303   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.