Use lexical-binding for all of CL, and clean up its namespace.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
bb3faf5b
SM
12012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/cl-lib.el: Use lexical-binding.
4 (cl-map-extents, cl-maclisp-member): Remove.
5 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
6 (cl--set-substring, cl--block-wrapper, cl--block-throw)
7 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
8 * emacs-lisp/cl-extra.el: Use lexical-binding.
9 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
10 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
11 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
12 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
13 * emacs-lisp/cl-seq.el: Use lexical-binding.
14 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
15 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
16 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
17 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
18 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
19 CL's internals.
20
2fe4b125
MA
212012-06-11 Michael Albinus <michael.albinus@gmx.de>
22
23 Sync with Tramp 2.2.6-pre.
24
25 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
26 `print-length' and `print-level' to nil, in order to avoid
27 truncation. Reported by Christopher Schmidt
28 <christopher@ristopher.com>.
29
30 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
31
32 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
33 New defmacro.
34 (tramp-compat-copy-directory): Add optional argument
35 COPY-CONTENTS. It is not handled yet.
36
37 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
38 (tramp-ftp-file-name-p): Simplify.
39
40 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
41 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
42 connection vector.
43
44 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
45 (tramp-methods): Do not use `tramp-password-end-of-line'.
46 (tramp-completion-function-alist-putty): Handle UNIX case.
47 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
48 (tramp-do-file-attributes-with-stat)
49 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
50 gid as real numbers. They could run out of integer range on cygwin.
51 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
52 (tramp-sh-handle-expand-file-name): Handle hops.
53 (tramp-open-connection-setup-interactive-shell): Use
54 `tramp-cleanup'. Move check for busyboxes ...
55 (tramp-find-shell): ... here. Simplify implementation. Set
56 "remote-shell" property also for alternative shells.
57 (tramp-remote-coding-commands): Check "test -c /dev/stdout". If
58 failing, a regular file would be written otherwise. Reported by
59 Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
60 (tramp-find-inline-encoding): Cache the coding commands in the
61 process cache. Apply test command on the remote side, if defined.
62 (tramp-find-inline-compress): Cache the compress commands in the
63 process cache.
64 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
65 when requested. Handle hops.
66 (tramp-current-connection): New defvar.
67 (tramp-maybe-open-connection): Use `tramp-cleanup'. Throw
68 `suppress', if there was a failed connection shortly before.
69 Handle user interrupt. (Bug#10187)
70 (tramp-get-inline-compress, tramp-get-inline-coding): Read
71 connection properties from the process cache.
72
73 * net/tramp-smb.el (tramp-smb-server-version)
74 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar): New
75 defconsts.
76 (tramp-smb-prompt): Extend for powershell prompt.
77 (tramp-smb-file-name-handler-alist): Add handlers for
78 `process-file', `shell-command' and `start-file-process'.
79 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
80 (tramp-smb-winexe-shell-command-switch): New defcustoms.
81 (tramp-smb-file-name-p): Simplify.
82 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
83 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
84 (tramp-smb-shell-quote-argument): New defuns.
85 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
86 Implement using "tar". By this, time-stamps are preserved.
87 (tramp-smb-handle-copy-file): Handle also the case of directories.
88 (tramp-smb-do-file-attributes-with-stat)
89 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities): Use
90 `tramp-get-connection-buffer').
91 (tramp-smb-handle-rename-file): Use "rename", when source and
92 target are on the same share.
93 (tramp-smb-maybe-open-connection): Handle wrong passwords. Use
94 `tramp-smb-server-version'.
95 (tramp-smb-wait-for-output): Remove prompt.
96
97 * net/tramp.el (top): Require 'cl.
98 (tramp-methods, tramp-rsh-end-of-line): Remove
99 `tramp-password-end-of-line' from docstring.
100 (tramp-save-ad-hoc-proxies): New defcustom.
101 (tramp-completion-function-alist): Adapt docstring.
102 (tramp-default-password-end-of-line): Remove defcustom.
103 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
104 (tramp-user-regexp, tramp-file-name-regexp-unified)
105 (tramp-file-name-regexp-url): Extend regexp by hop separator.
106 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
107 (tramp-remote-file-name-spec-regexp): New defconst.
108 (tramp-file-name-structure): Extend structure for hops.
109 (tramp-get-method-parameter): Move up.
110 (tramp-file-name-p, tramp-dissect-file-name)
111 (with-parsed-tramp-file-name): Handle hops.
112 (tramp-file-name-hop): New defun.
113 (tramp-make-tramp-file-name): New optional arg HOP.
114 (tramp-message-show-progress-reporter-message): New defvar.
115 (tramp-with-progress-reporter): Use it. We cannot use
116 `tramp-message-show-message' here, because this suppresses also
117 error buffers.
118 (tramp-error-with-buffer): Suppress buffer view, if
119 `tramp-message-show-message' is nil. Use
120 `tramp-get-connection-buffer'.
121 (tramp-cleanup): New defun.
122 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
123 (tramp-file-name-handler): If `debug-on-error' is set, propagate
124 an error unchanged.
125 (tramp-completion-handle-file-name-all-completions): Handle hops.
126 Fix an error when called from ido.
127 (tramp-completion-dissect-file-name): Use better local variable
128 name. Add hop to the vector.
129 (tramp-handle-insert-file-contents): Use progress-reporter for the
130 whole scenario.
131 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
132 to `t'.
133 (tramp-check-for-regexp): Simplify search.
134 (tramp-enter-password): Remove it. Move implementation ...
135 (tramp-action-password): ... here.
136 (tramp-mode-string-to-int, tramp-local-host-p)
137 (tramp-make-tramp-temp-file, tramp-read-passwd)
138 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff): Set
139 tramp-autoload cookie.
140
141 * net/trampver.el: Update release number.
142
1432012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
144 Michael Albinus <michael.albinus@gmx.de>
145
146 * net/tramp.el (tramp-set-completion-function): Fix docstring.
147 (tramp-parse-group, tramp-parse-file)
148 (tramp-parse-shostkeys-sknownhosts): New defuns.
149 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
150 (tramp-parse-shosts-group, tramp-parse-sconfig)
151 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
152 (tramp-parse-sknownhosts, tramp-parse-hosts)
153 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
154 Use them.
155 (tramp-parse-passwd-group, tramp-parse-netrc-group)
156 (tramp-parse-putty-group): Don't narrow.
157 (tramp-parse-putty): Make a loop.
158 (tramp-file-name-handler): Catch the `suppress' signal.
159
72834e10
CY
1602012-06-11 Chong Yidong <cyd@gnu.org>
161
162 * image.el (imagemagick-register-types): Put the ImageMagick entry
163 at the end of image-type-file-name-regexps.
164
a4712e11
JB
1652012-06-11 Johan Bockgård <bojohan@gnu.org>
166
167 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
168 (pcase, pcase-let*, pcase-dolist): Use them.
169
82ad98e3
SM
1702012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
171
172 * emacs-lisp/pcase.el (pcase--let*): New function.
173 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
174 (pcase--expand): Use macroexp-let².
175
f80efb86
SM
1762012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
177
178 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
179 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
180 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
181 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
182 * emacs-lisp/derived.el: Use pcase instead of `cl'.
183 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
184
31ca4639 1852012-06-10 Glenn Morris <rgm@gnu.org>
94f0aa34 186
31ca4639
CY
187 * mail/rmail.el (rmail-yank-current-message): Leave point at
188 correct position. (Bug#11660)
94f0aa34 189
31ca4639 1902012-06-10 Chong Yidong <cyd@gnu.org>
9e1b8ec4 191
31ca4639 192 * allout-widgets.el: Fix code header.
9e1b8ec4 193
31ca4639 1942012-06-10 Chong Yidong <cyd@gnu.org>
00cd0305 195
f80efb86
SM
196 * cus-edit.el (customize-changed-options-previous-release):
197 Bump to 24.1.
31ca4639 198
642b6d30
AS
1992012-06-09 Andreas Schwab <schwab@linux-m68k.org>
200
201 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
202
4f5d2ba1
CY
2032012-06-09 Chong Yidong <cyd@gnu.org>
204
205 * ebuff-menu.el (electric-buffer-list): Preserve header line.
206
e75852fd
MR
2072012-06-09 Martin Rudalics <rudalics@gmx.at>
208
209 * window.el (special-display-popup-frame): Don't use
210 window--display-buffer (Bug#11651).
211
1e48e282
EZ
2122012-06-09 Eli Zaretskii <eliz@gnu.org>
213
8a26b487
EZ
214 Fix parallel builds: make sure loaddefs.el is not being written
215 while Lisp files are compiled.
216 (compile): Don't depend on 'mh-autoloads'.
217 (compile-CMD, compile-SH): Depend on 'autoloads'.
218 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
219
1e48e282
EZ
220 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
221
6175e34b
CY
2222012-06-09 Chong Yidong <cyd@gnu.org>
223
224 * face-remap.el (face-remap-add-relative, face-remap-set-base)
225 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
226 Doc fixes (Bug#11225).
227
d9857e53
SM
2282012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
229
230 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
231 a function if there's a clear indication that it has a compiler-macro.
232 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
233 (macro-declarations-alist): Add arglist to declaration functions.
234 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
235 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
236 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
237 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
238 Also add autoload to find the compiler macro.
239 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
240 (cl--compiler-macro-member, cl--compiler-macro-assoc)
241 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
242 (cl--compiler-macro-get): New functions, replacing calls to
243 cl-define-compiler-macro.
244 (cl-typep) [compiler-macro]: Use macroexp-let².
245
f81298f8 2462012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
ee574791
UJ
247
248 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
249 string properly, fixes Bug#11473.
250
4b56d0fe
CY
2512012-06-08 Chong Yidong <cyd@gnu.org>
252
253 * faces.el (set-face-attribute): Doc fix.
254 (modify-face): Don't use :bold and :italic.
255 (error, warning, success): Tweak definitions.
256
257 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
258 (custom-modified, custom-set, custom-changed, custom-themed)
259 (custom-saved, custom-button, custom-button-mouse)
260 (custom-button-pressed, custom-state, custom-comment-tag)
261 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
262 (custom-group-subtitle): Use new-style face specs.
263 (custom-invalid-face, custom-rogue-face, custom-modified-face)
264 (custom-set-face, custom-changed-face, custom-saved-face)
265 (custom-button-face, custom-button-pressed-face)
266 (custom-documentation-face, custom-state-face)
267 (custom-comment-face, custom-comment-tag-face)
268 (custom-variable-tag-face, custom-variable-button-face)
269 (custom-face-tag-face, custom-group-tag-face-1)
270 (custom-group-tag-face): Remove obsolete face alias.
271
272 * epa.el (epa-validity-high, epa-validity-medium)
273 (epa-validity-low, epa-mark, epa-field-name, epa-string)
274 (epa-field-name, epa-field-body):
275 * font-lock.el (font-lock-comment-face, font-lock-string-face)
276 (font-lock-keyword-face, font-lock-builtin-face)
277 (font-lock-function-name-face, font-lock-variable-name-face)
278 (font-lock-type-face, font-lock-constant-face):
279 * ido.el (ido-first-match, ido-only-match, ido-subdir)
280 (ido-virtual, ido-indicator, ido-incomplete-regexp):
281 * speedbar.el (speedbar-button-face, speedbar-file-face)
282 (speedbar-directory-face, speedbar-tag-face)
283 (speedbar-selected-face, speedbar-highlight-face)
284 (speedbar-separator-face):
285 * whitespace.el (whitespace-newline, whitespace-space)
286 (whitespace-hspace, whitespace-tab, whitespace-trailing)
287 (whitespace-line, whitespace-space-before-tab)
288 (whitespace-space-after-tab, whitespace-indentation)
289 (whitespace-empty):
290 * emulation/cua-base.el (cua-global-mark):
291 * eshell/em-prompt.el (eshell-prompt):
292 * net/newst-plainview.el (newsticker-new-item-face)
293 (newsticker-old-item-face, newsticker-immortal-item-face)
294 (newsticker-obsolete-item-face, newsticker-date-face)
295 (newsticker-statistics-face, newsticker-default-face):
296 * net/newst-reader.el (newsticker-feed-face)
297 (newsticker-extra-face, newsticker-enclosure-face):
298 * net/newst-treeview.el (newsticker-treeview-face)
299 (newsticker-treeview-new-face, newsticker-treeview-old-face)
300 (newsticker-treeview-immortal-face)
301 (newsticker-treeview-obsolete-face)
302 (newsticker-treeview-selection-face):
303 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
304 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
305 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
306 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
307 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
308 (nxml-outline-active-indicator, nxml-outline-ellipsis):
309 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
310 (mpuz-text):
311 * progmodes/vera-mode.el (vera-font-lock-number)
312 (vera-font-lock-function, vera-font-lock-interface):
313 * textmodes/table.el (table-cell): Use new-style face specs, and
314 don't use the old :bold and :italic attributes.
315
316 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
317 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
318 (ebrowse-member-class, ebrowse-progress): Likewise.
319 (ebrowse-tree-mark-face, ebrowse-root-class-face)
320 (ebrowse-file-name-face, ebrowse-default-face)
321 (ebrowse-member-attribute-face, ebrowse-member-class-face)
322 (ebrowse-progress-face): Remove obsolete faces.
323
324 * progmodes/flymake.el (flymake-errline, flymake-warnline):
325 Inherit from error and warning faces respectively.
326
327 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
328 Likewise.
f80efb86
SM
329 (flyspell-incorrect-face, flyspell-duplicate-face):
330 Remove obsolete aliases.
4b56d0fe 331
03310646
MA
3322012-06-08 Michael Albinus <michael.albinus@gmx.de>
333
334 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
335 Avoid infloop.
336
513749ee
SM
3372012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
338
339 * startup.el (argv, argi): Make lexically scoped.
340 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
341 * emacs-lisp/cl-macs.el: Use lexical-binding.
342 Rename cl-bind-* to cl--bind-*.
343 * files.el: Don't require `cl' since it doesn't use it.
344 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
345
595ef4ad
JB
3462012-06-08 Juanma Barranquero <lekktu@gmail.com>
347
348 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
349 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
350 instead of calling external sort utility.
351 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
352
e9f66fcb
EZ
3532012-06-08 Eli Zaretskii <eliz@gnu.org>
354
355 * descr-text.el (describe-char): Mention how to insert the
356 character, if the current input method doesn't support it.
357 See the discussion in this thread for the details:
358 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
359
3d10db47
SS
3602012-06-08 Sam Steingold <sds@gnu.org>
361
362 * bindings.el (global-map): Bind XF86Forward to next-buffer and
363 XF86Back to previous-buffer.
364 (minibuffer-local-map): Bind them to next-history-element and
365 previous-history-element respectively.
366 * help-mode.el (help-mode-map): Bind them to help-go-forward and
367 help-go-back respectively.
368 * info.el (Info-mode-map): Bind them to Info-history-forward and
369 Info-history-back respectively.
370 These are the keys next to Up on the ThinkPad keyboard.
371
de7e2b36
SM
3722012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
373
374 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
375 * emacs-lisp/cl-macs.el: Provide itself.
376 (cl--labels-convert-cache): New var.
377 (cl--labels-convert): New function.
378 (cl-flet, cl-labels): New implementation with new semantics, relying on
379 lexical-binding.
380 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
381 (cl-closure-vars, cl--function-convert-cache)
382 (cl--function-convert): Move from cl-macs.el.
383 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
384 rename by removing the "cl-" prefix.
385 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
386
6fa6c4ae
SM
3872012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
388
389 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
390 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
391 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
392 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
393 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
394 (cl-hash-table-count): Add old compatibility aliases.
395
396 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
397 Use macroexpand-all-environment instead.
398 (cl--old-macroexpand): New var.
399 (cl--sm-macroexpand): New function.
400 (cl-symbol-macrolet): Use it during macro expansion.
401 (cl--function-convert-cache): New var.
402 (cl--function-convert): New function, extracted from
403 cl-macroexpand-all.
404 (cl-lexical-let): Use it.
405
406 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
407 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
408 (cl-member): Remove old alias.
409
410 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
411 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
412 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
413 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
414 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
415 (cl-macroexpand-cmacs): Remove var.
416 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
417 Use macroexpand-all instead.
418
4dd1c416
SM
4192012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
420
421 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
422 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
423 (macroexp-copyable-p): New functions and macros.
424 * emacs-lisp/edebug.el (edebug-unwrap):
425 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
426 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
427 (pcase--let*): Remove.
428 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
429 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
430 macroexp-const-p instead.
431 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
432
433 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
434 instead of "cl-" for internal definitions. Use macroexp-const-p.
435 (cl-old-bc-file-form): Remove var.
436 (cl-const-exprs-p): Remove fun.
437 (cl-labels, cl-macrolet): Use backquote.
438 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
439 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
440 (cl-define-setf-expander): Rename from cl-define-setf-method.
441 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
442
443 * international/mule-cmds.el: Don't require CL.
444 (view-hello-file): Don't use `letf'.
445
ed8bd4d7
SM
4462012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
447
7287f2f3
SM
448 * tmm.el (tmm-prompt): Use string-prefix-p.
449 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
450 (tmm-add-prompt): Use minibuffer-completion-help.
451 (tmm-delete-map): Remove.
452
ed8bd4d7
SM
453 * subr.el (kbd): Make it its own function.
454
7b4cdbf4
SM
4552012-06-07 Stefan Merten <smerten@oekonux.de>
456
457 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
458 Silence compiler warnings. Fix versions.
ed8bd4d7 459 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7b4cdbf4 460 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
ed8bd4d7 461 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7b4cdbf4
SM
462 (rst-package-emacs-version-alist): Correct Emacs version to
463 represent major merge with upstream.
ed8bd4d7 464 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7b4cdbf4 465
2b48d721
GM
4662012-06-06 Glenn Morris <rgm@gnu.org>
467
468 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
469 Only print environment variables if set.
470
fa779ab0
SM
4712012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
472
473 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
474 (macroexp--cons): Rename from maybe-cons.
475 (macroexp--accumulate): Rename from macroexp-accumulate.
476 (macroexp--all-forms): Rename from macroexpand-all-forms.
477 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
478 (macroexp--expand-all): Rename from macroexpand-all-1.
479
628299e0
SS
4802012-06-06 Sam Steingold <sds@gnu.org>
481
482 * calendar/calendar.el (calendar-in-read-only-buffer):
483 Call `special-mode' to enable the standard read-only keybindings.
484
b7bb5838
SM
4852012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
486
487 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
488 with "loading" messages (bug#11635).
489
dfb308ba
MA
4902012-06-06 Michael Albinus <michael.albinus@gmx.de>
491
492 * files.el (enable-remote-dir-locals): New option.
493 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
494
0372ee92
MA
495 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
496 Ensure, that the temp directory is local.
497
498 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
499 `temporary-file-directory'.
500
eed0bb91
MA
501 * progmodes/python.el (python-send-region): Ensure, that the
502 temporary file is created also in the remote case.
503
7a58f64d
GM
5042012-06-06 Glenn Morris <rgm@gnu.org>
505
f7dd4e98
GM
506 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
507 (vc-rcs-update-changelog): Use it.
508
276d5f5d
GM
509 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff
510
7a58f64d
GM
511 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
512 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
513 (vc-sccs-diff): Replace use of the external vcdiff script.
514
daed4003
GM
5152012-06-05 Glenn Morris <rgm@gnu.org>
516
517 * ledit.el: Move to obsolete/.
518
48c455c7
SS
5192012-06-05 Sam Steingold <sds@gnu.org>
520
521 * calendar/calendar.el (calendar-exit): reinstate the 2012-03-28
522 patch (Bug#11140).
523
57a7d507
SM
5242012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
525
d32926ff
SM
526 * emacs-list/cust-print.el: Move to obsolete.
527
53aacf21
SM
528 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
529 compiler-macro expansion.
530
57a7d507
SM
531 Add native compiler-macro support.
532 * emacs-lisp/macroexp.el (macroexpand-all-1):
533 Support compiler-macros directly. Properly follow aliases and apply
534 the compiler macros more thoroughly.
535 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
536 macroexpand now properly follows aliases.
537 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
538 (cl-compiler-macroexpand): Use new prop.
539 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
540
541 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
542
51a5f9d8
MR
5432012-06-05 Martin Rudalics <rudalics@gmx.at>
544
545 * window.el (get-lru-window, get-mru-window, get-largest-window):
546 New argument NOT-SELECTED to avoid picking the selected window.
547 (window--display-buffer-1, window--display-buffer-2): Replace by
548 new function window--display-buffer
549 (display-buffer-same-window, display-buffer-reuse-window)
57a7d507
SM
550 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
551 Use window--display-buffer.
51a5f9d8
MR
552 (display-buffer-use-some-window): Remove temporary dedication
553 hack by calling get-lru-window and get-largest-window with
554 NOT-SELECTED argument non-nil. Call window--display-buffer.
555
08f9f738
GM
5562012-06-05 Glenn Morris <rgm@gnu.org>
557
558 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
559 Replace external vcdiff script.
560
e364a2b7
SM
5612012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
562
563 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
564
041df390
CY
5652012-06-04 Chong Yidong <cyd@gnu.org>
566
e364a2b7
SM
567 * image.el (imagemagick-types-inhibit): Revert last change.
568 Add INFO and M.
47b36b94 569 (imagemagick-enabled-types): Remove CIN and EPS*.
041df390 570
7c1898a7
SM
5712012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
572
573 * emacs-lisp/cl-lib.el: Rename from cl.el.
574 * emacs-lisp/cl.el: New compatibility file.
575 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
576 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
577 to obey the "cl-" prefix.
578 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
579
0c3461de
GM
5802012-06-03 Glenn Morris <rgm@gnu.org>
581
1e266c88
GM
582 * emacs-lisp/authors.el (authors-aliases): Addition.
583
0c3461de
GM
584 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
585 Fix :version.
586
d8a52e15
SM
5872012-06-03 Stefan Merten <smerten@oekonux.de>
588
589 * textmodes/rst.el: Add comments.
590 (rst-transition, rst-adornment): New faces.
591 (rst-adornment-faces-alist): Make default safe to reevaluate.
592 Fixes
593 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
594 Improve customization tags.
595 (rst-define-level-faces): Clarify meaning.
596
5205d6f6
CY
5972012-06-03 Chong Yidong <cyd@gnu.org>
598
599 * progmodes/compile.el (compilation-mode-line-fail)
7c1898a7
SM
600 (compilation-mode-line-run, compilation-mode-line-exit):
601 New faces.
5205d6f6
CY
602 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
603
757ee657
JD
6042012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
605
7c1898a7
SM
606 * progmodes/which-func.el (which-func-update-ediff-windows):
607 New function. Use it in ediff-select-hook (Bug#11478).
757ee657 608
5f2c76c6
CY
6092012-06-03 Chong Yidong <cyd@gnu.org>
610
611 * bindings.el: Remove explicit help text from format-mode-line.
612 It is now supplied by mode-line-default-help-echo.
613 (mode-line-front-space, mode-line-end-spaces)
614 (mode-line-misc-info): New variables.
615 (mode-line-modes, mode-line-position): Move the default value to
616 the variable definition.
617 (mode-line-default-help-echo): New defcustom.
383f7350
CY
618 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
619 (mode-line-modified-help-echo): New functions.
620 (mode-line-mule-info, mode-line-modified): Use them.
621 (mode-line-eol-desc, propertized-buffer-identification):
622 Consistency fixes for help text.
cbe46e5f
CY
623 (mode-line-coding-system-map): Allow using mouse-3 to invoke
624 set-buffer-file-coding-system (Bug#289).
625 (mode-line-mule-info-help-echo): Update help text.
5f2c76c6 626
f2d6a3df
SM
6272012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
628
629 * simple.el (execute-extended-command): Set real-this-command
630 (bug#11506).
631
37269466
CY
6322012-06-02 Chong Yidong <cyd@gnu.org>
633
634 Remove incorrect uses of "modeline" in comments, docstrings, and
635 function/variable names (Bug#10329).
636
637 * cus-edit.el (mode-line):
638 * dframe.el (dframe-mouse-hscroll):
639 * emacs-lisp/re-builder.el:
640 * emacs-lisp/easy-mmode.el (define-minor-mode):
641 * frame.el (set-frame-name):
642 * help.el (lookup-minor-mode-from-indicator):
643 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
644 * progmodes/cc-cmds.el (c-toggle-auto-newline)
645 (c-toggle-hungry-state):
646 * progmodes/antlr-mode.el (antlr-language-alist):
647 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
648 * progmodes/vhdl-mode.el (vhdl-mode):
649 * progmodes/which-func.el (which-func, which-func-cleanup-function):
650 * term/ns-win.el (ns-face-at-pos):
651 * term/sup-mouse.el (sup-mouse-report):
652 * textmodes/flyspell.el (flyspell-mode-line-string):
653 * textmodes/ispell.el (ispell-highlight-face):
654 * textmodes/reftex-global.el:
655 * vc/vc-arch.el (vc-arch-mode-line-string):
656 * vc/vc-cvs.el (vc-cvs-mode-line-string):
657 * vc/vc-git.el (vc-git-mode-line-string):
658 * vc/vc-hooks.el (vc-display-status)
659 (vc-default-mode-line-string):
660 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
661
662 * ansi-color.el (ansi-color-faces-vector): Change default faces.
663
664 * dired.el (dired-sort-set-mode-line): Rename from
665 dired-sort-set-modeline. All callers changed.
666
667 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
668 eshell-status-in-modeline.
669
670 * foldout.el (foldout-mode-line-string): Rename from
671 foldout-modeline-string. All callers changed.
672 (foldout-update-mode-line): Rename from foldout-update-modeline.
673
674 * subr.el (redraw-modeline): Make into obsolete alias.
675
676 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
677 timeclock-modeline-display. Make old name an alias.
678 (timeclock-update-mode-line): Likewise. All callers changed.
679 (timeclock-mode-line-display): No need to check before using
680 add-hook.
681 (timeclock-relative, timeclock-day-over-hook)
682 (timeclock-use-elapsed, timeclock-mode-string)
683 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
684
685 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
686 crisp-mode-modeline-string.
687
688 * play/solitaire.el (solitaire-build-mode-line): Rename from
689 solitaire-build-modeline. All callers changed.
690
691 * play/zone.el (zone-hiding-mode-line): Rename from
692 zone-hiding-modeline. All callers changed.
693 (zone): Remove unusued `modeline-hidden-level' property.
694
695 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
696 xscheme-modeline-initialize. All callers changed.
697
698 * strokes.el (strokes-lighter): Rename from
699 strokes-modeline-string.
700
701 * textmodes/sgml-mode.el (html-face-tag-alist)
702 (html-tag-face-alist): Use mode-line face instead of obsolete
703 alias modeline.
704
42152ee4
SM
7052012-06-02 Stefan Merten <smerten@oekonux.de>
706
707 * textmodes/rst.el: Always require `cl'.
4cf9b38d 708 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
42152ee4 709
95f520b5
CY
7102012-06-02 Chong Yidong <cyd@gnu.org>
711
712 * image.el (imagemagick-enabled-types): Rename from
713 imagemagick-types-enable. Add many more types.
714 (imagemagick-types-inhibit): Change default to nil.
715 (imagemagick-filter-types): Caller changed.
716
4a5f187a
SM
7172012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
718
03fef3e6
SM
719 * emacs-lisp/cl-macs.el: Use backquotes.
720 (cl-transform-function-property): Use eval-and-compile rather than
721 abusing `require'.
722 (defstruct): Use declare-function instead of with-no-warnings.
723
4a5f187a
SM
724 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
725 (byte-compile-output-docform): Re-add the print-circle bindings.
726 (byte-compile-fix-header): Use #$ just because it's shorter.
727 (byte-compile-output-file-form): Remove defun/defmacro.
728
bd56924f
MR
7292012-06-01 Martin Rudalics <rudalics@gmx.at>
730
731 * simple.el (choose-completion): Remove now obsolete binding for
732 owindow.
733
046e38ce
MA
7342012-06-01 Michael Albinus <michael.albinus@gmx.de>
735
736 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
737 in order to avoid "Stack overflow in regexp matcher".
738
32d72c2f
GM
7392012-05-31 Glenn Morris <rgm@gnu.org>
740
741 * image.el: For clarity, call imagemagick-register-types at
742 top-level, rather than relying on a custom :initialize.
743 (imagemagick-types-enable): New option. (Bug#11557)
60b5f187
GM
744 (imagemagick-filter-types): New function. (Bug#7406)
745 (imagemagick-register-types): Use imagemagick-filter-types.
32d72c2f
GM
746 If disabling support, remove elements altogether rather
747 than using an impossible regexp.
748 (imagemagick-types-inhibit): Give it the default init function.
749
dd41169b
SM
7502012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
751
4a5f187a
SM
752 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
753 Handle arbitrary file name lengths (Bug#11585).
dd41169b 754
efc00ab1 7552012-05-31 Martin Rudalics <rudalics@gmx.at>
5221ccb9
MR
756
757 * desktop.el (desktop-read): Clear previous and next buffers for
758 all windows and bury *Messages* buffer (bug#11556).
759
500fcedc
SM
7602012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
761
762 Add `declare' for `defun'. Align `defmacro's with it.
763 * emacs-lisp/easy-mmode.el (define-minor-mode)
764 (define-globalized-minor-mode): Don't autoload the var definitions.
765 * emacs-lisp/byte-run.el: Use lexical-binding.
766 (defun-declarations-alist, macro-declarations-alist): New vars.
767 (defmacro, defun): Use them.
768 (make-obsolete, define-obsolete-function-alias)
769 (make-obsolete-variable, define-obsolete-variable-alias):
770 Use `declare'.
771 (macro-declaration-function): Mark obsolete.
772 * emacs-lisp/autoload.el: Use lexical-binding.
773 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
774
6e8a1786
AM
7752012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
776
777 * textmodes/ispell.el (ispell-with-no-warnings):
778 Define as a macro.
500fcedc
SM
779 (ispell-kill-ispell, ispell-change-dictionary):
780 Use `called-interactively-p' for Emacs instead of obsolete
6e8a1786
AM
781 `interactive-p'.
782
61b108cc
SM
7832012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
784
785 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
786 (macro-declaration-function): Move var from C code.
787 (macro-declaration-function): Define function with defalias.
788 * emacs-lisp/macroexp.el (macroexpand-all-1):
789 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
790 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
791 defun/defmacro any more.
792 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
793 Provide fallback for unknown arglist.
794 (byte-compile-arglist-warn): Change calling convention.
795 (byte-compile-output-file-form): Move print-vars binding.
796 (byte-compile-output-docform): Simplify accordingly.
797 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
798 (byte-compile-defmacro-declaration): Remove.
799 (byte-compile-file-form-defmumble): Generalize to defalias.
800 (byte-compile-output-as-comment): Return byte-positions.
801 Simplify callers accordingly.
802 (byte-compile-lambda): Use `assert'.
803 (byte-compile-defun, byte-compile-defmacro): Remove.
804 (byte-compile-file-form-defalias):
805 Use byte-compile-file-form-defmumble.
806 (byte-compile-defalias-warn): Remove.
807
6d3f7c2f
SM
8082012-05-29 Stefan Merten <smerten@oekonux.de>
809
810 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
61b108cc 811 possible. Fix authors. Improve comments. Improve loading of `cl'.
6d3f7c2f
SM
812
813 (rst-mode-abbrev-table): Merge definition.
814 (rst-mode): Make sure `font-lock-defaults' is buffer local.
815 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
816
6dbaa1c7
UJ
8172012-05-29 Ulf Jasper <ulf.jasper@web.de>
818
819 * calendar/icalendar.el
820 (icalendar-export-region): Export UID properly.
821
8222012-05-29 Leo <sdl.web@gmail.com>
61b108cc
SM
823 * calendar/icalendar.el (icalendar-import-format):
824 Add `icalendar-import-format-uid' (Bug#11525).
6dbaa1c7
UJ
825 (icalendar-import-format-uid): New.
826 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
827 Export UID.
828
6876a58d
SM
8292012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
830
831 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
832 different alternative patterns.
833 (pcase-codegen): Be more careful to preserve identity.
834 (pcase--u1): Don't forget to mark vars as used.
835
836 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
837 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
838 (byte-compile-from-buffer): ...rather than here.
839
840 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
841 functions from byte-compile-function-environment.
842
46b7967e
TN
8432012-05-29 Troels Nielsen <bn.troels@gmail.com>
844
845 * window.el (window-deletable-p): Avoid deleting the root window
846 of a frame with an active minibuffer.
847
69d565e2
MR
8482012-05-29 Martin Rudalics <rudalics@gmx.at>
849
850 * simple.el (choose-completion): Use quit-window (Bug#11567).
851
a149fa51
CY
8522012-05-29 Chong Yidong <cyd@gnu.org>
853
854 * whitespace.el (whitespace-cleanup): Fix usage of
855 whitespace-empty-at-bob-regexp (Bug#11492).
856
2b311310
AH
8572012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
858
859 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
860 revert (Bug#11488).
861
b9cb2387
JL
8622012-05-29 Juri Linkov <juri@jurta.org>
863
864 * isearch.el (isearch-mode-map): Bind `M-s _' to
865 `isearch-toggle-symbol'. Bind `M-s c' to
866 `isearch-toggle-case-fold'.
867 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
868 (isearch-forward): Add `M-s _' to the docstring.
869 (isearch-forward-symbol, isearch-toggle-case-fold)
870 (isearch-symbol-regexp): New functions. (Bug#11381)
871
d5e61c1c
JL
8722012-05-29 Juri Linkov <juri@jurta.org>
873
874 * isearch.el (isearch-word): Add docstring. (Bug#11381)
875 (isearch-occur, isearch-search-and-update): If `isearch-word' is
876 a function, call it to get the regexp.
877 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
878 property `isearch-message-prefix' instead of the string "word ".
879 (isearch-search-fun-default): For the case of `isearch-word',
880 return a lambda that calls re-search-forward/re-search-backward
881 with a regexp returned by `word-search-regexp' or by the function
882 in `isearch-word'.
883
8cbd80f7
JL
8842012-05-29 Juri Linkov <juri@jurta.org>
885
886 * isearch.el (isearch-search-fun-default): New function.
887 (isearch-search-fun): Move default part to the new function
888 `isearch-search-fun-default'.
889 (isearch-search-fun-function): Set the default value to
890 `isearch-search-fun-default'. (Bug#11381)
891
892 * comint.el (comint-history-isearch-end):
893 Use `isearch-search-fun-default'.
894 (comint-history-isearch-search): Use `isearch-search-fun-default'
895 and remove spacial case for `isearch-word'.
896 (comint-history-isearch-wrap): Remove spacial case for
897 `isearch-word'.
898
899 * hexl.el (hexl-isearch-search-function):
900 Use `isearch-search-fun-default'.
901
902 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
903 Use `word-search-regexp' for `isearch-word'.
904
905 * misearch.el (multi-isearch-search-fun):
906 Use `isearch-search-fun-default'.
907
908 * simple.el (minibuffer-history-isearch-search):
909 Use `isearch-search-fun-default' and remove spacial case for
910 `isearch-word'.
911 (minibuffer-history-isearch-wrap): Remove spacial case for
912 `isearch-word'.
913
914 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
915 Remove spacial case for `isearch-word'.
916 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
917
85c8c5b6
AM
9182012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
919
920 Decrease XEmacs incompatibilities.
921 * textmodes/flyspell.el (flyspell-check-pre-word-p):
922 Use `string-match'.
923 (flyspell-delete-region-overlays): Use alternative definition for
924 XEmacs.
925 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
926 (flyspell-word): Use `process-kill-without-query' if XEmacs.
927 (flyspell-mode-on): Use `interactive-p' if XEmacs.
928 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
929 `define-obsolete-face-alias' under XEmacs, but old method.
930
931 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
932 `with-no-warnings' definition or Emacs alias.
933 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
934 (ispell-word): Do not use `region-p' if XEmacs.
935
8cab9efc
AM
9362012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
937
938 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
939 Check for `ispell-dictionary-base-alist' instead of full
940 `ispell-dictionary-alist'.
941 (ispell-init-process): Show spellchecker when starting new Ispell
942 process.
943
fda91268
RZ
9442012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
945
946 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
947 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
948
694ea8e3
JB
9492012-05-27 Juanma Barranquero <lekktu@gmail.com>
950
951 * version.el (motif-version-string, gtk-version-string)
952 (ns-version-string): Declare.
953
e4d4f539
JL
9542012-05-27 Juri Linkov <juri@jurta.org>
955
956 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
957 after the `eval-defun-1' specialcaseing
958 like in `edebug-eval-defun' (bug#10181).
959
960 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
961 like in `eval-defun-1'.
962
33017faf 9632012-05-27 Eli Zaretskii <eliz@gnu.org>
b30b64b9 964
fda91268
RZ
965 * mail/sendmail.el (mail-yank-region):
966 Recognize rmail-yank-current-message in addition to insert-buffer.
967 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
b30b64b9
EZ
968 a *mail* buffer created through rmail-start-mail with sendmail as
969 mail-user-agent.
970
33017faf
GM
9712012-05-27 Chong Yidong <cyd@gnu.org>
972
973 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
974 Default to 256 (Bug#11267).
975
976 * help.el (describe-mode): Doc fix.
977
04188bb9
GM
9782012-05-26 Glenn Morris <rgm@gnu.org>
979
38264cc9
GM
980 * w32-fns.el (w32-init-info): Remove.
981 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
982
eb7afdad
GM
983 * info.el (info-initialize): For self-contained NS builds, put the
984 included info/ directory at the front. (Bug#2791)
985
04188bb9
GM
986 * paths.el (Info-default-directory-list): Make it a defcustom,
987 mainly so that we can use custom-initialize-delay.
988
a179e3f7
SM
9892012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
990
43416392
SM
991 * subr.el (buffer-has-markers-at): Mark obsolete.
992
a179e3f7 993 * subr.el (lambda): Use declare.
43416392 994
a179e3f7
SM
995 * emacs-lisp/lisp-mode.el (lambda):
996 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
997
34a008d9
AH
9982012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
999
1000 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
1001
0a3b289f
GM
10022012-05-26 Glenn Morris <rgm@gnu.org>
1003
1004 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
1005
758c81e8
GM
10062012-05-25 Glenn Morris <rgm@gnu.org>
1007
f9f334f0
GM
1008 * paths.el: Remove no-byte-compile.
1009 * loadup.el: No need to load paths.el uncompiled.
1010
87eb79c2
GM
1011 * image.el (imagemagick-types-inhibit): Doc fix.
1012
758c81e8
GM
1013 * version.el: Remove no-byte-compile and associated formatting.
1014 * loadup.el: No need to load version.el uncompiled. AFAICS, this
1015 is ancient code from when there was an "inc-vers.el".
1016
e7e85dc0
SM
10172012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1018
1019 * progmodes/gdb-mi.el: Minor style changes.
1020 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
1021 Turn into minor modes.
1022 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
1023 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
1024 (gdb-shell): Remove unneeded let-binding.
1025 (gdb-get-many-fields): Eliminate O(n²) behavior.
1026
f31237a4
EZ
10272012-05-25 Eli Zaretskii <eliz@gnu.org>
1028
1029 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
1030 platforms that don't link in fontset.c.
1031
bc1b21bb
JL
10322012-05-25 Juri Linkov <juri@jurta.org>
1033
1034 Use the same diff color scheme as in modern VCSes (bug#10181).
1035
1036 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
1037 to avoid confusion with `diff-added' that now uses green colors.
1038 (diff-removed): Use shades of red.
1039 (diff-added): Use shades of green.
1040 (diff-changed): Leave just the yellow color.
1041 (diff-use-changed-face): New variable.
1042 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
1043 how to highlight context diff changes.
1044 (diff-refine-change): Use shades of yellow.
1045 (diff-refine-removed): New face that uses shades of red.
1046 (diff-refine-added): New face that uses shades of green.
1047 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
1048 `diff-refine-removed' in the call to `smerge-refine-subst'
1049 depending on the value of `diff-use-changed-face'.
1050
1051 * vc/smerge-mode.el (smerge-mine): Use shades of red.
1052 (smerge-other): Use shades of green.
1053 (smerge-base): Use shades of yellow.
1054 (smerge-refined-change): Empty face.
1055 (smerge-refined-removed): New face that uses shades of red.
1056 (smerge-refined-added): New face that uses shades of green.
1057 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
1058 args `props-r' and `props-a', and use them. Doc fix.
1059 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
1060 on its value use different faces `smerge-refined-change',
1061 `smerge-refined-removed', `smerge-refined-added' in the call to
1062 `smerge-refine-subst'.
1063
1064 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
1065 Add face condition `min-colors 88' with shades of red.
1066 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
1067 `min-colors 88' with shades of green.
1068 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
1069 `min-colors 88' with shades of yellow.
1070
6df9112c
GM
10712012-05-24 Glenn Morris <rgm@gnu.org>
1072
ead5edc0
GM
1073 * paths.el (prune-directory-list, remote-shell-program): Move to...
1074 * files.el (prune-directory-list, remote-shell-program): ...here.
1075 For the latter, delay initialization, prefer ssh, just search PATH.
1076
f18b81e6
GM
1077 * paths.el (term-file-prefix): Move to faces.el (the only user).
1078 * faces.el (term-file-prefix): Move here, make it a defcustom.
1079
ee2f89a6
GM
1080 * paths.el (news-directory, news-path, news-inews-program):
1081 Move to gnus/nnspool.el.
61a583ca 1082
f8815e4c
GM
1083 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
1084
c8f3b42c
GM
1085 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
1086 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
1087 Make the latter a defcustom, with a delayed initialization.
1088
6df9112c
GM
1089 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
1090 These were deleted from Gnus itself late 2010.
1091
5dadff36
JB
10922012-05-22 Juanma Barranquero <lekktu@gmail.com>
1093
9e1701c6
JB
1094 * progmodes/which-func.el (which-func-ff-hook):
1095 Check against user-error, not error.
1096
bd7239f5 1097 * emacs-lisp/edebug.el (top): Do not load or set up loading of
5dadff36
JB
1098 cl-specs.el, which no longer exists.
1099
3290526d
GM
11002012-05-22 Glenn Morris <rgm@gnu.org>
1101
1102 * info.el (info-emacs-bug): New command.
1103 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
1104 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
1105
ff0c3cfb
GM
11062012-05-21 Glenn Morris <rgm@gnu.org>
1107
1108 * makefile.w32-in (update-subdirs-SH):
1109 * Makefile.in (update-subdirs): Update for moved update-subdirs.
1110
5814f126
SM
11112012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
1112
a52c0aa0
SM
1113 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
1114
5814f126
SM
1115 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1116 Simplify Maven regexp, and make sure the file can't start with a space
1117 (bug#11517).
1118
b847032c
GM
11192012-05-21 Glenn Morris <rgm@gnu.org>
1120
1121 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1122 Scrap superfluous subshells.
1123
3858bfe7
SM
11242012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
1125
1126 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
1127 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
1128
d14b0029
JB
11292012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
1130
1131 * calc/calc.el (calc-ensure-consistent-units): New variable.
1132
a52c0aa0
SM
1133 * calc/calc-units.el (math-consistent-units-p)
1134 (math-check-unit-consistency): New functions.
1135 (calc-quick-units, calc-convert-units):
1136 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
1137 is non-nil.
d14b0029
JB
1138 (calc-extract-units): Fix typo.
1139
60c4db3a
SM
11402012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1141
77f3b62e
SM
1142 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
1143
60c4db3a
SM
1144 * textmodes/flyspell.el: Commenting style, plus code simplifications.
1145 (flyspell-default-deplacement-commands): Don't spell check after
1146 repeated window/frame switches (e.g. triggered by mouse-movement).
1147 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
1148 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
1149 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
1150 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
1151 Remove unused vars.
1152 (flyspell-get-casechars, flyspell-get-not-casechars):
1153 Simplify; Don't bother removing a ] just to add it back.
1154 * textmodes/ispell.el (ispell-program-name): Use executable-find.
1155
b1a10716
RS
11562012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1157
1158 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
1159 New functions.
bd7239f5 1160 (math-function-table): Add support for more C functions.
b1a10716 1161
3f1b25b5
AM
11622012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1163
1164 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1165 (flyspell-debug-signal-word-checked): Protect delay handling for
1166 otherchars against empty otherchars.
1167
b581bb5c
SM
11682012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1169
1170 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
1171 their respective macro declarations.
1172 * skeleton.el (define-skeleton):
1173 * progmodes/compile.el (define-compilation-mode):
1174 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
1175 (define-ibuffer-filter):
1176 * emacs-lisp/generic.el (define-generic-mode):
1177 * emacs-lisp/easy-mmode.el (define-minor-mode)
1178 (define-globalized-minor-mode):
1179 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
1180 * emacs-lisp/byte-run.el (defsubst):
1181 * custom.el (deftheme): Add doc-string metadata.
1182
70b8ef8f
SM
11832012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1184
1185 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
1186
b1198e17
SM
11872012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1188
9abdc45d
SM
1189 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
1190
b1198e17
SM
1191 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
1192 * emacs-lisp/cl-macs.el: Idem.
1193 * emacs-lisp/cl-specs.el: Remove.
1194
4735906a
SM
11952012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1196
1197 Minor renaming of internal CL functions and variables.
1198 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
1199 (cl--position): Rename from cl-position.
1200 (cl--delete-duplicates): Rename from cl-delete-duplicates.
1201 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
1202 (cl--random-state): Rename from *random-state*.
1203
ac348012
SM
12042012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1205
1206 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
1207 parens around the arg list (bug#11499).
1208
a0a79cde
JL
12092012-05-17 Juri Linkov <juri@jurta.org>
1210
1211 * isearch.el (word-search-regexp, word-search-backward)
1212 (word-search-forward, word-search-backward-lax)
1213 (word-search-forward-lax): Move functions from search.c
1214 (bug#10145, bug#11381).
1215
65034a51
AM
12162012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1217
1218 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1219 (flyspell-debug-signal-word-checked): Delay for otherchars as for
1220 normal word components.
1221
1a72a195
SM
12222012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
1223
1224 * minibuffer.el (completion--sifn-requote): Fix last change.
1225 (minibuffer-local-must-match-filename-map):
1226 Move define-obsolete-variable-alias before its var.
1227
fdb058c2
SM
12282012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1229
c41045e6
SM
1230 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
1231
036dfb8b
SM
1232 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
1233 behavior.
1234 (completion--string-equal-p): New function.
1235 (completion--twq-all): Use it to get better assertion failure data.
1236
2473256d
SM
1237 Only handle ".." and '..' quoting in shell-mode (bug#11466).
1238 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
1239 (shell--requote-argument): New functions.
1240 (shell-completion-vars): Use them.
1241 (shell--parse-pcomplete-arguments): Rename from
1242 shell-parse-pcomplete-arguments.
1243 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
1244 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
1245 Obey comint-file-name-quote-list.
1246
fdb058c2
SM
1247 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
1248 (smie-indent-keyword): Use it.
1249
51fa99f1
SM
12502012-05-14 Stefan Merten <smerten@oekonux.de>
1251
1252 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
1253
e18afed7 12542012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
d9d1dfef
SM
1255
1256 * net/rlogin.el (rlogin-mode-map): Fix last change.
1257
e18afed7 12582012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
8633b1f4
JW
1259
1260 * mail/smtpmail.el (smtpmail-send-command): Send the command and
1261 the following \r\n using a single `process-send-string', since the
1262 Lotus SMTP server refuses to accept any commands if they are sent
e18afed7 1263 with two `process-send-string's (Bug#11444).
8633b1f4 1264
e18afed7 12652012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
fe263b8f 1266
fdb058c2
SM
1267 * shell.el (shell-parse-pcomplete-arguments):
1268 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
e18afed7 1269
2d21d7f6
WJ
12702012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
1271
e18afed7 1272 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
2d21d7f6
WJ
1273 (image-transform-scale, image-transform-right-angle-fudge): New vars.
1274 (image-transform-width, image-transform-fit-width): New functions.
1275 (image-transform-properties): Use them.
1276 (image-transform-check-size): New function.
1277 (image-toggle-display-image): Use it (for testing).
1278 (image-transform-set-rotation): Reduce angle mod 360.
1279 Delete obsolete comment.
1280
7102e6d0
WJ
12812012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
1282
1283 * image-mode.el: Fix scaling (bug#11399).
1284 (image-transform-resize): Doc fix.
1285 (image-transform-properties): Default scale is 1 and height should
1286 be an integer.
1287
06bc5e6e
SM
12882012-05-13 Johan Bockgård <bojohan@gnu.org>
1289
1290 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
1291 than hard-coding `car', to fix misbehavior when moving forward.
1292
0ae03b6a
CY
12932012-05-13 Chong Yidong <cyd@gnu.org>
1294
1295 * emacs-lisp/tabulated-list.el (tabulated-list-format)
1296 (tabulated-list-entries, tabulated-list-padding)
1297 (tabulated-list-sort-key): Make permanent-local.
1298
1299 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
1300 (electric-buffer-list): Put electric buffer menu
1301 command descriptions in this docstring, instead of the docstring
1302 of electric-buffer-menu-mode. Code cleanups.
1303 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
1304 Electric-buffer-menu-mode.
1305 (electric-buffer-update-highlight): Minor code cleanup.
1306
205a7391
MA
13072012-05-13 Michael Albinus <michael.albinus@gmx.de>
1308
1309 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
1310 (Bug#11447)
1311
e5bd0a28
SM
13122012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
1313
1314 Move define-obsolete-variable-alias before the var's definition.
1315 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
1316 * tooltip.el (tooltip-hook):
1317 * textmodes/reftex-toc.el (reftex-toc-map):
1318 * textmodes/reftex-sel.el (reftex-select-label-map)
1319 (reftex-select-bib-map):
1320 * textmodes/reftex-index.el (reftex-index-map)
1321 (reftex-index-phrases-map):
1322 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
1323 * progmodes/meta-mode.el (meta-mode-map):
1324 * novice.el (disabled-command-hook):
1325 * loadhist.el (unload-hook-features-list):
1326 * frame.el (blink-cursor):
1327 * files.el (find-file-not-found-hooks, write-file-hooks)
1328 (write-contents-hooks):
1329 * emulation/tpu-edt.el (GOLD-map):
1330 * emacs-lock.el (emacs-lock-from-exiting):
1331 * emacs-lisp/generic.el (generic-font-lock-defaults):
1332 * emacs-lisp/chart.el (chart-map):
1333 * dos-fns.el (register-name-alist):
1334 * dired-x.el (dired-omit-files-p):
1335 * desktop.el (desktop-enable):
1336 * cus-edit.el (custom-mode-hook):
1337 * buff-menu.el (buffer-menu-mode-hook):
1338 * bookmark.el (bookmark-read-annotation-text-func)
1339 (bookmark-exit-hooks):
1340 * allout.el (allout-mode-deactivate-hook)
1341 (allout-exposure-change-hook, allout-structure-added-hook)
1342 (allout-structure-deleted-hook, allout-structure-shifted-hook):
1343 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
1344 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
1345 comes before the corresponding variable's definition.
1346
ac59c2f6
CY
13472012-05-12 Chong Yidong <cyd@gnu.org>
1348
1349 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
0d909786
CY
1350 (Buffer-menu-mouse-select): Restore function (Bug#11459).
1351 (Buffer-menu-mode-map): Bind it.
1352 (Buffer-menu--pretty-name): Add a mouse-face property.
ac59c2f6 1353
dee6c9a3
SM
13542012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
1355
2171cea5
SM
1356 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
1357 (prolog-upper-case-string, prolog-lower-case-string)
1358 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
1359 (prolog-use-smie, prolog-smie-grammar): New vars.
1360 (prolog-smie-forward-token, prolog-smie-backward-token)
1361 (prolog-smie-rules): New funs.
1362 (prolog-comment-indent): Remove.
1363 (prolog-mode-variables): Use default comment indentation instead.
1364 Setup SMIE.
1365 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
1366 (prolog-mode): Don't call them any more.
1367 (prolog-electric-colon, prolog-electric-dash)
1368 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
1369
aa0382bd
SM
1370 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
1371
dbacb4bd
SM
1372 * minibuffer.el (completion--twq-all): Again, allow case differences.
1373
13bdd94c
SM
1374 * term.el: Move keymap initialization code to be more idiomatic.
1375 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
1376 (term-terminal-menu): Move initialization into declaration.
1377 (term-escape-char): Let the user set it in her .emacs.
1378
ff46c759
SM
1379 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
1380 Provide SMIE-based indentation (not enabled by default yet).
1381 (sh-mode-map): Don't bind electric keys.
1382 Use electric-pair-mode instead of skeleton-pair.
1383 (sh-assignment-regexp): Fit within 80 columns.
1384 (sh-indent-supported): Specify actual shell name instead of boolean.
1385 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
1386 (sh-maybe-here-document): Use it. Make obsolete.
1387 (sh-electric-here-document-mode) New minor mode.
1388 (sh-mode): Use it. Don't set sh-indent-supported-here here.
1389 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
1390 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
1391 (sh-smie-rc-grammar, sh-use-smie): New vars.
1392 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
1393 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
1394 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
1395 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
1396 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
1397 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
1398 (sh-set-shell): Use smie-setup if requested.
1399
dee6c9a3
SM
1400 * term.el (term-set-escape-char): Properly set term-escape-char.
1401 See http://stackoverflow.com/questions/10524656.
1402
9f9aa044
CY
14032012-05-10 Chong Yidong <cyd@gnu.org>
1404
1405 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
1406 Use url-generic-parse-url, and handle host names and Windows
1407 filenames properly.
1408 (ffap-url-unwrap-remote): Use url-generic-parse-url.
1409 (ffap-url-unwrap-remote): Accept list values, specifying a list of
1410 URL schemes to work on.
1411 (ffap--toggle-read-only): New function.
1412 (ffap-read-only, ffap-read-only-other-window)
1413 (ffap-read-only-other-frame): Use it.
1414 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
1415 necessary for ffap-url-unwrap-remote.
1416
836d29b3
DA
14172012-05-10 Dave Abrahams <dave@boostpro.com>
1418
1419 * cus-start.el (create-lockfiles): Add it.
1420
00fd78ed
CY
14212012-05-09 Chong Yidong <cyd@gnu.org>
1422
1423 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
1424 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
1425
666b903b 14262012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1cb51c12
SM
1427
1428 * shell.el (shell-completion-vars): Fix last change (bug#11348).
1429
666b903b 14302012-05-09 Chong Yidong <cyd@gnu.org>
18f00515
CY
1431
1432 * ansi-color.el (ansi-color-process-output): Check for validity of
1433 comint-last-output-start before using it. This avoids a bad
1434 interaction with gdb-mi's input/output buffer.
1435
666b903b 14362012-05-09 Glenn Morris <rgm@gnu.org>
fd075e7b
GM
1437
1438 * files.el (dir-locals-read-from-file):
1439 Mention dir-locals in any error message.
1440
666b903b 14412012-05-09 Chong Yidong <cyd@gnu.org>
25f292cd
CY
1442
1443 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
1444 package (Bug#11410).
1445
f677562b
CY
1446 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
1447 variables into description.
1448
666b903b 14492012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3d53ee1b
SM
1450
1451 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
1452 shell-delimiter-argument-list (bug#11348).
1453 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
1454
b499d8d0
JB
14552012-05-09 Juanma Barranquero <lekktu@gmail.com>
1456
8f6b6da8
JB
1457 * textmodes/rst.el: Silence byte-compiler warnings.
1458 (rst-re-alist, rst-reset-section-caches): Move around.
1459 (rst-re): Use `characterp', not `char-valid-p'.
1460 (font-lock-beg, font-lock-end): Declare.
1461
4824146a
JB
1462 * progmodes/idlw-shell.el (specs): Remove reference to deleted
1463 variable `idlwave-shell-activate-alt-keybindings' and simplify.
1464
b499d8d0
JB
1465 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
1466
ad89bb83
GM
14672012-05-08 Glenn Morris <rgm@gnu.org>
1468
1469 * files.el (auto-mode-alist): Treat ".make" like ".mk".
1470
8bba5a75
SM
14712012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1472
49ed9c8e
SM
1473 * vc/log-edit.el: Add GNU coding standards highlighting.
1474 (log-edit-font-lock-gnu-style)
1475 (log-edit-font-lock-gnu-keywords): New vars.
1476 (log-edit-font-lock-keywords): New fun.
1477 (log-edit-mode): Don't fold case in font-lock.
1478 (log-edit-font-lock-keywords): Do not assume case-folding.
1479
07d00b56
SM
1480 * imenu.el: Misc cleanup. Make docstrings out of comments.
1481 Use lexical-binding.
1482 (imenu--index-alist, imenu--last-menubar-index-alist)
1483 (imenu-menubar-modified-tick): Use defvar-local.
1484 (imenu--split-menu): Remove unused var.
1485 (imenu--cleanup-seen): Declare as global.
1486 (imenu--cleanup): Use dolist.
1487
8bba5a75
SM
1488 * subr.el (defvar-local): Add debug spec and doc-string position.
1489
5075bdb5
GM
14902012-05-08 Glenn Morris <rgm@gnu.org>
1491
c052c904
GM
1492 * lisp/language/burmese.el, language/cham.el, language/czech.el:
1493 * language/english.el, language/georgian.el, language/greek.el:
1494 * language/japanese.el, language/khmer.el, language/korean.el:
1495 * language/lao.el, language/misc-lang.el, language/romanian.el:
1496 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
1497 * language/thai.el, language/utf-8-lang.el:
1498 Remove no-byte-compile setting.
1499
5075bdb5
GM
1500 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
1501
06f679a7
AH
15022012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1503
1504 * progmodes/make-mode.el (makefile-browse):
1505 Remove unnecessary interactive. (Bug#11324)
1506
03794570
GM
15072012-05-07 Glenn Morris <rgm@gnu.org>
1508
af8630f4
GM
1509 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
1510
03794570
GM
1511 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
1512
f0809a9d
SM
15132012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
1514
28be5ce7
SM
1515 * loadup.el: Preload newcomment.el.
1516 * newcomment.el: Move autoload-only code to toplevel.
1517
f0809a9d
SM
1518 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
1519 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
1520 Handle new :right-align column property.
1521 (tabulated-list-print-col): Idem, plus use `display' text-property to
1522 try and preserve alignment for variable pitch fonts.
1523
1241b724
CY
15242012-05-07 Chong Yidong <cyd@gnu.org>
1525
1526 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
1527 (tabulated-list-use-header-line): New var.
1528 (tabulated-list-init-header): Use it.
1529 (tabulated-list-print-fake-header): New function.
1530 (tabulated-list-print): Use it.
1531 (tabulated-list-sort-button-map): Add non-header-line commands.
1532 (tabulated-list-init-header): Add column name property to basic
1533 labels as well.
1534 (tabulated-list-col-sort): Handle non-header-line button case.
1535 (tabulated-list--sort-by-column-name): Fix a corner case.
1536
f0809a9d
SM
1537 * buff-menu.el (list-buffers--refresh):
1538 Handle Buffer-menu-use-header-line.
1241b724 1539
e5f9458f
CY
15402012-05-06 Chong Yidong <cyd@gnu.org>
1541
1542 * buff-menu.el: Convert to Tabulated List mode.
1543 (Buffer-menu-buffer+size-width): Make obsolete.
1544 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
1545 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
1546 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
1547 documentation into docstring of buffer-menu.
1548 (Buffer-menu-toggle-files-only): Add an informative message.
1549 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
1550 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
1551 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
1552 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
1553 (Buffer-menu-execute, Buffer-menu-select)
1554 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
1555 (Buffer-menu-bury): Use Tabulated List machinery.
1556 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
1557 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
f0809a9d 1558 Delete.
e5f9458f
CY
1559 (list-buffers--refresh): New function.
1560 (list-buffers-noselect): Use it.
1561 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
1562 (Buffer-menu--pretty-file-name): New helper functions.
1563
1564 * loadup.el: Preload tabulated-list.
1565
1566 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
1567 tabulated-list-sort-column.
1568 (tabulated-list-init-header): Add the initial aligning space even
1569 if tabulated-list-padding is zero.
1570
e129292c
CS
15712012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
1572
1573 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
1574 whose cdr is not a cons cell correctly (bug#11038).
1575
6632d361
CY
15762012-05-06 Chong Yidong <cyd@gnu.org>
1577
e129292c
CS
1578 * emacs-lisp/tabulated-list.el (tabulated-list-format):
1579 Accept additional plist in column descriptors.
6632d361
CY
1580 (tabulated-list-init-header): Obey it.
1581 (tabulated-list-get-entry): New function.
1582 (tabulated-list-put-tag): Use it. Use string-width instead of
1583 length.
1584 (tabulated-list--column-number): New function.
1585 (tabulated-list-print): Use it.
e129292c
CS
1586 (tabulated-list-print-col): New function.
1587 Set `tabulated-list-column-name' property on each column's text.
6632d361 1588 (tabulated-list-print-entry): Use it.
e129292c
CS
1589 (tabulated-list-delete-entry, tabulated-list-set-col):
1590 New functions.
6632d361
CY
1591 (tabulated-list-sort-column): New command (Bug#11337).
1592
3cc99f68
CY
1593 * buff-menu.el (list-buffers): Move C-x C-b binding from
1594 buff-menu.el to bindings.el.
1595
1596 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
1597 :advertised-binding feature.
1598
52b61776
TN
15992012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
1600
1601 * progmodes/compile.el (compilation-internal-error-properties):
1602 Calculate start position correctly when end-col is set but
1603 end-line is not (Bug#11382).
1604
ebfe2597
WJ
16052012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
1606
1607 * man.el (Man-unindent): Use text-property-default-nonsticky to
1608 prevent untabify from inheriting face properties (Bug#11408).
1609
6d3f7c2f
SM
16102012-05-05 Stefan Merten <smerten@oekonux.de>
1611
1612 * textmodes/rst.el: Major merge with upstream development up to
1613 Docutils SVN r7399 / rst.el V1.2.1.
1614
1615 Clarify maintainership and authors.
1616
1617 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
1618 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
1619 (rst-official-version, rst-official-cvs-rev, rst-version)
1620 (rst-package-emacs-version-alist): New functions and variables
1621 for version information.
1622
1623 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
1624 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
1625 (rst-mode-syntax-table, rst-mode): New and corrected functions
1626 and variables representing reStructuredText features.
1627
1628 (rst-re): New function for reStructuredText regexes. Use in
1629 many places.
1630
1631 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
1632 (rst-mode-map): Rebind keys.
1633
1634 (rst-mode-lazy, rst-font-lock-keywords)
1635 (rst-font-lock-extend-region)
1636 (rst-font-lock-extend-region-internal)
1637 (rst-font-lock-extend-region-extend)
1638 (rst-font-lock-find-unindented-line-limit)
1639 (rst-font-lock-find-unindented-line-match)
1640 (rst-adornment-level, rst-font-lock-adornment-level)
1641 (rst-font-lock-adornment-match)
1642 (rst-font-lock-handle-adornment-pre-match-form)
1643 (rst-font-lock-handle-adornment-matcher): Major revision of
1644 font-locking. Integrate with other code. Use `jit-lock-mode'.
1645
1646 (rst-preferred-adornments, rst-adjust-hook)
1647 (rst-new-adornment-down, rst-preferred-bullets)
1648 (rst-preferred-bullets, rst-indent, rst-indent-width)
1649 (rst-indent-field, rst-indent-literal-normal)
1650 (rst-indent-literal-minimized, rst-indent-comment): Change,
1651 extend and improve customization.
1652
1653 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
1654 (rst-normalize-cursor-position, rst-get-decoration)
1655 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
1656 (rst-rstrip, rst-toc-insert-find-delete-contents)
1657 (rst-shift-fill-region, rst-compute-bullet-tabs)
1658 (rst-debug-print-tabs, rst-debug-mark-found)
1659 (rst-shift-region-guts, rst-shift-region-right)
1660 (rst-shift-region-left, rst-use-char-classes)
1661 (rst-font-lock-keywords-function)
1662 (rst-font-lock-indentation-point)
1663 (rst-font-lock-find-unindented-line-begin)
1664 (rst-font-lock-find-unindented-line-end)
1665 (rst-font-lock-find-unindented-line)
1666 (rst-font-lock-adornment-point, rst-font-lock-level)
1667 (rst-adornment-level-alist): Remove functions and variables.
1668
1669 (rst-compare-adornments, rst-get-adornment-match)
1670 (rst-suggest-new-adornment, rst-get-adornments-around)
1671 (rst-adornment-complete-p, rst-get-next-adornment)
1672 (rst-adjust-adornment, rst-display-adornments-hierarchy)
1673 (rst-straighten-adornments): Standardize function names to
1674 use "adornment" instead of "decoration". Correct callers.
1675 Similar standardizing in many places.
1676
1677 (rst-update-section, rst-adjust, rst-promote-region)
1678 (rst-enumerate-region, rst-bullet-list-region)
1679 (rst-repeat-last-character): Correct use of `interactive'.
1680
1681 (rst-classify-adornment, rst-find-all-adornments)
1682 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
1683 (rst-find-leftmost-column, rst-repeat-last-character):
1684 Refactor functions.
1685
1686 (rst-find-title-line, rst-reset-section-caches)
1687 (rst-get-adornments-around, rst-adjust-adornment-work)
1688 (rst-arabic-to-roman, rst-roman-to-arabic)
1689 (rst-insert-list-pos, rst-insert-list-new-item)
1690 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
1691 New functions.
1692
1693 (rst-all-sections, rst-section-hierarchy)
1694 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
1695 New variables.
1696
1697 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
1698 configuration instead of only buffer. Change where necessary.
1699
1700 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
1701 (rst-shift-region, rst-adaptive-fill): New functions for
1702 indentation and filling.
1703
1704 (rst-comment-line-break, rst-comment-indent)
1705 (rst-comment-insert-comment, rst-comment-region)
1706 (rst-uncomment-region): New functions for handling comments.
1707
1708 (rst-compile): Quote shell arguments.
1709
1710 (rst-compile-pdf-preview, rst-compile-slides-preview):
1711 Delete temporary files after use.
1712
a43f98b3
GM
17132012-05-05 Glenn Morris <rgm@gnu.org>
1714
48176e8b
GM
1715 * calendar/cal-html.el: Optionally include holidays in the output.
1716 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
1717 (cal-html-holidays): New option.
1718 (cal-html-css-default): Add holiday entry.
1719 (holiday-in-range): Autoload it.
1720 (cal-html-htmlify-entry): Add optional class argument.
1721 (cal-html-htmlify-list): Add optional holidays argument.
1722 (cal-html-insert-agenda-days): Include holidays in the output.
1723 (cal-html-one-month): Maybe include holidays.
1724
a43f98b3
GM
1725 * calendar/holidays.el (holiday-in-range):
1726 Move here from cal-tex-list-holidays.
1727 * calendar/cal-tex.el (cal-tex-list-holidays):
1728 Make it an obsolete alias for holiday-in-range. Update all callers.
1729
fef9d149 17302012-05-05 Chong Yidong <cyd@gnu.org>
eceeb5fc
CY
1731
1732 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
1733 Nextstep.
1734
248da2f4
RW
17352012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
1736
1737 * files.el (file-auto-mode-skip): New var.
1738 (set-auto-mode-1): Use it.
1739
f95e9344
SM
17402012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
1741
df96ab1e
SM
1742 * repeat.el: Use lexical-binding.
1743 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
1744 (repeat-undo-count): Remove.
1745 (repeat):
1746 * progmodes/octave-mod.el (octave-abbrev-start):
1747 * progmodes/f90.el (f90-abbrev-start):
1748 * face-remap.el (text-scale-adjust):
1749 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
1750
5342bb06
SM
1751 * emacs-lisp/pcase.el (pcase--let*): New function.
1752 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
1753 a bit more.
1754 (pcase--split-pred): Be more clever about ruling out overlap between
1755 a predicate and some constant pattern.
1756 (pcase--q1): Use `null' instead of (eq foo nil).
1757
f95e9344
SM
1758 * subr.el (setq-local, defvar-local): New macros.
1759 (kbd): Redefine as an alias.
1760 (with-selected-window): Leave unrelated frames alone.
1761 (set-temporary-overlay-map): New function.
1762
71873e2b
SM
17632012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1764
1765 * subr.el (user-error): New function.
1766 * window.el (switch-to-buffer):
1767 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
1768 (smerge-match-conflict):
1769 * simple.el (previous-matching-history-element)
1770 (next-matching-history-element, goto-history-element, undo-more)
1771 (undo-start):
1772 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
1773 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
1774 (next-file, tags-loop-scan, list-tags, complete-tag):
1775 * progmodes/compile.el (compilation-loop):
1776 * mouse.el (mouse-minibuffer-check):
1777 * man.el (Man-bgproc-sentinel, Man-goto-page):
1778 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
1779 (Info-history-forward, Info-follow-reference, Info-menu)
1780 (Info-extract-menu-item, Info-extract-menu-counting)
1781 (Info-forward-node, Info-backward-node, Info-next-menu-item)
1782 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
1783 (Info-next-reference, Info-prev-reference, Info-index)
1784 (Info-index-next, Info-follow-nearest-node)
1785 (Info-copy-current-node-name):
1786 * imenu.el (imenu--make-index-alist)
1787 (imenu-default-create-index-function, imenu-add-to-menubar):
1788 * files.el (basic-save-buffer, recover-file):
1789 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
1790 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
1791 (checkdoc-message-text, checkdoc-defun):
1792 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
1793 * cus-edit.el (customize-changed-options, customize-rogue)
1794 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
1795 (custom-variable-mark-to-reset-standard)
1796 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
1797 (custom-file):
1798 * completion.el (check-completion-length):
1799 * comint.el (comint-search-arg)
1800 (comint-previous-matching-input-string-position)
1801 (comint-previous-matching-input)
1802 (comint-replace-by-expanded-history-before-point, comint-send-input)
1803 (comint-copy-old-input, comint-backward-matching-input)
1804 (comint-goto-process-mark, comint-set-process-mark):
1805 * calendar/calendar.el (calendar-cursor-to-date): Use it.
1806 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
1807
8a61ee22
SM
18082012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1809
66408d1e
SM
1810 * dabbrev.el (dabbrev--ignore-case-p): New function.
1811 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
1812 Use it.
1813
8a61ee22
SM
1814 * files.el (automount-dir-prefix): Mark as obsolete.
1815
3c74813a
GM
18162012-05-04 Glenn Morris <rgm@gnu.org>
1817
1818 * patcomp.el, play/bruce.el: Move to obsolete/.
1819
0bfcf5c5
PE
18202012-05-04 Paul Eggert <eggert@cs.ucla.edu>
1821
1822 Fix minor Y10k bugs.
1823 * arc-mode.el (archive-unixdate):
1824 * autoinsert.el (auto-insert-alist):
1825 * calc/calc-forms.el (math-this-year):
1826 * emacs-lisp/copyright.el (copyright-current-year)
1827 (copyright-update-year, copyright):
1828 * tar-mode.el (tar-clip-time-string):
1829 * time.el (display-time-update):
1830 Don't assume years have 4 digits.
1831
78f3273a
CY
18322012-05-04 Chong Yidong <cyd@gnu.org>
1833
1834 * dos-w32.el (file-name-buffer-file-type-alist)
1835 (direct-print-region-use-command-dot-com):
1836 * ffap.el (ffap-menu-regexp):
1837 * find-file.el (ff-special-constructs):
1838 * follow.el (follow-debug):
1839 * forms.el (forms--debug):
1840 * iswitchb.el (iswitchb-all-frames):
1841 * ido.el (ido-all-frames):
1842 * emacs-lisp/timer.el (timer-max-repeats):
1843 * mail/feedmail.el (feedmail-mail-send-hook)
1844 (feedmail-mail-send-hook-queued):
1845 * mail/footnote.el (footnote-signature-separator):
1846 * mail/mailabbrev.el (mail-alias-separator-string)
1847 (mail-abbrev-mode-regexp):
1848 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
1849 * progmodes/idlwave.el (idlwave-libinfo-file)
1850 (idlwave-default-completion-case-is-down)
1851 (idlwave-library-routines): Convert defvars to defcustoms.
1852
1853 * mail/rmail.el (rmail-decode-mime-charset):
1854 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
1855 (idlwave-shell-fix-inserted-breaks)
1856 (idlwave-shell-activate-alt-keybindings)
1857 (idlwave-shell-use-breakpoint-glyph):
1858 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
1859
f7ae6719
SM
18602012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
1861
1862 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
1863
47086495
WS
18642012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
1865
1866 * progmodes/verilog-mode.el (font-lock-keywords):
1867 Fix mis-highligting auto. Reported by Craig Barner.
1868 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
1869 defines from global name space. Reported by Dan Dever.
1870 (verilog-auto-reset, verilog-auto-reset-widths)
1871 (verilog-auto-tieoff): Support using unbased numbers for
1872 AUTORESET and AUTOTIEOFF.
1873 (verilog-submit-bug-report): Update variable list.
1874 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
1875 parenthesis from not matching. Reported by Michael Rytting.
1876 (verilog-auto-template-lint): Fix hash error when linting modules
1877 with no used templates.
1878 (verilog-warn, verilog-warn-error)
1879 (verilog-warn-fatal): When non-interactive report multiple
1880 warnings before exiting. Suggested by Brad Dobbie.
1881 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
1882 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
1883 to report unused template errors. Reported by Brad Dobbie.
1884 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
1885 nets, bug438. Reported by Vns Blore.
1886 (verilog-auto-inout-module, verilog-auto-reg)
1887 (verilog-read-decls, verilog-read-sub-decls-sig)
1888 (verilog-signals-edit-wire-reg, verilog-signals-with):
1889 Fix passing of Verilog data types in ANSI input/output ports
1890 such as "output logic" into the AUTOs. Special case "wire" and
1891 "reg" for backwards compatibility presuming Verilog 2001.
1892 (verilog-auto-ascii-enum): Add "auto enum" as alias.
1893 (verilog-preprocess): Fix replication of preprocess output.
1894 Reported by Brad Dobbie.
1895 (verilog-auto-inst-interfaced-ports):
1896 Create verilog-auto-inst-interfaced-ports, bug429.
1897 Reported by Julian Gorfajn.
1898 (verilog-after-save-font-hook)
1899 (verilog-before-save-font-hook): New variable.
1900 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
1901 (verilog-save-font-mods): Wrap disabling fontification, reported
1902 by David Rogoff.
1903 (verilog-do-indent, verilog-pretty-declarations-auto)
1904 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
1905 Reported by Pierre-David Pfister.
1906 (verilog-set-auto-endcomments): Fix endtask auto comments outside
1907 of class declarations, bug292. Reported by Kevin Heilman.
1908 (verilog-read-decls): Fix 'parameter type' not appearing in
1909 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
1910 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
1911 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
1912 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
1913 Reported by David Kravitz.
1914
19152012-05-03 Michael McNamara <mac@mail.brushroad.com>
1916
1917 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
1918 assignment with tests in ifs and for loops.
1919 (verilog-extended-complete-re, verilog-complete-reg): Change so
1920 that DPI inport functions don't look like fuction declarations.
1921 (verilog-pretty-expr): Don't line up assignment
1922 operations to the test and increment in if and for loops
1923 (verilog-extended-complete-re, verilog-complete-reg): Change so
1924 that DPI inport functions don't look like fuction declarations
1925
2e51d4b5
KH
19262012-05-03 Kenichi Handa <handa@m17n.org>
1927
1928 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
c846da43 1929 decoding, and show a warning message without signaling an error
2e51d4b5
KH
1930 (Bug#11282).
1931
2bd785a2
SM
19322012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
1933
1934 * emacs-lisp/bytecomp.el
1935 (byte-compile-file-form-custom-declare-variable): Compile all elements,
1936 since cconv.el might have introduced :fun-body, internal-make-closure,
1937 and friends for bytecomp to handle (bug#11391).
1938 * custom.el (defcustom): Avoid ((λ ..) ..).
1939
99d27583
SM
19402012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
1941
1942 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
1943
55a71479
JB
19442012-05-02 Juanma Barranquero <lekktu@gmail.com>
1945
1946 * notifications.el (dbus-debug):
1947 * term/linux.el (gpm-mouse-enable):
1948 * term/screen.el (xterm-register-default-colors): Declare.
1949
7b97c764
CY
19502012-05-02 Chong Yidong <cyd@gnu.org>
1951
2bc356d7
CY
1952 * cus-start.el (gc-cons-percentage, exec-suffixes)
1953 (dos-display-scancodes, dos-hyper-key, dos-super-key)
1954 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
1955 (make-cursor-line-fully-visible, void-text-area-pointer)
1956 (font-list-limit): Add customization data.
1957
7b97c764
CY
1958 * allout.el (allout-exposure-change-functions)
1959 (allout-structure-added-functions)
1960 (allout-structure-deleted-functions)
1961 (allout-structure-shifted-functions): Rename abnormal hooks from
1962 *-hook, and convert to defcustoms.
5d3385a0
JB
1963 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
1964 Convert to defcustoms.
7b97c764
CY
1965 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
1966
1967 * allout-widgets.el: Hook callers changed.
1968
90207a15 19692012-05-02 Eli Zaretskii <eliz@gnu.org>
91af76bf
EZ
1970
1971 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
1972 the yanked message in preference to the default value of
1973 buffer-file-coding-system.
1974
90207a15 19752012-05-02 Martin Rudalics <rudalics@gmx.at>
d9558cad 1976
5d3385a0
JB
1977 * window.el (display-buffer--action-function-custom-type):
1978 Fix entry.
d9558cad 1979
90207a15 19802012-05-02 Alan Mackenzie <acm@muc.de>
09affde0
AM
1981
1982 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
1983
d80ac57b
GM
19842012-05-01 Glenn Morris <rgm@gnu.org>
1985
976f7668
GM
1986 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
1987
beb83b5a
GM
1988 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
1989
d80ac57b
GM
1990 * cus-edit.el (custom-variable-documentation): Simplify with format.
1991
b593d6a9
AH
19922012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1993 Stefan Monnier <monnier@iro.umontreal.ca>
1994
1995 * simple.el (suggest-key-bindings, execute-extended-command):
1996 Move from keyboard.c.
1997
782fbf2a
CY
19982012-05-01 Chong Yidong <cyd@gnu.org>
1999
2000 * follow.el: Eliminate advice.
2001 (set-process-filter, process-filter, sit-for): Advice deleted.
2002 (follow-mode-off-hook): Obsolete hook removed.
b593d6a9
AH
2003 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
2004 Vars deleted.
782fbf2a
CY
2005 (follow-auto): Use a :set function.
2006 (follow-mode): Rewritten. Don't advise process filters.
2007 (follow-switch-to-current-buffer-all, follow-scroll-up)
2008 (follow-scroll-down): Assume follow-mode is bound.
2009 (follow-comint-scroll-to-bottom)
2010 (follow-align-compilation-windows): New functions.
2011 (follow--window-sorter): New function.
2012 (follow-all-followers): Use it to explicitly sort windows by their
2013 positions; don't make assumptions about next-window order.
2014 (follow-windows-start-end, follow-delete-other-windows-and-split)
2015 (follow-calc-win-start): Doc fix.
2016 (follow-windows-aligned-p, follow-select-if-visible): Don't call
2017 vertical-motion unnecessarily.
2018 (follow-adjust-window): New function.
2019 (follow-post-command-hook): Use it.
2020 (follow-call-set-process-filter, follow-call-process-filter)
2021 (follow-intercept-process-output, follow-tidy-process-filter-alist)
2022 (follow-stop-intercept-process-output, follow-generic-filter):
2023 Functions deleted.
2024 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
b593d6a9
AH
2025 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
2026 New functions, replacing advice on scroll-bar-* commands.
87233a14 2027 (follow-mwheel-scroll): New function (Bug#4112).
782fbf2a
CY
2028
2029 * comint.el (comint-adjust-point): New function.
b593d6a9
AH
2030 (comint-postoutput-scroll-to-bottom): Use it.
2031 Call follow-comint-scroll-to-bottom for Follow mode buffers.
782fbf2a 2032
290af740
GM
20332012-05-01 Glenn Morris <rgm@gnu.org>
2034
2035 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
2036 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
2037 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
2038 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
2039 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
2040 Remove no-byte-compile setting.
2041
6eac8dc9
SM
20422012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2043
2044 * minibuffer.el (completion-table-with-quoting): Fix compatibility
2045 all-completions code to not return a number in the last cdr.
2046
9cc7819c
LL
20472012-04-30 Leo Liu <sdl.web@gmail.com>
2048
2049 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
2050 read-only error.
2051
c93b886f
CY
20522012-04-29 Chong Yidong <cyd@gnu.org>
2053
2054 * follow.el (follow-calc-win-end): Rewrite to handle partial
2055 screen lines correctly (Bug#8390).
2056 (follow-avoid-tail-recenter): Minor cleanup.
2057
8b6c19f4
SM
20582012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
2059
2060 Avoid the obsolete `assoc' package.
2061 * speedbar.el (speedbar-refresh): Avoid adelete.
2062 (speedbar-file-lists): Simplify and avoid aput.
2063 * man.el (Man--sections, Man--refpages): New vars, replacing
2064 Man-sections-alist and Man-refpages-alist.
2065 (Man-build-section-alist, Man-build-references-alist):
2066 Use them; avoid aput.
2067 (Man--last-section, Man--last-refpage): New vars.
2068 (Man-follow-manual-reference): Use them.
2069 Use the `default' arg of completing-read.
2070 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
2071
c5bb7569
CY
20722012-04-27 Chong Yidong <cyd@gnu.org>
2073
d1d2e2e8
CY
2074 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
2075
15cd8efd
CY
2076 * startup.el (x-apply-session-resources): New function.
2077
2078 * term/ns-win.el (ns-initialize-window-system):
2079 * term/w32-win.el (w32-initialize-window-system):
2080 * term/x-win.el (x-initialize-window-system): Use it to properly
2081 set menu-bar-mode and other vars from X resources, even if the
2082 initial frame is not a window-system frame (Bug#2299).
2083
c5bb7569
CY
2084 * subr.el (read-key): Avoid running filter function when setting
2085 up temporary tool bar entries (Bug#9922).
2086
a8e7d6d7 20872012-04-27 Andreas Schwab <schwab@linux-m68k.org>
c4347ab9
AS
2088
2089 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
2090 (Bug#11344)
2091
a8e7d6d7 20922012-04-27 Chong Yidong <cyd@gnu.org>
acb71f1d
CY
2093
2094 * select.el (xselect--encode-string): New function, split from
2095 xselect-convert-to-string.
2096 (xselect-convert-to-string): Use it.
2097 (xselect-convert-to-filename, xselect-convert-to-os)
2098 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
2099 returned strings are properly encoded (Bug#11315).
2100
a8e7d6d7 21012012-04-27 Chong Yidong <cyd@gnu.org>
d55486c7
CY
2102
2103 * simple.el (delete-active-region): Move to killing custom group.
2104
a8e7d6d7 21052012-04-27 Andreas Schwab <schwab@linux-m68k.org>
581b6788
AS
2106
2107 * progmodes/which-func.el (which-func-current): Quote %
2108 characters for mode-line processing.
2109
578c1d4b 21102012-04-27 Chong Yidong <cyd@gnu.org>
18edb22d
CY
2111
2112 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
2113 reaching eob (Bug#11286).
2114
a8e7d6d7 21152012-04-27 Eli Zaretskii <eliz@gnu.org>
9ee9f470
EZ
2116
2117 * progmodes/gdb-mi.el (gdb-control-level): New variable.
2118 (gdb): Make it buffer-local and init to zero.
2119 (gdb-control-commands-regexp): New variable.
2120 (gdb-send): Don't wrap in "-interpreter-exec console" if
2121 gdb-control-level is positive. Increment gdb-control-level
2122 whenever the command matches gdb-control-commands-regexp, and
2123 decrement it each time the command is "end". (Bug#11279)
2124
a8e7d6d7 21252012-04-27 Martin Rudalics <rudalics@gmx.at>
41cfe0cb
MR
2126
2127 * window.el (adjust-window-trailing-edge, enlarge-window)
2128 (shrink-window, window-resize):
2129 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
2130 windows (Bug#11276).
2131
b3608390
CY
21322012-04-27 Chong Yidong <cyd@gnu.org>
2133
2134 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
a8e7d6d7 2135 fix "missing prefix" warning. All callers changed.
b3608390 2136
797e6e88
SM
21372012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
2138
2139 * emacs-lisp/assoc.el: Move to obsolete/.
2140
e95a67dc
SM
21412012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2142
657c21e4 2143 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
e95a67dc
SM
2144
2145 * term/ns-win.el (ns-define-service):
2146 * progmodes/pascal.el (pascal-goto-defun):
2147 * progmodes/js.el (js--read-tab):
2148 * progmodes/etags.el (tags-lazy-completion-table):
2149 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
2150 * emacs-lisp/ewoc.el (ewoc--wrap):
2151 * emacs-lisp/assoc.el (aput, adelete, amake):
2152 * doc-view.el (doc-view-convert-current-doc):
2153 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
2154
cb3e7ae0
CY
21552012-04-26 Chong Yidong <cyd@gnu.org>
2156
dce04f7f
CY
2157 * image.el (image-type-from-buffer): Only return supported image
2158 type (Bug#9045).
2159
cb3e7ae0
CY
2160 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
2161 value, for symmetry with diff-end-of-hunk.
2162 (diff-split-hunk, diff-find-source-location)
2163 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
2164 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
2165 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
2166 compute the relevant hunk or file properly (Bug#6005).
2167 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
2168
0d42eb3e
SM
21692012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2170
2171 * vc/vc-mtn.el:
2172 * vc/vc-hg.el:
2173 * vc/vc-git.el:
2174 * vc/vc-dir.el:
2175 * vc/vc-cvs.el:
2176 * vc/vc-bzr.el:
2177 * vc/vc-arch.el:
2178 * vc/vc.el: Replace lexical-let by lexical-binding.
2179 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
2180 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
2181 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
2182
f08ae1c9
CY
21832012-04-26 Chong Yidong <cyd@gnu.org>
2184
8b71081d
CY
2185 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
2186 (diff-mode-shared-map): Bind it to / and [remap undo].
2187
f08ae1c9
CY
2188 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
2189 (ediff-window-setup-function): Use it as the default, to set up
2190 windows based on whether the current frame is graphical (Bug#2138).
2191 (ediff-choose-window-setup-function-automatically): Make obsolete.
2192
2193 * vc/ediff-init.el: Always define ediff-pixel-width/height.
2194
ef24141c
SM
21952012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
2196
cc356a5d
SM
2197 * ffap.el: Remove old code for obsolete package.
2198 (ffap-complete-as-file-p): Remove.
2199
b4ff4f1f
SM
2200 Use completion-table-with-quoting for comint and pcomplete.
2201 * comint.el (comint--unquote&requote-argument)
2202 (comint--unquote-argument, comint--requote-argument): New functions.
2203 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
2204 (comint-quote-filename): Use regexp-opt-charset.
2205 (comint--common-suffix, comint--common-quoted-suffix)
2206 (comint--table-subvert): Remove.
2207 (comint-unquote-function, comint-requote-function): New vars.
2208 (comint--complete-file-name-data): Use them with
2209 completion-table-with-quoting.
2210 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
2211 * pcomplete.el (pcomplete-arg-quote-list)
2212 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
2213 (pcomplete-unquote-argument-function): Default to non-nil.
2214 (pcomplete-unquote-argument): Simplify.
2215 (pcomplete--common-quoted-suffix): Remove.
2216 (pcomplete-requote-argument-function): New var.
2217 (pcomplete--common-suffix): New function.
2218 (pcomplete-completions-at-point): Use completion-table-with-quoting
2219 and completion-table-subvert.
2220
79c4eeb4
SM
2221 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
2222 (minibuffer--double-dollars): Preserve properties.
2223 (completion--sifn-requote): New function.
2224 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
2225
ef24141c
SM
2226 * minibuffer.el: Add support for completion of quoted/escaped data.
2227 (completion-table-with-quoting, completion-table-subvert): New funs.
2228 (completion--twq-try, completion--twq-all): New functions.
2229 (completion--nth-completion): New function.
2230 (completion-try-completion, completion-all-completions): Use it.
2231
784e7d6e
LL
22322012-04-25 Leo Liu <sdl.web@gmail.com>
2233
dd2ac746
SM
2234 * progmodes/python.el (python-pdbtrack-get-source-buffer):
2235 Use compilation-message if available to find real filename.
784e7d6e 2236
07875ee7
CY
22372012-04-25 Chong Yidong <cyd@gnu.org>
2238
2239 * vc/diff-mode.el (diff-setup-whitespace): New function.
2240 (diff-mode): Use it.
2241
2242 * vc/diff.el (diff-sentinel):
2243 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
2244 Whitespace mode variables based on diff style (Bug#8612).
2245
5055880d
LL
22462012-04-25 Leo Liu <sdl.web@gmail.com>
2247
daf75653
LL
2248 * progmodes/python.el (python-send-region): Add suffix .py to the
2249 temp file.
2250
5055880d
LL
2251 * files.el (auto-mode-alist): Use javascript-mode instead.
2252
db9b177b
AH
22532012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
2254
ef24141c 2255 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
db9b177b
AH
2256
2257 * soap-client.el (soap-resolve-references-for-sequence-type)
ef24141c 2258 (soap-resolve-references-for-array-type): Hack to prevent self
db9b177b 2259 references, see Bug#9.
ef24141c 2260 (soap-parse-envelope): Report the contents of the 'detail' node
db9b177b 2261 when receiving a fault reply.
ef24141c 2262 (soap-parse-envelope): Report the contents of the entire 'detail' node.
db9b177b
AH
2263
2264 * soap-inspect.el (soap-sample-value-for-simple-type)
ef24141c 2265 (soap-inspect-simple-type): New function.
db9b177b 2266
ef24141c 2267 * soap-client.el (soap-simple-type): New struct.
db9b177b 2268 (soap-default-xsd-types, soap-default-soapenc-types)
ef24141c
SM
2269 (soap-decode-basic-type, soap-encode-basic-type):
2270 support unsignedInt and double basic types.
db9b177b 2271 (soap-resolve-references-for-simple-type)
ef24141c
SM
2272 (soap-parse-simple-type, soap-encode-simple-type): New function.
2273 (soap-parse-schema): Parse xsd:simpleType declarations.
db9b177b
AH
2274
2275 * soap-client.el (soap-default-xsd-types)
ef24141c
SM
2276 (soap-default-soapenc-types): Add integer, byte and anyURI types.
2277 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
2278 the local name of "soapenc:Array".
2279 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
db9b177b
AH
2280 decoding integer, byte and anyURI xsd types.
2281
1fc6097b
CY
22822012-04-25 Chong Yidong <cyd@gnu.org>
2283
2284 * cus-edit.el (custom-buffer-create-internal): Update header text.
2285
afc6df87
EZ
22862012-04-25 Eli Zaretskii <eliz@gnu.org>
2287
2288 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
2289 settings on 'system-type', not on 'window-system'. On MS-Windows,
2290 set interactive-mode on in GDB.
2291
dfbd787f
SM
22922012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2293
2294 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
2295 (ruby-syntax-propertize-regexp): Remove.
2296 (ruby-syntax-propertize-function): Split regexp into chunks.
2297 Match following code directly.
2298
85222d44
DG
22992012-04-24 Dmitry Gutov <dgutov@yandex.ru>
2300
51a8ea2a
DG
2301 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
2302 (ruby-syntax-propertize-regexp): New function.
2303 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
2304 by a special keyword.
2305
85222d44
DG
2306 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
2307 (ruby-syntax-general-delimiters-goto-beg)
2308 (ruby-syntax-propertize-general-delimiters): New functions.
2309 (ruby-syntax-propertize-function): Use them to handle GDL.
2310 (ruby-font-lock-keywords): Move old handling of GDL...
2311 (ruby-font-lock-syntactic-keywords): .. to here.
2312 (ruby-calculate-indent): Adjust indentation for GDL.
2313
b613912b
MA
23142012-04-24 Michael Albinus <michael.albinus@gmx.de>
2315
b5380639
MA
2316 * notifications.el (top): Remove unneeded declarations.
2317 (notifications-specification-version): Change to "1.2".
e43042fe 2318 (notifications-interface, notifications-notify-method)
b613912b
MA
2319 (notifications-close-notification-method): Fix docstring.
2320 (notifications-get-capabilities-method): New defconst.
e43042fe
MA
2321 (notifications-notify): Add :action-items, :resident and
2322 :transient hints. Change "image_data" to "image-data" and
2323 "image_path" to "image-path".
b613912b
MA
2324 (notifications-get-capabilities): New defun.
2325
257440aa
LL
23262012-04-24 Leo Liu <sdl.web@gmail.com>
2327
2328 * progmodes/python.el: Move hideshow setup to the end.
2329
b1bac16e
MR
23302012-04-24 Martin Rudalics <rudalics@gmx.at>
2331
2332 * window.el (handle-select-window): Clear echo area since this is
2333 no more done by read_char (Bug#11304).
2334
d81bd059
SM
23352012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2336
2337 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
2338 and `/ M' to filter-derived-mode.
2339 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
2340 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
2341 (ibuffer-mark-by-mode): Use default rather than initial-input.
2342 (ibuffer-filter-by-derived-mode): Autoload and require-match.
2343
c4cf6d91
IA
23442012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
2345
2346 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
2347 (ibuffer-filter-by-derived-mode): New filter.
2348 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
2349
7511ded8
CY
23502012-04-23 Andreas Politz <politza@fh-trier.de>
2351
2352 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
2353
775c916b
CY
23542012-04-23 Chong Yidong <cyd@gnu.org>
2355
2356 * cus-edit.el (customize-apropos, customize-apropos-options):
2357 Disable matching of non-option variables (Bug#11176).
2358 (customize-option, customize-option-other-window)
2359 (customize-changed-options): Doc fix.
2360 (customize-apropos-options, customize-apropos-faces)
2361 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
2362
2363 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
922d37d3 2364 Fix word list splitting (Bug#11132).
46c71e23
CY
2365 (apropos-symbol, apropos-keybinding, apropos-label)
2366 (apropos-property, apropos-function-button)
2367 (apropos-variable-button, apropos-misc-button): New faces.
2368 (apropos-symbol-face, apropos-keybinding-face)
2369 (apropos-label-face, apropos-property-face, apropos-match-face):
2370 Variables removed (Bug#8396).
2371 (apropos-library-button, apropos-format-plist, apropos-print)
2372 (apropos-print-doc, apropos-describe-plist): Callers changed.
775c916b 2373
2df41f9c
MA
23742012-04-23 Michael Albinus <michael.albinus@gmx.de>
2375
2376 * net/xesam.el (xesam-mode-map): Use let-bound map in
2377 initialization. (Bug#11292)
2378
da00640a
AM
23792012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2380
2381 Preserve ispell session localwords when switching back to
2382 original buffer.
2383
2384 * ispell.el (ispell-buffer-session-localwords): New buffer-local
2385 variable to hold buffer session localwords.
2386 (ispell-kill-ispell): add option 'clear to delete session
2387 localwords.
2388 (ispell-command-loop, ispell-change-dictionary)
2389 (ispell-buffer-local-words): Preserve session localwords when
2390 needed.
2391
2392 * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
2393 Preserve session localwords when needed.
2394
f621ccf5
AM
23952012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2396
2397 * ispell.el (ispell-insert-word) Remove unneeded function using
2398 obsolete `translation-table-for-input'.
ef24141c
SM
2399 (ispell-word, ispell-process-line, ispell-complete-word):
2400 Use plain `insert' instead of removed `ispell-insert-word'.
f621ccf5 2401
c2d1019e
CY
24022012-04-22 Chong Yidong <cyd@gnu.org>
2403
2404 * cus-edit.el (custom-variable-menu)
2405 (custom-variable-reset-saved, custom-face-menu)
2406 (custom-face-reset-saved): If there is no saved value, make the
2407 "reset-saved" operation bring back the default (Bug#9509).
2408 (custom-face-state): Properly detect themed faces.
2409
eeddc531
CY
2410 * faces.el (face-spec-set): Stop supporting deprecated form of
2411 third arg.
2412
dcbf5805
MA
24132012-04-22 Michael Albinus <michael.albinus@gmx.de>
2414
2415 Move functions from C to Lisp. Make non-blocking method calls
2416 the default. Implement further D-Bus standard interfaces.
2417
ef24141c
SM
2418 * net/dbus.el (dbus-message-internal): Declare function.
2419 Remove unneeded function declarations.
dcbf5805
MA
2420 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
2421 (dbus-message-type-method-return, dbus-message-type-error)
2422 (dbus-message-type-signal): Declare variables. Remove local
2423 definitions.
2424 (dbus-interface-dbus, dbus-interface-peer)
2425 (dbus-interface-introspectable, dbus-interface-properties)
2426 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
2427 Adapt docstring.
2428 (dbus-interface-objectmanager): New defconst.
2429 (dbus-call-method, dbus-call-method-asynchronously)
2430 (dbus-send-signal, dbus-method-return-internal)
2431 (dbus-method-error-internal, dbus-register-service)
2432 (dbus-register-signal, dbus-register-method): New defuns, moved
2433 from dbusbind.c
2434 (dbus-call-method-handler, dbus-setenv)
ef24141c
SM
2435 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
2436 New defuns.
dcbf5805
MA
2437 (dbus-call-method-non-blocking): Make it an obsolete function.
2438 (dbus-unregister-object, dbus-unregister-service)
2439 (dbus-handle-event, dbus-register-property)
2440 (dbus-property-handler): Obey the new structure of
2441 `bus-registered-objects'.
2442 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
2443 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
2444 Use `dbus-call-method'.
2445
cf20dee0
CY
24462012-04-22 Chong Yidong <cyd@gnu.org>
2447
2448 * cus-edit.el (custom-commands, custom-reset-menu)
2449 (Custom-reset-standard): Tweak labels.
2450 (custom-reset-button-menu): Change default to t.
2451 (custom-buffer-create-internal): For the custom-reset-button-menu
2452 case, put the revert button first.
2453 (custom-group-subtitle): New face.
2454 (custom-group-value-create): Align docstring to a specific column.
2455
2456 * wid-edit.el (widget-documentation-link-add): Don't handle
2457 indentation in this function.
2458 (widget-documentation-string-indent-to): New function.
2459 (widget-documentation-string-value-create): Use it.
2460
2461 * autorevert.el (auto-revert):
2462 * epg-config.el (epg):
2463 * ibuffer.el (ibuffer):
2464 * mpc.el (mpc):
2465 * ses.el (ses):
2466 * eshell/eshell.el (eshell):
2467 * net/ange-ftp.el (ange-ftp):
2468 * progmodes/ebnf2ps.el (postscript):
2469 * progmodes/flymake.el (flymake):
2470 * progmodes/prolog.el (prolog):
2471 * progmodes/verilog-mode.el (verilog-mode):
2472 * progmodes/which-func.el (which-func):
2473 * term/xterm.el (xterm):
2474 * textmodes/picture.el (picture):
2475 * textmodes/tildify.el (tildify):
2476 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
2477 customization buffers.
2478
583e23bd
AM
24792012-04-22 Alan Mackenzie <acm@muc.de>
2480
2481 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
2482 Adding a ) can hide the resulting (..) from searches. Fix it.
2483 Bound the backward search to the position of the existing (.
2484
7dd51bf1
JB
24852012-04-21 Juanma Barranquero <lekktu@gmail.com>
2486
2487 * progmodes/verilog-mode.el (verilog-mode): Check whether
2488 which-func-modes is t before adding verilog-mode.
2489 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
2490
d64a438f
LL
24912012-04-21 Leo Liu <sdl.web@gmail.com>
2492
7dd51bf1 2493 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
d64a438f 2494
081e8d65
MV
24952012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
2496
2497 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
2498 filling of the last column of a table (Bug#5635).
2499 (woman-find-next-control-line): New arg, specifying an additional
2500 regexp component for the control line.
2501 (woman2-roff-buffer): Use it.
2502 (woman-break-table): New function.
2503 (woman2-TS): Use it.
2504
25052012-04-21 Chong Yidong <cyd@gnu.org>
2506
2507 * woman.el (woman-set-buffer-display-table, woman-decode-region)
2508 (woman-horizontal-escapes, woman-negative-vertical-space)
2509 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
2510 (WoMan-warn-ignored): Use ?\s instead of ?\ .
2511
ed571ccb
SM
25122012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
2513
2514 * minibuffer.el (completion-file-name-table): Complete user names.
2515
39773899
LL
25162012-04-20 Leo Liu <sdl.web@gmail.com>
2517
2518 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
2519 and pcase-let*.
2520
de6ff46d
CY
25212012-04-20 Chong Yidong <cyd@gnu.org>
2522
2523 * server.el (server-execute): Respect initial-buffer-choice if it
2524 is a string and there are no files to open (Bug#2825).
2525 (server-create-window-system-frame, server-create-tty-frame):
2526 Don't switch buffers here.
2d0e8e61
CY
2527 (server-process-filter): Only try to open a window system frame if
2528 compiled with graphical support (Bug#8314).
de6ff46d 2529
54071013
DN
25302012-04-20 Dan Nicolaescu <dann@gnu.org>
2531
2532 * battery.el (battery-echo-area-format): Display remaining time
2533 for sysfs backend too (Bug#11269).
2534 (battery-linux-sysfs): Fix conditional for the charge.
2535
f30d612a
CY
25362012-04-20 Chong Yidong <cyd@gnu.org>
2537
c07a4c0b 2538 * progmodes/gdb-mi.el (gdb): Revert previous change.
f30d612a
CY
2539 (gdb-inferior-io--init-proc): New function.
2540 (gdb-init-1): Use it.
2541 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
2542 responsible for allocating a new pty and hooking it to gdb when
2543 the old pty gets an EIO due to process exit.
2544 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
2545 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
2546 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
2547
2116e93c
EZ
25482012-04-20 Eli Zaretskii <eliz@gnu.org>
2549
2550 * window.el (window-min-size, window-sizable, window-min-delta)
2551 (window-max-delta, window--resizable, window-resizable)
2552 (window-total-size, window-full-height-p, window-full-width-p)
2553 (window-in-direction, window--resize-mini-window, window-resize)
2554 (window--resize-child-windows-normal)
2555 (window--resize-child-windows, window--resize-siblings)
2556 (window--resize-this-window, adjust-window-trailing-edge)
cd0f830c 2557 (enlarge-window, shrink-window): Doc fixes.
2116e93c 2558
c07a4c0b 25592012-04-20 Chong Yidong <cyd@gnu.org>
b668fa6e 2560
ef24141c
SM
2561 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
2562 New function to call delete-process on the gdb-inferior buffer's pty.
b668fa6e
CY
2563 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
2564 pty process (Bug#11273).
2565 (gdb-update): New arg to suppress talking to the gdb process.
2566 (gdb-done-or-error): Use it.
2567 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
2568 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
2569 sentinel not being called.
2570
2571 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
2572
d02766ab
CY
2573 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
2574
c07a4c0b 25752012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
2576
2577 * net/network-stream.el (open-network-stream): Doc fix.
2578
c07a4c0b 25792012-04-20 Chong Yidong <cyd@gnu.org>
2c070447
CY
2580
2581 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
2582
c07a4c0b 25832012-04-20 Alan Mackenzie <acm@muc.de>
f0f6bc35
AM
2584
2585 Ensure searching for keywords is case sensitive.
2586
2587 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
2588 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
2589 (c-defun-name, c-mark-function, c-cpp-define-name)
2590 (c-comment-indent, c-scan-conditionals, c-indent-defun)
c07a4c0b 2591 (c-context-line-break): Bind case-fold-search to nil.
f0f6bc35 2592
ef24141c
SM
2593 * progmodes/cc-mode.el (c-font-lock-fontify-region):
2594 Bind case-fold-search to nil.
f0f6bc35 2595
c07a4c0b 25962012-04-20 Chong Yidong <cyd@gnu.org>
4fc2c72a
CY
2597
2598 * mail/sendmail.el (mail-bury): Call return action with the right
2599 Rmail buffer (Bug#11242).
2600
9a864fa2
CY
2601 * server.el (server-process-filter): Handle corner case where both
2602 tty and nowait options are present (Bug#11102).
2603
539aa513
EZ
26042012-04-20 Eli Zaretskii <eliz@gnu.org>
2605
2606 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
6cf2a23e
EZ
2607 (top level): Put into the executable the ident-style '$Id:' tag on
2608 windows-nt as well.
539aa513 2609
cfc7d5da
SM
26102012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2611
2612 * electric.el (electric-indent-post-self-insert-function): Check that
2613 electric-indent-mode is enabled in current buffer.
2614
5b01685c
JB
26152012-04-19 Juanma Barranquero <lekktu@gmail.com>
2616
2617 * imenu.el (imenu-progress-message): Restore; it is "used" in
2618 erc/erc-imenu.el and net/snmp-mode.el.
2619
4d6769e1
JB
26202012-04-19 Juanma Barranquero <lekktu@gmail.com>
2621
2622 * avoid.el (mouse-avoidance-mode): Mark unused arg.
2623 (mouse-avoidance-nudge-mouse): Remove unused binding.
2624
2625 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
2626
2627 * descr-text.el (describe-char):
2628 * progmodes/python.el (python-describe-symbol):
2629 Don't call `toggle-read-only', set `buffer-read-only'.
2630
2631 * imenu.el (imenu-default-goto-function): Mark unused args.
2632 (imenu-progress-message): Remove obsolete macro; all callers changed.
2633
2634 * subr.el (keymap-canonicalize): Remove unused binding.
2635 (read-passwd): Mark unused arg.
2636
2637 * tutorial.el (tutorial--display-changes): Remove unused binding.
2638 (tutorial--save-tutorial-to): Remove unused variable.
2639
2640 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
2641 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
2642 (package-generate-autoloads, package-menu--generate)
2643 (package-menu--find-upgrades): Remove unused bindings.
2644
2645 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
2646 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
2647 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
2648 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
2649 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
2650 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
2651 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
2652 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
2653 (cua-delete-char-rectangle): Mark unused args.
2654 (cua-align-rectangle): Remove unused binding.
2655
2656 * mail/rmail.el (compilation--message->loc)
2657 (epa--find-coding-system-for-mime-charset): Declare.
2658
2659 * net/dbus.el (dbus-register-service): Declare.
2660 (dbus-name-owner-changed-handler): Remove unused binding.
2661
2662 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
2663 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
2664 (nxml-scan-backward-within): Mark unused arg.
2665 (nxml-dynamic-markup-word): Remove unused binding.
2666
2667 * mouse.el (mouse-menu-major-mode-map):
2668 * emacs-lisp/authors.el (authors-scan-change-log)
2669 (authors-add-to-author-list):
2670 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
2671 * emacs-lisp/smie.el (smie-auto-fill):
2672 * mail/sendmail.el (mail-bury):
2673 * mail/unrmail.el (unrmail):
2674 * net/tls.el (open-tls-stream):
2675 * textmodes/picture.el (picture-mouse-set-point):
2676 Remove unused bindings.
2677
8c8fc5df
MA
26782012-04-19 Michael Albinus <michael.albinus@gmx.de>
2679
2680 * net/tramp.el (tramp-action-password): Let-bind
2681 `enable-recursive-minibuffers' to t.
2682
a77b0ac9
SS
26832012-04-18 Sam Steingold <sds@gnu.org>
2684
2685 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
2686 instead of 'string to accommodate values like [f11].
2687 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
2688 * progmodes/gdb-mi.el: Likewise.
2689
12a106a9
LL
26902012-04-18 Leo Liu <sdl.web@gmail.com>
2691
2692 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
2693 current buffer.
2694 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
2695 LOCAL is nil.
2696
bc6494ef
CY
26972012-04-18 Chong Yidong <cyd@gnu.org>
2698
2699 * simple.el (line-move): Use forward-line if in batch mode
2700 (Bug#11053).
2701
c09c46b2
CS
27022012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
2703
2704 * files.el (after-find-file): Do not try to add a final newline if
2705 the buffer is read-only (Bug#11156).
2706
5f6530ea
RS
27072012-04-17 Richard Stallman <rms@gnu.org>
2708
2709 * mail/rmail.el (rmail-start-mail):
2710 Pass (rmail-mail-return...) for the return-action.
2711 Pass (rmail-yank-current-message...) for the yank-action.
2712 (rmail-yank-current-message): New function.
2713 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
2714 (rmail-reply): Likewise.
2715 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
2716
2717 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
c09c46b2 2718 buffer, not the last. Reject temp buffers. Use the rmail-mode
5f6530ea
RS
2719 buffer, not newbuf.
2720
197b6f3c
JB
27212012-04-17 Juanma Barranquero <lekktu@gmail.com>
2722
2723 * server.el (server-ensure-safe-dir): Simplify.
2724
2311d8e5 27252012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
98fb480e 2726
2311d8e5
GM
2727 * emacs-lisp/smie.el: Provide smarter auto-filling.
2728 (smie-auto-fill): New function.
2729 (smie-setup): Use it.
98fb480e 2730
2311d8e5
GM
2731 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
2732
27332012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8eb5d48f
PH
2734
2735 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
2736 (comment-indent): Use it.
2737
2311d8e5 27382012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4bdf2ad2
VB
2739
2740 * ses.el: The overall change is to add cell renaming, that is
2741 setting fancy names for cell symbols other than name matching
2742 "\\`[A-Z]+[0-9]+\\'" regexp .
2311d8e5 2743 (ses-localvars): Add ses--renamed-cell-symb-list.
4bdf2ad2 2744 (ses-create-cell-variable): New defun.
2311d8e5 2745 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4bdf2ad2
VB
2746 (ses-relocate-formula): Relocate formulas only for cells the
2747 symbols of which are not renamed, i.e. symbols whose names do not
2748 match regexp "\\`[A-Z]+[0-9]+\\'".
2749 (ses-relocate-all): Relocate values only for cells the symbols of
2750 which are not renamed.
2751 (ses-load): Create cells variables as the (ses-cell ...) are read,
2752 in order to check row col consistency with cell symbol name only
2753 for cells that are not renamed.
2754 (ses-replace-name-in-formula): New defun.
2755 (ses-rename-cell): New defun.
4bdf2ad2 2756
fc72b15c
PO
27572012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
2758
2759 * progmodes/perl-mode.el (perl-indent-parens-as-block):
2760 New option (bug#11118).
2761 (perl-calculate-indent): Respect it.
2762
12e10e61
GM
27632012-04-17 Glenn Morris <rgm@gnu.org>
2764
2765 * dired-aux.el (dired-mark-read-string): Doc fix.
2766
30009afd
DA
27672012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
2768
2769 * dired-aux.el (dired-mark-read-string): Offer optional completion.
2770 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
2771
41f03f4d
GM
27722012-04-17 Glenn Morris <rgm@gnu.org>
2773
2774 * mouse.el (mouse-drag-track):
2775 * speedbar.el (speedbar-frame-mode):
2776 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
2777
f45f90f3
LL
27782012-04-16 Leo Liu <sdl.web@gmail.com>
2779
2780 * progmodes/python.el: Trivial cleanup.
2781
94ee8db5
GM
27822012-04-16 Glenn Morris <rgm@gnu.org>
2783
121b8917
GM
2784 * vc/vc.el (vc-string-prefix-p):
2785 * vc/pcvs-util.el (cvs-string-prefix-p):
2786 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
2787 * mpc.el (mpc-string-prefix-p):
2788 Make all of these into obsolete aliases for string-prefix-p.
2789 Update callers.
2790 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
2791
1197ecfa
GM
2792 * textmodes/two-column.el: Move custom options to the start.
2793 (frame-width): Remove compat definition.
2794 (2C-associate-buffer, 2C-dissociate):
2795 Use with-current-buffer rather than save-excursion.
2796 (2C-dissociate): Force a mode-line update.
2797 (2C-autoscroll): Use ignore-errors.
2798
099e7202
GM
2799 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
2800 Autoload trivia.
2801
bf350d6a
GM
2802 * emacs-lisp/cl-extra.el (*random-state*):
2803 Remove unnecessary declaration.
2804
0e829eab
GM
2805 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
2806
e3ad7552
GM
2807 * play/cookie1.el (cookie-snarf):
2808 Give an explicit error if input file cannot be read.
2809
68892d27
GM
2810 * play/yow.el (yow-file): Use expand-file-name rather than concat.
2811
20f0c46d
GM
2812 * progmodes/perl-mode.el (c-macro-expand):
2813 Remove unnecessary autoload (it is in loaddefs.el).
2814
5a0978ce
GM
2815 * textmodes/picture.el (picture-desired-column)
2816 (picture-update-desired-column): Convert comments to doc-strings.
2817 (picture-substitute): Remove function.
2818 (picture-mode-map): Initialize in the defvar.
2819
6b955486
GM
2820 * woman.el: Remove eval-after-load for tar-mode.
2821 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
2822 (woman-tar-extract-file): Autoload it.
2823
94ee8db5
GM
2824 * frame.el (automatic-hscrolling): Make this alias obsolete.
2825
177eca34
AM
28262012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2827
2828 * ispell.el (ispell-set-spellchecker-params): Post-process
4be3075e 2829 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3851314b
AM
2830 (ispell-dictionary-base-alist): Revert to original XEmacs
2831 friendly version for default. [:alpha:] will be added in
2832 `ispell-set-spellchecker-params' if needed
177eca34 2833
c505aaeb
CY
28342012-04-16 Chong Yidong <cyd@gnu.org>
2835
2836 * image.el (imagemagick--extension-regexp): New variable.
2837 (imagemagick-register-types): Use it.
2838 (imagemagick-types-inhibit): Add :set function. Allow new value
2839 of t to inhibit all types.
2840
2841 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
2842 so we can preload it.
2843
2844 * loadup.el (fboundp): Preload regexp-opt, needed by
2845 imagemagick-register-types.
2846
60efac0f
CY
28472012-04-15 Chong Yidong <cyd@gnu.org>
2848
2849 * frame.el (scrolling): Remove nearly unused customization group.
2850
2851 * scroll-all.el (scroll-all-mode): Move to windows group.
2852
5dd1713e
CY
28532012-04-15 Chong Yidong <cyd@gnu.org>
2854
2855 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
2856
e6fd457e
CY
28572012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
2858
2859 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4d6769e1 2860 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
e6fd457e 2861
e153c136
GM
28622012-04-15 Glenn Morris <rgm@gnu.org>
2863
2864 * simple.el (process-file-side-effects): Doc fix.
2865
e6fd457e 28662012-04-15 Glenn Morris <rgm@gnu.org>
ca7d96c8
GM
2867
2868 * international/mule-cmds.el (set-language-environment): Doc fix.
2869
3603c3b1
JB
28702012-04-14 Juanma Barranquero <lekktu@gmail.com>
2871
2872 * server.el (server-auth-key, server-generate-key): Doc fixes.
2873 (server-get-auth-key): Doc fix. Use `string-match-p'.
2874 (server-start): Reflow docstring.
2875
e6de100c
LI
28762012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
2877
2878 * server.el (server-generate-key): `called-interactively-p'
2879 requires a parameter.
2880
29734c21
MN
28812012-04-14 Michal Nazarewicz <mina86@mina86.com>
2882
2883 * server.el (server-auth-key): New variable.
75f1671a 2884 (server-generate-key, server-get-auth-key): New function.
29734c21
MN
2885 (server-start): Use the new variable and functions to allow
2886 setting a permanent server key (bug#9423).
2887
d65c9521
LL
28882012-04-14 Leo Liu <sdl.web@gmail.com>
2889
2890 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
2891
5ae255c7
PE
28922012-04-14 Paul Eggert <eggert@cs.ucla.edu>
2893
2894 Spelling fixes.
2895 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
2896 Emacs uses American spelling.
2897
d5e6342e
JB
28982012-04-14 Juanma Barranquero <lekktu@gmail.com>
2899
2900 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
2901 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
2902 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
2903 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
2904
ab036cd7
SM
29052012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2906
2907 * progmodes/which-func.el (which-func-modes): Change default.
2908
35dc09a1 29092012-04-14 Kim F. Storm <storm@cua.dk>
9557e2be
CY
2910
2911 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
2912 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
2913
35dc09a1 29142012-04-14 Chong Yidong <cyd@gnu.org>
81927dd2
CY
2915
2916 * custom.el (custom-theme-set-variables): Doc fix.
2917
35dc09a1 29182012-04-14 Glenn Morris <rgm@gnu.org>
8edb942b
GM
2919
2920 * international/mule.el (set-auto-coding-for-load): Doc fix.
2921
35dc09a1 29222012-04-14 Alan Mackenzie <acm@muc.de>
0de3da9f 2923
35dc09a1
GM
2924 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
2925 imenu work again for Objective C Mode. Correct the *-index values,
2926 these having been disturbed by a previous change in 2011-08.
57f845ee 2927
0de3da9f
AM
2928 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
2929 Correct two search limits.
2930
35dc09a1 29312012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
ede141ac
SM
2932
2933 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
2934
35dc09a1 29352012-04-14 Andreas Schwab <schwab@linux-m68k.org>
d0203d61
AS
2936
2937 * international/characters.el: Fix sorting.
2938
35dc09a1 29392012-04-14 Eli Zaretskii <eliz@gnu.org>
cb80bcd1
EZ
2940
2941 * international/characters.el: Add more missing Latin case pairs.
2942
35dc09a1 29432012-04-14 Glenn Morris <rgm@gnu.org>
4a427f58
GM
2944
2945 * files.el (dir-locals-set-class-variables): Doc fix.
2946
35dc09a1 29472012-04-14 Eli Zaretskii <eliz@gnu.org>
9f847f41 2948
3f1b5bf8
EZ
2949 * international/characters.el: Add set-case-syntax-pair call for
2950 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
2951 counterpart. (Bug#11209)
2952
9f847f41
EZ
2953 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
2954
35dc09a1 29552012-04-14 Glenn Morris <rgm@gnu.org>
0c2014a3
GM
2956
2957 * calendar/holidays.el (calendar-check-holidays): Doc fix.
2958
35dc09a1 29592012-04-14 Eli Zaretskii <eliz@gnu.org>
e2627d21 2960
35dc09a1
GM
2961 * textmodes/ispell.el (ispell-dictionary-base-alist):
2962 Add data for Hebrew.
e2627d21 2963
35dc09a1 29642012-04-14 Chong Yidong <cyd@gnu.org>
5c14e333 2965
35dc09a1
GM
2966 * net/rcirc.el (rcirc-cmd-quit):
2967 Revert 2012-03-18 change (Bug#11192).
5c14e333 2968
35dc09a1 29692012-04-14 Glenn Morris <rgm@gnu.org>
bf6fa423
GM
2970
2971 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
2972
35dc09a1 29732012-04-14 Eli Zaretskii <eliz@gnu.org>
82b24fb2 2974
4517fe3a
SM
2975 * minibuffer.el (completion-in-region-mode-map):
2976 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
82b24fb2 2977
b472a594
VD
29782012-04-13 Vivek Dasmohapatra <vivek@etla.org>
2979
2980 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
2981
09b95ce3
MY
29822012-04-13 Masatake YAMATO <yamato@redhat.com>
2983
2984 * minibuffer.el (minibuffer-local-filename-syntax): New variable
2985 to allow `C-M-f' and `C-M-b' to move to the nearest path
2986 separator (bug#9511).
2987
4b63a9ca
LI
29882012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
2989
2990 * avoid.el: Require cl when compiling. And also move the
2991 `provide' to the end.
2992
7b55b8bf
TV
29932012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2994
2995 * avoid.el (mouse-avoidance-banish-position): New variable.
2996 (mouse-avoidance-banish-destination): Use it (bug#10165).
2997
adedaa1f
LL
29982012-04-13 Leo Liu <sdl.web@gmail.com>
2999
3000 * progmodes/which-func.el (which-func-modes): Add objc-mode.
3001
70e74021
KB
30022012-04-13 Ken Brown <kbrown@cornell.edu>
3003
3004 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
ab036cd7 3005 this is no longer needed now that cygstart understands file:// URLs.
70e74021
KB
3006 (browse-url-filename-alist): For the same reason, don't modify
3007 file:// URLs on Cygwin.
3008
e75e89ba
SM
30092012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
3010
3011 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
3012 the region on shift if the binding is already shifted (bug#11221).
3013
82f289a4
GM
30142012-04-12 Glenn Morris <rgm@gnu.org>
3015
3016 * mail/mailpost.el: Move to obsolete/.
3017
d333dc4c
DA
30182012-04-12 Drew Adams <drew.adams@oracle.com>
3019
3020 * imenu.el (imenu--generic-function): Ignore invisible definitions
3021 (bug#10123).
3022
0d15b5ba
VD
30232012-04-12 Vivek Dasmohapatra <vivek@etla.org>
3024
3025 * hexl.el (hexl-bits): New variable.
3026 (hexl-options): Mention the variable in the doc string.
75f1671a 3027 (hexl-rulerise, hexl-line-displen): New functions.
0d15b5ba 3028 (hexl-mode): Mention the new variable.
75f1671a
JB
3029 (hexl-mode, hexl-current-address, hexl-current-address):
3030 Use the displen.
0d15b5ba
VD
3031 (hexl-ascii-start-column): New function.
3032 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
3033 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
3034
64a440db
AM
30352012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3036
3037 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
3038 '("-i" ENCODING), in 2 separate command-line arguments, to specify
3039 the encoding, as expected by hunspell.
3040
6decb6c2
SM
30412012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
3042
3043 * battery.el (battery--linux-sysfs-regexp): New const.
3044 (battery-status-function): Use it. Remove yeeloong special case.
3045 (battery-yeeloong-sysfs): Remove.
3046 (battery-echo-area-format): Remove yeeloong special case.
3047
088be6fb
SM
30482012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3049
6622e416
SM
3050 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
3051 Reported by Noah Friedman.
3052
088be6fb
SM
3053 * subr.el (read-passwd): Use read-string.
3054
b49f886e
LMI
30552012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3056
3057 * vcursor.el (vcursor-move): Increase the priority of the overlay
3058 (bug#9663).
3059
a63067fc
DD
30602012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3061
3062 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
3063 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
3064
ac3cf14a
WS
30652012-04-11 William Stevenson <yhvh2000@gmail.com>
3066
3067 * textmodes/artist.el (artist-mode): Convert artist-mode to use
3068 define-minor-mode (bug#10760).
3069
c4fc691b 30702012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
49a2697c 3071
4d6769e1 3072 * progmodes/grep.el (rgrep): Tweak the find command line so
49a2697c
WJ
3073 that directories matching `grep-find-ignored-files' won't be
3074 pruned (bug#10351).
3075
af23e2e5
CY
30762012-04-11 Chong Yidong <cyd@gnu.org>
3077
3078 * startup.el (command-line): Remove support for long-obsolete
3079 variable font-lock-face-attributes.
3080
ab7ce8c1
GM
30812012-04-11 Glenn Morris <rgm@gnu.org>
3082
3083 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
3084
de8c03dc
SM
30852012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3086
3087 * window.el (window--state-get-1): Obey window-point-insertion-type.
3088
050cc68b
LB
30892012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
3090
3091 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
3092 to previous function when point is on the first character of a
75f1671a 3093 function. Take care of that in `narrow-to-defun' (bug#6157).
050cc68b 3094
a38c310c
GM
30952012-04-11 Glenn Morris <rgm@gnu.org>
3096
effed0c2
GM
3097 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
3098 not just file-errors.
3099
a38c310c
GM
3100 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
3101 (vc-bzr-sha1): Use internal sha1.
3102
0221e323
SM
31032012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3104
3105 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
3106
43956923
SG
31072012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
3108
3109 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
3110 that start in the middle of the line (bug#10496).
3111
6a8c9eaf
DN
31122012-04-10 Dan Nicolaescu <dann@gnu.org>
3113
3114 * battery.el (battery-linux-proc-acpi): Only one battery is
3115 discharged at a time, but that seems to confuse battery.el when
3116 computing `rate-type' for the battery not being discharged
3117 (bug#10332).
3118
1930bf5d
SM
31192012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
3120
2a718f6f
SM
3121 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
3122
599430d0
SM
3123 * international/quail.el: Use dolist and simplify.
3124 (quail-define-package, quail-update-keyboard-layout)
3125 (quail-define-rules): Use dolist.
3126 (quail-insert-kbd-layout, quail-get-translation): CSE.
3127
a2754b6c
SM
3128 * tmm.el: Use dolist, remove left over hook.
3129 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
3130 Use dolist.
3131 (calendar-load-hook): Don't mess with it.
3132
1930bf5d
SM
3133 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
3134 Use derived-mode-p. Run the diff asynchronously.
3135
9f67961c
LMI
31362012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3137
3138 * obsolete/mouse-sel.el: Add an Obsolete-since header.
3139
2a8ce227
JB
31402012-04-10 Juanma Barranquero <lekktu@gmail.com>
3141
3142 * misc.el: Display absolute path of loaded DLLs (bug#10424).
3143 (list-dynamic-libraries--loaded): New function.
3144 (list-dynamic-libraries--refresh): Use it.
3145
8f33b5f8
NW
31462012-04-10 Nathan Weizenbaum <nweiz@google.com>
3147
1930bf5d
SM
3148 * progmodes/python.el (python-fill-paragraph):
3149 Make python-fill-region in a multiline string work when font-lock is
8f33b5f8
NW
3150 disabled (bug#7018).
3151
b12f0439
L
31522012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
3153
1930bf5d 3154 * language/european.el (cp775): Add oem/legacy (en)coding on
75f1671a
JB
3155 DOS/MS Windows for the Baltic languages. There are still plenty
3156 of texts written in this encoding/codepage (bug#6519).
b12f0439 3157
57c3bd01
GM
31582012-04-10 Glenn Morris <rgm@gnu.org>
3159
3160 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
3161 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
3162
6c3eab30
FA
31632012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
3164
1930bf5d 3165 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6c3eab30
FA
3166 next-line "n" and previous-line "p" in order to make recentf more
3167 consistent with ibuffer, dired or org-mode (bug#9387).
3168
24d78a88
LMI
31692012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3170
bc72b5d9
LMI
3171 * image.el (put-image): Return the overlay created instead of the
3172 optional input string (bug#7834). Note that this may break code
3173 that is (for some reason or other) depending on `put-image'
3174 returning the string.
3175
bd2dba5a
LMI
3176 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
3177
74beb59f
LMI
3178 * simple.el (zap-to-char): Allow zapping using input methods
3179 (bug#1580).
3180
24d78a88
LMI
3181 * textmodes/fill.el (fill-region): Leave point and mark where they
3182 were before filling (bug#5399).
3183
263f20cd
GM
31842012-04-09 Glenn Morris <rgm@gnu.org>
3185
3186 * version.el (emacs-bzr-get-version):
3187 Handle lightweight checkouts of local branches.
3188
58d1f797
AS
31892012-04-09 Andreas Schwab <schwab@linux-m68k.org>
3190
263f20cd 3191 * international/characters.el: Recover lost case pairs. (Bug#11209)
58d1f797 3192
b4d3bc10
CY
31932012-04-09 Chong Yidong <cyd@gnu.org>
3194
3195 * custom.el (custom-variable-p): Return nil for non-symbol
3196 arguments instead of signaling an error.
3197 (user-variable-p): Obsolete alias for custom-variable-p.
3198
3199 * apropos.el (apropos-variable):
3200 * files-x.el (read-file-local-variable):
3201 * simple.el (set-variable):
3202 * woman.el (woman-mini-help):
3203 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
3204
fd06db5d
GM
32052012-04-09 Glenn Morris <rgm@gnu.org>
3206
e5fcdb5e
GM
3207 * startup.el (normal-top-level): Don't look for leim-list.el
3208 in places where it will not be found. (Bug#910)
3209
fd06db5d
GM
3210 * international/mule-cmds.el (set-default-coding-systems):
3211 * files.el (normal-mode):
3212 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
3213 This function was removed with ucs-tables.el in 2008.
3214
b39bb7e1
EZ
32152012-04-08 Eli Zaretskii <eliz@gnu.org>
3216
3217 * textmodes/ispell.el (ispell-check-version): For hunspell, set
3218 ispell-encoding8-command to "-i", without a trailing space.
3219 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
3220 separate command-line arguments, to specify the encoding, since
3221 that's how hunspell expects it.
3222
5c5b8e23
GM
32232012-04-08 Glenn Morris <rgm@gnu.org>
3224
3225 * loadup.el: Load bindings before cus-start.
3226 This reduces somewhat the number of "rogue" settings in emacs -Q.
3227
a1ed8b05
GM
32282012-04-07 Glenn Morris <rgm@gnu.org>
3229
3230 * version.el (emacs-bzr-get-version): New function.
dfae128a 3231 (emacs-bzr-version): New variable.
a1ed8b05
GM
3232 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
3233 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
3234
b142f158
EZ
32352012-04-07 Eli Zaretskii <eliz@gnu.org>
3236
dfae128a
GM
3237 * international/uni-bidi.el, international/uni-category.el:
3238 * international/uni-combining.el, international/uni-decimal.el:
3239 * international/uni-decomposition.el, international/uni-digit.el:
3240 * international/uni-lowercase.el, international/uni-mirrored.el:
3241 * international/uni-name.el, international/uni-numeric.el:
3242 * international/uni-titlecase.el, international/uni-uppercase.el:
3243 Update for Unicode 6.1.
b142f158 3244
9078ead6
EZ
32452012-04-07 Eli Zaretskii <eliz@gnu.org>
3246
3247 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
3248
f23d2c7d
LMI
32492012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
3250
3251 * window.el (shrink-window): Mention the `window-min-height'
3252 variable in the doc string.
3253
0a0a3573
BG
32542012-04-05 Bastien Guerry <bzg@altern.org>
3255
3256 * color.el (color-lighten-name): Fix typo.
3257
e5248ac9
SM
32582012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
3259
3260 * server.el (server--on-display-p): New function.
3261 (server--on-display-p): Use it.
3262
b4243e22
GV
32632012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
3264
3265 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
3266 (bug#11145).
3267
305d9f44
SM
32682012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
3269
3270 * comint.el (comint--common-quoted-suffix): Check string boundary
3271 before comparing (bug#11158).
3272 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
3273
3d439cd1
CY
32742012-04-04 Chong Yidong <cyd@gnu.org>
3275
321cc491
CY
3276 * minibuffer.el (completion-extra-properties): Doc fix.
3277
3d439cd1
CY
3278 * subr.el (delayed-warnings-hook): Doc fix.
3279
2d562c0f
DU
32802012-04-04 Daiki Ueno <ueno@unixuser.org>
3281
3282 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
3283 selection (Bug#11159).
3284 (epa-insert-keys): Inform that the default public key will be
3285 exported if no key is selected.
3286
4443f204
RS
32872012-04-04 Richard Stallman <rms@gnu.org>
3288
3289 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
3290
529c06b6
CY
32912012-04-03 Chong Yidong <cyd@gnu.org>
3292
3293 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
3294 mail-insert-file, not its obsolete alias mail-attach-file.
3295
66b907dc
MA
32962012-04-03 Michael Albinus <michael.albinus@gmx.de>
3297
3298 * notifications.el (notifications-notify): Fix docstring.
3299
c0ea195d
GM
33002012-04-02 Glenn Morris <rgm@gnu.org>
3301
3302 * emacs-lisp/authors.el (authors-aliases): Another addition.
3303
5ca64e00
MA
33042012-04-02 Michael Albinus <michael.albinus@gmx.de>
3305
3306 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
3307 `tramp-compat-call-process' instead of `tramp-local-call-process'.
3308 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
3309
42ee526b
CY
33102012-04-01 Chong Yidong <cyd@gnu.org>
3311
3312 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
3313 Handle root directory properly.
3314 (copy-directory): Caller changed.
3315
3316 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
3317 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
3318
0b021094
GM
33192012-03-31 Glenn Morris <rgm@gnu.org>
3320
40f86458
GM
3321 * term/xterm.el (xterm-extra-capabilities): Doc fix.
3322
7019c177
GM
3323 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
3324
a1daddd6
GM
3325 * calendar/calendar.el (calendar-window-list)
3326 (calendar-hide-window): Restore. (Bug#11140)
3327 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
3328
0b021094
GM
3329 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
3330
40311efc
TV
33312012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3332
3333 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
3334 Check if file is a symlink (Bug#10489).
3335
3336 * files.el (copy-directory): Likewise.
3337
5319014e
CY
33382012-03-30 Chong Yidong <cyd@gnu.org>
3339
3340 * image.el (imagemagick-types-inhibit)
3341 (imagemagick-register-types): Doc fix.
3342
935d1290
AM
33432012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3344
ef24141c
SM
3345 * ispell.el (ispell-get-extended-character-mode):
3346 Disable extended-char-mode for hunspell. hunspell does not support it
75f1671a 3347 and treats ~word as ordinary words in pipe mode.
935d1290 3348
61c6e8fd
GM
33492012-03-30 Glenn Morris <rgm@gnu.org>
3350
3351 * tutorial.el (help-with-tutorial): Ensure local variables don't
3352 happen to make the buffer read-only. (Bug#11127)
3353
81fdff00
SM
33542012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
3355
3356 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
3357 (perl-calculate-indent): Return `noindent' in strings.
3358
6e7a6ec0
SS
33592012-03-28 Sam Steingold <sds@gnu.org>
3360
3361 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
3362 instead of the broken adhockery which does not prevent calendar
3363 buffers from being displayed at random after exit.
3364 (calendar-window-list, calendar-hide-window): Remove the broken
3365 adhockery.
3366
fee88ca0
GM
33672012-03-28 Glenn Morris <rgm@gnu.org>
3368
3369 * replace.el (query-replace-map): Doc fix.
3370
38de3354
AS
33712012-03-28 Andreas Schwab <schwab@linux-m68k.org>
3372
3373 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
3374 contents. (Bug#11109)
3375
b973155e
SM
33762012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
3377
3378 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
3379 (bug#11077).
3380 (avl-tree--check, avl-tree--check-node): New funs.
3381
dcb6e7b3
MR
33822012-03-27 Martin Rudalics <rudalics@gmx.at>
3383
3384 * window.el (switch-to-visible-buffer): New option.
b973155e
SM
3385 (switch-to-prev-buffer, switch-to-next-buffer):
3386 Observe switch-to-visible-buffer. Make sure that checking for a window
dcb6e7b3
MR
3387 showing a buffer already is done on the same frame.
3388
b4fa35fa
GM
33892012-03-27 Glenn Morris <rgm@gnu.org>
3390
3391 * startup.el (mail-host-address): Doc fix.
3392
f9210e18
SM
33932012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3394
3395 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
3396 than 197 variables.
3397
c0bf7753
AF
33982012-03-26 Ami Fischman <ami@fischman.org>
3399
3400 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
3401
33da7b16
GM
34022012-03-26 Glenn Morris <rgm@gnu.org>
3403
02243d9d
GM
3404 * files.el (save-buffers-kill-emacs): Doc fix.
3405
33da7b16
GM
3406 * startup.el (normal-top-level, command-line, command-line-1):
3407 Give them doc strings.
3408
e5a69fd0
EZ
34092012-03-25 Eli Zaretskii <eliz@gnu.org>
3410
3411 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
b973155e 3412 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
e5a69fd0 3413
9a69676a
CY
34142012-03-25 Chong Yidong <cyd@gnu.org>
3415
4125cb8b
CY
3416 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
3417 theme if it was previously enabled before (Bug#11031).
3418
dd470960
CY
3419 * cus-theme.el (custom-theme-write-faces): Retrieve current face
3420 spec with custom-face-get-current-spec if its :shown-value is not
3421 determined yet (Bug#9337).
4125cb8b 3422 (customize-create-theme, custom-theme-revert): Doc fixes.
dd470960 3423
9a69676a
CY
3424 * button.el (button-at): Minor addition to docstring.
3425
6e7e90fa
SL
34262012-03-24 Simon Leinen <simon.leinen@gmail.com>
3427
3428 * vc/vc.el (vc-merge): Fix a prompt.
3429
f06e2758
CY
34302012-03-24 Chong Yidong <cyd@gnu.org>
3431
3432 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
3433 point (Bug#9623).
3434
6e7e90fa
SL
3435 * button.el (button-at): Minor addition to docstring.
3436
b9d0879b
SM
34372012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
3438
3439 * newcomment.el (comment-choose-indent): No space after BOL.
3440
e71cebb3
SS
34412012-03-22 Sam Steingold <sds@gnu.org>
3442
3443 * window.el (switch-to-prev-buffer): Revert last patch because the
3444 bug turned out to be an advertised feature (Elisp manual 28.14).
3445
335aff35
GM
34462012-03-22 Glenn Morris <rgm@gnu.org>
3447
3448 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
3449 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
3450
c676576a
LMI
34512012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
3452
3453 * net/network-stream.el (network-stream-open-starttls): Make error
3454 message under Windows be less misleading.
3455
126f3d39
LW
34562012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
3457
3458 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
3459 understands (bug#9942).
3460
64fee311
CY
34612012-03-22 Chong Yidong <cyd@gnu.org>
3462
3463 * simple.el (end-of-visible-line): Handle return value of
3464 next-single-property-change properly (Bug#9371).
3465
a640d29a
KH
34662012-03-22 Kenichi Handa <handa@m17n.org>
3467
3468 * international/quail.el (quail-insert-kbd-layout): Fix previous
3469 change. To avoid unwanted bidi reordering, use
3470 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
3471
39675016
DG
34722012-03-21 Dmitry Gutov <dgutov@yandex.ru>
3473
3474 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
3475 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
3476 (ruby-beginning-of-indent): Be more careful with the difference
3477 between word-boundary and symbol boundary.
3478 (ruby-mode-syntax-table): Make : a symbol constituent.
3479
0a6934fc 34802012-03-21 Andreas Politz <politza@fh-trier.de>
1acad97c 3481
3d008e4f
SM
3482 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
3483
0a6934fc
SM
34842012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
3485
af67c9d7
SM
3486 * progmodes/etags.el (tags-completion-at-point-function):
3487 Improve last fix.
3488
1acad97c
SM
3489 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
3490
e298b5da
SS
34912012-03-21 Sam Steingold <sds@gnu.org>
3492
3493 * progmodes/etags.el (tags-completion-at-point-function):
3494 Avoid the error when point is inside the pattern.
3495
91d82a70
JY
34962012-03-21 John Yates <john@yates-sheets.org> (tiny change)
3497
3498 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
3499 line (Bug#10855).
3500
69188b79
CY
35012012-03-21 Drew Adams <drew.adams@oracle.com>
3502
3503 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
3504
99fc91fe
AK
35052012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
3506
3507 * ido.el (ido-set-current-directory, ido-read-internal)
3508 (ido-choose-completion-string, ido-completion-help): Handle nil
3509 value of ido-completion-buffer (Bug#11008).
3510
087bbb4c
SS
35112012-03-21 Sam Steingold <sds@gnu.org>
3512
3513 * window.el (switch-to-prev-buffer): Do not switch to a visible
3514 window previous buffer, just like with the frame previous buffers.
3515
fb5b8aca
CY
35162012-03-21 Chong Yidong <cyd@gnu.org>
3517
3518 * faces.el (make-face, make-empty-face, copy-face):
3519 * face-remap.el (face-remap-add-relative, face-remap-set-base):
3520 Doc fixes.
3521
dc9924b8
SM
35222012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
3523
3524 * wid-edit.el (widget-complete-field): Remove (bug#11051).
3525 (widget-complete): Remove broken use of it.
3526
f0bcceb9
CY
35272012-03-20 Chong Yidong <cyd@gnu.org>
3528
dc9924b8
SM
3529 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
3530 Use string-width and truncate-string-width to handle arbitrary
f0bcceb9
CY
3531 characters.
3532
ee52ebf3
TH
35332012-03-20 Tassilo Horn <tassilo@member.fsf.org>
3534
3535 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
3536 to draw rectangles, not squares. (Regression introduced by revno
3537 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
3538
4c5779ab
CY
35392012-03-18 Chong Yidong <cyd@gnu.org>
3540
3541 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
3542 it is not yet defined (for temacs).
3543
15360934
LL
35442012-03-18 Leo Liu <sdl.web@gmail.com>
3545
dc9924b8 3546 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
15360934 3547
d9a8eb66
EZ
35482012-03-17 Eli Zaretskii <eliz@gnu.org>
3549
3550 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
3551 (ispell-choices-win-default-height, ispell-silently-savep)
3552 (ispell-dictionary-alist, ispell-encoding8-command)
3553 (ispell-check-version, ispell-aspell-find-dictionary)
3554 (ispell-valid-dictionary-list, ispell-words-keyword)
3555 (ispell-get-word, ispell-internal-change-dictionary)
3556 (ispell-region, ispell-skip-region-list)
3557 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
3558 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
3559 (ispell-message-text-end, ispell-message)
3560 (ispell-buffer-local-parsing): Doc fix.
3561
f02ff80d
J
35622012-03-13 Jambunathan K <kjambunathan@gmail.com>
3563
3564 * htmlfontify.el: Add support for code block fontification for ODT
3565 export (Bug #9914).
3566 (hfy-optimisations): Define new option
3567 `body-text-only'
3568 (hfy-fontify-buffer): Honor above setting.
3569 (hfy-begin-span, hfy-end-span): New routines factored out form
3570 `hfy-fontify-buffer'.
3571 (hfy-begin-span-handler, hfy-end-span-handler): New variables
3572 that permit insertion of custom tags.
3573 (hfy-fontify-buffer): Use above handlers.
3574 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
3575 (hfy-face-to-css): Re-defined to be a variable.
dc9924b8 3576 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
75f1671a 3577 over multiple runs. This is made possible by having the caller let
f02ff80d
J
3578 bind a special variable `hfy-user-sheet-assoc'.
3579 (htmlfontify-string): New defun.
3580 (hfy-compile-face-map): Make sure that the last char in the
3581 buffer is correctly fontified.
3582 (hfy-face-resolve-face): Whitespace only change.
3583
9ac7a13f
EZ
35842012-03-17 Eli Zaretskii <eliz@gnu.org>
3585
3586 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
3587 message more clear.
3588
e2b5bdd7
LL
35892012-03-16 Leo Liu <sdl.web@gmail.com>
3590
3591 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
3592
2e492df3
AM
35932012-03-16 Alan Mackenzie <acm@muc.de>
3594
3595 Further optimise the handling of large macros.
3596
3597 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
3598 limit to a call of `c-literal-limits'.
3599 (c-determine-+ve-limit): New function.
dc9924b8
SM
3600 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
3601 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
2e492df3
AM
3602 In CASE 5B, restrict a search limit to 500.
3603 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
3604
3605 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
3606 Restrict macro bounds to +-500 from after-change's BEG END.
3607
50e94f0c
LL
36082012-03-16 Leo Liu <sdl.web@gmail.com>
3609
3610 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
3611
6f09f6ed
AH
36122012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
3613
3614 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
dc9924b8 3615 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6f09f6ed 3616
c7e73d51
GM
36172012-03-16 Glenn Morris <rgm@gnu.org>
3618
da986230
GM
3619 * view.el (view-buffer, view-buffer-other-window)
3620 (view-buffer-other-frame): Doc fixes re special mode-class.
3621
0835f01e
GM
3622 * subr.el (eval-after-load): If named feature is provided not from
3623 a file, run after-load forms. (Bug#10946)
3624
c7e73d51
GM
3625 * calendar/calendar.el (calendar-insert-at-column):
3626 Handle non-unit-width characters a bit better. (Bug#10978)
3627
3f2eafd1
CY
36282012-03-15 Chong Yidong <cyd@gnu.org>
3629
3630 * emacs-lisp/ring.el (ring-extend): New function.
3631 (ring-insert+extend): Extend the ring correctly (Bug#11019).
3632
3633 * comint.el (comint-read-input-ring)
3634 (comint-add-to-input-history): Grow comint-input-ring lazily.
3635
103af3fe
SM
36362012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
3637
663b1677
SM
3638 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
3639 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
3640
103af3fe
SM
3641 * imenu.el: Fix multiple inheritance breakage (bug#9199).
3642 (imenu-add-to-menubar): Don't add a redundant index.
3643 (imenu-update-menubar): Handle a dynamically composed keymap.
3644
899cb7cb
KY
36452012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
3646
3647 * mail/sendmail.el (mail-encode-header):
3648 Bind rfc2047-encode-encoded-words to nil.
3649
3809f91d
GM
36502012-03-13 Glenn Morris <rgm@gnu.org>
3651
3652 * calendar/calendar.el (calendar-string-spread):
3653 Handle non-unit-width characters a bit better. (Bug#10978)
3654
9e345a01
LL
36552012-03-13 Leo Liu <sdl.web@gmail.com>
3656
3657 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
3658 directory and file as argument (Bug#10822).
3659
4a07df36
KS
36602012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
3661
3662 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
3663 For dynamically generated code, follow $PC.
3664 (gdb-disassembly-handler-custom): Handle no function name case.
3665
4aaa9356
TL
36662012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
3667
3668 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
3669 * emulation/ws-mode.el (ws-query-replace):
3670 * sort.el (sort-regexp-fields):
3671 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
3672
225979da
SM
36732012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
3674
3675 * dabbrev.el: Fix cycle completion order (bug#10963).
3676 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
3677 (dabbrev-completion): Don't use an obarray; provide
3678 a cycle-sort-function.
3679
e2f1fdab
LL
36802012-03-12 Leo Liu <sdl.web@gmail.com>
3681
dc9924b8 3682 * simple.el (kill-new): Use equal-including-properties for comparison.
e2f1fdab
LL
3683 (kill-do-not-save-duplicates): Doc fix.
3684
b19490ed
SM
36852012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
3686
3687 * dabbrev.el: Fix cycle completion (bug#10963).
3688 Use lexical binding and wrap to 80 columns.
3689 (dabbrev-completion): Delay computing the list of completions.
3690
4b05d722
KH
36912012-03-12 Kenichi Handa <handa@m17n.org>
3692
3693 * international/quail.el (quail-insert-kbd-layout): Surround each
3694 row by LRO and PDF instead of inserting many LRMs. Pad the left
3695 and right of each non-spacing marks. Insert invisible space
3696 between lower and upper characters to prevent composition.
3697
dbbc2e69
SM
36982012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
3699
3700 * minibuffer.el (minibuffer-complete): Don't get confused when the
3701 function is run twice via different commands (bug#10958).
3702 (complete-with-action): Fix docstring.
3703
292112ed
CY
37042012-03-12 Chong Yidong <cyd@gnu.org>
3705
5d1ac394
CY
3706 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
3707 (nxml-completion-at-point-function): New function.
3708 (nxml-mode): Use it.
3709 (nxml-bind-meta-tab-to-complete-flag): Default to t.
3710
292112ed
CY
3711 * emacs-lisp/package.el (package-unpack, package-unpack-single):
3712 Load generated autoloads file before byte compiling (Bug#10970).
3713 (package--make-autoloads-and-compile): New helper fun.
3714
4098f8f7
CS
37152012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
3716
3717 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
3718
8f754691
MA
37192012-03-11 Michael Albinus <michael.albinus@gmx.de>
3720
3721 * autorevert.el (auto-revert-handler): Ensure, that
3722 file-readable-p is applied only for local files or in
3723 auto-revert-tail-mode.
3724
e29ab36b
AS
37252012-03-11 Andreas Schwab <schwab@linux-m68k.org>
3726
dbbc2e69
SM
3727 * server.el (server-eval-at): Handle non-tcp connections.
3728 Decode result string.
ad0bf5b6 3729
e29ab36b
AS
3730 * server.el (server-msg-size): New constant.
3731 (server-reply-print): New function.
3732 (server-eval-and-print): Use it.
3733 (server-eval-at): Use server-quote-arg and server-unquote-arg.
3734 Handle -print-nonl.
3735
de5939ba
CS
37362012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
3737
3738 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
3739 (Bug#10987).
3740
0c93eabf
CY
37412012-03-11 Chong Yidong <cyd@gnu.org>
3742
397a688f
CY
3743 * simple.el (goto-line): Doc fix (Bug#9938).
3744
2cc775f9
CY
3745 * subr.el (save-window-excursion): Doc fix (Bug#9979).
3746
0c93eabf
CY
3747 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
3748 when finished (Bug#10963).
3749
c491fa41
MR
37502012-03-11 Martin Rudalics <rudalics@gmx.at>
3751
3752 * window.el (split-window-below): Fix bug in case where
3753 split-window-keep-point is nil (Bug#10971).
3754
300e8fa5
JL
37552012-03-11 Juri Linkov <juri@jurta.org>
3756
3757 * replace.el (replace-highlight): Set isearch-word to nil
3758 unconditionally. (Bug#10887)
3759
dbf6c5a1
EZ
37602012-03-10 Eli Zaretskii <eliz@gnu.org>
3761
3762 * net/mairix.el (mairix-replace-invalid-chars): Rename from
3763 mairix-replace-illegal-chars; all callers changed. Don't remove
dc9924b8 3764 ^, ~, and = characters: they are meaningful in mairix search specs.
dbf6c5a1
EZ
3765 (mairix-widget-create-query): Add usage information about mairix
3766 search forms: negating words, searching for substrings, etc.
3767
b9e501de
JP
37682012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
3769
3770 * international/fontset.el (font-encoding-alist): Add an entry for
3771 ksx1001 (Bug#5667).
3772
92795c91
RS
37732012-03-10 Richard Stallman <rms@gnu.org>
3774
1694e6c1
RS
3775 * mail/sendmail.el (mail-encode-header):
3776 Set rfc2047-encode-encoded-words.
3777
607e8555
RS
3778 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
3779
de3bc99a
RS
3780 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
3781 view buffer means not swapped.
3782 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
3783 (rmail-write-region-annotate): Error if real text has disappeared.
3784
92795c91
RS
3785 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
3786
699bd04e
CY
37872012-03-10 Chong Yidong <cyd@gnu.org>
3788
3789 * emulation/cua-rect.el (cua--init-rectangles):
dbbc2e69
SM
3790 * emulation/cua-base.el (cua--init-keymaps):
3791 Add delete-forward-char to remappings (Bug#9666).
699bd04e 3792
570a1714
MR
37932012-03-10 Martin Rudalics <rudalics@gmx.at>
3794
dbbc2e69
SM
3795 * speedbar.el (speedbar-unhighlight-one-tag-line):
3796 Avoid unhighlighting due to frame switching (Bug#10275).
570a1714 3797
82dcf4e4
CY
37982012-03-10 Chong Yidong <cyd@gnu.org>
3799
7a2c7ca7
CY
3800 * minibuffer.el (completion-in-region, completion-help-at-point):
3801 Give the completion field overlay a high priority (Bug#6830).
3802
82dcf4e4
CY
3803 * dired.el (dired-goto-file): Recognize absolute file name
3804 listings (Bug#7126).
3805 (dired-goto-file-1): New helper function.
3806 (dired-toggle-read-only): Inhibit warnings.
3807
052e28ac
MA
38082012-03-09 Michael Albinus <michael.albinus@gmx.de>
3809
75f1671a 3810 * net/dbus.el (dbus-property-handler): Return empty array if
052e28ac
MA
3811 there are no properties.
3812
95d5e396
LL
38132012-03-09 Leo Liu <sdl.web@gmail.com>
3814
3815 * savehist.el (savehist-printable): Stricter check for string
3816 value (Bug#10937).
3817
3f018d6d
EZ
38182012-03-09 Eli Zaretskii <eliz@gnu.org>
3819
dbbc2e69
SM
3820 * mail/smtpmail.el (smtpmail-send-it):
3821 Bind coding-system-for-write to *-unix, so that FCC files are kept in
3f018d6d
EZ
3822 valid mbox format.
3823
f7fd3d79
GM
38242012-03-09 Glenn Morris <rgm@gnu.org>
3825
3826 * files.el (dir-locals-find-file):
3827 Don't check result is regular, readable.
3828 (dir-locals-read-from-file): Demote errors.
3829
6ff6e72f
EZ
38302012-03-08 Eli Zaretskii <eliz@gnu.org>
3831
dbbc2e69
SM
3832 * international/quail.el (quail-insert-kbd-layout):
3833 Insert invisible LRM characters before each character in a keyboard
6ff6e72f
EZ
3834 layout cell, to prevent their reordering by bidi display engine.
3835 For details, see the discussion in
3836 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
3837
9cec7834
AM
38382012-03-08 Alan Mackenzie <acm@muc.de>
3839
3840 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
3841 the starting position; make it extend the marked region when
3842 invoked repeatedly - all under appropriate circumstances.
3843 Fixes bugs #5525, #10906.
3844
9a40b8d4
GM
38452012-03-08 Glenn Morris <rgm@gnu.org>
3846
3847 * files.el (locate-dominating-file, dir-locals-find-file):
3848 Undo 2012-03-06 change.
3849
7a08ed35
EZ
38502012-03-07 Eli Zaretskii <eliz@gnu.org>
3851
dbbc2e69
SM
3852 * international/quail.el (quail-help):
3853 Force bidi-paragraph-direction be left-to-right. See discussion in
7a08ed35
EZ
3854 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
3855 for the reason.
3856
5aca4f71 38572012-03-07 Michael Albinus <michael.albinus@gmx.de>
6612a284
MA
3858
3859 Avoid superfluous registering of signals. (Bug#10807)
3860
3861 * notifications.el (notifications-on-action-object)
3862 (notifications-on-close-object): New defvars.
3863 (notifications-on-action-signal, notifications-on-closed-signal):
3864 Unregister the signal if not needed any longer.
3865 (notifications-notify): Register `notifications-action-signal' or
3866 `notifications-closed-signal', if :on-action or :on-close has been
3867 passed as argument.
3868
78e8b10a
CY
38692012-03-07 Chong Yidong <cyd@gnu.org>
3870
3871 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
3872 non-X platforms.
3873
69481eb8
GM
38742012-03-06 Glenn Morris <rgm@gnu.org>
3875
3876 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
3877 (x-disown-selection-internal, x-get-selection-internal):
3878 Doc fix (add arglist signatures). (Bug#10783)
3879
133b8e11
KS
38802012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
3881
3882 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
3883 Handle breakpoints with no "type".
3884
99a83064
GM
38852012-03-06 Glenn Morris <rgm@gnu.org>
3886
3887 * files.el (locate-dominating-file): Add optional predicate argument.
3888 (dir-locals-find-file): Make use of above change.
3889
17798e78
TTN
38902012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
3891
3892 * info.el (Info-insert-dir): Also try "dir.gz".
3893
eb182446
GM
38942012-03-06 Glenn Morris <rgm@gnu.org>
3895
8f2114ee
GM
3896 * files.el (dir-locals-find-file):
3897 Ignore non-readable or non-regular files. (Bug#10928)
3898
eb182446
GM
3899 * files.el (locate-dominating-file): Doc fix.
3900
24679323
AS
39012012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
3902
3903 * calendar/calendar.el (calendar-set-mode-line):
3904 `getenv' returns a string. (Bug#10951)
3905
01d972a9
LL
39062012-03-05 Leo Liu <sdl.web@gmail.com>
3907
109aa8a9
LL
3908 * simple.el (backward-delete-char-untabify): Constrain point to
3909 field (Bug#10939).
3910
01d972a9
LL
3911 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
3912
10607bea
CY
39132012-03-05 Chong Yidong <cyd@gnu.org>
3914
3915 * simple.el (count-words): If called from Lisp, return the word
3916 count, for symmetry with `count-lines'. Arglist changed.
3917 (count-words--message): Args changed. Consolidate counting code
3918 from count-words and count-words-region.
3919 (count-words-region): Caller changed.
3920 (count-lines-region): Make it an obsolete alias.
3921
5dd11cfe
TH
39222012-03-04 Tassilo Horn <tassilo@member.fsf.org>
3923
3924 * saveplace.el (save-place-to-alist)
3925 (save-place-ignore-files-regexp): Allow value nil to disable this
3926 feature.
3927
c349f4e6
CY
39282012-03-04 Chong Yidong <cyd@gnu.org>
3929
3930 * faces.el (face-spec-reset-face): For the default face, reset the
3931 attributes to default values (Bug#10748).
3932
e627be4c
LMI
39332012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
3934
3935 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
3936 previous patch: Check `message-send-mail-function', and not the
3937 default function (bug#10897).
3938
ebeabff4
MA
39392012-03-04 Michael Albinus <michael.albinus@gmx.de>
3940
a41a6cf4
MA
3941 * notifications.el (notifications-on-action-signal)
3942 (notifications-on-closed-signal): Check for unique service name of
3943 incoming event. Fix error in removing entry.
ebeabff4 3944 (top): Register for signals with wildcard service name.
a41a6cf4 3945 (notifications-notify): Use daemon unique service name for map entries.
ebeabff4 3946
c1ca42b4
CY
39472012-03-04 Chong Yidong <cyd@gnu.org>
3948
dc9924b8 3949 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
c1ca42b4 3950
ea16568d
GM
39512012-03-04 Glenn Morris <rgm@gnu.org>
3952
3953 * abbrev.el (copy-abbrev-table, abbrev-table-p)
3954 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
3955 (expand-abbrev, define-abbrev-table): Doc fixes.
3956
fbae4637
LMI
39572012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3958
3959 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
3960 `message-default-send-mail-function' and not `send-mail-function'
3961 when doing the prompting for `sendmail-query-once' before sending
3962 in Message buffers (bug#10897).
3963
a1e7225c
LMI
3964 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
3965 This is inconsistent with all the other stream functions, which leave
3966 the setting up to the higher levels (if so wanted) (bug#10931).
3967
56d093a9
AM
39682012-03-02 Alan Mackenzie <acm@muc.de>
3969
3970 Depessimize the handling of very large macros.
3971
3972 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
3973 (c-macro-cache-syntactic): New variables to implement a one
3974 element macro cache.
3975 (c-invalidate-macro-cache): New function.
3976 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
3977 Adapt to use the new cache.
3978 (c-state-safe-place): Use better the cache of safe positions.
3979 (c-state-semi-nonlit-pos-cache)
3980 (c-state-semi-nonlit-pos-cache-limit):
3981 New variables for...
3982 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
3983 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
dbbc2e69
SM
3984 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
3985 Use c-state-semi-safe-place.
56d093a9 3986
dbbc2e69
SM
3987 * progmodes/cc-langs.el (c-get-state-before-change-functions):
3988 Add c-invalidate-macro-cache to the C, C++, Obj entries.
56d093a9 3989
817e5c3d
MA
39902012-03-02 Michael Albinus <michael.albinus@gmx.de>
3991
dbbc2e69
SM
3992 * jka-compr.el (jka-compr-call-process):
3993 Apply `file-accessible-directory-p' only when the default directory is
817e5c3d
MA
3994 not remote.
3995
a032a702
MA
39962012-03-01 Michael Albinus <michael.albinus@gmx.de>
3997
3998 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
3999 access of FILE2, if FILE1 does not exist.
4000
99a54f21
MA
4001 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
4002 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
4003
4004 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
4005 Add "PAGER=" to `process-environment'.
4006
f6561e1f
MM
40072012-03-01 Michael R. Mauger <mmaug@yahoo.com>
4008
4009 * progmodes/sql.el: Bug fix
4010 (sql-get-login-ext): Save login values in globals.
4011 (sql-get-login): Use new version of `sql-get-login-ext'.
4012 (sql-interactive-mode): Set global `sql-connection' to nil.
4013 (sql-connect): Set global values for connection.
4014 (sql-product-interactive): Save global values as buffer local.
4015
2d44d9cc
LL
40162012-02-29 Leo Liu <sdl.web@gmail.com>
4017
4018 * abbrev.el (define-abbrevs): Reset sys to nil.
4019
96b49301 40202012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4021
bf7f9bc5
JB
4022 * files.el (file-equal-p): Rename from `files-equal-p'.
4023 Return nil when one or both files don't exist.
96b49301 4024 (file-subdir-of-p): Now only top directory must exists,
4025 return nil if it doesn't.
bf7f9bc5
JB
4026 (copy-directory): No need to test with `file-subdir-of-p' after
4027 creating dir.
4028 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
4029 to `file-equal-p'.
96b49301 4030
44e97401
GM
40312012-02-28 Glenn Morris <rgm@gnu.org>
4032
4033 * shell.el (shell-mode):
4034 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
4035 * play/landmark.el (landmark-font-lock-face-O):
4036 * play/handwrite.el (handwrite):
4037 * play/gomoku.el (gomoku-O):
4038 * net/browse-url.el (browse-url-browser-display):
4039 * international/mule.el (define-charset):
4040 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
4041 * filesets.el (filesets-find-file-delay):
4042 * eshell/em-xtra.el (eshell-xtra):
4043 * eshell/em-unix.el (eshell-grep):
4044 * emulation/viper.el (viper-mode):
4045 * emacs-lisp/regexp-opt.el (regexp-opt-group):
4046 * emacs-lisp/easymenu.el (easy-menu-define):
4047 * calendar/timeclock.el (timeclock-use-display-time):
4048 * bs.el (bs-mode):
4049 * bookmark.el (bookmark-save-flag):
4050 Doc fix (standardize possessive apostrophe usage).
4051
c98c6276
CY
40522012-02-27 Chong Yidong <cyd@gnu.org>
4053
bf7f9bc5
JB
4054 * emulation/viper-cmd.el (viper-intercept-ESC-key):
4055 Fix key-binding lookup for ESC key (Bug#9146).
ecf5f74e 4056
c98c6276
CY
4057 * font-lock.el (font-lock-specified-p): Rename from
4058 font-lock-spec-present. Callers changed.
4059
9c62cd04 40602012-02-27 Daniel Hackney <dan@haxney.org>
8ac9e529 4061
bf7f9bc5
JB
4062 * emacs-lisp/package.el (package-compute-transaction):
4063 Handle holding a package version to t in package-load-list.
8ac9e529 4064
530739c9
MA
40652012-02-26 Michael Albinus <michael.albinus@gmx.de>
4066
4067 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
4068 (tramp-get-inode, tramp-get-device): Use cached values.
4069
487915d7
AM
40702012-02-26 Alan Mackenzie <acm@muc.de>
4071
4072 Check there is a font-lock specification before doing initial
4073 fontification.
4074
4075 * font-core.el (font-lock-mode): Move the conditional from
4076 :after-hook to font-lock-initial-fontify.
4077 (font-lock-default-function): Move the check for a specification
4078 to font-lock-spec-present.
4079
dc9924b8 4080 * font-lock.el (font-lock-initial-fontify): Call ...
487915d7
AM
4081 (font-lock-spec-present): New function.
4082
4fd96557
JB
40832012-02-26 Jim Blandy <jimb@red-bean.com>
4084
4085 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
4086 (gdb-send): Apply it to the operand of the '-interpreter-exec
4087 console' command, so that we can pass arguments with (say) quotes
4088 in them. Store exact string sent in gdb-debug-log (Bug#10765).
4089
9a4888c0
CY
40902012-02-26 Chong Yidong <cyd@gnu.org>
4091
07498861
CY
4092 * help-fns.el (describe-function-1): Clarify description of
4093 remapping (Bug#10844).
4094
9a4888c0
CY
4095 * files.el (files-equal-p): Doc fix.
4096 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
4097 and quit the loop once a mismatch is found.
4098
ea8fb88d
JB
40992012-02-25 Juanma Barranquero <lekktu@gmail.com>
4100
4101 * bs.el (bs--show-with-configuration): Don't throw an error
4102 if the window cannot be split; otherwise, subsequent calls to
4103 bs-show fail, restoring a stale window config. (Bug#10882)
4104
525795c1
JD
41052012-02-25 Jan Djärv <jan.h.d@swipnet.se>
4106
4107 * term/ns-win.el (global-map): Bind ns-drag-file to
4108 ns-find-file (Bug#5855, Bug#10050).
4109
f008086f
AS
41102012-02-25 Andreas Schwab <schwab@linux-m68k.org>
4111
4112 * calendar/parse-time.el (parse-time-string): Allow extractor to
4113 return nil.
4114
a3fcfa99
MA
41152012-02-25 Michael Albinus <michael.albinus@gmx.de>
4116
91027d08
JB
4117 * net/tramp.el (tramp-file-name-for-operation):
4118 Add `files-equal-p' and `file-subdir-of-p'.
a3fcfa99
MA
4119
4120 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
91027d08
JB
4121 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
4122 Add COPY-CONTENTS argument.
a3fcfa99 4123
67b0de11
CY
41242012-02-25 Chong Yidong <cyd@gnu.org>
4125
4126 Add custom groups for VC backends, for consistency with vc-bzr.
4127
4128 * vc/vc-arch.el (vc-arch):
4129 * vc/vc-cvs.el (vc-cvs):
4130 * vc/vc-git.el (vc-git):
4131 * vc/vc-hg.el (vc-hg):
4132 * vc/vc-mtn.el (vc-mtn):
4133 * vc/vc-rcs.el (vc-rcs):
4134 * vc/vc-sccs.el (vc-sccs):
4135 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
4136 All relevant defcustoms reassigned.
4137
3c9dfce6
CY
41382012-02-25 Chong Yidong <cyd@gnu.org>
4139
1339bf43
CY
4140 * newcomment.el (comment-styles): Add autoload (Bug#10868).
4141
3c9dfce6
CY
4142 * term/x-win.el (x-initialize-window-system): Reduce default for
4143 x-selection-timeout to 5 seconds (Bug#8869).
4144
25b2e303 41452012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4146
ec70a47d
GM
4147 * files.el (files-equal-p, file-subdir-of-p): New functions.
4148 (copy-directory): Error when trying to copy a directory on itself.
25b2e303 4149 Add missing copy-contents arg to tramp handler.
ec70a47d
GM
4150 * dired-aux.el (dired-copy-file-recursive): Same.
4151 (dired-create-files): Modify destination when source is equal to
4152 dest when copying files.
53a46cd0 4153 Return also when dest is a subdir of source. (Bug#10489)
25b2e303 4154
914260cd
MA
41552012-02-24 Michael Albinus <michael.albinus@gmx.de>
4156
4157 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
4158 (Bug#10874)
4159
2cb228f7
AM
41602012-02-23 Alan Mackenzie <acm@muc.de>
4161
4162 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
4163 parameter "after-hook:" to allow the expansion to run code after
4164 the execution of the mode hooks.
4165
4166 * font-lock.el (font-lock-initial-fontify): New function extracted
91027d08 4167 from font-lock-mode-internal.
2cb228f7 4168
91027d08 4169 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
2cb228f7
AM
4170 :after-hook.
4171
8f0fde21
SM
41722012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
4173
3e88618b
SM
4174 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
4175 (completion--cache-all-sorted-completions): New function.
4176 (completion-all-sorted-completions): Use it.
4177 (completion--do-completion, minibuffer-force-complete):
4178 Use it to re-instate the flush hook.
4179
8f0fde21
SM
4180 * icomplete.el (icomplete-completions): Replace last fix with a better
4181 one (bug#10850).
4182
8e911f6f
DG
41832012-02-23 Dmitry Gutov <dgutov@yandex.ru>
4184
4185 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
4186 when it might call us back infinitely (bug#10797).
4187
49fe4321
GM
41882012-02-23 Glenn Morris <rgm@gnu.org>
4189
4190 * minibuffer.el (completion-category-overrides): Doc fix.
4191
b291b572
SM
41922012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
4193
4194 * minibuffer.el (completion-table-with-context): Fix inf-loop.
4195 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
4196
31a9ef2e
GM
41972012-02-23 Glenn Morris <rgm@gnu.org>
4198
5e6e6794 4199 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
31a9ef2e
GM
4200 (authors-obsolete-files-regexps, authors-ignored-files)
4201 (authors-ambiguous-files, authors-renamed-files-alist):
4202 Add more entries.
4203
0bd1e074
JL
42042012-02-23 Juri Linkov <juri@jurta.org>
4205
4206 * isearch.el (isearch-occur): Sync interactive spec with occur's
4207 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
4208
b617673c
JL
4209 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
4210
19e9789e
JL
42112012-02-22 Juri Linkov <juri@jurta.org>
4212
4213 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
4214 (ucs-insert): Doc fix. Check for hex digits in the string.
4215 Don't display `nil' in the error message. (Bug#10857)
4216
f41ce09d
AM
42172012-02-22 Alan Mackenzie <acm@muc.de>
4218
7a71b18d 4219 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
f41ce09d 4220
ac2eceee
GM
42212012-02-22 Glenn Morris <rgm@gnu.org>
4222
4223 * ffap.el (ffap-c-path):
4224 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
4225
abd1f678
CY
42262012-02-22 Chong Yidong <cyd@gnu.org>
4227
4228 * custom.el (load-theme): Doc fix.
4229
f25aef2e
GM
42302012-02-22 Glenn Morris <rgm@gnu.org>
4231
4232 * dired-x.el (dired-guess-shell-alist-default):
4233 Remove escape sequences from nroff output. (Bug#172)
4234
5f8dc2ca
GM
42352012-02-21 Glenn Morris <rgm@gnu.org>
4236
6ff86ec4
GM
4237 * vc/emerge.el (emerge-defvar-local):
4238 Set `permanent-local' property rather than unused `preserved'.
4239
be3223a3 4240 * textmodes/picture.el (picture-delete-char): New alias.
5f8dc2ca
GM
4241 (picture-mode-map): Use it. (Bug#10860)
4242 (picture-mode): Doc fix.
4243
3fe58f4f
JB
42442012-02-21 Juanma Barranquero <lekktu@gmail.com>
4245
4246 * newcomment.el (uncomment-region-default): Remove unused binding.
4247
f9a998c3
GM
42482012-02-21 Glenn Morris <rgm@gnu.org>
4249
4250 * textmodes/picture.el (picture-motion, picture-motion-reverse)
4251 (picture-self-insert, picture-tab-chars): Doc fix.
4252 (picture-mode-map): Fix C-a, C-e.
4253
c6029348
GM
42542012-02-20 Glenn Morris <rgm@gnu.org>
4255
4256 * emacs-lisp/authors.el (authors-aliases): Add another entry.
4257
ab1ce9d7
LL
42582012-02-20 Leo Liu <sdl.web@gmail.com>
4259
4260 * icomplete.el (icomplete-completions): Check FROM arg before
4261 passing to substring (Bug#10850).
4262
0fd40f89
CY
42632012-02-19 Chong Yidong <cyd@gnu.org>
4264
4265 * comint.el: Require ansi-color.
4266 (comint-output-filter-functions): Add ansi-color-process-output.
4267
4268 * ansi-color.el: Don't set comint-output-filter-functions; it is
4269 now in the initial value defined in comint.el.
4270 (ansi-color-apply-face-function): New variable.
4271 (ansi-color-apply-on-region): Use it.
4272 (ansi-color-apply-overlay-face): New function.
4273
4274 * shell.el (shell): No need to require ansi-color.
4275 (shell-mode): Use ansi-color-apply-face-function to highlight
4276 color escapes using font-lock-face property (Bug#10835).
4277
20af2394
CY
42782012-02-19 Chong Yidong <cyd@gnu.org>
4279
4280 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
4281 mode-line formats (Bug#10839).
4282
e23a3fbe
GM
42832012-02-18 Glenn Morris <rgm@gnu.org>
4284
b474519e
GM
4285 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
4286
4287 * mail/undigest.el (unforward-rmail-message): Doc fix.
4288
e23a3fbe
GM
4289 * saveplace.el (save-place-ignore-files-regexp): Add :version.
4290
57939ff4
EZ
42912012-02-18 Eli Zaretskii <eliz@gnu.org>
4292
4293 * international/characters.el (script-list): Sync with the latest
4294 Unicode Character Database.
4295
0c23686e
AS
42962012-02-18 Andreas Schwab <schwab@linux-m68k.org>
4297
4298 * international/titdic-cnv.el: Remove duplicate coding tag.
4299 * language/cham.el: Likewise.
4300 * language/tai-viet.el: Likewise.
4301
6818b449
GM
43022012-02-18 Glenn Morris <rgm@gnu.org>
4303
4304 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
4305 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
4306 (calendar-bahai-all-holidays-flag, calendar-other-dates):
4307 * calendar/diary-lib.el (diary-abbreviated-year-flag):
4308 * calendar/holidays.el (holiday-bahai-holidays)
4309 (calendar-holidays, list-holidays):
4310 Use utf-8 Bahá'í in doc-strings, menus, etc.
4311
0311a3fc
TH
43122012-02-17 Tassilo Horn <tassilo@member.fsf.org>
4313
4314 * saveplace.el (save-place-ignore-files-regexp): New variable
4315 allowing for excluding files from saving their location of point.
4316 The default value matches the temporary commit message editing
4317 files from Git, SVN, Bazaar, and Mercurial.
4318 (save-place-to-alist): Use it.
4319
eb864a71
LM
43202012-02-17 Lawrence Mitchell <wence@gmx.li>
4321 Stefan Monnier <monnier@iro.umontreal.ca>
4322
4323 * newcomment.el (uncomment-region-default): Don't leave extra space
4324 when an arg is provided (bug#8150).
4325
ee0ce425
TZ
43262012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
4327
eb864a71 4328 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
ee0ce425 4329
95ddf442
GM
43302012-02-17 Glenn Morris <rgm@gnu.org>
4331
4332 * net/socks.el: Require network-stream. (Bug#10599)
4333
48dd1e39 43342012-02-17 Kenichi Handa <handa@m17n.org>
c406be43
KH
4335
4336 * international/charprop.el:
4337 * international/uni-name.el:
4338 * international/uni-old-name.el:
4339 * international/uni-comment.el: Regenerate.
4340
d68cd087
GM
43412012-02-16 Glenn Morris <rgm@gnu.org>
4342
4343 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
4344 Interactively in calendar buffer, give an error if not on a date.
4345
13932042
GM
43462012-02-15 Glenn Morris <rgm@gnu.org>
4347
4348 * shell.el (shell-delimiter-argument-list):
4349 Revert 2011-02-17 change. (Bug#8027)
4350
c3a70e2b
CY
43512012-02-15 Chong Yidong <cyd@gnu.org>
4352
60236b0d
CY
4353 * minibuffer.el (completion-at-point-functions): Doc fix.
4354
c3a70e2b
CY
4355 * custom.el (defcustom): Doc fix; note use of defvar.
4356
9f26dc24
GM
43572012-02-15 Glenn Morris <rgm@gnu.org>
4358
4359 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
4360 Doc fixes.
4361
6546b134
GM
43622012-02-14 Glenn Morris <rgm@gnu.org>
4363
4364 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
4365
d29b2b4c
LI
43662012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
4367
4368 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
4369 way the ports list is computed.
835bdcba
LI
4370 (smtpmail-query-smtp-server): Prompt the user for a port number if
4371 we can't connect to any of the standard ports (bug#10810).
d29b2b4c 4372
08dcdbc9
TZ
43732012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
4374
4375 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
4376
2605051a
GM
43772012-02-13 Glenn Morris <rgm@gnu.org>
4378
4379 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
4380
7ee99f32
TZ
43812012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
4382
4383 * net/gnutls.el (gnutls-trustfiles): New variable.
4384 (gnutls-negotiate): Use it.
4385
5f0af64f
LI
43862012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
4387
4388 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
4389 does its stuff if Gnus is running.
4390
c14fcc95
AM
43912012-02-13 Alan Mackenzie <acm@muc.de>
4392
4393 Fix a loop in c-set-fl-decl-start.
4394
7a71b18d 4395 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
c14fcc95
AM
4396 c-backward-syntactic-ws actually moves backwards.
4397
142b4d90
LL
43982012-02-13 Leo Liu <sdl.web@gmail.com>
4399
4400 * net/rcirc.el (rcirc-markup-attributes): Move point to the
4401 beginning so that all \C-o chars are removed.
4402
fa9958a6
TZ
44032012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
4404
dc9924b8 4405 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
fa9958a6 4406
0bc5886a
AM
44072012-02-12 Alan Mackenzie <acm@muc.de>
4408
4409 Fix infinite loop with long macros.
4d6769e1 4410 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
0bc5886a 4411
d4bd55e7
CY
44122012-02-12 Chong Yidong <cyd@gnu.org>
4413
4414 * window.el (display-buffer): Doc fix (Bug#10785).
4415
66f3fe22
GM
44162012-02-12 Glenn Morris <rgm@gnu.org>
4417
bd7da63e
GM
4418 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
4419 (x-disown-selection-internal, x-get-selection-internal):
4420 Sync docs with the xselect.c versions.
4421
66f3fe22
GM
4422 * allout-widgets.el: Add missing license notice.
4423
3e0d2fa7
GM
44242012-02-11 Glenn Morris <rgm@gnu.org>
4425
cfecdf09
GM
4426 * select.el (x-get-selection-internal, x-own-selection-internal)
4427 (x-disown-selection-internal):
4428 * x-dnd.el (x-get-selection-internal): Update declarations.
4429
6d216d7f
GM
4430 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
4431
2bed3f04
GM
4432 * window.el (window-sides-slots):
4433 * tool-bar.el (tool-bar-position):
4434 * term/xterm.el (xterm-extra-capabilities):
4435 * ses.el (ses-self-reference-early-detection):
4436 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
4437 (verilog-auto-wire-type)
4438 (verilog-auto-delete-trailing-whitespace)
4439 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
4440 (verilog-auto-tieoff-declaration):
4441 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
4442 (sql-oracle-statement-starters, sql-oracle-scan-on):
4443 * progmodes/prolog.el (prolog-align-comments-flag)
4444 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
4445 (prolog-left-indent-regexp, prolog-paren-indent-p)
4446 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
4447 (prolog-types, prolog-mode-specificators)
4448 (prolog-determinism-specificators, prolog-directives)
4449 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
4450 (prolog-electric-dot-flag)
4451 (prolog-electric-dot-full-predicate-template)
4452 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
4453 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
4454 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
4455 (prolog-program-switches, prolog-prompt-regexp)
4456 (prolog-debug-on-string, prolog-debug-off-string)
4457 (prolog-trace-on-string, prolog-trace-off-string)
4458 (prolog-zip-on-string, prolog-zip-off-string)
4459 (prolog-use-standard-consult-compile-method-flag)
4460 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
4461 (prolog-imenu-max-lines, prolog-info-predicate-index)
4462 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
4463 (prolog-char-quote-workaround):
4464 * progmodes/cc-vars.el (c-defun-tactic):
4465 * net/tramp.el (tramp-encoding-command-interactive)
4466 (tramp-local-end-of-line):
4467 * net/soap-client.el (soap-client):
4468 * net/netrc.el (netrc-file):
4469 * net/gnutls.el (gnutls):
4470 * minibuffer.el (completion-category-overrides)
4471 (completion-cycle-threshold)
4472 (completion-pcm-complete-word-inserts-delimiters):
4473 * man.el (Man-name-local-regexp):
4474 * mail/feedmail.el (feedmail-display-full-frame):
4475 * international/characters.el (glyphless-char-display-control):
4476 * eshell/em-ls.el (eshell-ls-date-format):
4477 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
4478 (lisp-lambda-list-keyword-parameter-indentation)
4479 (lisp-lambda-list-keyword-parameter-alignment):
4480 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
4481 * dired-x.el (dired-omit-verbose):
4482 * cus-theme.el (custom-theme-allow-multiple-selections):
4483 * calc/calc.el (calc-highlight-selections-with-faces)
4484 (calc-lu-field-reference, calc-lu-power-reference)
4485 (calc-note-threshold):
4486 * battery.el (battery-mode-line-limit):
4487 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
4488 (archive-7z-update):
4489 * allout.el (allout-prefixed-keybindings)
4490 (allout-unprefixed-keybindings)
4491 (allout-inhibit-auto-fill-on-headline)
4492 (allout-flattened-numbering-abbreviation):
4493 * allout-widgets.el (allout-widgets-auto-activation)
4494 (allout-widgets-icons-dark-subdir)
4495 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
4496 (allout-widgets-theme-dark-background)
4497 (allout-widgets-theme-light-background)
4498 (allout-widgets-item-image-properties-emacs)
4499 (allout-widgets-item-image-properties-xemacs)
4500 (allout-widgets-run-unit-tests-on-load)
4501 (allout-widgets-time-decoration-activity)
4502 (allout-widgets-hook-error-post-time)
4503 (allout-widgets-track-decoration):
4504 Add missing :version tags to new defcustoms and defgroups.
4505
5fec1b8e
GM
4506 * progmodes/sql.el (sql-ansi-statement-starters)
4507 (sql-oracle-statement-starters): Add custom type.
4508
3e0d2fa7
GM
4509 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
4510 (prolog-system-version): Give it a type.
4511
90b671e2
EZ
45122012-02-11 Eli Zaretskii <eliz@gnu.org>
4513
4514 * term/pc-win.el (x-select-text, x-selection-owner-p)
4515 (x-own-selection-internal, x-disown-selection-internal)
4516 (x-get-selection-internal): Sync doc strings and argument lists
4517 with xselect.c, common-win.el and x-win.el. (Bug#10783)
4518
5eac0c02
LL
45192012-02-11 Leo Liu <sdl.web@gmail.com>
4520
4521 * progmodes/python.el (python-end-of-statement): Fix infinite
4522 loop. (Bug#10788)
4523
f82cb659
GM
45242012-02-10 Glenn Morris <rgm@gnu.org>
4525
4526 * international/mule-cmds.el (unify-8859-on-encoding-mode)
4527 (unify-8859-on-decoding-mode): Properly mark as obsolete.
4528
cc26d239
LI
45292012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
4530
4531 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
4532 about SMTP before checking the From header.
4533
91027d08 4534 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
cc26d239
LI
4535 into own function for reuse by emacsbug.el.
4536
1be3ca5a
LL
45372012-02-10 Leo Liu <sdl.web@gmail.com>
4538
4539 * subr.el (condition-case-unless-debug): Rename from
4540 condition-case-no-debug. All callers changed.
4541 (with-demoted-errors): Fix caller.
4542
4543 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
4544 * nxml/rng-valid.el (rng-do-some-validation):
4545 * emacs-lisp/package.el (package-refresh-contents)
4546 (package-menu-execute):
4547 * desktop.el (desktop-create-buffer):
91027d08 4548 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
1be3ca5a 4549
b011fbfe
GM
45502012-02-10 Glenn Morris <rgm@gnu.org>
4551
b2096d72
GM
4552 * textmodes/bibtex.el:
4553 Add missing :version tags for new/changed defcustoms.
4554
b011fbfe
GM
4555 * files.el (remote-file-name-inhibit-cache): Doc fixes.
4556
4c7e65bf
LI
45572012-02-09 Lars Ingebrigtsen <larsi@rusty>
4558
4559 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
4560 (smtpmail-via-smtp): Use it, or fall back on the From address.
4561 (smtpmail-send-it): Ditto.
4562
f3934f6f
SM
45632012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
4564
4565 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
4566 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
4567 (byte-compile-tmp-var): New const.
4568 (byte-compile-defvar): Use it to minimize .elc size.
4569 Just use `defvar' rather than simulate it (bug#10761).
4570
a075a2c5
GM
45712012-02-09 Glenn Morris <rgm@gnu.org>
4572
cf3aa21b
GM
4573 * files.el (rename-uniquely): Doc fix. (Bug#3806)
4574
354998cd
GM
4575 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
4576 Add :version tags.
4577
dc9924b8
SM
4578 * progmodes/compile.el (compilation-error-screen-columns)
4579 (compilation-first-column, compilation-filter-start): Doc fixes.
83274125 4580
dab3703d
GM
4581 * vc/log-view.el (log-view-toggle-entry-display):
4582 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
4583
3f88cd72
GM
4584 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
4585 (report-emacs-bug-can-use-xdg-email):
4586 (report-emacs-bug-insert-to-mailer): Doc fixes.
4587 (report-emacs-bug): Message fix.
4588
d95b247d
GM
4589 * net/browse-url.el (browse-url-can-use-xdg-open)
4590 (browse-url-xdg-open): Doc fixes.
4591
a075a2c5
GM
4592 * electric.el (electric-indent-mode, electric-pair-mode)
4593 (electric-layout-rules, electric-layout-mode): Doc fixes.
4594 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
4595
ffb6157e
MR
45962012-02-08 Martin Rudalics <rudalics@gmx.at>
4597
4598 * server.el (server-unselect-display): Don't inadvertently kill
4599 the current buffer. (Bug#10729)
4600
e1ac4066
GM
46012012-02-08 Glenn Morris <rgm@gnu.org>
4602
34e8a2da
GM
4603 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
4604 (sql-list-table): Doc fixes.
4605
b4ac6e8c
GM
4606 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
4607 Comment out (does nothing).
4608
e1ac4066
GM
4609 * completion.el (dynamic-completion-mode):
4610 * dirtrack.el (dirtrack-debug-mode):
4611 * electric.el (electric-layout-mode):
4612 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
4613 * face-remap.el (text-scale-mode, buffer-face-mode):
4614 * iimage.el (iimage-mode):
4615 * image-mode.el (image-transform-mode):
4616 * minibuffer.el (completion-in-region-mode):
4617 * scroll-lock.el (scroll-lock-mode):
4618 * simple.el (next-error-follow-minor-mode):
4619 * tar-mode.el (tar-subfile-mode):
4620 * tooltip.el (tooltip-mode):
4621 * vcursor.el (vcursor-use-vcursor-map):
4622 * wid-browse.el (widget-minor-mode):
4623 * emulation/tpu-edt.el (tpu-edt-mode):
4624 * emulation/tpu-extras.el (tpu-cursor-free-mode):
4625 * international/iso-ascii.el (iso-ascii-mode):
4626 * language/thai-util.el (thai-word-mode):
4627 * mail/supercite.el (sc-minor-mode):
4628 * net/goto-addr.el (goto-address-mode):
4629 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
4630 * progmodes/cwarn.el (cwarn-mode):
4631 * progmodes/flymake.el (flymake-mode):
4632 * progmodes/glasses.el (glasses-mode):
4633 * progmodes/hideshow.el (hs-minor-mode):
4634 * progmodes/pascal.el (pascal-outline-mode):
4635 * textmodes/enriched.el (enriched-mode):
4636 * vc/smerge-mode.el (smerge-mode):
4637 Doc fixes (minor mode argument).
4638
5e0d957f
EZ
46392012-02-07 Eli Zaretskii <eliz@gnu.org>
4640
4641 * ls-lisp.el (ls-lisp-sanitize): New function.
4642 (ls-lisp-insert-directory): Use it to fix or remove any elements
4643 in file-alist with missing attributes. (Bug#4673)
4644
98d7371e
AM
46452012-02-07 Alan Mackenzie <acm@muc.de>
4646
4647 Fix spurious recognition of c-in-knr-argdecl.
4648
4649 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
4650 putative K&R region.
4651
667ced3a
AM
46522012-02-07 Alan Mackenzie <acm@muc.de>
4653
eb864a71
LM
4654 * progmodes/cc-engine.el (c-forward-objc-directive):
4655 Prevent looping in "#pragma mark @implementation".
667ced3a 4656
5b77774d
MA
46572012-02-07 Michael Albinus <michael.albinus@gmx.de>
4658
4659 * notifications.el (notifications-on-closed-signal): Make `reason'
4660 optional. (Bug#10744)
4661
af008560
GM
46622012-02-07 Glenn Morris <rgm@gnu.org>
4663
60d47423
GM
4664 * emacs-lisp/easy-mmode.el (define-minor-mode):
4665 Doc fixes for the macro and the mode it defines.
4666
dd605cc4
GM
4667 * image.el (imagemagick-types-inhibit): Doc fix.
4668
af008560
GM
4669 * cus-start.el (imagemagick-render-type): Add it.
4670
5cc59a37
LI
46712012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
4672
4d6769e1
JB
4673 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
4674 Set the default at load time, too, so that `font-lock-fontify-buffer'
4675 can be called without setting up the entire mode first. This fixes
4676 a bug in `mm-inline-text' with C MIME parts.
5cc59a37 4677
9a6dd747
CY
46782012-02-06 Chong Yidong <cyd@gnu.org>
4679
2d16b285
CY
4680 * simple.el (list-processes--refresh): Delete exited processes
4681 (Bug#8094).
4682
171e9b6e
CY
4683 * comint.el (comint-next-prompt): next-single-char-property-change
4684 and prev-single-char-property-change never return nil (Bug#8657).
4685
9a6dd747
CY
4686 * custom.el (defcustom): Doc fix (Bug#9711).
4687
aa4589a7
CY
46882012-02-05 Chong Yidong <cyd@gnu.org>
4689
5c2a252f
CY
4690 * cus-edit.el (custom-variable-reset-backup): Quote the value
4691 before storing it in the customized-value property (Bug#6712).
4aab9006 4692 (custom-display): Add a customization type tag.
983b9602 4693 (custom-buffer-create-internal): Improve tooltip message.
5c2a252f 4694
aa4589a7
CY
4695 * wid-edit.el (widget-field-value-get): New optional arg to
4696 suppress trailing whitespace truncation.
4697 (character): Use it (Bug#2689).
4698
1ff980ae
AS
46992012-02-05 Andreas Schwab <schwab@linux-m68k.org>
4700
4701 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
4702 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
4703
03988c98
CY
47042012-02-05 Chong Yidong <cyd@gnu.org>
4705
eeb6cc88
CY
4706 * cus-edit.el (custom-variable-value-create): For mismatched
4707 types, show the current value (Bug#7600).
4708
03988c98
CY
4709 * custom.el (defcustom): Doc fix.
4710
f8cdeef0
GM
47112012-02-05 Glenn Morris <rgm@gnu.org>
4712
4713 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
4714
0696d255
JB
47152012-02-05 Juanma Barranquero <lekktu@gmail.com>
4716
4717 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
4718 (pp-buffer): Use `ignore-errors', `looking-at-p'.
4719 (pp-last-sexp): Use `looking-at-p'.
4720
34c99998
GM
47212012-02-04 Glenn Morris <rgm@gnu.org>
4722
8f05da42
GM
4723 * files.el (revert-buffer):
4724 Doc fix (mention revert-buffer-in-progress-p).
4725
f160676e
GM
4726 * emacs-lisp/ert-x.el (ert-simulate-command):
4727 Check deferred-action-list (which is obsolete) is bound.
4728
c7291ad9
GM
4729 * subr.el (with-wrapper-hook): Doc fixes.
4730
34c99998
GM
4731 * simple.el (filter-buffer-substring-functions)
4732 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
4733
6283a7d3
LL
47342012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
4735
4736 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
4737 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
4738
e96e3013
LL
47392012-02-04 Leo Liu <sdl.web@gmail.com>
4740
4741 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
4742
8ded50f2
GM
47432012-02-04 Glenn Morris <rgm@gnu.org>
4744
82ff1d13
GM
4745 * image.el (image-extension-data): Add obsolete alias.
4746
987a0a16
GM
4747 * isearch.el (isearch-update): Doc fix.
4748
ea32ef46
GM
4749 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
4750
8ded50f2
GM
4751 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
4752
eea14f31
GM
47532012-02-03 Glenn Morris <rgm@gnu.org>
4754
4755 * image.el (image-animated-p): Doc fix. Use image-animated-types.
4756 (image-animate-timeout): Doc fix.
4757
4758 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
4759
12f381b7
GM
47602012-02-02 Glenn Morris <rgm@gnu.org>
4761
953cebf5
GM
4762 * server.el (server-auth-dir): Doc fix.
4763 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
4764
12f381b7
GM
4765 * subr.el (run-mode-hooks): Doc fix.
4766
953a8c3b
JL
47672012-02-02 Juri Linkov <juri@jurta.org>
4768
4769 * image-mode.el (image-toggle-display-image): Remove tautological
4770 `major-mode' from the `derived-mode-p' test.
4771
c5d3843c
KH
47722012-02-02 Kenichi Handa <handa@m17n.org>
4773
9f6e692e 4774 * composite.el (compose-region): Cancel previous change.
c5d3843c 4775
159462d4 47762012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
4777
4778 * composite.el (compose-region, compose-string): Signal error for
4779 a null string component (Bug#6988).
4780
9f562668
CY
47812012-02-01 Chong Yidong <cyd@gnu.org>
4782
e2cef717
CY
4783 * view.el (view-buffer-other-window, view-buffer-other-frame):
4784 Handle special modes like view-buffer (Bug#10650).
4785 (view-buffer): Simplify.
4786
9f562668
CY
4787 * frame.el (set-frame-font): Tweak meaning of third argument.
4788
9f6e692e
JB
4789 * dynamic-setting.el (font-setting-change-default-font):
4790 Use set-frame-font (Bug#9982).
9f562668 4791
781acb9f
GM
47922012-02-01 Glenn Morris <rgm@gnu.org>
4793
6035be52
GM
4794 * progmodes/compile.el (compilation-internal-error-properties):
4795 Respect compilation-first-column in the "*compilation*" buffer.
4796
781acb9f
GM
4797 * emacs-lisp/easy-mmode.el (define-minor-mode):
4798 Relax :variable's test for a named function.
4799
abbceb00
AM
48002012-01-31 Alan Mackenzie <acm@muc.de>
4801
4802 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
4803 off by one error.
4804
fce3fdeb
CY
48052012-01-31 Chong Yidong <cyd@gnu.org>
4806
4807 * frame.el (set-frame-font): New arg ALL-FRAMES.
4808
4809 * menu-bar.el (menu-set-font): Use set-frame-font.
4810
4811 * faces.el (face-spec-reset-face): Don't apply unspecified
4812 attribute values to the default face.
4813
47893581
JB
48142012-01-31 Juanma Barranquero <lekktu@gmail.com>
4815
4816 * progmodes/cwarn.el (cwarn): Remove dead link.
4817 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
4818 Remove * from defcustom docstrings.
4819 (turn-on-cwarn-mode): Make obsolete.
4820 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
4821 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
4822
e58e988a
GM
48232012-01-31 Glenn Morris <rgm@gnu.org>
4824
60dc2671 4825 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6c9b47ae 4826 Fix :variable handling of mode a symbol not equal to modefun.
60dc2671 4827 Allow named functions to be used as the cdr of :variable.
e58e988a 4828
7a3f511d
GM
48292012-01-30 Glenn Morris <rgm@gnu.org>
4830
4831 * emacs-lisp/authors.el (authors-fixed-entries):
4832 Remove reference to deleted file rnewspost.el.
4833
cb882333
JB
48342012-01-29 Juanma Barranquero <lekktu@gmail.com>
4835
4836 * window.el (window-with-parameter): Remove unused variable `windows'.
4837 (window--side-check): Remove unused variable `code'.
4838 (window--resize-siblings): Remove unused variable `first'.
4839 (adjust-window-trailing-edge): Remove unused variable `failed'.
4840 (window-deletable-p, window--delete): Remove unused variable `buffer'.
4841 Use `let', not `let*'.
4842 (balance-windows-2): Remove unused variable `found'.
4843 (window--state-put-2): Remove unused variable `splits'.
4844 (window-state-put): Remove unused variable `selected'.
4845 (same-window-p): Use `string-match-p'.
4846 (display-buffer-assq-regexp): Remove unused variable `value'.
4847 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
4848 Mark argument ALIST as ignored.
4849 (pop-to-buffer): Remove unused variable `old-window'.
4850
907201af
EZ
48512012-01-29 Eli Zaretskii <eliz@gnu.org>
4852
4853 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
4854 and .lzma compressed files.
4855
ea162670
CY
48562012-01-29 Chong Yidong <cyd@gnu.org>
4857
5b95ee8a
CY
4858 * frame.el (window-system-default-frame-alist): Doc fix.
4859
ea162670
CY
4860 * dynamic-setting.el (font-setting-change-default-font): Don't
4861 change the default face if SET-FONT argument is non-nil (Bug#9982).
4862
d6e6f4b1
SB
48632012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
4864
4865 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
4866
0f29fa41 48672012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6b25e4e2
SE
4868
4869 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
4870 breakpoints in files outside current directory (Bug#6098).
4871
db174434
CY
48722012-01-29 Chong Yidong <cyd@gnu.org>
4873
6b25e4e2
SE
4874 * progmodes/python.el: Require ansi-color at top-level.
4875
6df6ae42
JB
4876 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
4877 Define and use in Emacs Lisp mode (Bug#9360).
db174434
CY
4878 (lisp-mode-abbrev-table): Add doc.
4879 (lisp-mode-variables): Don't set local-abbrev-table.
4880 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
4881
e70ee681
RW
48822012-01-28 Roland Winkler <winkler@gnu.org>
4883
4884 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
4885
ace88aa2
RW
48862012-01-28 Roland Winkler <winkler@gnu.org>
4887
4888 * textmodes/bibtex.el (bibtex-entry-alist): New function.
4889 (bibtex-set-dialect): Use it. Either set global values of
4890 dialect-dependent variables or bind these variables buffer-locally
4891 (Bug#10254).
4892 (bibtex-mode): Call bibtex-set-dialect via
4893 hack-local-variables-hook.
eb864a71
LM
4894 (bibtex-dialect): Update docstring.
4895 Add safe-local-variable predicate.
ace88aa2
RW
4896 (bibtex-entry-alist, bibtex-field-alist): Initialize via
4897 bibtex-set-dialect.
4898 (bibtex-mode-map): Define menu for each dialect.
4899 (bibtex-entry): Fix docstring.
4900
93376c5b
CY
49012012-01-28 Chong Yidong <cyd@gnu.org>
4902
4903 * eshell/esh-arg.el (eshell-quote-argument): New function.
4904
4905 * eshell/esh-ext.el (eshell-invoke-batch-file):
4906 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
4907 first arg to eshell-parse-command (Bug#10523).
4908
4372494f
DA
49092012-01-28 Drew Adams <drew.adams@oracle.com>
4910
4911 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
4912 `default-directory' is non-nil.
4913
4d4ec1f8
EZ
49142012-01-28 Eli Zaretskii <eliz@gnu.org>
4915
4916 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
4917 line that displays system-configuration-options. (Bug#9924)
4918
7c188927
DA
49192012-01-28 Drew Adams <drew.adams@oracle.com>
4920
4921 * descr-text.el (describe-char): Show information about POS, in
4922 addition to information about the character at POS. Improve and
4923 update the doc string. Change "code point" to "code point in
4924 charset", to avoid confusion with the character's Unicode code
4925 point shown above that. (Bug#10129)
4926
e0da685a
EZ
49272012-01-28 Eli Zaretskii <eliz@gnu.org>
4928
4929 * descr-text.el (describe-char): Show the raw character, not only
4930 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
4931 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
4932 for the reasons.
4933
70550acf
PH
49342012-01-28 Phil Hagelberg <phil@hagelb.org>
4935
eb864a71
LM
4936 * emacs-lisp/package.el (package-install):
4937 Run package-refresh-contents if there is no archive yet (Bug#9798).
70550acf 4938
0ce8e868
CY
49392012-01-28 Chong Yidong <cyd@gnu.org>
4940
cb882333
JB
4941 * emacs-lisp/package.el (package-maybe-load-descriptor):
4942 New function, split from package-maybe-load-descriptor.
0ce8e868
CY
4943 (package-maybe-load-descriptor): Use it.
4944 (package-download-transaction): Fully load required packages
4945 inside the loop, so that `require' calls work (Bug#10593).
4946 (package-install): No need to call package-initialize now.
4947
2e7f3bea
CY
49482012-01-28 Chong Yidong <cyd@gnu.org>
4949
6e9bad14
CY
4950 * simple.el (deactivate-mark): Doc fix (Bug#8614).
4951
f823b8ca
CY
4952 * tooltip.el (tooltip-mode): Doc fix.
4953 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
4954
2680c309
CY
4955 * frame.el (set-cursor-color): Doc fix (Bug#352).
4956
d7a9e63b
CY
4957 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
4958 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
4959
2e7f3bea
CY
4960 * cus-edit.el (custom-buffer-create-internal): Fix search button
4961 action (Bug#10542).
2ae01800 4962 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
2e7f3bea 4963
fc4f7a23
EW
49642012-01-27 Eduard Wiebe <usenet@pusto.de>
4965
4966 * dired.el (dired-mark-files-regexp):
4967 Include any subdirectory components. (Bug#10445)
4968
7dd37071
ML
49692012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
4970
4971 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
4972 Handle [host]:port syntax. (Bug#10533)
4973
a268160b
AH
49742012-01-27 Alex Harsanyi <harsanyi@mac.com>
4975
4976 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
4977
e43273ef
GM
49782012-01-26 Glenn Morris <rgm@gnu.org>
4979
4980 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
4981 * term.el (term-raw-escape-map): Use Control-X-prefix.
4982 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
4983
1edf595d
MR
49842012-01-25 Martin Rudalics <rudalics@gmx.at>
4985
4986 * window.el (window-state-get, window--state-get-1): Don't deal
4987 with fixed-sizeness of windows. Simplify code.
4988
fa8eafef
JC
49892012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
4990
6df6ae42
JB
4991 * window.el (window--state-get-1, window--state-put-2):
4992 Don't save and restore the mark.
fa8eafef 4993
0b21c100
CY
49942012-01-25 Chong Yidong <cyd@gnu.org>
4995
4996 * custom.el (custom-variable-p): Doc fix.
4997
5ae1a6c8
GM
49982012-01-25 Glenn Morris <rgm@gnu.org>
4999
40047858
GM
5000 * dired.el (dired-goto-file): Handle some of the more common
5001 characters that `ls -b' escapes. (Bug#10596)
5002
5ddce96c
GM
5003 * progmodes/compile.el (compilation-next-error-function):
5004 Respect compilation-first-column in the "*compilation*" buffer.
5005 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
5006
5ae1a6c8
GM
5007 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
5008
b559f1a9
GM
50092012-01-24 Glenn Morris <rgm@gnu.org>
5010
5011 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
5012
6725d21a
JD
50132012-01-24 Julien Danjou <julien@danjou.info>
5014
5015 * color.el (color-rgb-to-hsl): Fix value computing.
5016 (color-hue-to-rgb): New function.
5017 (color-hsl-to-rgb): New function.
5018 (color-clamp, color-saturate-hsl, color-saturate-name)
5019 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5020 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
5021
70df4bbe
GM
50222012-01-24 Glenn Morris <rgm@gnu.org>
5023
5024 * vc/vc-rcs.el (vc-rcs-create-tag):
5025 * vc/vc-sccs.el (vc-sccs-create-tag):
5026 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
5027
802a2ae2
ML
50282012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
5029
5030 * eshell/esh-util.el (eshell-read-hosts-file):
5031 Skip comment lines. (Bug#10549)
5032
d7128bb1
ML
5033 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
5034
d1a5c3b4
JB
50352012-01-23 Juanma Barranquero <lekktu@gmail.com>
5036
2724d9c7
JB
5037 * subr.el (display-delayed-warnings): Doc fix.
5038 (collapse-delayed-warnings): New function to collapse identical
5039 adjacent warnings.
5040 (delayed-warnings-hook): Add it.
d1a5c3b4 5041
a5509865
MA
50422012-01-22 Michael Albinus <michael.albinus@gmx.de>
5043
5044 * net/tramp.el (tramp-action-login): Set connection property "login-as".
5045
a5509865
MA
5046 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
5047 (tramp-default-user-alist): Don't add "pscp".
5048 (tramp-do-copy-or-rename-file-out-of-band): Use connection
5049 property "login-as", if set. (Bug#10530)
5050
cc6d5805
MA
50512012-01-21 Michael Albinus <michael.albinus@gmx.de>
5052
5053 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
5054 "plink1" and "psftp". (Bug#10530)
5055
50562012-01-21 Kenichi Handa <handa@m17n.org>
71784361
KH
5057
5058 * international/mule-cmds.el (prefer-coding-system): Show a
5059 warning message if the default value of file-name-coding-system
5060 was not changed.
5061
f0960428
JC
50622012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
5063
cb882333
JB
5064 * windmove.el (windmove-reference-loc):
5065 Fix windmove-reference-loc miscalculation.
f0960428 5066
dd6f2a63
JB
50672012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
5068
5069 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
5070 default unit.
5071
7b447e9b
GM
50722012-01-21 Glenn Morris <rgm@gnu.org>
5073
117a9ea1
GM
5074 * international/mule.el (auto-coding-alist): Add .tbz.
5075
7b447e9b
GM
5076 * files.el (local-enable-local-variables): Doc fix.
5077 (inhibit-local-variables-regexps): Rename from
5078 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
5079 Doc fix. Add some extensions from auto-coding-alist.
5080 (inhibit-local-variables-suffixes):
5081 Rename from inhibit-first-line-modes-suffixes. Doc fix.
5082 (inhibit-local-variables-p):
5083 New function, extracted from set-auto-mode-1.
5084 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
5085 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
5086 (hack-local-variables): Doc fix. Make the mode-only case
5087 respect enable-local-variables and friends.
5088 Respect inhibit-local-variables-regexps for file-locals, but
5089 not for directory-locals.
5090 (set-visited-file-name):
5091 Take account of inhibit-local-variables-regexps.
5092 Whether it applies may change as the file name is changed.
5093 * jka-cmpr-hook.el (jka-compr-install):
5094 * jka-compr.el (jka-compr-uninstall):
5095 Update for inhibit-first-line-modes-suffixes name change.
5096
dd6e3cdd
MR
50972012-01-20 Martin Rudalics <rudalics@gmx.at>
5098
5099 * help-macro.el (make-help-screen): Temporarily restore original
5100 binding for minor-mode-map-alist (Bug#10454).
5101
0d0deb38
JD
51022012-01-19 Julien Danjou <julien@danjou.info>
5103
5104 * color.el (color-name-to-rgb): Use the white color to find the max
5105 color component value and return correctly computed values.
5106 (color-name-to-rgb): Add missing float conversion for max value.
5107
34a02f46
MR
51082012-01-19 Martin Rudalics <rudalics@gmx.at>
5109
5110 * window.el (window--state-get-1, window-state-get): Do not use
eb864a71
LM
5111 special state value for window-persistent-parameters.
5112 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
34a02f46
MR
5113 (window--state-put-2): Reset all window parameters to nil before
5114 assigning values of persistent parameters.
5115
606c44c4
AM
51162012-01-18 Alan Mackenzie <acm@muc.de>
5117
5118 Eliminate sluggishness and hangs in fontification of "semicolon
5119 deserts".
5120
cb882333
JB
5121 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
5122 Change value 10000 -> 3000.
606c44c4
AM
5123 (c-state-safe-place): Reformulate so it doesn't stack up an
5124 infinite number of wrong entries in c-state-nonlit-pos-cache.
5125 (c-determine-limit-get-base, c-determine-limit): New functions to
5126 determine backward search limits disregarding literals.
5127 (c-find-decl-spots): Amend commenting.
5128 (c-cheap-inside-bracelist-p): New function which detects "={".
5129
5130 * progmodes/cc-fonts.el
5131 (c-make-font-lock-BO-decl-search-function): Give a limit to a
5132 backward search.
5133 (c-font-lock-declarations): Fix an occurrence of point being
5134 undefined. Check additionally for point being in a bracelist or
5135 near a macro invocation without a semicolon so as to avoid a
5136 fruitless time consuming search for a declarator. Give a more
5137 precise search limit for declarators using the new
5138 c-determine-limit.
5139
f3860cea
GM
51402012-01-18 Glenn Morris <rgm@gnu.org>
5141
5142 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
5143 (set-auto-mode): Doc fixes.
5144
1db03b16
GM
51452012-01-17 Glenn Morris <rgm@gnu.org>
5146
0e6038be
GM
5147 * isearch.el (search-nonincremental-instead): Fix doc typo.
5148
1db03b16
GM
5149 * dired.el (dired-insert-directory): Handle newlines in directory name.
5150 (dired-build-subdir-alist): Unescape newlines in directory name.
5151
4cb0aa75
MA
51522012-01-17 Michael Albinus <michael.albinus@gmx.de>
5153
5154 * net/tramp.el (tramp-local-end-of-line): New defcustom.
5155 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
5156 (tramp-action-terminal): Use it. (Bug#10530)
5157
1d00653d
SM
51582012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
5159
5160 * minibuffer.el (completion--replace): Strip properties (bug#10062).
5161
6a6ee00d
MR
51622012-01-16 Martin Rudalics <rudalics@gmx.at>
5163
5164 * window.el (window-state-ignored-parameters): Remove variable.
5165 (window--state-get-1): Rename argument MARKERS to IGNORE.
5166 Handle persistent window parameters. Make copy of clone-of
5167 parameter only if requested. (Bug#10348)
5168 (window--state-put-2): Install a window parameter only if it has
5169 a non-nil value or an existing parameter shall be overwritten.
5170
97912def
MA
51712012-01-15 Michael Albinus <michael.albinus@gmx.de>
5172
5173 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
5174
688070a5
EZ
51752012-01-14 Eli Zaretskii <eliz@gnu.org>
5176
5177 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
5178 don't pass the (nil) value of `upnode' to string-match.
5179
301afadc
CY
51802012-01-14 Chong Yidong <cyd@gnu.org>
5181
5182 * startup.el (command-line): Fix X resource class for cursorColor.
04877ddb 5183 Fix values recognized by the cursorBlink resource.
301afadc 5184
9e5788aa
PE
51852012-01-14 Paul Eggert <eggert@cs.ucla.edu>
5186
5187 * epg.el (epg--make-temp-file): Avoid permission race condition
5188 when running on old Emacs versions (bug#10403).
5189
3cdb7f5a
GM
51902012-01-14 Glenn Morris <rgm@gnu.org>
5191
5192 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
5193
8c82b1b4
AM
51942012-01-13 Alan Mackenzie <acm@muc.de>
5195
5196 Fix filling for when filladapt mode is enabled.
5197
5198 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
5199 c-mask-paragraph, pass in `fill-paragraph' rather than
5200 `fill-region-as-paragraph'. (This is a reversion of a previous
5201 change.)
eb864a71
LM
5202 * progmodes/cc-mode.el (c-basic-common-init):
5203 Make fill-paragraph-handle-comment buffer local and set it to nil.
8c82b1b4 5204
e517eda4
GM
52052012-01-13 Glenn Morris <rgm@gnu.org>
5206
1498536e
GM
5207 * dired.el (dired-switches-escape-p): New function.
5208 (dired-insert-directory): Use dired-switches-escape-p.
5209 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
5210
e517eda4
GM
5211 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
5212
328f984d
GM
52132012-01-12 Glenn Morris <rgm@gnu.org>
5214
5215 * mail/sendmail.el (mail-mode): Update paragraph-separate for
5216 changes in adaptive-fill-regexp. (Bug#10276)
5217
2cc769a8
AM
52182012-01-11 Alan Mackenzie <acm@muc.de>
5219
5220 Fix Emacs bug #10463 - put `widen's around the critical spots.
5221
1d00653d 5222 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
2cc769a8
AM
5223 widen around each invocation of c-state-pp-to-literal. Remove an
5224 unused let variable.
5225
e52c37fa
GM
52262012-01-11 Glenn Morris <rgm@gnu.org>
5227
5228 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
09044622 5229 Doc fix.
e52c37fa 5230
96f8741e
CY
52312012-01-10 Chong Yidong <cyd@gnu.org>
5232
1d00653d
SM
5233 * net/network-stream.el (network-stream-open-starttls):
5234 Avoid emitting a confusing error message when the server gives a bad
96f8741e
CY
5235 response to the capability command.
5236
b09a806e
GM
52372012-01-10 Glenn Morris <rgm@gnu.org>
5238
5239 * mail/unrmail.el (unrmail): Tweak previous change.
5240
7655cb66
CY
52412012-01-09 Chong Yidong <cyd@gnu.org>
5242
5243 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
5244
9d5a8f0b
AM
52452012-01-08 Alan Mackenzie <acm@muc.de>
5246
5247 Optimise font locking in long enum definitions.
5248
5249 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
5250 arm to a cond form to handle enums.
5251 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
5252 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
5253
9a0115ab 52542012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6bb72cbd
PE
5255
5256 * files.el (move-file-to-trash): Preserve default file modes on error.
a0562b3d 5257 (Bug#10401)
6bb72cbd 5258
f186bb95
LMI
52592012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
5260
29232a68
LMI
5261 * faces.el (set-face-attribute): Clarify the meaning of the nil
5262 frame (bug#10294).
5263
4e5d086d
LMI
5264 * subr.el (with-selected-frame): Mention that the selected frame
5265 is restored (bug#9980).
5266
8e66aebe
LMI
5267 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
5268 (bug#9759).
5269
cd394be1 5270 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
f186bb95
LMI
5271 (password-read): Don't autoload unused function.
5272
adf4e762
JB
52732012-01-07 Juanma Barranquero <lekktu@gmail.com>
5274
5275 * progmodes/which-func.el (which-func-mode): Turn into a
5276 non-interactive function and mark as obsolete (bug#10428).
5277
89bd9ccd
CY
52782012-01-06 Chong Yidong <cyd@gnu.org>
5279
5280 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
5281 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
5282 functions, along with 1 and -1.
5283
4afee9d5
EZ
52842012-01-06 Eli Zaretskii <eliz@gnu.org>
5285
5286 * time.el (display-time-load-average)
5287 (display-time-default-load-average): Doc fixes. See the thread
5288 starting at
5289 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
5290 for the details.
5291
536aea70
GM
52922012-01-06 Glenn Morris <rgm@gnu.org>
5293
665ae865
GM
5294 * mail/unrmail.el (unrmail): Give an explicit error if the input file
5295 has no messages. (Bug#10377)
5296
c869783d
GM
5297 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
5298 than Info-edit. (Bug#10385)
5299
2bb4227e
GM
5300 * time.el (display-time-load-average, display-time-next-load-average):
5301 Doc fixes.
5302
7d5944b9
GM
5303 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
5304 local setting of buffer-read-only to the input buffer. (Bug#10419)
5305
536aea70
GM
5306 * calendar/calendar.el (calendar-mode):
5307 Locally set scroll-margin to 0. (Bug#10379)
5308
7dccca16
UM
53092012-01-06 Ulrich Mueller <ulm@gentoo.org>
5310
5311 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
5312
afbb7930
GM
53132012-01-05 Glenn Morris <rgm@gnu.org>
5314
5315 * eshell/em-unix.el (diff-no-select): Autoload it.
5316 (eshell/diff): Use diff-no-select. (Bug#10420)
5317
04482335
CY
53182012-01-05 Chong Yidong <cyd@gnu.org>
5319
7baca3bc
CY
5320 * shell.el (shell-dynamic-complete-functions): Revert last change.
5321 (shell-command-completion-function): New function.
5322 (shell-completion-vars): Use it to implement
5323 shell-completion-execonly (Bug#10417).
5324
04482335
CY
5325 * custom.el (enable-theme): Don't set custom-safe-themes.
5326
1d00653d
SM
5327 * cus-theme.el (custom-theme-merge-theme):
5328 Ignore custom-enabled-themes and custom-safe-themes.
04482335 5329
bb5aa5d6
MM
53302012-01-05 Michael R. Mauger <mmaug@yahoo.com>
5331
5332 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
5333 first prompt in `sql-interacive-mode'.
5334 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
04482335 5335 keywords.
6df6ae42 5336 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
bb5aa5d6
MM
5337 (sql-product-interactive): Bug fix: Set `sql-buffer' in
5338 context of original buffer. Invoke `sql-login-hook'.
5339
a7183d7c
EZ
53402012-01-04 Eli Zaretskii <eliz@gnu.org>
5341
5342 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
5343 letters in cite-prefix.
5344
a1eacd1e
LMI
53452012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5346
5347 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
5348
787cdb34
CY
53492012-01-03 Chong Yidong <cyd@gnu.org>
5350
1d00653d
SM
5351 * shell.el (shell-dynamic-complete-functions):
5352 Put pcomplete-completions-at-point, so as to try
787cdb34
CY
5353 comint-filename-completion first (Bug#10417).
5354
30710442
RS
53552012-01-02 Richard Stallman <rms@gnu.org>
5356
5357 * battery.el (battery-status-function):
5358 Detect when to use battery-yeeloong-sysfs.
5359 (battery-echo-area-format): Add string for Yeeloong.
5360 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
5361 (battery-yeeloong-sysfs): New function.
5362
f75bfc33
CY
53632012-01-02 Chong Yidong <cyd@gnu.org>
5364
5365 * dirtrack.el (dirtrack-list): Eliminate unused third element.
5366 (dirtrack): Merge code for handling relative filenames in prompt
5367 from shell-dir-cookie-watcher.
5368 (dirtrack-debug-message): New arg to avoid excess format calls.
5369
5370 * shell.el (shell-dir-cookie-re): Variable deleted.
5371 (shell-dir-cookie-watcher): Function deleted.
5372 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
5373 with dirtrack-mode.
5374
651e947e
EZ
53752012-01-01 Eli Zaretskii <eliz@gnu.org>
5376
1d00653d
SM
5377 * term/w32-win.el (dynamic-library-alist) <gnutls>:
5378 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
651e947e
EZ
5379 libgnutls-26.dll.
5380
94d4c7dc
AS
53812011-12-31 Andreas Schwab <schwab@linux-m68k.org>
5382
5383 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
5384
8d43f3cd
EZ
53852011-12-31 Eli Zaretskii <eliz@gnu.org>
5386
5387 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
5388 headers of non-MIME messages, when rmail-enable-mime is non-nil.
5389
98c8795a
MA
53902011-12-29 Michael Albinus <michael.albinus@gmx.de>
5391
5392 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
5393 also for alternative shells.
5394 (tramp-open-connection-setup-interactive-shell): Check, whether
5395 the shell is a busybox.
5396 (tramp-send-command): Don't suppress multiple prompts for
5397 busyboxes, it hurts.
5398
51281b32
CY
53992011-12-28 Chong Yidong <cyd@gnu.org>
5400
5401 * progmodes/gdb-mi.el (gdb-get-source-file-list)
5402 (gdb-get-source-file): Move mode line update to
5403 gdb-get-source-file (Bug#10087).
5404
2170cb53
CY
54052011-12-25 Chong Yidong <cyd@gnu.org>
5406
5407 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
5408 gud-gdb-marker-filter without taking it as an argument.
5409 (gud-gdb-run-command-fetch-lines): Caller changed.
5410 (gud-gdb-completion-function): New variable.
5411 (gud-gdb-completion-at-point): Use it.
5412 (gud-gdb-completions-1): Split from gud-gdb-completions.
5413
5414 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
5415 function as separate arguments.
5416 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
5417 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
5418 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
5419 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
5420 (gdb-stopped, def-gdb-auto-update-trigger)
5421 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
b81d40f0
JB
5422 (gdb-get-changed-registers, gdb-get-main-selected-frame):
5423 Callers changed.
2170cb53
CY
5424 (gud-gdbmi-completions): New function.
5425 (gdb): Use it for generating the completion table.
5426
be8b11bb
AM
54272011-12-24 Alan Mackenzie <acm@muc.de>
5428
5429 Introduce a mechanism to widen the region used in context font
1d00653d 5430 locking. Use this to protect declarations from losing their contexts.
be8b11bb 5431
1d00653d
SM
5432 * progmodes/cc-langs.el (c-before-font-lock-functions):
5433 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
b81d40f0 5434 (c-before-context-fontification-functions): New defvar, a list of
be8b11bb
AM
5435 functions to be run just before context (etc.) font locking.
5436
5437 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
b81d40f0 5438 New, functionality extracted from
be8b11bb 5439 c-neutralize-syntax-in-and-mark-CPP.
b81d40f0 5440 (c-in-after-change-fontification): New variable.
be8b11bb
AM
5441 (c-after-change): Set c-in-after-change-fontification.
5442 (c-set-fl-decl-start): Rejig its interface, so it can be called
5443 from both after-change and context fontifying.
b81d40f0
JB
5444 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
5445 New functions.
5446 (c-standard-font-lock-fontify-region-function): New variable.
5447 (c-font-lock-fontify-region): New function.
be8b11bb 5448
341cf6ac
JL
54492011-12-24 Juri Linkov <juri@jurta.org>
5450
5451 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
5452 (Bug#10348)
5453
bffcee0a
MA
54542011-12-23 Michael Albinus <michael.albinus@gmx.de>
5455
5456 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
5457 existence of source file. (Bug#10325)
5458
cb5e207c
AM
54592011-12-23 Alan Mackenzie <acm@muc.de>
5460
5461 Fix unstable fontification inside templates.
5462
b81d40f0
JB
5463 * progmodes/cc-langs.el (c-before-font-lock-functions):
5464 Newly created from the singular version. The (c c++ objc) entry now
cb5e207c
AM
5465 additionally has c-set-fl-decl-start. The other languages (apart
5466 from AWK) have that as a single entry.
5467
b81d40f0
JB
5468 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
5469 The functionality for "local" declarations has been extracted to
cb5e207c
AM
5470 c-set-fl-decl-start.
5471
b81d40f0
JB
5472 * progmodes/cc-mode.el (c-common-init, c-after-change):
5473 Changes due to pluralisation of c-before-font-lock-functions.
cb5e207c
AM
5474 (c-set-fl-decl-start): New function, extracted from
5475 c-font-lock-enclosing-decls and enhanced.
5476
60ff536c
JB
54772011-12-23 Juanma Barranquero <lekktu@gmail.com>
5478
5479 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
5480
1c4757d6
JL
54812011-12-22 Juri Linkov <juri@jurta.org>
5482
5483 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
5484
d031f2c7
CY
54852011-12-22 Chong Yidong <cyd@gnu.org>
5486
5487 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
5488
bace743a
DA
54892011-12-21 Drew Adams <drew.adams@oracle.com>
5490
5491 * files.el (file-remote-p): Fix docstring. (Bug#10319)
5492
728a1f2b
JC
54932011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
5494
5495 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
5496
0d373f73
TZ
54972011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
5498
fec0aaa4
TZ
5499 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
5500 highlighting and support. Fix up comments for capitalization.
5501 (cfengine-mode-debug): New var.
5502 (cfengine3-mode): Change the modeline indicator to "CFE3".
5503 (cfengine3-font-lock-keywords): Improve defun highlighting.
5504 (cfengine2-actions): Rename from `cfengine-actions'.
5505 (cfengine2-font-lock-keywords): Rename from
5506 `cfengine-font-lock-keywords'.
5507 (cfengine2-imenu-expression): Rename from
5508 `cfengine-imenu-expression'.
5509 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
5510 (cfengine2-beginning-of-defun): Rename from
5511 `cfengine-beginning-of-defun'.
5512 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
5513 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
5514 (cfengine2-mode): Rename from `cfengine-mode'. Change the
5515 modeline indicator to "CFE2".
5516 (cfengine-mode): Defalias to `cfengine-auto-mode'.
5517 (cfengine-mode-abbrevs): Mark obsolete.
0d373f73 5518
bc86f573
CY
55192011-12-21 Chong Yidong <cyd@gnu.org>
5520
5521 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
5522 filename argument.
5523
d45ba96b
MR
55242011-12-20 Martin Rudalics <rudalics@gmx.at>
5525
5526 * window.el (window-normalize-buffer-to-display): Remove.
5527 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
5528
a6198c90
CY
55292011-12-19 Chong Yidong <cyd@gnu.org>
5530
5531 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
5532 Don't signal an error in a predicate function; return non-nil.
5533 (vc-dir-mark-file): Move the error here.
5534 (vc-dir-mark-unmark): If acting on the region, keep going if one
5535 of the entries cannot be marked/unmarked.
5536 (vc-dir-mark-all-files): If current entry is a directory, mark
5537 only child files, as documented.
5538
34c5fb55
VB
55392011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
5540
5541 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
5542 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
5543 addition.
5544
c803b2b7
JD
55452011-12-18 Jan Djärv <jan.h.d@swipnet.se>
5546
5547 * term/ns-win.el (ns-get-selection-internal)
5548 (ns-store-selection-internal): Declare.
1154d12e
JB
5549 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
5550 Declare as obsolete.
5551 (ns-get-pasteboard, ns-paste-secondary):
5552 Use ns-get-selection-internal.
5553 (ns-set-pasteboard, ns-copy-including-secondary):
5554 Use ns-store-selection-internal.
c803b2b7 5555
9cff91f8 55562011-12-17 Chong Yidong <cyd@gnu.org>
99a289d9
CY
5557
5558 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9cff91f8 5559 (vc-deduce-fileset): Doc fix.
99a289d9 5560
f16c898a
AS
55612011-12-16 Andreas Schwab <schwab@linux-m68k.org>
5562
5563 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
5564
763237c4
SS
55652011-12-13 Sam Steingold <sds@gnu.org>
5566
5567 * man.el (Man-getpage-in-background): When running under a
5568 window-system, ignore $MANWIDTH and $COLUMNS.
5569
5fc1c122
KH
55702011-12-15 Kenichi Handa <handa@m17n.org>
5571
5572 * language/ethio-util.el: Change coding tag to utf-8-emacs.
5573 (setup-ethiopic-environment-internal): Comment out key-binding for
5574 ethio-toggle-punctuation.
5575
13d49cbb
AM
55762011-12-13 Alan Mackenzie <acm@muc.de>
5577
898169a2
AM
5578 Add the switch statement to AWK Mode.
5579
7a71b18d 5580 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
898169a2
AM
5581 "default" to the keywords regexp.
5582
7a71b18d 5583 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
898169a2 5584 expression as the rest.
1d00653d
SM
5585 (c-nonlabel-token-key): Allow string literals for AWK.
5586 Refactor for the other modes.
898169a2 5587
13d49cbb 5588 Large brace-block initialisation makes CC Mode slow: Fix.
1d00653d 5589 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
13d49cbb
AM
5590 routines. Limit backward searching in c-font-lock-enclosing.decl.
5591
5592 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
5593 pp-state and literal type in addition to the limits.
1d00653d 5594 (c-state-safe-place): New defun, extracted from c-state-literal-at.
13d49cbb 5595 (c-state-literal-at): Use the above new defun.
1d00653d
SM
5596 (c-slow-in-literal, c-fast-in-literal): Remove.
5597 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
13d49cbb
AM
5598
5599 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
5600 being in a literal. Add a limit for backward searching.
5601
5602 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
5603 c-slow-in-literal.
5604
15e0efc7
SM
56052011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
5606
5607 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
5608
454592a6
MR
56092011-12-13 Martin Rudalics <rudalics@gmx.at>
5610
5611 * window.el (delete-other-windows): Use correct frame in call to
5612 window-with-parameter.
5613
87393f26
DP
56142011-12-12 Daniel Pfeiffer <occitan@t-online.de>
5615
5616 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
5617 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
5618 (makefile-gmake-statements, makefile-makepp-statements):
5619 Use it and add new makepp keywords.
5620 (makefile-makepp-font-lock-keywords): Add new patterns.
5621 (makefile-match-function-end): Match new [...] and [[...]].
5622
11636b22
JB
56232011-12-11 Juanma Barranquero <lekktu@gmail.com>
5624
5625 * ses.el (ses-call-printer-return, ses-cell-property-get)
5626 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
5627 (ses-create-cell-variable, ses-reset-header-string)
5628 (ses-cell-set-formula, ses-repair-cell-reference-all)
5629 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
5630 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
5631 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
5632 (ses-aset-with-undo, ses-load, ses-truncate-cell)
5633 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
5634 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
5635 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
5636 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
5637 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
5638 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
5639 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
5640 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
5641
cf018193
VB
56422011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
5643
5644 * ses.el: The overall change is to add cell renaming, that is
5645 setting fancy names for cell symbols other than name matching
5646 "\\`[A-Z]+[0-9]+\\'" regexp .
5647 (ses-create-cell-variable): New defun.
5648 (ses-relocate-formula): Relocate formulas only for cells the
5649 symbols of which are not renamed, i.e. symbols whose names do not
5650 match regexp "\\`[A-Z]+[0-9]+\\'".
5651 (ses-relocate-all): Relocate values only for cells the symbols of
5652 which are not renamed.
5653 (ses-load): Create cells variables as the (ses-cell ...) are read,
5654 in order to check row col consistency with cell symbol name only
5655 for cells that are not renamed.
5656 (ses-replace-name-in-formula): New defun.
5657 (ses-rename-cell): New defun.
5658
ee957461
CY
56592011-12-11 Chong Yidong <cyd@gnu.org>
5660
5661 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
5662 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
5663
9a9e9ef0
MR
56642011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
5665
5666 * window.el (other-window): Fix docstring.
5667
92a8eba5
EZ
56682011-12-10 Eli Zaretskii <eliz@gnu.org>
5669
5670 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
1d00653d
SM
5671 `from' or `to' address before taking its substring.
5672 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
92a8eba5
EZ
5673 encoded name is chopped in the middle of the encoded string, and
5674 thus displayed encoded.
5675
e152e577
JB
56762011-12-10 Juanma Barranquero <lekktu@gmail.com>
5677
5678 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
5679
e5d84bfe
EZ
56802011-12-10 Eli Zaretskii <eliz@gnu.org>
5681
5682 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
5683 to use texinfo-update-node and commands that call it if the
5684 Texinfo file uses @node lines without next/prev/up pointers.
b8830d28 5685 Correct outdated description about texinfo-master-menu.
e5d84bfe
EZ
5686 (texinfo-all-menus-update, texinfo-master-menu)
5687 (texinfo-update-node, texinfo-every-node-update)
5688 (texinfo-multiple-files-update): Doc fix. Warn against updating
5689 all the @node lines.
5690 (texinfo-master-menu): Only call texinfo-update-node if the prefix
b8830d28
EZ
5691 argument is numeric. Explain better in the doc string what the
5692 function really does.
5693 (texinfo-insert-master-menu-list): Improve the error message
5694 displayed if there's no menu in the Top node.
5695 (Bug#2975) See also this thread:
e5d84bfe
EZ
5696 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
5697
1d84e9bb
MG
56982011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
5699
5700 * speedbar.el (speedbar-supported-extension-expressions):
5701 Add .adb and .ads, commonly used for Ada source code (bug#10256).
5702
382c953b
JB
57032011-12-09 Juanma Barranquero <lekktu@gmail.com>
5704
5705 * printing.el (pr-mode-alist):
5706 * simple.el (filter-buffer-substring-functions)
5707 (completion-list-insert-choice-function):
5708 * window.el (window-with-parameter, window-atom-root)
5709 (window-sides-slots, window-size-fixed, window-min-delta)
5710 (window-max-delta, window--resize-mini-window)
5711 (window--resize-child-windows-normal, window-tree)
5712 (delete-other-windows, quit-window, split-window)
5713 (display-buffer-record-window, special-display-buffer-names)
5714 (special-display-regexps, special-display-popup-frame)
5715 (same-window-p, split-window-sensibly)
5716 (display-buffer-overriding-action, display-buffer-alist)
5717 (display-buffer-base-action, display-buffer, switch-to-buffer)
5718 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
5719 (fit-window-to-buffer, recenter-positions)
5720 (mouse-autoselect-window-state, mouse-autoselect-window-select):
5721 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
5722 and remove unneeded backslashes in docstrings.
5723
39c9faef
SM
57242011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
5725
98449af8
SM
5726 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
5727
39c9faef
SM
5728 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
5729 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
5730 end in ".mk".
5731 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
5732 when reading the makefile (bug#10116).
5733
86ed9fdc
SM
57342011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
5735
5736 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
5737 (bug#10116).
5738
5580f89d
GM
57392011-12-06 Glenn Morris <rgm@gnu.org>
5740
5741 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
5742
28d3917c
CY
57432011-12-06 Chong Yidong <cyd@gnu.org>
5744
5745 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
5746
a98edce9
JB
57472011-12-06 Juanma Barranquero <lekktu@gmail.com>
5748
5749 * textmodes/table.el (table-shorten-cell): Fix typo.
5750
e65adfac
CG
57512011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
5752
5753 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
5754
71cc0b74
EZ
57552011-12-05 Eli Zaretskii <eliz@gnu.org>
5756
5757 * descr-text.el (describe-char): Fix display of strong
5758 right-to-left characters and directional embeddings and overrides.
5759
5760 * simple.el (what-cursor-position): Fix display of codepoints of
5761 strong right-to-left characters.
5762
315bc30d
CY
57632011-12-05 Chong Yidong <cyd@gnu.org>
5764
5765 * faces.el (read-color): Doc fix.
5766
58a70b94
GM
57672011-12-05 Glenn Morris <rgm@gnu.org>
5768
5769 * align.el (align--set-marker): Add doc-string.
5770 Don't try to move something that is not a marker. (Bug#10216)
5771
5158face
GM
57722011-12-04 Glenn Morris <rgm@gnu.org>
5773
5774 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
5775 overly zealous deletion of trailing whitespace.
5776
520fca41
JB
57772011-12-04 Juanma Barranquero <lekktu@gmail.com>
5778
5779 * server.el (server-delete-client): On Windows, do not try to delete
5780 the only terminal.
5781 (server-process-filter): On Windows, treat requests for a tty frame as
5782 if they were for a GUI frame if the running server is in GUI mode.
5783
5e605a2e
GM
57842011-12-03 Glenn Morris <rgm@gnu.org>
5785
5786 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
5787
5c3fe83f
SM
57882011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
5789
6f5e57e7
SM
5790 * electric.el: Streamline electric-indent's hook.
5791 (electric-indent-chars): Revert to simple list.
5792 (electric-indent-functions): New var.
5793 (electric-indent-post-self-insert-function): Use it.
5794
5c3fe83f
SM
5795 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
5796 there's no inferior buffer (bug#10196).
5797 (prolog-consult-compile): Don't use toggle-read-only.
5798
6bdac736
MA
57992011-12-02 Michael Albinus <michael.albinus@gmx.de>
5800
5801 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
5802 interrupt. (Bug#10187)
5803
6131ba7f
SM
58042011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
5805
99c79fee
SM
5806 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
5807 (bug#9160).
5808
6131ba7f
SM
5809 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
5810 (bug#10191).
5811
cb0a02ea
JL
58122011-12-02 Juri Linkov <juri@jurta.org>
5813
5814 * info.el (Info-search): Display "end of manual" when Isearch
5815 reaches the end of single-file Info manual. (Bug#9918)
5816
66e0570c
EZ
58172011-12-02 Eli Zaretskii <eliz@gnu.org>
5818
5819 * isearch.el (isearch-message-prefix): Run the input method part
5820 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
5821
02b16839
JL
58222011-12-02 Juri Linkov <juri@jurta.org>
5823
5824 * isearch.el (isearch-occur): Use `word-search-regexp' for
5825 `isearch-word'.
5826 (isearch-search-and-update): Add condition for `isearch-word' and
5827 call `word-search-regexp'. (Bug#10145)
5828
0b950688
GM
58292011-12-01 Glenn Morris <rgm@gnu.org>
5830
5831 * eshell/em-hist.el (eshell-hist-initialize):
5832 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 5833 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 5834
9505c3c7
SM
58352011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
5836
5837 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
5838
1bbe96b2 58392011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 5840
a1beca85
SM
5841 * progmodes/verilog-mode.el (verilog-pretty-expr):
5842 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
5843 verilog, such as += *= and the like.
5844 (verilog-assignment-operator-re): Regular expression to find the
5845 assigment operator in a verilog assignment.
5846 (verilog-assignment-operation-re): Regular expression to find an
5847 assignment statement for pretty-expr.
5848 (verilog-in-attribute-p): Query returns true if point is in an
5849 attribute context; used to skip these for expression line up from
5850 pretty-expr.
5851 (verilog-in-parameter-p): Query returns true if point is in an
5852 parameter definition context; used to skip these for expression
5853 line up from pretty-expr.
5854 (verilog-in-parenthesis-p): Query returns true if point is in a
5855 parenthetical expression, specifically ( ) but not [ ] or { };
5856 used by pretty-expr.
5857 (verilog-just-one-space): If there is no space, don't add one.
5858 (verilog-get-lineup-indent-2): Specifically skip just attribute
5859 contexts for expression lineup, rather than skipping all
5860 parenthetical expressions.
5861 (verilog-calculate-indent): Fix comment, and fix indent.
5862 (verilog-do-indent): Indent declarations in lists (suggested by
5863 Joachim Lechner).
5864 (verilog-mode-abbrev-table): Populate abbrev mode with the various
5865 skeleton items.
5866 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
5867 by Alain Mellan).
5868
1bbe96b2 58692011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
5870
5871 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
5872 parameters with embedded comments. Reported by Ray Stevens.
5873 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
5874 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
5875 Reported by Tim Holt.
5876 (verilog-auto): Fix AUTOing a upper module then AUTOing module
5877 instantiated by upper module causing wrong expansion until AUTOed a
5878 second time. Reported by K C Buckenmaier.
5879 (verilog-diff-auto): Fix showing .* as a difference when
5880 `verilog-auto-star-save' off. Reported by Dan Dever.
5881 (verilog-auto-reset, verilog-read-always-signals)
5882 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
5883 temporary signals in reset list if
5884 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
5885 style to each signal's assignment type, bug381.
5886 Reported by Thomas Esposito.
6288f0ca
WS
5887 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
5888 (verilog-uvm-statement-re): Support UVM indentation and
5889 highlighting, with old OVM keywords only.
a1beca85 5890 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
1d00653d
SM
5891 Support AUTOTIEOFF creating non-wire data types.
5892 Suggested by Jonathan Greenlaw.
6288f0ca
WS
5893 (verilog-auto-insert-lisp, verilog-delete-to-paren)
5894 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
5895 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
5896 (verilog-read-sub-decls, verilog-read-sub-decls-line):
5897 Fix mismatching parenthesis inside commented out code when deleting
382c953b 5898 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6288f0ca
WS
5899 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
5900 non-numeric vector width. Reported by Alex Reed.
5901 (verilog-auto-ascii-enum): Add "onehot" option to work around not
382c953b 5902 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
5903 (verilog-auto-delete-trailing-whitespace):
5904 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
5905 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
5906 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
5907 Fix verilog-scan-cache corruption when running user AUTO expansion
5908 hooks that call indentation routines.
5909 (verilog-simplify-range-expression): Fix typo ignoring lower case
5910 identifiers.
5911 (verilog-delete-auto): Fix delete-autos to also remove user created
5912 automatics, as long as they start with AUTO.
5913 (verilog-batch-diff-auto, verilog-diff-auto)
5914 (verilog-diff-function): Add `verilog-diff-auto' and bind to
5915 "C-c?" to report differences in AUTO expansion, ignoring spaces.
5916 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
5917 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
5918 (verilog-re-search-forward-quick, verilog-syntax-ppss):
5919 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
5920 is disabled and its cache will get corrupt, causing AUTOS not to
5921 expand. Instead use only -quick functions.
5922 (verilog-scan-region): Fix scanning over escaped quotes.
5923 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
5924 (verilog-re-search-backward-quick)
5925 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
5926 related functions now ignore strings, to fix misparsing of strings
5927 with magic comments embedded in them.
a1beca85
SM
5928 (verilog-read-auto-template):
5929 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
5930 Reported by Brad Dobbie.
5931 (verilog-read-auto-template):
5932 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 5933 Reported by Brad Dobbie.
6288f0ca
WS
5934 (verilog-auto-inst, verilog-auto-inst-param)
5935 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
5936 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
5937 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
5938 debugging templates without merge conflicts, bug357.
5939 Reported by Brad Dobbie.
5940 (verilog-read-auto-template):
5941 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
5942 Reported by Brad Dobbie.
5943 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
5944 abbrevs so user won't be asked to save.
5945 (verilog-read-auto-lisp-present): Fix to start at beginning of
5946 buffer in case called outside of verilog-auto.
5947 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
5948 to "X-2". Reported by Matthew Myers.
5949 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
5950 all inputs from module templates. Reported by Leith Johnson.
5951 (verilog-module-inside-filename-p): Fix locating programs as with
5952 modules.
5953 (verilog-auto-inst-port): Fix vl-width expressions when using
5954 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
5955 (verilog-decls-get-regs, verilog-decls-get-signals,
5956 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
5957 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
5958 verilog-read-decls): Combine reg and wire structures into one var
5959 structure to represent SystemVerilog concepts.
5960 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
5961 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
5962 (verilog-auto-wire-type, verilog-insert-definition):
5963 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
5964 SystemVerilog "logic" keyword instead of "wire"/"reg".
5965 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
5966 to declares outputs that also have assignments (presumably in an
a1beca85
SM
5967 ifdef or generate if so there's not a driver conflict).
5968 Reported by Matthew Myers.
5969 (verilog-auto-declare-nettype, verilog-insert-definition):
5970 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
5971 `default_nettype none. Reported by Julian Gorfajn.
5972 (verilog-read-always-signals-recurse, verilog-read-decls)
5973 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
5974 malformed end statement, bug325. Reported by Joshua Wise and
5975 Andrew Drake.
5976 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
5977 (verilog-inst-comment-re): Fix not deleting Interfaced comment
1d00653d
SM
5978 when expanding .* in interfaces, bug320.
5979 Reported by Pierre-David Pfister.
6288f0ca 5980 (verilog-read-module-name): Fix import statements between module
1d00653d
SM
5981 name and open parenthesis, bug317.
5982 Reported by Pierre-David Pfister.
6288f0ca
WS
5983 (verilog-simplify-range-expression): Fix simplification of
5984 multiplications inside AUTOWIRE connections, bug303.
5985 (verilog-auto-inst-port): Support parameter expansion in
5986 multidimensional arrays.
5987 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
5988 after "assert property". Reported by Julian Gorfajn.
5989 (verilog-simplify-range-expression): Fix "couldn't merge" errors
5990 with multiplication, bug303.
5991 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
5992 Reported by Jan Frode Lonnum.
5993
1bbe96b2
GM
59942011-11-30 Juanma Barranquero <lekktu@gmail.com>
5995
5996 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
5997 (hfy-shell-file-name, hfy-shell):
5998 * international/fontset.el (x-decompose-font-name): Fix typos.
5999
60002011-11-29 Ken Brown <kbrown@cornell.edu>
6001
6002 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
6003 (gdb-version): Remove defvar.
6004 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
6005 (gdb-gud-context-command, gdb-non-stop-handler)
6006 (gdb-current-context-command, gdb-stopped): Use it.
6007 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
6008 (gdb-non-stop-handler): Don't enable pretty-printing here.
6009 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
6010 non-stop mode. Use the following.
6011 (gdb-check-target-async): New defun.
6012 (gud-watch, gdb-stopped): Fix whitespace.
6013 (gdb-get-source-file): Don't try to display the source file if
6014 `gdb-main-file' is nil.
6015
60162011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6017
6018 * align.el: Try to generate fewer markers (bug#10047).
6019 (align--set-marker): New macro.
6020 (align-region): Use it.
6021
c935221f
SM
60222011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6023
6024 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
6025
e70b5064
CY
60262011-11-29 Chong Yidong <cyd@gnu.org>
6027
6028 * indent.el (indent-for-tab-command, indent-according-to-mode):
6029 Doc fix.
6030 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
6031
f3af92b7
MA
60322011-11-29 Michael Albinus <michael.albinus@gmx.de>
6033
6034 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
6035 aware of remote file names. (Bug#10124)
6036
ed472be9
CY
60372011-11-29 Chong Yidong <cyd@gnu.org>
6038
6039 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
6040
24510c22
SM
60412011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6042
6043 * files.el (find-file): Don't use force-same-window (bug#10144).
6044 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
6045 use pop-to-buffer if the selected window can't be used.
6046 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
6047
c60c3703
EZ
60482011-11-28 Eli Zaretskii <eliz@gnu.org>
6049
6050 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
6051 special-mode-map.
6052
e95def75
CY
60532011-11-28 Chong Yidong <cyd@gnu.org>
6054
6055 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
6056
c3f1c606
NR
60572011-11-27 Nick Roberts <nickrob@snap.net.nz>
6058
6059 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
6060 gdb-get-source-file-list on gdb-create-source-file-list.
6061
00db469c
EZ
60622011-11-26 Eli Zaretskii <eliz@gnu.org>
6063
6064 * whitespace.el (whitespace-newline): Use a different foreground
6065 color for 16-color light-background displays.
6066
4ad3bc2a
CY
60672011-11-24 Chong Yidong <cyd@gnu.org>
6068
6069 * window.el (display-buffer--special-action): Doc fix.
6070
e9fce1ac
JB
60712011-11-25 Juanma Barranquero <lekktu@gmail.com>
6072
6073 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
6074 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
6075 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
6076 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
6077 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
6078 (avl-tree-stack-first):
6079 * emacs-lisp/cconv.el (cconv--analyse-use):
6080 * net/gnutls.el (gnutls-negotiate): Fix typos.
6081
cb825e5d
GM
60822011-11-24 Glenn Morris <rgm@gnu.org>
6083
3adbe224
GM
6084 * lpr.el (lpr-windows-system, lpr-lp-system):
6085 * mail/binhex.el (binhex-begin-line):
6086 * progmodes/grep.el (grep-history, grep-find-history):
6087 * textmodes/flyspell.el:
6088 * vc/pcvs-defs.el (cvs-global-menu):
6089 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
6090 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
6091 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
6092
321decc8
GM
6093 * net/tls.el: Fix case of "GnuTLS".
6094
420b63ad
GM
6095 * paths.el (rmail-file-name): Format doc-string for make-docfile.
6096
cb825e5d
GM
6097 * version.el (emacs-build-system): Give it a doc-string.
6098
a0649f08
JL
60992011-11-24 Juri Linkov <juri@jurta.org>
6100
6101 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
6102
c0bc0fd4
GM
61032011-11-24 Glenn Morris <rgm@gnu.org>
6104
6105 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
6106 if called on a non-mime message just toggle the headers. (Bug#8006)
6107
20db1522
JB
61082011-11-24 Juanma Barranquero <lekktu@gmail.com>
6109
6110 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
6111 (allout-lead-with-comment-string, allout-structure-deleted-hook)
6112 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
6113 (allout-rebullet-heading, allout-open-sibtopic)
6114 (allout-toggle-current-subtree-encryption)
6115 (allout-toggle-subtree-encryption, allout-encrypt-string)
6116 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
6117 (allout-distinctive-bullets-string, allout-auto-activation):
6118 * window.el (window-normalize-buffer-to-display):
6119 * progmodes/verilog-mode.el (verilog-batch-indent):
6120 * textmodes/bibtex.el (bibtex-field-braces-opt)
6121 (bibtex-field-strings-opt):
6122 * vc/cvs-status.el (cvs-tree-merge):
6123 Fix typos.
6124
7262a87c
MA
61252011-11-23 Michael Albinus <michael.albinus@gmx.de>
6126
6127 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
6128 `non-essential' to t, in order to avoid remote connections.
6129
283430a1
EZ
61302011-11-23 Eli Zaretskii <eliz@gnu.org>
6131
a1beca85
SM
6132 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6133 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
6134 case-insensitively.
6135
d2992a38
ML
61362011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
6137
6138 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
6139
50419064
GM
61402011-11-23 Glenn Morris <rgm@gnu.org>
6141
da94eca1
GM
6142 * paths.el (rmail-file-name): Reformat the doc-string so that it
6143 is picked up.
6144
9aac4de2
GM
6145 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
6146 (rmail-auto-file): Ignore case in the "special" field names,
6147 as mail-fetch-field does for all others.
6148
8038d2d2
GM
6149 * mail/rmail.el (rmail-forward):
6150 * mail/rmailkwd.el (rmail-set-label):
6151 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
6152 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
6153
f3fe222a
GM
6154 * mail/rmail.el (rmail-current-message): Doc fix.
6155
50419064
GM
6156 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
6157
28109f49
SM
61582011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
6159
6160 * server.el (server-eval-and-print): Allow C-g (bug#6585).
6161
394c65f1
GM
61622011-11-22 Glenn Morris <rgm@gnu.org>
6163
6164 * mail/rmailmm.el (test-rmail-mime-handler)
6165 (test-rmail-mime-bulk-handler)
6166 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
6167
f2a0aa3a
JL
61682011-11-21 Juri Linkov <juri@jurta.org>
6169
1154d12e
JB
6170 * calc/calc.el (calc-read-key-sequence):
6171 Let-bind `input-method-function' to nil. (Bug#10018)
f2a0aa3a 6172
9c34a344
LMI
61732011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
6174
6175 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
6176 Tell the caller that the next line needs recomputation, even
6177 though it doesn't start a sexp (bug#10094).
6178
f04a3be9
SM
61792011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6180
6181 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
6182
7978747f
SM
61832011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
6184
f04a3be9
SM
6185 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
6186 Use force-same-window.
7978747f 6187
fe7a3057
JB
61882011-11-20 Juanma Barranquero <lekktu@gmail.com>
6189
6190 * descr-text.el (describe-char-unicode-data):
6191 * json.el (json-string-escape):
6192 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
6193 (Footnote-unicode, Footnote-style-p):
6194 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
6195
24901d61
CY
61962011-11-20 Chong Yidong <cyd@gnu.org>
6197
6198 * window.el (replace-buffer-in-windows): Restore interactive spec.
6199
bac7ff22
SM
62002011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
6201
24f3d7b9
SM
6202 * electric.el (electric-indent-mode): Fix last change (too optimistic).
6203
bac7ff22
SM
6204 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
6205 (byte-compile-global-not-obsolete-vars): New var.
6206 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
6207 Use it.
6208 (byte-compile-warn-obsolete): Align text with the one in *Help*.
6209
cd1181db
JB
62102011-11-20 Juanma Barranquero <lekktu@gmail.com>
6211
6212 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
6213 * progmodes/pascal.el (electric-pascal-equal):
6214 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
6215 * xml.el (xml-substitute-special): Fix typos.
6216
7fb18e9e
GM
62172011-11-20 Glenn Morris <rgm@gnu.org>
6218
6219 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
6220 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
6221 Doc fixes.
6222 (rmail-decode-mime-charset): Mark as obsolete.
6223
6224 * mail/rmailsum.el (rmail-message-regexp-p-1):
6225 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
6226 Before using mime functions, check they are set. (Bug#10077)
6227
d5a6b3ba
JL
62282011-11-19 Juri Linkov <juri@jurta.org>
6229
6230 * info.el (Info-finder-find-node): Use `package--builtins' instead
6231 of `package-alist'. Use node names formed by the pattern "Keyword "
6232 and the keyword name.
6233
e981b61f
AS
62342011-11-19 Andreas Schwab <schwab@linux-m68k.org>
6235
1d00653d 6236 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
e981b61f 6237
3ffbc301
JL
62382011-11-19 Juri Linkov <juri@jurta.org>
6239
6240 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
6241 that calls `revert-buffer' on all Info buffers. (Bug#9915)
6242 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
6243 `old-history', `old-history-forward'. Add let-binding
6244 `window-selected'. Remove calls to `kill-buffer',
6245 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
6246 before calling `Info-find-node', so `Info-find-node-2' will reread
6247 the Info file. Restore window positions only when `window-selected'
6248 is non-nil.
6249
30c62133
JL
62502011-11-19 Juri Linkov <juri@jurta.org>
6251
6252 * isearch.el (isearch-lazy-highlight-new-loop):
6253 Remove condition `(not isearch-error)'. (Bug#9918)
6254
6255 * misearch.el (multi-isearch-search-fun): Add condition
6256 `(not bound)' to ignore lazy-highlighting search.
6257 Add the search-failed message "end of multi" when the end of
6258 multi-sequence is reached. Uncapitalize the search-failed
6259 message "Repeat for next buffer".
6260
6261 * info.el (Info-search): Add the search-failed message
6262 "end of the manual" when the end of the manual is reached
6263 in Isearch mode.
6264
645ca9cf
JL
62652011-11-19 Juri Linkov <juri@jurta.org>
6266
6267 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
6268 Use non-destructive `remove' instead of `delete' because
6269 `Info-history-list' stored to `Info-isearch-initial-history-list' in
6270 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
6271
df754f66
JL
62722011-11-19 Juri Linkov <juri@jurta.org>
6273
6274 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
6275 to nil instead of binding `search-ring' and `regexp-search-ring'.
6276 (Bug#9185)
6277
0e23d96a
EZ
62782011-11-19 Eli Zaretskii <eliz@gnu.org>
6279
6280 * simple.el (line-move): Force movement by logical lines for any
6281 hscrolled window, not only when auto-hscroll-mode is on.
6282 (line-move-visual): Update doc string to that effect. (Bug#10076)
6283
8a6ccb66
AS
62842011-11-19 Andreas Schwab <schwab@linux-m68k.org>
6285
6286 * language/european.el (macintosh): Define as alias for mac-roman.
6287
49ae5b39
EZ
62882011-11-19 Eli Zaretskii <eliz@gnu.org>
6289
6290 * mail/rmailmm.el (rmail-mime-display-header)
6291 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
6292 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
6293 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
6294 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
6295 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
6296 of a raw aref.
6297 (rmail-mime-entity-segment): To get past the tagline, move forward
6298 2 more lines, to account for the 2 empty lines that precede and
6299 follow the line with the buttons.
6300 (rmail-mime-update-tagline): Move one more line, to get past the
6301 empty line that follows the buttons in the tagline. (Bug#9520)
6302
c56cad4a
MR
63032011-11-19 Martin Rudalics <rudalics@gmx.at>
6304
6305 * window.el (window-max-delta-1, window-min-delta-1)
6306 (window-min-size-1, window-state-get-1, window-state-put-1)
6307 (window-state-put-2): Use "window--" prefix.
6308
cbe71af3
SM
63092011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
6310
2ad52c60
SM
6311 * emacs-lisp/smie.el: Improve warnings and conflict detection.
6312 (smie-warning-count): New var.
6313 (smie-set-prec2tab): Use it.
6314 (smie-bnf->prec2): Improve warnings. Add docstring.
6315 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
6316 (smie-bnf--set-class): New function.
6317 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
6318 corner case.
6319
6944dbc1
SM
6320 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
6321 (compilation-error-properties, compilation-move-to-column):
6322 Handle compilation-first-column while in the target buffer.
6323
c400c4d7
SM
6324 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
6325 Don't hardcode point-min==1.
6326
6dbe3e96
SM
6327 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
6328 (eshell-rewrite-for-command): Remove workaround.
6329 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
6330 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
6331 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
6332
cbe71af3
SM
6333 * files-x.el (modify-file-local-variable): Obey commenting conventions.
6334
a8e1496d
GM
63352011-11-17 Glenn Morris <rgm@gnu.org>
6336
6337 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6338 Ignore buffer-local generated-autoload-file if it is the same
6339 as the global value. (Bug#10049)
6340
df85d315
JB
63412011-11-17 Juanma Barranquero <lekktu@gmail.com>
6342
6343 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
6344 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
6345 (reftex-toc-previous-heading, reftex-toc-max-level)
6346 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
6347 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
6348 (reftex-toc-do-promote, reftex-toc-promote-prepare)
6349 (reftex-toc-promote-action, reftex-toc-extract-section-number)
6350 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
6351 (reftex-toc-rename-label, reftex-toc-visit-location)
6352 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
6353 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
6354 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
6355 leaving "*toc*" only for references to the buffer.
6356
a0c2d0ae
MR
63572011-11-17 Martin Rudalics <rudalics@gmx.at>
6358
6359 * window.el (window-resize, delete-window, split-window):
6360 Replace window-splits by window-combination-resize.
1d00653d 6361 * cus-start.el (window-splits): Replace by window-combination-resize.
a0c2d0ae 6362
35c0bac8
GM
63632011-11-17 Glenn Morris <rgm@gnu.org>
6364
6365 * progmodes/sh-script.el (sh-font-lock-keywords-var):
6366 Make bash entry derive from sh entry, not shell entry.
6367
d0c8fc8a
MA
63682011-11-16 Michael Albinus <michael.albinus@gmx.de>
6369
7262a87c
MA
6370 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
6371 local file name.
6372
7877f373
JB
63732011-11-16 Juanma Barranquero <lekktu@gmail.com>
6374
6375 * menu-bar.el (menu-bar-file-menu):
6376 * printing.el (pr-ps-utility):
6377 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
6378 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
6379 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
6380 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
6381 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
6382 (icalendar--convert-cyclic-to-ical)
6383 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
6384 (icalendar--convert-ical-to-diary)
6385 (icalendar--convert-recurring-to-diary)
6386 (icalendar--convert-non-recurring-all-day-to-diary)
6387 (icalendar-import-format-sample):
6388 * progmodes/idlw-shell.el (idlwave-shell-mode):
6389 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
6390 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
6391 (vhdl-ps-print-init): Fix typos.
6392
10649b82
KM
63932011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
6394
9d0cfcd6
GM
6395 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
6396 FSF and collapse date sequence, obscure author/maintainer email address
6397 better, remove extra version line, track relocation of author's webpage.
10649b82 6398
9d0cfcd6
GM
6399 * progmodes/python.el (python-pdbtrack-input-prompt)
6400 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
6401 regular python pdb prompts. Adjustments shamelessly taken exactly as
6402 suggested in EmacsWiki page (tiny change):
6403 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 6404
58179cce
JB
64052011-11-16 Juanma Barranquero <lekktu@gmail.com>
6406
6407 * expand.el (expand-pos, expand-index, expand-point):
6408 Remove redundant info from docstring.
6409 (expand-add-abbrevs): Doc fix.
6410 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
6411 (expand-sample-perl-mode-expand-list): Fix typos.
6412
6413 * net/dbus.el (dbus-event-member-name):
6414 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
6415 * term/pc-win.el (msdos-create-frame-with-faces):
6416 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
6417
b6f67890
MR
64182011-11-16 Martin Rudalics <rudalics@gmx.at>
6419
6420 * window.el (split-window, window-state-get-1)
6421 (window-state-put-1, window-state-put-2): Rename occurrences of
6422 window-nest to window-combination-limit.
1d00653d 6423 * cus-start.el (window-nest): Rename to window-combination-limit.
b6f67890 6424
ce7ddba0
CY
64252011-11-16 Chong Yidong <cyd@gnu.org>
6426
6427 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
6428 regexp (Bug#10033).
6429
3ae704f4
SM
64302011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
6431
6432 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
6433 `completing-read' will remove *Completions* and will preserve
6434 current-buffer for us.
6435 (tmm-add-prompt): Users of *Completions* will always (re)set its
6436 major mode.
6437 (tmm-old-comp-map): Remove.
6438
6ad1cdde
GM
64392011-11-16 Glenn Morris <rgm@gnu.org>
6440
6441 * mail/rmailedit.el: Require rmailmm when compiling.
6442 (rmail-old-mime-state): New declaration.
6443 (rmail-edit-current-message): If editing a mime message,
6444 edit the "raw" message from the mbox buffer.
6445 (rmail-cease-edit): Handle mime messages. (Bug#9840)
6446
d20faa20
GM
64472011-11-15 Glenn Morris <rgm@gnu.org>
6448
6449 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
6450 which wasn't being used. Add optional arg to force given state.
6451 (rmail-mime): Add optional arg to force given state.
6452
c7015153
JB
64532011-11-15 Juanma Barranquero <lekktu@gmail.com>
6454
6455 * allout.el (allout-encryption-plaintext-sanitization-regexps):
6456 * frame.el (display-mm-dimensions-alist):
6457 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
6458 (outline-move-subtree-down):
6459 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
6460 (newsticker--treeview-do-get-node):
6461 * net/quickurl.el (quickurl-list-buffer-name):
6462 * progmodes/dcl-mode.el (dcl-mode):
6463 * progmodes/gdb-mi.el (gdb-mapcar*):
6464 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
6465
45261b50
GM
64662011-11-15 Glenn Morris <rgm@gnu.org>
6467
6468 * mail/rmail.el (rmail-file-coding-system): It's only ever used
6469 in a boolean sense, so just make it a boolean, and fix the doc.
6470 (rmail-show-mime-function, rmail-mime-feature)
6471 (rmail-require-mime-maybe): Doc fixes.
6472 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
6473
6474 * mail/rmailmm.el (rmail-show-mime): Doc fix.
6475
0d26e0b6
JB
64762011-11-15 Juanma Barranquero <lekktu@gmail.com>
6477
6478 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
6479 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
6480 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
6481 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
6482
447f30f6
GM
64832011-11-15 Glenn Morris <rgm@gnu.org>
6484
672b871d
GM
6485 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
6486 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
6487 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
6488 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
6489 (rmail-mime, rmail-show-mime): Doc fixes.
6490
f6aa5bb1
GM
6491 * term/ns-win.el (mode-line-frame-identification):
6492 Leave it alone. (Bug#10051)
6493
947cd66b
GM
6494 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
6495
447f30f6
GM
6496 * mail/rmailout.el (rmail-output-to-rmail-buffer):
6497 Handle empty buffers. (Bug#9978)
6498
0b381c7e
JB
64992011-11-14 Juanma Barranquero <lekktu@gmail.com>
6500
6501 * international/mule.el (define-charset):
6502 * mail/rmailmm.el (rmail-mime-find-header-encoding):
6503 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
6504 * progmodes/verilog-mode.el (verilog-backward-token):
6505 * textmodes/ispell.el (lookup-words):
6506 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
6507
71e027ac
GM
65082011-11-14 Glenn Morris <rgm@gnu.org>
6509
56632ce4
GM
6510 * progmodes/executable.el
6511 (executable-make-buffer-file-executable-if-script-p):
6512 Handle file-modes returning nil.
6513
40500957
GM
6514 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
6515 message - not necessary, and causes problems. (Bug#9831)
6516
071c2340
GM
6517 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
6518
d3cfca60
GM
6519 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
6520
71e027ac
GM
6521 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
6522 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
6523 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
6524
89d61221
MR
65252011-11-12 Martin Rudalics <rudalics@gmx.at>
6526
6527 * window.el (window-resize, delete-window): Use window-splits
6528 variable instead of function.
6529 (window-state-get-1, window-state-put-2, window-state-put):
6530 Don't deal with windows' splits status.
6531
98282f6f
GM
65322011-11-12 Glenn Morris <rgm@gnu.org>
6533
6534 * apropos.el (apropos-do-all, apropos-library, apropos-value)
6535 (apropos-documentation): Doc fixes.
6536
40a8bdf6
JB
65372011-11-11 Juanma Barranquero <lekktu@gmail.com>
6538
6539 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
6540 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
6541
65bd19ff
SM
65422011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
6543
6544 * electric.el (electric-indent-post-self-insert-function): Make it
6545 possible for a char to only indent in some circumstances.
6546 (electric-indent-mode): Simplify.
6547
54f9154c
MR
65482011-11-11 Martin Rudalics <rudalics@gmx.at>
6549
6550 * window.el (windows-with-parameter): Remove unused function.
6551 (windows-at-side): Rename to window-at-side-list.
6552 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
6553 (window-side-check, window-size-ignore, window-size-fixed-1)
6554 (window-in-direction-2): Prefix with "window--".
6555 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 6556
68cbc58b
GM
65572011-11-11 Glenn Morris <rgm@gnu.org>
6558
6559 * subr.el (eval-after-load): If FILE is already loaded,
6560 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
6561
b2621720
GM
65622011-11-10 Glenn Morris <rgm@gnu.org>
6563
9a4de110
GM
6564 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
6565 Call svn via vc-svn-command rather than vc-do-command.
6566 (vc-svn-command): Add --non-interactive. (Bug#9993)
6567 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
6568
b2621720
GM
6569 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6570 Add toggle-read-only. (Bug#7292)
6571 * files.el (toggle-read-only): Mention that it should only
6572 be used interactively. (Bug#10006)
6573
1dce7193
SM
65742011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
6575
d9ac1a1e
SM
6576 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6577 Adjust regexp for OCaml warnings.
6578
0c325082
SM
6579 * electric.el (electric-pair-post-self-insert-function): Let user
6580 turn it off buffer-locally (bug#9932).
6581
90132c14
SM
6582 * progmodes/python.el (python-beginning-of-statement):
6583 Rewrite (bug#2703).
6584
1dce7193
SM
6585 * progmodes/compile.el: Better handle TABs (bug#9749).
6586 (compilation-internal-error-properties)
6587 (compilation-next-error-function): Obey the target buffer's
6588 compilation-error-screen-columns.
6589
c4e7c63a
JB
65902011-11-09 Juanma Barranquero <lekktu@gmail.com>
6591
6592 * progmodes/meta-mode.el: Remove obsolete comments.
6593 (meta-right-comment-regexp, meta-ignore-comment-regexp):
6594 Fix typos in docstrings.
6595
2cffd681
MR
65962011-11-09 Martin Rudalics <rudalics@gmx.at>
6597
6598 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 6599 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
6600 (window--resizable): New function. Make all callers of
6601 window-resizable call window--resizable instead.
6602 (window-resizable): Rewrite in terms of window--resizable.
6603
0edcba87
GM
66042011-11-08 Glenn Morris <rgm@gnu.org>
6605
6606 * progmodes/delphi.el (delphi-mode-syntax-table):
6607 Let define-derived-mode define a proper syntax table. (Bug#9994)
6608
4b0d61e3
SM
66092011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
6610
6611 * window.el: Stay away from defsubst.
6612 (window-list-no-nils): Remove.
6613 (window-state-get-1, window-state-get): Use backquote instead.
6614
cd394be1 66152011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
fcbcac2e 6616
4b0d61e3 6617 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 6618 Fix incorrect use of default argument in `completing-read'.
6619
e1c2c6f2
MR
66202011-11-08 Martin Rudalics <rudalics@gmx.at>
6621
6622 * window.el (display-buffer-function, special-display-function):
6623 Mention display-buffer-record-window but do not mention
6624 help-setup parameter in doc-strings.
b3f4a882 6625 (window-min-delta): Fix doc-string typo.
e1c2c6f2 6626
105216ed
CY
66272011-11-08 Chong Yidong <cyd@gnu.org>
6628
6629 * window.el (window-total-height, window-total-width): Doc fix.
6630 (window-body-size): Move from C.
6631 (window-body-height, window-body-width): Move to C.
6632
0a9f9ab5
SM
66332011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
6634
6635 * window.el: Make special-display like display-buffer-alist (bug#9532).
6636 (display-buffer--special-action): New function, morphed
6637 from display-buffer--special.
6638 (display-buffer): Use it to handle special-display-buffers at higher
6639 priority (just after display-buffer-alist).
6640 (display-buffer-fallback-action, display-buffer--other-frame-action)
6641 (pop-to-buffer-same-window): Remove display-buffer--special.
6642
a769dd15
GM
66432011-11-07 Glenn Morris <rgm@gnu.org>
6644
6645 * calendar/cal-menu.el (cal-menu-set-date-title):
6646 Do nothing if not in a calendar. (Bug#9976)
6647
05a61ee3
SM
66482011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
6649
6650 * files.el (find-file): Always use selected-window.
6651
be7f5545
MR
66522011-11-07 Martin Rudalics <rudalics@gmx.at>
6653
6654 * window.el (window-combinations): Make WINDOW argument
6655 mandatory. Rewrite doc-string.
6656 (walk-window-subtree, window-atom-check, window-min-delta)
6657 (window-max-delta, window--resize-this-window)
6658 (window--resize-root-window-vertically, window-tree)
6659 (balance-windows, window-state-put): Rewrite doc-strings as to
6660 not mention the term "subwindow".
6661 (window--resize-subwindows-skip-p): Rename to
6662 window--resize-child-windows-skip-p.
6663 (window--resize-subwindows-normal): Rename to
6664 window--resize-child-windows-normal.
6665 (window--resize-subwindows): Rename to
6666 window--resize-child-windows.
6667 (window-or-subwindow-p): Rename to window--in-subtree-p.
6668
3c6702ef
ML
66692011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
6670
6671 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
6672 Ensure that mbox format messages end in two newlines (Bug#9974).
6673
49745b39
CY
66742011-11-06 Chong Yidong <cyd@gnu.org>
6675
6676 * window.el (window-combination-p): Function deleted; its
6677 side-effect is not used in any existing code.
6678 (window-combinations, window-combined-p): Call window-*-child
6679 directly.
6680
24300f5f
CY
66812011-11-05 Chong Yidong <cyd@gnu.org>
6682
6683 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
6684 (window-size-ignore, window-state-get): Callers changed.
6685 (window-normalize-window): Rename from window-normalize-any-window.
6686 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 6687 (window-normalize-live-window): Delete.
447f16b8
CY
6688 (window-combination-p, window-combined-p, window-combinations)
6689 (walk-window-subtree, window-atom-root, window-min-size)
6690 (window-sizable, window-sizable-p, window-size-fixed-p)
6691 (window-min-delta, window-max-delta, window-resizable)
6692 (window-resizable-p, window-full-height-p, window-full-width-p)
6693 (window-current-scroll-bars, window-point-1, set-window-point-1)
6694 (window-at-side-p, window-in-direction, window-resize)
6695 (adjust-window-trailing-edge, maximize-window, minimize-window)
6696 (window-deletable-p, delete-window, delete-other-windows)
6697 (record-window-buffer, unrecord-window-buffer)
6698 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
6699 (quit-window, split-window, window-state-put)
6700 (set-window-text-height, fit-window-to-buffer)
6701 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 6702
89bd5ee1
EZ
67032011-11-04 Eli Zaretskii <eliz@gnu.org>
6704
53479029
EZ
6705 * mail/rmail.el (rmail-simplified-subject): Decode subject with
6706 rfc2047-decode-string.
6707 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
6708 warnings.
6709
89bd5ee1
EZ
6710 * window.el (window-body-height, window-body-width): Mention in
6711 the doc string that the return values are in frame's canonical
6712 units. (Bug#9949)
6713
bd17fdee
AM
67142011-11-03 Alan Mackenzie <acm@muc.de>
6715
6716 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
6717 change in cc-engine.el.
6718
acc825c5
SM
67192011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
6720
6721 * window.el (switch-to-buffer): Use `force-same-window' interactively.
6722
1885e5b8
MR
67232011-11-02 Martin Rudalics <rudalics@gmx.at>
6724
6725 * window.el (quit-window): Call unrecord-window-buffer after
6726 showing another buffer in the window. (Bug#9937)
acc825c5 6727 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 6728
ebe06da9
JB
67292011-11-02 Juanma Barranquero <lekktu@gmail.com>
6730
6731 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
6732 Accept status with more than 9 shelves. (Bug#9935)
6733 Reported by Colin D Bennett <colin@gibibit.com>.
6734
4ee88440
MR
67352011-11-01 Martin Rudalics <rudalics@gmx.at>
6736
6737 * help.el (with-help-window): Don't reference
6738 temp-buffer-show-specifiers in doc-string.
6739
08e1d82c
AS
67402011-10-31 Andreas Schwab <schwab@linux-m68k.org>
6741
6742 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
6743 menu-item.
6744
84bd6e9e
VJL
67452011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6746
6747 * whitespace.el: New version 13.2.2.
6748 (whitespace-newline-mode): Disable properly. Reported by Sarah
6749 <EmacsWiki>.
6750
dba0634a
UJ
67512011-10-30 Ulf Jasper <ulf.jasper@web.de>
6752
6753 * net/newst-treeview.el: Remove "Time-stamp".
6754 (newsticker--group-manage-orphan-feeds): Do not call
6755 newsticker--treeview-tree-update.
db22a3c2
JB
6756 (newsticker-treeview-update, newsticker-treeview):
6757 Call newsticker--treeview-tree-update if necessary.
dba0634a 6758
3d8daefe
MR
67592011-10-30 Martin Rudalics <rudalics@gmx.at>
6760
6761 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
6762 (window-iso-combinations): Remove "iso-" infix.
6763 Suggested by Chong Yidong.
3d8daefe
MR
6764 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
6765 (window-max-delta-1, window-resize, window--resize-siblings)
6766 (window--resize-this-window, adjust-window-trailing-edge)
6767 (split-window, balance-windows-1)
6768 (shrink-window-if-larger-than-buffer):
6769 * calendar/calendar.el (calendar-generate-window):
db22a3c2 6770 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 6771
1bc4c3ae
SM
67722011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
6773
6774 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
6775 in place (bug#9907).
6776 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
6777 (eshell-rewrite-if-command, eshell-rewrite-for-command)
6778 (eshell-structure-basic-command, eshell-rewrite-while-command)
6779 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
6780 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
6781 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
6782 (eshell-do-pipelines-synchronously, eshell-eval-command):
6783 Use backquotes and prefer setq to set.
6784 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
6785 (eshell-macrop): Use functionp.
c1e2f5fa 6786 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 6787
30b65d9c
CY
67882011-10-30 Chong Yidong <cyd@gnu.org>
6789
6790 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
6791 instead of set-mark (Bug#9810).
6792
2d197ffb
CY
67932011-10-30 Chong Yidong <cyd@gnu.org>
6794
6795 * window.el (split-window-below, split-window-right): Rename from
6796 split-window-above-each-other and split-window-side-by-side
6797 respectively. All callers changed.
6798 (split-window-sensibly, split-window-sensibly): Use them.
6799 (split-window-keep-point): Doc fix.
6800
6801 * isearch.el: Add isearch-scroll property to split-window-below
6802 and split-window-right.
6803
6804 * follow.el (follow-mode):
6805 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
6806 * progmodes/ada-xref.el (ada-gdb-application):
6807 * emulation/vip.el (vip-buffer-in-two-windows):
6808 * image-dired.el (image-dired-dired-with-window-configuration):
6809 * dired-x.el (dired-do-find-marked-files):
6810 * dired.el (dired-pop-to-buffer):
6811 * bs.el (bs--show-with-configuration):
6812 * vc/emerge.el (emerge-setup-windows):
6813 * textmodes/two-column.el (2C-two-columns):
6814 * textmodes/reftex-toc.el (reftex-toc):
6815 * progmodes/gdb-mi.el (gdb-setup-windows):
6816 * progmodes/fortran.el (fortran-window-create):
6817 * net/newst-treeview.el (newsticker--treeview-window-init):
6818 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
6819 * emulation/tpu-edt.el (tpu-gold-map):
6820 * emulation/crisp.el (crisp-mode-map):
6821 * calendar/calendar.el (calendar-basic-setup): Callers changed.
6822
38bb2ca8
CY
68232011-10-29 Chong Yidong <cyd@gnu.org>
6824
aa4de341
CY
6825 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
6826
e1eb5385
CY
6827 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
6828
5d2ece3c
CY
6829 * textmodes/flyspell.el (flyspell-word): Fix char offset for
6830 forged Ispell output (Bug#7904).
6831
38bb2ca8
CY
6832 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
6833
d0af9f77
SM
68342011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6835
6836 * doc-view.el: Avoid ugly errors about not finding nil.
6837 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
6838 (doc-view-dvipdf-program, doc-view-unoconv-program)
6839 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
6840 Avoid nil or absolute file name as default value.
6841 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
6842
52bedd34
AM
68432011-10-28 Alan Mackenzie <acm@muc.de>
6844
db22a3c2 6845 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 6846
7e43cfa5
AM
68472011-10-28 Alan Mackenzie <acm@muc.de>
6848
6849 Amend the handling of c-beginning/end-of-defun in nested declaration
6850 scopes.
6851
52bedd34
AM
6852 * progmodes/cc-vars.el (c-defun-tactic): Move here from
6853 cc-langs.el. Change it to a defcustom.
7e43cfa5 6854
52bedd34
AM
6855 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
6856 cc-vars.el.
7e43cfa5 6857
d0af9f77
SM
6858 * progmodes/cc-engine.el (c-beginning-of-statement-1):
6859 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 6860
52bedd34 6861 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 6862 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
6863 (c-widen-to-enclosing-decl-scope): New function.
6864 (c-while-widening-to-decl-block): New macro.
6865 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
6866 outward for defun boundaries, and correspondingly change symbol
6867 `respect-enclosure' to `go-outward'.
6868 (c-declaration-limits): Change algorithm to report only the "innermost"
6869 defun's boundaries.
6870
1a2ce9ee
DD
68712011-10-28 Deniz Dogan <deniz@dogan.se>
6872
6873 * net/rcirc.el (rcirc-mode): Use hard newlines.
6874
bc97a826
AM
68752011-10-28 Alan Mackenzie <acm@muc.de>
6876
6877 Amend to indent and fontify macros "which include their own semicolon"
6878 correctly, using the "virtual semicolon" mechanism.
6879
52bedd34 6880 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 6881
d0af9f77 6882 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 6883 Recode to scan one line at a time rather than having \n and \r
58179cce 6884 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 6885 (c-forward-label): Amend for virtual semicolons.
58179cce 6886 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 6887
52bedd34
AM
6888 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
6889 of the new C macros.
bc97a826 6890
52bedd34 6891 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
6892 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
6893 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
6894 (c-opt-cpp-macro-define): Make into a full language variable.
6895 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
6896 AWK Mode (including \n, \r) removed, no longer needed.
6897
d0af9f77
SM
6898 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
6899 Invoke c-make-macro-with-semi-re.
bc97a826 6900
52bedd34
AM
6901 * progmodes/cc-vars.el (c-macro-with-semi-re):
6902 (c-macro-names-with-semicolon): New variables.
58179cce 6903 (c-make-macro-with-semi-re): New function.
bc97a826 6904
7a6c0941
SM
69052011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6906
6907 * vc/log-edit.el: Fill empty field rather than adding new one.
6908 (log-edit-add-field): New function.
6909 (log-edit-insert-changelog): Use it.
6910
b0c4cdcf
ML
69112011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
6912
6913 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
6914
ee1f1da9
SM
69152011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6916
6917 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
6918 (gdb--check-interpreter): New function.
6919 (gdb): Use it.
6920
51bc5f8b
GM
69212011-10-27 Glenn Morris <rgm@gnu.org>
6922
416a2c45
GM
6923 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
6924 (least-positive-float, least-negative-float)
6925 (least-positive-normalized-float, least-negative-normalized-float)
6926 (float-epsilon, float-negative-epsilon):
6927 Remove unnecessary declarations.
6928
6929 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
6930 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
6931 (least-positive-float, least-negative-float)
6932 (least-positive-normalized-float, least-negative-normalized-float)
6933 (float-epsilon, float-negative-epsilon): Add doc-strings,
6934 based on those in cl.texi.
6935
51bc5f8b
GM
6936 * files.el (set-visited-file-name): If the major-mode changed,
6937 reload the local variables. (Bug#9796)
6938
15de15c6
CY
69392011-10-27 Chong Yidong <cyd@gnu.org>
6940
6941 * subr.el (change-major-mode-after-body-hook): New hook.
6942 (run-mode-hooks): Run it.
6943
ee1f1da9
SM
6944 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6945 Use change-major-mode-before-body-hook.
15de15c6
CY
6946
6947 * simple.el (fundamental-mode):
6948 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
6949 change introducing fundamental-mode-hook.
6950
5430d399
JB
69512011-10-26 Juanma Barranquero <lekktu@gmail.com>
6952
acc825c5 6953 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 6954
ad74a69e
MA
69552011-10-26 Michael Albinus <michael.albinus@gmx.de>
6956
6957 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 6958 tramp.el explicitly. (Bug#7583)
ad74a69e 6959
71d4c2a5
SM
69602011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
6961
6962 * progmodes/octave-mod.el:
6963 * progmodes/octave-inf.el: Update maintainer.
6964
b1f6fa26
CY
69652011-10-26 Chong Yidong <cyd@gnu.org>
6966
6967 * subr.el (with-wrapper-hook): Rewrite doc.
6968
3f04efd6
MA
69692011-10-25 Michael Albinus <michael.albinus@gmx.de>
6970
6971 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 6972 filenames "/method:foo:". (Bug#9793)
3f04efd6 6973
410488d3
SM
69742011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
6975
6976 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
6977 (bug#9865).
6978
c1ebb47e
GM
69792011-10-24 Glenn Morris <rgm@gnu.org>
6980
6981 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
6982
7f5c46c7
MA
69832011-10-24 Michael Albinus <michael.albinus@gmx.de>
6984
6985 * notifications.el: Add the requirement of a running D-Bus session
6986 bus to the Commentary.
6987
db2440b6
JL
69882011-10-24 Juri Linkov <juri@jurta.org>
6989
6990 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
6991 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
6992 (Bug#9364)
6993
feecf435
JL
69942011-10-24 Juri Linkov <juri@jurta.org>
6995
6996 * info.el (Info-following-node-name-re): Add newline to the list
6997 of allowed characters for leading space. (Bug#9824)
6998
a3839de2
SM
69992011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7000
acc825c5
SM
7001 * progmodes/octave-inf.el (inferior-octave-mode-map):
7002 Fix C-c C-h binding.
a3839de2
SM
7003 * progmodes/octave-mod.el (octave-help): Remove.
7004
09388e76
MA
70052011-10-23 Michael Albinus <michael.albinus@gmx.de>
7006
7007 Sync with Tramp 2.2.3.
7008
7009 * net/tramp-cache.el (top): Pacify byte-compiler using
7010 `init-file-user' and `site-run-file'.
7011
7012 * net/trampver.el: Update release number.
7013
86c60681
CY
70142011-10-23 Chong Yidong <cyd@gnu.org>
7015
7016 * files.el (toggle-read-only): Remove obsolete comment about
7017 version control.
7018
7019 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
7020 for toggle-read-only. Note that this hasn't called vc-next-action
7021 since 2008-05-02, though it wasn't documented at the time.
7022
a3839de2
SM
7023 * vc/ediff-init.el (ediff-toggle-read-only-function):
7024 Use toggle-read-only.
86c60681 7025
cd5495ff
AM
70262011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
7027
7028 Fix bug #9560, sporadic wrong indentation; improve instrumentation
7029 of c-parse-state.
7030
00b77525 7031 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 7032 correct faulty logical expression.
cd5495ff
AM
7033 (c-parse-state-state, c-record-parse-state-state):
7034 (c-replay-parse-state-state): New defvar/defuns.
7035 (c-debug-parse-state): Use new functions.
7036
42ee24ed
MR
70372011-10-22 Martin Rudalics <rudalics@gmx.at>
7038
7039 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 7040 last fix. Use window-in-direction correctly.
42ee24ed 7041
a7dee7e7
CY
70422011-10-21 Chong Yidong <cyd@gnu.org>
7043
7044 * progmodes/idlwave.el (idlwave-mode):
7045 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
7046 require-final-newline; that's done in prog-mode.
7047 Suggested by Stefan Monnier.
a7dee7e7 7048
e07b9a6d
MR
70492011-10-21 Martin Rudalics <rudalics@gmx.at>
7050
7051 * mouse.el (mouse-drag-window-above)
7052 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
7053 (mouse-drag-mode-line-1, mouse-drag-header-line)
7054 (mouse-drag-vertical-line-rightward-window): Remove.
7055 (mouse-drag-line): New function.
7056 (mouse-drag-mode-line, mouse-drag-header-line)
7057 (mouse-drag-vertical-line): Call mouse-drag-line.
7058 * window.el (window-at-side-p, windows-at-side): New functions.
7059
7e1361d9
UM
70602011-10-21 Ulrich Mueller <ulm@gentoo.org>
7061
7062 * tar-mode.el (tar-grind-file-mode):
7063 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
7064
30fcaf3a
CY
70652011-10-21 Chong Yidong <cyd@gnu.org>
7066
7067 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
7068 * progmodes/vera-mode.el (vera-mode):
7069 Use mode-require-final-newline.
30fcaf3a 7070
516eddb0
GM
70712011-10-20 Glenn Morris <rgm@gnu.org>
7072
db22a3c2 7073 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 7074
10d5f513
CS
70752011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
7076
7077 * emulation/cua-base.el (cua-set-mark): Fix case of string.
7078
ac6c8639
CY
70792011-10-20 Chong Yidong <cyd@gnu.org>
7080
7081 * emulation/cua-base.el (cua-mode):
7082 * mail/footnote.el (footnote-mode):
7083 * mail/mailabbrev.el (mail-abbrevs-mode):
7084 * net/xesam.el (xesam-minor-mode):
7085 * progmodes/bug-reference.el (bug-reference-mode):
7086 * progmodes/cap-words.el (capitalized-words-mode):
7087 * progmodes/compile.el (compilation-minor-mode)
7088 (compilation-shell-minor-mode):
7089 * progmodes/gud.el (gud-tooltip-mode):
7090 * progmodes/hideif.el (hide-ifdef-mode):
7091 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
7092 * progmodes/subword.el (subword-mode):
7093 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7094 * progmodes/which-func.el (which-function-mode):
7095 * term/tvi970.el (tvi970-set-keypad-mode):
7096 * term/vt100.el (vt100-wide-mode):
7097 * textmodes/flyspell.el (flyspell-mode):
7098 * textmodes/ispell.el (ispell-minor-mode):
7099 * textmodes/nroff-mode.el (nroff-electric-mode):
7100 * textmodes/paragraphs.el (use-hard-newlines):
7101 * textmodes/refill.el (refill-mode):
7102 * textmodes/reftex.el (reftex-mode):
7103 * textmodes/rst.el (rst-minor-mode):
7104 * textmodes/sgml-mode.el (html-autoview-mode)
7105 (sgml-electric-tag-pair-mode):
7106 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
7107 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
7108 * emulation/crisp.el (crisp-mode):
7109 * emacs-lisp/eldoc.el (eldoc-mode):
7110 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
7111 minor mode behavior.
7112
aa42ab43
JL
71132011-10-19 Juri Linkov <juri@jurta.org>
7114
7115 * descr-text.el (describe-char): Add #x2010 and #x2011 to
7116 the list of hard-coded chars with escape-glyph face.
7117
89400f1d
SM
71182011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
7119
7120 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
7121
305c07f6
MA
71222011-10-19 Michael Albinus <michael.albinus@gmx.de>
7123
7124 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
7125 running process.
7126
13754b54
GM
71272011-10-19 Glenn Morris <rgm@gnu.org>
7128
7129 * vc/vc-bzr.el (vc-bzr-after-dir-status):
7130 Ignore ignored files. (Bug#9726)
7131
06e21633
CY
71322011-10-19 Chong Yidong <cyd@gnu.org>
7133
7134 Doc fix for minor modes, stating that an omitted argument enables
7135 the mode unconditionally when called from Lisp.
7136
7137 * abbrev.el (abbrev-mode):
7138 * allout.el (allout-mode):
7139 * autoinsert.el (auto-insert-mode):
7140 * autoarg.el (autoarg-mode, autoarg-kp-mode):
7141 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
7142 (global-auto-revert-mode):
7143 * battery.el (display-battery-mode):
7144 * composite.el (global-auto-composition-mode)
7145 (auto-composition-mode):
7146 * delsel.el (delete-selection-mode):
7147 * desktop.el (desktop-save-mode):
7148 * dired-x.el (dired-omit-mode):
7149 * dirtrack.el (dirtrack-mode):
7150 * doc-view.el (doc-view-minor-mode):
7151 * double.el (double-mode):
7152 * electric.el (electric-indent-mode, electric-pair-mode):
7153 * emacs-lock.el (emacs-lock-mode):
7154 * epa-hook.el (auto-encryption-mode):
7155 * follow.el (follow-mode):
7156 * font-core.el (font-lock-mode):
7157 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
7158 * help.el (temp-buffer-resize-mode):
7159 * hilit-chg.el (highlight-changes-mode)
7160 (highlight-changes-visible-mode):
7161 * hi-lock.el (hi-lock-mode):
7162 * hl-line.el (hl-line-mode, global-hl-line-mode):
7163 * icomplete.el (icomplete-mode):
7164 * ido.el (ido-everywhere):
7165 * image-file.el (auto-image-file-mode):
7166 * image-mode.el (image-minor-mode):
7167 * iswitchb.el (iswitchb-mode):
7168 * jka-cmpr-hook.el (auto-compression-mode):
7169 * linum.el (linum-mode):
7170 * longlines.el (longlines-mode):
7171 * master.el (master-mode):
7172 * mb-depth.el (minibuffer-depth-indicate-mode):
7173 * menu-bar.el (menu-bar-mode):
7174 * minibuf-eldef.el (minibuffer-electric-default-mode):
7175 * mouse-sel.el (mouse-sel-mode):
7176 * msb.el (msb-mode):
7177 * mwheel.el (mouse-wheel-mode):
7178 * outline.el (outline-minor-mode):
7179 * paren.el (show-paren-mode):
7180 * recentf.el (recentf-mode):
7181 * reveal.el (reveal-mode, global-reveal-mode):
7182 * rfn-eshadow.el (file-name-shadow-mode):
7183 * ruler-mode.el (ruler-mode):
7184 * savehist.el (savehist-mode):
7185 * scroll-all.el (scroll-all-mode):
7186 * scroll-bar.el (scroll-bar-mode):
7187 * server.el (server-mode):
7188 * shell.el (shell-dirtrack-mode):
7189 * simple.el (auto-fill-mode, transient-mark-mode)
7190 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
7191 (line-number-mode, column-number-mode, size-indication-mode)
7192 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
7193 * strokes.el (strokes-mode):
7194 * time.el (display-time-mode):
7195 * t-mouse.el (gpm-mouse-mode):
7196 * tool-bar.el (tool-bar-mode):
7197 * tooltip.el (tooltip-mode):
7198 * type-break.el (type-break-mode-line-message-mode)
7199 (type-break-query-mode):
7200 * view.el (view-mode):
7201 * whitespace.el (whitespace-mode, whitespace-newline-mode)
7202 (global-whitespace-mode, global-whitespace-newline-mode):
7203 * xt-mouse.el (xterm-mouse-mode): Doc fix.
7204
a3839de2
SM
7205 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7206 Fix autogenerated docstring.
06e21633 7207
5214e501
JL
72082011-10-19 Juri Linkov <juri@jurta.org>
7209
7210 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
7211 by checking environment variables "DESKTOP_SESSION" and
7212 "XDG_CURRENT_DESKTOP". (Bug#9779)
7213
195f8db9
JL
72142011-10-19 Juri Linkov <juri@jurta.org>
7215
7216 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
7217 (browse-url-chromium-program, browse-url-chromium-arguments):
7218 New defcustoms.
7219 (browse-url-default-browser): Check for `browse-url-chromium' and
7220 call `browse-url-chromium-program'.
7221 (browse-url-chromium): New command. (Bug#9779)
7222
343a34ff
JB
72232011-10-18 Juanma Barranquero <lekktu@gmail.com>
7224
7225 * facemenu.el (list-colors-duplicates): On Windows, detect more
7226 duplicates by assuming that only colors matching "^System" are
7227 special "system colors". (Bug#9722)
7228
6978a151
SM
72292011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
7230
7231 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
7232 to distinguish the author from the committer.
7233
6a80b297
MA
72342011-10-18 Michael Albinus <michael.albinus@gmx.de>
7235
7236 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
7237
b31a5677
JK
72382011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
7239
7240 * international/mule.el (sgml-html-meta-auto-coding-function):
7241 Add support for detecting encoding in HTML5 specified only as
7242 <meta charset="UTF-8">. Implementation just makes http-equiv and
7243 content-type parts from HTML4 encoding string optional. (Bug#9716)
7244
80c6d77f
GM
72452011-10-18 Glenn Morris <rgm@gnu.org>
7246
7247 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
7248
08b0fee8
CY
72492011-10-18 Chong Yidong <cyd@gnu.org>
7250
7251 * faces.el (cursor): Doc fix.
7252
67e729a5
CY
72532011-10-17 Chong Yidong <cyd@gnu.org>
7254
7255 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
7256
343a34ff 72572011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
7258
7259 * dirtrack.el (dirtrack): Support shell buffers with path
7260 prefixes, e.g. tramp-based remote shells. (Bug#9647)
7261
0bc06380
TZ
72622011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
7263
7264 * json.el: Bump version to 1.3 and note change in History.
7265 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
7266
8b79f3e0
SM
72672011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
7268
5a7c536b
SM
7269 * comint.el (comint-insert-input, comint-send-input)
7270 (comint-get-old-input-default, comint-backward-matching-input)
7271 (comint-next-prompt): Use nil instead of `input' for field property of
7272 past user input (bug#114).
7273
96a8a0df
SM
7274 * minibuffer.el (completion--replace): Inherit surrounding properties
7275 (bug#114).
7276 (minibuffer-complete-and-exit): Use it.
7277
8b79f3e0
SM
7278 * comint.el (comint--table-subvert): Quote the all-completions output
7279 (bug#9160).
7280
b8f7ff0d
MR
72812011-10-17 Martin Rudalics <rudalics@gmx.at>
7282
8b79f3e0 7283 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 7284
b8f7ff0d 7285 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 7286 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
7287 entries and separate them from frame entries.
7288
c235b555
GM
72892011-10-15 Glenn Morris <rgm@gnu.org>
7290
7291 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
7292 Doc fixes.
7293
6bbfa6e1
CY
72942011-10-15 Chong Yidong <cyd@stupidchicken.com>
7295
8b79f3e0
SM
7296 * net/network-stream.el (network-stream-open-starttls):
7297 Improve detection of failure due to lack of TLS support.
ec5c990d 7298
6bbfa6e1
CY
7299 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
7300 putting the input text in front and in bold.
7301
98488977
SM
73022011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
7303
3d1337be
SM
7304 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
7305
ee0b45e4
SM
7306 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
7307 empty buffer.
7308
98488977
SM
7309 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
7310 unread-command-events rather than pushing yet-another event.
7311
186f4720
EZ
73122011-10-14 Eli Zaretskii <eliz@gnu.org>
7313
7314 * mail/sendmail.el (sendmail-query-once): Improve the wording of
7315 the explanation of the possible choices. Make the options passed
7316 to completing-read shorter.
7317
8b7a997c
AM
73182011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7319
7320 * textmodes/flyspell.el (flyspell-large-region): Make sure
7321 extended character mode is used if defined (Bug#1339).
7322
12587bbb
EZ
73232011-10-13 Eli Zaretskii <eliz@gnu.org>
7324
7325 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
7326 character info for LRE, LRO, RLE, and RLO characters by appending
7327 an invisible PDF.
12587bbb 7328
bad41229
SM
73292011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
7330
7331 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
7332 even in case of error; add debug spec; simplify data flow.
7333 (with-timeout-handler): Remove.
7334
28dbc92f
MA
73352011-10-12 Michael Albinus <michael.albinus@gmx.de>
7336
7337 Fix Bug#6019, Bug#9315.
7338
7339 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
7340 complete `buffer-file-name', the local file name part could look
7341 remotely (for example on VMS).
7342
7343 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
7344 `tramp-run-real-handler'.
7345 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
7346 already quoted by '"'.
7347
7348 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
7349 Let `file-name-handler-alist' be nil, the local file name part
7350 could look remotely (for example on VMS).
7351
e1b0b23a
SM
73522011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
7353
7354 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
7355 from here...
7356 (flyspell-post-command-hook): ...to here.
7357
a120bde9
SM
73582011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
7359
7360 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
7361 if not needed.
7362 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
7363 using completion. Protect against "slow" callers.
7364 Remove the "message hack".
7365
7ce7717b
JL
73662011-10-11 Juri Linkov <juri@jurta.org>
7367
7368 * isearch.el (isearch-lazy-highlight-word): New variable.
7369 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
7370 Use it. (Bug#9727)
7371
c02ee9d6
GM
73722011-10-11 Glenn Morris <rgm@gnu.org>
7373
7374 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
7375 like f90-previous-statement does.
7376
93e616fd 73772011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7378
1f190e73 7379 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
7380 only in interactive use, to avoid error.
7381
af7b6078
SM
73822011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
7383
7384 * minibuffer.el (completion-file-name-table): Fix last change,
7385 i.e. ignore normal errors but not the other ones.
7386
0563dae9
MR
73872011-10-10 Martin Rudalics <rudalics@gmx.at>
7388
7389 * window.el (special-display-buffer-names)
7390 (special-display-regexps): Remove some remnants of earlier
7391 changes from doc-strings.
366ca7f3
MR
7392 (quit-windows-on): New function.
7393
7394 * vc/vc.el (vc-revert, vc-rollback):
7395 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
7396 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 7397 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 7398
49677495
MR
73992011-10-09 Martin Rudalics <rudalics@gmx.at>
7400
7401 * window.el (frame-auto-hide-function): Add version tag.
7402 (Bug#9699)
7403
56f2d1e1
MA
74042011-10-09 Michael Albinus <michael.albinus@gmx.de>
7405
7406 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
7407 condition.
7408
112a6592
LL
74092011-10-09 Leo Liu <sdl.web@gmail.com>
7410
7411 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
7412 (Bug#9701)
7413
0812589b
GM
74142011-10-08 Glenn Morris <rgm@gnu.org>
7415
7416 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
7417 before the first code statement zero indent. (Bug#9690)
7418
b2b0776e
CY
74192011-10-08 Chong Yidong <cyd@stupidchicken.com>
7420
7421 * simple.el (count-words-region): Always count in the region.
7422 Report the number of lines and characters too.
7423 (count-words): New command, which counts in the buffer if the
7424 region is inactive, as count-words-region used to.
7425 (count-words--message): New function. Handle plurals.
7426 (count-lines-region): Make it an alias for count-words-region.
7427
7428 * bindings.el (esc-map): Replace count-lines-region with
7429 count-words-region.
7430
c557cd6b
MR
74312011-10-08 Martin Rudalics <rudalics@gmx.at>
7432
7433 * window.el (window--delete): Delete dedicated frame
7434 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 7435 (switch-to-buffer): Fix doc-string typo.
c557cd6b 7436
61a57ef4 74372011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7438
3a7d293b 7439 * eshell/eshell.el (eshell-command): Avoid using hooks.
61a57ef4 7440
c3833279
CY
74412011-10-07 Chong Yidong <cyd@stupidchicken.com>
7442
7443 * bindings.el ([M-left],[M-right]): Bind to left-word and
7444 right-word respectively.
7445
21ce8245
GM
74462011-10-07 Glenn Morris <rgm@gnu.org>
7447
7448 * cus-start.el (debug-on-quit): Fix custom type.
7449
6d823bb2
LMI
74502011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
7451
0181e193
LMI
7452 * subr.el (define-key-after): Clarify that the function is not
7453 useful for non-menu keymaps.
7454
6d823bb2
LMI
7455 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
7456
8e3459ce 74572011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7458
21ce8245 7459 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 7460 in current minibuffer (Fix bug with recursive minibuffers).
7461
a1c2d21e
CY
74622011-10-06 Chong Yidong <cyd@stupidchicken.com>
7463
7464 * progmodes/gdb-mi.el (gdb): Doc fix.
7465
5a4cf282
MR
74662011-10-05 Martin Rudalics <rudalics@gmx.at>
7467
7468 * window.el (frame-auto-hide-function): New option replacing
7469 frame-auto-delete. Suggested by Stefan Monnier.
7470 (window--delete): Call frame-auto-hide-function instead of
7471 investigating frame-auto-delete.
c96111ea
MR
7472 (window-point-1, set-window-point-1): New functions.
7473 (window-in-direction, record-window-buffer, window-state-get-1)
7474 (display-buffer-record-window): Use window-point-1 instead of
7475 window-point.
7476 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 7477
9854542e
SM
74782011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
7479
7480 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
7481
8943cfb0
GM
74822011-10-05 Glenn Morris <rgm@gnu.org>
7483
7484 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
7485 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
7486
647ab967
LL
74872011-10-05 Leo Liu <sdl.web@gmail.com>
7488
7489 * subr.el (read-char-choice): Fix argument to buffer-live-p which
7490 works with buffer object.
7491
3ddfbced
SM
74922011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
7493
7494 * mpc.el (mpc-tool-bar-map): Add labels.
7495
bdfa5dd2
GM
74962011-10-04 Glenn Morris <rgm@gnu.org>
7497
7498 * calendar/holidays.el (calendar-check-holidays): Doc fix.
7499
0e2070b5
MR
75002011-10-04 Martin Rudalics <rudalics@gmx.at>
7501
7502 * window.el (window--delete): New function.
7503 (frame-auto-delete): Resuscitate option.
7504 (bury-buffer, replace-buffer-in-windows)
7505 (quit-window): Rewrite using window--delete.
7506 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7507 Pass display-buffer-mark-dedicated to window--display-buffer-2
7508 (Bug#9639).
7509
3dc61a09
SM
75102011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
7511
915a9b64
SM
7512 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
7513 returns a list (bug#9554). Add remote file name completion.
7514 * comint.el (comint--table-subvert): Curry and get quote&unquote
7515 functions as arguments.
7516 (comint--complete-file-name-data): Adjust call accordingly.
7517 * pcomplete.el (pcomplete--table-subvert): Remove.
7518 (pcomplete-completions-at-point): Use comint--table-subvert instead.
7519
3dc61a09
SM
7520 * minibuffer.el (completion-table-case-fold): Use currying.
7521 (completion--styles-type, completion--cycling-threshold-type):
7522 New constants.
7523 (completion-styles, completion-category-overrides)
7524 (completion-cycle-threshold): Use them.
7525 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
7526 completion-table-case-fold.
7527
8ea0a993
SB
75282011-10-03 Stephen Berman <stephen.berman@gmx.net>
7529
7530 * minibuffer.el (completion-category-overrides): Fix type of styles
7531 and add more user friendly tags (bug#9660).
7532
8c24b7f6
SM
75332011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
7534
7535 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
7536 (mule-input-method-string): New widget.
7537 (default-input-method, language-info-custom-alist): Use it.
7538
428fe61a
SM
75392011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
7540
32c1fffd
SM
7541 * pcomplete.el: Require comint.
7542 (pcomplete--common-suffix): Remove.
7543 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
7544 (pcomplete--table-subvert): Sync with comint--table-subvert.
7545 (pcomplete--entries): Use comint-completion-file-name-table.
7546 * comint.el (comint-unquote-filename): Simplify.
7547 (comint-completion-file-name-table): New function (bug#9616).
7548 (comint--complete-file-name-data): Use it.
7549
428fe61a
SM
7550 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
7551 (pcmpl-gnu-tar-buffer): Remove.
7552 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
7553 around. Make sure pcomplete-suffix-list is only changed temporarily.
7554 Don't look inside the tar's file if it's too large.
428fe61a 7555
04c52e2f
CY
75562011-10-01 Chong Yidong <cyd@stupidchicken.com>
7557
ce3cefcc
CY
7558 * cus-edit.el (custom-mode-map):
7559 * epa.el (epa-key-list-mode-map):
7560 * man.el (Man-mode-map):
7561 * startup.el (splash-screen-keymap):
7562 * simple.el (special-mode-map): Use scroll-up-command and
7563 scroll-down-command.
7564
7565 * progmodes/idlw-help.el (idlwave-help-mode-map):
7566 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
7567 * net/newst-plainview.el (newsticker-mode-map):
7568 * emulation/ws-mode.el (wordstar-mode-map):
7569 * emulation/vi.el (vi-com-map):
7570 * calc/calc-graph.el (calc-graph-show-dumb):
7571 * term/sun.el (terminal-init-sun):
7572 * term/ns-win.el (global-map):
7573 * progmodes/grep.el (grep-mode-map):
7574 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
7575 * mail/rmail.el (rmail-mode-map):
7576 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
7577
04c52e2f
CY
7578 * custom.el (custom-safe-themes, load-theme): Treat value of t for
7579 custom-safe-themes as special.
7580
79adf8c8
JD
75812011-10-01 Julien Danjou <julien@danjou.info>
7582
7583 * notifications.el (notifications-notify): Fix docstring.
7584
63bd50d3
PS
75852011-10-01 Per Starbäck <per@starback.se>
7586
7587 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
7588
199e4c7e
MR
75892011-09-30 Martin Rudalics <rudalics@gmx.at>
7590
7591 * startup.el (command-line-1): Fix last fix by inserting
7592 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 7593 (Bug#9605) and (Bug#9636)
199e4c7e 7594
fe5f08dd
EZ
75952011-09-29 Eli Zaretskii <eliz@gnu.org>
7596
7597 * simple.el (line-move): If auto-hscroll-mode is disabled and the
7598 window is hscrolled, move by logical lines. (Bug#9607)
7599 (line-move-visual): Update the doc string to the above effect.
7600
b5516bbd
MR
76012011-09-29 Martin Rudalics <rudalics@gmx.at>
7602
ccee00c0
MR
7603 * window.el (display-buffer-record-window): When WINDOW is the
7604 selected window use `point' instead of `window-point'. (Bug#9626)
7605
b5516bbd
MR
7606 * startup.el (command-line-1): Use insert-before-markers when
7607 inserting initial-scratch-message. (Bug#9605)
ccee00c0 7608
b5516bbd
MR
7609 * help.el (help-window): Remove variable.
7610
52aa0014
GM
76112011-09-29 Glenn Morris <rgm@gnu.org>
7612
7613 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
7614
df9a7357
JB
76152011-09-29 Juanma Barranquero <lekktu@gmail.com>
7616
7617 * descr-text.el (describe-char-categories): Accept category
7618 descriptions more than one line long.
7619
a8406c20
SM
76202011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
7621
88d9610c
SM
7622 * simple.el (delete-trailing-whitespace): Fix last change.
7623
a5daf810
SM
7624 * progmodes/perl-mode.el (perl-syntax-propertize-function):
7625 Don't confuse "y => 3" as the beginning of a `y' operation.
7626
a8406c20
SM
7627 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
7628 object has more than 4 slots (bug#9613).
7629
a239d4e9
JB
76302011-09-28 Juanma Barranquero <lekktu@gmail.com>
7631
7632 * subr.el (with-output-to-temp-buffer):
7633 * net/quickurl.el (quickurl, quickurl-browse-url):
7634 Fix typos in docstrings.
7635
693fbdb6
EZ
76362011-09-27 Eli Zaretskii <eliz@gnu.org>
7637
7638 * minibuffer.el (completion-styles)
7639 (completion-category-overrides): Cross reference each other in doc
7640 strings.
7641
8b457e28
GM
76422011-09-27 Glenn Morris <rgm@gnu.org>
7643
7644 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
7645 to split-string. (Bug#9606)
7646
85a16208
LMI
76472011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
7648
7649 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
7650 (bug#9615).
7651
502f9ebd
CY
76522011-09-27 Chong Yidong <cyd@stupidchicken.com>
7653
7654 * emacs-lisp/package.el (list-packages): Fix echo area message.
7655
7690bdea
LL
76562011-09-27 Leo Liu <sdl.web@gmail.com>
7657
7658 * ido.el (ido-read-internal): Accept cons cell HIST arg.
7659
e2ee6f30
MA
76602011-09-25 Michael Albinus <michael.albinus@gmx.de>
7661
7662 * net/dbus.el (dbus-unregister-object): Don't release services for
7663 registered signals. (Bug#9581)
7664
f3f98342
TZ
76652011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
7666
7667 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
7668 function that picks between cfengine 2 and 3 support
7669 automatically. Update docs accordingly.
7670
dd7aa8dd
KH
76712011-09-22 Kenichi Handa <handa@m17n.org>
7672
7673 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
7674 ZERO.
7675 (indian-itrans-v5-table-for-tamil): New variable.
7676 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
7677
3f2b07f8
KM
76782011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
7679
7680 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
7681 that's true if the current command involved collapsing of text.
7682 It's reset to false at the beginning of the next command.
7683 (allout-post-command-business): Move the cursor to the beginning
7684 of entry if the cursor is hidden and collapsing activity just
7685 happened.
7686
371d6a61
CY
76872011-09-24 Chong Yidong <cyd@stupidchicken.com>
7688
7689 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
7690 tracking (Bug#9541).
7691
2ac2721a
UJ
76922011-09-24 Ulf Jasper <ulf.jasper@web.de>
7693
7694 * net/newst-reader.el (newsticker-html-renderer)
1154d12e
JB
7695 (newsticker-show-news): Automatically load html rendering package
7696 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
7697 because w3m-fill-column is let-bound" and the error "Symbol's value
7698 as variable is void: w3m-fill-column".
2ac2721a 7699
fac7ae53
MA
77002011-09-24 Michael Albinus <michael.albinus@gmx.de>
7701
7702 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
7703 Release services only if they are defined. (Bug#9581)
7704
e08b633b
RS
77052011-09-23 Richard Stallman <rms@gnu.org>
7706
e488d29c
RS
7707 * textmodes/paragraphs.el (forward-sentence): For backwards case,
7708 distinguish start of paragraph from start of its text.
7709
19c38752
RS
7710 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
7711
e08b633b
RS
7712 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
7713 (rmail-generate-viewer-buffer): Put that hook on view buffer.
7714 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
7715
0a39f27e
AS
77162011-09-23 Andreas Schwab <schwab@linux-m68k.org>
7717
7718 * international/mule-diag.el (mule-diag): Insert a newline after
7719 each fontset description.
7720
db4e950d
SM
77212011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
7722
7723 * simple.el (delete-trailing-whitespace):
7724 Document last change; simplify.
7725
eca3f3ea
PW
77262011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
7727
d68e189a
PW
7728 * simple.el (delete-trailing-whitespace): Also delete
7729 extra newlines at the end of the buffer.
7730
eca3f3ea
PW
7731 * textmodes/picture.el: Make motion commands obey shift-select-mode.
7732 (picture-newline): Use forward-line so as to ignore fields.
7733
01c157cc
SM
77342011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
7735
7736 * subr.el (with-wrapper-hook): Fix edebug spec.
7737
022de23e
LMI
77382011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
7739
7740 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
7741 (bug#4538).
7742
91683089
MA
77432011-09-23 Michael Albinus <michael.albinus@gmx.de>
7744
eca3f3ea
PW
7745 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
7746 Fix nasty bug using wrong cached values.
91683089 7747
5bdd6fa4
AM
77482011-09-23 Alan Mackenzie <acm@muc.de>
7749
7750 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
7751
97adfb97
CY
77522011-09-23 Chong Yidong <cyd@stupidchicken.com>
7753
7754 * window.el (pop-to-buffer): Ensure right window is selected if we
7755 chose another frame.
7756
d4ef2b50
EZ
77572011-09-22 Eli Zaretskii <eliz@gnu.org>
7758
7759 * simple.el (what-cursor-position): Use get-char-property-change
7760 and next-single-char-property-change, to be able to show display
7761 properties that come from overlays as well as text properties.
7762
72258fe5
CY
77632011-09-22 Chong Yidong <cyd@stupidchicken.com>
7764
7765 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
7766
7767 * cmuscheme.el (run-scheme, switch-to-scheme):
7768 * cus-edit.el (customize-group, custom-buffer-create)
7769 (customize-browse):
7770 * info.el (info):
7771 * shell.el (shell):
7772 * mail/sendmail.el (mail):
7773 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
7774
8f098516
RS
77752011-09-22 Richard Stallman <rms@gnu.org>
7776
7777 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
7778 move back only to line beg, don't move back over blank lines.
7779
e74f1bb6
MA
77802011-09-22 Michael Albinus <michael.albinus@gmx.de>
7781
7782 * files.el (copy-directory): Set directory attributes only in case
7783 they could be retrieved from the source directory. (Bug#9565)
7784
bfeef8b6
DK
77852011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
7786
7787 * progmodes/hideshow.el (hs-looking-at-block-start-p)
7788 (hs-find-block-beginning, hs-hide-level-recursive):
7789 Ignore strings as well as comments. (Bug#9502)
7790
7e423bb8
AS
77912011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
7792
7793 * progmodes/sql.el (sql-comint-postgres):
7794 Convert port number to a string. (Bug#9566)
7795
b4d72fcf
MR
77962011-09-22 Martin Rudalics <rudalics@gmx.at>
7797
7798 * window.el (quit-window): Undedicate window when switching to
7799 previous buffer. Reported by Thierry Volpiatto
7800 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
7801 (special-display-popup-frame): When popping up a new frame reset
7802 its previous buffers to nil. Simplify code.
b4d72fcf 7803
a7b88dc6
MA
78042011-09-21 Michael Albinus <michael.albinus@gmx.de>
7805
7806 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
7807 and process filter, as done also in `shell-command'.
7808
cf4eacfd
MR
78092011-09-21 Martin Rudalics <rudalics@gmx.at>
7810
eca3f3ea 7811 * window.el (set-window-buffer-start-and-point):
1154d12e
JB
7812 Call set-window-start with NOFORCE argument t.
7813 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
cf4eacfd
MR
7814 (quit-window): Reword doc-string. Handle new format of
7815 quit-restore parameter. Don't delete window if it has a
7816 previous buffer we can show instead of the present one.
7817 (display-buffer-record-window): Rewrite using a new format for
7818 the quit-restore window parameter
7819 (special-display-popup-frame, display-buffer-same-window)
7820 (display-buffer-reuse-window, display-buffer-pop-up-frame)
7821 (display-buffer-pop-up-window, display-buffer-use-some-window):
7822 Adapt symbol passed to display-buffer-record-window.
7823 * help.el (help-window-setup): Handle new format of quit-restore
7824 parameter.
7825
8d28cb95
SM
78262011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
7827
94ab793f
SM
7828 * faces.el (face-list): Fix docstring (bug#9564).
7829
8d28cb95
SM
7830 * window.el (display-buffer--action-function-custom-type):
7831 Don't include internal functions in the Custom interface.
7832
3820edeb
JL
78332011-09-20 Juri Linkov <juri@jurta.org>
7834
7835 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
7836 (Info-forward-node, Info-backward-node, Info-next-preorder)
7837 (Info-last-preorder): Use it. (Bug#9528)
7838
5147931d
JL
78392011-09-20 Juri Linkov <juri@jurta.org>
7840
7841 * info.el (Info-last-preorder): Visit last menu item only when
7842 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
7843
cf499a1a
JD
78442011-09-20 Julien Danjou <julien@danjou.info>
7845
7846 * password-cache.el (password-cache-remove): Remove entries even if the
7847 value is nil, so that password with a nil value (negative caching) is
7848 possible to invalidate.
7849
f84e2fe2
LM
78502011-09-20 Lawrence Mitchell <wence@gmx.li>
7851
7852 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
7853 all whitespace around breakpoint. (Bug#9553)
7854 (f90-find-breakpoint): Only break at whitespace inside a comment.
7855
78054a46
SM
78562011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7857
7858 * minibuffer.el (completion-file-name-table): Keep track of errors.
7859 (completion-table-with-predicate): Handle the case where pred1 is nil.
7860 * pcomplete.el (pcomplete-completions-at-point): Simplify.
7861
345083b2
SM
78622011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7863
e24e27be
SM
7864 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
7865 (debugger-return-value): Signal an error if the debugging context does
7866 not await any return value.
7867
345083b2
SM
7868 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
7869 * image-mode.el (image-toggle-display-text)
7870 (image-toggle-display-image): Stay away from evil `intangible'.
7871
08d355e3
LL
78722011-09-19 Leo Liu <sdl.web@gmail.com>
7873
7874 * replace.el (occur-revert-arguments): Make it permanent-local.
7875 (occur-mode): Don't call font-lock-defontify.
7876
f01da43f
CY
78772011-09-19 Chong Yidong <cyd@stupidchicken.com>
7878
7879 * net/ldap.el (ldap-search-internal): Don't push empty search
7880 result (Bug#9508).
7881
b6072fa6
SM
78822011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7883
7884 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
7885
443d6696
MA
78862011-09-19 Michael Albinus <michael.albinus@gmx.de>
7887
7888 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
7889 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
7890
7cc6e154
JL
78912011-09-18 Juri Linkov <juri@jurta.org>
7892
7893 * buff-menu.el (Buffer-menu-mode-map):
7894 * dired.el (dired-mode-map):
7895 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
7896 (lisp-interaction-mode-map):
7897 * emacs-lisp/package.el (package-menu-mode-map):
7898 * epa.el (epa-key-list-mode-map):
7899 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
7900 (menu-bar-options-menu):
7901 * outline.el (outline-mode-menu-bar-map):
7902 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
7903 * vc/vc-dir.el (vc-dir-menu-map):
7904 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
7905 Capitalize non-function content words in menu item strings.
7906
7907 * dired.el (dired-mode-map): Add menu item for
7908 `image-dired-dired-toggle-marked-thumbs'.
7909
80302a81
JL
79102011-09-18 Juri Linkov <juri@jurta.org>
7911
7912 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
7913 to `isearch-case-fold-search' and restore its original value
7914 after the `isearch-mode' call.
7915
46c5cf66
JL
79162011-09-18 Juri Linkov <juri@jurta.org>
7917
7918 * progmodes/grep.el (grep-process-setup): Don't check code for 1
7919 because `zgrep' returns 1 for successful matches (bug#9226).
7920
d18b513b
JL
79212011-09-18 Juri Linkov <juri@jurta.org>
7922
7923 * info.el (Info-extract-menu-node-name): Check the second match
7924 for empty string (second test-case of bug#9528).
7925 (Info-last-preorder): Let-bind `Info-history' to nil to not add
7926 intermediate nodes to the history (first test-case of bug#9528).
7927
72753f87
JL
79282011-09-18 Juri Linkov <juri@jurta.org>
7929
7930 * info.el (Info-mode-syntax-table): New variable.
1154d12e 7931 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
72753f87 7932
c9384295
JL
79332011-09-18 Juri Linkov <juri@jurta.org>
7934
1154d12e
JB
7935 * info.el (Info-file-supports-index-cookies):
7936 Increment line-beginning-position's arg from 3 to 4 because makeinfo
7937 outputs one more line for long file names (bug#4142).
c9384295 7938
d473dce8
CY
79392011-09-18 Chong Yidong <cyd@stupidchicken.com>
7940
7941 * newcomment.el (comment-normalize-vars): If prompting for
7942 comment-start, set comment-start-skip too (Bug#8424).
7943
2176854d
JB
79442011-09-18 Johan Bockgård <bojohan@gnu.org>
7945
7946 * icomplete.el: Fix previous fix of Bug#5849.
7947 (icomplete-mode): Don't set completion-show-inline-help.
7948 (icomplete-minibuffer-setup): Set completion-show-inline-help
7949 locally during icompletion.
7950
3aace4e4
CY
79512011-09-18 Chong Yidong <cyd@stupidchicken.com>
7952
c940224f
CY
7953 * woman.el (woman2-process-escapes): Don't delete unrecognized
7954 escapes (Bug#7843).
7955
3aace4e4
CY
7956 * files.el (inhibit-first-line-modes-regexps): Add image files.
7957 (hack-local-variables-prop-line): Return nil for malformed
7958 prop-lines (Bug#9044).
7959
710dec63
MA
79602011-09-18 Michael Albinus <michael.albinus@gmx.de>
7961
7962 * net/tramp.el (top): Don't require 'shell.
7963 (tramp-methods): Fix docstring.
7964 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
7965 Return complete remote file name. Handle "smb" case.
7966 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
7967 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
7968
7969 * net/tramp-compat.el (top): Require 'shell.
7970
7971 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
7972 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
7973 `tramp-current-host'.
7974 (tramp-get-remote-tmpdir): Remove.
7975
7976 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
7977 `tramp-tmpdir' entries.
7978 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
7979 (tramp-smb-handle-file-attributes): Ignore errors.
7980 (tramp-smb-wait-for-output): Check also for process end.
7981
5d5ac8ec
LMI
79822011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
7983
7984 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
7985 when sending QUIT (bug#9312).
7986
8c0f49f0
CY
79872011-09-17 Chong Yidong <cyd@stupidchicken.com>
7988
7989 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
7990 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
7991 occur-mode-display-occurrence.
7992 (occur-edit-mode): Add usage message.
7993 (occur-cease-edit): New command.
7994 (occur-after-change-function): Use text properties to find the
7995 position of the prefix text.
7996 (occur-engine): Set stickiness of prefix text properties.
7997
8f1383f7
GM
79982011-09-17 Glenn Morris <rgm@gnu.org>
7999
8000 * progmodes/etags.el (complete-tag):
8001 Fix call to completion-in-region. (Bug#9526)
8002
744ba0e3
JL
80032011-09-17 Juri Linkov <juri@jurta.org>
8004
8005 * textmodes/ispell.el (ispell-word): Add to the error message
8006 the word, ispell program name and current dictionary (bug#9121).
8007 (ispell-tex-arg-end): Capitalize "error" in the error message.
8008
d9bbf400
AS
80092011-09-17 Andreas Schwab <schwab@linux-m68k.org>
8010
8011 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
8012 check. (Bug#4251)
8013
8da11505
JL
80142011-09-17 Juri Linkov <juri@jurta.org>
8015
8016 * window.el (window-safe-min-height, window-safe-min-width):
8017 Fix typos (followup to bug#9522).
8018
a91adc7e
SJ
80192011-09-17 Sven Joachim <svenjoac@gmx.de>
8020
8021 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
8022
064f328a
EZ
80232011-09-16 Eli Zaretskii <eliz@gnu.org>
8024
8025 * simple.el (line-move): If goal-column is set, move by logical
8026 lines, not by display lines. (Bug#971)
8027 (next-line, previous-line, goal-column, line-move-visual): Doc fix
8028 to reflect the above change.
8029
e69df516
SM
80302011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8031
8032 * image.el (imagemagick-register-types): Use regexp-opt.
8033
cbb0f9ab
CY
80342011-09-15 Chong Yidong <cyd@stupidchicken.com>
8035
8036 * window.el (display-buffer-base-action): Rename from
8037 display-buffer-default-action. Make default value empty.
8038 (display-buffer-overriding-action): Convert to defvar.
8039 (display-buffer-fallback-action): New var.
8040
25322144
CY
80412011-09-15 Chong Yidong <cyd@stupidchicken.com>
8042
8043 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
8044 declaration.
8045 (package--add-to-archive-contents): If there is a duplicate entry
8046 with an older version, remove it.
8047 (package-menu-mark-delete, package-menu-mark-install)
8048 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
8049 (package-menu-mark-obsolete-for-deletion):
8050 Use package-menu-get-status instead of a regexp search.
25322144
CY
8051 (package-menu-get-status): Use tabulated-list-entry.
8052 (package-menu-mark-upgrades): New command.
d770725a 8053 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
8054 (package-menu-execute): Do installation before deletion.
8055 (package-menu-refresh, package-menu-execute): Use derived-mode-p
8056 instead of checking major-mode.
8057 (package-menu--find-upgrades): New function.
8058
7520339c
LMI
80592011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
8060
8061 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
8062 passwords in the log buffer.
65a046c4
LMI
8063 (smtpmail-process-filter): Update the process marker so that the
8064 "broken by peer" status message is inserted in the right place.
7520339c 8065
d3c30954
SM
80662011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
8067
3fe48822
SM
8068 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
8069 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
8070 bibtex-completion-at-point-function.
8071 (bibtex-completion-at-point-function): Use them.
8072
1b8b3954
SM
8073 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
8074
d3c30954
SM
8075 * mpc.el (mpc-constraints-tag-lookup): New function.
8076 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
8077 also to browser "album|playlist".
8078
72779976
JL
80792011-09-14 Juri Linkov <juri@jurta.org>
8080
8081 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
8082 (isearch-edit-string): Use length of `isearch-string' when
8083 `isearch-fail-pos' returns nil.
8084 (isearch-message): Remove duplicate code and call
8085 `isearch-fail-pos' with arg `t'.
8086
a0bf2bcd
CY
80872011-09-14 Chong Yidong <cyd@stupidchicken.com>
8088
17bb0a2d
CY
8089 * replace.el (occur-mode-goto-occurrence): Don't force using other
8090 window (Bug#9499).
8091
a0bf2bcd
CY
8092 * dired-aux.el (dired-do-chmod): Don't provide initial input.
8093
f678e0b6
MR
80942011-09-14 Martin Rudalics <rudalics@gmx.at>
8095
8096 * window.el (display-buffer-window): Remove.
8097 (display-buffer-record-window): Use help-setup window parameter
8098 instead of variable display-buffer-window.
8099 (display-buffer-function, special-display-buffer-names)
8100 (special-display-function): Mention help-setup parameter instead
8101 of display-buffer-window in doc-string.
d3c30954
SM
8102 * help.el (help-window-setup): New argument help-window.
8103 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
8104 Reword some messages.
8105 (with-help-window): Pass window used for displaying the buffer
8106 to help-window-setup. Don't set display-buffer-window.
8107
8e39b2e8
GM
81082011-09-13 Glenn Morris <rgm@gnu.org>
8109
8110 * emacs-lisp/debug.el (debugger-make-xrefs):
8111 Preserve point. (Bug#9462)
8112
85e9c04b
CY
81132011-09-13 Chong Yidong <cyd@stupidchicken.com>
8114
8115 * window.el (window-deletable-p): Use next-frame.
8116
1b36ed6a
MR
81172011-09-13 Martin Rudalics <rudalics@gmx.at>
8118
8119 * window.el (window-auto-delete): Remove.
8120 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 8121 dedication and previous buffers.
1b36ed6a
MR
8122 (switch-to-prev-buffer): Don't delete window.
8123 (delete-windows-on): Delete a window's frame if and only if the
8124 window is dedicated.
8125 (replace-buffer-in-windows): Delete buffer's window or frame if
8126 and only if window is dedicated.
8127 (quit-window): Handle quit-restore as before last change.
4d61f28d 8128 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 8129
ef8ef9fb
CY
81302011-09-13 Chong Yidong <cyd@stupidchicken.com>
8131
8132 * window.el (window-deletable-p): Never delete the last frame on a
8133 given terminal.
8134
b2cba41e
GM
81352011-09-13 Glenn Morris <rgm@gnu.org>
8136
8137 * help.el (describe-key-briefly): Copy previous standard-output change.
8138
51553db6 81392011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
8140
8141 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
8142
b7556719
GM
81432011-09-13 Glenn Morris <rgm@gnu.org>
8144
8145 * emacs-lisp/lisp-mode.el (lisp-indent-function):
8146 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
8147
64b51947
CY
81482011-09-12 Chong Yidong <cyd@stupidchicken.com>
8149
8150 * dired-aux.el (dired-mark-read-string): Don't return default
8151 value on empty input (Bug#9361).
8152 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
8153 Omit initial minibuffer contents.
8154 (dired-do-chmod): Signal an error on empty input.
8155 (dired-mark-read-string): Don't return default on empty input.
8156
8157 * files.el (file-modes-symbolic-to-number): Doc fix.
8158
393a301e
SM
81592011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8160
8161 * international/mule-cmds.el (ucs-completions): Remove.
8162 (read-char-by-name): Use complete-with-action instead; add metadata.
8163
fa5660f9
CY
81642011-09-11 Chong Yidong <cyd@stupidchicken.com>
8165
8166 * window.el (display-buffer--action-function-custom-type)
8167 (display-buffer--action-custom-type): New vars.
8168 (display-buffer-alist, display-buffer-default-action)
8169 (display-buffer-overriding-action): Add defcustom types.
8170
4a592f66
CY
8171 * frame.el (delete-other-frames): Doc fix (Bug#276).
8172
73d56dbd
LMI
81732011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8174
8175 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
8176
37ac18a3
CY
81772011-09-11 Chong Yidong <cyd@stupidchicken.com>
8178
8179 Change modes that used same-window-* vars to use switch-to-buffer.
8180
8181 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
8182 Use switch-to-buffer.
8183
8184 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
8185 (customize-browse, custom-buffer-create-other-window):
8186 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
8187
8188 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
8189 (Info-prev, Info-up, Info-speedbar-goto-node)
8190 (info-display-manual): Use switch-to-buffer.
8191 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
8192
8193 * mail/sendmail.el (mail): Use switch-to-buffer.
8194 (mail-recover): Use switch-to-buffer-other-window.
8195
8196 * cmuscheme.el (run-scheme, switch-to-scheme):
8197 * ielm.el (ielm):
8198 * shell.el (shell):
8199 * net/rlogin.el (rlogin):
8200 * net/telnet.el (telnet, rsh):
8201 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
8202
10195bd6
AS
82032011-09-11 Andreas Schwab <schwab@linux-m68k.org>
8204
8205 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
8206
b322f63a
LMI
82072011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8208
39d7fed6
LMI
8209 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
8210 so don't mention it (bug#9301).
ba5a81f1 8211 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 8212
ee0e9f11
LMI
8213 * faces.el (face-spec-set-match-display): Make `(type graphic)'
8214 match `x', `w32' and `ns', like the manual says (bug#9029).
8215
0b1c89c1 8216 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
8217 (process-kill-buffer-query-function): Mention the buffer name in
8218 the query.
0b1c89c1 8219
77549ea8
LMI
8220 * image-mode.el (image-next-line): The line parameter is mandatory
8221 (bug#9258).
8222
803ef892
LMI
8223 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
8224 which can be useful (bug#9301).
8225
12980837
LMI
8226 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
8227
91054f8f
LMI
8228 * subr.el (match-string): Mention that the current buffer should
8229 be the same as the search was done in (bug#9282).
8230
b322f63a
LMI
8231 * facemenu.el: Disable the remove-* commands if the mark isn't
8232 active (bug#9162).
8233
3199b96f
CY
82342011-09-10 Chong Yidong <cyd@stupidchicken.com>
8235
8236 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
8237 of display-buffer.
8238 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
8239
8240 * replace.el (occur-mode-goto-occurrence)
8241 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
8242 and display-buffer.
8243
8244 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
8245 display-buffer.
8246
8247 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
8248 special-display and same-window variables.
8249 (mail-other-window): Use switch-to-buffer-other-window.
8250 (mail-other-frame): USe switch-to-buffer-other-frame.
8251
393a301e
SM
8252 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
8253 Use display-buffer-other-frame.
3199b96f
CY
8254 (gdb-display-gdb-buffer): Use pop-to-buffer.
8255
8256 * progmodes/gud.el (gud-goto-info): Use info-other-window.
8257
8258 * progmodes/python.el: Don't set same-window-buffer-names.
8259
8260 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
8261
8262 * window.el (display-buffer-alist): Add *Python*.
8263
8319e0bf
CY
82642011-09-10 Chong Yidong <cyd@stupidchicken.com>
8265
8266 * window.el (display-buffer-alist): Add entry for buffers
8267 previously handled same-window-*.
8268 (display-buffer-alist, display-buffer-default-action)
8269 (display-buffer-overriding-action): Mark as risky.
8270 (display-buffer-alist): Document action function changes.
8271 (display-buffer--same-window-action)
8272 (display-buffer--other-frame-action): New variables.
8273 (switch-to-buffer, display-buffer-other-frame): Use them.
8274 (display-buffer): Rename reuse-frame entry to reusable-frames.
8275 (display-buffer-reuse-selected-window): Function deleted.
8276 (display-buffer-reuse-window): Handle reusable-frames alist entry.
8277 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
8278 (display-buffer-special): New function.
8279 (display-buffer--maybe-pop-up-frame-or-window): Rename from
8280 display-buffer-reuse-or-pop-window. Split off special-display
8281 part into display-buffer-special.
8282 (display-buffer-use-some-window): Don't perform any special
8283 pop-up-frames handling.
8284 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 8285 (display-buffer--maybe-same-window): Rename from
0d3ff375 8286 display-buffer-maybe-same-window.
8319e0bf 8287
919a69aa
CY
8288 * info.el: Don't set same-window-regexps.
8289 (info-setup): New function.
8290 (info-other-window, info): Call it.
8291
8292 * cus-edit.el: Don't set same-window-regexps.
8293 (customize-group): New argument.
8294 (customize-group-other-window): Use it.
8295 (customize-face, customize-face-other-window): Likewise.
8296 (custom-buffer-create-other-window): Use pop-to-buffer directly.
8297
8319e0bf
CY
8298 * net/rlogin.el:
8299 * net/telnet.el:
8300 * progmodes/gud.el: Don't set same-window-regexps.
8301
8302 * cmuscheme.el:
8303 * ielm.el:
8304 * shell.el:
8305 * mail/sendmail.el:
8306 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
8307
25173000
JL
83082011-09-10 Juri Linkov <juri@jurta.org>
8309
8310 * isearch.el (isearch-edit-string): Remove obsolete mention of
8311 `C-w' (`isearch-yank-word-or-char') from docstring.
8312 (isearch-query-replace): Fix typo in docstring (bug#9466).
8313
056e44ef
JL
83142011-09-10 Juri Linkov <juri@jurta.org>
8315
8316 * paren.el (show-paren-function): Don't show escaped parens.
8317 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
8318
c3760c17
EZ
83192011-09-10 Eli Zaretskii <eliz@gnu.org>
8320
8321 * mail/sendmail.el (mml-to-mime, mml-attach-file)
8322 (mm-default-file-encoding): Remove autoload forms, they are
8323 replaced with autoload cookies in mml.el and mm-encode.el.
8324 (mail-add-attachment): New command.
8325 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
8326 (mail-mode): Mention mail-insert-file and mail-add-attachment in
8327 the doc string.
8328 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
8329
fece895e
RT
83302011-09-10 Reuben Thomas <rrt@sc3d.org>
8331
e69df516
SM
8332 * simple.el (count-words-region): Use buffer if there's no region
8333 (bug#9429).
fece895e 8334
5e68ce4a
JL
83352011-09-09 Juri Linkov <juri@jurta.org>
8336
8337 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
8338 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
8339 (wdired-isearch-filter-read-only): New function. (Bug#6362)
8340
0a6b9622
AM
83412011-09-09 Alan Mackenzie <acm@muc.de>
8342
8343 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
8344 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
8345
14a29deb
EZ
83462011-09-09 Eli Zaretskii <eliz@gnu.org>
8347
8348 Fix for Savannah bug#9392.
8349 * simple.el (mail-encode-mml): New defvar.
8350
8351 * mail/rmail.el (mail-encode-mml): Add a defvar.
8352 (rmail-enable-mime-composing): Default to t.
8353 (rmail-forward): Use MIME method of forwarding only if both
8354 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
8355 Set mail-encode-mml non-nil if the MIME method was used.
8356
8357 * mail/sendmail.el (mml-to-mime): Add autoload form.
8358 (mail-encode-mml): Add a defvar.
8359 (mail-mode): Make mail-encode-mml buffer-local and initialize it
8360 to nil.
8361 (mail-send): If mail-encode-mml is non-nil, run the outgoing
8362 message through mml-to-mime, and reset mail-encode-mml to nil.
8363
28c45130
GM
83642011-09-09 Glenn Morris <rgm@gnu.org>
8365
8366 * woman.el (woman-if-body): When processing an .el block,
8367 do not delete the next .el block as well. (Bug#9447)
69f4b618 8368 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 8369
9b1c252e
MR
83702011-09-08 Martin Rudalics <rudalics@gmx.at>
8371
8372 * window.el (window-deletable-p): Make sure window is live before
8373 invoking window-prev-buffers.
8374
567457e3
LL
83752011-09-08 Leo Liu <sdl.web@gmail.com>
8376
8377 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
8378
97f05794
JL
83792011-09-08 Juri Linkov <juri@jurta.org>
8380
8381 * progmodes/compile.el (compilation-environment): Make it
8382 a defcustom (bug#8340).
8383
8b0874b5
MR
83842011-09-08 Martin Rudalics <rudalics@gmx.at>
8385
8386 * window.el (frame-auto-delete): Rename to window-auto-delete.
8387 Make it control auto-deletion of windows and/or frames.
8388 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 8389 for deleting window/frame. (Bug#9419)
8b0874b5
MR
8390 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
8391 Rewrite handling of case when window/frame can be deleted.
8392 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 8393 argument t. (Bug#9456)
8b0874b5 8394
4feb6e73
CY
83952011-09-07 Chong Yidong <cyd@stupidchicken.com>
8396
8397 * help-mode.el (help-mode): Restore autoload.
8398
91ab9c13
JL
83992011-09-07 Juri Linkov <juri@jurta.org>
8400
8401 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
8402 `compilation-environment'. Set buffer-local
8403 `compilation-environment' to `thisenv' later after (funcall mode).
8404 (Bug#8340)
8405
8406 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
8407 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
8408 instead of replacing its value. (Bug#8340)
8409
0527e251
JL
84102011-09-07 Juri Linkov <juri@jurta.org>
8411
8412 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
8413 based on text properties put by `grep-filter' instead of matching
8414 escape sequences.
8415 (grep-mode): Set buffer-local `compilation-error-screen-columns'
8416 to the value of `grep-error-screen-columns' (bug#9438).
8417
249f792c
JL
84182011-09-07 Juri Linkov <juri@jurta.org>
8419
8420 * simple.el (next-error-highlight, next-error-highlight-no-select):
8421 Doc fix (bug#9432).
8422
ff7271b9
OT
84232011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
8424
8425 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
8426 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
8427
183fc730
LL
84282011-09-07 Leo Liu <sdl.web@gmail.com>
8429
8430 * net/rcirc.el (rcirc-mode): Conditionally initialize
8431 rcirc-input-ring.
8432
77694924
SM
84332011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
8434
8435 * emacs-lisp/find-func.el (find-function-C-source): Only set
8436 find-function-C-source-directory after checking that we found a source
8437 file there (bug#9440).
8438
d809b8eb
AM
84392011-09-06 Alan Mackenzie <acm@muc.de>
8440
8441 * isearch.el (isearch-other-meta-char): Wherever a key list is
8442 unread, "unread" the prefix arg, too. This fixes bug #8901.
8443
453de99f
OG
84442011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
8445
8446 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
8447
90439906
JL
84482011-09-05 Juri Linkov <juri@jurta.org>
8449
8450 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
8451
f62bd846
JL
84522011-09-05 Juri Linkov <juri@jurta.org>
8453
8454 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
8455 keeping point where processing of grep matches begins, and
8456 continue to delete remaining escape sequences from the same point.
8457 (grep-filter): Make leading zero optional in "0?1;31m" because
8458 git-grep emits "\033[1;31m" escape sequences unlike expected
8459 "\033[01;31m" as GNU Grep does (bug#9408).
8460 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
8461
045820ec
JL
84622011-09-05 Juri Linkov <juri@jurta.org>
8463
8464 * subr.el (y-or-n-p): Capitalize "yes".
8465
f5e29b9b
MA
84662011-09-04 Michael Albinus <michael.albinus@gmx.de>
8467
8468 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
8469 `tramp-cache-unload-hook' where appropriate.
8470 (tramp-methods): Rename `tramp-remote-sh' to
8471 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
8472 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
8473
8474 * net/tramp-sh.el (top): Don't require 'shell.
8475 (tramp-methods): Add `tramp-remote-shell' and
8476 `tramp-remote-shell-args' entries.
8477 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
8478 (tramp-sh-handle-shell-command): Remove.
8479 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
8480 Use `tramp-remote-shell'.
8481
2784c434
CY
84822011-09-03 Chong Yidong <cyd@stupidchicken.com>
8483
393a301e 8484 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
8485 (sendmail-query-once): Save directly to send-mail-function.
8486 Update message-send-mail-function too.
8487
8488 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
8489
464cdf56
CS
84902011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
8491
8492 * progmodes/python.el (python-mode-map): Use correct function to
8493 start python interpreter from menu-bar (as reported by Geert
8494 Kloosterman).
8495 (inferior-python-mode-map): Fix typo.
393a301e 8496 (python-shell-map): Remove.
464cdf56 8497
d37e5c87
DD
84982011-09-03 Deniz Dogan <deniz@dogan.se>
8499
8500 * net/rcirc.el (rcirc-print): Simplify code for
8501 rcirc-scroll-show-maximum-output. There is no need to walk
8502 through all windows to find the right one.
8503
f3ada0ee
CS
85042011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
8505
8506 * help.el (help-return-method): Doc fix.
8507
1f3c99ca
MR
85082011-09-03 Martin Rudalics <rudalics@gmx.at>
8509
8510 * window.el (window-deletable-p): Don't return a non-nil value
8511 when there's a buffer that was shown in the window before.
8512 (Bug#9419)
393a301e
SM
8513 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8514 Set window's previous buffers to nil.
1f3c99ca 8515
a3cf097f
EZ
85162011-09-03 Eli Zaretskii <eliz@gnu.org>
8517
8518 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
8519 newline before and after the tag line, so it doesn't interfere
8520 with determining the paragraph direction of bidirectional text.
8521
3d03de90
LL
85222011-09-03 Leo Liu <sdl.web@gmail.com>
8523
8524 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
8525
c3313451
CY
85262011-09-02 Chong Yidong <cyd@stupidchicken.com>
8527
393a301e 8528 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
8529 (pop-to-buffer): Change interactive spec. Pass second argument
8530 directly to display-buffer.
8531 (display-buffer): Fix interactive spec. Use functionp to
8532 distinguish between a function and a list of functions.
8533
8534 * abbrev.el (edit-abbrevs):
8535 * arc-mode.el (archive-extract):
8536 * autoinsert.el (auto-insert):
8537 * bookmark.el (bookmark-bmenu-list):
8538 * files.el (find-file):
8539 * view.el (view-buffer):
8540 * progmodes/compile.el (compilation-goto-locus):
8541 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
8542
89894cd8
CY
85432011-09-02 Chong Yidong <cyd@stupidchicken.com>
8544
8545 * window.el (display-buffer-alist): Doc fix.
8546 (display-buffer): Add docstring. Don't treat
8547 display-buffer-default specially.
8548 (display-buffer-reuse-selected-window)
8549 (display-buffer-same-window, display-buffer-maybe-same-window)
8550 (display-buffer-reuse-window, display-buffer-pop-up-frame)
8551 (display-buffer-pop-up-window)
8552 (display-buffer-reuse-or-pop-window)
8553 (display-buffer-use-some-window): New functions.
8554 (display-buffer-default-action): Use them.
393a301e 8555 (display-buffer-default): Delete.
89894cd8
CY
8556 (pop-to-buffer-1): Fix choice of actions.
8557
ae0bc9fb
SM
85582011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
8559
8560 * minibuffer.el (completion--insert-strings): Don't get confused by
8561 completion entries that end with an LF char.
8562
e9d90883
EZ
85632011-09-01 Eli Zaretskii <eliz@gnu.org>
8564
8565 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
8566
437014c8
CY
85672011-09-01 Chong Yidong <cyd@stupidchicken.com>
8568
8569 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
8570 (display-buffer-same-window, display-buffer-other-window):
8571 New functions.
437014c8
CY
8572 (pop-to-buffer-1): New function. Use the above.
8573 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 8574 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
8575
8576 * view.el (view-buffer-other-window, view-buffer-other-frame):
8577 Just use pop-to-buffer.
8578
a5e063d5
TV
85792011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8580
8581 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
8582
793d32bb
WH
85832011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
8584
8585 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
8586
d65e4c15
RS
85872011-08-31 Richard Stallman <rms@gnu.org>
8588
8589 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
8590 of the separation of rmail-view-buffer from rmail-buffer.
8591 If you say no to "replace original", the decrypt is in the
8592 view buffer. If you say yes, the decrypt goes into the
8593 rmail buffer also.
8594
f818cd2a
MR
85952011-08-31 Martin Rudalics <rudalics@gmx.at>
8596
8597 * window.el (display-buffer-window): Rewrite doc-string.
8598 (display-buffer-record-window): New function.
8599 (display-buffer-macro-specifiers)
8600 (display-buffer-even-window-sizes, display-buffer-set-height)
8601 (display-buffer-set-width, display-buffer-in-window)
8602 (display-buffer-reuse-window, display-buffer-split-specifiers)
8603 (display-buffer-side-specifiers, display-buffer-split-window-1)
8604 (display-buffer-split-window, display-buffer-split-atom-window)
8605 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
8606 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
8607 (display-buffer-other-window-means-other-frame)
8608 (display-buffer-normalize-special)
8609 (display-buffer-normalize-default)
8610 (display-buffer-normalize-argument)
8611 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
8612 (display-buffer-normalize-specifiers, display-buffer-frame)
8613 (display-buffer-same-window, display-buffer-same-frame)
8614 (display-buffer-other-window)
8615 (display-buffer-same-frame-other-window)
8616 (display-buffer-other-frame, pop-to-buffer-same-window)
8617 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
8618 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
8619 (switch-to-buffer-same-frame)
8620 (switch-to-buffer-other-window-same-frame)
8621 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
8622 (display-buffer-alist-set-1, display-buffer-alist-set-2)
8623 (display-buffer-alist-set): Remove.
8624 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
8625 (special-display-regexps, special-display-function):
8626 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
8627 parameter.
8628 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
8629 (special-display-frame-alist, special-display-popup-frame)
8630 (same-window-buffer-names, same-window-regexps, same-window-p)
8631 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
8632 (split-window-preferred-function, split-height-threshold)
8633 (split-width-threshold, window-splittable-p)
8634 (split-window-sensibly, window--try-to-split-window)
8635 (window--frame-usable-p, even-window-heights)
8636 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
8637 (window--display-buffer-2, display-buffer-other-frame):
8638 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
8639 (display-buffer-default, display-buffer-assq-regexp): New functions.
8640 (display-buffer-alist): Rewrite doc-string.
8641 (display-buffer-default-action)
8642 (display-buffer-overriding-action): New variables.
8643 (display-buffer, switch-to-buffer): Rewrite.
8644 (pop-to-buffer): Restore Emacs 23 behavior but use
8645 window-normalize-buffer-to-display.
8646 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
8647 Restore Emacs 23 behavior but use
8648 window-normalize-buffer-to-switch-to.
8649 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
8650 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
8651 Rewrite using Emacs 23 options.
f818cd2a 8652
5bc3b51d
MA
86532011-08-31 Michael Albinus <michael.albinus@gmx.de>
8654
8655 * net/tramp.el (tramp-root-regexp): Remove.
8656 (tramp-completion-file-name-regexp-unified)
8657 (tramp-completion-file-name-regexp-separate)
8658 (tramp-completion-file-name-regexp-url): Don't use leading volume
8659 letter on win32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
8660 (tramp-drop-volume-letter): Simplify definition.
8661 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 8662
b1a4f8e1
SM
86632011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8664
8665 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
8666 (bug#9356).
8667
5664fa7b
RT
86682011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
8669
b1a4f8e1 8670 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 8671
9a45d6c3
JL
86722011-08-29 Juri Linkov <juri@jurta.org>
8673
8674 * isearch.el (isearch-done): Don't display message "Mark saved"
8675 when arg `edit' is non-nil to prevent its flicker in the echo area.
8676
fb87e0fb
CY
86772011-08-28 Chong Yidong <cyd@stupidchicken.com>
8678
8679 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
8680 obsolete packages for deletion.
8681
09ac1c2a
CS
86822011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
8683
8684 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 8685 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
8686 view-mode from help-mode.
8687 (help-xref-override-view-map): Remove.
8688 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
8689 view-mode is not used anymore.
8690
7a1ff57f
CY
86912011-08-28 Chong Yidong <cyd@stupidchicken.com>
8692
8693 * server.el (server-port): Doc fix.
8694
b9696605
CY
8695 * cus-theme.el (custom-theme-choose-mode): Inherit from
8696 special-mode (Bug#9124).
8697 (custom-theme-choose-mode-map): Add special-mode to parent.
8698
ef8cdf8c
AM
86992011-08-28 Alan Mackenzie <acm@muc.de>
8700
8701 * progmodes/cc-fonts.el
8702 (c-make-font-lock-BO-decl-search-function): New function.
8703 (c-basic-matchers-after - "Fontify the clauses after various
8704 keywords"): Extract the three keyword lists for the 3 erroneous
8705 constructs from the list of four, and use the new function above
8706 in place of an old one.
8707
27de4e20
DD
87082011-08-28 Deniz Dogan <deniz@dogan.se>
8709
8710 * net/rcirc.el (rcirc-insert-prev-input)
8711 (rcirc-insert-next-input): Remove unused argument.
8712
356a3681
SM
87132011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8714
8715 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
8716
3fc9b218
AM
87172011-08-27 Alan Mackenzie <acm@muc.de>
8718
8719 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
8720 handle function pointer parameters properly.
8721
538a061c
MR
87222011-08-27 Martin Rudalics <rudalics@gmx.at>
8723
8724 * window.el (display-buffer-reuse-window): Fix case where
8725 selected window was reused with non-nil OTHER-WINDOW argument.
8726 (Bug#9381)
8727
35b1c40c
DD
87282011-08-27 Deniz Dogan <deniz@dogan.se>
8729
8730 * net/rcirc.el (rcirc-check-auth-status): Adding support for
8731 oftc's NickServ messages.
8732
2f6a3e79
GM
87332011-08-27 Glenn Morris <rgm@gnu.org>
8734
8735 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
8736
7254299e
CY
87372011-08-26 Chong Yidong <cyd@stupidchicken.com>
8738
8739 * emacs-lisp/package.el (package-install): Call package-initialize
8740 if called interactively.
8741
f8ccf167
LL
87422011-08-26 Leo Liu <sdl.web@gmail.com>
8743
8744 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
8745
3e8cd5ce
JL
87462011-08-25 Juri Linkov <juri@jurta.org>
8747
8748 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
8749 `search-whitespace-regexp' (bug#9364).
8750
93eb7113
JL
87512011-08-25 Juri Linkov <juri@jurta.org>
8752
8753 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
8754 `regexp-search-ring' to their global values to protect from
8755 updating by `read-from-minibuffer' (bug#9185).
8756
f65d1611
JL
87572011-08-25 Juri Linkov <juri@jurta.org>
8758
8759 * textmodes/ispell.el (ispell-command-loop): Add newline
8760 at the end of the "Use option `i'..." line.
8761
f1cf7a31
JL
87622011-08-25 Juri Linkov <juri@jurta.org>
8763
8764 * battery.el (display-battery-mode): If `battery-status-function'
8765 or `battery-mode-line-format' is nil, display the message and set
8766 `display-battery-mode' to nil (bug#9363).
8767
0c95fcf7
EZ
87682011-08-25 Eli Zaretskii <eliz@gnu.org>
8769
8770 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
8771 bidi-string-mark-left-to-right; they are unnecessary now.
8772
a2ebe600
DD
87732011-08-25 Deniz Dogan <deniz@dogan.se>
8774
8775 * net/quickurl.el: Documentation typo fixes.
8776
e4ed06f1
CY
87772011-08-25 Chong Yidong <cyd@stupidchicken.com>
8778
8779 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
8780
e5f1c99e
GM
87812011-08-25 Glenn Morris <rgm@gnu.org>
8782
b2948976
GM
8783 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
8784
e5f1c99e
GM
8785 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
8786 (smtpmail-via-smtp): Handle nil response from smtp.
8787
f22f4808
JL
87882011-08-24 Juri Linkov <juri@jurta.org>
8789
8790 * proced.el (proced-marked): Inherit from `error' instead of
8791 `font-lock-warning-face'.
8792
8793 * ibuffer.el (ibuffer-marked-face): Change default face from
8794 `font-lock-warning-face' to `warning'.
8795 (ibuffer-deletion-face): Change default face from
8796 `font-lock-type-face' to `error'.
8797
8798 * battery.el (battery-update): Use the face `error' instead of
8799 `font-lock-warning-face' (bug#6117).
8800
6a93965e
JL
88012011-08-24 Juri Linkov <juri@jurta.org>
8802
8803 * faces.el (success): Change face color from "Green3" to
8804 "ForestGreen" on light background (bug#9353).
8805
1ed43b09
CY
88062011-08-24 Chong Yidong <cyd@stupidchicken.com>
8807
5664fa7b
RT
8808 * window.el (quit-window): Rename from quit-restore-window.
8809 Use same arglist as old quit-window.
1ed43b09
CY
8810 (frame-auto-delete): Doc fix.
8811
8812 * view.el (view-mode-exit): Use quit-window.
8813
11dcdbb2
JL
88142011-08-24 Juri Linkov <juri@jurta.org>
8815
8816 * isearch.el (isearch-ring-adjust1): Start visiting previous
8817 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
8818 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
8819 for empty search string (when the last search string is reused
8820 automatically) to adjust the isearch ring to the last element and
8821 prepare the correct index for further M-p commands (bug#9185).
8822
de62b4df
KH
88232011-08-24 Kenichi Handa <handa@m17n.org>
8824
8825 * international/ucs-normalize.el: If decomposition property of
8826 CHAR is the default one (i.e. a list of CHAR itself), treat it as
8827 nil.
8828 (nfd, nfkd): Likewise.
8829
963b492b
SM
88302011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
8831
8832 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
8833 from process filters aren't reliably transmitted to the surrounding
8834 accept-process-output.
8835 (mpc-proc-check): New function.
8836 (mpc-proc-sync): Use it (bug#8293)
8837
93b6b5e1
SM
88382011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
8839
8840 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
8841 Add compatibility functions (bug#9313).
8842
bca633fb
EZ
88432011-08-23 Eli Zaretskii <eliz@gnu.org>
8844
b177498a
EZ
8845 * cus-start.el (all): Add entry for bidi-paragraph-direction.
8846
6df6ae42 8847 * international/uni-bidi.el: Regenerate.
bca633fb 8848
0902a04e
KH
88492011-08-23 Kenichi Handa <handa@m17n.org>
8850
8851 * international/charprop.el:
8852 * international/uni-bidi.el:
8853 * international/uni-category.el:
8854 * international/uni-combining.el:
8855 * international/uni-comment.el:
8856 * international/uni-decimal.el:
8857 * international/uni-decomposition.el:
8858 * international/uni-digit.el:
8859 * international/uni-lowercase.el:
8860 * international/uni-mirrored.el:
8861 * international/uni-name.el:
8862 * international/uni-numeric.el:
8863 * international/uni-old-name.el:
8864 * international/uni-titlecase.el:
8865 * international/uni-uppercase.el: Regenerate.
8866
3bbf23bc
MR
88672011-08-23 Martin Rudalics <rudalics@gmx.at>
8868
8869 * help.el (help-window-setup): Fix message displayed when other
8870 window is reused. (Bug#9341)
8871
b3fd59bd
SM
88722011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
8873
1802e444
SM
8874 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
8875 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
8876
b3fd59bd
SM
8877 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
8878 Mark obsolete.
8879 * shell.el (shell-parse-pcomplete-arguments): New function.
8880 (shell-completion-vars): Use it instead (bug#9160).
8881
4eb61348
SM
88822011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
8883
867cab74
SM
8884 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
8885 strings and comments (bug#9333).
8886
4eb61348
SM
8887 * emacs-lisp/debug.el (debug-arglist): New function.
8888 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
8889 (debug-on-entry-1): Handle interpreted closures (bug#9120).
8890
262a1439
JL
88912011-08-22 Juri Linkov <juri@jurta.org>
8892
56ee679c
JL
8893 * progmodes/compile.el (compilation-mode-font-lock-keywords):
8894 Revert regexp that highlights output switches to its old
8895 pre-2010-10-28 value and remove one `?' from it (bug#9319).
8896
262a1439
JL
8897 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
8898 to check for empty output (bug#9226).
8899
f13f86fb
CY
89002011-08-22 Chong Yidong <cyd@stupidchicken.com>
8901
8902 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
8903 symbol-constituent as the default, as that stops font-lock from
8904 working properly (Bug#8843).
8905
c65c9622
LMI
89062011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
8907
8908 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
8909 `coding-system-for-*' around the process open call to avoid
8910 auth-source side effects.
e7f2c178 8911 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
8912 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
8913 probe hangs.
c65c9622 8914
23a8a5ab
CY
89152011-08-21 Chong Yidong <cyd@stupidchicken.com>
8916
ff98b2dd
CY
8917 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
8918
23a8a5ab
CY
8919 * emacs-lisp/find-func.el (find-function-noselect): New arg
8920 lisp-only.
8921
8922 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
8923 signal an error for built-in functions (Bug#6664).
8924
f5e3c598
LMI
89252011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
8926
8927 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
8928 (smtpmail-try-auth-methods): Use it.
8929
a3f2468a
CY
89302011-08-21 Chong Yidong <cyd@stupidchicken.com>
8931
2c34e8da
CY
8932 * font-lock.el (font-lock-fontify-region)
8933 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
8934 (font-lock-default-unfontify-buffer)
8935 (font-lock-default-fontify-region)
8936 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
8937
b3fd59bd
SM
8938 * progmodes/compile.el (compilation-error-properties):
8939 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
8940 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
8941 `ant' regexp.
ee31aabc 8942
a3f2468a
CY
8943 * net/browse-url.el (browse-url-firefox): Don't call
8944 browse-url-firefox-sentinel unless using -remote (Bug#9328).
8945
8e999f70
GM
89462011-08-20 Glenn Morris <rgm@gnu.org>
8947
c21a496a
GM
8948 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
8949
59ee0542
GM
8950 * tutorial.el (tutorial--default-keys): Update some default bindings.
8951
8e999f70
GM
8952 * files.el (hack-local-variables): Fully ignore case for "mode:".
8953
e3715033
AM
89542011-08-20 Alan Mackenzie <acm@muc.de>
8955
8956 Resolve invalid use of a regexp in regexp-opt.
8957
4d61f28d
JB
8958 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
8959 detection for a java annotation.
e3715033 8960
4d61f28d 8961 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
8962 detection for a java annotation.
8963
4d61f28d
JB
8964 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
8965 handling for java.
e3715033
AM
8966 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
8967
04ed2e9c
CY
89682011-08-20 Chong Yidong <cyd@stupidchicken.com>
8969
8970 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
8971 (Bug#9274).
8972
826cee64
AM
89732011-08-20 Alan Mackenzie <acm@muc.de>
8974
58179cce 8975 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
8976 such a construct. Mainly for when jit-lock etc. starts a chunk
8977 here.
8978
58179cce 8979 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 8980 variable.
58179cce 8981 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
8982 c-make-font-lock-search-function.
8983 (c-make-font-lock-search-function): Use the above function.
8984 (c-make-font-lock-context-search-function): New function.
8985 (c-cpp-matchers): Enhance the preprocessor expression case with
8986 the above function
8987 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
8988 which takes an expression.
8989
8990 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
8991
13009bd8
MR
89922011-08-20 Martin Rudalics <rudalics@gmx.at>
8993
8994 * window.el (display-buffer-reuse-window)
8995 (display-buffer-pop-up-window): Don't reuse or split a side
8996 window.
8997
9234ff7f
GM
89982011-08-19 Glenn Morris <rgm@gnu.org>
8999
9000 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 9001 Downcase "Mode:". (Bug#9331)
9234ff7f 9002
f635daa1
CY
90032011-08-18 Chong Yidong <cyd@stupidchicken.com>
9004
9005 * international/characters.el: Add L and R categories.
9006
9007 * subr.el (bidi-string-mark-left-to-right): Rename from
9008 string-mark-left-to-right. Use category search.
9009
9010 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
9011
bc987f8b
JL
90122011-08-18 Juri Linkov <juri@jurta.org>
9013
9014 * faces.el (error, warning, success): New faces with definitions
9015 copied from old default values of `font-lock-warning-face',
9016 `compilation-warning', `compilation-info' (bug#6117).
9017
9018 * font-lock.el (font-lock-warning-face): Inherit from `error'.
9019
9020 * progmodes/compile.el (compilation-error): Inherit from `error'.
9021 (compilation-warning): Inherit from `warning'.
9022 (compilation-info): Inherit from `success'.
9023
9024 * dired.el (dired-marked): Inherit from `warning'.
9025 (dired-flagged): Inherit from `error'.
9026
57173b96
LMI
90272011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9028
3e79eb87
LMI
9029 * mail/smtpmail.el (auth-source): Require to avoid problems with
9030 binding variables (bug#9298). Also clean up some unused
9031 autoloads.
9032
b3fd59bd
SM
9033 * net/network-stream.el (network-stream-open-starttls):
9034 Support using starttls.el without using gnutls-cli.
57173b96 9035
02b404de
JL
90362011-08-17 Juri Linkov <juri@jurta.org>
9037
9038 * progmodes/grep.el (rgrep): Handle the case when
9039 `grep-find-command' is a cons cell (bug#9278).
9040
8c9177f2
MR
90412011-08-17 Martin Rudalics <rudalics@gmx.at>
9042
9043 * window.el (display-buffer-pop-up-frame): Run frame creation
9044 function with BUFFER current (as special-display-popup-frame
9045 does). Reported by Drew Adams.
9046
3644a0ab
DU
90472011-08-17 Daiki Ueno <ueno@unixuser.org>
9048
9049 * epa-mail.el: Simplify GnuPG group expansion using
9050 epg-expand-group.
9051 (epa-mail-group-alist, epa-mail-group-modtime)
9052 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
9053 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
9054 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
9055 Remove.
9056
5e617bc2 90572011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
9058
9059 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
9060
9c4aeabf
AM
90612011-08-16 Alan Mackenzie <acm@muc.de>
9062
9063 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
9064 Correct, to avoid the inside of macros.
9065
3a99bf64
RS
90662011-08-16 Richard Stallman <rms@gnu.org>
9067
04963aa8
RS
9068 * epa-mail.el: Handle GnuPG group definitions.
9069 (epa-mail-group-alist, epa-mail-group-modtime)
9070 (epa-mail-gnupg-conf-file): New variables.
9071 (epa-mail-parse-groups, epa-mail-sync-groups)
9072 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
9073 (epa-mail-expand-recipients): New functions.
9074 (epa-mail-encrypt): Call epa-mail-expand-recipients.
9075
177549d0
RS
9076 * mail/rmail.el (rmail-epa-decrypt): New command.
9077
fe38beef
RS
9078 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
9079 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
9080 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
9081 (epa-decrypt-armor-in-region): Make error message clearer.
9082
934eacb9
SM
90832011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
9084
9085 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
9086 and "a2b" to "ab" for `prefix'.
9087
d024fb4e
CY
90882011-08-14 Chong Yidong <cyd@stupidchicken.com>
9089
9090 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
9091 filter groups.
de148fee
CY
9092 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
9093 Fourquet (Bug#8804).
d024fb4e 9094
62f1ca49
JB
90952011-08-12 Juanma Barranquero <lekktu@gmail.com>
9096
9097 * startup.el (argi): Declare as global variable (bug#9275).
9098
9ccaaa4b
CY
90992011-08-12 Chong Yidong <cyd@stupidchicken.com>
9100
9101 * subr.el (string-mark-left-to-right): Search the entire string
9102 for RTL script, not just the terminating character. Doc fix.
9103
a3dae87a
SM
91042011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
9105
6cd18349
SM
9106 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
9107 New function.
9108 (js--regexp-literal, js-syntax-propertize-function): Remove.
9109 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
9110 (js-mode-map): Don't rebind electric keys.
9111 (js-insert-and-indent): Remove.
9112 (js-mode): Setup electric-layout and electric-indent instead.
9113
a3dae87a
SM
9114 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
9115
9d5cb631
DU
91162011-08-12 Daiki Ueno <ueno@unixuser.org>
9117
9118 * epa.el (epa-progress-callback-function): Fix the logic of
9119 displaying progress.
9120 * epa-file.el (epa-file-insert-file-contents): Make progress
9121 display more user-friendly.
9122 (epa-file-write-region): Ditto.
9123
3e26a4a2
CY
91242011-08-10 Chong Yidong <cyd@stupidchicken.com>
9125
9126 * subr.el (string-mark-left-to-right): New function.
9127
9128 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
9129 Use string-mark-left-to-right.
9130 (list-buffers-noselect): Caller changed.
9131
a3dae87a
SM
9132 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9133 Use string-mark-left-to-right.
3e26a4a2
CY
9134 (tabulated-list-print): Recenter after moving point.
9135
ac8cf6e6
JL
91362011-08-10 Juri Linkov <juri@jurta.org>
9137
9138 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
9139 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
9140 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
9141
8d96c9a4
CY
91422011-08-09 Chong Yidong <cyd@stupidchicken.com>
9143
9144 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
9145 (Bug#7554).
9146
7be1c708 91472011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
9148
9149 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
9150 character. (Bug#6594)
9151
37e11a63
CY
91522011-08-08 Chong Yidong <cyd@stupidchicken.com>
9153
839dde57
CY
9154 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
9155 (image-dired--with-db-file): New macro.
9156 (image-dired-write-tags, image-dired-remove-tag)
9157 (image-dired-create-gallery-lists, image-dired-write-comments)
9158 (image-dired-get-comment, image-dired-mark-tagged-files)
9159 (image-dired-list-tags, image-dired-gallery-generate): Use it.
9160 (image-dired-gallery-generate): Use insert-file-contents.
9161
37e11a63
CY
9162 * time.el (display-time-world-list, display-time-world-display):
9163 * time-stamp.el (time-stamp-string):
9164 * vc/add-log.el (add-change-log-entry): Use setenv instead of
9165 set-time-zone-rule (Bug#7337).
9166
0b4946c4
DU
91672011-08-08 Daiki Ueno <ueno@unixuser.org>
9168
9169 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
9170 (epg-error-to-string, epg-errors-to-string): New function.
9171 (epg-wait-for-completion): Reverse errors list.
9172 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
9173 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
9174 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
9175 (epg-sign-keys, epg-generate-key-from-file)
9176 (epg-generate-key-from-string): Format errors by using
9177 epg-errors-to-string (bug#9255).
9178 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
9179
75bfc667
JL
91802011-08-07 Juri Linkov <juri@jurta.org>
9181
9182 * faces.el (list-faces-display): Remove extra angle bracket
9183 from `help-mode-map'.
9184
9185 * info.el (Info-history-toc-nodes): Doc fix.
9186
9187 * longlines.el (longlines-mode): Doc fix.
9188
673e08bb
SM
91892011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
9190
4640dd88
SM
9191 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
9192 of statements and in a few more cases (bug#9183).
9193
673e08bb
SM
9194 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
9195 New functions.
9196 (cl-transform-lambda): Use them (bug#9239).
9197
89b3f019
MR
91982011-08-05 Martin Rudalics <rudalics@gmx.at>
9199
9200 * window.el (display-buffer-same-window)
9201 (display-buffer-same-frame, display-buffer-other-window)
9202 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
9203 (pop-to-buffer-other-window)
9204 (pop-to-buffer-same-frame-other-window)
9205 (pop-to-buffer-other-frame): Make them defuns.
9206 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
9207
640c8776
SM
92082011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
9209
9210 * subr.el (make-composed-keymap): Move from C. Change calling
9211 convention, and improve docstring to bring attention to a subtle point.
9212 * minibuffer.el (completing-read-default): Adjust accordingly.
9213
63648a95
MA
92142011-08-03 Michael Albinus <michael.albinus@gmx.de>
9215
9216 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
9217 (tramp-open-shell): Use `tramp-shell-quote-argument'.
9218
9219 * net/trampver.el: Update release number.
9220
b796c9b7
SM
92212011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
9222
9223 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
9224 "in" (bug#9190).
9225
2239d7d5
LMI
92262011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
9227
e07dd7c3
LMI
9228 * mail/sendmail.el (sendmail-query-once): Restore the current
9229 buffer after querying (bug#9074).
9230
0e6a2bd7
LMI
9231 * dired.el (dired-flagged): Use different faces for marked and
9232 flagged files (bug#6117).
9233
ce887515
LMI
9234 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
9235 (bug#4433).
9236
92f2affc
LMI
9237 * ido.el (ido-mode): Switch off the message if called
9238 non-interactively.
9239
57d5aff0
LMI
9240 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
9241 before 587, since it appears that that's more likely to work for
9242 more people.
9243
98cd6c18 9244 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 9245 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
9246 exist.
9247
b96dec83
LMI
9248 * info.el: Remove the `Info-beginning-of-buffer' function
9249 (bug#8325).
9250
b796c9b7
SM
9251 * net/network-stream.el (network-stream-open-starttls):
9252 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 9253
d90e2ea0
MR
92542011-08-01 Martin Rudalics <rudalics@gmx.at>
9255
9256 * window.el (display-buffer-in-window): Don't set dedicated status
9257 of window here (Bug#9215).
9258 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9259 (display-buffer-pop-up-side-window)
b796c9b7 9260 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 9261
cca09170
SM
92622011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
9263
9264 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
9265 before binding generated-autoload-file.
9266
027b979c
DD
92672011-08-01 Deniz Dogan <deniz@dogan.se>
9268
9269 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
9270
3c7ee4f3
MA
92712011-07-30 Michael Albinus <michael.albinus@gmx.de>
9272
9273 Sync with Tramp 2.2.2.
9274
9275 * net/trampver.el: Update release number.
9276
2cc8e51a
JL
92772011-07-30 Juri Linkov <juri@jurta.org>
9278
9279 * dired-aux.el (dired-touch-initial): Remove function.
9280 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
9281 current time, and `default' to the last modification time of the
9282 current marked file (bug#6887).
9283
a514d856
JM
92842011-07-28 Jose E. Marchesi <jemarch@gnu.org>
9285
9286 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 9287 numeric argument to read-number (bug#9163).
a514d856 9288
8a7eddd7
MA
92892011-07-27 Michael Albinus <michael.albinus@gmx.de>
9290
9291 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
9292 connection process, it could be nil.
9293
1ddd96f5
LL
92942011-07-27 Leo Liu <sdl.web@gmail.com>
9295
9296 Simplify url handling in rcirc-mode.
9297
9298 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
9299 (rcirc-browse-url-at-mouse): Remove.
9300 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
9301
b248a85d
AM
93022011-07-26 Alan Mackenzie <acm@muc.de>
9303
9304 Fontify bitfield declarations properly.
9305
9306 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
9307 (c-symbol-chars): Now exported as a lang variable.
9308 (c-not-primitive-type-keywords): New lang variable.
9309
9310 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
9311 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 9312 parsed as a bitfield declaration.
b248a85d 9313
b796c9b7
SM
9314 * progmodes/cc-engine.el (c-beginning-of-statement-1):
9315 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
9316 (c-punctuation-in): New function.
9317 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
9318 declarations properly.
9319
68575ab0
UJ
93202011-07-26 Ulf Jasper <ulf.jasper@web.de>
9321
9322 * calendar/icalendar.el (icalendar--all-events): Take care of
9323 multiple vcalendars in a single file.
b796c9b7 9324 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 9325
0f0a88b9
DD
93262011-07-25 Deniz Dogan <deniz@dogan.se>
9327
9328 * image.el (insert-image): Clarifying docstring.
9329
0b3f36df
MA
93302011-07-24 Michael Albinus <michael.albinus@gmx.de>
9331
9332 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
9333 `tramp-send-command-and-check' if there is no error.
9334 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
9335
a9901f61
AM
93362011-07-22 Alan Mackenzie <acm@muc.de>
9337
9338 Prevent cc-langs.elc being loaded at run time.
9339
9340 * progmodes/cc-mode.el: Remove two autoload forms which loaded
9341 cc-langs.
9342
4d61f28d 9343 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
9344 "(require 'cc-langs)". Quote a form so it will evaluate at
9345 (cc-mode's) compilation time.
9346
11d074b2
MA
93472011-07-22 Michael Albinus <michael.albinus@gmx.de>
9348
9349 * net/tramp.el (tramp-file-name-handler): Avoid recursive
9350 loading. (Bug#9114)
9351
938b94c8
MR
93522011-07-21 Martin Rudalics <rudalics@gmx.at>
9353
9354 * window.el (display-buffer-pop-up-window)
9355 (display-buffer-pop-up-side-window)
9356 (display-buffer-in-side-window): Call display-buffer-set-height
9357 and display-buffer-set-width after setting the new window's
b796c9b7 9358 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 9359
bfa4f190
SS
93602011-07-20 Sam Steingold <sds@gnu.org>
9361
9362 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
9363 (etags-tags-included-tables): Call `convert-standard-filename' on
9364 the file names contained in TAGS so that windows Emacs can handle
9365 TAGS files created by cygwin ctags.
9366
8ca42262
LMI
93672011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
9368
9369 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
9370 which apparently didn't work.
9371
5db2afd2 93722011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 9373
5db2afd2
RW
9374 * proced.el (proced-send-signal): For *Marked Processes* buffer
9375 put point at beginning of buffer.
9376
92e15d10
SB
93772011-07-19 Stephen Berman <stephen.berman@gmx.net>
9378
9379 * proced.el (proced-format): Make header lines align with the text
9380 (bug#1779).
9381
1bfd59e5
LMI
93822011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
9383
9384 * view.el (view-buffer): Allow running in `special' modes if we're
9385 visiting a file (bug#8615).
9386
f5aae37c
MR
93872011-07-19 Martin Rudalics <rudalics@gmx.at>
9388
9389 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
9390 (display-buffer-alist-set-1, display-buffer-alist-set-2):
9391 New functions.
f5aae37c
MR
9392 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
9393 more accurately.
9394
bf2c1571
AM
93952011-07-18 Alan Mackenzie <acm@muc.de>
9396
9397 Fontify declarators properly when, e.g., a jit-lock chunk begins
9398 inside a declaration.
9399
9400 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
9401
b796c9b7
SM
9402 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
9403 New function.
bf2c1571
AM
9404 (c-complex-decl-matchers): Insert reference to
9405 c-font-lock-enclosing-decls.
9406
9407 * progmodes/cc-engine.el (c-backward-single-comment):
9408 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
9409 to nil around calls to (forward-comment -1).
9410
4e190b80
LMI
94112011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9412
12dc863d
LMI
9413 * image.el (put-image): Doc typo fix.
9414
a762e966
LMI
9415 * progmodes/etags.el (tags-search): Doc typo fix.
9416
4e190b80
LMI
9417 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
9418 password if we get errors 550 to 554.
9419
f019fb21
LMI
94202011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
9421
b796c9b7 9422 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 9423
81746738
LMI
9424 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
9425 indentation character (bug#6380).
9426
3ee3a1b5
LMI
9427 * files.el (buffer-offer-save): Made permanently local (bug#6241).
9428
c82f64de
LMI
9429 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
9430 to clarify what the problem is (bug#4291).
9431
f019fb21
LMI
9432 * simple.el (current-kill): Clarify what
9433 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
9434 (auto-fill-mode): Document `auto-fill-function' in relation to
9435 `auto-fill-mode' (bug#2470).
f019fb21 9436
0794775d
LM
94372011-07-16 Lawrence Mitchell <wence@gmx.li>
9438
9439 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
9440 method if slot is read-only (bug#9035).
9441
be39b8cc
MR
94422011-07-16 Martin Rudalics <rudalics@gmx.at>
9443
b796c9b7 9444 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 9445 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
9446 selected before, see discussion of (Bug#8615), (Bug#6954).
9447 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 9448
6ccf7859
GM
94492011-07-15 Glenn Morris <rgm@gnu.org>
9450
9451 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 9452 Respect help-form.
6ccf7859 9453
87e86684
LM
94542011-07-09 Lawrence Mitchell <wence@gmx.li>
9455
9456 * net/gnutls.el (gnutls-min-prime-bits): New variable.
9457 (gnutls-negotiate): Use it.
9458
d6066239
LMI
94592011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
9460
b796c9b7
SM
9461 * net/gnutls.el (gnutls-negotiate):
9462 Upcase `gnutls-algorithm-priority'.
d6066239 9463
bd23ebc0
GM
94642011-07-15 Glenn Morris <rgm@gnu.org>
9465
c65bca65
GM
9466 * jka-compr.el (jka-compr-verbose): Move from here...
9467 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
9468 Add missing :version tag.
9469 * info.el: No need to require jka-compr when compiling.
bd23ebc0 9470
478615cc
LMI
94712011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
9472
7b41decb
LMI
9473 * net/gnutls.el (gnutls-algorithm-priority): New variable.
9474 (gnutls-negotiate): Use it.
9475
dbc44fcd
LMI
9476 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
9477
06789f97
LMI
9478 * info.el (Info-beginning-of-buffer): New command.
9479 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
9480 announcing `b' as the key (bug#8325).
ab896c37 9481 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 9482
c39da690
LMI
9483 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
9484
3aa5f34b
LMI
9485 * international/mule-cmds.el
9486 (describe-specified-language-support): Make the error message
9487 clearer (bug#8905).
9488
4bf0979f
LMI
9489 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
9490
478615cc
LMI
9491 * isearch.el (isearch-barrier): Add a doc string, since it's
9492 mentioned in a function doc string (bug#8678).
9493
75c68aa1
MR
94942011-07-15 Martin Rudalics <rudalics@gmx.at>
9495
9496 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
9497 buffer argument (Bug#9083) and self-identifying label argument.
9498
a7c33da2
GM
94992011-07-15 Glenn Morris <rgm@gnu.org>
9500
9501 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
9502
2f5c6024
LMI
95032011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
9504
9505 * man.el (Man-fontify-manpage): Fix message when formatting the
9506 man page (bug#7929).
9507
0bb23927 95082011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
9509
9510 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
9511 argument LRM; if non-nil, append an invisible LRM character to the
9512 buffer name.
9513 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
9514 last argument non-nil, when formatting buffer names.
0bb23927
EZ
9515 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
9516 paragraph direction.
cce4b0a7 9517
621ef9ab
LMI
95182011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
9519
d1583c48
LMI
9520 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
9521 the man page name (bug#7929).
9522
6a57fb5f
LMI
9523 * image.el (put-image): Mention the `put-image' overlay property
9524 (bug#7834).
9525
d7956b14
LMI
9526 * scroll-bar.el (set-scroll-bar-mode): Mention that
9527 `scroll-bar-mode' lists the values (bug#7772).
9528
5b2d4a66
LMI
9529 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
9530 command (bug#7729).
9531
7509a874
LMI
9532 * rect.el (apply-on-rectangle): Return the point after the last
9533 operation.
9534 (string-rectangle): Go to the point after the last operation
9535 (bug#7522).
9536
4fe74b19
LMI
9537 * printing.el (pr-toggle-region): Clarify the documentation
9538 slightly (bug#7493).
9539
b796c9b7
SM
9540 * time.el (display-time-update):
9541 Allow `display-time-mail-function' to return nil (bug#7158).
9542 Fix suggested by Detlev Zundel.
ab283561 9543
fc233c9d
LMI
9544 * vc/diff.el (diff): Clarify the order the file names are read
9545 (bug#7111).
9546
43f5740b
LMI
9547 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
9548 the doc string (bug#7015).
9549
f2182a76
LMI
9550 * font-lock.el (font-lock-maximum-decoration): Mention what
9551 numeric levels mean (bug#6935).
9552
621ef9ab
LMI
9553 * startup.el (initial-buffer-choice): Don't mention the `none'
9554 selection, which is against policy.
9555
adc47434
MR
95562011-07-14 Martin Rudalics <rudalics@gmx.at>
9557
b796c9b7
SM
9558 * window.el (display-buffer-normalize-special):
9559 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 9560
7e5bfb8f
EZ
95612011-07-14 Eli Zaretskii <eliz@gnu.org>
9562
9563 * subr.el (version<, version<=, version=): Mention "-CVS" and
9564 "-12345" alpha version numbers.
9565
27fa387a
CY
95662011-07-14 Chong Yidong <cyd@stupidchicken.com>
9567
9568 * bindings.el: Add advertised binding for set-mark-command
9569 (Bug#5772).
9570
8bdfa064
CY
95712011-07-14 Chong Yidong <cyd@stupidchicken.com>
9572
9573 * bindings.el (mode-line-other-buffer):
9574 * bookmark.el (bookmark-bmenu-2-window):
9575 * bs.el (bs-cycle-next, bs-cycle-previous):
9576 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
9577 switch-to-buffer.
9578
9579 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 9580 Delete.
8bdfa064 9581
5eba16a3
JB
95822011-07-14 Juanma Barranquero <lekktu@gmail.com>
9583
9584 * follow.el (follow-debug-message, follow-redisplay):
9585 * jka-cmpr-hook.el (with-auto-compression-mode):
9586 Fix typos in docstrings.
9587
15853710
LMI
95882011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
9589
a28e4607
LMI
9590 * subr.el (with-silent-modifications): Clarify somewhat what the
9591 macro inhibits (bug#6525).
9592
15853710
LMI
9593 * simple.el (eval-expression): Note what it does if called
9594 interactively (bug#6495).
9595
bee0fcef
CY
95962011-07-13 Chong Yidong <cyd@stupidchicken.com>
9597
b796c9b7
SM
9598 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
9599 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
9600
9601 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9602 Remove switch-to-buffer.
9603
58274504
LMI
96042011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
9605
bd2fcc8d
LMI
9606 * files.el (make-directory): Clarify that an error will be raised
9607 if there's an error (bug#6397).
9608
0f04b32c
LMI
9609 * startup.el (initial-buffer-choice): Add `none' as a choice
9610 (bug#6234).
9611
465c5fc8
LMI
9612 * subr.el (add-hook): Clarify section about buffer-local hooks
9613 (bug#6218).
9614
58274504
LMI
9615 * dired.el (dired-flagged): Clarify doc string (bug#6117).
9616
bead9a43
JB
96172011-07-13 Juanma Barranquero <lekktu@gmail.com>
9618
9619 * tabify.el (untabify): Preserve the current column so that point
9620 doesn't move (bug#6032).
9621
3af98a7b
LMI
96222011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
9623
b796c9b7
SM
9624 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
9625 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 9626
6240145a
GM
96272011-07-13 Glenn Morris <rgm@gnu.org>
9628
9629 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
9630 (dired-insert-directory): Give a message the first time
9631 if ls is found not to support --dired.
9632
1d8c2ccc
LMI
96332011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
9634
9635 * simple.el (toggle-truncate-lines): Clarify what is toggled
9636 (bug#5580). Text by Drew Adams.
9637
5fc4038e
CY
96382011-07-13 Chong Yidong <cyd@stupidchicken.com>
9639
9640 * simple.el (blink-matching-open): Make the error message from the
9641 last change less verbose.
9642
bf6012e5
DN
96432011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
9644
9645 * font-lock.el (font-lock-comment-face): Use the high contrast
9646 "yellow" color for font-lock-comment-face on low color terminals
9647 using a dark background color (bug#4221).
9648
343c3b5a
LMI
96492011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
9650
7e9505c5
LMI
9651 * dired.el (dired-insert-set-properties): Make the doc string
9652 reflect what it does now (bug#5325).
9653
c26fdcf5
LMI
9654 * simple.el (blink-matching-open): Say that we were unable to find
9655 the match within the limit, if we're limited (bug#5122).
9656
bb388cc5
LMI
9657 * international/mule-cmds.el (prefer-coding-system): Add an
9658 example (bug#4869).
9659
343c3b5a
LMI
9660 * progmodes/etags.el (tags-search): Document `file-list-form'
9661 (bug#4731).
9662
2a517d45
LM
96632011-07-13 Lawrence Mitchell <wence@gmx.li>
9664
9665 * net/browse-url.el (browse-url-default-browser)
9666 (browse-url-browser-function): Make the default browser choice a
9667 bit more logical (bug#4300). Also clean up the doc string.
9668
b6c78ef2
JB
96692011-07-13 Juanma Barranquero <lekktu@gmail.com>
9670
9671 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
9672 binary endings (bug#4440).
9673
1c4dd947
LMI
96742011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
9675
a2014063
LMI
9676 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
9677 which can be pretty annoying (bug#8971).
9678
9c9c2d88
LMI
9679 * jka-compr.el (jka-compr-verbose): New variable, and use
9680 throughout (bug#8971).
9681
1c4dd947
LMI
9682 * info.el (Info-find-file): Fall back on the installation
9683 directory if we can't find the info node anywhere else.
9684
a1c9f41b
SO
96852011-07-13 Sergei Organov <osv@javad.com> (tiny change)
9686
9687 * vc/vc.el (vc-revert-file):
9688 Don't set file time-stamp in the past. (Bug#5181)
9689
536f3d36
LMI
96902011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
9691
7152b011
LMI
9692 * files.el (after-find-file): Give a better error message when
9693 trying to find a symlink that points to a file that doesn't exist
9694 (bug#4398).
9695
536f3d36
LMI
9696 * progmodes/cc-vars.el: Remove (probably) misleading comment
9697 (bug#4396).
9698
460c0fba
JB
96992011-07-12 Johan Bockgård <bojohan@gnu.org>
9700
9701 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
9702
7a6bda45
CY
97032011-07-12 Chong Yidong <cyd@stupidchicken.com>
9704
9705 * mouse-sel.el: Hack restoring functionality, while keeping
9706 compatibility with 2010-07-03 changes to mouse selection.
9707 (mouse-sel-primary-overlay): New var.
9708 (mouse-sel-selection-alist): Use it.
9709 (mouse-sel-mode): Doc fix; remove points that are default features
9710 of mouse.el.
9711
c79598ef
JB
97122011-07-12 Johan Bockgård <bojohan@gnu.org>
9713
9714 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9715 Fix previous fix (bug#2490).
9716
ff8be6ef
RW
97172011-07-12 Roland Winkler <winkler@gnu.org>
9718
b796c9b7
SM
9719 * textmodes/bibtex.el (bibtex-initialize):
9720 Use pop-to-buffer-same-window.
ff8be6ef
RW
9721 (bibtex-search-entries): Fix interactive call.
9722
296ba3ee
LMI
97232011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
9724
f5242a02 9725 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
9726 Fontise bytecomp Error lines more correctly (bug#2490).
9727 Fix suggested by Johan Bockgård.
f5242a02 9728
296ba3ee
LMI
9729 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
9730
9731 * dired-x.el (dired-guess-default): Use `delete-dups'.
9732
f69fd0d2
CY
97332011-07-12 Chong Yidong <cyd@stupidchicken.com>
9734
9735 * dired.el (dired-mark-prompt):
9736 * dired-aux.el (dired-read-shell-command): Doc fix.
9737
eab5dc07
LMI
97382011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9739
b796c9b7
SM
9740 * mail/sendmail.el (sendmail-query-once):
9741 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
9742 emacs -Q.
9743
9744 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
9745
eab5dc07
LMI
9746 * cus-edit.el (custom-file): Take an optional no-error variable.
9747 (customize-save-variable): Set the variable, and give a warning if
9748 running under "emacs -q".
9749
a1e65d42
JB
97502011-07-11 Juanma Barranquero <lekktu@gmail.com>
9751
9752 * loadhist.el (unload-feature-special-hooks):
9753 Add `auto-coding-functions', `fill-nobreak-predicate' and
9754 `find-directory-functions' (bug#5327).
9755
1d52da10
LMI
97562011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9757
be958f1d
LMI
9758 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
9759
5bedb26c
LMI
9760 * cus-edit.el (custom-guess-name-alist): -alist variables should
9761 use the `alist' type (bug#3120). Suggested by Drew Adams.
9762
1d52da10
LMI
9763 * printing.el: Add documentation to all the `pr-toggle-' commands.
9764
cd394be1 97652011-07-11 Leo Liu <sdl.web@gmail.com>
481a51b6
LL
9766
9767 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
9768 backends where it makes sense (bug#2623).
9769
dcc88d8a
LMI
97702011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9771
c3de9feb
LMI
9772 * dired-x.el (dired-guess-default): Remove duplicate shell command
9773 entries (bug#2028).
8a93078b 9774 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 9775 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 9776
dcc88d8a
LMI
9777 * subr.el (remove-duplicates): New conveniency function.
9778
505e3645
LMI
97792011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9780
9781 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
9782 (bug#1526).
9783
97842011-07-10 Martin Rudalics <rudalics@gmx.at>
9785
9786 * window.el (display-buffer-normalize-default): Don't invert
9787 meaning of even-window-heights. Reported by Eli Zaretskii
9788 <eliz@gnu.org>.
9789
455e4fa1
BR
97902011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
9791
9792 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
9793
8e0bc3e9
CY
97942011-07-10 Chong Yidong <cyd@stupidchicken.com>
9795
9796 * window.el (display-buffer): Fix arguments to
9797 display-buffer-reuse-window in last change.
9798
fa7c3228
CY
9799 * faces.el (link): Use a less saturated blue on light backgrounds.
9800
9801 * startup.el (fancy-startup-text, fancy-about-text)
9802 (fancy-startup-tail): Use font-lock faces, for background safety.
9803
c0a7f300
BN
98042011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
9805
b796c9b7
SM
9806 * emulation/viper-cmd.el (viper-change-state-to-vi):
9807 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 9808
4dc2a129
MR
98092011-07-09 Martin Rudalics <rudalics@gmx.at>
9810
9811 * window.el (display-buffer-default-specifiers): Remove.
9812 (display-buffer-macro-specifiers): Remove default specifiers.
9813 (display-buffer-alist): Default to nil.
b796c9b7 9814 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
9815 (display-buffer-pop-up-window): Allow splitting internal
9816 windows. Check whether a live window was created.
9817 (display-buffer-other-window-means-other-frame)
9818 (display-buffer-normalize-arguments): Rename to
9819 display-buffer-normalize-argument and rewrite. Set the
9820 other-window specifier.
9821 (display-buffer-normalize-special): New function.
9822 (display-buffer-normalize-options): Rename to
9823 display-buffer-normalize-default and rewrite.
9824 (display-buffer-normalize-options-inhibit): Remove.
9825 (display-buffer-normalize-specifiers): Rewrite.
9826 (display-buffer): Process other-window specifier and call
9827 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
9828 more faithfully.
b796c9b7 9829 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 9830 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
9831 (display-buffer-in-window, display-buffer-alist-set):
9832 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
9833 <tassilo@member.fsf.org>.
9834
2d43b8c9
LL
98352011-07-09 Leo Liu <sdl.web@gmail.com>
9836
9837 * register.el (insert-register): Restore accidental change on
9838 2011-06-26. (Bug#9028)
9839
7f9b7c53
GM
98402011-07-09 Glenn Morris <rgm@gnu.org>
9841
9842 * subr.el (remq): Handle the empty list. (Bug#9024)
9843
f042cfd8
AS
98442011-07-08 Andreas Schwab <schwab@linux-m68k.org>
9845
9846 * mail/sendmail.el (send-mail-function): No longer delay custom
9847 initialization.
9848 * custom.el (custom-initialize-delay): Doc fix.
9849
856b2f11
SM
98502011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
9851
9852 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
9853
afae1d68
MA
98542011-07-08 Michael Albinus <michael.albinus@gmx.de>
9855
9856 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
9857 human-friendly prompt.
9858
0757af94
SM
98592011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
9860
9861 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
9862 provided by a particular plugin.
9863
d760b731
LMI
98642011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
9865
9866 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
9867 save customizations (with "emacs -Q"), just set the variable
9868 instead of erroring out.
9869
9870 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
9871
cd79ce90
JL
98722011-07-08 Juri Linkov <juri@jurta.org>
9873
9874 * arc-mode.el (archive-zip-expunge, archive-zip-update)
9875 (archive-zip-update-case): Use 7z if found by `executable-find'.
9876 The order of searching the available programs is the same as in
9877 `archive-zip-extract' (bug#8968).
9878
14cc04aa
CY
98792011-07-07 Chong Yidong <cyd@stupidchicken.com>
9880
9881 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
9882 (menu-bar-options-menu): Tweak descriptions.
9883
0a1848ec
LMI
98842011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
9885
9886 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
9887 menu items into verb phrases (bug#1421). Also refill to fit under
9888 80 columns.
9889
f5bd0689
CY
98902011-07-07 Chong Yidong <cyd@stupidchicken.com>
9891
538e85c6
CY
9892 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
9893 (Info-read-node-name): Doc fix (Bug#1084).
9894
f5bd0689
CY
9895 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
9896 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
9897 (end-of-sexp, beginning-of-sexp)
9898 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
9899 (forward-symbol, forward-same-syntax, word-at-point)
9900 (sentence-at-point): Doc fix (Bug#1144).
9901
56ec5115
LMI
99022011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
9903
f3f8e37f
LMI
9904 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
9905 should cover it (bug#1281).
9906
0757af94 9907 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 9908
e9fce1ac 9909 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
9910 negotiation fails, then possibly try again with a non-encrypted
9911 connection (bug#9017).
9912
56ec5115
LMI
9913 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
9914 be used.
9915
c2f9aec8
RS
99162011-07-07 Richard Stallman <rms@gnu.org>
9917
9918 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
9919 property, and handle its changed format.
9920 Look for the correct line number.
9921 Use file's line contents (but not past first =) to find
9922 correct line in message.
9923
ef7b981d 99242011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
9925
9926 * international/characters.el (build-unicode-category-table):
9927 Delete it.
0757af94 9928 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 9929
0757af94 9930 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
9931 to src/chartab.c.
9932 (get-char-code-property): Call unicode-property-table-internal to
9933 load a file. Call get-unicode-property-internal where necessary.
9934 (put-char-code-property): Call unicode-property-table-internal to
9935 load a file. Call put-unicode-property-internal where necessary.
9936 put-unicode-property-internal where necessary.
0757af94
SM
9937 (char-code-property-description):
9938 Call unicode-property-table-internal to load a file.
c805dec0
KH
9939
9940 * international/charprop.el:
9941 * international/uni-bidi.el:
9942 * international/uni-category.el:
9943 * international/uni-combining.el:
9944 * international/uni-comment.el:
9945 * international/uni-decimal.el:
9946 * international/uni-decomposition.el:
9947 * international/uni-digit.el:
9948 * international/uni-lowercase.el:
9949 * international/uni-mirrored.el:
9950 * international/uni-name.el:
9951 * international/uni-numeric.el:
9952 * international/uni-old-name.el:
9953 * international/uni-titlecase.el:
9954 * international/uni-uppercase.el: Regenerate.
9955
9956 * loadup.el: Load international/charprop.el before
9957 international/characters.
9958
e14b388a
CY
99592011-07-07 Chong Yidong <cyd@stupidchicken.com>
9960
9961 * window.el (next-buffer, previous-buffer): Signal an error if
9962 called from a minibuffer window.
9963
9964 * bindings.el: Revert 2011-07-04 change.
9965
354cf0ba
RS
99662011-07-06 Richard Stallman <rms@gnu.org>
9967
9968 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
9969 (rmail-mime-insert-bulk, rmail-mime-insert-text):
9970 Treat markers like ints.
9971 (rmail-mime-entity): Doc fix.
9972
a48868a7
LMI
99732011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
9974
4906cd3d
LMI
9975 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
9976 defcustom again for backwards compatibility.
9977
e0457abe
LMI
9978 * simple.el (shell-command-on-region): Fill.
9979
d67f7e1f
LMI
9980 * dired-aux.el (dired-kill-line): Add a doc string.
9981
fe204702
LMI
9982 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
9983 to "\\sw\\|\\s_" (bug#358).
9984
a48868a7
LMI
9985 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
9986 (dired-unmark-backward): Ditto.
9987 (dired-flag-backup-files): Ditto.
9988
9989 * dired-x.el (dired-mark-sexp): Ditto.
9990
aa8a705c
RS
99912011-07-06 Richard Stallman <rms@gnu.org>
9992
9993 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
9994 (rmail-mime-entity): New arg TRUNCATED.
9995 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
9996 New functions.
9997 (rmail-mime-save): Warn if entity is truncated.
9998 (rmail-mime-toggle-hidden): Likewise, for showing.
9999 (rmail-mime-process-multipart): Record when an entity is truncated.
10000
a9a936b9
RS
10001 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
10002 if ENTITY is a string.
10003
1f2b92cb
LMI
100042011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10005
f4f73198 10006 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
10007 of faces when `M-C-x'-ing their definitions (bug#8378).
10008 Also clean up the code slightly.
f4f73198 10009
12b16734 10010 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 10011 because that makes the colors go away.
12b16734 10012
f0691d22
LMI
10013 * mail/sendmail.el (send-mail-function): Change the default to
10014 `sendmail-query-once'.
9e87df06 10015 (sendmail-query-once): Add an autoload cookie.
f0691d22 10016
1f2b92cb
LMI
10017 * net/network-stream.el (network-stream-open-starttls): Try using
10018 a plain connection even if the server offered STARTTLS, and we
10019 kinda wanted to use it, if Emacs doesn't have any STARTTLS
10020 capability. This should make smtpmail.el work in slightly more
10021 configurations.
10022
1cdd2a1b
MA
100232011-07-06 Michael Albinus <michael.albinus@gmx.de>
10024
10025 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
10026 New defun.
10027 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
10028
fbcc67e2
MM
100292011-07-06 Michael R. Mauger <mmaug@yahoo.com>
10030
10031 * progmodes/sql.el: Version 3.0
0757af94 10032 (sql-product-alist): Add product :completion-object,
fbcc67e2 10033 :completion-column, and :statement attributes.
0757af94 10034 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 10035 (sql-mode-syntax-table): Mark all punctuation.
0757af94 10036 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
10037 ansi keywords.
10038 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 10039 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
10040 (sql-oracle-show-reserved-words): New function for development.
10041 (sql-product-font-lock): Simplify for source code buffers.
10042 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
10043 New functions.
10044 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
10045 (sql-mode-map): Add statement movement functions.
10046 (sql-ansi-statement-starters, sql-oracle-statement-starters):
10047 New variable.
fbcc67e2
MM
10048 (sql-statement-regexp, sql-beginning-of-statement)
10049 (sql-end-of-statement, sql-signum): New functions.
0757af94 10050 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
10051 (sql-show-sqli-buffer): Bug fix.
10052 (sql-interactive-mode): Store connection data as buffer local.
0757af94 10053 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
10054 with sql-interactive-mode.
10055 (sql-save-connection): Save buffer local settings.
0757af94 10056 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
10057 (sql-product-interactive): Bug fix.
10058 (sql-preoutput-hold): New variable.
10059 (sql-interactive-remove-continuation-prompt): Bug fixes.
10060 (sql-debug-redirect): New variable.
10061 (sql-str-literal): New function.
10062 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 10063 Redesign.
fbcc67e2
MM
10064 (sql-oracle-save-settings, sql-oracle-restore-settings)
10065 (sql-oracle-list-all, sql-oracle-list-table): New functions.
10066 (sql-completion-object, sql-completion-column)
10067 (sql-completion-sqlbuf): New variables.
10068 (sql-build-completions-1, sql-build-completions)
10069 (sql-try-completion): New functions.
10070 (sql-read-table-name): Use them.
10071 (sql-contains-names): New buffer local variable.
10072 (sql-list-all, sql-list-table): Use it.
10073 (sql-oracle-completion-types): New variable.
10074 (sql-oracle-completion-object, sql-sqlite-completion-object)
10075 (sql-postgres-completion-object): New functions.
10076
d4eaeab1
GM
100772011-07-06 Glenn Morris <rgm@gnu.org>
10078
10079 * window.el (pop-to-buffer): Doc fix.
10080
322b7dab 100812011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
10082
10083 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
10084
322b7dab 100852011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 10086
322b7dab 10087 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 10088
322b7dab 10089 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 10090
605dd5bf
CY
100912011-07-05 Chong Yidong <cyd@stupidchicken.com>
10092
10093 * button.el (button): Inherit from link face. Suggested by Dan
10094 Nicolaescu.
10095
7dbfa719
SM
100962011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10097
3db614b0
SM
10098 * progmodes/gdb-mi.el: Fit in 80 columns.
10099 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
10100 switch-to-buffer.
10101
7dbfa719
SM
10102 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
10103 if imenu is simply not configured (bug#8941).
10104
919d884a
KM
101052011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
10106
10107 * allout.el (allout-post-undo-hook): New allout outline-change
10108 event hook to signal undo activity.
10109 (allout-post-command-business): Run allout-post-undo-hook if an
10110 undo just occurred.
7dbfa719
SM
10111 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
10112 * allout-widgets.el (allout-widgets-after-undo-function):
10113 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
10114 in the vicinity of an undo.
10115 (allout-widgets-mode): Include allout-widgets-after-undo-function
10116 on the new allout-post-undo-hook.
10117
450a0f09
SM
101182011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10119
10120 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
10121 Let define-derived-mode define it.
10122 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
10123 cycles of abbrev-table inheritance (bug#8998).
10124
2de69e00
RW
101252011-07-05 Roland Winkler <winkler@gnu.org>
10126
10127 * textmodes/bibtex.el: Add support for biblatex.
10128 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
10129 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
10130 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
10131 (bibtex-entry-alist, bibtex-field-alist): New variables.
10132 (bibtex-entry-field-alist): Obsolete alias for
10133 bibtex-BibTeX-entry-alist.
10134 (bibtex-entry-alist, bibtex-field-alist): New widgets.
10135 (bibtex-set-dialect): New command.
10136 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
10137 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
10138 Bind via bibtex-set-dialect.
2de69e00
RW
10139 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
10140 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
10141 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
10142 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
10143 Define via bibtex-set-dialect.
450a0f09
SM
10144 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
10145 Obey bibtex-no-opt-remove-re.
2de69e00
RW
10146 (bibtex-vec-push, bibtex-vec-incr): New functions.
10147 (bibtex-format-entry, bibtex-field-list)
10148 (bibtex-print-help-message, bibtex-validate)
10149 (bibtex-search-entries): Use new format of bibtex-entry-alist.
10150
2dcdbdd9
SM
101512011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10152
10153 * progmodes/compile.el (compilation-goto-locus):
10154 * net/tramp-cmds.el (tramp-append-tramp-buffers):
10155 * bs.el (bs-cycle-next, bs-cycle-previous):
10156 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
10157 * bindings.el (mode-line-other-buffer):
10158 * autoinsert.el (auto-insert):
10159 * arc-mode.el (archive-extract):
10160 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
10161
b27640fe
JB
101622011-07-05 Juanma Barranquero <lekktu@gmail.com>
10163
10164 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
10165 Fix check of `emacs-lock-unlockable-modes'.
10166 Coerce true values of `emacs-lock--try-unlocking' to t.
10167
53bbe3ad
JB
101682011-07-05 Juanma Barranquero <lekktu@gmail.com>
10169
10170 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
10171 * emacs-lock.el: New file.
10172
1d3cdbc7
JD
101732011-07-05 Julien Danjou <julien@danjou.info>
10174
10175 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
10176 than `boundp' to check if face is set.
10177
9173deec
JB
101782011-07-05 Juanma Barranquero <lekktu@gmail.com>
10179
10180 * register.el (registerv-make):
10181 * window.el (window-min-height): Fix typos in docstrings.
10182
869795d6
JD
101832011-07-05 Jan Djärv <jan.h.d@swipnet.se>
10184
9173deec 10185 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
10186 Update doc string.
10187
b768cdcd
JB
101882011-07-04 Juanma Barranquero <lekktu@gmail.com>
10189
10190 * server.el (server-execute): Catch quit and call
10191 `server-return-error' to pass the error back to emacsclient and
10192 close the connection (bug#8942).
10193
13aa217b
KM
101942011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
10195
10196 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
10197 insecure exception for current topic. Also note that auto-saves
10198 are handled differently.
10199
5d3385a0 10200 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13aa217b
KM
10201 State variables for tracking auto-save inhibition situation.
10202
10203 (allout-write-contents-hook-handler): Rename from
10204 'allout-write-file-hook-handler', and describe how it depends on
10205 write-contents-functions sensitivity to non-nil value to prevent
10206 file write.
10207
10208 (allout-auto-save-hook-handler): Remove. auto-save does not check
10209 this in individual buffers, only in the starting buffer, so this
10210 is not the right way for us to inhibit auto-save in a buffer
10211 according to its condition.
10212
10213 (allout-mode): Use new allout-write-contents-hook-handler, and
10214 only with write-contents-functions. Remove auto-save provisions -
10215 they're implemented elsewhere.
10216
10217 (allout-before-change-handler): If undo is in progress, note that
10218 for attention of allout-post-command-business.
10219
10220 (allout-post-command-business): If the command we're following was
10221 an undo, check for change in the status of encrypted items and
10222 adjust auto-save inhibitions accordingly.
10223
10224 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
10225 according to whether there are or aren't any plain-text topics
10226 pending encryption.
10227
2dcdbdd9 10228 (allout-inhibit-auto-save-info-for-decryption):
1154d12e
JB
10229 Adjust buffer-saved-size and some allout state to inhibit auto-saves
10230 if there are plain-text topics pending encryption.
13aa217b
KM
10231
10232 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
10233 buffer-saved-size and some allout state to not inhibit auto-saves
10234 if there are no longer any plain-text topics pending encryption.
10235
0757af94
SM
10236 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
10237 No longer provide for exemption of the current topic.
13aa217b 10238
ac89b32c
JL
102392011-07-04 Juri Linkov <juri@jurta.org>
10240
10241 Add 7z operations to delete and save changed members (bug#8968).
10242 * arc-mode.el (archive-7z-expunge, archive-7z-update):
10243 New defcustoms.
10244 (archive-7z-write-file-member): New function.
10245 (archive-7z-summarize): Fix the number of dashes in the
10246 listing output.
10247
8fa39615
SM
102482011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10249
10250 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
10251 (bug#8958).
10252
2f11b3f1
CY
102532011-07-04 Chong Yidong <cyd@stupidchicken.com>
10254
d66fef2b
CY
10255 * bindings.el: Ignore next-buffer and previous-buffer in
10256 minibuffer-local-map.
10257
2f11b3f1
CY
10258 * font-lock.el (font-lock-builtin-face): Change light background
10259 color to dark slate blue (Bug#6693).
10260
f932a347
WD
102612011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
10262
10263 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
10264
c8af70e1
SM
102652011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10266
10267 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
10268 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10269 Add switch-to-buffer.
10270
f158badc
LMI
102712011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10272
10273 * isearch.el (isearch-search-fun-function): Clarify further the
10274 meaning of the function returned.
10275
6d95bd46
MA
102762011-07-04 Michael Albinus <michael.albinus@gmx.de>
10277
10278 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
10279
10280 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
10281 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
10282 Use it.
10283 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
10284 `tramp-default-remote-path' does not exist.
10285 (tramp-send-command-and-read): New optional argument NOERROR.
10286 (tramp-open-connection-setup-interactive-shell)
10287 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
10288 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
10289 (tramp-process-sentinel): Flush also process' connection property.
10290 (tramp-sh-handle-start-file-process): Do not set process
10291 sentinel. It is done now ...
10292 (tramp-maybe-open-connection): ... here. (Bug#8929)
10293
909e6b67
MK
102942011-07-04 MON KEY <monkey@sandpframing.com>
10295
10296 * play/animate.el (animate-string): Doc fixes and allow changing
10297 the buffer name (bug#5417).
10298
102992011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10300
c8af70e1 10301 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 10302
f34755dc
PE
103032011-07-04 Paul Eggert <eggert@cs.ucla.edu>
10304
396cec72
PE
10305 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
10306 This is simpler and helps future-proof the code.
10307 (timer-until): Use time-subtract and float-time.
08235028 10308 (timer--time-less-p): Use time-less-p.
f34755dc 10309
56e6cc31
JB
103102011-07-04 Juanma Barranquero <lekktu@gmail.com>
10311
3abb79e5
JB
10312 * type-break.el (timep): Use the value of `float-time' to avoid a
10313 byte-compiler warning.
10314
56e6cc31
JB
10315 * server.el (server-eval-and-print): Return any result, even nil.
10316
7b9430b4
PE
103172011-07-03 Paul Eggert <eggert@cs.ucla.edu>
10318
10319 * type-break.el: Accept time formats that the builtins accept.
10320 (timep, type-break-time-difference): Accept any format that
10321 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
10322 This is simpler and helps future-proof the code.
10323 (type-break-time-difference): Round rather than ignoring
10324 subseconds components.
10325
3034e9e7
LMI
103262011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10327
10328 * info.el (Info-apropos-matches): Make non-interactive, since it
10329 doesn't seem to do anything useful as a command (bug#8829).
10330
1485f4c0
CY
103312011-07-03 Chong Yidong <cyd@stupidchicken.com>
10332
10333 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 10334 Move from faces.el.
1485f4c0
CY
10335 (frame-default-terminal-background): New function.
10336
10337 * custom.el (custom-push-theme): Don't record faces in `changed'
10338 theme; this doesn't work correctly for per-frame face settings.
10339 (disable-theme): Use face-set-after-frame-default to reset faces.
10340 (custom--frame-color-default): New function.
10341
9fa3dd45
LMI
103422011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10343
c8af70e1 10344 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
10345 (bug#8769).
10346
6cbbc20c
KR
103472011-03-29 Kevin Ryde <user42@zip.com.au>
10348
10349 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10350 `perl-Test2' extend to match possible "fail #N" rep count
10351 (bug#8377).
10352
c7f98048
LMI
103532011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10354
65676592
LMI
10355 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
10356 `smtpmail-via-smtp' now returns the error instead of nil.
10357
c7f98048
LMI
10358 * isearch.el (isearch-search-fun-function): Clarify the doc string
10359 (bug#8101).
10360
56e6cc31 103612011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
10362
10363 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
10364 unnecessary spaces (bug#8987).
10365
2b216704
LMI
103662011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10367
10368 * net/network-stream.el (open-network-stream): Use the
10369 :end-of-capability command thoughout.
10370
103712011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
10372
10373 * net/network-stream.el (open-network-stream): Add the
10374 :end-of-capability command parameter, used by pop3.el.
10375
36adf6ce
LMI
103762011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10377
1ca0da0e
LMI
10378 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
10379
fc00f69c
LMI
10380 * fringe.el (fringe-query-style): Remove redundant text " (type ?
10381 for list)" (bug#6475).
10382
28fd8759 10383 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 10384 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
10385 an error (bug#6297).
10386
0dd8b6da
LMI
10387 * man.el (Man-reference-regexp): Allow matching possible
10388 word-wrapped references (bug#6289).
10389
ce1438d6
LMI
10390 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
10391 for consistency with the other vc buffers (bug#6197).
10392 (vc-checkin): Ditto.
10393
10394 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
10395
36adf6ce
LMI
10396 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
10397
e83cc1f7
LMI
103982011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
10399
8a20ca4c
LMI
10400 * custom.el (defcustom): Clarify that :set is only used in the
10401 Customize user interface (bug#6089).
10402
83319045
LMI
10403 * progmodes/flymake.el (flymake-mode): If the buffer isn't
10404 associated with a file, refuse to run instead of erroring out
10405 (bug#6084).
10406
a8392169
LMI
10407 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
10408 the doc string, since it appears that using `fill-column' always
10409 controls the width (bug#7845).
10410
e83cc1f7
LMI
10411 * simple.el (shell-command-on-region): Say where the error output
10412 went if `shell-command-default-error-buffer' is set (bug#6857).
10413
e47ca23b
KM
104142011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
10415
10416 * allout.el (allout-yank-processing): Adjust cursor position for
10417 backwards-deleted space.
10418
10419 (allout-rebullet-heading): Register changes with
10420 allout-exposure-changed-hook, so the modified topic is properly
10421 decorated.
10422
5cf56143
LMI
104232011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
10424
08549772
LMI
10425 * minibuffer.el (completion-in-region): Document PREDICATE
10426 (bug#7136).
10427
48e96771
LMI
10428 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
10429 of keyword/argument pairs (bug#6904).
10430
c8af70e1
SM
10431 * replace.el (multi-occur):
10432 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 10433
e17d05e2
LMI
104342011-07-02 Drew Adams <drew.adams@oracle.com>
10435
10436 * dired.el (dired-mark-if): Make the message about whether it's
10437 marking or unmarking clearer (bug#8523).
10438
063b0e45
LMI
104392011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
10440
10441 * disp-table.el (display-table-print-array): New function.
10442 (describe-display-table): Use it to print the vectors more pretty
10443 (Bug#8859).
10444
28545e04
MR
104452011-07-02 Martin Rudalics <rudalics@gmx.at>
10446
10447 * window.el (window-state-get-1): Don't assign clone numbers.
10448 Add clone-of item to list of window parameters.
10449 (window-state-put-2): Don't process clone numbers.
10450 (display-buffer-alist): Fix doc-string.
10451
3349e122
SM
104522011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
10453
10454 * subr.el (remq): Don't allocate if it's not needed.
10455 (keymap--menu-item-binding, keymap--menu-item-with-binding)
10456 (keymap--merge-bindings): New functions.
10457 (keymap-canonicalize): Use them to refine the canonicalization.
10458 * minibuffer.el (minibuffer-local-completion-map)
10459 (minibuffer-local-must-match-map): Move initialization from C.
10460 (minibuffer-local-filename-completion-map): Move initialization from C;
10461 don't inherit from anything here.
10462 (minibuffer-local-filename-must-match-map): Make obsolete.
10463 (completing-read-default): Use make-composed-keymap to combine
10464 minibuffer-local-filename-completion-map with either
10465 minibuffer-local-must-match-map or
10466 minibuffer-local-filename-completion-map.
10467
d224ac83
GM
104682011-07-01 Glenn Morris <rgm@gnu.org>
10469
3de63bf8
GM
10470 * type-break.el (type-break-time-sum): Use dolist.
10471
d224ac83
GM
10472 * textmodes/flyspell.el (flyspell-word-search-backward):
10473 Replace CL function.
10474
1a1e3f32
SM
104752011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
10476
fe3f64d5
SM
10477 * mouse.el (mouse--strip-first-event): New function.
10478 (function-key-map): Use it to map fringe clicks to normal clicks
10479 by default.
10480
eb604e34
SM
10481 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
10482 (vc-bzr-revision-completion-table): Add support for annotate and date.
10483
1a1e3f32
SM
10484 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
10485 inherit from parent.
10486
5bd35902
LMI
104872011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
10488
ace6c69c 10489 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 10490 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 10491
191e2bed
LMI
10492 * dired.el (dired-mode): Fix up the doc string as suggested by
10493 Drew Adams (bug#8817).
10494
5bd35902
LMI
10495 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
10496 cookie, since the manual says that it should be possible to add
10497 this function to `find-file-hook' (bug#8709).
10498
eee8207a
TZ
104992011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
10500
10501 * progmodes/cfengine.el: Moved all cfengine3.el functionality
10502 here. Noted Ted Zlatanov as the maintainer.
10503 (cfengine-common-settings, cfengine-common-syntax): New functions
10504 to set up common things between `cfengine-mode' and
10505 `cfengine3-mode'.
10506 (cfengine3-mode): New mode.
10507 (cfengine3-defuns cfengine3-defuns-regex
10508 (cfengine3-class-selector-regex cfengine3-category-regex)
10509 (cfengine3-vartypes cfengine3-font-lock-keywords)
10510 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 10511 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 10512
36b148cf
MA
105132011-07-01 Michael Albinus <michael.albinus@gmx.de>
10514
10515 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
10516
10517 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
10518
0bf4ba9a
MR
105192011-07-01 Martin Rudalics <rudalics@gmx.at>
10520
10521 * window.el (same-window-buffer-names, same-window-regexps)
10522 (same-window-p, special-display-frame-alist)
10523 (special-display-popup-frame, special-display-function)
10524 (special-display-buffer-names, special-display-regexps)
10525 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
10526 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
10527 (split-window-preferred-function, split-height-threshold)
10528 (split-width-threshold, even-window-heights)
10529 (display-buffer-mark-dedicated, window-splittable-p)
10530 (split-window-sensibly, window-safely-shrinkable-p):
10531 Un-obsolete.
10532 (display-buffer): Don't spread args with function specifier
10533 because special-display-popup-frame won't like it.
10534
35837f51
PE
105352011-07-01 Paul Eggert <eggert@cs.ucla.edu>
10536
d0672f86
PE
10537 Time-stamp simplifications and fixes.
10538 These improve accuracy slightly, and future-proof the code
10539 against some potential changes to current-time format.
10540
b9444d97
PE
10541 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
10542 by using time-since and float-time.
10543
0ef923dc
PE
10544 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
10545 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
10546 + NNN microseconds".
10547
2f81380d
PE
10548 * type-break.el (type-break-time-sum): Rewrite using time-add.
10549
845b5c3e
PE
10550 * play/hanoi.el (hanoi-current-time-float): Remove.
10551 All uses replaced by float-time.
10552
ee6f1be0
PE
10553 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
10554 This yields a more-accurate answer.
10555 (rng-time-to-float): Remove; no longer needed.
10556
fe955043
PE
10557 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
10558
5777162a
PE
10559 * calendar/timeclock.el (timeclock-seconds-to-time):
10560 Defalias to seconds-to-time, since they're the same thing.
10561
3103f8b6 10562 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 10563 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
10564 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
10565
0e61a35f
SM
105662011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
10567
10568 * window.el (bury-buffer): Don't iconify the only frame.
10569 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
10570 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
10571
ddd63a1e
CY
105722011-07-01 Chong Yidong <cyd@stupidchicken.com>
10573
0e61a35f
SM
10574 * eshell/em-smart.el (eshell-smart-display-navigate-list):
10575 Add mouse-yank-primary.
ddd63a1e 10576
055f4923
TZ
105772011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
10578
10579 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
10580
6a2fb145
SM
105812011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
10582
10583 * emacs-lisp/find-func.el (find-library--load-name): New fun.
10584 (find-library-name): Use it to find relative load names when provided
10585 absolute file name (bug#8803).
10586
fd4983f2
LMI
105872011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
10588
887d14ad
LMI
10589 * textmodes/flyspell.el (flyspell-word): Consider words that
10590 differ only in case as potential doublons (bug#5687).
10591
c53dc7fc
LMI
10592 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
10593 Remove two rather uninteresting debugging-like messages to make
10594 debbugs.el more silent.
10595
fd4983f2
LMI
10596 * comint.el (comint-password-prompt-regexp): Accept "Response" as
10597 a password-like phrase.
10598
7a71b18d 105992011-06-30 Masatake YAMATO <yamato@redhat.com>
b14c0c55
AM
10600
10601 * progmodes/cc-guess.el: New file.
10602
6a2fb145 10603 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
10604
10605 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
10606 derived from `c-basic-common-init'.
10607
10608 * progmodes/cc-mode.el (top-level): Require cc-guess.
10609 (c-basic-common-init): Use `cc-choose-style-for-mode'.
10610
1fa280a3
LM
106112011-06-30 Lawrence Mitchell <wence@gmx.li>
10612
10613 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
10614
e6597158
AM
106152011-06-30 Alan Mackenzie <acm@muc.de>
10616
1fa280a3
LM
10617 * progmodes/cc-engine.el (c-guess-continued-construct):
10618 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
10619 lock is disabled. Name this case as "CASE G".
10620
68ba37fb
KM
106212011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
10622
10623 * allout.el (allout-yank-processing): Fix injection of extra space
10624 between bullet and non-whitespace character in first topic when
10625 pasting, ensuring that the actual spacing in the pasted topic
10626 following the bullet char is preserved. This extra space was
10627 causing pasted encrypted topics to get a decrypted status even
10628 when the content was actually still encrypted. Now the decryption
10629 status from before the paste is preserved.
10630
10631 (allout-flag-region): Set all allout overlays so they evaporate
10632 when reduced to zero length (evanescent), to prevent overlay
10633 leakage.
10634
887a0b34
GM
106352011-06-30 Glenn Morris <rgm@gnu.org>
10636
94b9acce
GM
10637 * w32-fns.el (w32-charset-info-alist): Declare.
10638
1d9b46d4
GM
10639 * find-dired.el (find-grep-options): Simplify.
10640
cc232200
GM
10641 * term/ns-win.el (ns-set-resource): Declare.
10642
28e77c46
GM
10643 * ses.el (row, col): Declare dynamic variables honestly.
10644
887a0b34
GM
10645 * textmodes/reftex-parse.el (index-tags): Declare.
10646
658d8eb8
CY
106472011-06-30 Chong Yidong <cyd@stupidchicken.com>
10648
10649 * cus-edit.el (customize-push-and-save): New function.
10650
10651 * files.el (hack-local-variables-confirm): Use it.
10652
1fa280a3
LM
10653 * custom.el (load-theme): New arg NO-CONFIRM.
10654 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
10655 (custom-enabled-themes): Doc fix.
10656
10657 * cus-theme.el (customize-create-theme)
10658 (custom-theme-merge-theme): Callers to load-theme changed.
10659
bb617717
LMI
106602011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
10661
d61bdd5d
LMI
10662 * thingatpt.el (thing-at-point-short-url-regexp): Require that
10663 short URLs have at least one dot in them (bug #7614).
10664
bb617717
LMI
10665 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
10666 nil, because using a pty is apparently too slow (bug #895).
10667
2f31f37a
LMI
106682011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
10669
10670 * mail/sendmail.el (sendmail-query-once): New function.
10671 (sendmail-query-once-function): New variable.
10672
3076b24e
GM
106732011-06-29 Glenn Morris <rgm@gnu.org>
10674
faf2a174
GM
10675 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
10676
3076b24e
GM
10677 * ses.el (top-level): Require cl when compiling.
10678 (ses-set-localvars): Fix error statement.
10679 Call it at compile time to silence a storm of warnings.
10680
5386012d
MR
106812011-06-29 Martin Rudalics <rudalics@gmx.at>
10682
10683 * window.el (normalize-live-buffer): Rename to
10684 window-normalize-buffer.
10685 (normalize-live-frame): Rename to window-normalize-frame.
10686 (normalize-any-window): Rename to window-normalize-any-window.
10687 (normalize-live-window): Rename to window-normalize-live-window.
10688 (make-window-atom): Rename to window-make-atom.
10689 (window-resize-reset): Rename to window--resize-reset.
10690 (window-resize-reset-1): Rename to window--resize-reset-1.
10691 (resize-mini-window): Rename to window--resize-mini-window.
10692 (resize-subwindows-skip-p): Rename to
10693 window--resize-subwindows-skip-p.
10694 (resize-subwindows-normal): Rename to
10695 window--resize-subwindows-normal.
10696 (resize-subwindows): Rename to window--resize-subwindows.
10697 (resize-other-windows): Rename to window--resize-siblings.
10698 (resize-this-window): Rename to window--resize-this-window.
10699 (resize-root-window): Rename to window--resize-root-window.
10700 (resize-root-window-vertically): Rename to
10701 window--resize-root-window-vertically.
10702 (normalize-buffer-to-display): Rename to
10703 window-normalize-buffer-to-display.
10704 (normalize-buffer-to-switch-to): Rename to
10705 window-normalize-buffer-to-switch-to.
10706 Correspondingly update all callers of the functions listed
10707 above.
10708 (display-buffer-alist, display-buffer-normalize-arguments)
10709 (display-buffer-normalize-options, display-buffer)
10710 (display-buffer-alist-set): Use "function" instead of
10711 "fun-with-args".
10712
1176868d
CY
107132011-06-28 Chong Yidong <cyd@stupidchicken.com>
10714
10715 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
10716 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
10717 debbugs.gnu.org. Mention acknowledgment email.
10718
20a7a65f
LMI
107192011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
10720
10721 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
10722 buffer multibyteness, since it shouldn't matter.
10723
5f45cca5
MR
107242011-06-28 Martin Rudalics <rudalics@gmx.at>
10725
10726 * window.el (display-buffer-in-side-window): Handle dedicated
10727 windows as in display-buffer-reuse-window.
10728 (display-buffer-normalize-alist): Use value of override
10729 specifier.
10730 (display-buffer-normalize-specifiers): Use value of
10731 other-window-means-other-frame specifier.
10732 (display-buffer-alist): Rewrite some texts in widgets.
10733 (display-buffer): Spread arguments when calling function
10734 specified by fun-with-args.
10735
ad85fe1f
DD
107362011-06-28 Deniz Dogan <deniz@dogan.se>
10737
1fa280a3
LM
10738 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
10739 Unnest `let'.
da68c4c8 10740
ad85fe1f
DD
10741 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
10742 selectors (Bug#5732).
ec49bd31 10743 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 10744
a08cc025
JA
107452011-06-27 Jari Aalto <jari.aalto@cante.net>
10746
10747 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
10748 (eshell-ls-date-format): New defcustom.
10749 (eshell-ls-file): Use it.
10750
e2b551c5
SM
107512011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
10752
10753 * help-fns.el (describe-variable): Fix message for terminal-local vars.
10754
8982b231
KY
107552011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
10756
10757 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
10758 (ange-ftp-make-tmp-name): New arg.
10759 (ange-ftp-file-local-copy): Use it.
10760
36c9fa27
J
107612011-06-27 Jambunathan K <kjambunathan@gmail.com>
10762
10763 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
10764 no-conversion (Bug#8870).
10765
d68443dc
MR
107662011-06-27 Martin Rudalics <rudalics@gmx.at>
10767
10768 * window.el (window-right, window-left, window-child)
10769 (window-child-count, window-last-child)
10770 (window-iso-combination-p, walk-window-tree-1)
10771 (window-atom-check-1, window-tree-1, delete-window)
10772 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
10773 new naming conventions - window-vchild, window-hchild,
10774 window-next and window-prev are now called window-top-child,
10775 window-left-child, window-next-sibling and window-prev-sibling
10776 respectively.
d615d6d2
MR
10777 (resize-window-reset): Rename to window-resize-reset.
10778 (resize-window-reset-1): Rename to window-resize-reset-1.
10779 (resize-window): Rename to window-resize.
10780 (window-min-height, window-min-width)
10781 (resize-mini-window, resize-this-window, resize-root-window)
10782 (resize-root-window-vertically, adjust-window-trailing-edge)
10783 (enlarge-window, shrink-window, maximize-window)
10784 (minimize-window, delete-window, quit-restore-window)
10785 (split-window, balance-windows, balance-windows-area-adjust)
10786 (balance-windows-area, window-state-put-2)
10787 (display-buffer-even-window-sizes, display-buffer-set-height)
10788 (display-buffer-set-width, set-window-text-height)
10789 (fit-window-to-buffer): Rename all "resize-window" prefixed
10790 calls to use the "window-resize" prefix convention.
10791 (display-buffer-alist): Fix symbol for label specifier.
10792 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
10793 corresponding specifier.
10794 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 10795
b6458526
VB
107962011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
10797
10798 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
10799 convention.
10800 (ses-call-printer): Does not pass an empty string to formatter when the
10801 cell is empty to keep from barking printer Calc math-format-value.
10802
d31fd9ac
RS
108032011-06-27 Richard Stallman <rms@gnu.org>
10804
43d5bf84
RS
10805 * battery.el (battery-mode-line-limit): New variable.
10806 (battery-update): Handle it.
10807
d31fd9ac
RS
10808 * mail/rmailmm.el (rmail-mime-process-multipart):
10809 Handle truncated messages.
10810
819a6054
GM
108112011-06-27 Glenn Morris <rgm@gnu.org>
10812
10813 * progmodes/flymake.el (flymake-err-line-patterns):
10814 Allow for column numbers in the ant/javac pattern. (Bug#8866)
10815
cedc73f2
VB
108162011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
10817
819a6054 10818 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
10819 (ses--clean-!, ses--clean-_): New functions.
10820 (ses-range): Add configurability of readout order, and conversion
10821 to Calc vector.
10822
5e5d49b6
VB
10823 * ses.el (ses-repair-cell-reference-all): New function.
10824 (ses-cell-symbol): Set macro as safe, so that it can be used in
10825 formulas.
10826
56e6cc31 10827 * ses.el: Update cycle detection algorithm.
90ca8b49 10828 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 10829 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
10830 (ses-set-localvars): New function.
10831 (ses-make-cell): Add property-list as a cell element.
10832 (ses-cell-property-get-fun, ses-cell-property-get)
10833 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
10834 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
10835 New functions.
90ca8b49
VB
10836 (ses-cell-property-set, ses-cell-property-pop)
10837 (ses-cell-property-get-handle): New macro.
10838 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
10839 New aliases, used for code readability.
10840 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
10841 cycle detection.
10842 (ses-self-reference-early-detection): New defcustom.
fac916bf 10843 (ses-formula-references): Robustify against self-referring cells.
90ca8b49
VB
10844 (ses-mode): Use ses-set-localvars.
10845 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
10846 before lauching the update processing.
10847 (ses-initialize-Dijkstra-attempt): New function.
10848 (ses-recalculate-cell): Update for cycle detection based on
10849 Dijkstra algorithm.
10850
2bb63e81
VB
10851 * ses.el: Fix commenting and indenting convention.
10852
c9d29fb8
SM
108532011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
10854
10855 * bs.el (bs-cycle-next): Complete last change.
10856
d8e4b68b
JB
108572011-06-27 Drew Adams <drew.adams@oracle.com>
10858
10859 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
10860
40098786
LMI
108612011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
10862
c9d29fb8
SM
10863 * net/network-stream.el (network-stream-open-starttls):
10864 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
10865 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
10866
40098786
LMI
10867 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
10868 to binary to possibly avoid line encoding issues on Windows (among
10869 other things).
10870
468d09d4
LMI
108712011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
10872
10873 * net/network-stream.el (open-network-stream): Return an :error
10874 saying what the problem was, if possible.
10875
10876 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
10877 server.
10878
10879 * net/network-stream.el (network-stream-open-starttls): If we
10880 wanted to use STARTTLS, and the server offered it, but we weren't
10881 able to because we had no STARTTLS support, then close the connection.
10882 (open-network-stream): Return an :error element, if present.
10883
16f07dd7
CY
108842011-06-26 Chong Yidong <cyd@stupidchicken.com>
10885
88821ca0
CY
10886 * hl-line.el (hl-line-sticky-flag): Doc fix.
10887 (global-hl-line-sticky-flag): New option (Bug#8323).
10888 (global-hl-line-highlight): Obey it.
10889
16f07dd7
CY
10890 * vc/vc.el (vc-revert-show-diff): Default to t.
10891
6b5ccddf
KM
108922011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
10893
c9d29fb8
SM
10894 * allout-widgets.el (allout-widgets-post-command-business):
10895 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
10896 undecorated when an isearch is continued past, and isearch
10897 automatically collapses them. This leads to "widget leaks", where
10898 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
10899 hidden widgets can slow down cursor travel, substantially.
10900 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
10901 so we're doing without this nicety.
10902
10903 (allout-widgets-tally-string): Don't try to do a hash-table-count
10904 of allout-widgets-tally when it's nil. This eliminates spurious "Error
10905 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
10906 *Messages* when allout-widgets-maintain-tally is t.
10907
355f2e07
MR
109082011-06-26 Martin Rudalics <rudalics@gmx.at>
10909
10910 * window.el (display-buffer-normalize-argument): Rename to
10911 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
10912 LABEL argument. Respect special-display-function when popping up
10913 a new frame. Fix code searching for a window showing the buffer
10914 on another frame.
c9d29fb8
SM
10915 (display-buffer-normalize-specifiers):
10916 Call display-buffer-normalize-arguments.
355f2e07
MR
10917 (display-buffer-in-window): Don't undedicate the window if its
10918 buffer remains the same.
10919 Reported by Drew Adams <drew.adams@oracle.com>.
10920 (display-buffer-alist): Add choice for same-window macro
10921 specfier.
10922 (display-buffer): Mention special meaning of LABEL argument in
10923 doc-string. Fix quoting. Don't pop up a new frame even as
10924 fallback.
10925
7ca8fc42
JB
109262011-06-26 Juanma Barranquero <lekktu@gmail.com>
10927
10928 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
10929 avoid deleting the current window in some cases (bug#8911).
10930
bc312254
AS
109312011-06-26 Andreas Schwab <schwab@linux-m68k.org>
10932
10933 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
10934 (Bug#8934)
10935
2db18f3f
LMI
109362011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
10937
c9d29fb8
SM
10938 * net/network-stream.el (network-stream-open-starttls):
10939 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
10940 (network-stream-open-tls): Ditto.
10941
6302e0d3
LL
109422011-06-26 Leo Liu <sdl.web@gmail.com>
10943
10944 * register.el (registerv): New struct.
10945 (registerv-make): New function.
c9d29fb8
SM
10946 (jump-to-register, describe-register-1, insert-register):
10947 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
10948 struct. (Bug#8415)
10949
5fdd4046
CY
109502011-06-26 Chong Yidong <cyd@stupidchicken.com>
10951
2afef60a
CY
10952 * vc/vc.el (vc-revert-show-diff): New defcustom.
10953 (vc-diff-internal): New arg specifying diff buffer.
10954 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
10955 reuse an existing *vc-diff* buffer (Bug#8927).
10956
5fdd4046
CY
10957 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
10958
e93db24a
GM
109592011-06-26 Glenn Morris <rgm@gnu.org>
10960
10961 * progmodes/f90.el (f90-critical-indent): New option.
10962 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
10963 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
10964 (f90-mode): Doc fix.
10965 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
10966 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
10967 (f90-beginning-of-block, f90-next-block, f90-indent-region)
10968 (f90-match-end): Handle block, critical.
10969
eefff499
GM
109702011-06-25 Glenn Morris <rgm@gnu.org>
10971
f6ba4cc9
GM
10972 * calendar/diary-lib.el (diary-included-files): Doc fix.
10973 (diary-include-files): New function, extracted from
10974 diary-include-other-diary-files and diary-mark-included-diary-files.
10975 (diary-include-other-diary-files, diary-mark-included-diary-files):
10976 Just call diary-include-files.
10977 (diary-mark-entries): Reset diary-included-files on first call.
10978
16712304
GM
10979 * calendar/diary-lib.el (diary-mark-entries)
10980 (diary-mark-included-diary-files):
10981 Visit included diary-files in temp buffers.
10982
5d8e0d43
GM
10983 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
10984 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
10985 (f90-start-block-re, f90-imenu-generic-expression)
10986 (f90-looking-at-program-block-start, f90-no-block-limit):
10987 Add support for submodules.
10988
ccf7a5d5
GM
10989 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
10990 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 10991
11fdef7d 109922011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
10993
10994 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
10995 buffer-file-type before setting its value, to avoid disastrous
eefff499 10996 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 10997
74f53697
JB
109982011-06-25 Juanma Barranquero <lekktu@gmail.com>
10999
11000 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
11001
11002 * ses.el (ses-unload-function):
11003 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
11004
11005 * proced.el (proced-unload-function):
11006 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
11007
18a4ce5e
AR
110082011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
11009
11010 * server.el (server-create-window-system-frame): Add parameters arg.
11011 (server-process-filter): Doc fix. Handle frame-parameters.
11012
519d22cc
JB
110132011-06-25 Juanma Barranquero <lekktu@gmail.com>
11014
11015 Fix bug#8730, bug#8781.
11016
11017 * loadhist.el (unload--set-major-mode): New function.
11018 (unload-feature): Use it.
11019
11020 * progmodes/python.el (python-after-info-look): Add autoload cookie.
11021 (python-unload-function): New function.
11022
c206f5b0
SM
110232011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11024
11025 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
11026
f9ad64f3
GS
110272011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
11028
11029 * net/browse-url.el (browse-url-firefox-program): Add icecat to
11030 the candidates list.
11031
7d0da90e
JB
110322011-06-24 Juanma Barranquero <lekktu@gmail.com>
11033
11034 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
11035
14b4e83d
RS
110362011-06-23 Richard Stallman <rms@gnu.org>
11037
11038 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
11039 (rmail-variables): Set next-error-move-function.
11040 (rmail-what-message): Take argument POS.
11041 (rmail-next-error-move): New function.
11042
273d2baf
SM
110432011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
11044
11045 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
11046 messages for adjacent non-terminals.
11047
56c2cc9a
RS
110482011-06-23 Richard Stallman <rms@gnu.org>
11049
11050 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 11051 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
11052 (rmail-start-mail): Don't specify use of rmail-mail-return;
11053 that's done by mail-bury now.
11054 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 11055
d59eb518
MA
110562011-06-23 Michael Albinus <michael.albinus@gmx.de>
11057
11058 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
11059 SIZE is a number.
11060
02cfc6d6
MR
110612011-06-23 Martin Rudalics <rudalics@gmx.at>
11062
11063 * window.el (get-lru-window, get-mru-window)
11064 (get-largest-window): Never return a minibuffer window.
11065 (display-buffer-pop-up-window): Fix a bug that could lead to
11066 reusing the minibuffer window.
11067 (display-buffer): Pass original specifier argument to
11068 display-buffer-function instead of the normalized one.
11069 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
11070
4e323265
LL
110712011-06-22 Leo Liu <sdl.web@gmail.com>
11072
11073 * minibuffer.el (completing-read-function)
11074 (completing-read-default): Move from minibuf.c
11075
7a70468f
RS
110762011-06-22 Richard Stallman <rms@gnu.org>
11077
50718fc2
RS
11078 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
11079 to Rmail even if not started by a special Rmail command.
11080
7a70468f
RS
11081 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
11082 Copy the buffer currently showing just one message.
11083
297dde5a
RW
110842011-06-22 Roland Winkler <winkler@gnu.org>
11085
11086 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
11087 (bibtex-clean-entry): First delete the old key so that a
11088 customized algorithm for generating the new key does not get
11089 confused by the old key.
11090 (bibtex-url): Obey regexp of first step.
11091 (bibtex-search-entries): Do not use add-to-list with local
11092 list-var.
11093
97bb1093
LMI
110942011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
11095
11096 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
11097 stored a user name, then query for the password first, instead of
11098 waiting for SMTP to give an error message and the trying again.
11099
1c0f1a19
JD
111002011-06-22 Lawrence Mitchell <wence@gmx.li>
11101
11102 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
11103 BUFFER in call-process.
11104
396f7c9d
LMI
111052011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
11106
11107 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
11108 QUIT twice.
ddb7ffee
LMI
11109 (smtpmail-try-auth-methods): Require user name and password from
11110 auth-source.
396f7c9d 11111
8998d1b3
MR
111122011-06-22 Martin Rudalics <rudalics@gmx.at>
11113
11114 * window.el (display-buffer-default-specifiers)
11115 (display-buffer-alist): Remove entries for pop-up-frame-alist.
11116 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 11117 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
11118
11119 * frame.el (pop-up-frame-alist, pop-up-frame-function)
11120 (special-display-frame-alist, special-display-popup-frame):
11121 Remove duplicate declarations. These are now in window.el.
11122
4ea31e07
LMI
111232011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11124
c9d29fb8
SM
11125 * mail/smtpmail.el (smtpmail-via-smtp):
11126 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
11127 server supports it. SMTP servers that support STARTTLS commonly
11128 require it.
11129
11130 * net/network-stream.el (network-stream-open-starttls): Support
11131 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 11132 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 11133
95f41d9a
LMI
11134 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
11135 upgrades with `open-network-stream', and rely solely on
11136 auth-source for all credentials. Big changes throughout the file,
11137 but in particular:
c9d29fb8
SM
11138 (smtpmail-auth-credentials): Remove.
11139 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
11140 (smtpmail-via-smtp): Check for servers saying they want AUTH after
11141 MAIL FROM, too.
95f41d9a 11142
c9d29fb8
SM
11143 * net/network-stream.el (network-stream-open-starttls):
11144 Provide support for client certificates both for external and built-in
4ea31e07
LMI
11145 STARTTLS.
11146 (auth-source): Require.
11147 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
11148 (network-stream-certificate): Change cert-cert to cert and
11149 cert-key to key.
4ea31e07 11150
065ec2c7
MA
111512011-06-21 Michael Albinus <michael.albinus@gmx.de>
11152
11153 * net/tramp-cache.el (top): Don't load the persistency file when
11154 "emacs -Q" has been called.
11155
cd93b359
DR
111562011-06-21 Tim Harper <timcharper@gmail.com>
11157
d8e4b68b
JB
11158 * term/ns-win.el (ns-initialize-window-system):
11159 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
11160 resource to NO as it is not yet supported by the NS port.
11161
ae9c0411
JB
111622011-06-21 Juanma Barranquero <lekktu@gmail.com>
11163
11164 * misc.el (list-dynamic-libraries--refresh): Compute header here...
11165 (list-dynamic-libraries): ...not here.
11166
7f3f739f
LL
111672011-06-21 Leo Liu <sdl.web@gmail.com>
11168
11169 * subr.el (sha1): Implement sha1 using secure-hash.
11170
327c8fb1
MR
111712011-06-21 Martin Rudalics <rudalics@gmx.at>
11172
11173 * window.el (display-buffer-alist): In default value do not
11174 enforce searching a window on any but the selected frame.
11175 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
11176 (display-buffer-select-window): Remove function.
11177 (display-buffer-in-window): When a window on another frame gets
11178 reused, do not select it any more but just raise its frame if
11179 necessary (Bug#8851) and (Bug#8856).
11180 (display-buffer-normalize-options): Handle pop-up-frames related
11181 options more faithfully.
11182 (pop-to-buffer): Don't rely on `display-buffer' selecting the
11183 window if it is on another frame.
c9d29fb8
SM
11184 (display-buffer-alist, display-buffer-default-specifiers):
11185 Don't make new frame unsplittable by default.
9e9de014
MR
11186 (display-buffer-normalize-argument): Fix doc-string typo and use
11187 'same-frame-other-window instead of 'other-window when associating
11188 with display-buffer-macro-specifiers.
327c8fb1 11189
7cf3f556
VB
111902011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
11191
11192 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
11193 New functions.
11194 (5x5-mode-map, 5x5-mode-menu): Bind them.
11195 (5x5-draw-grid): Tweak the solver's rendering.
11196
60a406cf
SM
111972011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11198
11199 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
11200 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
11201
d8e4b68b 112022011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
11203
11204 * menu-bar.el: Use function variable instead of switch-to-buffer.
11205 (menu-bar-select-buffer-function): New variable.
60a406cf 11206 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 11207
478d6f95
SM
112082011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11209
11210 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
11211 variable's status.
11212
ca530739
JD
112132011-06-20 Jan Djärv <jan.h.d@swipnet.se>
11214
11215 * x-dnd.el (x-dnd-version-from-flags)
11216 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
11217 and long as number (Bug#8899).
11218 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
11219
bcd70d97
SM
112202011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11221
60a406cf 11222 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
11223 (completion-try-completion, completion-all-completions): Compute the
11224 metadata argument if it's missing; make it optional (bug#8795).
11225
60a406cf 11226 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
11227 (widget-complete): Use new :completion-function property.
11228 (widget-completions-at-point): New function.
11229 (default): Use :completion-function instead of :complete.
60a406cf
SM
11230 (widget-default-completions): Rename from widget-default-complete;
11231 Rewrite.
bcd70d97
SM
11232 (widget-string-complete, widget-file-complete, widget-color-complete):
11233 Remove functions.
11234 (file, symbol, function, variable, coding-system, color):
11235 * international/mule-cmds.el (default-input-method, charset)
11236 (language-info-custom-alist):
11237 * cus-edit.el (face): Use new property :completions.
11238
11239 * progmodes/pascal.el (pascal-completions-at-point): New function.
11240 (pascal-mode): Use it.
11241 (pascal-mode-map): Use completion-at-point.
11242 (pascal-toggle-completions): Make obsolete.
11243 (pascal-complete-word, pascal-show-completions):
11244 * progmodes/octave-mod.el (octave-complete-symbol):
11245 Redefine as obsolete alias.
11246 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
11247 Signal absence of completion info for old Octave,
11248 (inferior-octave-complete): Redefine as obsolete alias.
11249 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
11250 (meta-completions-at-point): Rename from meta-complete-symbol and
11251 adapt it for use on completion-at-point-functions.
11252 (meta-common-mode): Use it.
11253 (meta-looking-at-backward, meta-match-buffer): Remove.
11254 (meta-complete-symbol): Redefine as obsolete alias.
11255 (meta-common-mode-map): Use completion-at-point.
11256 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
11257 (makefile-mode-map): Use completion-at-point.
11258 (makefile-completions-at-point): Rename from makefile-complete and
11259 adapt it for use on completion-at-point-functions.
11260 (makefile-mode): Use it.
11261 (makefile-complete): Redefine as obsolete alias.
11262
aebf69c8
DD
112632011-06-20 Deniz Dogan <deniz@dogan.se>
11264
11265 * net/rcirc.el: Delete trailing whitespaces once and for all.
11266
bfbbb27d
DC
112672011-06-20 Daniel Colascione <dan.colascione@gmail.com>
11268
11269 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
11270
d264a46b
CY
112712011-06-19 Chong Yidong <cyd@stupidchicken.com>
11272
4ca009e5
CY
11273 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
11274
d264a46b
CY
11275 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
11276
fbf5b3ce
MR
112772011-06-19 Martin Rudalics <rudalics@gmx.at>
11278
11279 * window.el (display-buffer-other-window-means-other-frame):
11280 Call display-buffer-normalize-alist.
11281 (display-buffer-normalize-specifiers-1): Rename to
11282 display-buffer-normalize-argument. New argument other-frame.
11283 Rewrite.
11284 (display-buffer-normalize-specifiers-2): Rename to
11285 display-buffer-normalize-options.
11286 (display-buffer-normalize-alist-1): New function.
11287 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
11288 display-buffer-normalize-alist.
11289 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
11290 (display-buffer-normalize-options-inhibit): New variable.
11291 (display-buffer-normalize-specifiers): Rewrite calling
11292 display-buffer-normalize-alist,
11293 display-buffer-normalize-argument, and
11294 display-buffer-normalize-options. Don't call the latter if
11295 display-buffer-normalize-options-inhibit is non-nil.
11296 (frame-auto-delete): New option.
11297 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
11298 (window-list-no-nils, window-state-ignored-parameters)
11299 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
11300 (window-state-put-1, window-state-put-2, window-state-put):
11301 New functions.
9a028c23
MR
11302 (display-buffer-normalize-options): Move special-display-p group
11303 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 11304
6d10d800
CY
113052011-06-18 Chong Yidong <cyd@stupidchicken.com>
11306
6420d28b
CY
11307 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
11308 groups (Bug#8776).
11309 (rx-submatch-n): New function.
11310 (rx): Document it.
11311
ddb8b596
CY
11312 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
11313 (Bug#8768).
11314
11315 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
11316
77080289
CY
11317 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
11318
61dfb316
CY
11319 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
11320 anytime existing face settings are present (Bug#8889).
11321
6d10d800
CY
11322 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
11323 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
11324 Remove unused argument.
11325
be3fb2b8
MR
113262011-06-18 Martin Rudalics <rudalics@gmx.at>
11327
bcd70d97
SM
11328 * window.el (display-buffer-default-specifiers):
11329 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
11330 pop-up-window-min-width, and another reuse-window specifier
11331 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
11332 (display-buffer-normalize-specifiers-2):
11333 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
11334 pop-up-windows is unset. Add a reuse-window specifier for the
11335 case popping up a new window fails.
11336 (special-display-popup-frame): Remove double quoting.
28dec25a 11337 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 11338
1c6d8c76
SM
113392011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
11340
11341 * shell.el (shell-completion-vars): Set pcomplete-termination-string
11342 according to comint-completion-addsuffix.
11343
11344 * pcomplete.el: Convert to lexical binding and fix bug#8819.
11345 (pcomplete-suffix-list): Mark as obsolete.
11346 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
11347 pcomplete-seen in the closure.
11348 (pcomplete-comint-setup): Setup completion-at-point as well.
11349 (pcomplete--entries): New function.
11350 (pcomplete--env-regexp): New var.
11351 (pcomplete-entries): Rewrite to work with partial-completion and
11352 without relying on pcomplete-suffix-list.
11353 (pcomplete-pare-list): Remove, unused.
11354
25aef8b8
MR
113552011-06-17 Martin Rudalics <rudalics@gmx.at>
11356
11357 * window.el (display-buffer-alist): Set pop-up-window-min-height
11358 and pop-up-window-min-width in default value. Reported by
11359 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
11360 other-window-means-other-frame.
11361 (display-buffer-macro-specifiers): Comment out entry for
11362 other-window specifier.
11363 (display-buffer-other-window-means-other-frame): New function.
11364 (display-buffer-normalize-specifiers-1): New arguments
11365 buffer-name and label. Treat other-window case specially.
11366 (display-buffer-normalize-specifiers-2): Treat other-window case
11367 specially.
11368 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
11369 (display-buffer-normalize-specifiers):
11370 Call display-buffer-normalize-specifiers-3.
25aef8b8 11371
dbad4f69
MR
113722011-06-17 Martin Rudalics <rudalics@gmx.at>
11373
11374 * window.el (same-window-p): Fix two typos introduced when
11375 adding with-no-warnings.
d1067961
MR
11376 (display-buffer-normalize-specifiers-1): Don't check
11377 pop-up-frames for 'unset initialization.
11378 (display-buffer-normalize-specifiers-2): Major rewrite using
11379 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
11380 (pop-up-frames, display-buffer-reuse-frames)
11381 (display-buffer-mark-dedicated): Don't initialize to 'unset.
11382 Suggested by David Engster <deng@randomsample.de>.
11383 (even-window-heights): Initialize to 'unset.
11384 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
11385 (display-buffer-macro-specifiers): Don't pop up a new frame in the
11386 other window case.
dbad4f69 11387
9b9c9e3a
MR
113882011-06-16 Martin Rudalics <rudalics@gmx.at>
11389
bcd70d97
SM
11390 * window.el (display-buffer-normalize-specifiers-1):
11391 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 11392 second argument of display-buffer (Bug#8865).
981d5c09
MR
11393 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
11394 (switch-to-buffer-other-window-same-frame)
11395 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
11396 Adams (Bug#8875).
9c2755e9
MR
11397 (display-buffer): Don't check noninteractive when calling
11398 display-buffer-pop-up-frame.
11399 (display-buffer-pop-up-frame): Never pop up a frame in
11400 noninteractive mode (Bug#8857).
67222e1d
MR
11401 (enlarge-window, shrink-window): Don't report an error when the
11402 window can't be resized as requested (Bug#8862).
9b9c9e3a 11403
2b75be67
SM
114042011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
11405
9ffdd3ba
SM
11406 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
11407
cb581a67
SM
11408 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
11409
2b75be67
SM
11410 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
11411
8c0e3589
AM
114122011-06-15 Alan Mackenzie <acm@muc.de>
11413
cb581a67
SM
11414 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
11415 for declarators, disable knr checking to speed up for normal files.
11416 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 11417
b96e6cde
LMI
114182011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11419
4bba86e6
LMI
11420 * net/network-stream.el (open-network-stream): Add the keyword
11421 :always-query-capabilities for the case where you want to force a
11422 `plain' network connection, but the protocol still requires the
11423 capabilitiy command (i.e., SMTP and EHLO).
11424
2b75be67 11425 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
11426 consistency with other `-live-p' functions.
11427
efdcdbf8
SM
114282011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
11429
11430 * window.el (same-window-buffer-names, same-window-regexps)
11431 (special-display-frame-alist, special-display-popup-frame)
11432 (special-display-function, special-display-buffer-names)
11433 (special-display-regexps, pop-up-frame-alist)
11434 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
11435 (pop-up-windows, split-window-preferred-function)
11436 (split-height-threshold, split-width-threshold, even-window-heights)
11437 (display-buffer-mark-dedicated): Don't encourage the use of
11438 display-buffer-alist from Elisp code.
11439
c5cde042
DN
114402011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
11441
11442 * progmodes/python.el (python-mode): Derive from prog-mode.
11443 * progmodes/ps-mode.el (ps-mode):
11444 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 11445 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
11446 * progmodes/ld-script.el (ld-script-mode): Likewise.
11447
baa1c9ab
MR
114482011-06-15 Martin Rudalics <rudalics@gmx.at>
11449
11450 * window.el (display-buffer-alist): Trim default value to avoid
11451 popping up a new frame (Bug#8857) or reusing an arbitrary window
11452 on another frame.
11453 (display-buffer): Do not fall back on popping up a new frame in
11454 batch mode (Bug#8857).
11455
c5dd5a51
CY
114562011-06-14 Chong Yidong <cyd@stupidchicken.com>
11457
11458 * cus-theme.el (describe-theme-1): Use custom-theme-p.
11459 (custom-theme-summary): New function.
11460 (customize-themes): Use it.
11461
d647b7c4
GM
114622011-06-13 Glenn Morris <rgm@gnu.org>
11463
11464 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
11465
9481c002
MR
114662011-06-13 Martin Rudalics <rudalics@gmx.at>
11467
357f93d2
MR
11468 * help.el (help-window): Remove variable.
11469 (help-window-point-marker, temp-buffer-max-height)
11470 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
11471 (help-print-return-message): Don't set help-window.
11472 (resize-temp-buffer-window): Rewrite cod eand doc-string.
11473 (help-window-setup-finish): Remove.
11474 (help-window-display-message, help-window-setup)
11475 (with-help-window): Major rewrite based on new
11476 display-buffer-window variable.
11477
11478 * help-mode.el (help-mode-finish): Remove help-window related
11479 code.
11480
11481 * view.el (view-exits-all-viewing-windows): Remove reference to
11482 view-return-to-alist in doc-string.
11483 (view-return-to-alist): Make obsolete.
11484 (view-buffer): Call pop-to-buffer-same-window and remove
11485 undo-window code.
11486 (view-buffer-other-window): Call pop-to-buffer-other-window and
11487 simplify code. Ignore second argument.
11488 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
11489 simplify code. Ignore second argument.
11490 (view-return-to-alist-update): Make obsolete.
11491 (view-mode-enter): Rename second argument to QUIT-RESTORE.
11492 Rewrite using quit-restore window parameters.
2b75be67
SM
11493 (view-mode-exit): Rename second argument to EXIT-ONLY.
11494 Rewrite using quit-restore-window.
357f93d2
MR
11495 (View-exit, View-exit-and-edit, View-leave, View-quit)
11496 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
11497 appropriate arguments.
11498 (view-end-message): Use quit-restore window parameter.
11499
9481c002
MR
11500 * window.el (display-buffer-function): Rewrite doc-string.
11501 (display-buffer-window, display-buffer-alist): New variables.
11502 (display-buffer-split-specifiers)
11503 (display-buffer-side-specifiers)
11504 (display-buffer-macro-specifiers): New constants.
11505 (display-buffer-even-window-sizes, display-buffer-set-height)
11506 (display-buffer-set-width, display-buffer-select-window)
11507 (display-buffer-in-window, display-buffer-reuse-window)
11508 (display-buffer-split-window-1, display-buffer-split-window)
11509 (display-buffer-split-atom-window, display-buffer-pop-up-window)
11510 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
11511 (display-buffer-in-side-window, normalize-buffer-to-display)
11512 (display-buffer-normalize-specifiers-1)
11513 (display-buffer-normalize-specifiers-2)
2b75be67
SM
11514 (display-buffer-normalize-specifiers, display-buffer-frame):
11515 New functions.
9481c002
MR
11516 (display-buffer): Major rewrite.
11517 (display-buffer-other-window, display-buffer-other-frame)
11518 (pop-to-buffer, switch-to-buffer-other-window)
11519 (switch-to-buffer-other-frame): Rewrite.
11520 (display-buffer-same-window, display-buffer-same-frame)
11521 (display-buffer-same-frame-other-window)
11522 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
11523 (pop-to-buffer-other-window)
11524 (pop-to-buffer-same-frame-other-window)
11525 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
11526 (switch-to-buffer-other-window-same-frame): New functions.
11527 (same-window-p, special-display-p): Rewrite disabling warnings.
11528 Make obsolete.
11529 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11530 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
11531 Make obsolete
11532 (same-window-buffer-names, same-window-regexps)
11533 (special-display-frame-alist, special-display-popup-frame)
11534 (special-display-function, special-display-buffer-names)
11535 (special-display-regexps, pop-up-frame-alist)
11536 (pop-up-frame-function, split-window-preferred-function)
11537 (split-height-threshold, split-width-threshold)
11538 (even-window-heights): Make obsolete.
11539
9db51aca
GM
115402011-06-12 Glenn Morris <rgm@gnu.org>
11541
11542 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 11543 Misc simplifications.
9db51aca 11544
39cffb44
MR
115452011-06-12 Martin Rudalics <rudalics@gmx.at>
11546
11547 * window.el (window-safely-shrinkable-p): Restore function which
11548 was inadvertently removed in change from 2011-06-11. Declare as
11549 obsolete.
11550
2b75be67
SM
11551 * calendar/calendar.el (calendar-generate-window):
11552 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
11553 window-safely-shrinkable-p.
11554
a8955be7
GM
115552011-06-12 Glenn Morris <rgm@gnu.org>
11556
11557 * progmodes/fortran.el (fortran-mode-syntax-table):
11558 * progmodes/f90.el (f90-mode-syntax-table):
11559 Set % to punctuation. (Bug#8820)
11560 (f90-find-tag-default): Remove, no longer needed.
11561
f0d4059d
DC
115622011-06-12 Daniel Colascione <dan.colascione@gmail.com>
11563
11564 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
11565
1100a63c
CY
115662011-06-11 Chong Yidong <cyd@stupidchicken.com>
11567
11568 * image.el (image-animated-p): Return animation delay in seconds.
11569 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
11570 (image-animate-timeout): Remove DELAY argument. Don't assume
11571 every subimage has the same delay; get it from image-animated-p.
11572 (image-animate): Caller changed.
11573
def722bf
MA
115742011-06-11 Michael Albinus <michael.albinus@gmx.de>
11575
11576 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
11577 to ignored backtrace functions.
11578
0a2bb1a9
GM
115792011-06-11 Glenn Morris <rgm@gnu.org>
11580
11581 * calendar/appt.el (appt-disp-window-function): Doc fix.
11582 (appt-check): Handle overlapping appointments. (Bug#8337)
11583
6198ccd0
MR
115842011-06-11 Martin Rudalics <rudalics@gmx.at>
11585
11586 * window.el (window-tree-1, window-tree): New functions, moving
11587 the latter to window.el.
11588 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
11589 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
11590 (bw-refresh-edges): Remove.
11591 (balance-windows-1, balance-windows-2): New functions.
11592 (balance-windows): Rewrite in terms of window tree functions,
11593 balance-windows-1 and balance-windows-2.
11594 (bw-adjust-window): Remove.
11595 (balance-windows-area-adjust): New function with functionality of
11596 bw-adjust-window but using resize-window.
2b75be67
SM
11597 (set-window-text-height): Rewrite doc-string.
11598 Use normalize-live-window and resize-window.
11599 (enlarge-window-horizontally, shrink-window-horizontally):
11600 Rename argument to DELTA.
6198ccd0
MR
11601 (window-buffer-height): New function.
11602 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
11603 Rewrite using new window resize routines.
2b75be67
SM
11604 (kill-buffer-and-window, mouse-autoselect-window-select):
11605 Use ignore-errors instead of condition-case.
6198ccd0
MR
11606 (quit-window): Call delete-frame instead of delete-windows-on
11607 for the only buffer on frame.
11608
9397e56f
MR
116092011-06-10 Martin Rudalics <rudalics@gmx.at>
11610
11611 * loadup.el (top-level): Load window before files for the sake
11612 of replace-buffer-in-windows.
11613
11614 * files.el (read-buffer-to-switch)
11615 (switch-to-buffer-other-window)
2b75be67
SM
11616 (switch-to-buffer-other-frame, display-buffer-other-frame):
11617 Move to window.el.
9397e56f
MR
11618
11619 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
11620 (previous-buffer): Move to window.el.
11621
11622 * bindings.el (unbury-buffer): Move to window.el.
11623
11624 * window.el (delete-other-windows-vertically): Move after
11625 definition of delete-other-windows.
11626 (other-window, delete-windows-on, replace-buffer-in-windows):
11627 Move here from window.c.
11628 (record-window-buffer, unrecord-window-buffer)
11629 (set-window-buffer-start-and-point, switch-to-prev-buffer)
11630 (switch-to-next-buffer): New functions.
11631 (get-next-valid-buffer, last-buffer, next-buffer): Move here
11632 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
11633 (previous-buffer): Move here from simple.el.
11634 Call switch-to-prev-buffer.
9397e56f
MR
11635 (bury-buffer): Move here from buffer.c. Switch to previous
11636 buffer when window cannot be deleted.
11637 (unbury-buffer): Move here from bindings.el.
11638 (ctl-x-map): Move binding for other-window from window.c to
11639 here.
11640 (read-buffer-to-switch, switch-to-buffer-other-window)
11641 (switch-to-buffer-other-frame): Move here from files.el.
11642 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
11643 (switch-to-buffer): Move here from buffer.c.
11644 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 11645
562dd5e9
MR
116462011-06-10 Martin Rudalics <rudalics@gmx.at>
11647
11648 * window.el (window-min-height, window-min-width): Move here
11649 from window.c. Add defcustoms and rewrite doc-strings.
11650 (resize-mini-window, resize-window): New functions.
11651 (adjust-window-trailing-edge, enlarge-window, shrink-window):
11652 Move here from window.c.
11653 (maximize-window, minimize-window): New functions.
11654 (delete-window, delete-other-windows, split-window): Move here
11655 from window.c.
11656 (window-split-min-size): New function.
11657 (split-window-keep-point): Mention split-window-above-each-other
11658 instead of split-window-vertically.
2b75be67 11659 (split-window-above-each-other, split-window-vertically):
1154d12e
JB
11660 Rename split-window-vertically to split-window-above-each-other
11661 and provide defalias for old definition.
11662 (split-window-side-by-side, split-window-horizontally):
11663 Rename split-window-horizontally to split-window-side-by-side
11664 and provide defalias for the old definition.
562dd5e9
MR
11665 (ctl-x-map): Move bindings for delete-window,
11666 delete-other-windows and enlarge-window here from window.c.
11667 Replace bindings for split-window-vertically and
11668 split-window-horizontally by bindings for
11669 split-window-above-each-other and split-window-side-by-side.
11670
11671 * cus-start.el (all): Remove entries for window-min-height and
11672 window-min-width. Add entries for window-splits and
11673 window-nest.
11674
f0da764a
GM
116752011-06-09 Glenn Morris <rgm@gnu.org>
11676
80675c21
GM
11677 * calendar/appt.el (appt-mode-line): New function.
11678 (appt-check, appt-disp-window): Use it.
11679
f0da764a
GM
11680 * files.el (hack-one-local-variable-eval-safep):
11681 Allow minor-modes with explicit +/-1 arguments.
11682
59f623b7
TZ
116832011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
11684
11685 * term/xterm.el (xterm): Add defgroup.
11686 (xterm-extra-capabilities): Add defcustom to supply known xterm
11687 capabilities, skip querying them, or query them (default).
11688 (terminal-init-xterm): Use it.
11689 (terminal-init-xterm-modify-other-keys): New function to set up
11690 modifyOtherKeys support to simplify `terminal-init-xterm'.
11691
9aab8e0d
MR
116922011-06-09 Martin Rudalics <rudalics@gmx.at>
11693
11694 * window.el (resize-window-reset, resize-window-reset-1)
11695 (resize-subwindows-skip-p, resize-subwindows-normal)
11696 (resize-subwindows, resize-other-windows, resize-this-window)
11697 (resize-root-window, resize-root-window-vertically)
11698 (window-deletable-p, window-or-subwindow-p)
11699 (frame-root-window-p): New functions.
11700
e8b08aee
GM
117012011-06-09 Glenn Morris <rgm@gnu.org>
11702
11703 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
11704 (ange-ftp-get-files): Use it.
11705
254c37a5
AK
117062011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
11707
11708 * mail/sendmail.el (mail-recover-1, mail-recover):
11709 * files.el (recover-file, recover-session):
11710 Handle dired-listing-switches not being just a single short option.
11711
35d7dbd3
GM
117122011-06-09 Glenn Morris <rgm@gnu.org>
11713
11714 * calendar/appt.el (appt-display-message, appt-disp-window):
11715 Handle lists of appointments.
11716
387522b2
MR
117172011-06-08 Martin Rudalics <rudalics@gmx.at>
11718
2b75be67
SM
11719 * window.el (one-window-p): Move down in code.
11720 Rewrite doc-string.
11721 (window-current-scroll-bars): Rewrite doc-string.
11722 Normalize live window argument.
387522b2
MR
11723 (walk-windows, get-window-with-predicate, count-windows):
11724 Rewrite doc-string. Use window-list-1.
11725 (window-in-direction-2, window-in-direction, get-mru-window):
11726 New functions.
11727
d8e4b68b 117282011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
11729
11730 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
11731 Doc fix (Bug#8713).
11732
117332011-06-08 Chong Yidong <cyd@stupidchicken.com>
11734
11735 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
11736
117372011-06-08 Juanma Barranquero <lekktu@gmail.com>
11738
11739 * loadhist.el (unload-feature-special-hooks):
11740 Add `comint-output-filter-functions'.
11741
0de12c52
IK
117422011-06-08 Ivan Kanis <gnu@kanis.fr>
11743
11744 * calendar/appt.el (appt-check): Move some initializations into the let.
11745
f3d1777e
MR
117462011-06-08 Martin Rudalics <rudalics@gmx.at>
11747
11748 * window.el (window-height): Defalias to window-total-height.
11749 (window-width): Defalias to window-body-width.
11750
18af70d0
CY
117512011-06-07 Chong Yidong <cyd@stupidchicken.com>
11752
11753 * image-mode.el (image-toggle-animation): New command.
11754 (image-mode-map): Bind it to RET.
11755 (image-mode): Update message.
11756 (image-toggle-display-image): Avoid a spurious cache flush.
11757 (image-transform-rotation): Doc fix.
11758 (image-transform-properties): Return quickly in the normal case.
11759 (image-animate-loop): Rename from image-animate-max-time.
11760
2b75be67 11761 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
11762 (create-animated-image): Remove unnecessary function.
11763 (image-animate): Rename from image-animate-start. New arg.
2b75be67 11764 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
11765 (image-animate-timer): Use car-safe.
11766 (image-animate-timeout): Rename argument.
11767
190b47e6
MR
117682011-06-07 Martin Rudalics <rudalics@gmx.at>
11769
11770 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
11771 window.c. Rename first argument to ALL-FRAMES.
11772 Rephrase doc-strings.
11773 (get-buffer-window-list): Rewrite using window-list-1.
11774 Rephrase doc-string.
a1511caf
MR
11775 (window-safe-min-height, window-safe-min-width): New constants.
11776 (window-size-ignore, window-min-size, window-min-size-1)
11777 (window-sizable, window-sizable-p, window-size-fixed-1)
11778 (window-size-fixed-p, window-min-delta-1, window-min-delta)
11779 (window-max-delta-1, window-max-delta, window-resizable)
11780 (window-resizable-p, window-total-height, window-total-width)
11781 (window-body-width): New functions.
11782 (window-full-height-p, window-full-width-p): Rewrite using
11783 window-total-size.
11784 (window-body-height): Rewrite using window-body-size.
190b47e6 11785
85cc1f11
MR
117862011-06-06 Martin Rudalics <rudalics@gmx.at>
11787
11788 * window.el (window-right, window-left, window-child)
11789 (window-child-count, window-last-child, window-any-p)
11790 (normalize-live-buffer, normalize-live-frame)
11791 (normalize-any-window, normalize-live-window)
11792 (window-iso-combination-p, window-iso-combined-p)
11793 (window-iso-combinations)
11794 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
11795 (windows-with-parameter, window-with-parameter)
11796 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
11797 (window-atom-check, window-side-check, window-check):
11798 New functions.
85cc1f11
MR
11799 (ignore-window-parameters, window-sides, window-sides-vertical)
11800 (window-sides-slots): New variables.
11801 (window-size-fixed): Move down in code. Minor doc-string fix.
11802
e7156492
AS
118032011-06-05 Andreas Schwab <schwab@linux-m68k.org>
11804
11805 * comint.el (comint-dynamic-complete-as-filename)
11806 (comint-dynamic-complete-filename): Correctly call
11807 completion-in-region.
11808
7e821d0d
DD
118092011-06-05 Deniz Dogan <deniz@dogan.se>
11810
11811 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
11812 in last change.
11813
ac09b8a1
DD
118142011-06-05 Deniz Dogan <deniz@dogan.se>
11815
11816 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
11817 (rcirc): Use it to prompt for encryption.
11818
34699b85
RW
118192011-06-05 Roland Winkler <winkler@gnu.org>
11820
11821 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
11822 (bibtex-search-entries): New command bound to C-c C-a.
11823 (bibtex-display-entries): New function.
11824
004dedd3
RW
118252011-06-05 Roland Winkler <winkler@gnu.org>
11826
11827 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
11828 (bibtex-insert-kill): After yanking insert newline if necessary.
11829 (bibtex-initialize): Call bibtex-string-files-init only once.
11830 (bibtex-mode): Do not call easy-menu-add.
11831 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
11832 (bibtex-yank): Set arg properly if nil.
11833
022fe7ce
RW
118342011-06-05 Roland Winkler <winkler@gnu.org>
11835
2b75be67
SM
11836 * textmodes/bibtex.el (bibtex-search-entry-globally):
11837 New variable.
022fe7ce
RW
11838 (bibtex-search-entry): Use it.
11839
b7c3692a
RW
118402011-06-05 Roland Winkler <winkler@gnu.org>
11841
11842 * textmodes/bibtex.el (bibtex-entry-format): New option
11843 sort-fields.
11844 (bibtex-format-entry, bibtex-reformat): Honor this option.
11845 (bibtex-parse-entry): Return fields in proper order.
11846
8eda563d
JB
118472011-06-05 Juanma Barranquero <lekktu@gmail.com>
11848
11849 * doc-view.el (doc-view-remove-if): Move computation of result out
11850 of `dolist' to silence misleading lexical-binding warning.
11851
7dbe3dbc
CY
118522011-06-04 Chong Yidong <cyd@stupidchicken.com>
11853
11854 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
11855 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
11856
0c33dd17
MA
118572011-06-04 Michael Albinus <michael.albinus@gmx.de>
11858
11859 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
11860 "SunOS 5.10".
11861
f8f91c2b
MA
118622011-06-04 Michael Albinus <michael.albinus@gmx.de>
11863
11864 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
11865 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
11866 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
11867 (tramp-parse-putty):
11868 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
11869 (tramp-completion-function-alist-ssh)
11870 (tramp-completion-function-alist-telnet)
11871 (tramp-completion-function-alist-su)
11872 (tramp-completion-function-alist-putty): Set `tramp-autoload'
11873 cookie.
11874
11875 * net/tramp-ftp.el:
11876 * net/tramp-sh.el:
11877 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
11878 load "tramp.el" `tramp-set-completion-function'.
11879
e17d9003
SM
118802011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
11881
11882 * shell.el: Require and use pcomplete.
11883 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
11884 (shell-completion-vars): Set pcomplete-default-completion-function.
11885
6c4cab03
DD
118862011-06-04 Deniz Dogan <deniz@dogan.se>
11887
11888 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
11889 `memq' (Bug#8799).
11890
ea9fafe0
SM
118912011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11892
11893 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
11894
b3e945d3
JB
118952011-06-02 Juanma Barranquero <lekktu@gmail.com>
11896
11897 * bs.el (bs--mark-unmark, bs--nth-wrapper):
11898 * mpc.el (mpc-select-extend, mpc-songpointer-context):
11899 * vc/log-view.el (log-view-beginning-of-defun):
11900 * vc/smerge-mode.el (smerge-apply-resolution-patch)
11901 (smerge-refine-forward, smerge-refine-chopup-region):
11902 Silence warning for unused `dotimes' counter variables.
11903
7d520089
SM
119042011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11905
11906 * net/tramp.el (tramp-with-progress-reporter): Rename from
11907 with-progress-reporter. Use `declare'.
11908 * net/tramp-smb.el:
11909 * net/tramp-sh.el:
11910 * net/tramp-gvfs.el: Update all uses.
11911
a1c2400f
JB
119122011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
11913
11914 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
11915 buffer isn't killed before making it current.
11916
2403c841
SM
119172011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
11918
11919 Silence various byte-compiler warnings.
11920 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
11921 `access-type' and new obsolescence format.
11922 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
11923 new format.
11924 (byte-compile-check-variable): New `access-type' argument.
11925 Only warn if the access-type is obsolete.
11926 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
11927 (byte-compile-variable-set): Adjust callers.
11928 * help-fns.el (describe-variable): Adjust to new obsolescence format.
11929 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
11930 setting it as obsolete.
11931 * simple.el (minibuffer-completing-symbol):
11932 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
11933 access as obsolete.
11934 * minibuffer.el (minibuffer-completing-file-name): Don't make it
11935 obsolete yet.
11936 * international/quail.el (quail-mouse-choose-completion): Remove unused
11937 code referring to obsolete var.
11938 (quail-choose-completion-string): Remove.
11939 * server.el (server-clients-with, server-kill-buffer-query-function)
11940 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
11941 * proced.el (proced-send-signal):
11942 * emacs-lisp/lisp.el (lisp-complete-symbol):
11943 Replace completion-annotate-function with completion-extra-properties.
11944
2462470b
SM
119452011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
11946
fb5b2591
SM
11947 * simple.el (goto-line): Use read-number.
11948 (overriding-map-is-bound): Remove.
11949 (saved-overriding-map): Change default.
11950 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
11951 Take the map as argument.
11952 (universal-argument, negative-argument, digit-argument): Use it.
11953 (restore-overriding-map): Adjust.
11954 (do-auto-fill): Use fill-forward-paragraph.
11955 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
11956
fd6fa53f
SM
11957 * minibuffer.el (minibuffer-inactive-mode-map): New var.
11958 (minibuffer-inactive-mode): New major mode.
11959 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
11960 the *Messages* buffer" hack.
11961 (mouse-popup-menubar): Don't burp if the event is a normal key.
11962
2462470b
SM
11963 Miscellaneous tweaks.
11964 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
11965 lexical scoping as in subr.el's dolist and dotimes.
11966 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
11967 Silence compiler warning.
11968 * thingatpt.el (forward-whitespace): Trivial coding style fix.
11969 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
11970 * international/ccl.el (ccl-compile): Trivial simplification.
11971 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
11972 * emacs-lisp/testcover.el (testcover-end): Remove spurious
11973 `printflag' argument.
11974 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
11975 Purecopy the whole obsolescence data.
11976
108bf785
LL
119772011-06-01 Leo Liu <sdl.web@gmail.com>
11978
11979 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
11980 improve doc-string as suggested by Marco Pessotto
11981 <melmothx@gmail.com>.
11982 (rcirc-print): Fix last change.
11983
30a23501
SM
119842011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11985
11986 * minibuffer.el (complete-with-action): Return nil for the metadata and
11987 boundaries of non-functional tables.
11988 (completion-table-dynamic): Return nil for the metadata.
11989 (completion-table-with-terminator): Add default case, using
11990 complete-with-action.
11991 (completion--metadata): New function.
11992 (completion-all-sorted-completions, minibuffer-completion-help): Use it
11993 to try and avoid pathological performance problems.
11994 (completion--embedded-envvar-table): Return `category' metadata.
11995
bcd54f83
LMI
119962011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
11997
11998 * subr.el (process-alive-p): New tiny convenience function.
11999
e227544d
SM
120002011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12001
12002 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
12003 content but also its previous major mode.
12004
e8296fdc
HE
120052011-05-31 Helmut Eller <eller.helmut@gmail.com>
12006
4d61f28d 12007 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
12008 *Backtrace* buffer when we exit with C-M-c.
12009
620c53a6
SM
120102011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12011
12012 * minibuffer.el: Add metadata method to completion tables.
12013 (completion-category-overrides): New defcustom.
12014 (completion-metadata, completion--field-metadata)
12015 (completion-metadata-get, completion--styles)
12016 (completion--cycle-threshold): New functions.
12017 (completion-try-completion, completion-all-completions):
12018 Add `metadata' argument to choose completion-styles.
12019 (completion--do-completion): Use metadata to choose cycling.
12020 (completion-all-sorted-completions): Use metadata for sorting.
12021 Remove :completion-cycle-penalty which is not needed any more.
12022 (completion--try-word-completion): Add `metadata' argument.
12023 (minibuffer-completion-help): Check metadata for annotation function
12024 and sorting.
12025 (completion-file-name-table): Return `category' metadata.
12026 (minibuffer-completing-file-name): Make obsolete.
12027 * simple.el (minibuffer-completing-symbol): Make obsolete.
12028 * icomplete.el (icomplete-completions): Pass new `metadata' param to
12029 completion-try-completion.
12030
1257e755
SM
120312011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12032
12033 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
12034
3767e706
LL
120352011-05-30 Leo Liu <sdl.web@gmail.com>
12036
12037 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
12038 (rcirc-print): Decode all incoming messages (bug#8744).
12039 (rcirc-decode-coding-system): Allow value nil for automatic coding
12040 system detection.
3767e706 12041
d1a5d56a
GM
120422011-06-01 Glenn Morris <rgm@gnu.org>
12043
12044 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
12045
e8cbec34
CY
120462011-05-29 Chong Yidong <cyd@stupidchicken.com>
12047
12048 * image.el (image-animate-max-time): Allow nil and t values.
12049 Default to nil.
12050 (create-animated-image): Doc fix.
12051 (image-animate-start): Remove second arg; just use
12052 image-animate-max-time.
12053 (image-animate-timeout): Doc fix. Args changed.
12054
12055 * image-mode.el (image-toggle-display-image): Ensure that the
12056 image spec passed to the animate timer is the same object as in
58179cce 12057 the buffer's display property (Bug#6981).
e8cbec34
CY
12058 (image-transform-properties): Doc fix.
12059
12060 * image.el (image-animate-max-time): Default to nil.
12061
159daf87
MR
120622011-05-29 Martin Rudalics <rudalics@gmx.at>
12063
12064 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
12065 entire buffer list (Bug#8184).
12066
d66c4c7c
CY
120672011-05-29 Chong Yidong <cyd@stupidchicken.com>
12068
12069 * image.el (imagemagick-types-inhibit)
12070 (imagemagick-register-types): Doc fix.
12071
80aec780
DD
120722011-05-29 Deniz Dogan <deniz@dogan.se>
12073
12074 * net/rcirc.el (rcirc): Use the user's stored encryption method by
12075 default.
12076
1dd3c2d9
CY
120772011-05-29 Chong Yidong <cyd@stupidchicken.com>
12078
12079 * select.el: Don't perform clipboard-manager saving in hooks;
12080 leave the hooks empty.
12081
60e56523
LL
120822011-05-28 Leo Liu <sdl.web@gmail.com>
12083
12084 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
12085 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
12086 (occur-edit-mode): New major mode (Bug#8463).
12087 (occur-after-change-function): New function.
12088 (occur-engine): Give Occur tags a read-only property.
12089
2b1e1a22
KR
120902011-05-28 Kevin Ryde <user42@zip.com.au>
12091
12092 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
12093
5d344e88
CY
120942011-05-28 Chong Yidong <cyd@stupidchicken.com>
12095
8e6ca83d
CY
12096 * bindings.el (help-echo): Make the initial non-indicator dash
12097 empty on graphical terminals (Bug#7295).
12098
5d344e88
CY
12099 * files.el (auto-mode-alist): Move config rule after the
12100 in-stripping one (Bug#8547).
12101
bfbbace7
CY
12102 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
12103
fbeba6e2
CY
12104 * startup.el (normal-splash-screen): Remove gratuitous mode-line
12105 setting (Bug#8740).
12106
60ed8c72
AA
121072011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
12108
4ac619f0
AA
12109 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
12110 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
12111 (Bug#8539).
60ed8c72 12112
23db196e
CY
121132011-05-28 Chong Yidong <cyd@stupidchicken.com>
12114
12115 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
12116
5012f24c
DK
121172011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
12118
12119 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
12120 (hs-hide-block-at-point, hs-find-block-beginning)
12121 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
12122 (Bug#8279).
12123
6a639b16
GM
121242011-05-28 Glenn Morris <rgm@gnu.org>
12125
12126 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
12127
d43eaf2c
CY
121282011-05-28 Chong Yidong <cyd@stupidchicken.com>
12129
5199bde1
CY
12130 * help-fns.el (describe-function-1): If the function is a derived
12131 major mode, print the parent mode.
12132
d43eaf2c
CY
12133 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
12134 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
12135
423428a8
SM
121362011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
12137
0ff8e1ba 12138 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 12139 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
12140 * progmodes/etags.el (tags-completion-at-point-function):
12141 * info-look.el (info-lookup-completions-at-point): Mark as
12142 non-exclusive.
12143 (info-complete): Adjust accordingly.
12144
423428a8
SM
12145 * info-look.el: Convert to lexical-binding and completion-at-point.
12146 (info-lookup-completions-at-point): New function.
12147 (info-complete): Use it and completion-in-region.
12148
b74aa22b
DA
121492011-05-28 Drew Adams <drew.adams@oracle.com>
12150
12151 * isearch.el: Let M-e start with point at the first mismatched char.
12152 (isearch-fail-pos): New function.
12153 (isearch-edit-string): Use it.
12154
66e2e71d
DK
121552011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
12156
12157 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12158
b1890b0f 121592011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
eb95d01d
TC
12160
12161 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
12162 traversal functions for avl-trees.
12163 (avl-tree--stack): New struct.
12164 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
12165 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
12166 (avl-tree--do-enter): Add optional `updatefun' arg.
12167 Change return value.
eb95d01d 12168 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
12169 (avl-tree--do-delete): Add `test' and `nilflag' args.
12170 Change return value.
eb95d01d
TC
12171 (avl-tree-member): Add optional `nilflag'
12172 (avl-tree-member-p): New function.
12173 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
12174 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
12175 (avl-tree-stack-empty-p): New functions.
12176
3769ddcf
TC
12177 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
12178 avl-tree--del-balance1 and make it work both ways.
12179 (avl-tree--del-balance2): Remove.
12180 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
12181 make it work both ways.
12182 (avl-tree--enter-balance2): Remove.
12183 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
12184 New macros.
12185 (avl-tree--mapc, avl-tree-map): Add direction argument.
12186
eb95d01d 121872011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
12188
12189 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
12190
a9f737ee
CY
121912011-05-27 Chong Yidong <cyd@stupidchicken.com>
12192
12193 * select.el: Support clipboard managers with built-in function
12194 x-clipboard-manager-save, via delete-frame-functions and
12195 kill-emacs-hook.
12196 (xselect-convert-to-targets): Add MULTIPLE target to list.
12197 (xselect-convert-to-save-targets): New function.
12198
c92a1e54
KH
121992011-05-27 Kenichi Handa <handa@m17n.org>
12200
12201 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
12202 let-binding rfc2047-encode-encoded-words to nil.
12203
e145f188
GM
122042011-05-27 Glenn Morris <rgm@gnu.org>
12205
5ec8a862
GM
12206 * mail/emacsbug.el: Don't require url-util.
12207
4b29d9fb
GM
12208 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
12209
e145f188
GM
12210 * files.el (set-auto-mode):
12211 Also respect mode: entries at the end of the file. (Bug#8586)
12212
7d15102b
GM
122132011-05-26 Glenn Morris <rgm@gnu.org>
12214
98f593b8
GM
12215 * files.el (hack-local-variables-prop-line, hack-local-variables):
12216 Downcase mode names, as seems to be traditional.
27b48e63 12217 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 12218
7d15102b
GM
12219 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
12220 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
12221
51d5b4ec
JD
122222011-05-25 Julien Danjou <julien@danjou.info>
12223
12224 * textmodes/rst.el (rst-define-level-faces): Do not define face
12225 symbol if it is already defined.
12226
91513f63
VB
122272011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
12228
12229 * play/5x5.el (5x5-new-game, 5x5-randomize):
12230 Reset 5x5-solver-output to nil when a new grid is cast.
12231 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
12232 these debugging traces, as defmacro breaks the compiled code.
12233
4d90d6d0
DK
122342011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
12235
12236 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12237
e1b90ef6
LL
122382011-05-24 Leo Liu <sdl.web@gmail.com>
12239
12240 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
12241 (vc-bzr-sha1): Adapt.
12242
d8e4b68b 12243 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
12244
12245 * bindings.el: Provide sha1 feature.
12246
db0406bb 122472011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
12248
12249 * mail/sendmail.el: Require `rfc2047'.
12250 (mail-insert-from-field): Do not perform RFC2047 encoding.
12251 (mail-encode-header): New function.
12252 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
12253 buffer to the return value of select-message-coding-system.
12254 Call mail-encode-header.
b8d747b9
KH
12255
12256 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
12257
db0406bb 122582011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 12259
4d90d6d0
DK
12260 * mail/supercite.el (sc-default-cite-frame):
12261 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 12262
eb8a5e9b
GM
122632011-05-24 Glenn Morris <rgm@gnu.org>
12264
f8630703
GM
12265 * progmodes/python.el (brm-menu): Declare.
12266
8831bbed
GM
12267 * emulation/viper.el (viper-set-hooks): Declare.
12268
eb8a5e9b
GM
12269 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
12270 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
12271 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
12272 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
12273 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
12274 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
12275
a2a25d24
SM
122762011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
12277
12278 Add an :exit-function for completion-at-point.
12279
12280 * minibuffer.el (completion--done): New fun.
12281 (completion--do-completion): Use it. New arg `expect-exact'.
12282 (minibuffer-complete, minibuffer-complete-word): Don't output message,
12283 since completion--do-completion does it for us now.
12284 (minibuffer-force-complete): Use completion--done and
12285 completion--replace. Handle sole-completion case with more care.
12286 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
12287 (completion-extra-properties): New var.
12288 (completion-annotate-function): Make obsolete.
12289 (minibuffer-completion-help): Adjust accordingly.
12290 Use completion-list-insert-choice-function.
12291 (completion-at-point, completion-help-at-point):
12292 Bind completion-extra-properties.
12293 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
12294 * simple.el (completion-list-insert-choice-function): New var.
12295 (completion-setup-function): Preserve it.
12296 (choose-completion): Pay attention to it, shuffle the code a bit.
12297 (choose-completion-string): New arg `insert-function'.
12298
12299 * textmodes/bibtex.el: Convert to lexical binding.
12300 (bibtex-mode-map): Use completion-at-point.
12301 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
12302 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
12303 (bibtex-complete): Define as obsolete alias.
12304 (bibtex-complete-internal): Remove.
12305 (bibtex-format-entry): Remove unused sub-group in regexp.
12306 * shell.el (shell--command-completion-data)
12307 (shell-environment-variable-completion):
12308 * pcomplete.el (pcomplete-completions-at-point):
12309 * comint.el (comint--complete-file-name-data): Use :exit-function
12310 instead of completion-table-with-terminator so it also works for
12311 choose-completion.
12312
e44e373d
SM
123132011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
12314
4f91a816
SM
12315 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
12316
782fc819
SM
12317 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
12318 (bug#8710).
12319
e44e373d
SM
12320 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
12321
381987c3
KM
123222011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
12323
12324 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
12325 customization variable and implement: If non-nil, auto-fill will
12326 be inhibited while on topic's header line.
12327
b776bc70
VB
123282011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
12329
12330 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 12331 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
12332 always have a solution in grid size = 5 cases.
12333 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
12334 (5x5-solver-output, 5x5-log-buffer): New vars.
12335 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
12336 Make these variables buffer local to achieve 5x5 multi-session-ness.
12337 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
12338 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
12339 (5x5-solve-suggest): New funs.
12340 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
12341 randomize a grid so that we ensure that there is always a solution.
12342 (5x5-make-random-grid): Allow other movement than flipping.
12343
7de88b6e
KR
123442011-05-23 Kevin Ryde <user42@zip.com.au>
12345
12346 * emacs-lisp/advice.el (ad-read-advised-function):
5a5fa834 12347 Use `function-called-at-point' as the default, if it has
7de88b6e
KR
12348 advice and passes PREDICATE.
12349
b1ef1257
SM
123502011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
12351
bbca48fe
SM
12352 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
12353 byte-compile-lambda if it's actually a lambda.
12354
b1ef1257
SM
12355 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
12356 Fix function quoting. Use backquote better.
12357
92a9cc65
YS
123582011-05-22 Yuanle Song <sylecn@gmail.com>
12359
12360 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
12361 matching (Bug#8516).
12362
f0fb8059
JA
123632011-01-22 Jari Aalto <jari.aalto@cante.net>
12364
12365 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
12366 different face (Bug#8178).
12367
d5b44c93
CY
123682011-05-22 Chong Yidong <cyd@stupidchicken.com>
12369
12370 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
12371 defface (Bug#8144).
12372
79106a44
SM
123732011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
12374
9c848d8a
SM
12375 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
12376 funcall as well (bug#8712). Warn when performing those conversions.
12377 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
12378
79106a44
SM
12379 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
12380
88dfa756
GM
123812011-05-22 Glenn Morris <rgm@gnu.org>
12382
12383 * files.el (hack-local-variables-prop-line): Small simplifications.
12384 (hack-local-variables, hack-local-variables-prop-line):
12385 If MODE-ONLY, return the mode, rather than just `t'.
12386
b7cf2c79
SM
123872011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
12388
12389 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
12390
3f1a8558
GM
123912011-05-21 Glenn Morris <rgm@gnu.org>
12392
7e4ccca3
GM
12393 * files.el (hack-local-variables-prop-line, hack-local-variables):
12394 If only interested in the mode, don't bother doing the other stuff.
12395
637d46ca
GM
12396 * image-mode.el (image-after-revert-hook):
12397 Redraw all frames on which the image is visible. (Bug#8567)
12398
973d955b
GM
12399 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
12400
3f1a8558
GM
12401 * wid-edit.el (widget-checklist-match-inline):
12402 Fix 2011-04-19 change. (Bug#8649)
12403
96479927
SM
124042011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
12405
1dcf791f
SM
12406 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
12407 Also allow singlespace after single-letter capitals followed by a dot.
12408
96479927
SM
12409 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
12410 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
12411
35fd0881
N
124122011-05-20 Nix <nix@esperi.org.uk>
12413
12414 * files.el (basic-save-buffer-2):
12415 Fix handling of break-hardlink-on-save with non-existent files.
12416
82745640
DD
124172011-05-19 Deniz Dogan <deniz@dogan.se>
12418
12419 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 12420 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 12421
4a720484
GM
124222011-05-19 Glenn Morris <rgm@gnu.org>
12423
d1f21341
GM
12424 * progmodes/f90.el (f90-type-def-re):
12425 Handle "type, bind(c)". (Bug#8691)
12426
4a720484
GM
12427 * emacs-lisp/autoload.el (batch-update-autoloads):
12428 Set autoload-excludes by parsing loadup.el rather than Makefiles.
12429
2fb0a219
MA
124302011-05-18 Michael Albinus <michael.albinus@gmx.de>
12431
12432 * net/tramp.el (tramp-process-actions): Set "first-password-request"
12433 property for the correct connection in case of multihops.
12434
e565dd37
GM
124352011-05-18 Glenn Morris <rgm@gnu.org>
12436
c2571358 12437 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
12438 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
12439
e565dd37
GM
12440 Rationalize calendar handling of day and month abbrev-arrays.
12441 * calendar/calendar.el (calendar-customized-p): New function.
12442 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
12443 (calendar-day-name-array, calendar-month-name-array): Doc fix.
12444 Add :set function.
12445 (calendar-abbrev-length, calendar-day-abbrev-array)
12446 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
12447 (calendar-day-abbrev-array, calendar-month-abbrev-array):
12448 Elements may no longer be nil.
12449 (calendar-day-name, calendar-month-name):
12450 Update for changed nature of abbrev arrays.
12451 * calendar/diary-lib.el (diary-name-pattern):
12452 Update for changed nature of abbrev arrays.
12453 (diary-mark-entries-1): Update calendar-make-alist calls.
12454 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
12455 * calendar/cal-html.el (cal-html-day-abbrev-array):
12456 Simply inherit from calendar-day-abbrev-array.
12457
1d99a745
SM
124582011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
12459
12460 * progmodes/grep.el (grep-mode): Disable default
12461 compilation-directory-matcher setting (bug#8684).
12462
7c1d9aa0
MA
124632011-05-17 Michael Albinus <michael.albinus@gmx.de>
12464
12465 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
12466 instead of "head" and "tail". There were problems with SunOS 5.9,
12467 and it performs better.
12468
3952e9d8
GM
124692011-05-17 Glenn Morris <rgm@gnu.org>
12470
2dd12e7f
GM
12471 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
12472
e4157b9c
GM
12473 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
12474 Replace obsolete function.
12475
8e249bbd
GM
12476 * shell.el (pcomplete-parse-arguments-function): Declare.
12477
3952e9d8
GM
12478 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
12479 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
12480 (appt-check): Doc fixes.
12481 (appt-disp-window-function, appt-delete-window-function):
12482 Remove needless special case in custom :type.
12483 (appt-display-count): Default to 0, not nil.
12484 (appt-check): Reset appt-display-count to 0, not nil.
12485
c71a0d48 124862011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 12487
c71a0d48
GM
12488 * progmodes/python.el (python-font-lock-keywords):
12489 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 12490
31d55be9
SM
124912011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
12492
12493 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
12494
3bfacb2f
KR
124952011-05-16 Kevin Ryde <user42@zip.com.au>
12496
12497 * info-look.el (makefile-automake-mode): New setups, looking in
12498 automake manual, then makefile-mode.
12499 (makefile-mode): Remove automake manual, have it just in
12500 makefile-automake-mode since there's various things different or
12501 not relevant to plain make.
12502 (makefile-mode): Remove "other-modes" non-existent automake-mode,
12503 believe a hypothetical automake-mode would go to makefile-mode,
12504 not the other way around.
12505
c8e83751
CY
125062011-05-15 Chong Yidong <cyd@stupidchicken.com>
12507
5e9e35cd
CY
12508 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
12509 hunk-end tags (Bug#8672).
12510
c8e83751
CY
12511 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
12512 vc-annotate-show-diff-revision-at-line (Bug#8671).
12513
50b23e5a
GM
125142011-05-14 Glenn Morris <rgm@gnu.org>
12515
7210a739
GM
12516 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
12517 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
12518 (change-log-font-lock-keywords): Also handle multiple author lines
12519 with leading tabs. (Bug#8644)
7210a739 12520
4691905a
GM
12521 * calendar/appt.el (appt-check): Rename some local variables.
12522 Some simplification/reordering.
12523
50b23e5a
GM
12524 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
12525 (feedmail-sendmail-f-doesnt-sell-me-out)
12526 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
12527 (feedmail-debug-sit-for, feedmail-queue-express-hook)
12528 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
12529 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
12530 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
12531 (feedmail-binmail-gnulinuxish-template):
12532 Rename from feedmail-binmail-linuxish-template.
12533 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
12534 Use insert-buffer-substring.
12535
215cda7c
BC
125362011-05-14 Bill Carpenter <bill@carpenter.org>
12537
12538 * mail/feedmail.el (feedmail-patch-level): Increase.
12539 (feedmail-debug): New custom group.
12540 (feedmail-confirm-outgoing-timeout)
12541 (feedmail-sendmail-f-doesnt-sell-me-out)
12542 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
12543 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
12544 (feedmail-sender-line, feedmail-from-line)
12545 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 12546 (feedmail-spray-this-address)
215cda7c
BC
12547 (feedmail-spray-address-fiddle-plex-list)
12548 (feedmail-queue-use-send-time-for-date)
12549 (feedmail-queue-use-send-time-for-message-id)
12550 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
12551 (feedmail-buffer-eating-function):
12552 Doc fixes.
12553 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
12554 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
12555 (feedmail-message-action-scroll-down): New functions.
12556 (feedmail-queue-directory, feedmail-queue-draft-directory):
12557 Use expand-file-name.
12558 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
12559 Remove C-v help entry.
12560 (feedmail-queue-buffer-file-name): New variable.
12561 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
12562 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
12563 (feedmail-message-action-send-strong, feedmail-message-action-edit)
12564 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
12565 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
12566 (feedmail-message-action-toggle-spray)
12567 (feedmail-run-the-queue-no-prompts)
12568 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
12569 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
12570 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
12571 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
12572 (feedmail-envelope-deducer, feedmail-fiddle-from)
12573 (feedmail-fiddle-sender, feedmail-default-date-generator)
12574 (feedmail-fiddle-date, feedmail-fiddle-message-id)
12575 (feedmail-fiddle-spray-address)
12576 (feedmail-fiddle-list-of-spray-fiddle-plexes)
12577 (feedmail-fiddle-list-of-fiddle-plexes)
12578 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
12579 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
12580 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
12581 Change default. Doc fix.
12582 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
12583 (feedmail-binmail-linuxish-template): New constant.
12584 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
12585 Respect feedmail-sendmail-f-doesnt-sell-me-out.
12586 (feedmail-send-it): Add debug call.
12587 Use feedmail-queue-buffer-file-name, and
12588 feedmail-send-it-immediately-wrapper.
12589 (feedmail-message-action-send): Add debug call.
12590 Use feedmail-send-it-immediately-wrapper.
12591 (feedmail-queue-express-to-queue): Add debug call.
12592 Run feedmail-queue-express-hook.
12593 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
12594 (feedmail-message-action-help-blat):
12595 Rename from feedmail-queue-send-edit-prompt-help-first.
12596 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
12597 Check line-endings. Handle errors better.
12598 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
12599 Doc fix. Add debug call.
12600 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
12601 Use feedmail-queue-send-edit-prompt-inner.
12602 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
12603 (feedmail-queue-send-edit-prompt-inner): New function, extracted
12604 from feedmail-queue-send-edit-prompt.
12605 (feedmail-queue-send-edit-prompt-help)
12606 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
12607 (feedmail-tidy-up-slug): Add debug call.
12608 Respect feedmail-queue-slug-suspect-regexp.
12609 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
12610 (feedmail-dump-message-to-queue): Add debug call.
12611 Expand queue-directory.
12612 (feedmail-dump-message-to-queue): Change message slightly.
12613 Use feedmail-say-chatter.
12614 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
12615 (feedmail-send-it-immediately-wrapper): New function.
12616 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
12617 Insert empty string rather than newline. Handle full-frame case.
12618 Use catch/throw. Use feedmail-say-chatter.
12619 (feedmail-fiddle-from): Try mail-host-address.
12620 (feedmail-default-message-id-generator): Doc fix.
12621 Bind system-time-locale. Handle missing end.
12622 (feedmail-fiddle-x-mailer): Add debug call.
12623 Handle feedmail-x-mailer-line being nil.
12624 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
12625 Add debug call. Use buffer-substring-no-properties.
12626 (feedmail-say-debug, feedmail-say-chatter): New functions.
12627 (feedmail-find-eoh): Give an explicit error.
12628
42c7e61e
UJ
126292011-05-13 Ulf Jasper <ulf.jasper@web.de>
12630
c2571358 12631 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 12632 family from helvetica to sans.
c2571358 12633 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
12634 etc/images/newsticker.
12635
c2571358 12636 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
12637 family from helvetica to sans.
12638
12639 * net/newst-plainview.el (newsticker-new-item-face)
12640 (newsticker-old-item-face, newsticker-immortal-item-face)
12641 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 12642 (newsticker-statistics-face): Change default family from
42c7e61e 12643 helvetica to sans.
c2571358 12644 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
12645 etc/images/newsticker.
12646
5d3385a0
JB
12647 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
12648 (newsticker--process-auto-mark-filter-match): Tell user about
42c7e61e
UJ
12649 auto-marking.
12650
8497a297
DV
126512011-05-13 Didier Verna <didier@xemacs.org>
12652
12653 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
12654 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
12655 TODO entries.
8497a297
DV
12656 (lisp-lambda-list-keyword-parameter-indentation)
12657 (lisp-lambda-list-keyword-parameter-alignment)
12658 (lisp-lambda-list-keyword-alignment): New customizable user options.
12659 (lisp-indent-defun-method): Improve docstring.
12660 (extended-loop-p): Fix comment.
12661 (lisp-indent-lambda-list-keywords-regexp): New variable.
12662 (lisp-indent-lambda-list): New function.
12663 (lisp-indent-259): Use it.
12664 (lisp-indent-defmethod): Support for more than one
12665 method qualifier and properly indent methods lambda-lists.
12666 (defgeneric): Provide a missing common-lisp-indent-function property.
12667
f278f87f
SM
126682011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
12669
12670 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
12671 bounds for the empty string (bug#8667).
12672
5233edd7
GM
126732011-05-13 Glenn Morris <rgm@gnu.org>
12674
5237a44f
GM
12675 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
12676
8340026c 12677 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 12678 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 12679
5233edd7 12680 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 12681 (appt-time-msg-list): Doc fix.
a5464014 12682 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 12683
92d10796
AS
126842011-05-12 Andreas Schwab <schwab@linux-m68k.org>
12685
12686 * progmodes/ld-script.el (ld-script-keywords)
12687 (ld-script-builtins): Update keywords list.
12688
914a0ae1
SM
126892011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
12690
c89be45f
SM
12691 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
12692
914a0ae1
SM
12693 * shell.el (shell-completion-vars): New function.
12694 (shell-mode):
12695 * simple.el (read-shell-command): Use it.
12696 (blink-matching-open): No need for " [...]" in minibuffer-message.
12697
98dc3df3
GM
126982011-05-12 Glenn Morris <rgm@gnu.org>
12699
12700 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
12701 (appt-check): Simplify.
12702
d2fc7e3d 127032011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 12704
4d61f28d 12705 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
12706 literal "/dev/null".
12707
d2fc7e3d 127082011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
12709
12710 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
12711 Fix typo.
12712
d2fc7e3d 127132011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 12714
3f254caa
SM
12715 * progmodes/which-func.el (which-function):
12716 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
12717 which might not be defined (Bug#8260).
12718
d45885f7
GM
127192011-05-12 Glenn Morris <rgm@gnu.org>
12720
12721 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
12722 Let byte-compile-initial-macro-environment always take precedence.
12723
488086f4
SM
127242011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
12725
12726 * net/rcirc.el: Add support for SSL/TLS connections.
12727 (rcirc-server-alist): New field `encryption'.
12728 (rcirc): Check `encryption' settings.
12729 (rcirc-connect): New arg `encryption'. Use open-network-stream.
12730 Merge make-local-variable into `set'.
12731 (rcirc--connection-open-p): New function.
12732 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
12733 the process is not a network process (e.g. running gnutls-cli).
12734 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
12735 Make rcirc-(en|de)code-coding-system local here.
12736 (rcirc-mode): Merge make-local-variable into `set'.
12737 (rcirc-parent-buffer): Make permanent buffer-local.
12738 (rcirc-multiline-minor-mode): Don't do it here.
12739 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
12740 there's no server buffer.
12741
7d3b9d44
GM
127422011-05-11 Glenn Morris <rgm@gnu.org>
12743
f64049c6
GM
12744 * newcomment.el (comment-kill): Prefix "unused" local.
12745
93c9df73
GM
12746 * term/w32console.el (get-screen-color): Declare.
12747
7d3b9d44
GM
12748 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
12749 Handle symbol elements of byte-compile-initial-macro-environment.
12750
9e2dd53f
LL
127512011-05-10 Leo Liu <sdl.web@gmail.com>
12752
488086f4
SM
12753 * bookmark.el (bookmark-bmenu-mode-map):
12754 Bind bookmark-bmenu-search to `/'.
8b340240 12755
9e2dd53f 12756 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
12757 (footnote-unicode-string, footnote-unicode-regexp): New variable.
12758 (Footnote-unicode): New function.
12759 (footnote-style-alist): Add unicode style to the list.
12760 (footnote-style): Doc fix.
9e2dd53f 12761
79b70037
GM
127622011-05-10 Jim Meyering <meyering@redhat.com>
12763
12764 Fix doubled-word typos.
12765 * international/quail.el (quail-insert-kbd-layout): and and -> and
12766 * kermit.el: and and -> and
12767 * net/ldap.el (ldap-search-internal): to to -> to
12768 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
12769 * progmodes/js.el (js-mode): and and -> and
12770 * textmodes/artist.el (artist-move-to-xy): at at -> at
12771 (artist-draw-region-trim-line-endings): if if -> if
12772 And Safetyc -> Safety.
12773 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
12774
b8f82dc1 127752011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 12776 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
12777
12778 * files.el (hack-one-local-variable-eval-safep):
12779 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
12780
4f99f44b
GM
127812011-05-10 Glenn Morris <rgm@gnu.org>
12782
12783 * calendar/diary-lib.el (diary-list-entries-hook)
12784 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
12785 (diary-nongregorian-marking-hook, diary-list-entries)
12786 (diary-include-other-diary-files, diary-mark-entries)
12787 (diary-mark-included-diary-files): Doc fixes.
12788
84f29e6b
JB
127892011-05-09 Juanma Barranquero <lekktu@gmail.com>
12790
12791 * misc.el: Require tabulated-list.el during compilation.
12792
9bedd73a
CY
127932011-05-09 Chong Yidong <cyd@stupidchicken.com>
12794
488086f4
SM
12795 * progmodes/compile.el (compilation-start):
12796 Run compilation-filter-hook for the async case too.
9bedd73a
CY
12797 (compilation-filter-hook): Doc fix.
12798
797c735c
DD
127992011-05-09 Deniz Dogan <deniz@dogan.se>
12800
12801 * wdired.el: Remove outdated installation comment. Fix usage
12802 comment.
12803
5f4b1dfe
JB
128042011-05-09 Juanma Barranquero <lekktu@gmail.com>
12805
12806 * misc.el: Implement new command `list-dynamic-libraries'.
12807 (list-dynamic-libraries--loaded-only-p): New variable.
12808 (list-dynamic-libraries--refresh): New function.
12809 (list-dynamic-libraries): New command.
12810
4c44026c
CY
128112011-05-09 Chong Yidong <cyd@stupidchicken.com>
12812
488086f4
SM
12813 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12814 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
12815 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
12816 higher priority to avoid clobbering by gnu.
12817
027f966d
CY
128182011-05-08 Chong Yidong <cyd@stupidchicken.com>
12819
12820 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
12821 if the face has existing theme settings (Bug#8454).
12822
085f5d7d
CY
128232011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
12824
488086f4
SM
12825 * progmodes/perl-mode.el (perl-imenu-generic-expression):
12826 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 12827
2a86a00c
RS
12828 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
12829 special file names `.' and `..' (Bug#8259).
12830
d9c54a06
CY
128312011-05-08 Chong Yidong <cyd@stupidchicken.com>
12832
488086f4
SM
12833 * progmodes/grep.el (grep-mode-font-lock-keywords):
12834 Remove buffer-changing entries.
d9c54a06
CY
12835 (grep-filter): New function.
12836 (grep-mode): Add it to compilation-filter-hook.
12837
12838 * progmodes/compile.el (compilation-filter-hook)
12839 (compilation-filter-start): New defvars.
12840 (compilation-filter): Call compilation-filter-hook prior to
12841 updating the process mark.
12842
c4662635
SM
128432011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
12844
12845 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
12846
b0512a1d
EZ
128472011-05-07 Eli Zaretskii <eliz@gnu.org>
12848
605c9376
EZ
12849 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
12850 mailclient-send-it even if window-system is nil. (Bug#8595)
12851
c4662635
SM
12852 * term/w32console.el (terminal-init-w32console):
12853 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
12854 background-mode. (Bug#8597)
12855
d1dc2cc2
SM
128562011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
12857
12858 Make bytecomp.el understand that defmethod defines funs (bug#8631).
12859 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
12860 New functions.
12861 (defgeneric, eieio--defmethod): Use them.
12862 (eieio-defgeneric): Remove.
12863 (defmethod): Call defgeneric in a way visible to the byte-compiler.
12864
915d1300
GM
128652011-05-07 Glenn Morris <rgm@gnu.org>
12866
a3961c3e
GM
12867 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
12868 Use let rather than let*.
12869 (timeclock-find-discrep): Remove unused local.
12870
314347b9
GM
12871 * calendar/diary-lib.el (diary-comment-start): Doc fix.
12872
915d1300
GM
12873 * calendar/appt.el (appt-time-msg-list): Doc fix.
12874
275b59b0
NF
128752011-05-06 Noah Friedman <friedman@splode.com>
12876
12877 * apropos.el (apropos-print-doc): Only use
12878 emacs-lisp-docstring-fill-column when it is bound to an integer,
12879 per that variable's documentation.
12880
6c19f744
SM
128812011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12882
12883 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 12884 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 12885
60f884b2
GM
128862011-05-06 Glenn Morris <rgm@gnu.org>
12887
5006e634
GM
12888 * calendar/appt.el (appt-message-warning-time): Doc fix.
12889 (appt-warning-time-regexp): New option.
12890 (appt-make-list): Respect appt-message-warning-time.
12891
548d0a63
GM
12892 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
12893 New options.
12894 (diary-add-to-list): Strip comments from the displayed string.
12895 (diary-mode): Set comment-start and comment-end.
12896
60f884b2
GM
12897 * vc/diff-mode.el (smerge-refine-subst): Declare.
12898 (diff-refine-hunk): Don't require smerge-mode when compiling.
12899
989681bb
JB
129002011-05-06 Juanma Barranquero <lekktu@gmail.com>
12901
12902 * simple.el (list-processes): Return nil as the docstring says.
12903
a6bc05e1
MA
129042011-05-05 Michael Albinus <michael.albinus@gmx.de>
12905
12906 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
12907 to "".
12908 (ange-ftp-write-region, ange-ftp-insert-file-contents)
12909 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
12910 determining of binary transfer. (Bug#7383)
12911
23c22e9a
MA
129122011-05-05 Michael Albinus <michael.albinus@gmx.de>
12913
c4662635
SM
12914 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
12915 Fix port computation bug. (Bug#8618)
23c22e9a 12916
0bff894f
GM
129172011-05-05 Glenn Morris <rgm@gnu.org>
12918
b8296902
GM
12919 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
12920
1f522ce8
GM
12921 * simple.el (shell-dynamic-complete-functions)
12922 (comint-dynamic-complete-functions): Declare.
12923
cf5bee67
GM
12924 * net/network-stream.el (gnutls-negotiate):
12925 * simple.el (tabulated-list-print): Fix declarations.
12926
12927 * progmodes/gud.el (syntax-symbol, syntax-point):
12928 Remove unnecessary and incorrect declarations.
12929
0bff894f
GM
12930 * emacs-lisp/check-declare.el (check-declare-scan):
12931 Handle byte-compile-initial-macro-environment in bytecomp.el
12932
9869b3ae
SM
129332011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12934
12935 Fix earlier half-done eieio-defmethod change (bug#8338).
12936 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
12937 Streamline and change calling convention.
12938 (defmethod): Adjust accordingly and simplify.
12939 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
12940 new eieio--defmethod.
12941 (slot-boundp): Minor CSE simplification.
12942
9c1d5ac5
MZ
129432011-05-05 Milan Zamazal <pdm@zamazal.org>
12944
12945 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
12946 (glasses-make-readable): Use glasses-separate-capital-groups.
12947
455c834e
JB
129482011-05-05 Juanma Barranquero <lekktu@gmail.com>
12949
12950 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
12951 (warning-series): Doc fix.
12952 (display-warning): Don't try to create the buffer if we just found it.
12953
9ed7c8cb
CY
129542011-05-04 Chong Yidong <cyd@stupidchicken.com>
12955
12956 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
12957 (autoload-find-generated-file): New function.
12958 (generate-file-autoloads): Bind generated-autoload-file to
12959 buffer-file-name.
9869b3ae
SM
12960 (update-file-autoloads, update-directory-autoloads):
12961 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
12962 output file (Bug#7989).
12963 (batch-update-autoloads): Doc fix.
12964
0898ca10
JB
129652011-05-04 Juanma Barranquero <lekktu@gmail.com>
12966
12967 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
12968
31dfb76c
GM
129692011-05-04 Glenn Morris <rgm@gnu.org>
12970
f330b642
GM
12971 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
12972 function, so it follows changes in calendar-date-style.
12973 (diary-fancy-date-matcher): New function.
12974 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
12975 (diary-fancy-font-lock-fontify-region-function):
12976 Use diary-fancy-date-pattern as a function.
12977
31dfb76c
GM
12978 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
12979 non-numbers for `year' etc pseudo-variables. (Bug#8583)
12980
48e79d6a
TZ
129812011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
12982
12983 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
12984 instead of positional arguments. Allow :keylist and :crlfiles
12985 arguments.
12986 (open-gnutls-stream): Call it.
12987
12988 * net/network-stream.el (network-stream-open-starttls): Adjust to
12989 call `gnutls-negotiate' with :process and :hostname arguments.
12990
dd5a5ee0
SM
129912011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12992
ef80fc09
SM
12993 * minibuffer.el (completion--message): New function.
12994 (completion--do-completion, minibuffer-complete)
12995 (minibuffer-force-complete, minibuffer-complete-word): Use it.
12996 (completion--do-completion): Don't ignore completion-auto-help when in
12997 icomplete-mode.
12998
dd5a5ee0
SM
12999 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
13000 internal encoding (e.g. tibetan zero is not whitespace).
13001 (global-whitespace-mode): Prefer save-current-buffer.
13002 (whitespace-trailing-regexp): Remove useless save-match-data.
13003 (whitespace-empty-at-bob-regexp): Minor simplification.
13004
b7d22a83
CY
130052011-05-03 Chong Yidong <cyd@stupidchicken.com>
13006
13007 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
13008
5192af46
AM
130092011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13010
13011 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 13012 Use `concat' to create string for insertion.
5192af46 13013
5767d190
SM
130142011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13015
13016 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
13017 Avoid open-line which runs post-self-insert-hook.
13018 (bibtex-fill-entry): Remove unused `end' var.
13019
bf242939
AM
130202011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
13021
5767d190
SM
13022 * textmodes/ispell.el (ispell-add-per-file-word-list):
13023 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 13024
25666126
LL
130252011-05-03 Leo Liu <sdl.web@gmail.com>
13026
13027 * isearch.el (isearch-yank-pop): New command.
5767d190 13028 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
13029 (isearch-forward): Mention it.
13030
52d3c2d0
SM
130312011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13032
1bcace58
SM
13033 * simple.el (minibuffer-complete-shell-command): Remove.
13034 (minibuffer-local-shell-command-map): Use completion-at-point.
13035 (read-shell-command): Setup completion vars here instead.
13036 (read-expression-map): Bind TAB to symbol completion.
13037
52d3c2d0
SM
13038 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
13039 error directly rather via storing it into `results'.
13040
35813471
LL
130412011-05-02 Leo Liu <sdl.web@gmail.com>
13042
13043 * vc/diff.el: Fix description.
13044
e793a940
LMI
130452011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13046
13047 * server.el (server-eval-at): New function.
13048
8de66e05
LMI
130492011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13050
13051 * net/network-stream.el (open-network-stream): Take a :nowait
13052 parameter and pass it on to `make-network-process'.
13053 (network-stream-open-plain): Ditto.
13054
dcb79f20
AS
130552011-04-30 Andreas Schwab <schwab@linux-m68k.org>
13056
13057 * faces.el (face-spec-set-match-display): Don't match toolkit
13058 options on terminal frames.
13059
14a7fbd8
SM
130602011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
13061
7eabc1be
SM
13062 * progmodes/pascal.el: Use lexical binding.
13063 (pascal-mode-map): Remove author preferences.
13064
14a7fbd8
SM
13065 * pcomplete.el (pcomplete-std-complete): Don't abuse
13066 completion-at-point.
13067
50f84510
JB
130682011-04-28 Juanma Barranquero <lekktu@gmail.com>
13069
6e087a44
JB
13070 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
13071 removing code that has been dead since 1991 or so.
13072
50f84510
JB
13073 * startup.el (command-line): When warning about "_emacs", use a
13074 delayed warning to allow the user to filter it out.
13075
0ba690bd
DD
130762011-04-28 Deniz Dogan <deniz@dogan.se>
13077
13078 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
13079 user has not joined.
13080
08abfaad
SM
130812011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13082
13083 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
13084 aren't any completions at point.
13085
638f053a
JB
130862011-04-28 Juanma Barranquero <lekktu@gmail.com>
13087
13088 * subr.el (display-delayed-warnings): New function.
13089 (delayed-warnings-hook): New variable.
13090
8fff8daa
SM
130912011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13092
08abfaad
SM
13093 * minibuffer.el (completion-at-point, completion-help-at-point):
13094 Don't presume that a given completion-at-point-function will always
13095 use the same calling convention.
13096
8fff8daa
SM
13097 * pcomplete.el (pcomplete-completions-at-point):
13098 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
13099 pcomplete-seen is non-nil.
13100 (pcomplete-comint-setup): Also recognize the new comint/shell
13101 completion functions.
13102 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
13103 pcomplete-seen is non-nil.
13104
841a1577 131052011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 13106
841a1577 13107 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 13108 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 13109 the first character in the entry. This allows for code to add its
211ec907
UJ
13110 own uid to the entry.
13111 (icalendar--convert-float-to-ical): Add export of
13112 `diary-float'-entries save for those with the optional DAY
13113 argument.
13114
2a782793
DC
131152011-04-27 Daniel Colascione <dan.colascione@gmail.com>
13116
13117 * subr.el (shell-quote-argument): Use alternate escaping strategy
13118 when we spot a variable reference in a string.
13119
0438ce91
DC
131202011-04-26 Daniel Colascione <dan.colascione@gmail.com>
13121
13122 * cus-start.el (all): Define customization for debug-on-event.
13123
841a1577 131242011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
13125
13126 * subr.el (shell-quote-argument): Escape correctly under Windows.
13127
d090ed6c
SM
131282011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13129
13130 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
13131
bfd31217
MA
131322011-04-25 Michael Albinus <michael.albinus@gmx.de>
13133
d090ed6c
SM
13134 * net/tramp.el (tramp-process-actions): Add POS argument.
13135 Delete region between POS and (pos).
bfd31217 13136
d090ed6c
SM
13137 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13138 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
13139 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
13140
13141 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
13142 position in `tramp-process-actions' call.
13143
13144 * net/trampver.el: Update release number.
13145
e92f3bd3
SM
131462011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13147
850256b5
SM
13148 * custom.el (defcustom): Obey lexical-binding.
13149
e92f3bd3
SM
13150 Fix octave-inf completion problems reported by Alexander Klimov.
13151 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
13152 Inherit from octave-mode-syntax-table.
13153 (inferior-octave-mode): Set info-lookup-mode.
13154 (inferior-octave-completion-at-point): New function.
13155 (inferior-octave-complete): Use it and completion-in-region.
13156 (inferior-octave-dynamic-complete-functions): Use it as well, and use
13157 comint-filename-completion.
13158 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
13159 symbol elements which shouldn't be word elements.
13160 (octave-font-lock-keywords, octave-beginning-of-defun)
13161 (octave-function-header-regexp): Adjust regexps accordingly.
13162 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
13163
cd22b309
JB
131642011-04-25 Juanma Barranquero <lekktu@gmail.com>
13165
13166 * net/gnutls.el (gnutls-errorp): Declare before first use.
13167
8b492194
TZ
131682011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
13169
13170 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
13171 verify-error, and verify-hostname-error parameters. Check whether
cd22b309 13172 default trustfile exists before going to use it. Add missing
5a5fa834 13173 argument to gnutls-message-maybe call. Return value.
8b492194
TZ
13174 Reported by Claudio Bley <claudio.bley@gmail.com>.
13175 (open-gnutls-stream): Add usage example.
13176
13177 * net/network-stream.el (network-stream-open-starttls): Give host
13178 parameter to `gnutls-negotiate'.
13179 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 13180 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 13181
841a1577 131822011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 13183
cd22b309
JB
13184 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
13185 Use correct match group (bug#8438).
05842630 13186
3ba7869c
CY
131872011-04-24 Chong Yidong <cyd@stupidchicken.com>
13188
512e3ae1
CY
13189 * emacs-lisp/package.el (package-built-in-p): Fix typo.
13190 (package-menu--generate): New arg specifying packages to show.
13191 (package-menu-refresh, package-menu-execute, list-packages):
13192 Callers changed.
13193 (package-show-package-list): New function, replacing deleted
13194 package--list-packages (renamed because it is non-internal).
13195
13196 * finder.el (finder-list-matches): Use package-show-package-list
13197 instead of deleted package--list-packages.
13198
e92f3bd3
SM
13199 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
13200 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
13201 (vc-annotate-mode-map): Bind it to RET.
13202
7031be6d
UR
132032011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
13204
13205 * progmodes/etags.el (next-file): Don't use set-buffer to change
13206 buffers (Bug#8478).
13207
4ef177aa
CY
132082011-04-24 Chong Yidong <cyd@stupidchicken.com>
13209
c8d173eb
CY
13210 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
13211
4ef177aa
CY
13212 * apropos.el (apropos-label-face): Avoid variable-pitch face.
13213 (apropos-accumulator): Doc fix.
13214 (apropos-function, apropos-macro, apropos-command)
13215 (apropos-variable, apropos-face, apropos-group, apropos-widget)
13216 (apropos-plist): Add face property.
13217 (apropos-symbols-internal): Fix indentation.
13218 (apropos-print): Simplify help, and recognize apropos-multi-type.
13219 (apropos-print-doc): Use button-type-get to extract the button's
13220 face property. Fill docstring (Bug#8352).
13221
4ffd0d6b 132222011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
13223
13224 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
13225
c6c32125 13226 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 13227 (mpuz-mode-map): Use mapc.
c6c32125
JB
13228 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
13229 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
13230 Fix typos in docstrings.
13231
58d468b4
JB
13232 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
13233 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
13234
6470c3c6
JB
13235 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
13236
4ffd0d6b 132372011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
13238
13239 * minibuffer.el (completion--do-completion): Avoid the "Next char
13240 not unique" prompt if icomplete-mode is enabled (Bug#5849).
13241
3ad8bad0
CY
13242 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
13243 mouse-2 into unread-command-events, it is interpreted correctly.
13244
71d73c9c 13245 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 13246 (image-toggle-display): Doc fix.
71d73c9c 13247
841a1577 132482011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 13249
4ffd0d6b
GM
13250 * textmodes/page.el (what-page): Use line-number-at-pos to
13251 calculate line number (Bug#6825).
6e1dbaa9 13252
c2fb1b60
JB
132532011-04-22 Juanma Barranquero <lekktu@gmail.com>
13254
13255 * eshell/esh-mode.el (find-tag-interactive): Declare function.
13256 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
13257 Pass argument NO-DEFAULT to `find-tag-interactive'.
13258
e02f48d7
JB
132592011-04-22 Juanma Barranquero <lekktu@gmail.com>
13260
13261 Lexical-binding cleanup.
13262
13263 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
13264 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
13265 * progmodes/ada-prj.el (ada-prj-initialize-values)
13266 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
13267 (ada-prj-show-value):
13268 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
13269 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
13270 (antlr-invalidate-context-cache, antlr-options-menu-filter)
13271 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
13272 * progmodes/bug-reference.el (bug-reference-push-button):
13273 * progmodes/fortran.el (fortran-line-length):
13274 * progmodes/glasses.el (glasses-change):
13275 * progmodes/octave-mod.el (octave-fill-paragraph):
13276 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
13277 (python-pdbtrack-grub-for-buffer, python-sentinel):
13278 * progmodes/sql.el (sql-save-connection):
13279 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
13280 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
13281 Mark unused parameters.
13282
13283 * progmodes/compile.el (compilation--flush-directory-cache)
13284 (compilation--flush-parse, compile-internal): Mark unused parameters.
13285 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
13286 (compilation-next-error-function): Remove unused variable `timestamp'.
13287
13288 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
13289 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
13290
13291 * progmodes/dcl-mode.el (dcl-end-of-command):
13292 Remove unused variable `start'.
13293 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
13294 (dcl-option-value-basic, dcl-option-value-offset)
13295 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
13296 Mark unused parameters.
13297 (dcl-save-local-variable): Remove unused variable `val'.
13298 (mode): Declare.
13299
13300 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
13301 Mark unused parameters.
13302 (delphi-ignore-changes): Move before first use.
13303 (delphi-charset-token-at): Remove unused variable `start'.
13304 (delphi-else-start): Remove unused variable `if-count'.
13305 (delphi-comment-block-start, delphi-comment-block-end):
13306 Remove unused variable `kind'.
13307 (delphi-indent-line): Remove unused variable `new-point'.
13308
13309 * progmodes/ebrowse.el (ebrowse-files-list)
13310 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
13311 Mark unused parameters. Don't quote `lambda'.
13312 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
13313 Don't quote `lambda'.
13314 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
13315 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
13316 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
13317 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
13318 Use `ignore-errors'.
13319 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
13320 (ebrowse-view/find-file-and-search-pattern)
13321 (ebrowse-view/find-member-declaration/definition):
13322 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
13323 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
13324 Rename parameter PREFIX-ARG to PREFIX.
13325 (ebrowse-tags-read-name): Remove unused variables `start' and
13326 `member-info'.
13327 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
13328 to `tags-file'.
13329
13330 * progmodes/etags.el (local-find-tag-hook): Declare.
13331 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
13332 Mark unused parameters.
13333
13334 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
13335 (executable-interpret): Mark unused parameter.
13336
13337 * progmodes/flymake.el (flymake-process-sentinel)
13338 (flymake-after-change-function)
13339 (flymake-create-temp-with-folder-structure)
13340 (flymake-get-include-dirs-dot): Mark unused parameters.
13341 (flymake-safe-delete-directory): Remove unused variable `err'.
13342
13343 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
13344 (speedbar-timer-fn, speedbar-line-text)
13345 (speedbar-change-expand-button-char, speedbar-delete-subblock)
13346 (speedbar-center-buffer-smartly): Declare functions.
13347 (gdb-find-watch-expression): Remove unused variable `array'.
13348 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
13349 (gdb-starting): Mark unused parameters.
13350 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
13351 (gdb-table-string): Remove unused variable `res'.
13352 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
13353 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
13354 (gdb-display-buffer): Remove unused variable `cur-size'.
13355
13356 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
13357 allow lexical-binding compilation.
13358 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
13359 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
13360 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
13361 Mark unused parameters.
13362 (gud-gdb-marker-filter): Remove unused variable `match'.
13363 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
13364 lambda expressions and funcall them, instead of using `fset'.
13365
13366 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
13367 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
13368
13369 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
13370 variable `header-beg'; use `let'.
13371
13372 * progmodes/icon.el (indent-icon-exp): Remove unused variables
13373 `restart', `last-sexp' and `at-do'.
13374
13375 * progmodes/js.el (js--debug): Mark unused parameter.
13376 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
13377 (js--splice-into-items): Remove unused variable `item'.
13378 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
13379
13380 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
13381 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
13382 (makefile-complete): Remove unused variable `try'.
13383 (makefile-fill-paragraph, makefile-match-function-end):
13384 Mark unused parameters.
13385
13386 * progmodes/octave-inf.el (inferior-octave-complete):
13387 Remove unused variable `proc'.
13388 (inferior-octave-output-digest): Mark unused parameter.
13389
13390 * progmodes/perl-mode.el (perl-calculate-indent):
13391 Remove unused variable `err'.
13392
13393 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
13394 (prolog-indent-line): Mark unused parameters.
13395 (prolog-indent-line): Remove unused variable `beg'.
13396
13397 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
13398 (reporter-dont-compact-list): Declare.
13399
13400 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
13401 Remove unused variable `char'.
13402 (sh-debug): Mark unused parameter.
13403 (sh-get-indent-info): Remove unused variable `start'.
13404 (sh-calculate-indent): Remove unused variable `var'.
13405
13406 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
13407 (simula-electric-keyword): Remove unused variable `null'.
13408 (simula-search-backward, simula-search-forward): Remove unused
13409 variables `begin' and `end'.
13410
13411 * progmodes/vera-mode.el (vera-guess-basic-syntax):
13412 Remove unused variable `pos'.
13413 (vera-electric-tab, vera-comment-uncomment-region):
13414 Mark unused parameters.
13415 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
13416
7ede3b65
CY
134172011-04-22 Chong Yidong <cyd@stupidchicken.com>
13418
13419 * emacs-lisp/package.el (package--builtins, package-alist)
13420 (package-load-descriptor, package-built-in-p, package-activate)
13421 (define-package, package-installed-p)
13422 (package-compute-transaction, package-buffer-info)
13423 (package--push): Doc fix. Distinguish more clearly between
13424 version strings and version lists.
13425
121656e9
JB
134262011-04-21 Juanma Barranquero <lekktu@gmail.com>
13427
13428 Lexical-binding cleanup.
13429
13430 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
13431 (5x5-make-mutate-best):
13432 * play/fortune.el (fortune-in-buffer):
13433 * play/gomoku.el (gomoku-init-display):
13434 * play/solitaire.el (solitaire, solitaire-do-check):
13435 * play/tetris.el (tetris-default-update-speed-function):
13436 Mark unused parameters.
13437
13438 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
13439 (bubbles--shift): Remove unused variable `char-org'.
13440 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
13441 (bubbles--show-images): Remove unused variable `char'.
13442
13443 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
13444 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
13445 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
13446 (decipher-analyze-buffer): Use ?\s.
13447 (decipher-make-checkpoint): Remove unused variable `mapping'.
13448
13449 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
13450
13451 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
13452 Remove unused variable `result'; use `let'.
13453
13454 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
13455 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
13456 (gametree-children-shown-p, gametree-compute-reduced-score):
13457 Use `ignore-errors'.
13458
13459 * play/handwrite.el (ps-lpr-switches): Declare.
13460 (handwrite): Remove unused variables `pmin' and `lastp'.
13461
13462 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
13463
13464 * play/landmark.el (landmark-init-display)
13465 (landmark-update-naught-weights): Mark unused parameters.
13466 (landmark-y): Remove unused variable `noise'. Simplify.
13467 (landmark-human-plays): Remove unused variable `score'.
13468
13469 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
13470 (mpuz-try-proposal): Remove unused variable `game'.
13471
13472 * play/zone.el (life-patterns): Declare.
13473
80f499c7
JB
134742011-04-20 Juanma Barranquero <lekktu@gmail.com>
13475
13476 * vc/vc.el (ediff-vc-internal): Declare function.
13477
024ff170
SM
134782011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13479
c0a193ea
SM
13480 * shell.el: Use lexical-binding and std completion UI.
13481 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
13482 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
13483 comint-preoutput-filter-functions rather than on
13484 comint-output-filter-functions.
13485 (shell-command-completion, shell--command-completion-data)
13486 (shell-filename-completion, shell-environment-variable-completion)
13487 (shell-c-a-p-replace-by-expanded-directory): New functions.
13488 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
13489 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
13490 (shell-dynamic-complete-environment-variable): Use them.
13491 (shell-dynamic-complete-as-environment-variable)
13492 (shell-dynamic-complete-as-command): Remove.
13493 (shell-match-partial-variable): Match past point.
13494 * comint.el: Clean up use of completion-at-point-functions.
13495 (comint-completion-at-point): New function.
13496 (comint-mode): Use it completion-at-point-functions.
13497 (comint-dynamic-complete): Make it obsolete.
13498 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
13499 (comint-c-a-p-replace-by-expanded-history): New function.
13500 (comint-dynamic-complete-functions)
13501 (comint-replace-by-expanded-history): Use it.
13502 * minibuffer.el (completion-table-with-terminator): Allow dynamic
13503 termination strings. Try harder to avoid second try-completion.
13504 (completion-in-region-mode-map): Disable bindings that don't work yet.
13505
2dbaa080
SM
13506 * comint.el: Use lexical-binding. Require CL.
13507 (comint-dynamic-complete-functions): Use comint-filename-completion.
13508 (comint-completion-addsuffix): Tweak custom type.
13509 (comint-filename-completion, comint--common-suffix)
13510 (comint--common-quoted-suffix, comint--table-subvert)
13511 (comint--complete-file-name-data): New functions.
13512 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
13513 (comint-dynamic-list-filename-completions): Use them.
13514 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 13515
2dbaa080
SM
13516 * minibuffer.el (completion-in-region-mode):
13517 Keep completion-in-region-mode--predicate global.
13518 (completion-in-region--postch):
13519 Assume completion-in-region-mode--predicate is not null.
13520
c79a6f38
SM
13521 * progmodes/flymake.el (flymake-start-syntax-check-process):
13522 Obey `dir'. Simplify.
13523
024ff170
SM
13524 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
13525 we're in VC after all.
13526
1c6c854e
CS
135272011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
13528
13529 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 13530 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
13531 (vc-version-diff): Use vc-diff-build-argument-list-internal.
13532
bed7f140
SM
135332011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13534
332e62ab
SM
13535 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
13536 add sanity check.
13537
bed7f140
SM
13538 * obsolete/erc-hecomplete.el: Make obsolete.
13539 * obsolete/: Standardize obsolescence info in the header.
13540
f195c582
GM
135412011-04-20 Glenn Morris <rgm@gnu.org>
13542
13543 * calendar/solar.el (solar-horizontal-coordinates):
13544 Use the longitude argument rather than `calendar-longitude'.
13545 (solar-date-next-longitude): Remove unused locals.
13546
cb79b8c0
VJL
135472011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13548
13549 * whitespace.el: New version 13.2.1.
13550
135512011-04-20 felix <EmacsWiki> (tiny change)
13552
d8e4b68b 13553 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
13554 switching between major modes on a file.
13555
602ea69d
SM
135562011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13557
13558 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
13559 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
13560 multi-line comments as well.
13561
06b60517
JB
135622011-04-19 Juanma Barranquero <lekktu@gmail.com>
13563
13564 Lexical-binding cleanup.
13565
13566 * arc-mode.el (archive-mode-revert):
13567 * cmuscheme.el (scheme-interactively-start-process):
13568 * custom.el (custom-initialize-delay):
13569 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
13570 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
13571 * emacs-lock.el (emacs-lock-clear-sentinel):
13572 * ezimage.el (defezimage):
13573 * follow.el (follow-avoid-tail-recenter):
13574 * fringe.el (set-fringe-mode-1):
13575 * generic-x.el (bat-generic-mode-compile):
13576 * help-mode.el (help-info-variable, help-do-xref)
13577 (help-mode-revert-buffer):
13578 * help.el (view-emacs-todo):
13579 * iswitchb.el (iswitchb-completion-help):
13580 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
13581 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
13582 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
13583 * locate.el (locate-update):
13584 * longlines.el (longlines-encode-region)
13585 (longlines-after-change-function):
13586 * outline.el (outline-isearch-open-invisible):
13587 * ps-def.el (declare-function, charset-dimension, char-width)
13588 (encode-char):
13589 * ps-mule.el (ps-mule-plot-string):
13590 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
13591 (recentf-edit-list-select, recentf-edit-list-validate)
13592 (recentf-open-files-action):
13593 * rect.el (delete-whitespace-rectangle-line)
13594 (rectangle-number-line-callback):
13595 * register.el (window-configuration-to-register)
13596 (frame-configuration-to-register):
13597 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
13598 * select.el (xselect-convert-to-string, xselect-convert-to-length)
13599 (xselect-convert-to-targets, xselect-convert-to-delete)
13600 (xselect-convert-to-filename, xselect-convert-to-charpos)
13601 (xselect-convert-to-lineno, xselect-convert-to-colno)
13602 (xselect-convert-to-os, xselect-convert-to-host)
13603 (xselect-convert-to-user, xselect-convert-to-class)
13604 (xselect-convert-to-name, xselect-convert-to-integer)
13605 (xselect-convert-to-atom, xselect-convert-to-identity):
13606 * subr.el (declare, ignore, process-kill-without-query)
13607 (text-clone-maintain):
13608 * terminal.el (te-get-char, te-tic-sentinel):
13609 * tool-bar.el (tool-bar-make-keymap):
13610 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
13611 * type-break.el (type-break-mode, type-break-noninteractive-query):
13612 * view.el (View-back-to-mark):
13613 * wid-browse.el (widget-browse-action, widget-browse-widget)
13614 (widget-browse-widgets, widget-browse-sexp):
13615 * widget.el (define-widget-keywords):
13616 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
13617 Mark unused parameters.
13618
13619 * align.el (align-adjust-col-for-rule): Mark unused parameter.
13620 (align-areas): Remove unused variable `look'.
13621 (align-region): Remove unused variables `real-end' and `pos-list'.
13622
13623 * apropos.el (apropos-score-doc): Remove unused variable `i'.
13624
13625 * bindings.el (mode-line-modified, mode-line-remote):
13626 Mark unused parameters.
13627 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
13628
13629 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
13630 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
13631
13632 * comint.el (comint-history-isearch-pop-state)
13633 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
13634 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
13635 (comint-substitute-in-file-name): Doc fix.
13636
13637 * completion.el (cmpl-statistics-block): Mark unused parameter.
13638 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
13639 (save-completions-to-file, load-completions-from-file):
13640 Remove unused local variable `e'.
13641
13642 * composite.el (compose-chars): Remove unused variable `len'.
13643 (lgstring-insert-glyph): Remove unused variable `g'.
13644 (compose-glyph-string): Remove unused variables `ascent',
13645 `descent', `lbearing' and `rbearing'.
13646 (compose-glyph-string-relative): Remove unused variables
13647 `lbearing', `rbearing' and `wadjust'.
13648 (compose-gstring-for-graphic): Remove unused variables `header',
13649 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
13650 (compose-gstring-for-terminal): Remove unused variables `header'
13651 and `nchars'. Use `let', not `let*'.
13652
13653 * cus-edit.el (Custom-set, Custom-save, custom-reset)
13654 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
13655 (Custom-buffer-done, custom-buffer-create-internal)
13656 (custom-browse-visibility-action, custom-browse-group-tag-action)
13657 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
13658 (widget-magic-mouse-down-action, custom-toggle-parent)
13659 (custom-add-parent-links, custom-toggle-hide-variable)
13660 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
13661 (custom-toggle-hide-face, face, hook, custom-group-link-action)
13662 (custom-face-menu-create, custom-variable-menu-create, get)
13663 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
13664 (custom-reset-standard-save-and-update): Remove unused variable `value'.
13665 (customize-apropos): Remove unused variable `tests'.
13666 (custom-group-value-create): Remove unused variable `hidden-p'.
13667 (sort-fold-case): Declare.
13668
13669 * cus-theme.el (custom-reset-standard-faces-list)
13670 (custom-reset-standard-variables-list): Declare.
13671 (customize-create-theme, custom-theme-revert, custom-theme-write)
13672 (custom-theme-choose-mode, customize-themes, custom-theme-save):
13673 Mark unused parameters.
13674
13675 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
13676
13677 * delim-col.el (delimit-columns-max): Move defvar before first use.
13678
13679 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 13680 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
13681
13682 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
13683 (auto-insert): Declare.
13684 (desktop-restore-file-buffer): Rename desktop-* parameters;
13685 mark unused ones.
13686 (desktop-create-buffer): Rename desktop-* parameters and bind them.
13687 (desktop-buffer): Rename desktop-* parameters.
13688
13689 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
13690 (dframe-reposition-frame-xemacs, dframe-help-echo)
13691 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
13692 Mark unused parameters.
13693
13694 * dired-aux.el (backup-extract-version-start, overwrite-query)
13695 (overwrite-backup-query, rename-regexp-query)
13696 (rename-non-directory-query): Declare.
13697 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
13698 (dired-add-entry): Remove unused variable `orig-file-name'.
13699 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
13700 Use parameter PRESERVE-TIME instead of accessing dynamic variable
13701 `dired-copy-preserve-time' directly.
13702 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
13703 (dired-insert-subdir-newpos): Rename unused variable `pos'.
13704
13705 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
13706 (dired-virtual-revert, dired-make-relative-symlink):
13707 Mark unused parameters.
13708 (manual-program): Declare.
13709 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
13710 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
13711 wrapped in `with-no-warnings' to avoid replacing one warning by another.
13712
13713 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
13714
13715 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
13716
13717 * echistory.el (electric-history-in-progress, Helper-return-blurb):
13718 Declare.
13719
13720 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
13721
13722 * electric.el (Electric-command-loop): Rename parameter
13723 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
13724
13725 * expand.el (expand-in-literal): Remove unused variable `here'.
13726
13727 * facemenu.el (facemenu-add-new-color):
13728 Remove unused variable `docstring'.
13729
13730 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
13731 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
13732 (face-attr-construct): Mark unused parameter. Doc fix.
13733 (read-color): Remove unused variable `hex-string'.
13734
13735 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
13736 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
13737 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
13738 (display-buffer-other-frame): Remove unused variable `old-window'.
13739 (kill-buffer-hook): Declare.
13740 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
13741 Mark unused parameters.
13742 (after-find-file): Pass 1 to `auto-save-mode', not t.
13743
13744 * files-x.el (auto-insert): Declare.
13745 (modify-file-local-variable-prop-line): Remove unused variable `val'.
13746
13747 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 13748 variable `buf'. Mark unused parameter.
06b60517
JB
13749 (find-lisp-insert-directory): Mark unused parameter.
13750
13751 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
13752 (format-encode-region): Remove unused variables `cur-buf' and `result'.
13753 (format-common-tail): Remove, unused.
13754 (format-deannotate-region): Remove unused variable `loc'.
13755 (format-annotate-region): Remove unused variable `p'.
13756 (format-annotate-single-property-change): Remove unused variables
13757 `default' and `tail'.
13758
13759 * forms.el (read-file-filter): Declare.
13760 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
13761
13762 * frame.el (frame-creation-function-alist): Mark unused parameter.
13763 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
13764
13765 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
13766 Remove unused parameters.
13767 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
13768 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
13769
13770 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
13771 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
13772 (hfy-prepare-tag-map): Mark unused parameters.
13773 (htmlfontify-buffer): Use `called-interactively-p'.
13774
13775 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
13776 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
13777 (ibuffer-do-occur): Mark unused parameters.
13778 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
13779 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
13780
13781 * ibuffer.el: Don't quote `lambda'.
13782 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
13783 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
13784 Mark unused parameters.
13785
13786 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
13787 (ido-completing-read): Mark unused parameters.
13788 (ido-copy-current-word): Mark unused parameters;
13789 remove unused variable `name'.
13790 (ido-sort-merged-list): Remove unused parameter `dirs'.
13791
13792 * ielm.el (ielm-input-sender): Mark unused parameter.
13793 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
13794 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
13795 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
13796 `ielm-string' as a dynamic variable accessible from the IELM prompt.
13797 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
13798
13799 * image-dired.el (image-dired-display-thumbs): Remove unused
13800 variables `curr-file' and `count'.
13801 (image-dired-remove-tag): Remove unused variable `start'.
13802 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
13803 variable `curr-file'
13804 (image-dired-rotate-original): Remove unused variable `temp-file'.
13805 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
13806 Remove unused variable `file'.
13807 (image-dired-gallery-generate): Remove unused variable `curr'.
13808 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
13809
13810 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
13811
13812 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
13813
13814 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
13815
13816 * isearch.el (minibuffer-history-symbol): Declare.
13817 (isearch-edit-string): Remove unused variable `err'.
13818 (isearch-message-prefix, isearch-message-suffix):
13819 Mark unused parameters.
13820
13821 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
13822
13823 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
13824
13825 * makesum.el (double-column): Remove unused variable `cnt'.
13826
13827 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
13828 (ido-ignore-item-temp-list): Declare.
13829
13830 * mouse-drag.el (mouse-drag-throw): Remove unused variables
13831 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
13832 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
13833 (mouse-drag-drag): Remove unused variables `mouse-delta' and
13834 `mouse-col-delta'.
13835
13836 * mouse-sel.el (mouse-extend-internal):
13837 Remove unused variable `orig-window-frame'.
13838
13839 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
13840 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
13841 Move declarations before first use.
13842 (pcomplete-opt): Mark unused parameters; doc fix.
13843
13844 * proced.el (proced-revert): Mark unused parameter.
13845 (proced-send-signal): Remove unused variable `err'.
13846
13847 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
13848 Rename parameter PREFIX-ARG to ARG.
13849 (ps-basic-plot-string, ps-basic-plot-whitespace):
13850 Mark unused parameters.
13851
13852 * replace.el (replace-count): Define.
13853 (occur-revert-function): Mark unused parameters.
13854 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
13855 (isearch-case-fold-search, isearch-string): Declare.
13856 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
13857 bind `case-fold-search'. Remove unused variables `beg' and `end',
13858 and simplify.
13859 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
13860 COUNT and bind `replace-count'.
13861 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
13862 to COUNT.
13863
13864 * savehist.el (print-readably, print-string-length): Declare.
13865
13866 * shadowfile.el (shadow-expand-cluster-in-file-name):
13867 Remove unused variable `cluster'.
13868 (shadow-copy-file): Remove unused variable `i'.
13869 (shadow-noquery, shadow-clusters, shadow-site-cluster)
13870 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
13871 (shadow-define-literal-group, shadow-define-regexp-group)
13872 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
13873
13874 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
13875 (shell): Use `called-interactively-p'.
13876 (shell-directory-tracker): Remove unused variable `chdir-failure'.
13877
13878 * simple.el (compilation-context-lines, comint-file-name-quote-list)
13879 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
13880 (delete-backward-char): Remove unused variable `ocol'.
13881 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
13882 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
13883 (event-apply-hyper-modifier, event-apply-shift-modifier)
13884 (event-apply-control-modifier, event-apply-meta-modifier):
13885 Mark unused parameters.
13886 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
13887 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
13888
13889 * speedbar.el (speedbar-ignored-directory-expressions)
13890 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
13891 (speedbar-find-file, speedbar-dir-follow)
13892 (speedbar-directory-buttons-follow, speedbar-tag-find)
13893 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
13894 (speedbar-buffers-line-directory, speedbar-buffer-click):
13895 Mark unused parameters.
13896 (speedbar-tag-file): Remove unused variable `mode'.
13897 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
13898
13899 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
13900
13901 * talk.el (talk): Remove unused variable `display'.
13902
13903 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
13904 (tar-write-region-annotate): Mark unused parameter.
13905
13906 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
13907 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
13908 Declare them, wrapped in `with-no-warnings' to avoid replacing one
13909 warning by another.
13910
13911 * time-stamp.el (time-stamp-string-preprocess):
13912 Remove unused variable `require-padding'.
13913
13914 * tree-widget.el (widget-glyph-enable): Declare.
13915 (tree-widget-action): Mark unused parameter.
13916
13917 * w32-fns.el (x-get-selection): Mark unused parameter.
13918 (autoload-make-program, generated-autoload-file): Declare.
13919
13920 * wdired.el (wdired-revert): Mark unused parameters.
13921 (wdired-xcase-word): Remove unused variable `err'.
13922
13923 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
13924 (whitespace-help-scroll): Remove unused variable `data-help'.
13925
13926 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
13927 (widget-image-insert, widget-after-change, default)
13928 (widget-default-format-handler, widget-default-notify)
13929 (widget-default-prompt-value, widget-info-link-action)
13930 (widget-url-link-action, widget-function-link-action)
13931 (widget-variable-link-action, widget-file-link-action)
13932 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
13933 (widget-field-prompt-internal, widget-field-action, widget-field-match)
13934 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
13935 (widget-insert-button-action, widget-delete-button-action, visibility)
13936 (widget-documentation-link-action, widget-documentation-string-action)
13937 (widget-const-prompt-value, widget-regexp-match, symbol)
13938 (widget-coding-system-prompt-value)
13939 (widget-key-sequence-value-to-external, sexp)
13940 (widget-sexp-value-to-internal, character, vector, cons)
13941 (widget-choice-prompt-value, widget-boolean-prompt-value)
13942 (widget-color--choose-action): Mark unused parameters.
13943 (widget-item-match-inline, widget-choice-match-inline)
13944 (widget-checklist-match, widget-checklist-match-inline)
13945 (widget-group-match): Rename parameter VALUES to VALS.
13946 (widget-field-value-set): Remove unused variable `size'.
13947 (widget-color-action): Remove unused variables `value' and `start'.
13948
13949 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 13950 variable `dir'. Doc fix.
06b60517
JB
13951 (windmove-find-other-window): Don't pass it.
13952
13953 * window.el (count-windows): Mark unused parameter.
13954 (bw-adjust-window): Remove unused variable `err'.
13955
13956 * woman.el (woman-file-name): Remove unused variable `default'.
13957 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
13958 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
13959 (global-font-lock-mode): Declare.
13960 (woman-decode-region): Mark unused parameter.
13961 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
13962
13963 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
13964 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
13965 (x-dnd-handle-moz-url): Remove unused variable `title'.
13966 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
13967
13968 * xml.el (xml-parse-tag, xml-parse-attlist):
13969 Remove unused variable `pos'.
13970
bc4f7f3d
GM
139712011-04-19 Glenn Morris <rgm@gnu.org>
13972
13973 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
13974 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
13975 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
13976 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
13977 * calendar/cal-html.el (cal-html-insert-minical):
13978 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
13979 (calendar-mark-date-pattern):
13980 Prefix "unused" locals.
13981
13982 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
13983 optional argument `style'.
13984
13985 * calendar/appt.el (appt-make-list):
13986 * calendar/cal-china.el (calendar-chinese-date-string):
13987 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
13988 (diary-hebrew-yahrzeit):
13989 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
13990 * calendar/calendar.el (calendar-generate-window):
13991 * calendar/time-date.el (time-to-days):
13992 Remove unused local variables.
13993
16a43933
CY
139942011-04-18 Chong Yidong <cyd@stupidchicken.com>
13995
13996 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
13997 glyphless-char-display table.
13998 (tabulated-list-glyphless-char-display): New var.
13999
7eed1860
SS
140002011-04-18 Sam Steingold <sds@gnu.org>
14001
14002 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
14003 to acknowledgments.
14004
4d2d1ccd
GM
140052011-04-17 Glenn Morris <rgm@gnu.org>
14006
14007 * calendar/diary-lib.el (diary-sexp-entry):
14008 * calendar/holidays.el (holiday-sexp):
14009 Set debug-on-error rather than the removed stack-trace-on-error.
14010
239da61d
GM
140112011-04-16 Glenn Morris <rgm@gnu.org>
14012
14013 * progmodes/f90.el: Use lexical-binding.
14014 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
14015
8b05752a
SM
140162011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14017
daca8ba5
SM
14018 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
14019 (mail-mode): Setup mailalias completion here instead.
14020 * mail/mailalias.el: Use lexical-binding.
14021 (pattern, mailalias-done): Declare dynamic.
14022 (mail-completion-at-point-function): New function, from mail-complete.
14023 (mail-complete): Use it.
14024 (mail-completion-expand): New function.
14025 (mail-get-names): Use it.
14026 (mail-directory, mail-directory-process, mail-directory-stream):
14027 Don't use `pattern' for lexically bound arg.
14028
6f542485
SM
14029 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
14030
037e7c3f
SM
14031 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
14032 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
14033 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
14034
8b05752a
SM
14035 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
14036 (byte-save-window-excursion, byte-temp-output-buffer-setup)
14037 (byte-interactive-p): Define them again, for use when inlining
14038 old code.
14039
49093f60
JB
140402011-04-15 Juanma Barranquero <lekktu@gmail.com>
14041
14042 * loadup.el: Use `string-to-number', not `string-to-int'.
14043
b5b8e7de
SM
140442011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14045
14046 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
14047 gud-gdb-complete-command.
14048 (gud-gdb-completions): New function, from gud-gdb-complete-command.
14049 (gud-gdb-completion-at-point): New function.
14050 (gud-gdb-completions): Remove.
14051
f42efeb5
MA
140522011-04-14 Michael Albinus <michael.albinus@gmx.de>
14053
49093f60
JB
14054 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
14055 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
14056 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
14057 whether `executable-find' is bound.
f42efeb5
MA
14058
14059 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
14060
e240cc21
SM
140612011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
14062
14063 * minibuffer.el (completion-in-region-mode-predicate)
14064 (completion-in-region-mode--predicate): New vars.
14065 (completion-in-region, completion-in-region--postch)
14066 (completion-in-region-mode): Use them.
14067 (completion--capf-wrapper): Also return the hook function.
14068 (completion-at-point, completion-help-at-point):
14069 Adjust and provide a predicate.
c2bd2ab0
SM
14070
14071 Preserve arg names for advice of subr and lexical functions (bug#8457).
14072 * help-fns.el (help-function-arglist): Consolidate the subr and
14073 new-byte-code cases. Add argument `preserve-names' to extract names
14074 from the docstring when needed.
14075 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
14076 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
14077 (ad-arglist): Use help-function-arglist's new arg.
14078 (ad-definition-type): Use cond.
14079
c183f693
JB
140802011-04-13 Juanma Barranquero <lekktu@gmail.com>
14081
06641a47
JB
14082 * autorevert.el (auto-revert-handler):
14083 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
14084 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
14085 Don't quote lambda.
14086
c183f693
JB
14087 * image-mode.el (image-transform-set-scale):
14088 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
14089
1e3b6001
G
140902011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
14091
14092 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 14093 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
14094 Upgrades via gnutls-cli are too slow to be done opportunistically.
14095
2d6af8dd
JB
140962011-04-12 Juanma Barranquero <lekktu@gmail.com>
14097
14098 * dframe.el (dframe-current-frame): Remove spurious quote.
14099
c0749a51
GM
141002011-04-12 Glenn Morris <rgm@gnu.org>
14101
088d0d61
GM
14102 * calendar/cal-tex.el (cal-tex-end-document):
14103 Try to automatically use latin1 input if needed.
14104
c0749a51
GM
14105 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
14106 Don't try to cons a mark onto an empty element.
14107
5c90fde0
LL
141082011-04-11 Leo Liu <sdl.web@gmail.com>
14109
14110 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
14111 buffers.
14112 (ido-kill-buffer-at-head): Support killing virtual buffers.
14113
369e974d
CY
141142011-04-10 Chong Yidong <cyd@stupidchicken.com>
14115
14116 * minibuffer.el (completion-show-inline-help): New var.
14117 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
14118 (minibuffer-force-complete, minibuffer-complete-word):
14119 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
14120
14121 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
14122 to avoid interference from inline help (Bug#5849).
14123
37f1c930
LL
141242011-04-10 Leo Liu <sdl.web@gmail.com>
14125
099c39a4
JB
14126 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14127 Fix typo.
37f1c930 14128
a32d4040
CY
141292011-04-09 Chong Yidong <cyd@stupidchicken.com>
14130
14131 * image-mode.el (image-toggle-display-image): Signal an error if
14132 not in Image mode.
14133 (image-transform-mode, image-transform-resize)
14134 (image-transform-set-rotation): Doc fix.
daca8ba5 14135 (image-transform-set-resize): Delete.
a32d4040
CY
14136 (image-transform-set-scale, image-transform-fit-to-height)
14137 (image-transform-fit-to-width): Handle image-toggle-display-image
14138 and image-transform-resize directly.
14139
099c39a4 141402011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
14141
14142 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
14143 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
14144 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
14145 (doc-view-mode-map): Add bindings for the new functions.
14146
099c39a4 141472011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 14148
4d61f28d 14149 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
14150 Fix typo in docstring.
14151
3726838a
EZ
141522011-04-08 Eli Zaretskii <eliz@gnu.org>
14153
04f33f1e
EZ
14154 * files.el (file-size-human-readable): Produce one digit after
14155 decimal, like "ls -lh" does.
14156
14157 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
14158 the file size representation.
14159
3726838a
EZ
14160 * simple.el (list-processes): If async subprocesses are not
14161 available, error out with a clear error message.
14162
cbb59342
CY
141632011-04-08 Chong Yidong <cyd@stupidchicken.com>
14164
14165 * help.el (help-form-show): New function, to be called from C.
14166 Put help-form output in a buffer named differently than *Help*.
14167
e3971c44
EZ
141682011-04-08 Eli Zaretskii <eliz@gnu.org>
14169
14170 * files.el (file-size-human-readable): New function.
14171
14172 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
14173 computing the representation inline. Don't require `cl'.
14174
12544bbe
GM
141752011-04-08 Glenn Morris <rgm@gnu.org>
14176
a1de6c6a
GM
14177 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
14178
3c4671f4
GM
14179 * net/browse-url.el (browse-url-firefox):
14180 Test system-type, not system-configuration.
14181
b605679c
GM
14182 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
14183 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
14184 Use log-edit-empty-buffer-p. (Bug#7598)
14185
56442f0c
GM
14186 * net/rlogin.el (rlogin-process-connection-type): Simplify.
14187 (rlogin-mode-map): Initialize in the defvar.
14188 (rlogin): Use ignore-errors.
14189
12544bbe
GM
14190 * replace.el (occur-mode-map): Some fixes for menu items.
14191
eb237b0f
AH
141922011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
14193
14194 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
14195
7d668f2c
CY
141962011-04-06 Chong Yidong <cyd@stupidchicken.com>
14197
e67a13ab
CY
14198 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
14199 issuing unused warnings.
14200
14201 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
14202 macro directly.
14203
7d668f2c
CY
14204 * simple.el: Lisp reimplement of list-processes. Based on an
14205 earlier reimplementation by Leo Liu, but using tabulated-list.el.
14206 (process-menu-mode): New major mode.
14207 (list-processes--refresh, list-processes):
14208 (process-menu-visit-buffer): New functions.
14209
14210 * files.el (save-buffers-kill-emacs): Don't assume any return
14211 value of list-processes, which is undocumented anyway.
14212
a83ec3c9
CY
142132011-04-06 Chong Yidong <cyd@stupidchicken.com>
14214
14215 * emacs-lisp/tabulated-list.el: New file.
14216
e91a96fe
CY
14217 * emacs-lisp/package.el: Use Tabulated List mode.
14218 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
14219 (package-menu-mode): Derive from tabulated-list-mode. Set up the
14220 table format using Tabulated List mode variables.
14221 (package--push): New macro, replacing package-list-maybe-add.
14222 (package-menu--generate): Use package--push. Renamed from
14223 package--generate-package-list.
14224 (package-menu-refresh, list-packages): Use it.
daca8ba5 14225 (package-menu--print-info): Rename from package-print-package.
e91a96fe 14226 Return insertion data instead of inserting it directly.
099c39a4
JB
14227 (package-menu-describe-package, package-menu-execute):
14228 Use tabulated-list-get-id.
e91a96fe
CY
14229 (package-menu-mark-delete, package-menu-mark-install)
14230 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
14231 (package-menu-mark-obsolete-for-deletion):
14232 Use tabulated-list-put-tag.
e91a96fe
CY
14233 (package--list-packages, package-menu-revert)
14234 (package-menu-get-package, package-menu-get-version)
14235 (package-menu-sort-by-column): Functions deleted.
14236 (package-menu-package-list, package-menu-sort-key): Vars deleted.
14237 (package-menu--status-predicate, package-menu--version-predicate)
14238 (package-menu--name-predicate)
14239 (package-menu--description-predicate): Handle arguments in the
14240 Tabulated List format.
14241 (package-list-packages-no-fetch): Call list-packages.
14242
3e214b50
JB
142432011-04-06 Juanma Barranquero <lekktu@gmail.com>
14244
14245 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 14246 (after-find-file): Don't bind it.
3e214b50
JB
14247 (revert-buffer-in-progress-p): New variable.
14248 (revert-buffer): Bind it.
14249 Pass nil for `after-find-file-from-revert-buffer'.
14250
14251 * saveplace.el (save-place-find-file-hook): Use new variable
14252 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
14253
3f0f1700
GM
142542011-04-06 Glenn Morris <rgm@gnu.org>
14255
c0274801
GM
14256 * Makefile.in (AUTOGEN_VCS): New variable.
14257 (autoloads): Use $AUTOGEN_VCS.
14258
3f0f1700
GM
14259 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
14260 * calendar/calendar.el (calendar-mode-map):
14261 Check for toolkit scroll bars. (Bug#8305)
14262
41ea9e48
CY
142632011-04-05 Chong Yidong <cyd@stupidchicken.com>
14264
14265 * minibuffer.el (completion-in-region--postch)
14266 (completion-in-region-mode): Remove unnecessary messages.
14267
6194c800
JB
142682011-04-05 Juanma Barranquero <lekktu@gmail.com>
14269
33256f14
JB
14270 * font-lock.el (font-lock-refresh-defaults):
14271 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
14272 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
14273
6194c800
JB
14274 * info.el (Info-directory-list, Info-read-node-name-2)
14275 (Info-split-parameter-string): Doc fixes.
14276 (Info-virtual-nodes): Reflow docstring.
14277 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
14278 (Info-apropos-toc-nodes, info-finder, Info-get-token)
14279 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
14280 Fix typos in docstrings.
14281 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
14282 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
14283 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
14284 (Info-restore-desktop-buffer): Mark unused parameters.
14285 (Info-directory-find-file, Info-directory-find-node)
14286 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
14287 (Info-virtual-index-find-node, Info-apropos-find-file)
14288 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 14289 Mark unused parameters; fix typos in docstrings.
6194c800
JB
14290 (Info-virtual-index): Remove unused local variable `nodename'.
14291
b87a8200 142922011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 14293
b87a8200
DD
14294 * net/rcirc.el: Update my e-mail address.
14295 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 14296
3b2ff876
CY
142972011-04-05 Chong Yidong <cyd@stupidchicken.com>
14298
14299 * startup.el (command-line): Save the cursor's theme-face
14300 directly, instead of using face-override-spec.
14301
14302 * custom.el (load-theme): Minor optimization in assigning faces.
14303
8d17e7ca
JB
143042011-04-04 Juanma Barranquero <lekktu@gmail.com>
14305
14306 * help-fns.el (describe-variable): Complete all variables having
14307 documentation, including keywords.
14308 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
14309
2fbc1934
JB
143102011-04-04 Juanma Barranquero <lekktu@gmail.com>
14311
14312 Convert to lexical-binding.
14313
14314 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
14315 (bs--get-marked-string, bs--get-modified-string)
14316 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
14317 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
14318 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
14319
14320 * ehelp.el (electric-help-execute-extended)
14321 (electric-help-ctrl-x-prefix):
14322 * hexl.el (hexl-revert-buffer-function):
14323 * linum.el (linum-after-change, linum-after-scroll):
14324 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
14325
14326 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
14327
74f50695
DU
143282011-04-04 Daiki Ueno <ueno@unixuser.org>
14329
14330 * epa-dired.el:
14331 * epa-mail.el:
14332 * epa-hook.el:
14333 * epa-file.el:
14334 * epa.el:
14335 * epg.el: Use lexical binding.
14336
c11325f7
CY
143372011-04-03 Chong Yidong <cyd@stupidchicken.com>
14338
0d9e9a12
CY
14339 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
14340
c11325f7 14341 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
14342 dictionary case for flyspell-mark-duplications-exceptions.
14343 Use regexp matching for languages.
c11325f7
CY
14344 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
14345 default dictionary (Bug#7926).
14346
da91b5f2
CY
143472011-04-02 Chong Yidong <cyd@stupidchicken.com>
14348
099c39a4
JB
14349 * emacs-lisp/package.el (package--with-work-buffer):
14350 Recognize https URLs.
da91b5f2 14351
099c39a4
JB
14352 * net/network-stream.el: Move from gnus/proto-stream.el.
14353 Change prefix to network-stream throughout.
da91b5f2
CY
14354 (open-protocol-stream): Merge into open-network-stream, leaving
14355 open-protocol-stream as an alias. Handle nil BUFFER args.
14356
14357 * subr.el (open-network-stream): Move to net/network-stream.el.
14358
afa8e9f6
GM
143592011-04-02 Glenn Morris <rgm@gnu.org>
14360
1d2e369d
GM
14361 * find-dired.el (find-exec-terminator): New option.
14362 (find-ls-option): Test for -ls support.
14363 (find-ls-subdir-switches): Test for -b in find-ls-option.
14364 (find-dired, find-grep-dired): Doc fixes.
14365 (find-dired): Use find-exec-terminator.
14366
8abb7da8 14367 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
14368 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
14369 (find-name-arg): Remove purecopy.
8abb7da8 14370
f3ca7378
GM
14371 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
14372 (grep-compute-defaults): Check for `-exec COMMAND +' support.
14373 Set grep-find-use-xargs, grep-find-command, and grep-find-template
14374 accordingly. Don't add the null-device if not needed.
14375
afa8e9f6
GM
14376 * files.el (save-some-buffers): Doc fix.
14377
35eae264
EZ
143782011-04-02 Eli Zaretskii <eliz@gnu.org>
14379
14380 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
14381
26b51db5
JB
143822011-04-01 Juanma Barranquero <lekktu@gmail.com>
14383
14384 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
14385 Use `dolist' rather than `mapcar'.
14386
7200d79c
SM
143872011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
14388
03408648 14389 Add lexical binding.
7200d79c 14390
03408648
SM
14391 * subr.el (apply-partially): Use new closures rather than CL.
14392 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
14393 (dolist, dotimes): Use slightly different expansion for lexical code.
14394 (functionp): Move to C.
14395 (letrec): New macro.
14396 (with-wrapper-hook): Use it and apply-partially instead of CL.
14397 (eval-after-load): Preserve lexical-binding.
14398 (save-window-excursion, with-output-to-temp-buffer): Turn them
14399 into macros.
7200d79c 14400
03408648
SM
14401 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
14402
14403 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
14404 than the arglist.
14405 (help-add-fundoc-usage): Don't add `Not documented'.
14406 (help-function-arglist): Handle closures, subroutines, and new
14407 byte-code-functions.
14408 (help-make-usage): Remove leading underscores.
14409 (describe-function-1): Handle closures.
14410 (describe-variable): Use special-variable-p for completion.
14411
14412 * files.el (lexical-binding): Declare safe.
f488fb65 14413
03408648
SM
14414 * emacs-lisp/pcase.el: Don't use destructuring-bind.
14415 (pcase--memoize): Rename from pcase-memoize. Change weakness.
14416 (pcase): Add `let' pattern.
14417 Change memoization so it actually works.
14418 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
14419 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
14420 <let>: New case.
f488fb65 14421
03408648
SM
14422 * emacs-lisp/macroexp.el: Use lexical binding.
14423 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
14424 Don't convert ' to #' without checking that it's indeed quoting
14425 a lambda.
14426
14427 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 14428 Use eval-sexp-add-defvars.
03408648
SM
14429 (eval-sexp-add-defvars): New fun.
14430
14431 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
14432
14433 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
14434 Don't autoload.
14435 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
14436 than the internal `byte-compile-lambda'.
14437 (defmethod): Don't hide code under quotes.
14438 (eieio-defmethod): New `code' argument.
14439
14440 * emacs-lisp/eieio-comp.el: Remove.
14441
14442 * emacs-lisp/edebug.el (edebug-eval-defun)
14443 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
14444 (edebug-toggle): Avoid `eval'.
14445
14446 * emacs-lisp/disass.el (disassemble-internal): Handle new
14447 `closure' objects.
14448 (disassemble-1): Handle new byte codes.
14449
14450 * emacs-lisp/cl.el (pushnew): Silence warning.
14451
14452 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
14453 (cl-byte-compile-throw): Remove.
14454 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
14455
14456 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
14457 closures.
14458
14459 * emacs-lisp/cconv.el: New file.
14460
14461 * emacs-lisp/bytecomp.el: Use lexical binding instead of
14462 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
14463 (byte-compile-initial-macro-environment):
14464 Handle declare-function here.
14465 (byte-compile--lexical-environment): New var.
14466 (byte-stack-ref, byte-stack-set, byte-discardN)
14467 (byte-discardN-preserve-tos): New lap codes.
14468 (byte-interactive-p): Don't use any more.
14469 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
14470 New macros.
14471 (byte-compile-lapcode): Use them and handle new lap codes.
14472 (byte-compile-obsolete): Remove.
14473 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
14474 (byte-compile-arglist-warn): Check late def of inlinable funs.
14475 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
14476 since they should have been expanded by now.
14477 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
14478 (byte-compile-from-buffer): Remove unused second arg.
14479 (byte-compile-preprocess): New function.
14480 (byte-compile-toplevel-file-form): New function to distinguish
14481 file-form calls from outside from file-form calls from hunk-handlers.
14482 (byte-compile-file-form): Simplify.
14483 (byte-compile-file-form-defsubst): Remove.
14484 (byte-compile-file-form-defmumble): Simplify now that
14485 byte-compile-lambda always returns a byte-code-function.
14486 (byte-compile): Preprocess.
14487 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
14488 Remove, not used any more.
14489 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
14490 (byte-compile-make-args-desc): New funs.
14491 (byte-compile-lambda): Handle lexical functions. Always return
14492 a byte-code-function.
14493 (byte-compile-reserved-constants): New var, to make up room for
14494 closed-over variables.
14495 (byte-compile-constants-vector): Obey it.
14496 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
14497 (byte-compile-macroexpand-declare-function): New function.
14498 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
14499 byte-code-functions.
14500 (byte-compile-form): Check obsolescence here.
14501 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
14502 (byte-compile-variable-ref): Remove.
14503 (byte-compile-dynamic-variable-op): New fun.
14504 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
14505 (byte-compile-variable-set): New funs.
14506 (byte-compile-discard): Add 2 args.
14507 (byte-compile-stack-ref, byte-compile-stack-set)
14508 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
14509 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
14510 macroexpand-all instead.
14511 (byte-compile-quote-form): Remove.
14512 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
14513 (byte-compile-bind, byte-compile-unbind): New funs.
14514 (byte-compile-let): Handle let* and lexical binding.
14515 (byte-compile-let*): Remove.
14516 (byte-compile-catch, byte-compile-unwind-protect)
14517 (byte-compile-track-mouse, byte-compile-condition-case):
14518 Handle a new :fun-body form, used for lexical scoping.
14519 (byte-compile-save-window-excursion)
14520 (byte-compile-with-output-to-temp-buffer): Remove.
14521 (byte-compile-defun): Simplify.
14522 (byte-compile-stack-adjustment): New fun.
14523 (byte-compile-out): Use it.
14524 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
14525
14526 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
14527 handler any more.
14528
14529 * emacs-lisp/byte-opt.el: Use lexical binding.
14530 (byte-inline-lapcode): Remove (to bytecomp).
14531 (byte-compile-inline-expand): Pay attention to inlining to/from
14532 lexically bound code.
14533 (byte-compile-unfold-lambda): Don't handle byte-code-functions
14534 any more.
14535 (byte-optimize-form-code-walker): Don't handle save-window-excursion
14536 any more and don't call compiler-macros.
14537 (byte-compile-splice-in-already-compiled-code): Remove.
14538 (byte-code): Don't inline any more.
14539 (disassemble-offset): Receive `bytes' as argument rather than via
14540 dynamic scoping.
14541 (byte-compile-tag-number): Declare before first use.
14542 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
14543 `return' even if make-spliceable.
14544 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
14545 obsolete interactive-p.
14546 (byte-optimize-lapcode): Optimize new lap-codes.
14547 Don't trip up on new form of `byte-constant' lap code.
14548
14549 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
14550
14551 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
14552
14553 * custom.el (custom-initialize-default, custom-declare-variable):
14554 Use `defvar'.
14555
14556 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
14557 New variables.
14558 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
14559 (COMPILE_FIRST): Add macroexp and cconv.
14560 * makefile.w32-in: Mirror changes in Makefile.in.
14561
14562 * vc/cvs-status.el:
14563 * vc/diff-mode.el:
14564 * vc/log-edit.el:
14565 * vc/log-view.el:
14566 * vc/smerge-mode.el:
14567 * textmodes/bibtex-style.el:
14568 * textmodes/css.el:
14569 * startup.el:
14570 * uniquify.el:
da91b5f2
CY
14571 * minibuffer.el:
14572 * newcomment.el:
14573 * reveal.el:
14574 * server.el:
14575 * mpc.el:
14576 * emacs-lisp/smie.el:
14577 * doc-view.el:
14578 * dired.el:
03408648
SM
14579 * abbrev.el: Use lexical binding.
14580
0f0c1f27
EZ
145812011-04-01 Eli Zaretskii <eliz@gnu.org>
14582
14583 * info.el (info-display-manual): New function.
14584
c82b2579
SM
145852011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
14586
14587 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
14588
221ddf68
TH
145892011-03-31 Tassilo Horn <tassilo@member.fsf.org>
14590
14591 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 14592 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 14593
cba6e77e
GM
145942011-03-31 Glenn Morris <rgm@gnu.org>
14595
e040639f
GM
14596 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
14597
cba6e77e
GM
14598 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
14599
6d0f1c9e
CS
146002011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
14601
14602 * progmodes/python.el (python-default-interpreter)
14603 (python-python-command-args, python-jython-command-args)
14604 (python-which-shell, python-which-args, python-which-bufname)
14605 (python-file-queue, python-comint-output-filter-function)
14606 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
14607 variables and functions.
14608
3e2d70fd
SM
146092011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
14610
14611 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
14612 (completion-in-region-mode): New minor mode.
14613 (completion-in-region): Use it.
14614 (completion-in-region--data, completion-in-region-mode-map): New vars.
14615 (completion-in-region--postch): New function.
14616 (completion--capf-misbehave-funs, completion--capf-safe-funs):
14617 New vars.
14618 (completion--capf-wrapper): New function.
14619 (completion-at-point): Use it to track well-behavedness of
14620 hook functions.
14621 (completion-help-at-point): New command.
14622
f3e4086c
JM
146232011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
14624
14625 * vc/add-log.el (add-change-log-entry): Don't use whitespace
14626 syntax class to search for whitespace on a single line
14627 (Message-ID: <4D938140.4030905@redhat.com>).
14628
eb7ffc14
LL
146292011-03-30 Leo Liu <sdl.web@gmail.com>
14630
14631 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
14632 New commands.
14633 (edit-abbrevs-map): Bind them here.
14634 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
14635
d806ab68
KM
146362011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
14637
14638 * allout.el (allout-hide-by-annotation, allout-flag-region):
14639 Reduce possibility of overlay leakage by making them volatile.
14640
14641 * allout-widgets.el (allout-widgets-tally): Define as nil so the
14642 hash is not shared between buffers. Mode initialization is
14643 responsible for giving it a useful starting value.
14644 (allout-item-span): Reduce possibility of overlay leakage by
14645 making them volatile.
14646 (allout-widgets-count-buttons-in-region): Add diagnostic function
14647 for tracking down button overlay leaks.
14648
ea622834
LL
146492011-03-29 Leo Liu <sdl.web@gmail.com>
14650
14651 * ido.el (ido-read-internal): Use the default history var
14652 minibuffer-history if no HISTORY is specified.
14653
b62f8267
G
146542011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
14655
03408648
SM
14656 * net/imap.el (imap-shell-open, imap-process-connection-type):
14657 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
14658 Kerberos, SSL, other subprocesses.
14659
947b6566
LL
146602011-03-28 Leo Liu <sdl.web@gmail.com>
14661
14662 * abbrev.el (abbrev-table-empty-p): New function.
14663 (prepare-abbrev-list-buffer): Place empty abbrev tables after
14664 nonempty ones. (Bug#5937)
14665
5ffb62aa
JD
146662011-03-27 Jan Djärv <jan.h.d@swipnet.se>
14667
14668 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
14669
7a097943
LL
146702011-03-27 Leo Liu <sdl.web@gmail.com>
14671
14672 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
14673 for foreground and background colors.
14674 (ansi-color-make-color-map): Adapt.
14675
c5b40130
LL
146762011-03-25 Leo Liu <sdl.web@gmail.com>
14677
1f48f7d2
LL
14678 * midnight.el (midnight-time-float): Remove. Note it calculates
14679 the microsecond component incorrectly and seconds-to-time does the
14680 same job.
625897ec 14681 Remove redundant (require 'timer).
1f48f7d2 14682
c5b40130
LL
14683 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
14684 (ido-completions): Remove unused arguments. (Bug#8329)
14685
d86d2721
SM
146862011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
14687
14688 * minibuffer.el (completion--flush-all-sorted-completions):
14689 Remove itself from hook.
14690 (completion-at-point): Let the functions perform the completion
14691 immediately and return nil or t.
14692 * comint.el (comint-dynamic-complete-functions): Now identical to
14693 completion-at-point-functions.
14694 (comint-dynamic-list-input-ring): Remove unused var `index'.
14695 (comint--match-partial-filename, comint--unquote&expand-filename):
14696 New funs, split from comint-match-partial-filename.
14697 (comint-dynamic-complete): Use completion-at-point.
14698 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
14699
e8974c48
DA
147002011-03-24 Drew Adams <drew.adams@oracle.com>
14701
14702 * thingatpt.el: Support `defun'.
14703
def71b5e
LL
147042011-03-23 Leo Liu <sdl.web@gmail.com>
14705
cb5af48e
LL
14706 * abbrevlist.el: Move to obsolete/abbrevlist.el.
14707
def71b5e
LL
14708 * help-mode.el (help-mode-finish): Tweak regexp.
14709
927c53e7
GM
147102011-03-23 Glenn Morris <rgm@gnu.org>
14711
18d05bed
GM
14712 * eshell/esh-opt.el (eshell-eval-using-options):
14713 Do not bind unused local variable `eshell-option-stub'.
14714
927c53e7
GM
14715 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
14716
9d0da923
JB
147172011-03-22 Juanma Barranquero <lekktu@gmail.com>
14718
14719 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
14720 keymap variable in `with-no-warnings' to avoid a warning when the
14721 keymap has been already `defconst'ed.
14722
4b978a67
LL
147232011-03-22 Leo Liu <sdl.web@gmail.com>
14724
14725 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
14726 encode all chars in abbrevs; otherwise use emacs-mule or
14727 utf-8-emacs. (Bug#8308)
14728
5fd62452
JB
147292011-03-22 Juanma Barranquero <lekktu@gmail.com>
14730
0b1596c6
JB
14731 * simple.el (backward-delete-char-untabify):
14732 Avoid warning about using `delete-backward-char'.
14733
5fd62452
JB
14734 * image.el (image-type-file-name-regexps): Make it variable.
14735 `imagemagick-register-types' modifies it, and the user may want
14736 to add new extensions for known image types.
14737 (imagemagick-register-types): Throw error if not using ImageMagick.
14738
0b4e93f1
LL
147392011-03-22 Leo Liu <sdl.web@gmail.com>
14740
14741 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
14742 located before rcirc-prompt-end-marker.
14743 (rcirc-complete): Error if point is not after rcirc prompt.
14744 Handle the case when table is nil.
9882e214 14745 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 14746
fccee4ab
CY
147472011-03-22 Chong Yidong <cyd@stupidchicken.com>
14748
14749 * custom.el (custom--inhibit-theme-enable): Make it affect only
14750 custom-theme-set-variables and custom-theme-set-faces.
14751 (provide-theme): Ignore custom--inhibit-theme-enable.
14752 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
14753 (custom-enabling-themes): Delete variable.
d86d2721
SM
14754 (enable-theme): Accept only loaded themes as arguments.
14755 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
14756 (custom-enabled-themes): Forbid themes from setting this.
14757 Eliminate use of custom-enabling-themes.
14758 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 14759
af896da6
LL
147602011-03-21 Leo Liu <sdl.web@gmail.com>
14761
14762 * ido.el (ido-read-internal): Add ido-selected to history instead
14763 of user input.
14764
78f64af0
SM
147652011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14766
14767 * subr.el (deferred-action-list, deferred-action-function):
14768 Mark obsolete.
14769
b16ac1ec
LL
147702011-03-21 Leo Liu <sdl.web@gmail.com>
14771
810f7698
LL
14772 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
14773 change on 2011-02-13 (bug#8309).
14774
b16ac1ec
LL
14775 * minibuffer.el (read-file-name-function): Change default value.
14776 (read-file-name--defaults): Rename from read-file-name-defaults.
14777 (read-file-name-default): Rename from read-file-name.
14778 (read-file-name): Call read-file-name-function.
14779
4e05e67e
GM
147802011-03-21 Glenn Morris <rgm@gnu.org>
14781
14782 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
14783 Doc fixes.
14784
4359915b
CY
147852011-03-21 Chong Yidong <cyd@stupidchicken.com>
14786
14787 * cus-theme.el: Add missing provide statement.
14788 (customize-create-theme): Extract theme value correctly.
14789 (custom-theme-visit-theme): Autoload.
14790 (customize-create-theme): Prompt before inserting default faces.
14791
1fe275ee
JB
147922011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
14793
14794 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
14795 units and musical notes.
14796
cd394be1 147972011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
14798
14799 * ido.el (ido-read-internal): Use completing-read-default.
14800 (ido-completing-read): Fix compatibility with completing-read.
14801
7d476bde
CO
148022011-03-20 Christian Ohler <ohler@gnu.org>
14803
14804 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
14805 (ert-delete-all-tests): Use `called-interactively-p' rather than
14806 `interactive-p'.
14807 (ert--make-xrefs-region): Respect END.
14808
fe0fb33e
CY
148092011-03-19 Chong Yidong <cyd@stupidchicken.com>
14810
ff854b0b
CY
14811 * dired-aux.el (dired-create-directory): Signal an error if the
14812 directory already exists (Bug#8246).
14813
fe0fb33e
CY
14814 * facemenu.el (list-colors-display): Call list-faces-display
14815 inside with-help-window.
14816 (list-colors-print): Use display property to align the final
14817 column, instead of checking window-width.
14818
576bce32
EZ
148192011-03-19 Eli Zaretskii <eliz@gnu.org>
14820
4d61f28d 14821 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
14822 windows-nt systems.
14823 (emerge-protect-metachars): Quote correctly for ms-dos and
14824 windows-nt systems.
14825
89c41d68 148262011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
14827
14828 * info.el (info-initialize): Replace all uses of `:' with
14829 path-separator for compatibility with non-Unix systems.
14830 Cache quoting of path-separator. (Bug#8258)
14831
b14e3e21 148322011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
14833
14834 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
14835 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
14836 (mouse-avoidance-mode): Fix typos in docstrings.
14837
4525ce3e
CY
148382011-03-19 Chong Yidong <cyd@stupidchicken.com>
14839
14840 * startup.el (package-subdirectory-regexp): Move from package.el.
14841 Omit \\` and \\', and let callers add them.
14842
14843 * emacs-lisp/package.el (package-strip-version)
14844 (package-load-all-descriptors): Add \\` and \\' to
14845 package-subdirectory-regexp before using it.
14846 (package-untar-buffer): New arg DIR; ensure that file untars only
14847 into this expected directory. Remove superfluous delete-region.
14848 (package-unpack): Caller changed.
14849 (package-tar-file-info): Use package-subdirectory-regexp.
14850
a904a09a 148512011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 14852
a904a09a
SM
14853 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
14854 diff-mode-shared-map (bug#8284).
14855 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
14856
148572011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
14858
14859 * calendar/time-date.el (format-seconds): Use assoc instead of
14860 assoc-string, since assoc-string doesn't exist in XEmacs.
14861
171fc304
JB
148622011-03-17 Juanma Barranquero <lekktu@gmail.com>
14863
14864 * custom.el (custom-known-themes): Reflow docstring.
14865 (custom-theme-load-path): Fix typo in docstring.
14866 (load-theme): Fix typo in error message.
14867 (custom-available-themes, custom-variable-theme-value):
14868 Use `let', not `let*'.
14869
d71990a1
JB
148702011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
14871
14872 * calc/README: Mention inclusion of musical notes.
14873
14874 * calc/calc-units.el (calc-lu-quant): Rename from
14875 `calc-logunits-quantity'.
14876 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
14877 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
14878 (calc-db): Rename from `calc-dblevel'.
14879 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
14880 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
14881 (calc-np): Rename from `calc-nplevel'.
14882 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
14883 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
14884 (calc-lu-plus): Rename from `calc-logunits-add'.
14885 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
14886 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
14887 (calc-lu-minus): Rename from `calc-logunits-sub'.
14888 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
14889 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
14890 (calc-lu-times): Rename from `calc-logunits-mul'.
14891 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
14892 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
14893 (calc-lu-divide): Rename from `calc-logunits-div'.
14894 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
14895 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
14896
14897 * calc/calc-ext.el (calc-init-extensions): Update the names of the
14898 functions being autoloaded.
14899
14900 * calc/calc.el (calc-lu-power-reference): Rename from
14901 `calc-logunits-power-reference'.
14902 (calc-lu-field-reference): Rename from
14903 `calc-logunits-field-reference'.
14904
7a71b18d
GM
14905 * calc/calc-help.el (calc-l-prefix-help):
14906 Mention musical note functions.
d71990a1 14907
40c2934b
SM
149082011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
14909
14910 * minibuffer.el (completion-all-sorted-completions):
14911 Use :completion-cycle-penalty text property if present.
14912
b0911414
KM
149132011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
14914
14915 * allout.el (allout-yank-processing): Adjust for new rebulleting
14916 regime so bullet being yanked is used without prompting the user
14917 for a choice.
14918
8a05b668
JB
149192011-03-16 Juanma Barranquero <lekktu@gmail.com>
14920
14921 * startup.el (command-line): Warn the user that _emacs is deprecated.
14922
5ba5fb81
JB
149232011-03-16 Juanma Barranquero <lekktu@gmail.com>
14924
14925 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
14926 (delphi-verbose, delphi-comment-face, delphi-string-face)
14927 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
14928 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
14929 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
14930 (delphi-new-comment-line, delphi-font-lock-defaults)
14931 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
14932 Fix typos in docstrings.
14933
2dab465b
KM
149342011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
14935
5ba5fb81 14936 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
14937 Invert the roles of character and string values for INSTEAD, so a
14938 string is used for the more common case of a defaulting prompt.
14939
0adf5618
SM
149402011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
14941
14942 * progmodes/ruby-mode.el (ruby-backward-sexp):
14943 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
14944 * play/gamegrid.el (gamegrid-make-face):
14945 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
14946 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
14947 * notifications.el (notifications-notify):
14948 * net/xesam.el (xesam-search-engines):
14949 * net/quickurl.el (quickurl-list-insert):
14950 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
14951
d72700e5
CY
149522011-03-15 Chong Yidong <cyd@stupidchicken.com>
14953
14954 * startup.el (command-line): Update package subdirectory regexp.
14955
49c5410a
SM
149562011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
14957
c6eee9aa
SM
14958 * allout.el (allout-abbreviate-flattened-numbering)
14959 (allout-mode-deactivate-hook): Fix up obsolescence "date".
14960
49c5410a
SM
14961 * subr.el (read-char-choice): Only show the cursor after the prompt,
14962 not after the answer.
14963
047b2bb9
KR
149642011-03-15 Kevin Ryde <user42@zip.com.au>
14965
14966 * help-fns.el (variable-at-point): Skip leading quotes, if any
14967 (bug#8253).
14968
0a57d256
SM
149692011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
14970
14971 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
14972 warning message.
14973
77c992bc
MA
149742011-03-14 Michael Albinus <michael.albinus@gmx.de>
14975
14976 * shell.el (shell): When called interactively, offer to change the
14977 shell file name on remote hosts.
14978
eebc475d
TZ
149792011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
14980
14981 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
14982 integration for LDAP parameters. The host, base, user or binddn,
14983 and secret tokens can be specified in a netrc file, for instance.
14984 This is optional because an `auth-source' parameter must be
14985 specified in the search attributes.
14986
9d05d1ba
JB
149872011-03-13 Juanma Barranquero <lekktu@gmail.com>
14988
14989 * help.el (describe-mode): Link to the mode's definition (bug#8185).
14990
09d9db2c
GM
149912011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14992
14993 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
14994 into declaration. Remove redundant and harmful binding.
14995
149962011-03-12 Eli Zaretskii <eliz@gnu.org>
14997
14998 * files.el (file-ownership-preserved-p): Pass `integer' as an
14999 explicit 2nd argument to `file-attributes'. If the file's owner
15000 is the Administrators group on Windows, and the current user is
15001 Administrator, consider that a match.
15002
15003 * server.el (server-ensure-safe-dir): Consider server directory
15004 safe on MS-Windows if its owner is the Administrators group while
15005 the current Emacs user is Administrator. Use `=' to compare
15006 numerical UIDs, since they could be integers or floats.
15007
219bd536
JB
150082011-03-12 Juanma Barranquero <lekktu@gmail.com>
15009
15010 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
15011
f3afd36b
MA
150122011-03-12 Michael Albinus <michael.albinus@gmx.de>
15013
15014 Sync with Tramp 2.2.1.
15015
15016 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
15017
15018 * net/trampver.el: Update release number.
15019
3aaaa6f1
SM
150202011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15021
94642599
SM
15022 * progmodes/compile.el (compilation--previous-directory): Fix up
15023 various nil/dead-marker mismatches (bug#8014).
15024 (compilation-directory-properties, compilation-error-properties):
15025 Don't call it at a position past the one we're about to change.
15026
3aaaa6f1
SM
15027 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
15028 Disable obsolescence warnings in the file that declares it.
15029
14239447
KM
150302011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
15031
099c39a4
JB
15032 * allout-widgets.el (allout-widgets-tally):
15033 Initialize allout-widgets-tally as a hash table rather than nil to
15034 prevent mode-line redisplay warnings. Also, clarify the module
15035 description and fix a comment typo.
14239447 15036
135e287c
JB
150372011-03-11 Juanma Barranquero <lekktu@gmail.com>
15038
15039 * help-fns.el (describe-variable): Don't complete keywords.
15040 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
15041
ffbf300e
CY
150422011-03-10 Chong Yidong <cyd@stupidchicken.com>
15043
ba08b241
CY
15044 * emacs-lisp/package.el (package-version-join): Impose a standard
15045 string representation for pre/alpha/beta version lists.
15046 (package-unpack-single): Standardize the directory name by passing
15047 it through package-version-join.
15048 (package-strip-rcs-id): Accept any version string that does not
15049 signal an error in version-to-list.
ffbf300e 15050
f346fd6b
MA
150512011-03-10 Michael Albinus <michael.albinus@gmx.de>
15052
15053 * simple.el (delete-trailing-whitespace): Return nil for the
15054 benefit of `write-file-functions'.
15055
ccb55d27
GM
150562011-03-10 Glenn Morris <rgm@gnu.org>
15057
5ceaac0c
GM
15058 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
15059
02da65ff
GM
15060 * vc/vc-git.el (vc-git-program): New option.
15061 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
15062 (vc-git--call): Use it.
15063
b2f603cc
GM
15064 * eshell/esh-util.el (eshell-condition-case): Doc fix.
15065
5772caab
GM
15066 * cus-edit.el (Custom-newline): If no button at point, look
15067 for a subgroup button at start-of-line. (Bug#2298)
15068
ccb55d27
GM
15069 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
15070
ec6ecaed
JD
150712011-03-10 Julien Danjou <julien@danjou.info>
15072
15073 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
15074 `cursor-type' is nil.
15075
9d5aa01d
JB
150762011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
15077
15078 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
15079
b6a5875b
KM
150802011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
15081
7a71b18d 15082 * allout.el: Change so yank of distinctive-bullet items
b6a5875b
KM
15083 preserves the existing header prefix, rebulleting it if necessary,
15084 rather than replacing it. This is necessary for proper operation
15085 of cooperative addons like allout-widgets.
1154d12e
JB
15086 (allout-make-topic-prefix, allout-rebullet-heading):
15087 Change SOLICIT arg to INSTEAD, and interpret additionally a string
15088 value as alternate bullet to be used, instead of prompting the user
15089 for a bullet character.
b6a5875b 15090
ee545c35
MA
150912011-03-09 Michael Albinus <michael.albinus@gmx.de>
15092
d86d2721
SM
15093 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15094 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
15095 `tramp-default-port'.
15096
c47971d7
DD
150972011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
15098
15099 * net/rcirc.el (rcirc-handler-001): Remove useless
15100 with-rcirc-process-buffer.
15101 (rcirc-check-auth-status): Swap arguments to string-match.
15102
13522cb4
GM
151032011-03-09 Glenn Morris <rgm@gnu.org>
15104
0be6f4f1
GM
15105 * shell.el (shell-mode):
15106 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
15107
13522cb4
GM
15108 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
15109 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
15110
515de2e3
CY
151112011-03-08 Chong Yidong <cyd@stupidchicken.com>
15112
15113 * emacs-lisp/package.el (package-refresh-contents)
15114 (package-menu-execute): Use condition-case-no-debug.
15115
b511b994
MA
151162011-03-08 Michael Albinus <michael.albinus@gmx.de>
15117
15118 * simple.el (shell-command-to-string): Use `process-file'.
15119
15120 * emacs-lisp/package.el (package-tar-file-info): Handle also
15121 remote files.
15122
d86d2721
SM
15123 * emacs-lisp/package-x.el (package-upload-buffer-internal):
15124 Use `equal' for upload base check.
b511b994 15125
25bbfb31
AM
151262011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
15127
15128 * textmodes/texinfo.el (texinfo-environments):
15129 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
15130
be996521
GM
151312011-03-08 Glenn Morris <rgm@gnu.org>
15132
e9c8529f
GM
15133 * cus-start.el (cursor-in-non-selected-windows):
15134 Fix :set quoting oddness. (Bug#8192)
15135
be996521
GM
15136 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
15137 in some setf expressions. (Bug#2159)
15138
2bb5649e
CY
151392011-03-08 Chong Yidong <cyd@stupidchicken.com>
15140
15141 * custom.el (custom-available-themes): Return themes in
15142 alphabetical order.
15143
33383987 15144See ChangeLog.15 for earlier changes.
e3d51b27
MR
15145
15146;; Local Variables:
15147;; coding: utf-8
e3d51b27
MR
15148;; End:
15149
acaf905b 15150 Copyright (C) 2011-2012 Free Software Foundation, Inc.
e3d51b27
MR
15151
15152 This file is part of GNU Emacs.
15153
15154 GNU Emacs is free software: you can redistribute it and/or modify
15155 it under the terms of the GNU General Public License as published by
15156 the Free Software Foundation, either version 3 of the License, or
15157 (at your option) any later version.
15158
15159 GNU Emacs is distributed in the hope that it will be useful,
15160 but WITHOUT ANY WARRANTY; without even the implied warranty of
15161 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15162 GNU General Public License for more details.
15163
15164 You should have received a copy of the GNU General Public License
15165 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.