* lisp/minibuffer.el (completion--twq-try): Try to fail more gracefully when
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
e33c6771
SM
12012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
4 the requote function doesn't work properly (bug#11714).
5
7117e105
GM
62012-06-23 Glenn Morris <rgm@gnu.org>
7
8 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
9
36cec983
SM
102012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
11
12 Further GV/CL cleanups.
13 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
14 gv-expander.
15 (gv--defun-declaration): New function.
16 (defun-declarations-alist): Use it.
17 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
18 (gv-place): Autoload.
19 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
20 original definition of dotimes and dolist.
21 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
22 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
23 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
24 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
25 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
26 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
27 to the function's definition.
28 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
29 * window.el:
30 * files.el:
31 * faces.el:
32 * env.el: Don't use CL.
33
d35af63c
PE
342012-06-22 Paul Eggert <eggert@cs.ucla.edu>
35
36 Support higher-resolution time stamps (Bug#9000).
37
38 * calendar/time-date.el (with-decoded-time-value): New arg
39 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
40 (encode-time-value): New optional arg PICO. New type 3.
41 (time-to-seconds) [!float-time]: Support the new picoseconds
42 component if it's used.
43 (seconds-to-time, time-subtract, time-add):
44 Support ps-resolution time stamps as well.
45
46 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
47 (timerp): Timer vectors now have length 9, not 8.
48 (timer--time): Support new-style (4-part) time stamps.
49 (timer-next-integral-multiple-of-time): Time stamps now have
50 picosecond resolution, so take a bit more care about rounding.
51 (timer-relative-time, timer-inc-time): New optional arg psecs.
52 (timer-set-time-with-usecs): Set psecs to 0.
53 (timer--activate): Check psecs component, too.
54
55 * proced.el (proced-time-lessp): Support ps-resolution stamps.
56
ac77b21a
SM
572012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
58
f143bfe3
SM
59 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
60 Move the non-essential binding to the post/pre-command-hook where it is
61 more obviously correct.
62
ac77b21a
SM
63 * subr.el (read-passwd): Don't use a history at all.
64 * savehist.el (savehist-save): Remove password saved accidentally
65 because of the above bug.
66
76386c5a
BG
672012-06-22 Bastien Guerry <bzg@gnu.org>
68
69 * files.el (toggle-read-only): Display a message telling whether
70 the buffer is read-only or not (bug#11726).
71
2ee3d7f0
SM
722012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
73
74 * emacs-lisp/gv.el: New file.
75 * subr.el (push, pop): Extend to generalized variables.
76 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
77 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
78 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
79 gv-define-simple-setter, and gv-define-expander.
80 Remove setf-methods defined in gv. Rename cl-setf -> setf.
81 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
82 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
83 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
84 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
85 gv-letplace.
86 (cl-defstruct): Don't define setf-method any more.
87 * emacs-lisp/cl.el (flet): Don't autoload.
88 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
89 (define-setf-expander, defsetf, define-modify-macro)
90 (cl-struct-setf-expander): Move from cl-lib.el.
91 * emacs-lisp/syntax.el:
92 * emacs-lisp/ewoc.el:
93 * emacs-lisp/smie.el:
94 * emacs-lisp/cconv.el:
95 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
96 (timer--time): Use gv-define-simple-setter.
97 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
98 to avoid coding-system problems in subr.el. Adjust all users.
99 (macroexp--maxsize, macroexp-small-p): New functions.
100 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
101 * scroll-bar.el (scroll-bar-mode):
102 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
103 (normal-erase-is-backspace-mode): Don't use the `eq' place.
104 * winner.el (winner-configuration, winner-make-point-alist)
105 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
106 * files.el (locate-file-completion-table): Avoid list*.
107
c5695d1d
CY
1082012-06-22 Chong Yidong <cyd@gnu.org>
109
110 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
111 (dired-create-files): Doc fix (Bug#11329).
112 (dired-do-copy): Doc fix (Bug#11334).
113 (dired-mark-read-string): Doc fix (Bug#11553).
114
2ee3d7f0
SM
115 * dired.el (dired-recursive-copies, dired-recursive-deletes):
116 Doc fix (Bug#11326).
c5695d1d
CY
117 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
118 (dired-dwim-target): Doc fix.
119
120 * wdired.el (wdired-mode): Doc fix.
121
89b5595a
GM
1222012-06-22 Glenn Morris <rgm@gnu.org>
123
575db3f1
GM
124 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
125 (pcmpl-rpm-cache-stamp-file): New constant.
126 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
127 (pcmpl-rpm-packages): Optionally cache list of packages.
128
a4c8dd51
GM
129 * pcmpl-rpm.el (pcmpl-rpm): New group.
130 (pcmpl-rpm-query-options): New option.
131 (pcmpl-rpm-packages): No need to inline it.
132 Use pcmpl-rpm-query-options.
133
89b5595a
GM
134 * calendar/calendar.el (calendar-in-read-only-buffer):
135 Avoid some needless mode changes.
136
e76f0800
CY
1372012-06-21 Chong Yidong <cyd@gnu.org>
138
139 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
140 (desktop-path): Remove . from the default value (Bug#10977).
6b67c0d4 141 (desktop-read): Use user-emacs-directory if desktop-path is nil.
e76f0800 142
297a8f1d
CY
1432012-06-20 Chong Yidong <cyd@gnu.org>
144
145 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
146
d34c18b1
DR
1472012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
148
149 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
150 (bug#11201).
151
32f7f28e
CY
1522012-06-20 Chong Yidong <cyd@gnu.org>
153
154 * term.el (term-window-width): Handle the case of a missing right
155 fringe (Bug#8837).
156 (term-check-size): Use window-text-height (Bug#5445).
d34c18b1
DR
157 (term-mode): Use define-derived-mode. Minor cleanups.
158 Set font-lock-defaults (Bug#7692).
6ff7caa8
CY
159 (term-move-columns, term-insert-char, term-emulate-terminal)
160 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
32f7f28e 161
493c6688
MA
1622012-06-20 Michael Albinus <michael.albinus@gmx.de>
163
d34c18b1
DR
164 * net/ange-ftp.el (ange-ftp-get-passwd):
165 Bind `enable-recursive-minibuffers'.
493c6688
MA
166 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
167
3f06ecf4
DR
1682012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
169
170 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
171
68f12411
GM
1722012-06-19 Glenn Morris <rgm@gnu.org>
173
174 * progmodes/python.el (python-mode): Derive from prog-mode.
175
b3820318
KG
1762012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
177
178 * emulation/edt.el (edt-default-menu-bar-update-buffers)
179 (edt-user-menu-bar-update-buffers): New functions.
180 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
181
c6bf3022
CY
1822012-06-19 Chong Yidong <cyd@gnu.org>
183
184 * subr.el (with-selected-window): Preserve the selected window's
185 terminal's top-frame (Bug#4702).
186
187 * window.el (save-selected-window): Likewise.
188
25f09295
SM
1892012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
190
191 * progmodes/python.el (python-rx-constituents): Move backquote.
192 (python-skeleton-define, python-define-auxiliary-skeleton):
193 Use `declare'.
194
6b11952a
MA
1952012-06-18 Michael Albinus <michael.albinus@gmx.de>
196
197 * minibuffer.el (read-file-name-default): Revert the patch from
198 2012-06-17.
199
ee4b1330
SM
2002012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
201
202 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
203 (pcase--u1, pcase--q1): Don't use apply-partially.
204
35647f79
GM
2052012-06-18 Glenn Morris <rgm@gnu.org>
206
207 * progmodes/python.el (python-proc, python-buffer)
208 (python-send-receive, python-send-string): Fix obsolete versions.
209
24b0cff0
MR
2102012-06-18 Martin Rudalics <rudalics@gmx.at>
211
212 * window.el (special-display-p): Completely remove stringp
213 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
214
29855149
MA
2152012-06-17 Michael Albinus <michael.albinus@gmx.de>
216
217 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
218
219 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
220
221 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
222 * net/tramp-sh.el (tramp-maybe-open-connection):
223 Throw if `non-essential' is non-nil.
224
07463363
MR
2252012-06-17 Martin Rudalics <rudalics@gmx.at>
226
227 * window.el (special-display-p): Signal an error if BUFFER-NAME
228 is not a string (Bug#11713).
229
48d1354e
PE
2302012-06-17 Paul Eggert <eggert@cs.ucla.edu>
231
232 * progmodes/python.el (python-info-beginning-of-backslash):
233 Rename from python-info-beginning-of-backlash, as a spelling fix.
234
eb4a8a9a
CY
2352012-06-17 Chong Yidong <cyd@gnu.org>
236
237 * term.el (term-emulate-terminal): If term-check-size is called,
238 move point to the process mark without resetting point (Bug#4635).
239
ddfbf826 2402012-06-17 Glenn Morris <rgm@gnu.org>
9c758578
GM
241
242 * international/mule-cmds.el (mule-menu-keymap)
243 (set-language-environment, set-locale-environment): Doc tweaks.
244
9b0e3eba
AA
2452012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
246
247 * cus-face.el (custom-face-attributes): Add wave-style underline
248 attribute.
249 * faces.el (set-face-attribute): Update docstring to describe
250 wave-style underline attribute.
251
771e3eae
CY
2522012-06-16 Chong Yidong <cyd@gnu.org>
253
254 * term/xterm.el (terminal-init-xterm): Discard input before
255 querying background mode (Bug#10959).
256
7ae2ea10
SM
2572012-06-16 Stefan Merten <smerten@oekonux.de>
258
259 * textmodes/rst.el: Added and corrected some comments.
260 (rst-re-alist-def): Improve symbol syntax.
261 (rst-mode-syntax-table): Correct syntax entries.
6665a6fd
SM
262 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
263 (rst-official-version, rst-official-cvs-rev): Update version
264 information.
7ae2ea10 265
b6974efa
JB
2662012-06-15 Juanma Barranquero <lekktu@gmail.com>
267
268 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
269 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
270
8826d473
GM
2712012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
272
273 * progmodes/python.el: New python.el merge.
274 (python-guess-indent): Obsolete var.
275 (python-indent-guess-indent-offset): New defcustom.
276 (python-indent): Obsolete var.
277 (python-indent-offset): New defcustom.
278 (python-python-command, python-jython-command): Delete var.
279 (python-shell-interpreter): New defcustom.
280 (python-pdbtrack-do-tracking-p): Delete var.
281 (python-pdbtrack-activate): New defcustom.
282 (python-use-skeletons): Obsolete var.
283 (python-skeleton-autoinsert): New defcustom.
284 (inferior-python-filter-regexp, python-continuation-offset)
285 (python-honour-comment-indentation, python-indent-string-contents)
286 (python-jython-packages, python-mode-hook)
287 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
288 (python-shell-prompt-alist)
289 (python-source-modes): Delete defcustoms.
290 (python-check-buffer-name, python-eldoc-setup-code)
291 (python-eldoc-string-code, python-ffap-setup-code)
292 (python-ffap-string-code, python-fill-comment-function)
293 (python-fill-decorator-function, python-fill-paren-function)
294 (python-fill-string-function, python-imenu-include-defun-type)
295 (python-imenu-make-tree, python-imenu-subtree-root-label)
296 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
297 (python-shell-compilation-regexp-alist)
298 (python-shell-completion-module-string-code)
299 (python-shell-completion-pdb-string-code)
300 (python-shell-completion-setup-code)
301 (python-shell-completion-string-code)
302 (python-shell-enable-font-lock, python-shell-exec-path)
303 (python-shell-extra-pythonpaths)
304 (python-shell-internal-buffer-name, python-shell-interpreter-args)
305 (python-shell-process-environment)
306 (python-shell-prompt-block-regexp)
307 (python-shell-prompt-output-regexp)
308 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
309 (python-shell-send-setup-max-wait, python-shell-setup-codes)
310 (python-shell-virtualenv-path): New defcustoms.
311 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
312 (inferior-python-mode-syntax-table, python--prompt-regexp)
313 (python-buffer, python-command python-python-command)
314 (python-default-template, python-imports, python-indent-index)
315 (python-indent-list, python-indent-list-length)
316 (python-mode-running, python-pdbtrack-is-tracking-p)
317 (python-preoutput-continuation, python-preoutput-leftover)
318 (python-preoutput-result, python-preoutput-skip-next-prompt)
319 (python-prev-dir/file, python-recursing)
320 (python-saved-check-command, python-version-checked)
321 (python-which-func-length-limit)
322 (view-return-to-alist): Delete vars.
323 (python-check-custom-command, python-dotty-syntax-table)
324 (python-imenu-index-alist, python-indent-current-level)
325 (python-indent-dedenters, python-indent-levels)
326 (python-nav-beginning-of-defun-regexp)
327 (python-nav-list-defun-positions-cache)
328 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
329 (python-shell-internal-buffer)
330 (python-skeleton-available): New vars.
331 (def-python-skeleton): Delete macro.
332 (python-skeleton-define): New macro.
333 (python-define-auxiliary-skeleton, python-rx): New macros.
334 (python-insert-class): Delete command.
335 (python-skeleton-class): New command.
336 (python-insert-def): Delete command.
337 (python-skeleton-def): New command.
338 (python-insert-for): Delete command.
339 (python-skeleton-for): New command.
340 (python-insert-if): Delete command.
341 (python-skeleton-if): New command.
342 (python-insert-try/except, python-insert-try/finally): Delete commands.
343 (python-skeleton-try): New command.
344 (python-insert-while): Delete command.
345 (python-skeleton-while): New command.
346 (python-backspace): Delete command.
347 (python-indent-dedent-line-backspace): New command.
348 (python-electric-colon): Delete command.
349 (python-indent-electric-colon): New command.
350 (python-guess-indent): Delete command.
351 (python-indent-guess-indent-offset): New command.
352 (python-shift-left): Delete command.
353 (python-indent-shift-left): New command.
354 (python-shift-right): Delete command.
355 (python-indent-shift-right): New command.
356 (python-find-function): Delete command.
357 (python-nav-jump-to-defun): New command.
358 (python-next-statement): Delete command.
359 (python-nav-forward-sentence): New command.
360 (python-previous-statement): Delete command.
361 (python-nav-backward-sentence): New command.
362 (python-fill-paragraph): Delete command.
363 (python-fill-paragraph-function): New command.
364 (python-send-buffer): Delete command.
365 (python-shell-send-buffer): New command.
366 (python-send-defun): Delete command.
367 (python-shell-send-defun): New command.
368 (python-send-region, python-send-region-and-go): Delete commands.
369 (python-shell-send-region)
370 (python-shell-switch-to-shell): New commands.
371 (python-send-string): Delete command.
372 (python-shell-send-string): New command.
373 (python-switch-to-python): Delete command.
374 (python-shell-switch-to-shell): New command.
375 (python-describe-symbol): Delete command.
376 (python-eldoc-at-point): New command.
377 (python--set-prompt-regexp, python-args-to-list)
378 (python-after-info-look, python-check-version)
379 (python-check-comint-prompt, python-find-imports)
380 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
381 (python-unload-function, python-expand-template)
382 (python-maybe-jython, python-preoutput-filter)
383 (python-pdbtrack-get-source-buffer)
384 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
385 (python-pdbtrack-toggle-stack-tracking)
386 (python-pdbtrack-track-stack-file, python-initial-text)
387 (python-first-word, python-comment-line-p, python-send-command)
388 (python-setup-brm, python-sentinel, python-set-proc)
389 (python-skip-out, python-input-filter, python-outdent-p)
390 (python-outline-level, python-backslash-continuation-line-p)
391 (python-end-of-block, python-end-of-statement, python-mark-block)
392 (python-beginning-of-block, python-beginning-of-statement)
393 (python-blank-line-p, python-beginning-of-string)
394 (python-open-block-statement-p): Delete functions.
395 (python-indent-line, python-indent-line-1): Delete functions.
396 (python-indent-line): New function.
397 (python-indentation-levels): Delete function.
398 (python-indent-calculate-levels): New function.
399 (python-proc): Delete function.
400 (python-shell-get-process): New function.
401 (python-send-receive): Delete function.
402 (python-shell-send-string-no-output): New function.
403 (python-module-path): Delete function.
404 (python-ffap-module-path): New function.
405 (python-completion-at-point)
406 (python-symbol-completions): Delete functions.
407 (python-completion-complete-at-point): New function.
408 (python-load-file): Delete function.
409 (python-shell-send-file): New function.
410 (python-calculate-indentation): Delete function.
411 (python-indent-calculate-indentation): New function.
412 (python-skip-comments/blanks): Delete function.
413 (python-util-forward-comment): New function.
414 (python-continuation-line-p): Delete function.
415 (python-info-continuation-line-p): New function.
416 (python-which-func, python-current-defun): Delete function.
417 (python-info-current-defun): New function.
418 (python-beginning-of-defun): Delete function.
419 (python-nav-beginning-of-defun): New function.
420 (python-close-block-statement-p)
421 (python-block-end-p): Delete function.
422 (python-info-closing-block): New function.
423 (python-comint-output-filter-function)
424 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
425 (python-fill-comment, python-fill-decorator, python-fill-paren)
426 (python-fill-string, python-imenu-make-element-tree)
427 (python-imenu-make-tree, python-imenu-tree-assoc)
428 (python-indent-context, python-indent-dedent-line)
429 (python-indent-line-function)
430 (python-indent-post-self-insert-function)
431 (python-indent-toggle-levels)
432 (python-info-assignment-continuation-line-p)
433 (python-info-beginning-of-backlash)
434 (python-info-block-continuation-line-p)
435 (python-info-closing-block-message)
436 (python-info-line-ends-backslash-p)
437 (python-info-looking-at-beginning-of-defun)
438 (python-info-ppss-context, python-info-ppss-context-type)
439 (python-nav-list-defun-positions, python-nav-read-defun)
440 (python-nav-sentence-end, python-nav-sentence-start)
441 (python-pdbtrack-comint-output-filter-function)
442 (python-pdbtrack-set-tracked-buffer)
443 (python-shell-calculate-exec-path)
444 (python-shell-calculate-process-environment)
445 (python-shell-completion--do-completion-at-point)
446 (python-shell-completion--get-completions)
447 (python-shell-completion-complete-at-point)
448 (python-shell-completion-complete-or-indent)
449 (python-shell-get-or-create-process)
450 (python-shell-get-process-name)
451 (python-shell-internal-get-or-create-process)
452 (python-shell-internal-get-process-name)
453 (python-shell-internal-send-string, python-shell-make-comint)
454 (python-shell-parse-command, python-shell-send-setup-code)
455 (python-skeleton-add-menu-items)
456 (python-util-clone-local-variables, python-util-position)
457 (run-python-internal, python-indentation-levels)
458 (python-nav-beginning-of-defun)
459 (python-completion-complete-at-point): New functions.
460 (run-python): Change arguments. New API requirements.
461
4302f5ba
SM
4622012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
463
f38ea36d
SM
464 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
465 (bug#11649).
466
467 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
468 (macroexp--expand-all): Use it.
469
4302f5ba
SM
470 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
471 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
472 Use `cl-function' instead.
473
33377562
JB
4742012-06-14 Juanma Barranquero <lekktu@gmail.com>
475
476 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
477 Suggested by Stefan Monnier while discussing bug#11657.
478
54c5ba1a
SS
4792012-06-14 Sam Steingold <sds@gnu.org>
480
481 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
482
f9f1b1fe
AS
4832012-06-14 Andreas Schwab <schwab@linux-m68k.org>
484
485 * play/doctor.el (doctor-doc): Remove parameter and use
486 doctor-sent instead of sent.
487 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
488
a81068ba
SM
4892012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
490
5a315f9c
SM
491 * files.el: Require cl-lib.
492 (file-name-non-special): Replace case -> cl-case.
493
494 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
495
a81068ba
SM
496 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
497 mapping from #' to function*.
498
8cca9703
CY
4992012-06-13 Chong Yidong <cyd@gnu.org>
500
501 * mouse.el (mouse-drag-track): Do not set the mark if the user
502 releases the mouse without selecting anything (Bug#11588).
503
a12ac9d7
SM
5042012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
505
ccf1dc18
SM
506 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
507 as well (bug#11646).
508
ef62b23d
SM
509 * loadup.el: Count byte-code functions as well.
510
c4c8444a
SM
511 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
512 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
513
a12ac9d7
SM
514 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
515 (bug#11649). Add cl-defun and cl-defmacro.
516
87e6e64f
DA
5172012-06-13 Drew Adams <drew.adams@oracle.com>
518
519 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
520 Fix last change.
521
682cefaf
MA
5222012-06-13 Michael Albinus <michael.albinus@gmx.de>
523
524 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
525 Otherwise, it blocks in batch mode.
526
773e1f08
JB
5272012-06-13 Juanma Barranquero <lekktu@gmail.com>
528
529 * help-mode.el (bookmark-make-record-default): Declare.
530
60057926
CY
5312012-06-13 Chong Yidong <cyd@gnu.org>
532
533 * emacs-lisp/package.el (list-packages): Compute a list of
534 packages that are newly-available since the last list-packages
535 invocation.
536 (package-menu--new-package-list): New var.
537 (package-menu--generate, package-menu--print-info)
538 (package-menu--status-predicate, package-menu-mark-install):
539 Handle new status label "new".
540
ad4d226c
SM
5412012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
542
543 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
544 conversion to backquotes.
545
f1a4e679
CY
5462012-06-12 Chong Yidong <cyd@gnu.org>
547
548 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
549 Rename from gud-inhibit-global-bindings.
550
551 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
552
553 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
554 hook from nxml-glyph-set-hook.
555
556 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
557 declaration.
558
559 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
560
561 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
562 Convert to defcustom.
563
0c9e42b5
DA
5642012-06-12 Drew Adams <drew.adams@oracle.com>
565
566 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
567 New functions.
568 (help-mode): Use them.
569
09e06855
GM
5702012-06-11 Glenn Morris <rgm@gnu.org>
571
572 * progmodes/fortran.el (fortran-font-lock-keywords-3):
573 Use preprocessor face for directives.
574 (fortran-directive-re): Doc fix.
575
71adb94b
SM
5762012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
577
2eb87922
SM
578 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
579 conversion to backquotes (bug#11652).
580
71adb94b
SM
581 Fix compiler-expansion of CL's cXXr functions (bug#11673).
582 * emacs-lisp/cl-lib.el (cl--defalias): New function.
583 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
584 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
585 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
586 (cl-ninth, cl-tenth): Mark them as inlinable.
587 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
588 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
589 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
590 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
591 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
592 (cl-list*, cl-adjoin): Don't put an autoload manually.
593 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
594 (cl--compiler-macro-list*): Add autoload cookie.
595 (cl--compiler-macro-cXXr): New function.
2eb87922 596
71adb94b
SM
597 * help-fns.el (help-fns--compiler-macro): New function extracted from
598 describe-function-1; follow aliases and use `compiler-macro' property.
599 (describe-function-1): Use it.
600
a6674402
CY
6012012-06-11 Chong Yidong <cyd@gnu.org>
602
603 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
604 is uninstalled, if imagemagick is installed.
605
bb3faf5b
SM
6062012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
607
608 * emacs-lisp/cl-lib.el: Use lexical-binding.
609 (cl-map-extents, cl-maclisp-member): Remove.
610 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
611 (cl--set-substring, cl--block-wrapper, cl--block-throw)
612 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
613 * emacs-lisp/cl-extra.el: Use lexical-binding.
614 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
615 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
616 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
617 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
618 * emacs-lisp/cl-seq.el: Use lexical-binding.
619 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
620 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
621 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
622 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
623 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
624 CL's internals.
625
2fe4b125
MA
6262012-06-11 Michael Albinus <michael.albinus@gmx.de>
627
628 Sync with Tramp 2.2.6-pre.
629
630 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
631 `print-length' and `print-level' to nil, in order to avoid
632 truncation. Reported by Christopher Schmidt
633 <christopher@ristopher.com>.
634
635 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
636
637 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
638 New defmacro.
639 (tramp-compat-copy-directory): Add optional argument
640 COPY-CONTENTS. It is not handled yet.
641
642 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
643 (tramp-ftp-file-name-p): Simplify.
644
645 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
646 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
647 connection vector.
648
649 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
650 (tramp-methods): Do not use `tramp-password-end-of-line'.
651 (tramp-completion-function-alist-putty): Handle UNIX case.
652 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
653 (tramp-do-file-attributes-with-stat)
654 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
655 gid as real numbers. They could run out of integer range on cygwin.
656 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
657 (tramp-sh-handle-expand-file-name): Handle hops.
87e6e64f
DA
658 (tramp-open-connection-setup-interactive-shell):
659 Use `tramp-cleanup'. Move check for busyboxes ...
660 (tramp-find-shell): ... here. Simplify implementation.
661 Set "remote-shell" property also for alternative shells.
662 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
663 If failing, a regular file would be written otherwise.
664 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
2fe4b125
MA
665 (tramp-find-inline-encoding): Cache the coding commands in the
666 process cache. Apply test command on the remote side, if defined.
667 (tramp-find-inline-compress): Cache the compress commands in the
668 process cache.
669 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
670 when requested. Handle hops.
671 (tramp-current-connection): New defvar.
87e6e64f
DA
672 (tramp-maybe-open-connection): Use `tramp-cleanup'.
673 Throw `suppress', if there was a failed connection shortly before.
2fe4b125 674 Handle user interrupt. (Bug#10187)
87e6e64f
DA
675 (tramp-get-inline-compress, tramp-get-inline-coding):
676 Read connection properties from the process cache.
2fe4b125
MA
677
678 * net/tramp-smb.el (tramp-smb-server-version)
87e6e64f
DA
679 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
680 New defconsts.
2fe4b125
MA
681 (tramp-smb-prompt): Extend for powershell prompt.
682 (tramp-smb-file-name-handler-alist): Add handlers for
683 `process-file', `shell-command' and `start-file-process'.
684 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
685 (tramp-smb-winexe-shell-command-switch): New defcustoms.
686 (tramp-smb-file-name-p): Simplify.
687 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
688 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
689 (tramp-smb-shell-quote-argument): New defuns.
690 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
691 Implement using "tar". By this, time-stamps are preserved.
692 (tramp-smb-handle-copy-file): Handle also the case of directories.
693 (tramp-smb-do-file-attributes-with-stat)
87e6e64f
DA
694 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
695 Use `tramp-get-connection-buffer').
2fe4b125
MA
696 (tramp-smb-handle-rename-file): Use "rename", when source and
697 target are on the same share.
87e6e64f
DA
698 (tramp-smb-maybe-open-connection): Handle wrong passwords.
699 Use `tramp-smb-server-version'.
2fe4b125
MA
700 (tramp-smb-wait-for-output): Remove prompt.
701
702 * net/tramp.el (top): Require 'cl.
87e6e64f
DA
703 (tramp-methods, tramp-rsh-end-of-line):
704 Remove `tramp-password-end-of-line' from docstring.
2fe4b125
MA
705 (tramp-save-ad-hoc-proxies): New defcustom.
706 (tramp-completion-function-alist): Adapt docstring.
707 (tramp-default-password-end-of-line): Remove defcustom.
708 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
709 (tramp-user-regexp, tramp-file-name-regexp-unified)
710 (tramp-file-name-regexp-url): Extend regexp by hop separator.
711 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
712 (tramp-remote-file-name-spec-regexp): New defconst.
713 (tramp-file-name-structure): Extend structure for hops.
714 (tramp-get-method-parameter): Move up.
715 (tramp-file-name-p, tramp-dissect-file-name)
716 (with-parsed-tramp-file-name): Handle hops.
717 (tramp-file-name-hop): New defun.
718 (tramp-make-tramp-file-name): New optional arg HOP.
719 (tramp-message-show-progress-reporter-message): New defvar.
720 (tramp-with-progress-reporter): Use it. We cannot use
721 `tramp-message-show-message' here, because this suppresses also
722 error buffers.
723 (tramp-error-with-buffer): Suppress buffer view, if
87e6e64f
DA
724 `tramp-message-show-message' is nil.
725 Use `tramp-get-connection-buffer'.
2fe4b125
MA
726 (tramp-cleanup): New defun.
727 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
728 (tramp-file-name-handler): If `debug-on-error' is set, propagate
729 an error unchanged.
730 (tramp-completion-handle-file-name-all-completions): Handle hops.
731 Fix an error when called from ido.
732 (tramp-completion-dissect-file-name): Use better local variable
733 name. Add hop to the vector.
734 (tramp-handle-insert-file-contents): Use progress-reporter for the
735 whole scenario.
736 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
737 to `t'.
738 (tramp-check-for-regexp): Simplify search.
739 (tramp-enter-password): Remove it. Move implementation ...
740 (tramp-action-password): ... here.
741 (tramp-mode-string-to-int, tramp-local-host-p)
742 (tramp-make-tramp-temp-file, tramp-read-passwd)
87e6e64f
DA
743 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
744 Set tramp-autoload cookie.
2fe4b125
MA
745
746 * net/trampver.el: Update release number.
747
7482012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
749 Michael Albinus <michael.albinus@gmx.de>
750
751 * net/tramp.el (tramp-set-completion-function): Fix docstring.
752 (tramp-parse-group, tramp-parse-file)
753 (tramp-parse-shostkeys-sknownhosts): New defuns.
754 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
755 (tramp-parse-shosts-group, tramp-parse-sconfig)
756 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
757 (tramp-parse-sknownhosts, tramp-parse-hosts)
758 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
759 Use them.
760 (tramp-parse-passwd-group, tramp-parse-netrc-group)
761 (tramp-parse-putty-group): Don't narrow.
762 (tramp-parse-putty): Make a loop.
763 (tramp-file-name-handler): Catch the `suppress' signal.
764
72834e10
CY
7652012-06-11 Chong Yidong <cyd@gnu.org>
766
767 * image.el (imagemagick-register-types): Put the ImageMagick entry
768 at the end of image-type-file-name-regexps.
769
a4712e11
JB
7702012-06-11 Johan Bockgård <bojohan@gnu.org>
771
772 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
773 (pcase, pcase-let*, pcase-dolist): Use them.
774
82ad98e3
SM
7752012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
776
777 * emacs-lisp/pcase.el (pcase--let*): New function.
778 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
779 (pcase--expand): Use macroexp-let².
780
f80efb86
SM
7812012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
782
783 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
784 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
785 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
786 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
787 * emacs-lisp/derived.el: Use pcase instead of `cl'.
788 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
789
31ca4639 7902012-06-10 Glenn Morris <rgm@gnu.org>
94f0aa34 791
31ca4639
CY
792 * mail/rmail.el (rmail-yank-current-message): Leave point at
793 correct position. (Bug#11660)
94f0aa34 794
31ca4639 7952012-06-10 Chong Yidong <cyd@gnu.org>
9e1b8ec4 796
31ca4639 797 * allout-widgets.el: Fix code header.
9e1b8ec4 798
31ca4639 7992012-06-10 Chong Yidong <cyd@gnu.org>
00cd0305 800
f80efb86
SM
801 * cus-edit.el (customize-changed-options-previous-release):
802 Bump to 24.1.
31ca4639 803
642b6d30
AS
8042012-06-09 Andreas Schwab <schwab@linux-m68k.org>
805
806 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
807
4f5d2ba1
CY
8082012-06-09 Chong Yidong <cyd@gnu.org>
809
810 * ebuff-menu.el (electric-buffer-list): Preserve header line.
811
e75852fd
MR
8122012-06-09 Martin Rudalics <rudalics@gmx.at>
813
814 * window.el (special-display-popup-frame): Don't use
815 window--display-buffer (Bug#11651).
816
1e48e282
EZ
8172012-06-09 Eli Zaretskii <eliz@gnu.org>
818
8a26b487
EZ
819 Fix parallel builds: make sure loaddefs.el is not being written
820 while Lisp files are compiled.
821 (compile): Don't depend on 'mh-autoloads'.
822 (compile-CMD, compile-SH): Depend on 'autoloads'.
823 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
824
1e48e282
EZ
825 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
826
6175e34b
CY
8272012-06-09 Chong Yidong <cyd@gnu.org>
828
829 * face-remap.el (face-remap-add-relative, face-remap-set-base)
830 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
831 Doc fixes (Bug#11225).
832
d9857e53
SM
8332012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
834
835 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
836 a function if there's a clear indication that it has a compiler-macro.
837 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
838 (macro-declarations-alist): Add arglist to declaration functions.
839 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
840 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
841 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
842 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
843 Also add autoload to find the compiler macro.
844 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
845 (cl--compiler-macro-member, cl--compiler-macro-assoc)
846 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
847 (cl--compiler-macro-get): New functions, replacing calls to
848 cl-define-compiler-macro.
849 (cl-typep) [compiler-macro]: Use macroexp-let².
850
f81298f8 8512012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
ee574791
UJ
852
853 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
854 string properly, fixes Bug#11473.
855
4b56d0fe
CY
8562012-06-08 Chong Yidong <cyd@gnu.org>
857
858 * faces.el (set-face-attribute): Doc fix.
859 (modify-face): Don't use :bold and :italic.
860 (error, warning, success): Tweak definitions.
861
862 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
863 (custom-modified, custom-set, custom-changed, custom-themed)
864 (custom-saved, custom-button, custom-button-mouse)
865 (custom-button-pressed, custom-state, custom-comment-tag)
866 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
867 (custom-group-subtitle): Use new-style face specs.
868 (custom-invalid-face, custom-rogue-face, custom-modified-face)
869 (custom-set-face, custom-changed-face, custom-saved-face)
870 (custom-button-face, custom-button-pressed-face)
871 (custom-documentation-face, custom-state-face)
872 (custom-comment-face, custom-comment-tag-face)
873 (custom-variable-tag-face, custom-variable-button-face)
874 (custom-face-tag-face, custom-group-tag-face-1)
875 (custom-group-tag-face): Remove obsolete face alias.
876
877 * epa.el (epa-validity-high, epa-validity-medium)
878 (epa-validity-low, epa-mark, epa-field-name, epa-string)
879 (epa-field-name, epa-field-body):
880 * font-lock.el (font-lock-comment-face, font-lock-string-face)
881 (font-lock-keyword-face, font-lock-builtin-face)
882 (font-lock-function-name-face, font-lock-variable-name-face)
883 (font-lock-type-face, font-lock-constant-face):
884 * ido.el (ido-first-match, ido-only-match, ido-subdir)
885 (ido-virtual, ido-indicator, ido-incomplete-regexp):
886 * speedbar.el (speedbar-button-face, speedbar-file-face)
887 (speedbar-directory-face, speedbar-tag-face)
888 (speedbar-selected-face, speedbar-highlight-face)
889 (speedbar-separator-face):
890 * whitespace.el (whitespace-newline, whitespace-space)
891 (whitespace-hspace, whitespace-tab, whitespace-trailing)
892 (whitespace-line, whitespace-space-before-tab)
893 (whitespace-space-after-tab, whitespace-indentation)
894 (whitespace-empty):
895 * emulation/cua-base.el (cua-global-mark):
896 * eshell/em-prompt.el (eshell-prompt):
897 * net/newst-plainview.el (newsticker-new-item-face)
898 (newsticker-old-item-face, newsticker-immortal-item-face)
899 (newsticker-obsolete-item-face, newsticker-date-face)
900 (newsticker-statistics-face, newsticker-default-face):
901 * net/newst-reader.el (newsticker-feed-face)
902 (newsticker-extra-face, newsticker-enclosure-face):
903 * net/newst-treeview.el (newsticker-treeview-face)
904 (newsticker-treeview-new-face, newsticker-treeview-old-face)
905 (newsticker-treeview-immortal-face)
906 (newsticker-treeview-obsolete-face)
907 (newsticker-treeview-selection-face):
908 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
909 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
910 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
911 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
912 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
913 (nxml-outline-active-indicator, nxml-outline-ellipsis):
914 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
915 (mpuz-text):
916 * progmodes/vera-mode.el (vera-font-lock-number)
917 (vera-font-lock-function, vera-font-lock-interface):
918 * textmodes/table.el (table-cell): Use new-style face specs, and
919 don't use the old :bold and :italic attributes.
920
921 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
922 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
923 (ebrowse-member-class, ebrowse-progress): Likewise.
924 (ebrowse-tree-mark-face, ebrowse-root-class-face)
925 (ebrowse-file-name-face, ebrowse-default-face)
926 (ebrowse-member-attribute-face, ebrowse-member-class-face)
927 (ebrowse-progress-face): Remove obsolete faces.
928
929 * progmodes/flymake.el (flymake-errline, flymake-warnline):
930 Inherit from error and warning faces respectively.
931
932 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
933 Likewise.
f80efb86
SM
934 (flyspell-incorrect-face, flyspell-duplicate-face):
935 Remove obsolete aliases.
4b56d0fe 936
03310646
MA
9372012-06-08 Michael Albinus <michael.albinus@gmx.de>
938
939 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
940 Avoid infloop.
941
513749ee
SM
9422012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
943
944 * startup.el (argv, argi): Make lexically scoped.
945 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
946 * emacs-lisp/cl-macs.el: Use lexical-binding.
947 Rename cl-bind-* to cl--bind-*.
948 * files.el: Don't require `cl' since it doesn't use it.
949 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
950
595ef4ad
JB
9512012-06-08 Juanma Barranquero <lekktu@gmail.com>
952
953 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
954 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
955 instead of calling external sort utility.
956 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
957
e9f66fcb
EZ
9582012-06-08 Eli Zaretskii <eliz@gnu.org>
959
960 * descr-text.el (describe-char): Mention how to insert the
961 character, if the current input method doesn't support it.
962 See the discussion in this thread for the details:
963 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
964
3d10db47
SS
9652012-06-08 Sam Steingold <sds@gnu.org>
966
967 * bindings.el (global-map): Bind XF86Forward to next-buffer and
968 XF86Back to previous-buffer.
969 (minibuffer-local-map): Bind them to next-history-element and
970 previous-history-element respectively.
971 * help-mode.el (help-mode-map): Bind them to help-go-forward and
972 help-go-back respectively.
973 * info.el (Info-mode-map): Bind them to Info-history-forward and
974 Info-history-back respectively.
975 These are the keys next to Up on the ThinkPad keyboard.
976
de7e2b36
SM
9772012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
978
979 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
980 * emacs-lisp/cl-macs.el: Provide itself.
981 (cl--labels-convert-cache): New var.
982 (cl--labels-convert): New function.
983 (cl-flet, cl-labels): New implementation with new semantics, relying on
984 lexical-binding.
985 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
986 (cl-closure-vars, cl--function-convert-cache)
987 (cl--function-convert): Move from cl-macs.el.
988 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
989 rename by removing the "cl-" prefix.
990 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
991
6fa6c4ae
SM
9922012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
993
994 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
995 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
996 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
997 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
998 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
999 (cl-hash-table-count): Add old compatibility aliases.
1000
1001 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
1002 Use macroexpand-all-environment instead.
1003 (cl--old-macroexpand): New var.
1004 (cl--sm-macroexpand): New function.
1005 (cl-symbol-macrolet): Use it during macro expansion.
1006 (cl--function-convert-cache): New var.
1007 (cl--function-convert): New function, extracted from
1008 cl-macroexpand-all.
1009 (cl-lexical-let): Use it.
1010
1011 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
1012 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
1013 (cl-member): Remove old alias.
1014
1015 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
1016 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
1017 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
1018 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
1019 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
1020 (cl-macroexpand-cmacs): Remove var.
1021 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
1022 Use macroexpand-all instead.
1023
4dd1c416
SM
10242012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1025
1026 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
1027 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
1028 (macroexp-copyable-p): New functions and macros.
1029 * emacs-lisp/edebug.el (edebug-unwrap):
1030 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
1031 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
1032 (pcase--let*): Remove.
1033 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
1034 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
1035 macroexp-const-p instead.
1036 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
1037
1038 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
1039 instead of "cl-" for internal definitions. Use macroexp-const-p.
1040 (cl-old-bc-file-form): Remove var.
1041 (cl-const-exprs-p): Remove fun.
1042 (cl-labels, cl-macrolet): Use backquote.
1043 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
1044 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
1045 (cl-define-setf-expander): Rename from cl-define-setf-method.
1046 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
1047
1048 * international/mule-cmds.el: Don't require CL.
1049 (view-hello-file): Don't use `letf'.
1050
ed8bd4d7
SM
10512012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1052
7287f2f3
SM
1053 * tmm.el (tmm-prompt): Use string-prefix-p.
1054 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
1055 (tmm-add-prompt): Use minibuffer-completion-help.
1056 (tmm-delete-map): Remove.
1057
ed8bd4d7
SM
1058 * subr.el (kbd): Make it its own function.
1059
7b4cdbf4
SM
10602012-06-07 Stefan Merten <smerten@oekonux.de>
1061
1062 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
1063 Silence compiler warnings. Fix versions.
ed8bd4d7 1064 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7b4cdbf4 1065 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
ed8bd4d7 1066 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7b4cdbf4
SM
1067 (rst-package-emacs-version-alist): Correct Emacs version to
1068 represent major merge with upstream.
ed8bd4d7 1069 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7b4cdbf4 1070
2b48d721
GM
10712012-06-06 Glenn Morris <rgm@gnu.org>
1072
1073 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
1074 Only print environment variables if set.
1075
fa779ab0
SM
10762012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1077
1078 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
1079 (macroexp--cons): Rename from maybe-cons.
1080 (macroexp--accumulate): Rename from macroexp-accumulate.
1081 (macroexp--all-forms): Rename from macroexpand-all-forms.
1082 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
1083 (macroexp--expand-all): Rename from macroexpand-all-1.
1084
628299e0
SS
10852012-06-06 Sam Steingold <sds@gnu.org>
1086
1087 * calendar/calendar.el (calendar-in-read-only-buffer):
1088 Call `special-mode' to enable the standard read-only keybindings.
1089
b7bb5838
SM
10902012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1091
1092 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
1093 with "loading" messages (bug#11635).
1094
dfb308ba
MA
10952012-06-06 Michael Albinus <michael.albinus@gmx.de>
1096
1097 * files.el (enable-remote-dir-locals): New option.
1098 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
1099
0372ee92
MA
1100 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1101 Ensure, that the temp directory is local.
1102
1103 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
1104 `temporary-file-directory'.
1105
eed0bb91
MA
1106 * progmodes/python.el (python-send-region): Ensure, that the
1107 temporary file is created also in the remote case.
1108
7a58f64d
GM
11092012-06-06 Glenn Morris <rgm@gnu.org>
1110
f7dd4e98
GM
1111 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
1112 (vc-rcs-update-changelog): Use it.
1113
276d5f5d
GM
1114 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff
1115
7a58f64d
GM
1116 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
1117 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
1118 (vc-sccs-diff): Replace use of the external vcdiff script.
1119
daed4003
GM
11202012-06-05 Glenn Morris <rgm@gnu.org>
1121
1122 * ledit.el: Move to obsolete/.
1123
48c455c7
SS
11242012-06-05 Sam Steingold <sds@gnu.org>
1125
1126 * calendar/calendar.el (calendar-exit): reinstate the 2012-03-28
1127 patch (Bug#11140).
1128
57a7d507
SM
11292012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
1130
d32926ff
SM
1131 * emacs-list/cust-print.el: Move to obsolete.
1132
53aacf21
SM
1133 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
1134 compiler-macro expansion.
1135
57a7d507
SM
1136 Add native compiler-macro support.
1137 * emacs-lisp/macroexp.el (macroexpand-all-1):
1138 Support compiler-macros directly. Properly follow aliases and apply
1139 the compiler macros more thoroughly.
1140 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
1141 macroexpand now properly follows aliases.
1142 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
1143 (cl-compiler-macroexpand): Use new prop.
1144 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
1145
1146 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
1147
51a5f9d8
MR
11482012-06-05 Martin Rudalics <rudalics@gmx.at>
1149
1150 * window.el (get-lru-window, get-mru-window, get-largest-window):
1151 New argument NOT-SELECTED to avoid picking the selected window.
1152 (window--display-buffer-1, window--display-buffer-2): Replace by
1153 new function window--display-buffer
1154 (display-buffer-same-window, display-buffer-reuse-window)
57a7d507
SM
1155 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1156 Use window--display-buffer.
51a5f9d8
MR
1157 (display-buffer-use-some-window): Remove temporary dedication
1158 hack by calling get-lru-window and get-largest-window with
1159 NOT-SELECTED argument non-nil. Call window--display-buffer.
1160
08f9f738
GM
11612012-06-05 Glenn Morris <rgm@gnu.org>
1162
1163 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
1164 Replace external vcdiff script.
1165
e364a2b7
SM
11662012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1167
1168 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
1169
041df390
CY
11702012-06-04 Chong Yidong <cyd@gnu.org>
1171
e364a2b7
SM
1172 * image.el (imagemagick-types-inhibit): Revert last change.
1173 Add INFO and M.
47b36b94 1174 (imagemagick-enabled-types): Remove CIN and EPS*.
041df390 1175
7c1898a7
SM
11762012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1177
1178 * emacs-lisp/cl-lib.el: Rename from cl.el.
1179 * emacs-lisp/cl.el: New compatibility file.
1180 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
1181 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
1182 to obey the "cl-" prefix.
1183 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
1184
0c3461de
GM
11852012-06-03 Glenn Morris <rgm@gnu.org>
1186
1e266c88
GM
1187 * emacs-lisp/authors.el (authors-aliases): Addition.
1188
0c3461de
GM
1189 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
1190 Fix :version.
1191
d8a52e15
SM
11922012-06-03 Stefan Merten <smerten@oekonux.de>
1193
1194 * textmodes/rst.el: Add comments.
1195 (rst-transition, rst-adornment): New faces.
1196 (rst-adornment-faces-alist): Make default safe to reevaluate.
1197 Fixes
1198 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
1199 Improve customization tags.
1200 (rst-define-level-faces): Clarify meaning.
1201
5205d6f6
CY
12022012-06-03 Chong Yidong <cyd@gnu.org>
1203
1204 * progmodes/compile.el (compilation-mode-line-fail)
7c1898a7
SM
1205 (compilation-mode-line-run, compilation-mode-line-exit):
1206 New faces.
5205d6f6
CY
1207 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
1208
757ee657
JD
12092012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
1210
7c1898a7
SM
1211 * progmodes/which-func.el (which-func-update-ediff-windows):
1212 New function. Use it in ediff-select-hook (Bug#11478).
757ee657 1213
5f2c76c6
CY
12142012-06-03 Chong Yidong <cyd@gnu.org>
1215
1216 * bindings.el: Remove explicit help text from format-mode-line.
1217 It is now supplied by mode-line-default-help-echo.
1218 (mode-line-front-space, mode-line-end-spaces)
1219 (mode-line-misc-info): New variables.
1220 (mode-line-modes, mode-line-position): Move the default value to
1221 the variable definition.
1222 (mode-line-default-help-echo): New defcustom.
383f7350
CY
1223 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
1224 (mode-line-modified-help-echo): New functions.
1225 (mode-line-mule-info, mode-line-modified): Use them.
1226 (mode-line-eol-desc, propertized-buffer-identification):
1227 Consistency fixes for help text.
cbe46e5f
CY
1228 (mode-line-coding-system-map): Allow using mouse-3 to invoke
1229 set-buffer-file-coding-system (Bug#289).
1230 (mode-line-mule-info-help-echo): Update help text.
5f2c76c6 1231
f2d6a3df
SM
12322012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
1233
1234 * simple.el (execute-extended-command): Set real-this-command
1235 (bug#11506).
1236
37269466
CY
12372012-06-02 Chong Yidong <cyd@gnu.org>
1238
1239 Remove incorrect uses of "modeline" in comments, docstrings, and
1240 function/variable names (Bug#10329).
1241
1242 * cus-edit.el (mode-line):
1243 * dframe.el (dframe-mouse-hscroll):
1244 * emacs-lisp/re-builder.el:
1245 * emacs-lisp/easy-mmode.el (define-minor-mode):
1246 * frame.el (set-frame-name):
1247 * help.el (lookup-minor-mode-from-indicator):
1248 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
1249 * progmodes/cc-cmds.el (c-toggle-auto-newline)
1250 (c-toggle-hungry-state):
1251 * progmodes/antlr-mode.el (antlr-language-alist):
1252 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
1253 * progmodes/vhdl-mode.el (vhdl-mode):
1254 * progmodes/which-func.el (which-func, which-func-cleanup-function):
1255 * term/ns-win.el (ns-face-at-pos):
1256 * term/sup-mouse.el (sup-mouse-report):
1257 * textmodes/flyspell.el (flyspell-mode-line-string):
1258 * textmodes/ispell.el (ispell-highlight-face):
1259 * textmodes/reftex-global.el:
1260 * vc/vc-arch.el (vc-arch-mode-line-string):
1261 * vc/vc-cvs.el (vc-cvs-mode-line-string):
1262 * vc/vc-git.el (vc-git-mode-line-string):
1263 * vc/vc-hooks.el (vc-display-status)
1264 (vc-default-mode-line-string):
1265 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
1266
1267 * ansi-color.el (ansi-color-faces-vector): Change default faces.
1268
1269 * dired.el (dired-sort-set-mode-line): Rename from
1270 dired-sort-set-modeline. All callers changed.
1271
1272 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
1273 eshell-status-in-modeline.
1274
1275 * foldout.el (foldout-mode-line-string): Rename from
1276 foldout-modeline-string. All callers changed.
1277 (foldout-update-mode-line): Rename from foldout-update-modeline.
1278
1279 * subr.el (redraw-modeline): Make into obsolete alias.
1280
1281 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
1282 timeclock-modeline-display. Make old name an alias.
1283 (timeclock-update-mode-line): Likewise. All callers changed.
1284 (timeclock-mode-line-display): No need to check before using
1285 add-hook.
1286 (timeclock-relative, timeclock-day-over-hook)
1287 (timeclock-use-elapsed, timeclock-mode-string)
1288 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
1289
1290 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
1291 crisp-mode-modeline-string.
1292
1293 * play/solitaire.el (solitaire-build-mode-line): Rename from
1294 solitaire-build-modeline. All callers changed.
1295
1296 * play/zone.el (zone-hiding-mode-line): Rename from
1297 zone-hiding-modeline. All callers changed.
1298 (zone): Remove unusued `modeline-hidden-level' property.
1299
1300 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
1301 xscheme-modeline-initialize. All callers changed.
1302
1303 * strokes.el (strokes-lighter): Rename from
1304 strokes-modeline-string.
1305
1306 * textmodes/sgml-mode.el (html-face-tag-alist)
1307 (html-tag-face-alist): Use mode-line face instead of obsolete
1308 alias modeline.
1309
42152ee4
SM
13102012-06-02 Stefan Merten <smerten@oekonux.de>
1311
1312 * textmodes/rst.el: Always require `cl'.
4cf9b38d 1313 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
42152ee4 1314
95f520b5
CY
13152012-06-02 Chong Yidong <cyd@gnu.org>
1316
1317 * image.el (imagemagick-enabled-types): Rename from
1318 imagemagick-types-enable. Add many more types.
1319 (imagemagick-types-inhibit): Change default to nil.
1320 (imagemagick-filter-types): Caller changed.
1321
4a5f187a
SM
13222012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1323
03fef3e6
SM
1324 * emacs-lisp/cl-macs.el: Use backquotes.
1325 (cl-transform-function-property): Use eval-and-compile rather than
1326 abusing `require'.
1327 (defstruct): Use declare-function instead of with-no-warnings.
1328
4a5f187a
SM
1329 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
1330 (byte-compile-output-docform): Re-add the print-circle bindings.
1331 (byte-compile-fix-header): Use #$ just because it's shorter.
1332 (byte-compile-output-file-form): Remove defun/defmacro.
1333
bd56924f
MR
13342012-06-01 Martin Rudalics <rudalics@gmx.at>
1335
1336 * simple.el (choose-completion): Remove now obsolete binding for
1337 owindow.
1338
046e38ce
MA
13392012-06-01 Michael Albinus <michael.albinus@gmx.de>
1340
1341 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
1342 in order to avoid "Stack overflow in regexp matcher".
1343
32d72c2f
GM
13442012-05-31 Glenn Morris <rgm@gnu.org>
1345
1346 * image.el: For clarity, call imagemagick-register-types at
1347 top-level, rather than relying on a custom :initialize.
1348 (imagemagick-types-enable): New option. (Bug#11557)
60b5f187
GM
1349 (imagemagick-filter-types): New function. (Bug#7406)
1350 (imagemagick-register-types): Use imagemagick-filter-types.
32d72c2f
GM
1351 If disabling support, remove elements altogether rather
1352 than using an impossible regexp.
1353 (imagemagick-types-inhibit): Give it the default init function.
1354
dd41169b
SM
13552012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1356
4a5f187a
SM
1357 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
1358 Handle arbitrary file name lengths (Bug#11585).
dd41169b 1359
efc00ab1 13602012-05-31 Martin Rudalics <rudalics@gmx.at>
5221ccb9
MR
1361
1362 * desktop.el (desktop-read): Clear previous and next buffers for
1363 all windows and bury *Messages* buffer (bug#11556).
1364
500fcedc
SM
13652012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1366
1367 Add `declare' for `defun'. Align `defmacro's with it.
1368 * emacs-lisp/easy-mmode.el (define-minor-mode)
1369 (define-globalized-minor-mode): Don't autoload the var definitions.
1370 * emacs-lisp/byte-run.el: Use lexical-binding.
1371 (defun-declarations-alist, macro-declarations-alist): New vars.
1372 (defmacro, defun): Use them.
1373 (make-obsolete, define-obsolete-function-alias)
1374 (make-obsolete-variable, define-obsolete-variable-alias):
1375 Use `declare'.
1376 (macro-declaration-function): Mark obsolete.
1377 * emacs-lisp/autoload.el: Use lexical-binding.
1378 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
1379
6e8a1786
AM
13802012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1381
1382 * textmodes/ispell.el (ispell-with-no-warnings):
1383 Define as a macro.
500fcedc
SM
1384 (ispell-kill-ispell, ispell-change-dictionary):
1385 Use `called-interactively-p' for Emacs instead of obsolete
6e8a1786
AM
1386 `interactive-p'.
1387
61b108cc
SM
13882012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
1389
1390 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
1391 (macro-declaration-function): Move var from C code.
1392 (macro-declaration-function): Define function with defalias.
1393 * emacs-lisp/macroexp.el (macroexpand-all-1):
1394 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
1395 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
1396 defun/defmacro any more.
1397 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
1398 Provide fallback for unknown arglist.
1399 (byte-compile-arglist-warn): Change calling convention.
1400 (byte-compile-output-file-form): Move print-vars binding.
1401 (byte-compile-output-docform): Simplify accordingly.
1402 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
1403 (byte-compile-defmacro-declaration): Remove.
1404 (byte-compile-file-form-defmumble): Generalize to defalias.
1405 (byte-compile-output-as-comment): Return byte-positions.
1406 Simplify callers accordingly.
1407 (byte-compile-lambda): Use `assert'.
1408 (byte-compile-defun, byte-compile-defmacro): Remove.
1409 (byte-compile-file-form-defalias):
1410 Use byte-compile-file-form-defmumble.
1411 (byte-compile-defalias-warn): Remove.
1412
6d3f7c2f
SM
14132012-05-29 Stefan Merten <smerten@oekonux.de>
1414
1415 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
61b108cc 1416 possible. Fix authors. Improve comments. Improve loading of `cl'.
6d3f7c2f
SM
1417
1418 (rst-mode-abbrev-table): Merge definition.
1419 (rst-mode): Make sure `font-lock-defaults' is buffer local.
1420 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
1421
6dbaa1c7
UJ
14222012-05-29 Ulf Jasper <ulf.jasper@web.de>
1423
1424 * calendar/icalendar.el
1425 (icalendar-export-region): Export UID properly.
1426
14272012-05-29 Leo <sdl.web@gmail.com>
61b108cc
SM
1428 * calendar/icalendar.el (icalendar-import-format):
1429 Add `icalendar-import-format-uid' (Bug#11525).
6dbaa1c7
UJ
1430 (icalendar-import-format-uid): New.
1431 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
1432 Export UID.
1433
6876a58d
SM
14342012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1435
1436 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
1437 different alternative patterns.
1438 (pcase-codegen): Be more careful to preserve identity.
1439 (pcase--u1): Don't forget to mark vars as used.
1440
1441 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
1442 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
1443 (byte-compile-from-buffer): ...rather than here.
1444
1445 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
1446 functions from byte-compile-function-environment.
1447
46b7967e
TN
14482012-05-29 Troels Nielsen <bn.troels@gmail.com>
1449
1450 * window.el (window-deletable-p): Avoid deleting the root window
1451 of a frame with an active minibuffer.
1452
69d565e2
MR
14532012-05-29 Martin Rudalics <rudalics@gmx.at>
1454
1455 * simple.el (choose-completion): Use quit-window (Bug#11567).
1456
a149fa51
CY
14572012-05-29 Chong Yidong <cyd@gnu.org>
1458
1459 * whitespace.el (whitespace-cleanup): Fix usage of
1460 whitespace-empty-at-bob-regexp (Bug#11492).
1461
2b311310
AH
14622012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1463
1464 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
1465 revert (Bug#11488).
1466
b9cb2387
JL
14672012-05-29 Juri Linkov <juri@jurta.org>
1468
1469 * isearch.el (isearch-mode-map): Bind `M-s _' to
1470 `isearch-toggle-symbol'. Bind `M-s c' to
1471 `isearch-toggle-case-fold'.
1472 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
1473 (isearch-forward): Add `M-s _' to the docstring.
1474 (isearch-forward-symbol, isearch-toggle-case-fold)
1475 (isearch-symbol-regexp): New functions. (Bug#11381)
1476
d5e61c1c
JL
14772012-05-29 Juri Linkov <juri@jurta.org>
1478
1479 * isearch.el (isearch-word): Add docstring. (Bug#11381)
1480 (isearch-occur, isearch-search-and-update): If `isearch-word' is
1481 a function, call it to get the regexp.
1482 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
1483 property `isearch-message-prefix' instead of the string "word ".
1484 (isearch-search-fun-default): For the case of `isearch-word',
1485 return a lambda that calls re-search-forward/re-search-backward
1486 with a regexp returned by `word-search-regexp' or by the function
1487 in `isearch-word'.
1488
8cbd80f7
JL
14892012-05-29 Juri Linkov <juri@jurta.org>
1490
1491 * isearch.el (isearch-search-fun-default): New function.
1492 (isearch-search-fun): Move default part to the new function
1493 `isearch-search-fun-default'.
1494 (isearch-search-fun-function): Set the default value to
1495 `isearch-search-fun-default'. (Bug#11381)
1496
1497 * comint.el (comint-history-isearch-end):
1498 Use `isearch-search-fun-default'.
1499 (comint-history-isearch-search): Use `isearch-search-fun-default'
1500 and remove spacial case for `isearch-word'.
1501 (comint-history-isearch-wrap): Remove spacial case for
1502 `isearch-word'.
1503
1504 * hexl.el (hexl-isearch-search-function):
1505 Use `isearch-search-fun-default'.
1506
1507 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
1508 Use `word-search-regexp' for `isearch-word'.
1509
1510 * misearch.el (multi-isearch-search-fun):
1511 Use `isearch-search-fun-default'.
1512
1513 * simple.el (minibuffer-history-isearch-search):
1514 Use `isearch-search-fun-default' and remove spacial case for
1515 `isearch-word'.
1516 (minibuffer-history-isearch-wrap): Remove spacial case for
1517 `isearch-word'.
1518
1519 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
1520 Remove spacial case for `isearch-word'.
1521 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
1522
85c8c5b6
AM
15232012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1524
1525 Decrease XEmacs incompatibilities.
1526 * textmodes/flyspell.el (flyspell-check-pre-word-p):
1527 Use `string-match'.
1528 (flyspell-delete-region-overlays): Use alternative definition for
1529 XEmacs.
1530 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
1531 (flyspell-word): Use `process-kill-without-query' if XEmacs.
1532 (flyspell-mode-on): Use `interactive-p' if XEmacs.
1533 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
1534 `define-obsolete-face-alias' under XEmacs, but old method.
1535
1536 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
1537 `with-no-warnings' definition or Emacs alias.
1538 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
1539 (ispell-word): Do not use `region-p' if XEmacs.
1540
8cab9efc
AM
15412012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1542
1543 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
1544 Check for `ispell-dictionary-base-alist' instead of full
1545 `ispell-dictionary-alist'.
1546 (ispell-init-process): Show spellchecker when starting new Ispell
1547 process.
1548
fda91268
RZ
15492012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1550
1551 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
1552 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
1553
694ea8e3
JB
15542012-05-27 Juanma Barranquero <lekktu@gmail.com>
1555
1556 * version.el (motif-version-string, gtk-version-string)
1557 (ns-version-string): Declare.
1558
e4d4f539
JL
15592012-05-27 Juri Linkov <juri@jurta.org>
1560
1561 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
1562 after the `eval-defun-1' specialcaseing
1563 like in `edebug-eval-defun' (bug#10181).
1564
1565 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
1566 like in `eval-defun-1'.
1567
33017faf 15682012-05-27 Eli Zaretskii <eliz@gnu.org>
b30b64b9 1569
fda91268
RZ
1570 * mail/sendmail.el (mail-yank-region):
1571 Recognize rmail-yank-current-message in addition to insert-buffer.
1572 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
b30b64b9
EZ
1573 a *mail* buffer created through rmail-start-mail with sendmail as
1574 mail-user-agent.
1575
33017faf
GM
15762012-05-27 Chong Yidong <cyd@gnu.org>
1577
1578 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
1579 Default to 256 (Bug#11267).
1580
1581 * help.el (describe-mode): Doc fix.
1582
04188bb9
GM
15832012-05-26 Glenn Morris <rgm@gnu.org>
1584
38264cc9
GM
1585 * w32-fns.el (w32-init-info): Remove.
1586 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
1587
eb7afdad
GM
1588 * info.el (info-initialize): For self-contained NS builds, put the
1589 included info/ directory at the front. (Bug#2791)
1590
04188bb9
GM
1591 * paths.el (Info-default-directory-list): Make it a defcustom,
1592 mainly so that we can use custom-initialize-delay.
1593
a179e3f7
SM
15942012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1595
43416392
SM
1596 * subr.el (buffer-has-markers-at): Mark obsolete.
1597
a179e3f7 1598 * subr.el (lambda): Use declare.
43416392 1599
a179e3f7
SM
1600 * emacs-lisp/lisp-mode.el (lambda):
1601 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
1602
34a008d9
AH
16032012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1604
1605 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
1606
0a3b289f
GM
16072012-05-26 Glenn Morris <rgm@gnu.org>
1608
1609 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
1610
758c81e8
GM
16112012-05-25 Glenn Morris <rgm@gnu.org>
1612
f9f334f0
GM
1613 * paths.el: Remove no-byte-compile.
1614 * loadup.el: No need to load paths.el uncompiled.
1615
87eb79c2
GM
1616 * image.el (imagemagick-types-inhibit): Doc fix.
1617
758c81e8
GM
1618 * version.el: Remove no-byte-compile and associated formatting.
1619 * loadup.el: No need to load version.el uncompiled. AFAICS, this
1620 is ancient code from when there was an "inc-vers.el".
1621
e7e85dc0
SM
16222012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1623
1624 * progmodes/gdb-mi.el: Minor style changes.
1625 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
1626 Turn into minor modes.
1627 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
1628 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
1629 (gdb-shell): Remove unneeded let-binding.
1630 (gdb-get-many-fields): Eliminate O(n²) behavior.
1631
f31237a4
EZ
16322012-05-25 Eli Zaretskii <eliz@gnu.org>
1633
1634 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
1635 platforms that don't link in fontset.c.
1636
bc1b21bb
JL
16372012-05-25 Juri Linkov <juri@jurta.org>
1638
1639 Use the same diff color scheme as in modern VCSes (bug#10181).
1640
1641 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
1642 to avoid confusion with `diff-added' that now uses green colors.
1643 (diff-removed): Use shades of red.
1644 (diff-added): Use shades of green.
1645 (diff-changed): Leave just the yellow color.
1646 (diff-use-changed-face): New variable.
1647 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
1648 how to highlight context diff changes.
1649 (diff-refine-change): Use shades of yellow.
1650 (diff-refine-removed): New face that uses shades of red.
1651 (diff-refine-added): New face that uses shades of green.
1652 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
1653 `diff-refine-removed' in the call to `smerge-refine-subst'
1654 depending on the value of `diff-use-changed-face'.
1655
1656 * vc/smerge-mode.el (smerge-mine): Use shades of red.
1657 (smerge-other): Use shades of green.
1658 (smerge-base): Use shades of yellow.
1659 (smerge-refined-change): Empty face.
1660 (smerge-refined-removed): New face that uses shades of red.
1661 (smerge-refined-added): New face that uses shades of green.
1662 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
1663 args `props-r' and `props-a', and use them. Doc fix.
1664 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
1665 on its value use different faces `smerge-refined-change',
1666 `smerge-refined-removed', `smerge-refined-added' in the call to
1667 `smerge-refine-subst'.
1668
1669 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
1670 Add face condition `min-colors 88' with shades of red.
1671 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
1672 `min-colors 88' with shades of green.
1673 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
1674 `min-colors 88' with shades of yellow.
1675
6df9112c
GM
16762012-05-24 Glenn Morris <rgm@gnu.org>
1677
ead5edc0
GM
1678 * paths.el (prune-directory-list, remote-shell-program): Move to...
1679 * files.el (prune-directory-list, remote-shell-program): ...here.
1680 For the latter, delay initialization, prefer ssh, just search PATH.
1681
f18b81e6
GM
1682 * paths.el (term-file-prefix): Move to faces.el (the only user).
1683 * faces.el (term-file-prefix): Move here, make it a defcustom.
1684
ee2f89a6
GM
1685 * paths.el (news-directory, news-path, news-inews-program):
1686 Move to gnus/nnspool.el.
61a583ca 1687
f8815e4c
GM
1688 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
1689
c8f3b42c
GM
1690 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
1691 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
1692 Make the latter a defcustom, with a delayed initialization.
1693
6df9112c
GM
1694 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
1695 These were deleted from Gnus itself late 2010.
1696
5dadff36
JB
16972012-05-22 Juanma Barranquero <lekktu@gmail.com>
1698
9e1701c6
JB
1699 * progmodes/which-func.el (which-func-ff-hook):
1700 Check against user-error, not error.
1701
bd7239f5 1702 * emacs-lisp/edebug.el (top): Do not load or set up loading of
5dadff36
JB
1703 cl-specs.el, which no longer exists.
1704
3290526d
GM
17052012-05-22 Glenn Morris <rgm@gnu.org>
1706
1707 * info.el (info-emacs-bug): New command.
1708 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
1709 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
1710
ff0c3cfb
GM
17112012-05-21 Glenn Morris <rgm@gnu.org>
1712
1713 * makefile.w32-in (update-subdirs-SH):
1714 * Makefile.in (update-subdirs): Update for moved update-subdirs.
1715
5814f126
SM
17162012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
1717
a52c0aa0
SM
1718 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
1719
5814f126
SM
1720 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1721 Simplify Maven regexp, and make sure the file can't start with a space
1722 (bug#11517).
1723
b847032c
GM
17242012-05-21 Glenn Morris <rgm@gnu.org>
1725
1726 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1727 Scrap superfluous subshells.
1728
3858bfe7
SM
17292012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
1730
1731 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
1732 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
1733
d14b0029
JB
17342012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
1735
1736 * calc/calc.el (calc-ensure-consistent-units): New variable.
1737
a52c0aa0
SM
1738 * calc/calc-units.el (math-consistent-units-p)
1739 (math-check-unit-consistency): New functions.
1740 (calc-quick-units, calc-convert-units):
1741 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
1742 is non-nil.
d14b0029
JB
1743 (calc-extract-units): Fix typo.
1744
60c4db3a
SM
17452012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1746
77f3b62e
SM
1747 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
1748
60c4db3a
SM
1749 * textmodes/flyspell.el: Commenting style, plus code simplifications.
1750 (flyspell-default-deplacement-commands): Don't spell check after
1751 repeated window/frame switches (e.g. triggered by mouse-movement).
1752 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
1753 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
1754 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
1755 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
1756 Remove unused vars.
1757 (flyspell-get-casechars, flyspell-get-not-casechars):
1758 Simplify; Don't bother removing a ] just to add it back.
1759 * textmodes/ispell.el (ispell-program-name): Use executable-find.
1760
b1a10716
RS
17612012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1762
1763 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
1764 New functions.
bd7239f5 1765 (math-function-table): Add support for more C functions.
b1a10716 1766
3f1b25b5
AM
17672012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1768
1769 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1770 (flyspell-debug-signal-word-checked): Protect delay handling for
1771 otherchars against empty otherchars.
1772
b581bb5c
SM
17732012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1774
1775 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
1776 their respective macro declarations.
1777 * skeleton.el (define-skeleton):
1778 * progmodes/compile.el (define-compilation-mode):
1779 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
1780 (define-ibuffer-filter):
1781 * emacs-lisp/generic.el (define-generic-mode):
1782 * emacs-lisp/easy-mmode.el (define-minor-mode)
1783 (define-globalized-minor-mode):
1784 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
1785 * emacs-lisp/byte-run.el (defsubst):
1786 * custom.el (deftheme): Add doc-string metadata.
1787
70b8ef8f
SM
17882012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1789
1790 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
1791
b1198e17
SM
17922012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1793
9abdc45d
SM
1794 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
1795
b1198e17
SM
1796 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
1797 * emacs-lisp/cl-macs.el: Idem.
1798 * emacs-lisp/cl-specs.el: Remove.
1799
4735906a
SM
18002012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1801
1802 Minor renaming of internal CL functions and variables.
1803 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
1804 (cl--position): Rename from cl-position.
1805 (cl--delete-duplicates): Rename from cl-delete-duplicates.
1806 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
1807 (cl--random-state): Rename from *random-state*.
1808
ac348012
SM
18092012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1810
1811 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
1812 parens around the arg list (bug#11499).
1813
a0a79cde
JL
18142012-05-17 Juri Linkov <juri@jurta.org>
1815
1816 * isearch.el (word-search-regexp, word-search-backward)
1817 (word-search-forward, word-search-backward-lax)
1818 (word-search-forward-lax): Move functions from search.c
1819 (bug#10145, bug#11381).
1820
65034a51
AM
18212012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1822
1823 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1824 (flyspell-debug-signal-word-checked): Delay for otherchars as for
1825 normal word components.
1826
1a72a195
SM
18272012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
1828
1829 * minibuffer.el (completion--sifn-requote): Fix last change.
1830 (minibuffer-local-must-match-filename-map):
1831 Move define-obsolete-variable-alias before its var.
1832
fdb058c2
SM
18332012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1834
c41045e6
SM
1835 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
1836
036dfb8b
SM
1837 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
1838 behavior.
1839 (completion--string-equal-p): New function.
1840 (completion--twq-all): Use it to get better assertion failure data.
1841
2473256d
SM
1842 Only handle ".." and '..' quoting in shell-mode (bug#11466).
1843 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
1844 (shell--requote-argument): New functions.
1845 (shell-completion-vars): Use them.
1846 (shell--parse-pcomplete-arguments): Rename from
1847 shell-parse-pcomplete-arguments.
1848 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
1849 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
1850 Obey comint-file-name-quote-list.
1851
fdb058c2
SM
1852 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
1853 (smie-indent-keyword): Use it.
1854
51fa99f1
SM
18552012-05-14 Stefan Merten <smerten@oekonux.de>
1856
1857 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
1858
e18afed7 18592012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
d9d1dfef
SM
1860
1861 * net/rlogin.el (rlogin-mode-map): Fix last change.
1862
e18afed7 18632012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
8633b1f4
JW
1864
1865 * mail/smtpmail.el (smtpmail-send-command): Send the command and
1866 the following \r\n using a single `process-send-string', since the
1867 Lotus SMTP server refuses to accept any commands if they are sent
e18afed7 1868 with two `process-send-string's (Bug#11444).
8633b1f4 1869
e18afed7 18702012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
fe263b8f 1871
fdb058c2
SM
1872 * shell.el (shell-parse-pcomplete-arguments):
1873 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
e18afed7 1874
2d21d7f6
WJ
18752012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
1876
e18afed7 1877 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
2d21d7f6
WJ
1878 (image-transform-scale, image-transform-right-angle-fudge): New vars.
1879 (image-transform-width, image-transform-fit-width): New functions.
1880 (image-transform-properties): Use them.
1881 (image-transform-check-size): New function.
1882 (image-toggle-display-image): Use it (for testing).
1883 (image-transform-set-rotation): Reduce angle mod 360.
1884 Delete obsolete comment.
1885
7102e6d0
WJ
18862012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
1887
1888 * image-mode.el: Fix scaling (bug#11399).
1889 (image-transform-resize): Doc fix.
1890 (image-transform-properties): Default scale is 1 and height should
1891 be an integer.
1892
06bc5e6e
SM
18932012-05-13 Johan Bockgård <bojohan@gnu.org>
1894
1895 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
1896 than hard-coding `car', to fix misbehavior when moving forward.
1897
0ae03b6a
CY
18982012-05-13 Chong Yidong <cyd@gnu.org>
1899
1900 * emacs-lisp/tabulated-list.el (tabulated-list-format)
1901 (tabulated-list-entries, tabulated-list-padding)
1902 (tabulated-list-sort-key): Make permanent-local.
1903
1904 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
1905 (electric-buffer-list): Put electric buffer menu
1906 command descriptions in this docstring, instead of the docstring
1907 of electric-buffer-menu-mode. Code cleanups.
1908 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
1909 Electric-buffer-menu-mode.
1910 (electric-buffer-update-highlight): Minor code cleanup.
1911
205a7391
MA
19122012-05-13 Michael Albinus <michael.albinus@gmx.de>
1913
1914 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
1915 (Bug#11447)
1916
e5bd0a28
SM
19172012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
1918
1919 Move define-obsolete-variable-alias before the var's definition.
1920 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
1921 * tooltip.el (tooltip-hook):
1922 * textmodes/reftex-toc.el (reftex-toc-map):
1923 * textmodes/reftex-sel.el (reftex-select-label-map)
1924 (reftex-select-bib-map):
1925 * textmodes/reftex-index.el (reftex-index-map)
1926 (reftex-index-phrases-map):
1927 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
1928 * progmodes/meta-mode.el (meta-mode-map):
1929 * novice.el (disabled-command-hook):
1930 * loadhist.el (unload-hook-features-list):
1931 * frame.el (blink-cursor):
1932 * files.el (find-file-not-found-hooks, write-file-hooks)
1933 (write-contents-hooks):
1934 * emulation/tpu-edt.el (GOLD-map):
1935 * emacs-lock.el (emacs-lock-from-exiting):
1936 * emacs-lisp/generic.el (generic-font-lock-defaults):
1937 * emacs-lisp/chart.el (chart-map):
1938 * dos-fns.el (register-name-alist):
1939 * dired-x.el (dired-omit-files-p):
1940 * desktop.el (desktop-enable):
1941 * cus-edit.el (custom-mode-hook):
1942 * buff-menu.el (buffer-menu-mode-hook):
1943 * bookmark.el (bookmark-read-annotation-text-func)
1944 (bookmark-exit-hooks):
1945 * allout.el (allout-mode-deactivate-hook)
1946 (allout-exposure-change-hook, allout-structure-added-hook)
1947 (allout-structure-deleted-hook, allout-structure-shifted-hook):
1948 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
1949 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
1950 comes before the corresponding variable's definition.
1951
ac59c2f6
CY
19522012-05-12 Chong Yidong <cyd@gnu.org>
1953
1954 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
0d909786
CY
1955 (Buffer-menu-mouse-select): Restore function (Bug#11459).
1956 (Buffer-menu-mode-map): Bind it.
1957 (Buffer-menu--pretty-name): Add a mouse-face property.
ac59c2f6 1958
dee6c9a3
SM
19592012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
1960
2171cea5
SM
1961 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
1962 (prolog-upper-case-string, prolog-lower-case-string)
1963 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
1964 (prolog-use-smie, prolog-smie-grammar): New vars.
1965 (prolog-smie-forward-token, prolog-smie-backward-token)
1966 (prolog-smie-rules): New funs.
1967 (prolog-comment-indent): Remove.
1968 (prolog-mode-variables): Use default comment indentation instead.
1969 Setup SMIE.
1970 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
1971 (prolog-mode): Don't call them any more.
1972 (prolog-electric-colon, prolog-electric-dash)
1973 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
1974
aa0382bd
SM
1975 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
1976
dbacb4bd
SM
1977 * minibuffer.el (completion--twq-all): Again, allow case differences.
1978
13bdd94c
SM
1979 * term.el: Move keymap initialization code to be more idiomatic.
1980 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
1981 (term-terminal-menu): Move initialization into declaration.
1982 (term-escape-char): Let the user set it in her .emacs.
1983
ff46c759
SM
1984 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
1985 Provide SMIE-based indentation (not enabled by default yet).
1986 (sh-mode-map): Don't bind electric keys.
1987 Use electric-pair-mode instead of skeleton-pair.
1988 (sh-assignment-regexp): Fit within 80 columns.
1989 (sh-indent-supported): Specify actual shell name instead of boolean.
1990 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
1991 (sh-maybe-here-document): Use it. Make obsolete.
1992 (sh-electric-here-document-mode) New minor mode.
1993 (sh-mode): Use it. Don't set sh-indent-supported-here here.
1994 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
1995 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
1996 (sh-smie-rc-grammar, sh-use-smie): New vars.
1997 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
1998 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
1999 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
2000 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
2001 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
2002 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
2003 (sh-set-shell): Use smie-setup if requested.
2004
dee6c9a3
SM
2005 * term.el (term-set-escape-char): Properly set term-escape-char.
2006 See http://stackoverflow.com/questions/10524656.
2007
9f9aa044
CY
20082012-05-10 Chong Yidong <cyd@gnu.org>
2009
2010 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
2011 Use url-generic-parse-url, and handle host names and Windows
2012 filenames properly.
2013 (ffap-url-unwrap-remote): Use url-generic-parse-url.
2014 (ffap-url-unwrap-remote): Accept list values, specifying a list of
2015 URL schemes to work on.
2016 (ffap--toggle-read-only): New function.
2017 (ffap-read-only, ffap-read-only-other-window)
2018 (ffap-read-only-other-frame): Use it.
2019 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
2020 necessary for ffap-url-unwrap-remote.
2021
836d29b3
DA
20222012-05-10 Dave Abrahams <dave@boostpro.com>
2023
2024 * cus-start.el (create-lockfiles): Add it.
2025
00fd78ed
CY
20262012-05-09 Chong Yidong <cyd@gnu.org>
2027
2028 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
2029 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
2030
666b903b 20312012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1cb51c12
SM
2032
2033 * shell.el (shell-completion-vars): Fix last change (bug#11348).
2034
666b903b 20352012-05-09 Chong Yidong <cyd@gnu.org>
18f00515
CY
2036
2037 * ansi-color.el (ansi-color-process-output): Check for validity of
2038 comint-last-output-start before using it. This avoids a bad
2039 interaction with gdb-mi's input/output buffer.
2040
666b903b 20412012-05-09 Glenn Morris <rgm@gnu.org>
fd075e7b
GM
2042
2043 * files.el (dir-locals-read-from-file):
2044 Mention dir-locals in any error message.
2045
666b903b 20462012-05-09 Chong Yidong <cyd@gnu.org>
25f292cd
CY
2047
2048 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
2049 package (Bug#11410).
2050
f677562b
CY
2051 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
2052 variables into description.
2053
666b903b 20542012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3d53ee1b
SM
2055
2056 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
2057 shell-delimiter-argument-list (bug#11348).
2058 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
2059
b499d8d0
JB
20602012-05-09 Juanma Barranquero <lekktu@gmail.com>
2061
8f6b6da8
JB
2062 * textmodes/rst.el: Silence byte-compiler warnings.
2063 (rst-re-alist, rst-reset-section-caches): Move around.
2064 (rst-re): Use `characterp', not `char-valid-p'.
2065 (font-lock-beg, font-lock-end): Declare.
2066
4824146a
JB
2067 * progmodes/idlw-shell.el (specs): Remove reference to deleted
2068 variable `idlwave-shell-activate-alt-keybindings' and simplify.
2069
b499d8d0
JB
2070 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
2071
ad89bb83
GM
20722012-05-08 Glenn Morris <rgm@gnu.org>
2073
2074 * files.el (auto-mode-alist): Treat ".make" like ".mk".
2075
8bba5a75
SM
20762012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2077
49ed9c8e
SM
2078 * vc/log-edit.el: Add GNU coding standards highlighting.
2079 (log-edit-font-lock-gnu-style)
2080 (log-edit-font-lock-gnu-keywords): New vars.
2081 (log-edit-font-lock-keywords): New fun.
2082 (log-edit-mode): Don't fold case in font-lock.
2083 (log-edit-font-lock-keywords): Do not assume case-folding.
2084
07d00b56
SM
2085 * imenu.el: Misc cleanup. Make docstrings out of comments.
2086 Use lexical-binding.
2087 (imenu--index-alist, imenu--last-menubar-index-alist)
2088 (imenu-menubar-modified-tick): Use defvar-local.
2089 (imenu--split-menu): Remove unused var.
2090 (imenu--cleanup-seen): Declare as global.
2091 (imenu--cleanup): Use dolist.
2092
8bba5a75
SM
2093 * subr.el (defvar-local): Add debug spec and doc-string position.
2094
5075bdb5
GM
20952012-05-08 Glenn Morris <rgm@gnu.org>
2096
c052c904
GM
2097 * lisp/language/burmese.el, language/cham.el, language/czech.el:
2098 * language/english.el, language/georgian.el, language/greek.el:
2099 * language/japanese.el, language/khmer.el, language/korean.el:
2100 * language/lao.el, language/misc-lang.el, language/romanian.el:
2101 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
2102 * language/thai.el, language/utf-8-lang.el:
2103 Remove no-byte-compile setting.
2104
5075bdb5
GM
2105 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
2106
06f679a7
AH
21072012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2108
2109 * progmodes/make-mode.el (makefile-browse):
2110 Remove unnecessary interactive. (Bug#11324)
2111
03794570
GM
21122012-05-07 Glenn Morris <rgm@gnu.org>
2113
af8630f4
GM
2114 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
2115
03794570
GM
2116 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
2117
f0809a9d
SM
21182012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2119
28be5ce7
SM
2120 * loadup.el: Preload newcomment.el.
2121 * newcomment.el: Move autoload-only code to toplevel.
2122
f0809a9d
SM
2123 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
2124 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
2125 Handle new :right-align column property.
2126 (tabulated-list-print-col): Idem, plus use `display' text-property to
2127 try and preserve alignment for variable pitch fonts.
2128
1241b724
CY
21292012-05-07 Chong Yidong <cyd@gnu.org>
2130
2131 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
2132 (tabulated-list-use-header-line): New var.
2133 (tabulated-list-init-header): Use it.
2134 (tabulated-list-print-fake-header): New function.
2135 (tabulated-list-print): Use it.
2136 (tabulated-list-sort-button-map): Add non-header-line commands.
2137 (tabulated-list-init-header): Add column name property to basic
2138 labels as well.
2139 (tabulated-list-col-sort): Handle non-header-line button case.
2140 (tabulated-list--sort-by-column-name): Fix a corner case.
2141
f0809a9d
SM
2142 * buff-menu.el (list-buffers--refresh):
2143 Handle Buffer-menu-use-header-line.
1241b724 2144
e5f9458f
CY
21452012-05-06 Chong Yidong <cyd@gnu.org>
2146
2147 * buff-menu.el: Convert to Tabulated List mode.
2148 (Buffer-menu-buffer+size-width): Make obsolete.
2149 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
2150 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
2151 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
2152 documentation into docstring of buffer-menu.
2153 (Buffer-menu-toggle-files-only): Add an informative message.
2154 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
2155 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
2156 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
2157 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
2158 (Buffer-menu-execute, Buffer-menu-select)
2159 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
2160 (Buffer-menu-bury): Use Tabulated List machinery.
2161 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
2162 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
f0809a9d 2163 Delete.
e5f9458f
CY
2164 (list-buffers--refresh): New function.
2165 (list-buffers-noselect): Use it.
2166 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
2167 (Buffer-menu--pretty-file-name): New helper functions.
2168
2169 * loadup.el: Preload tabulated-list.
2170
2171 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
2172 tabulated-list-sort-column.
2173 (tabulated-list-init-header): Add the initial aligning space even
2174 if tabulated-list-padding is zero.
2175
e129292c
CS
21762012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
2177
2178 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
2179 whose cdr is not a cons cell correctly (bug#11038).
2180
6632d361
CY
21812012-05-06 Chong Yidong <cyd@gnu.org>
2182
e129292c
CS
2183 * emacs-lisp/tabulated-list.el (tabulated-list-format):
2184 Accept additional plist in column descriptors.
6632d361
CY
2185 (tabulated-list-init-header): Obey it.
2186 (tabulated-list-get-entry): New function.
2187 (tabulated-list-put-tag): Use it. Use string-width instead of
2188 length.
2189 (tabulated-list--column-number): New function.
2190 (tabulated-list-print): Use it.
e129292c
CS
2191 (tabulated-list-print-col): New function.
2192 Set `tabulated-list-column-name' property on each column's text.
6632d361 2193 (tabulated-list-print-entry): Use it.
e129292c
CS
2194 (tabulated-list-delete-entry, tabulated-list-set-col):
2195 New functions.
6632d361
CY
2196 (tabulated-list-sort-column): New command (Bug#11337).
2197
3cc99f68
CY
2198 * buff-menu.el (list-buffers): Move C-x C-b binding from
2199 buff-menu.el to bindings.el.
2200
2201 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
2202 :advertised-binding feature.
2203
52b61776
TN
22042012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
2205
2206 * progmodes/compile.el (compilation-internal-error-properties):
2207 Calculate start position correctly when end-col is set but
2208 end-line is not (Bug#11382).
2209
ebfe2597
WJ
22102012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
2211
2212 * man.el (Man-unindent): Use text-property-default-nonsticky to
2213 prevent untabify from inheriting face properties (Bug#11408).
2214
6d3f7c2f
SM
22152012-05-05 Stefan Merten <smerten@oekonux.de>
2216
2217 * textmodes/rst.el: Major merge with upstream development up to
2218 Docutils SVN r7399 / rst.el V1.2.1.
2219
2220 Clarify maintainership and authors.
2221
2222 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
2223 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
2224 (rst-official-version, rst-official-cvs-rev, rst-version)
2225 (rst-package-emacs-version-alist): New functions and variables
2226 for version information.
2227
2228 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
2229 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
2230 (rst-mode-syntax-table, rst-mode): New and corrected functions
2231 and variables representing reStructuredText features.
2232
2233 (rst-re): New function for reStructuredText regexes. Use in
2234 many places.
2235
2236 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
2237 (rst-mode-map): Rebind keys.
2238
2239 (rst-mode-lazy, rst-font-lock-keywords)
2240 (rst-font-lock-extend-region)
2241 (rst-font-lock-extend-region-internal)
2242 (rst-font-lock-extend-region-extend)
2243 (rst-font-lock-find-unindented-line-limit)
2244 (rst-font-lock-find-unindented-line-match)
2245 (rst-adornment-level, rst-font-lock-adornment-level)
2246 (rst-font-lock-adornment-match)
2247 (rst-font-lock-handle-adornment-pre-match-form)
2248 (rst-font-lock-handle-adornment-matcher): Major revision of
2249 font-locking. Integrate with other code. Use `jit-lock-mode'.
2250
2251 (rst-preferred-adornments, rst-adjust-hook)
2252 (rst-new-adornment-down, rst-preferred-bullets)
2253 (rst-preferred-bullets, rst-indent, rst-indent-width)
2254 (rst-indent-field, rst-indent-literal-normal)
2255 (rst-indent-literal-minimized, rst-indent-comment): Change,
2256 extend and improve customization.
2257
2258 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
2259 (rst-normalize-cursor-position, rst-get-decoration)
2260 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
2261 (rst-rstrip, rst-toc-insert-find-delete-contents)
2262 (rst-shift-fill-region, rst-compute-bullet-tabs)
2263 (rst-debug-print-tabs, rst-debug-mark-found)
2264 (rst-shift-region-guts, rst-shift-region-right)
2265 (rst-shift-region-left, rst-use-char-classes)
2266 (rst-font-lock-keywords-function)
2267 (rst-font-lock-indentation-point)
2268 (rst-font-lock-find-unindented-line-begin)
2269 (rst-font-lock-find-unindented-line-end)
2270 (rst-font-lock-find-unindented-line)
2271 (rst-font-lock-adornment-point, rst-font-lock-level)
2272 (rst-adornment-level-alist): Remove functions and variables.
2273
2274 (rst-compare-adornments, rst-get-adornment-match)
2275 (rst-suggest-new-adornment, rst-get-adornments-around)
2276 (rst-adornment-complete-p, rst-get-next-adornment)
2277 (rst-adjust-adornment, rst-display-adornments-hierarchy)
2278 (rst-straighten-adornments): Standardize function names to
2279 use "adornment" instead of "decoration". Correct callers.
2280 Similar standardizing in many places.
2281
2282 (rst-update-section, rst-adjust, rst-promote-region)
2283 (rst-enumerate-region, rst-bullet-list-region)
2284 (rst-repeat-last-character): Correct use of `interactive'.
2285
2286 (rst-classify-adornment, rst-find-all-adornments)
2287 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
2288 (rst-find-leftmost-column, rst-repeat-last-character):
2289 Refactor functions.
2290
2291 (rst-find-title-line, rst-reset-section-caches)
2292 (rst-get-adornments-around, rst-adjust-adornment-work)
2293 (rst-arabic-to-roman, rst-roman-to-arabic)
2294 (rst-insert-list-pos, rst-insert-list-new-item)
2295 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
2296 New functions.
2297
2298 (rst-all-sections, rst-section-hierarchy)
2299 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
2300 New variables.
2301
2302 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
2303 configuration instead of only buffer. Change where necessary.
2304
2305 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
2306 (rst-shift-region, rst-adaptive-fill): New functions for
2307 indentation and filling.
2308
2309 (rst-comment-line-break, rst-comment-indent)
2310 (rst-comment-insert-comment, rst-comment-region)
2311 (rst-uncomment-region): New functions for handling comments.
2312
2313 (rst-compile): Quote shell arguments.
2314
2315 (rst-compile-pdf-preview, rst-compile-slides-preview):
2316 Delete temporary files after use.
2317
a43f98b3
GM
23182012-05-05 Glenn Morris <rgm@gnu.org>
2319
48176e8b
GM
2320 * calendar/cal-html.el: Optionally include holidays in the output.
2321 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
2322 (cal-html-holidays): New option.
2323 (cal-html-css-default): Add holiday entry.
2324 (holiday-in-range): Autoload it.
2325 (cal-html-htmlify-entry): Add optional class argument.
2326 (cal-html-htmlify-list): Add optional holidays argument.
2327 (cal-html-insert-agenda-days): Include holidays in the output.
2328 (cal-html-one-month): Maybe include holidays.
2329
a43f98b3
GM
2330 * calendar/holidays.el (holiday-in-range):
2331 Move here from cal-tex-list-holidays.
2332 * calendar/cal-tex.el (cal-tex-list-holidays):
2333 Make it an obsolete alias for holiday-in-range. Update all callers.
2334
fef9d149 23352012-05-05 Chong Yidong <cyd@gnu.org>
eceeb5fc
CY
2336
2337 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
2338 Nextstep.
2339
248da2f4
RW
23402012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
2341
2342 * files.el (file-auto-mode-skip): New var.
2343 (set-auto-mode-1): Use it.
2344
f95e9344
SM
23452012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2346
df96ab1e
SM
2347 * repeat.el: Use lexical-binding.
2348 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
2349 (repeat-undo-count): Remove.
2350 (repeat):
2351 * progmodes/octave-mod.el (octave-abbrev-start):
2352 * progmodes/f90.el (f90-abbrev-start):
2353 * face-remap.el (text-scale-adjust):
2354 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
2355
5342bb06
SM
2356 * emacs-lisp/pcase.el (pcase--let*): New function.
2357 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
2358 a bit more.
2359 (pcase--split-pred): Be more clever about ruling out overlap between
2360 a predicate and some constant pattern.
2361 (pcase--q1): Use `null' instead of (eq foo nil).
2362
f95e9344
SM
2363 * subr.el (setq-local, defvar-local): New macros.
2364 (kbd): Redefine as an alias.
2365 (with-selected-window): Leave unrelated frames alone.
2366 (set-temporary-overlay-map): New function.
2367
71873e2b
SM
23682012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2369
2370 * subr.el (user-error): New function.
2371 * window.el (switch-to-buffer):
2372 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
2373 (smerge-match-conflict):
2374 * simple.el (previous-matching-history-element)
2375 (next-matching-history-element, goto-history-element, undo-more)
2376 (undo-start):
2377 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
2378 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
2379 (next-file, tags-loop-scan, list-tags, complete-tag):
2380 * progmodes/compile.el (compilation-loop):
2381 * mouse.el (mouse-minibuffer-check):
2382 * man.el (Man-bgproc-sentinel, Man-goto-page):
2383 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
2384 (Info-history-forward, Info-follow-reference, Info-menu)
2385 (Info-extract-menu-item, Info-extract-menu-counting)
2386 (Info-forward-node, Info-backward-node, Info-next-menu-item)
2387 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
2388 (Info-next-reference, Info-prev-reference, Info-index)
2389 (Info-index-next, Info-follow-nearest-node)
2390 (Info-copy-current-node-name):
2391 * imenu.el (imenu--make-index-alist)
2392 (imenu-default-create-index-function, imenu-add-to-menubar):
2393 * files.el (basic-save-buffer, recover-file):
2394 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2395 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
2396 (checkdoc-message-text, checkdoc-defun):
2397 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
2398 * cus-edit.el (customize-changed-options, customize-rogue)
2399 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
2400 (custom-variable-mark-to-reset-standard)
2401 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
2402 (custom-file):
2403 * completion.el (check-completion-length):
2404 * comint.el (comint-search-arg)
2405 (comint-previous-matching-input-string-position)
2406 (comint-previous-matching-input)
2407 (comint-replace-by-expanded-history-before-point, comint-send-input)
2408 (comint-copy-old-input, comint-backward-matching-input)
2409 (comint-goto-process-mark, comint-set-process-mark):
2410 * calendar/calendar.el (calendar-cursor-to-date): Use it.
2411 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
2412
8a61ee22
SM
24132012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2414
66408d1e
SM
2415 * dabbrev.el (dabbrev--ignore-case-p): New function.
2416 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
2417 Use it.
2418
8a61ee22
SM
2419 * files.el (automount-dir-prefix): Mark as obsolete.
2420
3c74813a
GM
24212012-05-04 Glenn Morris <rgm@gnu.org>
2422
2423 * patcomp.el, play/bruce.el: Move to obsolete/.
2424
0bfcf5c5
PE
24252012-05-04 Paul Eggert <eggert@cs.ucla.edu>
2426
2427 Fix minor Y10k bugs.
2428 * arc-mode.el (archive-unixdate):
2429 * autoinsert.el (auto-insert-alist):
2430 * calc/calc-forms.el (math-this-year):
2431 * emacs-lisp/copyright.el (copyright-current-year)
2432 (copyright-update-year, copyright):
2433 * tar-mode.el (tar-clip-time-string):
2434 * time.el (display-time-update):
2435 Don't assume years have 4 digits.
2436
78f3273a
CY
24372012-05-04 Chong Yidong <cyd@gnu.org>
2438
2439 * dos-w32.el (file-name-buffer-file-type-alist)
2440 (direct-print-region-use-command-dot-com):
2441 * ffap.el (ffap-menu-regexp):
2442 * find-file.el (ff-special-constructs):
2443 * follow.el (follow-debug):
2444 * forms.el (forms--debug):
2445 * iswitchb.el (iswitchb-all-frames):
2446 * ido.el (ido-all-frames):
2447 * emacs-lisp/timer.el (timer-max-repeats):
2448 * mail/feedmail.el (feedmail-mail-send-hook)
2449 (feedmail-mail-send-hook-queued):
2450 * mail/footnote.el (footnote-signature-separator):
2451 * mail/mailabbrev.el (mail-alias-separator-string)
2452 (mail-abbrev-mode-regexp):
2453 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
2454 * progmodes/idlwave.el (idlwave-libinfo-file)
2455 (idlwave-default-completion-case-is-down)
2456 (idlwave-library-routines): Convert defvars to defcustoms.
2457
2458 * mail/rmail.el (rmail-decode-mime-charset):
2459 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
2460 (idlwave-shell-fix-inserted-breaks)
2461 (idlwave-shell-activate-alt-keybindings)
2462 (idlwave-shell-use-breakpoint-glyph):
2463 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
2464
f7ae6719
SM
24652012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
2466
2467 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
2468
47086495
WS
24692012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
2470
2471 * progmodes/verilog-mode.el (font-lock-keywords):
2472 Fix mis-highligting auto. Reported by Craig Barner.
2473 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
2474 defines from global name space. Reported by Dan Dever.
2475 (verilog-auto-reset, verilog-auto-reset-widths)
2476 (verilog-auto-tieoff): Support using unbased numbers for
2477 AUTORESET and AUTOTIEOFF.
2478 (verilog-submit-bug-report): Update variable list.
2479 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
2480 parenthesis from not matching. Reported by Michael Rytting.
2481 (verilog-auto-template-lint): Fix hash error when linting modules
2482 with no used templates.
2483 (verilog-warn, verilog-warn-error)
2484 (verilog-warn-fatal): When non-interactive report multiple
2485 warnings before exiting. Suggested by Brad Dobbie.
2486 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
2487 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
2488 to report unused template errors. Reported by Brad Dobbie.
2489 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
2490 nets, bug438. Reported by Vns Blore.
2491 (verilog-auto-inout-module, verilog-auto-reg)
2492 (verilog-read-decls, verilog-read-sub-decls-sig)
2493 (verilog-signals-edit-wire-reg, verilog-signals-with):
2494 Fix passing of Verilog data types in ANSI input/output ports
2495 such as "output logic" into the AUTOs. Special case "wire" and
2496 "reg" for backwards compatibility presuming Verilog 2001.
2497 (verilog-auto-ascii-enum): Add "auto enum" as alias.
2498 (verilog-preprocess): Fix replication of preprocess output.
2499 Reported by Brad Dobbie.
2500 (verilog-auto-inst-interfaced-ports):
2501 Create verilog-auto-inst-interfaced-ports, bug429.
2502 Reported by Julian Gorfajn.
2503 (verilog-after-save-font-hook)
2504 (verilog-before-save-font-hook): New variable.
2505 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
2506 (verilog-save-font-mods): Wrap disabling fontification, reported
2507 by David Rogoff.
2508 (verilog-do-indent, verilog-pretty-declarations-auto)
2509 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
2510 Reported by Pierre-David Pfister.
2511 (verilog-set-auto-endcomments): Fix endtask auto comments outside
2512 of class declarations, bug292. Reported by Kevin Heilman.
2513 (verilog-read-decls): Fix 'parameter type' not appearing in
2514 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
2515 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
2516 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
2517 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
2518 Reported by David Kravitz.
2519
25202012-05-03 Michael McNamara <mac@mail.brushroad.com>
2521
2522 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
2523 assignment with tests in ifs and for loops.
2524 (verilog-extended-complete-re, verilog-complete-reg): Change so
2525 that DPI inport functions don't look like fuction declarations.
2526 (verilog-pretty-expr): Don't line up assignment
2527 operations to the test and increment in if and for loops
2528 (verilog-extended-complete-re, verilog-complete-reg): Change so
2529 that DPI inport functions don't look like fuction declarations
2530
2e51d4b5
KH
25312012-05-03 Kenichi Handa <handa@m17n.org>
2532
2533 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
c846da43 2534 decoding, and show a warning message without signaling an error
2e51d4b5
KH
2535 (Bug#11282).
2536
2bd785a2
SM
25372012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
2538
2539 * emacs-lisp/bytecomp.el
2540 (byte-compile-file-form-custom-declare-variable): Compile all elements,
2541 since cconv.el might have introduced :fun-body, internal-make-closure,
2542 and friends for bytecomp to handle (bug#11391).
2543 * custom.el (defcustom): Avoid ((λ ..) ..).
2544
99d27583
SM
25452012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2546
2547 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
2548
55a71479
JB
25492012-05-02 Juanma Barranquero <lekktu@gmail.com>
2550
2551 * notifications.el (dbus-debug):
2552 * term/linux.el (gpm-mouse-enable):
2553 * term/screen.el (xterm-register-default-colors): Declare.
2554
7b97c764
CY
25552012-05-02 Chong Yidong <cyd@gnu.org>
2556
2bc356d7
CY
2557 * cus-start.el (gc-cons-percentage, exec-suffixes)
2558 (dos-display-scancodes, dos-hyper-key, dos-super-key)
2559 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
2560 (make-cursor-line-fully-visible, void-text-area-pointer)
2561 (font-list-limit): Add customization data.
2562
7b97c764
CY
2563 * allout.el (allout-exposure-change-functions)
2564 (allout-structure-added-functions)
2565 (allout-structure-deleted-functions)
2566 (allout-structure-shifted-functions): Rename abnormal hooks from
2567 *-hook, and convert to defcustoms.
5d3385a0
JB
2568 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
2569 Convert to defcustoms.
7b97c764
CY
2570 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
2571
2572 * allout-widgets.el: Hook callers changed.
2573
90207a15 25742012-05-02 Eli Zaretskii <eliz@gnu.org>
91af76bf
EZ
2575
2576 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
2577 the yanked message in preference to the default value of
2578 buffer-file-coding-system.
2579
90207a15 25802012-05-02 Martin Rudalics <rudalics@gmx.at>
d9558cad 2581
5d3385a0
JB
2582 * window.el (display-buffer--action-function-custom-type):
2583 Fix entry.
d9558cad 2584
90207a15 25852012-05-02 Alan Mackenzie <acm@muc.de>
09affde0
AM
2586
2587 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
2588
d80ac57b
GM
25892012-05-01 Glenn Morris <rgm@gnu.org>
2590
976f7668
GM
2591 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
2592
beb83b5a
GM
2593 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
2594
d80ac57b
GM
2595 * cus-edit.el (custom-variable-documentation): Simplify with format.
2596
b593d6a9
AH
25972012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2598 Stefan Monnier <monnier@iro.umontreal.ca>
2599
2600 * simple.el (suggest-key-bindings, execute-extended-command):
2601 Move from keyboard.c.
2602
782fbf2a
CY
26032012-05-01 Chong Yidong <cyd@gnu.org>
2604
2605 * follow.el: Eliminate advice.
2606 (set-process-filter, process-filter, sit-for): Advice deleted.
2607 (follow-mode-off-hook): Obsolete hook removed.
b593d6a9
AH
2608 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
2609 Vars deleted.
782fbf2a
CY
2610 (follow-auto): Use a :set function.
2611 (follow-mode): Rewritten. Don't advise process filters.
2612 (follow-switch-to-current-buffer-all, follow-scroll-up)
2613 (follow-scroll-down): Assume follow-mode is bound.
2614 (follow-comint-scroll-to-bottom)
2615 (follow-align-compilation-windows): New functions.
2616 (follow--window-sorter): New function.
2617 (follow-all-followers): Use it to explicitly sort windows by their
2618 positions; don't make assumptions about next-window order.
2619 (follow-windows-start-end, follow-delete-other-windows-and-split)
2620 (follow-calc-win-start): Doc fix.
2621 (follow-windows-aligned-p, follow-select-if-visible): Don't call
2622 vertical-motion unnecessarily.
2623 (follow-adjust-window): New function.
2624 (follow-post-command-hook): Use it.
2625 (follow-call-set-process-filter, follow-call-process-filter)
2626 (follow-intercept-process-output, follow-tidy-process-filter-alist)
2627 (follow-stop-intercept-process-output, follow-generic-filter):
2628 Functions deleted.
2629 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
b593d6a9
AH
2630 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
2631 New functions, replacing advice on scroll-bar-* commands.
87233a14 2632 (follow-mwheel-scroll): New function (Bug#4112).
782fbf2a
CY
2633
2634 * comint.el (comint-adjust-point): New function.
b593d6a9
AH
2635 (comint-postoutput-scroll-to-bottom): Use it.
2636 Call follow-comint-scroll-to-bottom for Follow mode buffers.
782fbf2a 2637
290af740
GM
26382012-05-01 Glenn Morris <rgm@gnu.org>
2639
2640 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
2641 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
2642 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
2643 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
2644 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
2645 Remove no-byte-compile setting.
2646
6eac8dc9
SM
26472012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2648
2649 * minibuffer.el (completion-table-with-quoting): Fix compatibility
2650 all-completions code to not return a number in the last cdr.
2651
9cc7819c
LL
26522012-04-30 Leo Liu <sdl.web@gmail.com>
2653
2654 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
2655 read-only error.
2656
c93b886f
CY
26572012-04-29 Chong Yidong <cyd@gnu.org>
2658
2659 * follow.el (follow-calc-win-end): Rewrite to handle partial
2660 screen lines correctly (Bug#8390).
2661 (follow-avoid-tail-recenter): Minor cleanup.
2662
8b6c19f4
SM
26632012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
2664
2665 Avoid the obsolete `assoc' package.
2666 * speedbar.el (speedbar-refresh): Avoid adelete.
2667 (speedbar-file-lists): Simplify and avoid aput.
2668 * man.el (Man--sections, Man--refpages): New vars, replacing
2669 Man-sections-alist and Man-refpages-alist.
2670 (Man-build-section-alist, Man-build-references-alist):
2671 Use them; avoid aput.
2672 (Man--last-section, Man--last-refpage): New vars.
2673 (Man-follow-manual-reference): Use them.
2674 Use the `default' arg of completing-read.
2675 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
2676
c5bb7569
CY
26772012-04-27 Chong Yidong <cyd@gnu.org>
2678
d1d2e2e8
CY
2679 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
2680
15cd8efd
CY
2681 * startup.el (x-apply-session-resources): New function.
2682
2683 * term/ns-win.el (ns-initialize-window-system):
2684 * term/w32-win.el (w32-initialize-window-system):
2685 * term/x-win.el (x-initialize-window-system): Use it to properly
2686 set menu-bar-mode and other vars from X resources, even if the
2687 initial frame is not a window-system frame (Bug#2299).
2688
c5bb7569
CY
2689 * subr.el (read-key): Avoid running filter function when setting
2690 up temporary tool bar entries (Bug#9922).
2691
a8e7d6d7 26922012-04-27 Andreas Schwab <schwab@linux-m68k.org>
c4347ab9
AS
2693
2694 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
2695 (Bug#11344)
2696
a8e7d6d7 26972012-04-27 Chong Yidong <cyd@gnu.org>
acb71f1d
CY
2698
2699 * select.el (xselect--encode-string): New function, split from
2700 xselect-convert-to-string.
2701 (xselect-convert-to-string): Use it.
2702 (xselect-convert-to-filename, xselect-convert-to-os)
2703 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
2704 returned strings are properly encoded (Bug#11315).
2705
a8e7d6d7 27062012-04-27 Chong Yidong <cyd@gnu.org>
d55486c7
CY
2707
2708 * simple.el (delete-active-region): Move to killing custom group.
2709
a8e7d6d7 27102012-04-27 Andreas Schwab <schwab@linux-m68k.org>
581b6788
AS
2711
2712 * progmodes/which-func.el (which-func-current): Quote %
2713 characters for mode-line processing.
2714
578c1d4b 27152012-04-27 Chong Yidong <cyd@gnu.org>
18edb22d
CY
2716
2717 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
2718 reaching eob (Bug#11286).
2719
a8e7d6d7 27202012-04-27 Eli Zaretskii <eliz@gnu.org>
9ee9f470
EZ
2721
2722 * progmodes/gdb-mi.el (gdb-control-level): New variable.
2723 (gdb): Make it buffer-local and init to zero.
2724 (gdb-control-commands-regexp): New variable.
2725 (gdb-send): Don't wrap in "-interpreter-exec console" if
2726 gdb-control-level is positive. Increment gdb-control-level
2727 whenever the command matches gdb-control-commands-regexp, and
2728 decrement it each time the command is "end". (Bug#11279)
2729
a8e7d6d7 27302012-04-27 Martin Rudalics <rudalics@gmx.at>
41cfe0cb
MR
2731
2732 * window.el (adjust-window-trailing-edge, enlarge-window)
2733 (shrink-window, window-resize):
2734 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
2735 windows (Bug#11276).
2736
b3608390
CY
27372012-04-27 Chong Yidong <cyd@gnu.org>
2738
2739 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
a8e7d6d7 2740 fix "missing prefix" warning. All callers changed.
b3608390 2741
797e6e88
SM
27422012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
2743
2744 * emacs-lisp/assoc.el: Move to obsolete/.
2745
e95a67dc
SM
27462012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2747
657c21e4 2748 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
e95a67dc
SM
2749
2750 * term/ns-win.el (ns-define-service):
2751 * progmodes/pascal.el (pascal-goto-defun):
2752 * progmodes/js.el (js--read-tab):
2753 * progmodes/etags.el (tags-lazy-completion-table):
2754 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
2755 * emacs-lisp/ewoc.el (ewoc--wrap):
2756 * emacs-lisp/assoc.el (aput, adelete, amake):
2757 * doc-view.el (doc-view-convert-current-doc):
2758 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
2759
cb3e7ae0
CY
27602012-04-26 Chong Yidong <cyd@gnu.org>
2761
dce04f7f
CY
2762 * image.el (image-type-from-buffer): Only return supported image
2763 type (Bug#9045).
2764
cb3e7ae0
CY
2765 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
2766 value, for symmetry with diff-end-of-hunk.
2767 (diff-split-hunk, diff-find-source-location)
2768 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
2769 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
2770 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
2771 compute the relevant hunk or file properly (Bug#6005).
2772 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
2773
0d42eb3e
SM
27742012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2775
2776 * vc/vc-mtn.el:
2777 * vc/vc-hg.el:
2778 * vc/vc-git.el:
2779 * vc/vc-dir.el:
2780 * vc/vc-cvs.el:
2781 * vc/vc-bzr.el:
2782 * vc/vc-arch.el:
2783 * vc/vc.el: Replace lexical-let by lexical-binding.
2784 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
2785 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
2786 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
2787
f08ae1c9
CY
27882012-04-26 Chong Yidong <cyd@gnu.org>
2789
8b71081d
CY
2790 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
2791 (diff-mode-shared-map): Bind it to / and [remap undo].
2792
f08ae1c9
CY
2793 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
2794 (ediff-window-setup-function): Use it as the default, to set up
2795 windows based on whether the current frame is graphical (Bug#2138).
2796 (ediff-choose-window-setup-function-automatically): Make obsolete.
2797
2798 * vc/ediff-init.el: Always define ediff-pixel-width/height.
2799
ef24141c
SM
28002012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
2801
cc356a5d
SM
2802 * ffap.el: Remove old code for obsolete package.
2803 (ffap-complete-as-file-p): Remove.
2804
b4ff4f1f
SM
2805 Use completion-table-with-quoting for comint and pcomplete.
2806 * comint.el (comint--unquote&requote-argument)
2807 (comint--unquote-argument, comint--requote-argument): New functions.
2808 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
2809 (comint-quote-filename): Use regexp-opt-charset.
2810 (comint--common-suffix, comint--common-quoted-suffix)
2811 (comint--table-subvert): Remove.
2812 (comint-unquote-function, comint-requote-function): New vars.
2813 (comint--complete-file-name-data): Use them with
2814 completion-table-with-quoting.
2815 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
2816 * pcomplete.el (pcomplete-arg-quote-list)
2817 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
2818 (pcomplete-unquote-argument-function): Default to non-nil.
2819 (pcomplete-unquote-argument): Simplify.
2820 (pcomplete--common-quoted-suffix): Remove.
2821 (pcomplete-requote-argument-function): New var.
2822 (pcomplete--common-suffix): New function.
2823 (pcomplete-completions-at-point): Use completion-table-with-quoting
2824 and completion-table-subvert.
2825
79c4eeb4
SM
2826 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
2827 (minibuffer--double-dollars): Preserve properties.
2828 (completion--sifn-requote): New function.
2829 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
2830
ef24141c
SM
2831 * minibuffer.el: Add support for completion of quoted/escaped data.
2832 (completion-table-with-quoting, completion-table-subvert): New funs.
2833 (completion--twq-try, completion--twq-all): New functions.
2834 (completion--nth-completion): New function.
2835 (completion-try-completion, completion-all-completions): Use it.
2836
784e7d6e
LL
28372012-04-25 Leo Liu <sdl.web@gmail.com>
2838
dd2ac746
SM
2839 * progmodes/python.el (python-pdbtrack-get-source-buffer):
2840 Use compilation-message if available to find real filename.
784e7d6e 2841
07875ee7
CY
28422012-04-25 Chong Yidong <cyd@gnu.org>
2843
2844 * vc/diff-mode.el (diff-setup-whitespace): New function.
2845 (diff-mode): Use it.
2846
2847 * vc/diff.el (diff-sentinel):
2848 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
2849 Whitespace mode variables based on diff style (Bug#8612).
2850
5055880d
LL
28512012-04-25 Leo Liu <sdl.web@gmail.com>
2852
daf75653
LL
2853 * progmodes/python.el (python-send-region): Add suffix .py to the
2854 temp file.
2855
5055880d
LL
2856 * files.el (auto-mode-alist): Use javascript-mode instead.
2857
db9b177b
AH
28582012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
2859
ef24141c 2860 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
db9b177b
AH
2861
2862 * soap-client.el (soap-resolve-references-for-sequence-type)
ef24141c 2863 (soap-resolve-references-for-array-type): Hack to prevent self
db9b177b 2864 references, see Bug#9.
ef24141c 2865 (soap-parse-envelope): Report the contents of the 'detail' node
db9b177b 2866 when receiving a fault reply.
ef24141c 2867 (soap-parse-envelope): Report the contents of the entire 'detail' node.
db9b177b
AH
2868
2869 * soap-inspect.el (soap-sample-value-for-simple-type)
ef24141c 2870 (soap-inspect-simple-type): New function.
db9b177b 2871
ef24141c 2872 * soap-client.el (soap-simple-type): New struct.
db9b177b 2873 (soap-default-xsd-types, soap-default-soapenc-types)
ef24141c
SM
2874 (soap-decode-basic-type, soap-encode-basic-type):
2875 support unsignedInt and double basic types.
db9b177b 2876 (soap-resolve-references-for-simple-type)
ef24141c
SM
2877 (soap-parse-simple-type, soap-encode-simple-type): New function.
2878 (soap-parse-schema): Parse xsd:simpleType declarations.
db9b177b
AH
2879
2880 * soap-client.el (soap-default-xsd-types)
ef24141c
SM
2881 (soap-default-soapenc-types): Add integer, byte and anyURI types.
2882 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
2883 the local name of "soapenc:Array".
2884 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
db9b177b
AH
2885 decoding integer, byte and anyURI xsd types.
2886
1fc6097b
CY
28872012-04-25 Chong Yidong <cyd@gnu.org>
2888
2889 * cus-edit.el (custom-buffer-create-internal): Update header text.
2890
afc6df87
EZ
28912012-04-25 Eli Zaretskii <eliz@gnu.org>
2892
2893 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
2894 settings on 'system-type', not on 'window-system'. On MS-Windows,
2895 set interactive-mode on in GDB.
2896
dfbd787f
SM
28972012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2898
2899 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
2900 (ruby-syntax-propertize-regexp): Remove.
2901 (ruby-syntax-propertize-function): Split regexp into chunks.
2902 Match following code directly.
2903
85222d44
DG
29042012-04-24 Dmitry Gutov <dgutov@yandex.ru>
2905
51a8ea2a
DG
2906 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
2907 (ruby-syntax-propertize-regexp): New function.
2908 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
2909 by a special keyword.
2910
85222d44
DG
2911 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
2912 (ruby-syntax-general-delimiters-goto-beg)
2913 (ruby-syntax-propertize-general-delimiters): New functions.
2914 (ruby-syntax-propertize-function): Use them to handle GDL.
2915 (ruby-font-lock-keywords): Move old handling of GDL...
2916 (ruby-font-lock-syntactic-keywords): .. to here.
2917 (ruby-calculate-indent): Adjust indentation for GDL.
2918
b613912b
MA
29192012-04-24 Michael Albinus <michael.albinus@gmx.de>
2920
b5380639
MA
2921 * notifications.el (top): Remove unneeded declarations.
2922 (notifications-specification-version): Change to "1.2".
e43042fe 2923 (notifications-interface, notifications-notify-method)
b613912b
MA
2924 (notifications-close-notification-method): Fix docstring.
2925 (notifications-get-capabilities-method): New defconst.
e43042fe
MA
2926 (notifications-notify): Add :action-items, :resident and
2927 :transient hints. Change "image_data" to "image-data" and
2928 "image_path" to "image-path".
b613912b
MA
2929 (notifications-get-capabilities): New defun.
2930
257440aa
LL
29312012-04-24 Leo Liu <sdl.web@gmail.com>
2932
2933 * progmodes/python.el: Move hideshow setup to the end.
2934
b1bac16e
MR
29352012-04-24 Martin Rudalics <rudalics@gmx.at>
2936
2937 * window.el (handle-select-window): Clear echo area since this is
2938 no more done by read_char (Bug#11304).
2939
d81bd059
SM
29402012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2941
2942 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
2943 and `/ M' to filter-derived-mode.
2944 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
2945 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
2946 (ibuffer-mark-by-mode): Use default rather than initial-input.
2947 (ibuffer-filter-by-derived-mode): Autoload and require-match.
2948
c4cf6d91
IA
29492012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
2950
2951 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
2952 (ibuffer-filter-by-derived-mode): New filter.
2953 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
2954
7511ded8
CY
29552012-04-23 Andreas Politz <politza@fh-trier.de>
2956
2957 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
2958
775c916b
CY
29592012-04-23 Chong Yidong <cyd@gnu.org>
2960
2961 * cus-edit.el (customize-apropos, customize-apropos-options):
2962 Disable matching of non-option variables (Bug#11176).
2963 (customize-option, customize-option-other-window)
2964 (customize-changed-options): Doc fix.
2965 (customize-apropos-options, customize-apropos-faces)
2966 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
2967
2968 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
922d37d3 2969 Fix word list splitting (Bug#11132).
46c71e23
CY
2970 (apropos-symbol, apropos-keybinding, apropos-label)
2971 (apropos-property, apropos-function-button)
2972 (apropos-variable-button, apropos-misc-button): New faces.
2973 (apropos-symbol-face, apropos-keybinding-face)
2974 (apropos-label-face, apropos-property-face, apropos-match-face):
2975 Variables removed (Bug#8396).
2976 (apropos-library-button, apropos-format-plist, apropos-print)
2977 (apropos-print-doc, apropos-describe-plist): Callers changed.
775c916b 2978
2df41f9c
MA
29792012-04-23 Michael Albinus <michael.albinus@gmx.de>
2980
2981 * net/xesam.el (xesam-mode-map): Use let-bound map in
2982 initialization. (Bug#11292)
2983
da00640a
AM
29842012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2985
2986 Preserve ispell session localwords when switching back to
2987 original buffer.
2988
2989 * ispell.el (ispell-buffer-session-localwords): New buffer-local
2990 variable to hold buffer session localwords.
2991 (ispell-kill-ispell): add option 'clear to delete session
2992 localwords.
2993 (ispell-command-loop, ispell-change-dictionary)
2994 (ispell-buffer-local-words): Preserve session localwords when
2995 needed.
2996
2997 * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
2998 Preserve session localwords when needed.
2999
f621ccf5
AM
30002012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3001
3002 * ispell.el (ispell-insert-word) Remove unneeded function using
3003 obsolete `translation-table-for-input'.
ef24141c
SM
3004 (ispell-word, ispell-process-line, ispell-complete-word):
3005 Use plain `insert' instead of removed `ispell-insert-word'.
f621ccf5 3006
c2d1019e
CY
30072012-04-22 Chong Yidong <cyd@gnu.org>
3008
3009 * cus-edit.el (custom-variable-menu)
3010 (custom-variable-reset-saved, custom-face-menu)
3011 (custom-face-reset-saved): If there is no saved value, make the
3012 "reset-saved" operation bring back the default (Bug#9509).
3013 (custom-face-state): Properly detect themed faces.
3014
eeddc531
CY
3015 * faces.el (face-spec-set): Stop supporting deprecated form of
3016 third arg.
3017
dcbf5805
MA
30182012-04-22 Michael Albinus <michael.albinus@gmx.de>
3019
3020 Move functions from C to Lisp. Make non-blocking method calls
3021 the default. Implement further D-Bus standard interfaces.
3022
ef24141c
SM
3023 * net/dbus.el (dbus-message-internal): Declare function.
3024 Remove unneeded function declarations.
dcbf5805
MA
3025 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
3026 (dbus-message-type-method-return, dbus-message-type-error)
3027 (dbus-message-type-signal): Declare variables. Remove local
3028 definitions.
3029 (dbus-interface-dbus, dbus-interface-peer)
3030 (dbus-interface-introspectable, dbus-interface-properties)
3031 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
3032 Adapt docstring.
3033 (dbus-interface-objectmanager): New defconst.
3034 (dbus-call-method, dbus-call-method-asynchronously)
3035 (dbus-send-signal, dbus-method-return-internal)
3036 (dbus-method-error-internal, dbus-register-service)
3037 (dbus-register-signal, dbus-register-method): New defuns, moved
3038 from dbusbind.c
3039 (dbus-call-method-handler, dbus-setenv)
ef24141c
SM
3040 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
3041 New defuns.
dcbf5805
MA
3042 (dbus-call-method-non-blocking): Make it an obsolete function.
3043 (dbus-unregister-object, dbus-unregister-service)
3044 (dbus-handle-event, dbus-register-property)
3045 (dbus-property-handler): Obey the new structure of
3046 `bus-registered-objects'.
3047 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
3048 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
3049 Use `dbus-call-method'.
3050
cf20dee0
CY
30512012-04-22 Chong Yidong <cyd@gnu.org>
3052
3053 * cus-edit.el (custom-commands, custom-reset-menu)
3054 (Custom-reset-standard): Tweak labels.
3055 (custom-reset-button-menu): Change default to t.
3056 (custom-buffer-create-internal): For the custom-reset-button-menu
3057 case, put the revert button first.
3058 (custom-group-subtitle): New face.
3059 (custom-group-value-create): Align docstring to a specific column.
3060
3061 * wid-edit.el (widget-documentation-link-add): Don't handle
3062 indentation in this function.
3063 (widget-documentation-string-indent-to): New function.
3064 (widget-documentation-string-value-create): Use it.
3065
3066 * autorevert.el (auto-revert):
3067 * epg-config.el (epg):
3068 * ibuffer.el (ibuffer):
3069 * mpc.el (mpc):
3070 * ses.el (ses):
3071 * eshell/eshell.el (eshell):
3072 * net/ange-ftp.el (ange-ftp):
3073 * progmodes/ebnf2ps.el (postscript):
3074 * progmodes/flymake.el (flymake):
3075 * progmodes/prolog.el (prolog):
3076 * progmodes/verilog-mode.el (verilog-mode):
3077 * progmodes/which-func.el (which-func):
3078 * term/xterm.el (xterm):
3079 * textmodes/picture.el (picture):
3080 * textmodes/tildify.el (tildify):
3081 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
3082 customization buffers.
3083
583e23bd
AM
30842012-04-22 Alan Mackenzie <acm@muc.de>
3085
3086 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
3087 Adding a ) can hide the resulting (..) from searches. Fix it.
3088 Bound the backward search to the position of the existing (.
3089
7dd51bf1
JB
30902012-04-21 Juanma Barranquero <lekktu@gmail.com>
3091
3092 * progmodes/verilog-mode.el (verilog-mode): Check whether
3093 which-func-modes is t before adding verilog-mode.
3094 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
3095
d64a438f
LL
30962012-04-21 Leo Liu <sdl.web@gmail.com>
3097
7dd51bf1 3098 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
d64a438f 3099
081e8d65
MV
31002012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
3101
3102 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
3103 filling of the last column of a table (Bug#5635).
3104 (woman-find-next-control-line): New arg, specifying an additional
3105 regexp component for the control line.
3106 (woman2-roff-buffer): Use it.
3107 (woman-break-table): New function.
3108 (woman2-TS): Use it.
3109
31102012-04-21 Chong Yidong <cyd@gnu.org>
3111
3112 * woman.el (woman-set-buffer-display-table, woman-decode-region)
3113 (woman-horizontal-escapes, woman-negative-vertical-space)
3114 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
3115 (WoMan-warn-ignored): Use ?\s instead of ?\ .
3116
ed571ccb
SM
31172012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3118
3119 * minibuffer.el (completion-file-name-table): Complete user names.
3120
39773899
LL
31212012-04-20 Leo Liu <sdl.web@gmail.com>
3122
3123 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
3124 and pcase-let*.
3125
de6ff46d
CY
31262012-04-20 Chong Yidong <cyd@gnu.org>
3127
3128 * server.el (server-execute): Respect initial-buffer-choice if it
3129 is a string and there are no files to open (Bug#2825).
3130 (server-create-window-system-frame, server-create-tty-frame):
3131 Don't switch buffers here.
2d0e8e61
CY
3132 (server-process-filter): Only try to open a window system frame if
3133 compiled with graphical support (Bug#8314).
de6ff46d 3134
54071013
DN
31352012-04-20 Dan Nicolaescu <dann@gnu.org>
3136
3137 * battery.el (battery-echo-area-format): Display remaining time
3138 for sysfs backend too (Bug#11269).
3139 (battery-linux-sysfs): Fix conditional for the charge.
3140
f30d612a
CY
31412012-04-20 Chong Yidong <cyd@gnu.org>
3142
c07a4c0b 3143 * progmodes/gdb-mi.el (gdb): Revert previous change.
f30d612a
CY
3144 (gdb-inferior-io--init-proc): New function.
3145 (gdb-init-1): Use it.
3146 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
3147 responsible for allocating a new pty and hooking it to gdb when
3148 the old pty gets an EIO due to process exit.
3149 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
3150 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
3151 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
3152
2116e93c
EZ
31532012-04-20 Eli Zaretskii <eliz@gnu.org>
3154
3155 * window.el (window-min-size, window-sizable, window-min-delta)
3156 (window-max-delta, window--resizable, window-resizable)
3157 (window-total-size, window-full-height-p, window-full-width-p)
3158 (window-in-direction, window--resize-mini-window, window-resize)
3159 (window--resize-child-windows-normal)
3160 (window--resize-child-windows, window--resize-siblings)
3161 (window--resize-this-window, adjust-window-trailing-edge)
cd0f830c 3162 (enlarge-window, shrink-window): Doc fixes.
2116e93c 3163
c07a4c0b 31642012-04-20 Chong Yidong <cyd@gnu.org>
b668fa6e 3165
ef24141c
SM
3166 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
3167 New function to call delete-process on the gdb-inferior buffer's pty.
b668fa6e
CY
3168 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
3169 pty process (Bug#11273).
3170 (gdb-update): New arg to suppress talking to the gdb process.
3171 (gdb-done-or-error): Use it.
3172 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
3173 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
3174 sentinel not being called.
3175
3176 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
3177
d02766ab
CY
3178 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
3179
c07a4c0b 31802012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
3181
3182 * net/network-stream.el (open-network-stream): Doc fix.
3183
c07a4c0b 31842012-04-20 Chong Yidong <cyd@gnu.org>
2c070447
CY
3185
3186 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
3187
c07a4c0b 31882012-04-20 Alan Mackenzie <acm@muc.de>
f0f6bc35
AM
3189
3190 Ensure searching for keywords is case sensitive.
3191
3192 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
3193 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
3194 (c-defun-name, c-mark-function, c-cpp-define-name)
3195 (c-comment-indent, c-scan-conditionals, c-indent-defun)
c07a4c0b 3196 (c-context-line-break): Bind case-fold-search to nil.
f0f6bc35 3197
ef24141c
SM
3198 * progmodes/cc-mode.el (c-font-lock-fontify-region):
3199 Bind case-fold-search to nil.
f0f6bc35 3200
c07a4c0b 32012012-04-20 Chong Yidong <cyd@gnu.org>
4fc2c72a
CY
3202
3203 * mail/sendmail.el (mail-bury): Call return action with the right
3204 Rmail buffer (Bug#11242).
3205
9a864fa2
CY
3206 * server.el (server-process-filter): Handle corner case where both
3207 tty and nowait options are present (Bug#11102).
3208
539aa513
EZ
32092012-04-20 Eli Zaretskii <eliz@gnu.org>
3210
3211 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
6cf2a23e
EZ
3212 (top level): Put into the executable the ident-style '$Id:' tag on
3213 windows-nt as well.
539aa513 3214
cfc7d5da
SM
32152012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
3216
3217 * electric.el (electric-indent-post-self-insert-function): Check that
3218 electric-indent-mode is enabled in current buffer.
3219
5b01685c
JB
32202012-04-19 Juanma Barranquero <lekktu@gmail.com>
3221
3222 * imenu.el (imenu-progress-message): Restore; it is "used" in
3223 erc/erc-imenu.el and net/snmp-mode.el.
3224
4d6769e1
JB
32252012-04-19 Juanma Barranquero <lekktu@gmail.com>
3226
3227 * avoid.el (mouse-avoidance-mode): Mark unused arg.
3228 (mouse-avoidance-nudge-mouse): Remove unused binding.
3229
3230 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
3231
3232 * descr-text.el (describe-char):
3233 * progmodes/python.el (python-describe-symbol):
3234 Don't call `toggle-read-only', set `buffer-read-only'.
3235
3236 * imenu.el (imenu-default-goto-function): Mark unused args.
3237 (imenu-progress-message): Remove obsolete macro; all callers changed.
3238
3239 * subr.el (keymap-canonicalize): Remove unused binding.
3240 (read-passwd): Mark unused arg.
3241
3242 * tutorial.el (tutorial--display-changes): Remove unused binding.
3243 (tutorial--save-tutorial-to): Remove unused variable.
3244
3245 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
3246 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
3247 (package-generate-autoloads, package-menu--generate)
3248 (package-menu--find-upgrades): Remove unused bindings.
3249
3250 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
3251 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
3252 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
3253 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
3254 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
3255 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
3256 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
3257 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
3258 (cua-delete-char-rectangle): Mark unused args.
3259 (cua-align-rectangle): Remove unused binding.
3260
3261 * mail/rmail.el (compilation--message->loc)
3262 (epa--find-coding-system-for-mime-charset): Declare.
3263
3264 * net/dbus.el (dbus-register-service): Declare.
3265 (dbus-name-owner-changed-handler): Remove unused binding.
3266
3267 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
3268 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
3269 (nxml-scan-backward-within): Mark unused arg.
3270 (nxml-dynamic-markup-word): Remove unused binding.
3271
3272 * mouse.el (mouse-menu-major-mode-map):
3273 * emacs-lisp/authors.el (authors-scan-change-log)
3274 (authors-add-to-author-list):
3275 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
3276 * emacs-lisp/smie.el (smie-auto-fill):
3277 * mail/sendmail.el (mail-bury):
3278 * mail/unrmail.el (unrmail):
3279 * net/tls.el (open-tls-stream):
3280 * textmodes/picture.el (picture-mouse-set-point):
3281 Remove unused bindings.
3282
8c8fc5df
MA
32832012-04-19 Michael Albinus <michael.albinus@gmx.de>
3284
3285 * net/tramp.el (tramp-action-password): Let-bind
3286 `enable-recursive-minibuffers' to t.
3287
a77b0ac9
SS
32882012-04-18 Sam Steingold <sds@gnu.org>
3289
3290 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
3291 instead of 'string to accommodate values like [f11].
3292 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
3293 * progmodes/gdb-mi.el: Likewise.
3294
12a106a9
LL
32952012-04-18 Leo Liu <sdl.web@gmail.com>
3296
3297 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
3298 current buffer.
3299 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
3300 LOCAL is nil.
3301
bc6494ef
CY
33022012-04-18 Chong Yidong <cyd@gnu.org>
3303
3304 * simple.el (line-move): Use forward-line if in batch mode
3305 (Bug#11053).
3306
c09c46b2
CS
33072012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
3308
3309 * files.el (after-find-file): Do not try to add a final newline if
3310 the buffer is read-only (Bug#11156).
3311
5f6530ea
RS
33122012-04-17 Richard Stallman <rms@gnu.org>
3313
3314 * mail/rmail.el (rmail-start-mail):
3315 Pass (rmail-mail-return...) for the return-action.
3316 Pass (rmail-yank-current-message...) for the yank-action.
3317 (rmail-yank-current-message): New function.
3318 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
3319 (rmail-reply): Likewise.
3320 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
3321
3322 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
c09c46b2 3323 buffer, not the last. Reject temp buffers. Use the rmail-mode
5f6530ea
RS
3324 buffer, not newbuf.
3325
197b6f3c
JB
33262012-04-17 Juanma Barranquero <lekktu@gmail.com>
3327
3328 * server.el (server-ensure-safe-dir): Simplify.
3329
2311d8e5 33302012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
98fb480e 3331
2311d8e5
GM
3332 * emacs-lisp/smie.el: Provide smarter auto-filling.
3333 (smie-auto-fill): New function.
3334 (smie-setup): Use it.
98fb480e 3335
2311d8e5
GM
3336 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
3337
33382012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8eb5d48f
PH
3339
3340 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
3341 (comment-indent): Use it.
3342
2311d8e5 33432012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4bdf2ad2
VB
3344
3345 * ses.el: The overall change is to add cell renaming, that is
3346 setting fancy names for cell symbols other than name matching
3347 "\\`[A-Z]+[0-9]+\\'" regexp .
2311d8e5 3348 (ses-localvars): Add ses--renamed-cell-symb-list.
4bdf2ad2 3349 (ses-create-cell-variable): New defun.
2311d8e5 3350 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4bdf2ad2
VB
3351 (ses-relocate-formula): Relocate formulas only for cells the
3352 symbols of which are not renamed, i.e. symbols whose names do not
3353 match regexp "\\`[A-Z]+[0-9]+\\'".
3354 (ses-relocate-all): Relocate values only for cells the symbols of
3355 which are not renamed.
3356 (ses-load): Create cells variables as the (ses-cell ...) are read,
3357 in order to check row col consistency with cell symbol name only
3358 for cells that are not renamed.
3359 (ses-replace-name-in-formula): New defun.
3360 (ses-rename-cell): New defun.
4bdf2ad2 3361
fc72b15c
PO
33622012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
3363
3364 * progmodes/perl-mode.el (perl-indent-parens-as-block):
3365 New option (bug#11118).
3366 (perl-calculate-indent): Respect it.
3367
12e10e61
GM
33682012-04-17 Glenn Morris <rgm@gnu.org>
3369
3370 * dired-aux.el (dired-mark-read-string): Doc fix.
3371
30009afd
DA
33722012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
3373
3374 * dired-aux.el (dired-mark-read-string): Offer optional completion.
3375 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
3376
41f03f4d
GM
33772012-04-17 Glenn Morris <rgm@gnu.org>
3378
3379 * mouse.el (mouse-drag-track):
3380 * speedbar.el (speedbar-frame-mode):
3381 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
3382
f45f90f3
LL
33832012-04-16 Leo Liu <sdl.web@gmail.com>
3384
3385 * progmodes/python.el: Trivial cleanup.
3386
94ee8db5
GM
33872012-04-16 Glenn Morris <rgm@gnu.org>
3388
121b8917
GM
3389 * vc/vc.el (vc-string-prefix-p):
3390 * vc/pcvs-util.el (cvs-string-prefix-p):
3391 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
3392 * mpc.el (mpc-string-prefix-p):
3393 Make all of these into obsolete aliases for string-prefix-p.
3394 Update callers.
3395 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
3396
1197ecfa
GM
3397 * textmodes/two-column.el: Move custom options to the start.
3398 (frame-width): Remove compat definition.
3399 (2C-associate-buffer, 2C-dissociate):
3400 Use with-current-buffer rather than save-excursion.
3401 (2C-dissociate): Force a mode-line update.
3402 (2C-autoscroll): Use ignore-errors.
3403
099e7202
GM
3404 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
3405 Autoload trivia.
3406
bf350d6a
GM
3407 * emacs-lisp/cl-extra.el (*random-state*):
3408 Remove unnecessary declaration.
3409
0e829eab
GM
3410 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
3411
e3ad7552
GM
3412 * play/cookie1.el (cookie-snarf):
3413 Give an explicit error if input file cannot be read.
3414
68892d27
GM
3415 * play/yow.el (yow-file): Use expand-file-name rather than concat.
3416
20f0c46d
GM
3417 * progmodes/perl-mode.el (c-macro-expand):
3418 Remove unnecessary autoload (it is in loaddefs.el).
3419
5a0978ce
GM
3420 * textmodes/picture.el (picture-desired-column)
3421 (picture-update-desired-column): Convert comments to doc-strings.
3422 (picture-substitute): Remove function.
3423 (picture-mode-map): Initialize in the defvar.
3424
6b955486
GM
3425 * woman.el: Remove eval-after-load for tar-mode.
3426 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
3427 (woman-tar-extract-file): Autoload it.
3428
94ee8db5
GM
3429 * frame.el (automatic-hscrolling): Make this alias obsolete.
3430
177eca34
AM
34312012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3432
3433 * ispell.el (ispell-set-spellchecker-params): Post-process
4be3075e 3434 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3851314b
AM
3435 (ispell-dictionary-base-alist): Revert to original XEmacs
3436 friendly version for default. [:alpha:] will be added in
3437 `ispell-set-spellchecker-params' if needed
177eca34 3438
c505aaeb
CY
34392012-04-16 Chong Yidong <cyd@gnu.org>
3440
3441 * image.el (imagemagick--extension-regexp): New variable.
3442 (imagemagick-register-types): Use it.
3443 (imagemagick-types-inhibit): Add :set function. Allow new value
3444 of t to inhibit all types.
3445
3446 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
3447 so we can preload it.
3448
3449 * loadup.el (fboundp): Preload regexp-opt, needed by
3450 imagemagick-register-types.
3451
60efac0f
CY
34522012-04-15 Chong Yidong <cyd@gnu.org>
3453
3454 * frame.el (scrolling): Remove nearly unused customization group.
3455
3456 * scroll-all.el (scroll-all-mode): Move to windows group.
3457
5dd1713e
CY
34582012-04-15 Chong Yidong <cyd@gnu.org>
3459
3460 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
3461
e6fd457e
CY
34622012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3463
3464 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4d6769e1 3465 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
e6fd457e 3466
e153c136
GM
34672012-04-15 Glenn Morris <rgm@gnu.org>
3468
3469 * simple.el (process-file-side-effects): Doc fix.
3470
e6fd457e 34712012-04-15 Glenn Morris <rgm@gnu.org>
ca7d96c8
GM
3472
3473 * international/mule-cmds.el (set-language-environment): Doc fix.
3474
3603c3b1
JB
34752012-04-14 Juanma Barranquero <lekktu@gmail.com>
3476
3477 * server.el (server-auth-key, server-generate-key): Doc fixes.
3478 (server-get-auth-key): Doc fix. Use `string-match-p'.
3479 (server-start): Reflow docstring.
3480
e6de100c
LI
34812012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
3482
3483 * server.el (server-generate-key): `called-interactively-p'
3484 requires a parameter.
3485
29734c21
MN
34862012-04-14 Michal Nazarewicz <mina86@mina86.com>
3487
3488 * server.el (server-auth-key): New variable.
75f1671a 3489 (server-generate-key, server-get-auth-key): New function.
29734c21
MN
3490 (server-start): Use the new variable and functions to allow
3491 setting a permanent server key (bug#9423).
3492
d65c9521
LL
34932012-04-14 Leo Liu <sdl.web@gmail.com>
3494
3495 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
3496
5ae255c7
PE
34972012-04-14 Paul Eggert <eggert@cs.ucla.edu>
3498
3499 Spelling fixes.
3500 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
3501 Emacs uses American spelling.
3502
d5e6342e
JB
35032012-04-14 Juanma Barranquero <lekktu@gmail.com>
3504
3505 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
3506 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
3507 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
3508 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
3509
ab036cd7
SM
35102012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3511
3512 * progmodes/which-func.el (which-func-modes): Change default.
3513
35dc09a1 35142012-04-14 Kim F. Storm <storm@cua.dk>
9557e2be
CY
3515
3516 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
3517 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
3518
35dc09a1 35192012-04-14 Chong Yidong <cyd@gnu.org>
81927dd2
CY
3520
3521 * custom.el (custom-theme-set-variables): Doc fix.
3522
35dc09a1 35232012-04-14 Glenn Morris <rgm@gnu.org>
8edb942b
GM
3524
3525 * international/mule.el (set-auto-coding-for-load): Doc fix.
3526
35dc09a1 35272012-04-14 Alan Mackenzie <acm@muc.de>
0de3da9f 3528
35dc09a1
GM
3529 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
3530 imenu work again for Objective C Mode. Correct the *-index values,
3531 these having been disturbed by a previous change in 2011-08.
57f845ee 3532
0de3da9f
AM
3533 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
3534 Correct two search limits.
3535
35dc09a1 35362012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
ede141ac
SM
3537
3538 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
3539
35dc09a1 35402012-04-14 Andreas Schwab <schwab@linux-m68k.org>
d0203d61
AS
3541
3542 * international/characters.el: Fix sorting.
3543
35dc09a1 35442012-04-14 Eli Zaretskii <eliz@gnu.org>
cb80bcd1
EZ
3545
3546 * international/characters.el: Add more missing Latin case pairs.
3547
35dc09a1 35482012-04-14 Glenn Morris <rgm@gnu.org>
4a427f58
GM
3549
3550 * files.el (dir-locals-set-class-variables): Doc fix.
3551
35dc09a1 35522012-04-14 Eli Zaretskii <eliz@gnu.org>
9f847f41 3553
3f1b5bf8
EZ
3554 * international/characters.el: Add set-case-syntax-pair call for
3555 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
3556 counterpart. (Bug#11209)
3557
9f847f41
EZ
3558 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
3559
35dc09a1 35602012-04-14 Glenn Morris <rgm@gnu.org>
0c2014a3
GM
3561
3562 * calendar/holidays.el (calendar-check-holidays): Doc fix.
3563
35dc09a1 35642012-04-14 Eli Zaretskii <eliz@gnu.org>
e2627d21 3565
35dc09a1
GM
3566 * textmodes/ispell.el (ispell-dictionary-base-alist):
3567 Add data for Hebrew.
e2627d21 3568
35dc09a1 35692012-04-14 Chong Yidong <cyd@gnu.org>
5c14e333 3570
35dc09a1
GM
3571 * net/rcirc.el (rcirc-cmd-quit):
3572 Revert 2012-03-18 change (Bug#11192).
5c14e333 3573
35dc09a1 35742012-04-14 Glenn Morris <rgm@gnu.org>
bf6fa423
GM
3575
3576 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
3577
35dc09a1 35782012-04-14 Eli Zaretskii <eliz@gnu.org>
82b24fb2 3579
4517fe3a
SM
3580 * minibuffer.el (completion-in-region-mode-map):
3581 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
82b24fb2 3582
b472a594
VD
35832012-04-13 Vivek Dasmohapatra <vivek@etla.org>
3584
3585 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
3586
09b95ce3
MY
35872012-04-13 Masatake YAMATO <yamato@redhat.com>
3588
3589 * minibuffer.el (minibuffer-local-filename-syntax): New variable
3590 to allow `C-M-f' and `C-M-b' to move to the nearest path
3591 separator (bug#9511).
3592
4b63a9ca
LI
35932012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
3594
3595 * avoid.el: Require cl when compiling. And also move the
3596 `provide' to the end.
3597
7b55b8bf
TV
35982012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3599
3600 * avoid.el (mouse-avoidance-banish-position): New variable.
3601 (mouse-avoidance-banish-destination): Use it (bug#10165).
3602
adedaa1f
LL
36032012-04-13 Leo Liu <sdl.web@gmail.com>
3604
3605 * progmodes/which-func.el (which-func-modes): Add objc-mode.
3606
70e74021
KB
36072012-04-13 Ken Brown <kbrown@cornell.edu>
3608
3609 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
ab036cd7 3610 this is no longer needed now that cygstart understands file:// URLs.
70e74021
KB
3611 (browse-url-filename-alist): For the same reason, don't modify
3612 file:// URLs on Cygwin.
3613
e75e89ba
SM
36142012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
3615
3616 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
3617 the region on shift if the binding is already shifted (bug#11221).
3618
82f289a4
GM
36192012-04-12 Glenn Morris <rgm@gnu.org>
3620
3621 * mail/mailpost.el: Move to obsolete/.
3622
d333dc4c
DA
36232012-04-12 Drew Adams <drew.adams@oracle.com>
3624
3625 * imenu.el (imenu--generic-function): Ignore invisible definitions
3626 (bug#10123).
3627
0d15b5ba
VD
36282012-04-12 Vivek Dasmohapatra <vivek@etla.org>
3629
3630 * hexl.el (hexl-bits): New variable.
3631 (hexl-options): Mention the variable in the doc string.
75f1671a 3632 (hexl-rulerise, hexl-line-displen): New functions.
0d15b5ba 3633 (hexl-mode): Mention the new variable.
75f1671a
JB
3634 (hexl-mode, hexl-current-address, hexl-current-address):
3635 Use the displen.
0d15b5ba
VD
3636 (hexl-ascii-start-column): New function.
3637 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
3638 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
3639
64a440db
AM
36402012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3641
3642 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
3643 '("-i" ENCODING), in 2 separate command-line arguments, to specify
3644 the encoding, as expected by hunspell.
3645
6decb6c2
SM
36462012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
3647
3648 * battery.el (battery--linux-sysfs-regexp): New const.
3649 (battery-status-function): Use it. Remove yeeloong special case.
3650 (battery-yeeloong-sysfs): Remove.
3651 (battery-echo-area-format): Remove yeeloong special case.
3652
088be6fb
SM
36532012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3654
6622e416
SM
3655 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
3656 Reported by Noah Friedman.
3657
088be6fb
SM
3658 * subr.el (read-passwd): Use read-string.
3659
b49f886e
LMI
36602012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3661
3662 * vcursor.el (vcursor-move): Increase the priority of the overlay
3663 (bug#9663).
3664
a63067fc
DD
36652012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3666
3667 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
3668 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
3669
ac3cf14a
WS
36702012-04-11 William Stevenson <yhvh2000@gmail.com>
3671
3672 * textmodes/artist.el (artist-mode): Convert artist-mode to use
3673 define-minor-mode (bug#10760).
3674
c4fc691b 36752012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
49a2697c 3676
4d6769e1 3677 * progmodes/grep.el (rgrep): Tweak the find command line so
49a2697c
WJ
3678 that directories matching `grep-find-ignored-files' won't be
3679 pruned (bug#10351).
3680
af23e2e5
CY
36812012-04-11 Chong Yidong <cyd@gnu.org>
3682
3683 * startup.el (command-line): Remove support for long-obsolete
3684 variable font-lock-face-attributes.
3685
ab7ce8c1
GM
36862012-04-11 Glenn Morris <rgm@gnu.org>
3687
3688 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
3689
de8c03dc
SM
36902012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3691
3692 * window.el (window--state-get-1): Obey window-point-insertion-type.
3693
050cc68b
LB
36942012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
3695
3696 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
3697 to previous function when point is on the first character of a
75f1671a 3698 function. Take care of that in `narrow-to-defun' (bug#6157).
050cc68b 3699
a38c310c
GM
37002012-04-11 Glenn Morris <rgm@gnu.org>
3701
effed0c2
GM
3702 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
3703 not just file-errors.
3704
a38c310c
GM
3705 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
3706 (vc-bzr-sha1): Use internal sha1.
3707
0221e323
SM
37082012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3709
3710 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
3711
43956923
SG
37122012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
3713
3714 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
3715 that start in the middle of the line (bug#10496).
3716
6a8c9eaf
DN
37172012-04-10 Dan Nicolaescu <dann@gnu.org>
3718
3719 * battery.el (battery-linux-proc-acpi): Only one battery is
3720 discharged at a time, but that seems to confuse battery.el when
3721 computing `rate-type' for the battery not being discharged
3722 (bug#10332).
3723
1930bf5d
SM
37242012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
3725
2a718f6f
SM
3726 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
3727
599430d0
SM
3728 * international/quail.el: Use dolist and simplify.
3729 (quail-define-package, quail-update-keyboard-layout)
3730 (quail-define-rules): Use dolist.
3731 (quail-insert-kbd-layout, quail-get-translation): CSE.
3732
a2754b6c
SM
3733 * tmm.el: Use dolist, remove left over hook.
3734 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
3735 Use dolist.
3736 (calendar-load-hook): Don't mess with it.
3737
1930bf5d
SM
3738 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
3739 Use derived-mode-p. Run the diff asynchronously.
3740
9f67961c
LMI
37412012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3742
3743 * obsolete/mouse-sel.el: Add an Obsolete-since header.
3744
2a8ce227
JB
37452012-04-10 Juanma Barranquero <lekktu@gmail.com>
3746
3747 * misc.el: Display absolute path of loaded DLLs (bug#10424).
3748 (list-dynamic-libraries--loaded): New function.
3749 (list-dynamic-libraries--refresh): Use it.
3750
8f33b5f8
NW
37512012-04-10 Nathan Weizenbaum <nweiz@google.com>
3752
1930bf5d
SM
3753 * progmodes/python.el (python-fill-paragraph):
3754 Make python-fill-region in a multiline string work when font-lock is
8f33b5f8
NW
3755 disabled (bug#7018).
3756
b12f0439
L
37572012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
3758
1930bf5d 3759 * language/european.el (cp775): Add oem/legacy (en)coding on
75f1671a
JB
3760 DOS/MS Windows for the Baltic languages. There are still plenty
3761 of texts written in this encoding/codepage (bug#6519).
b12f0439 3762
57c3bd01
GM
37632012-04-10 Glenn Morris <rgm@gnu.org>
3764
3765 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
3766 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
3767
6c3eab30
FA
37682012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
3769
1930bf5d 3770 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6c3eab30
FA
3771 next-line "n" and previous-line "p" in order to make recentf more
3772 consistent with ibuffer, dired or org-mode (bug#9387).
3773
24d78a88
LMI
37742012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3775
bc72b5d9
LMI
3776 * image.el (put-image): Return the overlay created instead of the
3777 optional input string (bug#7834). Note that this may break code
3778 that is (for some reason or other) depending on `put-image'
3779 returning the string.
3780
bd2dba5a
LMI
3781 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
3782
74beb59f
LMI
3783 * simple.el (zap-to-char): Allow zapping using input methods
3784 (bug#1580).
3785
24d78a88
LMI
3786 * textmodes/fill.el (fill-region): Leave point and mark where they
3787 were before filling (bug#5399).
3788
263f20cd
GM
37892012-04-09 Glenn Morris <rgm@gnu.org>
3790
3791 * version.el (emacs-bzr-get-version):
3792 Handle lightweight checkouts of local branches.
3793
58d1f797
AS
37942012-04-09 Andreas Schwab <schwab@linux-m68k.org>
3795
263f20cd 3796 * international/characters.el: Recover lost case pairs. (Bug#11209)
58d1f797 3797
b4d3bc10
CY
37982012-04-09 Chong Yidong <cyd@gnu.org>
3799
3800 * custom.el (custom-variable-p): Return nil for non-symbol
3801 arguments instead of signaling an error.
3802 (user-variable-p): Obsolete alias for custom-variable-p.
3803
3804 * apropos.el (apropos-variable):
3805 * files-x.el (read-file-local-variable):
3806 * simple.el (set-variable):
3807 * woman.el (woman-mini-help):
3808 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
3809
fd06db5d
GM
38102012-04-09 Glenn Morris <rgm@gnu.org>
3811
e5fcdb5e
GM
3812 * startup.el (normal-top-level): Don't look for leim-list.el
3813 in places where it will not be found. (Bug#910)
3814
fd06db5d
GM
3815 * international/mule-cmds.el (set-default-coding-systems):
3816 * files.el (normal-mode):
3817 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
3818 This function was removed with ucs-tables.el in 2008.
3819
b39bb7e1
EZ
38202012-04-08 Eli Zaretskii <eliz@gnu.org>
3821
3822 * textmodes/ispell.el (ispell-check-version): For hunspell, set
3823 ispell-encoding8-command to "-i", without a trailing space.
3824 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
3825 separate command-line arguments, to specify the encoding, since
3826 that's how hunspell expects it.
3827
5c5b8e23
GM
38282012-04-08 Glenn Morris <rgm@gnu.org>
3829
3830 * loadup.el: Load bindings before cus-start.
3831 This reduces somewhat the number of "rogue" settings in emacs -Q.
3832
a1ed8b05
GM
38332012-04-07 Glenn Morris <rgm@gnu.org>
3834
3835 * version.el (emacs-bzr-get-version): New function.
dfae128a 3836 (emacs-bzr-version): New variable.
a1ed8b05
GM
3837 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
3838 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
3839
b142f158
EZ
38402012-04-07 Eli Zaretskii <eliz@gnu.org>
3841
dfae128a
GM
3842 * international/uni-bidi.el, international/uni-category.el:
3843 * international/uni-combining.el, international/uni-decimal.el:
3844 * international/uni-decomposition.el, international/uni-digit.el:
3845 * international/uni-lowercase.el, international/uni-mirrored.el:
3846 * international/uni-name.el, international/uni-numeric.el:
3847 * international/uni-titlecase.el, international/uni-uppercase.el:
3848 Update for Unicode 6.1.
b142f158 3849
9078ead6
EZ
38502012-04-07 Eli Zaretskii <eliz@gnu.org>
3851
3852 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
3853
f23d2c7d
LMI
38542012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
3855
3856 * window.el (shrink-window): Mention the `window-min-height'
3857 variable in the doc string.
3858
0a0a3573
BG
38592012-04-05 Bastien Guerry <bzg@altern.org>
3860
3861 * color.el (color-lighten-name): Fix typo.
3862
e5248ac9
SM
38632012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
3864
3865 * server.el (server--on-display-p): New function.
3866 (server--on-display-p): Use it.
3867
b4243e22
GV
38682012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
3869
3870 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
3871 (bug#11145).
3872
305d9f44
SM
38732012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
3874
3875 * comint.el (comint--common-quoted-suffix): Check string boundary
3876 before comparing (bug#11158).
3877 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
3878
3d439cd1
CY
38792012-04-04 Chong Yidong <cyd@gnu.org>
3880
321cc491
CY
3881 * minibuffer.el (completion-extra-properties): Doc fix.
3882
3d439cd1
CY
3883 * subr.el (delayed-warnings-hook): Doc fix.
3884
2d562c0f
DU
38852012-04-04 Daiki Ueno <ueno@unixuser.org>
3886
3887 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
3888 selection (Bug#11159).
3889 (epa-insert-keys): Inform that the default public key will be
3890 exported if no key is selected.
3891
4443f204
RS
38922012-04-04 Richard Stallman <rms@gnu.org>
3893
3894 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
3895
529c06b6
CY
38962012-04-03 Chong Yidong <cyd@gnu.org>
3897
3898 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
3899 mail-insert-file, not its obsolete alias mail-attach-file.
3900
66b907dc
MA
39012012-04-03 Michael Albinus <michael.albinus@gmx.de>
3902
3903 * notifications.el (notifications-notify): Fix docstring.
3904
c0ea195d
GM
39052012-04-02 Glenn Morris <rgm@gnu.org>
3906
3907 * emacs-lisp/authors.el (authors-aliases): Another addition.
3908
5ca64e00
MA
39092012-04-02 Michael Albinus <michael.albinus@gmx.de>
3910
3911 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
3912 `tramp-compat-call-process' instead of `tramp-local-call-process'.
3913 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
3914
42ee526b
CY
39152012-04-01 Chong Yidong <cyd@gnu.org>
3916
3917 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
3918 Handle root directory properly.
3919 (copy-directory): Caller changed.
3920
3921 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
3922 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
3923
0b021094
GM
39242012-03-31 Glenn Morris <rgm@gnu.org>
3925
40f86458
GM
3926 * term/xterm.el (xterm-extra-capabilities): Doc fix.
3927
7019c177
GM
3928 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
3929
a1daddd6
GM
3930 * calendar/calendar.el (calendar-window-list)
3931 (calendar-hide-window): Restore. (Bug#11140)
3932 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
3933
0b021094
GM
3934 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
3935
40311efc
TV
39362012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3937
3938 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
3939 Check if file is a symlink (Bug#10489).
3940
3941 * files.el (copy-directory): Likewise.
3942
5319014e
CY
39432012-03-30 Chong Yidong <cyd@gnu.org>
3944
3945 * image.el (imagemagick-types-inhibit)
3946 (imagemagick-register-types): Doc fix.
3947
935d1290
AM
39482012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3949
ef24141c
SM
3950 * ispell.el (ispell-get-extended-character-mode):
3951 Disable extended-char-mode for hunspell. hunspell does not support it
75f1671a 3952 and treats ~word as ordinary words in pipe mode.
935d1290 3953
61c6e8fd
GM
39542012-03-30 Glenn Morris <rgm@gnu.org>
3955
3956 * tutorial.el (help-with-tutorial): Ensure local variables don't
3957 happen to make the buffer read-only. (Bug#11127)
3958
81fdff00
SM
39592012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
3960
3961 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
3962 (perl-calculate-indent): Return `noindent' in strings.
3963
6e7a6ec0
SS
39642012-03-28 Sam Steingold <sds@gnu.org>
3965
3966 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
3967 instead of the broken adhockery which does not prevent calendar
3968 buffers from being displayed at random after exit.
3969 (calendar-window-list, calendar-hide-window): Remove the broken
3970 adhockery.
3971
fee88ca0
GM
39722012-03-28 Glenn Morris <rgm@gnu.org>
3973
3974 * replace.el (query-replace-map): Doc fix.
3975
38de3354
AS
39762012-03-28 Andreas Schwab <schwab@linux-m68k.org>
3977
3978 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
3979 contents. (Bug#11109)
3980
b973155e
SM
39812012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
3982
3983 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
3984 (bug#11077).
3985 (avl-tree--check, avl-tree--check-node): New funs.
3986
dcb6e7b3
MR
39872012-03-27 Martin Rudalics <rudalics@gmx.at>
3988
3989 * window.el (switch-to-visible-buffer): New option.
b973155e
SM
3990 (switch-to-prev-buffer, switch-to-next-buffer):
3991 Observe switch-to-visible-buffer. Make sure that checking for a window
dcb6e7b3
MR
3992 showing a buffer already is done on the same frame.
3993
b4fa35fa
GM
39942012-03-27 Glenn Morris <rgm@gnu.org>
3995
3996 * startup.el (mail-host-address): Doc fix.
3997
f9210e18
SM
39982012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3999
4000 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
4001 than 197 variables.
4002
c0bf7753
AF
40032012-03-26 Ami Fischman <ami@fischman.org>
4004
4005 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
4006
33da7b16
GM
40072012-03-26 Glenn Morris <rgm@gnu.org>
4008
02243d9d
GM
4009 * files.el (save-buffers-kill-emacs): Doc fix.
4010
33da7b16
GM
4011 * startup.el (normal-top-level, command-line, command-line-1):
4012 Give them doc strings.
4013
e5a69fd0
EZ
40142012-03-25 Eli Zaretskii <eliz@gnu.org>
4015
4016 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
b973155e 4017 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
e5a69fd0 4018
9a69676a
CY
40192012-03-25 Chong Yidong <cyd@gnu.org>
4020
4125cb8b
CY
4021 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
4022 theme if it was previously enabled before (Bug#11031).
4023
dd470960
CY
4024 * cus-theme.el (custom-theme-write-faces): Retrieve current face
4025 spec with custom-face-get-current-spec if its :shown-value is not
4026 determined yet (Bug#9337).
4125cb8b 4027 (customize-create-theme, custom-theme-revert): Doc fixes.
dd470960 4028
9a69676a
CY
4029 * button.el (button-at): Minor addition to docstring.
4030
6e7e90fa
SL
40312012-03-24 Simon Leinen <simon.leinen@gmail.com>
4032
4033 * vc/vc.el (vc-merge): Fix a prompt.
4034
f06e2758
CY
40352012-03-24 Chong Yidong <cyd@gnu.org>
4036
4037 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
4038 point (Bug#9623).
4039
6e7e90fa
SL
4040 * button.el (button-at): Minor addition to docstring.
4041
b9d0879b
SM
40422012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4043
4044 * newcomment.el (comment-choose-indent): No space after BOL.
4045
e71cebb3
SS
40462012-03-22 Sam Steingold <sds@gnu.org>
4047
4048 * window.el (switch-to-prev-buffer): Revert last patch because the
4049 bug turned out to be an advertised feature (Elisp manual 28.14).
4050
335aff35
GM
40512012-03-22 Glenn Morris <rgm@gnu.org>
4052
4053 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
4054 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
4055
c676576a
LMI
40562012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4057
4058 * net/network-stream.el (network-stream-open-starttls): Make error
4059 message under Windows be less misleading.
4060
126f3d39
LW
40612012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
4062
4063 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
4064 understands (bug#9942).
4065
64fee311
CY
40662012-03-22 Chong Yidong <cyd@gnu.org>
4067
4068 * simple.el (end-of-visible-line): Handle return value of
4069 next-single-property-change properly (Bug#9371).
4070
a640d29a
KH
40712012-03-22 Kenichi Handa <handa@m17n.org>
4072
4073 * international/quail.el (quail-insert-kbd-layout): Fix previous
4074 change. To avoid unwanted bidi reordering, use
4075 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
4076
39675016
DG
40772012-03-21 Dmitry Gutov <dgutov@yandex.ru>
4078
4079 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
4080 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
4081 (ruby-beginning-of-indent): Be more careful with the difference
4082 between word-boundary and symbol boundary.
4083 (ruby-mode-syntax-table): Make : a symbol constituent.
4084
0a6934fc 40852012-03-21 Andreas Politz <politza@fh-trier.de>
1acad97c 4086
3d008e4f
SM
4087 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
4088
0a6934fc
SM
40892012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4090
af67c9d7
SM
4091 * progmodes/etags.el (tags-completion-at-point-function):
4092 Improve last fix.
4093
1acad97c
SM
4094 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
4095
e298b5da
SS
40962012-03-21 Sam Steingold <sds@gnu.org>
4097
4098 * progmodes/etags.el (tags-completion-at-point-function):
4099 Avoid the error when point is inside the pattern.
4100
91d82a70
JY
41012012-03-21 John Yates <john@yates-sheets.org> (tiny change)
4102
4103 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
4104 line (Bug#10855).
4105
69188b79
CY
41062012-03-21 Drew Adams <drew.adams@oracle.com>
4107
4108 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
4109
99fc91fe
AK
41102012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
4111
4112 * ido.el (ido-set-current-directory, ido-read-internal)
4113 (ido-choose-completion-string, ido-completion-help): Handle nil
4114 value of ido-completion-buffer (Bug#11008).
4115
087bbb4c
SS
41162012-03-21 Sam Steingold <sds@gnu.org>
4117
4118 * window.el (switch-to-prev-buffer): Do not switch to a visible
4119 window previous buffer, just like with the frame previous buffers.
4120
fb5b8aca
CY
41212012-03-21 Chong Yidong <cyd@gnu.org>
4122
4123 * faces.el (make-face, make-empty-face, copy-face):
4124 * face-remap.el (face-remap-add-relative, face-remap-set-base):
4125 Doc fixes.
4126
dc9924b8
SM
41272012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4128
4129 * wid-edit.el (widget-complete-field): Remove (bug#11051).
4130 (widget-complete): Remove broken use of it.
4131
f0bcceb9
CY
41322012-03-20 Chong Yidong <cyd@gnu.org>
4133
dc9924b8
SM
4134 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
4135 Use string-width and truncate-string-width to handle arbitrary
f0bcceb9
CY
4136 characters.
4137
ee52ebf3
TH
41382012-03-20 Tassilo Horn <tassilo@member.fsf.org>
4139
4140 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
4141 to draw rectangles, not squares. (Regression introduced by revno
4142 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
4143
4c5779ab
CY
41442012-03-18 Chong Yidong <cyd@gnu.org>
4145
4146 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
4147 it is not yet defined (for temacs).
4148
15360934
LL
41492012-03-18 Leo Liu <sdl.web@gmail.com>
4150
dc9924b8 4151 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
15360934 4152
d9a8eb66
EZ
41532012-03-17 Eli Zaretskii <eliz@gnu.org>
4154
4155 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
4156 (ispell-choices-win-default-height, ispell-silently-savep)
4157 (ispell-dictionary-alist, ispell-encoding8-command)
4158 (ispell-check-version, ispell-aspell-find-dictionary)
4159 (ispell-valid-dictionary-list, ispell-words-keyword)
4160 (ispell-get-word, ispell-internal-change-dictionary)
4161 (ispell-region, ispell-skip-region-list)
4162 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
4163 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
4164 (ispell-message-text-end, ispell-message)
4165 (ispell-buffer-local-parsing): Doc fix.
4166
f02ff80d
J
41672012-03-13 Jambunathan K <kjambunathan@gmail.com>
4168
4169 * htmlfontify.el: Add support for code block fontification for ODT
4170 export (Bug #9914).
4171 (hfy-optimisations): Define new option
4172 `body-text-only'
4173 (hfy-fontify-buffer): Honor above setting.
4174 (hfy-begin-span, hfy-end-span): New routines factored out form
4175 `hfy-fontify-buffer'.
4176 (hfy-begin-span-handler, hfy-end-span-handler): New variables
4177 that permit insertion of custom tags.
4178 (hfy-fontify-buffer): Use above handlers.
4179 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
4180 (hfy-face-to-css): Re-defined to be a variable.
dc9924b8 4181 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
75f1671a 4182 over multiple runs. This is made possible by having the caller let
f02ff80d
J
4183 bind a special variable `hfy-user-sheet-assoc'.
4184 (htmlfontify-string): New defun.
4185 (hfy-compile-face-map): Make sure that the last char in the
4186 buffer is correctly fontified.
4187 (hfy-face-resolve-face): Whitespace only change.
4188
9ac7a13f
EZ
41892012-03-17 Eli Zaretskii <eliz@gnu.org>
4190
4191 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
4192 message more clear.
4193
e2b5bdd7
LL
41942012-03-16 Leo Liu <sdl.web@gmail.com>
4195
4196 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
4197
2e492df3
AM
41982012-03-16 Alan Mackenzie <acm@muc.de>
4199
4200 Further optimise the handling of large macros.
4201
4202 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
4203 limit to a call of `c-literal-limits'.
4204 (c-determine-+ve-limit): New function.
dc9924b8
SM
4205 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
4206 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
2e492df3
AM
4207 In CASE 5B, restrict a search limit to 500.
4208 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
4209
4210 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
4211 Restrict macro bounds to +-500 from after-change's BEG END.
4212
50e94f0c
LL
42132012-03-16 Leo Liu <sdl.web@gmail.com>
4214
4215 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
4216
6f09f6ed
AH
42172012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
4218
4219 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
dc9924b8 4220 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6f09f6ed 4221
c7e73d51
GM
42222012-03-16 Glenn Morris <rgm@gnu.org>
4223
da986230
GM
4224 * view.el (view-buffer, view-buffer-other-window)
4225 (view-buffer-other-frame): Doc fixes re special mode-class.
4226
0835f01e
GM
4227 * subr.el (eval-after-load): If named feature is provided not from
4228 a file, run after-load forms. (Bug#10946)
4229
c7e73d51
GM
4230 * calendar/calendar.el (calendar-insert-at-column):
4231 Handle non-unit-width characters a bit better. (Bug#10978)
4232
3f2eafd1
CY
42332012-03-15 Chong Yidong <cyd@gnu.org>
4234
4235 * emacs-lisp/ring.el (ring-extend): New function.
4236 (ring-insert+extend): Extend the ring correctly (Bug#11019).
4237
4238 * comint.el (comint-read-input-ring)
4239 (comint-add-to-input-history): Grow comint-input-ring lazily.
4240
103af3fe
SM
42412012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
4242
663b1677
SM
4243 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
4244 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
4245
103af3fe
SM
4246 * imenu.el: Fix multiple inheritance breakage (bug#9199).
4247 (imenu-add-to-menubar): Don't add a redundant index.
4248 (imenu-update-menubar): Handle a dynamically composed keymap.
4249
899cb7cb
KY
42502012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
4251
4252 * mail/sendmail.el (mail-encode-header):
4253 Bind rfc2047-encode-encoded-words to nil.
4254
3809f91d
GM
42552012-03-13 Glenn Morris <rgm@gnu.org>
4256
4257 * calendar/calendar.el (calendar-string-spread):
4258 Handle non-unit-width characters a bit better. (Bug#10978)
4259
9e345a01
LL
42602012-03-13 Leo Liu <sdl.web@gmail.com>
4261
4262 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
4263 directory and file as argument (Bug#10822).
4264
4a07df36
KS
42652012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4266
4267 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
4268 For dynamically generated code, follow $PC.
4269 (gdb-disassembly-handler-custom): Handle no function name case.
4270
4aaa9356
TL
42712012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
4272
4273 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
4274 * emulation/ws-mode.el (ws-query-replace):
4275 * sort.el (sort-regexp-fields):
4276 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
4277
225979da
SM
42782012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4279
4280 * dabbrev.el: Fix cycle completion order (bug#10963).
4281 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
4282 (dabbrev-completion): Don't use an obarray; provide
4283 a cycle-sort-function.
4284
e2f1fdab
LL
42852012-03-12 Leo Liu <sdl.web@gmail.com>
4286
dc9924b8 4287 * simple.el (kill-new): Use equal-including-properties for comparison.
e2f1fdab
LL
4288 (kill-do-not-save-duplicates): Doc fix.
4289
b19490ed
SM
42902012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4291
4292 * dabbrev.el: Fix cycle completion (bug#10963).
4293 Use lexical binding and wrap to 80 columns.
4294 (dabbrev-completion): Delay computing the list of completions.
4295
4b05d722
KH
42962012-03-12 Kenichi Handa <handa@m17n.org>
4297
4298 * international/quail.el (quail-insert-kbd-layout): Surround each
4299 row by LRO and PDF instead of inserting many LRMs. Pad the left
4300 and right of each non-spacing marks. Insert invisible space
4301 between lower and upper characters to prevent composition.
4302
dbbc2e69
SM
43032012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4304
4305 * minibuffer.el (minibuffer-complete): Don't get confused when the
4306 function is run twice via different commands (bug#10958).
4307 (complete-with-action): Fix docstring.
4308
292112ed
CY
43092012-03-12 Chong Yidong <cyd@gnu.org>
4310
5d1ac394
CY
4311 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
4312 (nxml-completion-at-point-function): New function.
4313 (nxml-mode): Use it.
4314 (nxml-bind-meta-tab-to-complete-flag): Default to t.
4315
292112ed
CY
4316 * emacs-lisp/package.el (package-unpack, package-unpack-single):
4317 Load generated autoloads file before byte compiling (Bug#10970).
4318 (package--make-autoloads-and-compile): New helper fun.
4319
4098f8f7
CS
43202012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
4321
4322 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
4323
8f754691
MA
43242012-03-11 Michael Albinus <michael.albinus@gmx.de>
4325
4326 * autorevert.el (auto-revert-handler): Ensure, that
4327 file-readable-p is applied only for local files or in
4328 auto-revert-tail-mode.
4329
e29ab36b
AS
43302012-03-11 Andreas Schwab <schwab@linux-m68k.org>
4331
dbbc2e69
SM
4332 * server.el (server-eval-at): Handle non-tcp connections.
4333 Decode result string.
ad0bf5b6 4334
e29ab36b
AS
4335 * server.el (server-msg-size): New constant.
4336 (server-reply-print): New function.
4337 (server-eval-and-print): Use it.
4338 (server-eval-at): Use server-quote-arg and server-unquote-arg.
4339 Handle -print-nonl.
4340
de5939ba
CS
43412012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
4342
4343 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
4344 (Bug#10987).
4345
0c93eabf
CY
43462012-03-11 Chong Yidong <cyd@gnu.org>
4347
397a688f
CY
4348 * simple.el (goto-line): Doc fix (Bug#9938).
4349
2cc775f9
CY
4350 * subr.el (save-window-excursion): Doc fix (Bug#9979).
4351
0c93eabf
CY
4352 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
4353 when finished (Bug#10963).
4354
c491fa41
MR
43552012-03-11 Martin Rudalics <rudalics@gmx.at>
4356
4357 * window.el (split-window-below): Fix bug in case where
4358 split-window-keep-point is nil (Bug#10971).
4359
300e8fa5
JL
43602012-03-11 Juri Linkov <juri@jurta.org>
4361
4362 * replace.el (replace-highlight): Set isearch-word to nil
4363 unconditionally. (Bug#10887)
4364
dbf6c5a1
EZ
43652012-03-10 Eli Zaretskii <eliz@gnu.org>
4366
4367 * net/mairix.el (mairix-replace-invalid-chars): Rename from
4368 mairix-replace-illegal-chars; all callers changed. Don't remove
dc9924b8 4369 ^, ~, and = characters: they are meaningful in mairix search specs.
dbf6c5a1
EZ
4370 (mairix-widget-create-query): Add usage information about mairix
4371 search forms: negating words, searching for substrings, etc.
4372
b9e501de
JP
43732012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
4374
4375 * international/fontset.el (font-encoding-alist): Add an entry for
4376 ksx1001 (Bug#5667).
4377
92795c91
RS
43782012-03-10 Richard Stallman <rms@gnu.org>
4379
1694e6c1
RS
4380 * mail/sendmail.el (mail-encode-header):
4381 Set rfc2047-encode-encoded-words.
4382
607e8555
RS
4383 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
4384
de3bc99a
RS
4385 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
4386 view buffer means not swapped.
4387 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
4388 (rmail-write-region-annotate): Error if real text has disappeared.
4389
92795c91
RS
4390 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
4391
699bd04e
CY
43922012-03-10 Chong Yidong <cyd@gnu.org>
4393
4394 * emulation/cua-rect.el (cua--init-rectangles):
dbbc2e69
SM
4395 * emulation/cua-base.el (cua--init-keymaps):
4396 Add delete-forward-char to remappings (Bug#9666).
699bd04e 4397
570a1714
MR
43982012-03-10 Martin Rudalics <rudalics@gmx.at>
4399
dbbc2e69
SM
4400 * speedbar.el (speedbar-unhighlight-one-tag-line):
4401 Avoid unhighlighting due to frame switching (Bug#10275).
570a1714 4402
82dcf4e4
CY
44032012-03-10 Chong Yidong <cyd@gnu.org>
4404
7a2c7ca7
CY
4405 * minibuffer.el (completion-in-region, completion-help-at-point):
4406 Give the completion field overlay a high priority (Bug#6830).
4407
82dcf4e4
CY
4408 * dired.el (dired-goto-file): Recognize absolute file name
4409 listings (Bug#7126).
4410 (dired-goto-file-1): New helper function.
4411 (dired-toggle-read-only): Inhibit warnings.
4412
052e28ac
MA
44132012-03-09 Michael Albinus <michael.albinus@gmx.de>
4414
75f1671a 4415 * net/dbus.el (dbus-property-handler): Return empty array if
052e28ac
MA
4416 there are no properties.
4417
95d5e396
LL
44182012-03-09 Leo Liu <sdl.web@gmail.com>
4419
4420 * savehist.el (savehist-printable): Stricter check for string
4421 value (Bug#10937).
4422
3f018d6d
EZ
44232012-03-09 Eli Zaretskii <eliz@gnu.org>
4424
dbbc2e69
SM
4425 * mail/smtpmail.el (smtpmail-send-it):
4426 Bind coding-system-for-write to *-unix, so that FCC files are kept in
3f018d6d
EZ
4427 valid mbox format.
4428
f7fd3d79
GM
44292012-03-09 Glenn Morris <rgm@gnu.org>
4430
4431 * files.el (dir-locals-find-file):
4432 Don't check result is regular, readable.
4433 (dir-locals-read-from-file): Demote errors.
4434
6ff6e72f
EZ
44352012-03-08 Eli Zaretskii <eliz@gnu.org>
4436
dbbc2e69
SM
4437 * international/quail.el (quail-insert-kbd-layout):
4438 Insert invisible LRM characters before each character in a keyboard
6ff6e72f
EZ
4439 layout cell, to prevent their reordering by bidi display engine.
4440 For details, see the discussion in
4441 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
4442
9cec7834
AM
44432012-03-08 Alan Mackenzie <acm@muc.de>
4444
4445 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
4446 the starting position; make it extend the marked region when
4447 invoked repeatedly - all under appropriate circumstances.
4448 Fixes bugs #5525, #10906.
4449
9a40b8d4
GM
44502012-03-08 Glenn Morris <rgm@gnu.org>
4451
4452 * files.el (locate-dominating-file, dir-locals-find-file):
4453 Undo 2012-03-06 change.
4454
7a08ed35
EZ
44552012-03-07 Eli Zaretskii <eliz@gnu.org>
4456
dbbc2e69
SM
4457 * international/quail.el (quail-help):
4458 Force bidi-paragraph-direction be left-to-right. See discussion in
7a08ed35
EZ
4459 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
4460 for the reason.
4461
5aca4f71 44622012-03-07 Michael Albinus <michael.albinus@gmx.de>
6612a284
MA
4463
4464 Avoid superfluous registering of signals. (Bug#10807)
4465
4466 * notifications.el (notifications-on-action-object)
4467 (notifications-on-close-object): New defvars.
4468 (notifications-on-action-signal, notifications-on-closed-signal):
4469 Unregister the signal if not needed any longer.
4470 (notifications-notify): Register `notifications-action-signal' or
4471 `notifications-closed-signal', if :on-action or :on-close has been
4472 passed as argument.
4473
78e8b10a
CY
44742012-03-07 Chong Yidong <cyd@gnu.org>
4475
4476 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
4477 non-X platforms.
4478
69481eb8
GM
44792012-03-06 Glenn Morris <rgm@gnu.org>
4480
4481 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
4482 (x-disown-selection-internal, x-get-selection-internal):
4483 Doc fix (add arglist signatures). (Bug#10783)
4484
133b8e11
KS
44852012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4486
4487 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
4488 Handle breakpoints with no "type".
4489
99a83064
GM
44902012-03-06 Glenn Morris <rgm@gnu.org>
4491
4492 * files.el (locate-dominating-file): Add optional predicate argument.
4493 (dir-locals-find-file): Make use of above change.
4494
17798e78
TTN
44952012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
4496
4497 * info.el (Info-insert-dir): Also try "dir.gz".
4498
eb182446
GM
44992012-03-06 Glenn Morris <rgm@gnu.org>
4500
8f2114ee
GM
4501 * files.el (dir-locals-find-file):
4502 Ignore non-readable or non-regular files. (Bug#10928)
4503
eb182446
GM
4504 * files.el (locate-dominating-file): Doc fix.
4505
24679323
AS
45062012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
4507
4508 * calendar/calendar.el (calendar-set-mode-line):
4509 `getenv' returns a string. (Bug#10951)
4510
01d972a9
LL
45112012-03-05 Leo Liu <sdl.web@gmail.com>
4512
109aa8a9
LL
4513 * simple.el (backward-delete-char-untabify): Constrain point to
4514 field (Bug#10939).
4515
01d972a9
LL
4516 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
4517
10607bea
CY
45182012-03-05 Chong Yidong <cyd@gnu.org>
4519
4520 * simple.el (count-words): If called from Lisp, return the word
4521 count, for symmetry with `count-lines'. Arglist changed.
4522 (count-words--message): Args changed. Consolidate counting code
4523 from count-words and count-words-region.
4524 (count-words-region): Caller changed.
4525 (count-lines-region): Make it an obsolete alias.
4526
5dd11cfe
TH
45272012-03-04 Tassilo Horn <tassilo@member.fsf.org>
4528
4529 * saveplace.el (save-place-to-alist)
4530 (save-place-ignore-files-regexp): Allow value nil to disable this
4531 feature.
4532
c349f4e6
CY
45332012-03-04 Chong Yidong <cyd@gnu.org>
4534
4535 * faces.el (face-spec-reset-face): For the default face, reset the
4536 attributes to default values (Bug#10748).
4537
e627be4c
LMI
45382012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4539
4540 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
4541 previous patch: Check `message-send-mail-function', and not the
4542 default function (bug#10897).
4543
ebeabff4
MA
45442012-03-04 Michael Albinus <michael.albinus@gmx.de>
4545
a41a6cf4
MA
4546 * notifications.el (notifications-on-action-signal)
4547 (notifications-on-closed-signal): Check for unique service name of
4548 incoming event. Fix error in removing entry.
ebeabff4 4549 (top): Register for signals with wildcard service name.
a41a6cf4 4550 (notifications-notify): Use daemon unique service name for map entries.
ebeabff4 4551
c1ca42b4
CY
45522012-03-04 Chong Yidong <cyd@gnu.org>
4553
dc9924b8 4554 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
c1ca42b4 4555
ea16568d
GM
45562012-03-04 Glenn Morris <rgm@gnu.org>
4557
4558 * abbrev.el (copy-abbrev-table, abbrev-table-p)
4559 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
4560 (expand-abbrev, define-abbrev-table): Doc fixes.
4561
fbae4637
LMI
45622012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4563
4564 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
4565 `message-default-send-mail-function' and not `send-mail-function'
4566 when doing the prompting for `sendmail-query-once' before sending
4567 in Message buffers (bug#10897).
4568
a1e7225c
LMI
4569 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
4570 This is inconsistent with all the other stream functions, which leave
4571 the setting up to the higher levels (if so wanted) (bug#10931).
4572
56d093a9
AM
45732012-03-02 Alan Mackenzie <acm@muc.de>
4574
4575 Depessimize the handling of very large macros.
4576
4577 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
4578 (c-macro-cache-syntactic): New variables to implement a one
4579 element macro cache.
4580 (c-invalidate-macro-cache): New function.
4581 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
4582 Adapt to use the new cache.
4583 (c-state-safe-place): Use better the cache of safe positions.
4584 (c-state-semi-nonlit-pos-cache)
4585 (c-state-semi-nonlit-pos-cache-limit):
4586 New variables for...
4587 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
4588 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
dbbc2e69
SM
4589 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
4590 Use c-state-semi-safe-place.
56d093a9 4591
dbbc2e69
SM
4592 * progmodes/cc-langs.el (c-get-state-before-change-functions):
4593 Add c-invalidate-macro-cache to the C, C++, Obj entries.
56d093a9 4594
817e5c3d
MA
45952012-03-02 Michael Albinus <michael.albinus@gmx.de>
4596
dbbc2e69
SM
4597 * jka-compr.el (jka-compr-call-process):
4598 Apply `file-accessible-directory-p' only when the default directory is
817e5c3d
MA
4599 not remote.
4600
a032a702
MA
46012012-03-01 Michael Albinus <michael.albinus@gmx.de>
4602
4603 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
4604 access of FILE2, if FILE1 does not exist.
4605
99a54f21
MA
4606 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
4607 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
4608
4609 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
4610 Add "PAGER=" to `process-environment'.
4611
f6561e1f
MM
46122012-03-01 Michael R. Mauger <mmaug@yahoo.com>
4613
4614 * progmodes/sql.el: Bug fix
4615 (sql-get-login-ext): Save login values in globals.
4616 (sql-get-login): Use new version of `sql-get-login-ext'.
4617 (sql-interactive-mode): Set global `sql-connection' to nil.
4618 (sql-connect): Set global values for connection.
4619 (sql-product-interactive): Save global values as buffer local.
4620
2d44d9cc
LL
46212012-02-29 Leo Liu <sdl.web@gmail.com>
4622
4623 * abbrev.el (define-abbrevs): Reset sys to nil.
4624
96b49301 46252012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4626
bf7f9bc5
JB
4627 * files.el (file-equal-p): Rename from `files-equal-p'.
4628 Return nil when one or both files don't exist.
96b49301 4629 (file-subdir-of-p): Now only top directory must exists,
4630 return nil if it doesn't.
bf7f9bc5
JB
4631 (copy-directory): No need to test with `file-subdir-of-p' after
4632 creating dir.
4633 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
4634 to `file-equal-p'.
96b49301 4635
44e97401
GM
46362012-02-28 Glenn Morris <rgm@gnu.org>
4637
4638 * shell.el (shell-mode):
4639 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
4640 * play/landmark.el (landmark-font-lock-face-O):
4641 * play/handwrite.el (handwrite):
4642 * play/gomoku.el (gomoku-O):
4643 * net/browse-url.el (browse-url-browser-display):
4644 * international/mule.el (define-charset):
4645 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
4646 * filesets.el (filesets-find-file-delay):
4647 * eshell/em-xtra.el (eshell-xtra):
4648 * eshell/em-unix.el (eshell-grep):
4649 * emulation/viper.el (viper-mode):
4650 * emacs-lisp/regexp-opt.el (regexp-opt-group):
4651 * emacs-lisp/easymenu.el (easy-menu-define):
4652 * calendar/timeclock.el (timeclock-use-display-time):
4653 * bs.el (bs-mode):
4654 * bookmark.el (bookmark-save-flag):
4655 Doc fix (standardize possessive apostrophe usage).
4656
c98c6276
CY
46572012-02-27 Chong Yidong <cyd@gnu.org>
4658
bf7f9bc5
JB
4659 * emulation/viper-cmd.el (viper-intercept-ESC-key):
4660 Fix key-binding lookup for ESC key (Bug#9146).
ecf5f74e 4661
c98c6276
CY
4662 * font-lock.el (font-lock-specified-p): Rename from
4663 font-lock-spec-present. Callers changed.
4664
9c62cd04 46652012-02-27 Daniel Hackney <dan@haxney.org>
8ac9e529 4666
bf7f9bc5
JB
4667 * emacs-lisp/package.el (package-compute-transaction):
4668 Handle holding a package version to t in package-load-list.
8ac9e529 4669
530739c9
MA
46702012-02-26 Michael Albinus <michael.albinus@gmx.de>
4671
4672 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
4673 (tramp-get-inode, tramp-get-device): Use cached values.
4674
487915d7
AM
46752012-02-26 Alan Mackenzie <acm@muc.de>
4676
4677 Check there is a font-lock specification before doing initial
4678 fontification.
4679
4680 * font-core.el (font-lock-mode): Move the conditional from
4681 :after-hook to font-lock-initial-fontify.
4682 (font-lock-default-function): Move the check for a specification
4683 to font-lock-spec-present.
4684
dc9924b8 4685 * font-lock.el (font-lock-initial-fontify): Call ...
487915d7
AM
4686 (font-lock-spec-present): New function.
4687
4fd96557
JB
46882012-02-26 Jim Blandy <jimb@red-bean.com>
4689
4690 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
4691 (gdb-send): Apply it to the operand of the '-interpreter-exec
4692 console' command, so that we can pass arguments with (say) quotes
4693 in them. Store exact string sent in gdb-debug-log (Bug#10765).
4694
9a4888c0
CY
46952012-02-26 Chong Yidong <cyd@gnu.org>
4696
07498861
CY
4697 * help-fns.el (describe-function-1): Clarify description of
4698 remapping (Bug#10844).
4699
9a4888c0
CY
4700 * files.el (files-equal-p): Doc fix.
4701 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
4702 and quit the loop once a mismatch is found.
4703
ea8fb88d
JB
47042012-02-25 Juanma Barranquero <lekktu@gmail.com>
4705
4706 * bs.el (bs--show-with-configuration): Don't throw an error
4707 if the window cannot be split; otherwise, subsequent calls to
4708 bs-show fail, restoring a stale window config. (Bug#10882)
4709
525795c1
JD
47102012-02-25 Jan Djärv <jan.h.d@swipnet.se>
4711
4712 * term/ns-win.el (global-map): Bind ns-drag-file to
4713 ns-find-file (Bug#5855, Bug#10050).
4714
f008086f
AS
47152012-02-25 Andreas Schwab <schwab@linux-m68k.org>
4716
4717 * calendar/parse-time.el (parse-time-string): Allow extractor to
4718 return nil.
4719
a3fcfa99
MA
47202012-02-25 Michael Albinus <michael.albinus@gmx.de>
4721
91027d08
JB
4722 * net/tramp.el (tramp-file-name-for-operation):
4723 Add `files-equal-p' and `file-subdir-of-p'.
a3fcfa99
MA
4724
4725 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
91027d08
JB
4726 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
4727 Add COPY-CONTENTS argument.
a3fcfa99 4728
67b0de11
CY
47292012-02-25 Chong Yidong <cyd@gnu.org>
4730
4731 Add custom groups for VC backends, for consistency with vc-bzr.
4732
4733 * vc/vc-arch.el (vc-arch):
4734 * vc/vc-cvs.el (vc-cvs):
4735 * vc/vc-git.el (vc-git):
4736 * vc/vc-hg.el (vc-hg):
4737 * vc/vc-mtn.el (vc-mtn):
4738 * vc/vc-rcs.el (vc-rcs):
4739 * vc/vc-sccs.el (vc-sccs):
4740 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
4741 All relevant defcustoms reassigned.
4742
3c9dfce6
CY
47432012-02-25 Chong Yidong <cyd@gnu.org>
4744
1339bf43
CY
4745 * newcomment.el (comment-styles): Add autoload (Bug#10868).
4746
3c9dfce6
CY
4747 * term/x-win.el (x-initialize-window-system): Reduce default for
4748 x-selection-timeout to 5 seconds (Bug#8869).
4749
25b2e303 47502012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4751
ec70a47d
GM
4752 * files.el (files-equal-p, file-subdir-of-p): New functions.
4753 (copy-directory): Error when trying to copy a directory on itself.
25b2e303 4754 Add missing copy-contents arg to tramp handler.
ec70a47d
GM
4755 * dired-aux.el (dired-copy-file-recursive): Same.
4756 (dired-create-files): Modify destination when source is equal to
4757 dest when copying files.
53a46cd0 4758 Return also when dest is a subdir of source. (Bug#10489)
25b2e303 4759
914260cd
MA
47602012-02-24 Michael Albinus <michael.albinus@gmx.de>
4761
4762 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
4763 (Bug#10874)
4764
2cb228f7
AM
47652012-02-23 Alan Mackenzie <acm@muc.de>
4766
4767 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
4768 parameter "after-hook:" to allow the expansion to run code after
4769 the execution of the mode hooks.
4770
4771 * font-lock.el (font-lock-initial-fontify): New function extracted
91027d08 4772 from font-lock-mode-internal.
2cb228f7 4773
91027d08 4774 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
2cb228f7
AM
4775 :after-hook.
4776
8f0fde21
SM
47772012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
4778
3e88618b
SM
4779 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
4780 (completion--cache-all-sorted-completions): New function.
4781 (completion-all-sorted-completions): Use it.
4782 (completion--do-completion, minibuffer-force-complete):
4783 Use it to re-instate the flush hook.
4784
8f0fde21
SM
4785 * icomplete.el (icomplete-completions): Replace last fix with a better
4786 one (bug#10850).
4787
8e911f6f
DG
47882012-02-23 Dmitry Gutov <dgutov@yandex.ru>
4789
4790 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
4791 when it might call us back infinitely (bug#10797).
4792
49fe4321
GM
47932012-02-23 Glenn Morris <rgm@gnu.org>
4794
4795 * minibuffer.el (completion-category-overrides): Doc fix.
4796
b291b572
SM
47972012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
4798
4799 * minibuffer.el (completion-table-with-context): Fix inf-loop.
4800 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
4801
31a9ef2e
GM
48022012-02-23 Glenn Morris <rgm@gnu.org>
4803
5e6e6794 4804 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
31a9ef2e
GM
4805 (authors-obsolete-files-regexps, authors-ignored-files)
4806 (authors-ambiguous-files, authors-renamed-files-alist):
4807 Add more entries.
4808
0bd1e074
JL
48092012-02-23 Juri Linkov <juri@jurta.org>
4810
4811 * isearch.el (isearch-occur): Sync interactive spec with occur's
4812 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
4813
b617673c
JL
4814 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
4815
19e9789e
JL
48162012-02-22 Juri Linkov <juri@jurta.org>
4817
4818 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
4819 (ucs-insert): Doc fix. Check for hex digits in the string.
4820 Don't display `nil' in the error message. (Bug#10857)
4821
f41ce09d
AM
48222012-02-22 Alan Mackenzie <acm@muc.de>
4823
7a71b18d 4824 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
f41ce09d 4825
ac2eceee
GM
48262012-02-22 Glenn Morris <rgm@gnu.org>
4827
4828 * ffap.el (ffap-c-path):
4829 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
4830
abd1f678
CY
48312012-02-22 Chong Yidong <cyd@gnu.org>
4832
4833 * custom.el (load-theme): Doc fix.
4834
f25aef2e
GM
48352012-02-22 Glenn Morris <rgm@gnu.org>
4836
4837 * dired-x.el (dired-guess-shell-alist-default):
4838 Remove escape sequences from nroff output. (Bug#172)
4839
5f8dc2ca
GM
48402012-02-21 Glenn Morris <rgm@gnu.org>
4841
6ff86ec4
GM
4842 * vc/emerge.el (emerge-defvar-local):
4843 Set `permanent-local' property rather than unused `preserved'.
4844
be3223a3 4845 * textmodes/picture.el (picture-delete-char): New alias.
5f8dc2ca
GM
4846 (picture-mode-map): Use it. (Bug#10860)
4847 (picture-mode): Doc fix.
4848
3fe58f4f
JB
48492012-02-21 Juanma Barranquero <lekktu@gmail.com>
4850
4851 * newcomment.el (uncomment-region-default): Remove unused binding.
4852
f9a998c3
GM
48532012-02-21 Glenn Morris <rgm@gnu.org>
4854
4855 * textmodes/picture.el (picture-motion, picture-motion-reverse)
4856 (picture-self-insert, picture-tab-chars): Doc fix.
4857 (picture-mode-map): Fix C-a, C-e.
4858
c6029348
GM
48592012-02-20 Glenn Morris <rgm@gnu.org>
4860
4861 * emacs-lisp/authors.el (authors-aliases): Add another entry.
4862
ab1ce9d7
LL
48632012-02-20 Leo Liu <sdl.web@gmail.com>
4864
4865 * icomplete.el (icomplete-completions): Check FROM arg before
4866 passing to substring (Bug#10850).
4867
0fd40f89
CY
48682012-02-19 Chong Yidong <cyd@gnu.org>
4869
4870 * comint.el: Require ansi-color.
4871 (comint-output-filter-functions): Add ansi-color-process-output.
4872
4873 * ansi-color.el: Don't set comint-output-filter-functions; it is
4874 now in the initial value defined in comint.el.
4875 (ansi-color-apply-face-function): New variable.
4876 (ansi-color-apply-on-region): Use it.
4877 (ansi-color-apply-overlay-face): New function.
4878
4879 * shell.el (shell): No need to require ansi-color.
4880 (shell-mode): Use ansi-color-apply-face-function to highlight
4881 color escapes using font-lock-face property (Bug#10835).
4882
20af2394
CY
48832012-02-19 Chong Yidong <cyd@gnu.org>
4884
4885 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
4886 mode-line formats (Bug#10839).
4887
e23a3fbe
GM
48882012-02-18 Glenn Morris <rgm@gnu.org>
4889
b474519e
GM
4890 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
4891
4892 * mail/undigest.el (unforward-rmail-message): Doc fix.
4893
e23a3fbe
GM
4894 * saveplace.el (save-place-ignore-files-regexp): Add :version.
4895
57939ff4
EZ
48962012-02-18 Eli Zaretskii <eliz@gnu.org>
4897
4898 * international/characters.el (script-list): Sync with the latest
4899 Unicode Character Database.
4900
0c23686e
AS
49012012-02-18 Andreas Schwab <schwab@linux-m68k.org>
4902
4903 * international/titdic-cnv.el: Remove duplicate coding tag.
4904 * language/cham.el: Likewise.
4905 * language/tai-viet.el: Likewise.
4906
6818b449
GM
49072012-02-18 Glenn Morris <rgm@gnu.org>
4908
4909 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
4910 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
4911 (calendar-bahai-all-holidays-flag, calendar-other-dates):
4912 * calendar/diary-lib.el (diary-abbreviated-year-flag):
4913 * calendar/holidays.el (holiday-bahai-holidays)
4914 (calendar-holidays, list-holidays):
4915 Use utf-8 Bahá'í in doc-strings, menus, etc.
4916
0311a3fc
TH
49172012-02-17 Tassilo Horn <tassilo@member.fsf.org>
4918
4919 * saveplace.el (save-place-ignore-files-regexp): New variable
4920 allowing for excluding files from saving their location of point.
4921 The default value matches the temporary commit message editing
4922 files from Git, SVN, Bazaar, and Mercurial.
4923 (save-place-to-alist): Use it.
4924
eb864a71
LM
49252012-02-17 Lawrence Mitchell <wence@gmx.li>
4926 Stefan Monnier <monnier@iro.umontreal.ca>
4927
4928 * newcomment.el (uncomment-region-default): Don't leave extra space
4929 when an arg is provided (bug#8150).
4930
ee0ce425
TZ
49312012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
4932
eb864a71 4933 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
ee0ce425 4934
95ddf442
GM
49352012-02-17 Glenn Morris <rgm@gnu.org>
4936
4937 * net/socks.el: Require network-stream. (Bug#10599)
4938
48dd1e39 49392012-02-17 Kenichi Handa <handa@m17n.org>
c406be43
KH
4940
4941 * international/charprop.el:
4942 * international/uni-name.el:
4943 * international/uni-old-name.el:
4944 * international/uni-comment.el: Regenerate.
4945
d68cd087
GM
49462012-02-16 Glenn Morris <rgm@gnu.org>
4947
4948 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
4949 Interactively in calendar buffer, give an error if not on a date.
4950
13932042
GM
49512012-02-15 Glenn Morris <rgm@gnu.org>
4952
4953 * shell.el (shell-delimiter-argument-list):
4954 Revert 2011-02-17 change. (Bug#8027)
4955
c3a70e2b
CY
49562012-02-15 Chong Yidong <cyd@gnu.org>
4957
60236b0d
CY
4958 * minibuffer.el (completion-at-point-functions): Doc fix.
4959
c3a70e2b
CY
4960 * custom.el (defcustom): Doc fix; note use of defvar.
4961
9f26dc24
GM
49622012-02-15 Glenn Morris <rgm@gnu.org>
4963
4964 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
4965 Doc fixes.
4966
6546b134
GM
49672012-02-14 Glenn Morris <rgm@gnu.org>
4968
4969 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
4970
d29b2b4c
LI
49712012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
4972
4973 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
4974 way the ports list is computed.
835bdcba
LI
4975 (smtpmail-query-smtp-server): Prompt the user for a port number if
4976 we can't connect to any of the standard ports (bug#10810).
d29b2b4c 4977
08dcdbc9
TZ
49782012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
4979
4980 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
4981
2605051a
GM
49822012-02-13 Glenn Morris <rgm@gnu.org>
4983
4984 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
4985
7ee99f32
TZ
49862012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
4987
4988 * net/gnutls.el (gnutls-trustfiles): New variable.
4989 (gnutls-negotiate): Use it.
4990
5f0af64f
LI
49912012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
4992
4993 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
4994 does its stuff if Gnus is running.
4995
c14fcc95
AM
49962012-02-13 Alan Mackenzie <acm@muc.de>
4997
4998 Fix a loop in c-set-fl-decl-start.
4999
7a71b18d 5000 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
c14fcc95
AM
5001 c-backward-syntactic-ws actually moves backwards.
5002
142b4d90
LL
50032012-02-13 Leo Liu <sdl.web@gmail.com>
5004
5005 * net/rcirc.el (rcirc-markup-attributes): Move point to the
5006 beginning so that all \C-o chars are removed.
5007
fa9958a6
TZ
50082012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
5009
dc9924b8 5010 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
fa9958a6 5011
0bc5886a
AM
50122012-02-12 Alan Mackenzie <acm@muc.de>
5013
5014 Fix infinite loop with long macros.
4d6769e1 5015 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
0bc5886a 5016
d4bd55e7
CY
50172012-02-12 Chong Yidong <cyd@gnu.org>
5018
5019 * window.el (display-buffer): Doc fix (Bug#10785).
5020
66f3fe22
GM
50212012-02-12 Glenn Morris <rgm@gnu.org>
5022
bd7da63e
GM
5023 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
5024 (x-disown-selection-internal, x-get-selection-internal):
5025 Sync docs with the xselect.c versions.
5026
66f3fe22
GM
5027 * allout-widgets.el: Add missing license notice.
5028
3e0d2fa7
GM
50292012-02-11 Glenn Morris <rgm@gnu.org>
5030
cfecdf09
GM
5031 * select.el (x-get-selection-internal, x-own-selection-internal)
5032 (x-disown-selection-internal):
5033 * x-dnd.el (x-get-selection-internal): Update declarations.
5034
6d216d7f
GM
5035 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
5036
2bed3f04
GM
5037 * window.el (window-sides-slots):
5038 * tool-bar.el (tool-bar-position):
5039 * term/xterm.el (xterm-extra-capabilities):
5040 * ses.el (ses-self-reference-early-detection):
5041 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
5042 (verilog-auto-wire-type)
5043 (verilog-auto-delete-trailing-whitespace)
5044 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
5045 (verilog-auto-tieoff-declaration):
5046 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
5047 (sql-oracle-statement-starters, sql-oracle-scan-on):
5048 * progmodes/prolog.el (prolog-align-comments-flag)
5049 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
5050 (prolog-left-indent-regexp, prolog-paren-indent-p)
5051 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
5052 (prolog-types, prolog-mode-specificators)
5053 (prolog-determinism-specificators, prolog-directives)
5054 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
5055 (prolog-electric-dot-flag)
5056 (prolog-electric-dot-full-predicate-template)
5057 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
5058 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
5059 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
5060 (prolog-program-switches, prolog-prompt-regexp)
5061 (prolog-debug-on-string, prolog-debug-off-string)
5062 (prolog-trace-on-string, prolog-trace-off-string)
5063 (prolog-zip-on-string, prolog-zip-off-string)
5064 (prolog-use-standard-consult-compile-method-flag)
5065 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
5066 (prolog-imenu-max-lines, prolog-info-predicate-index)
5067 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
5068 (prolog-char-quote-workaround):
5069 * progmodes/cc-vars.el (c-defun-tactic):
5070 * net/tramp.el (tramp-encoding-command-interactive)
5071 (tramp-local-end-of-line):
5072 * net/soap-client.el (soap-client):
5073 * net/netrc.el (netrc-file):
5074 * net/gnutls.el (gnutls):
5075 * minibuffer.el (completion-category-overrides)
5076 (completion-cycle-threshold)
5077 (completion-pcm-complete-word-inserts-delimiters):
5078 * man.el (Man-name-local-regexp):
5079 * mail/feedmail.el (feedmail-display-full-frame):
5080 * international/characters.el (glyphless-char-display-control):
5081 * eshell/em-ls.el (eshell-ls-date-format):
5082 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
5083 (lisp-lambda-list-keyword-parameter-indentation)
5084 (lisp-lambda-list-keyword-parameter-alignment):
5085 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
5086 * dired-x.el (dired-omit-verbose):
5087 * cus-theme.el (custom-theme-allow-multiple-selections):
5088 * calc/calc.el (calc-highlight-selections-with-faces)
5089 (calc-lu-field-reference, calc-lu-power-reference)
5090 (calc-note-threshold):
5091 * battery.el (battery-mode-line-limit):
5092 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
5093 (archive-7z-update):
5094 * allout.el (allout-prefixed-keybindings)
5095 (allout-unprefixed-keybindings)
5096 (allout-inhibit-auto-fill-on-headline)
5097 (allout-flattened-numbering-abbreviation):
5098 * allout-widgets.el (allout-widgets-auto-activation)
5099 (allout-widgets-icons-dark-subdir)
5100 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
5101 (allout-widgets-theme-dark-background)
5102 (allout-widgets-theme-light-background)
5103 (allout-widgets-item-image-properties-emacs)
5104 (allout-widgets-item-image-properties-xemacs)
5105 (allout-widgets-run-unit-tests-on-load)
5106 (allout-widgets-time-decoration-activity)
5107 (allout-widgets-hook-error-post-time)
5108 (allout-widgets-track-decoration):
5109 Add missing :version tags to new defcustoms and defgroups.
5110
5fec1b8e
GM
5111 * progmodes/sql.el (sql-ansi-statement-starters)
5112 (sql-oracle-statement-starters): Add custom type.
5113
3e0d2fa7
GM
5114 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
5115 (prolog-system-version): Give it a type.
5116
90b671e2
EZ
51172012-02-11 Eli Zaretskii <eliz@gnu.org>
5118
5119 * term/pc-win.el (x-select-text, x-selection-owner-p)
5120 (x-own-selection-internal, x-disown-selection-internal)
5121 (x-get-selection-internal): Sync doc strings and argument lists
5122 with xselect.c, common-win.el and x-win.el. (Bug#10783)
5123
5eac0c02
LL
51242012-02-11 Leo Liu <sdl.web@gmail.com>
5125
5126 * progmodes/python.el (python-end-of-statement): Fix infinite
5127 loop. (Bug#10788)
5128
f82cb659
GM
51292012-02-10 Glenn Morris <rgm@gnu.org>
5130
5131 * international/mule-cmds.el (unify-8859-on-encoding-mode)
5132 (unify-8859-on-decoding-mode): Properly mark as obsolete.
5133
cc26d239
LI
51342012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
5135
5136 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
5137 about SMTP before checking the From header.
5138
91027d08 5139 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
cc26d239
LI
5140 into own function for reuse by emacsbug.el.
5141
1be3ca5a
LL
51422012-02-10 Leo Liu <sdl.web@gmail.com>
5143
5144 * subr.el (condition-case-unless-debug): Rename from
5145 condition-case-no-debug. All callers changed.
5146 (with-demoted-errors): Fix caller.
5147
5148 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
5149 * nxml/rng-valid.el (rng-do-some-validation):
5150 * emacs-lisp/package.el (package-refresh-contents)
5151 (package-menu-execute):
5152 * desktop.el (desktop-create-buffer):
91027d08 5153 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
1be3ca5a 5154
b011fbfe
GM
51552012-02-10 Glenn Morris <rgm@gnu.org>
5156
b2096d72
GM
5157 * textmodes/bibtex.el:
5158 Add missing :version tags for new/changed defcustoms.
5159
b011fbfe
GM
5160 * files.el (remote-file-name-inhibit-cache): Doc fixes.
5161
4c7e65bf
LI
51622012-02-09 Lars Ingebrigtsen <larsi@rusty>
5163
5164 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
5165 (smtpmail-via-smtp): Use it, or fall back on the From address.
5166 (smtpmail-send-it): Ditto.
5167
f3934f6f
SM
51682012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
5169
5170 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
5171 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
5172 (byte-compile-tmp-var): New const.
5173 (byte-compile-defvar): Use it to minimize .elc size.
5174 Just use `defvar' rather than simulate it (bug#10761).
5175
a075a2c5
GM
51762012-02-09 Glenn Morris <rgm@gnu.org>
5177
cf3aa21b
GM
5178 * files.el (rename-uniquely): Doc fix. (Bug#3806)
5179
354998cd
GM
5180 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
5181 Add :version tags.
5182
dc9924b8
SM
5183 * progmodes/compile.el (compilation-error-screen-columns)
5184 (compilation-first-column, compilation-filter-start): Doc fixes.
83274125 5185
dab3703d
GM
5186 * vc/log-view.el (log-view-toggle-entry-display):
5187 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
5188
3f88cd72
GM
5189 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
5190 (report-emacs-bug-can-use-xdg-email):
5191 (report-emacs-bug-insert-to-mailer): Doc fixes.
5192 (report-emacs-bug): Message fix.
5193
d95b247d
GM
5194 * net/browse-url.el (browse-url-can-use-xdg-open)
5195 (browse-url-xdg-open): Doc fixes.
5196
a075a2c5
GM
5197 * electric.el (electric-indent-mode, electric-pair-mode)
5198 (electric-layout-rules, electric-layout-mode): Doc fixes.
5199 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
5200
ffb6157e
MR
52012012-02-08 Martin Rudalics <rudalics@gmx.at>
5202
5203 * server.el (server-unselect-display): Don't inadvertently kill
5204 the current buffer. (Bug#10729)
5205
e1ac4066
GM
52062012-02-08 Glenn Morris <rgm@gnu.org>
5207
34e8a2da
GM
5208 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
5209 (sql-list-table): Doc fixes.
5210
b4ac6e8c
GM
5211 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
5212 Comment out (does nothing).
5213
e1ac4066
GM
5214 * completion.el (dynamic-completion-mode):
5215 * dirtrack.el (dirtrack-debug-mode):
5216 * electric.el (electric-layout-mode):
5217 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
5218 * face-remap.el (text-scale-mode, buffer-face-mode):
5219 * iimage.el (iimage-mode):
5220 * image-mode.el (image-transform-mode):
5221 * minibuffer.el (completion-in-region-mode):
5222 * scroll-lock.el (scroll-lock-mode):
5223 * simple.el (next-error-follow-minor-mode):
5224 * tar-mode.el (tar-subfile-mode):
5225 * tooltip.el (tooltip-mode):
5226 * vcursor.el (vcursor-use-vcursor-map):
5227 * wid-browse.el (widget-minor-mode):
5228 * emulation/tpu-edt.el (tpu-edt-mode):
5229 * emulation/tpu-extras.el (tpu-cursor-free-mode):
5230 * international/iso-ascii.el (iso-ascii-mode):
5231 * language/thai-util.el (thai-word-mode):
5232 * mail/supercite.el (sc-minor-mode):
5233 * net/goto-addr.el (goto-address-mode):
5234 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
5235 * progmodes/cwarn.el (cwarn-mode):
5236 * progmodes/flymake.el (flymake-mode):
5237 * progmodes/glasses.el (glasses-mode):
5238 * progmodes/hideshow.el (hs-minor-mode):
5239 * progmodes/pascal.el (pascal-outline-mode):
5240 * textmodes/enriched.el (enriched-mode):
5241 * vc/smerge-mode.el (smerge-mode):
5242 Doc fixes (minor mode argument).
5243
5e0d957f
EZ
52442012-02-07 Eli Zaretskii <eliz@gnu.org>
5245
5246 * ls-lisp.el (ls-lisp-sanitize): New function.
5247 (ls-lisp-insert-directory): Use it to fix or remove any elements
5248 in file-alist with missing attributes. (Bug#4673)
5249
98d7371e
AM
52502012-02-07 Alan Mackenzie <acm@muc.de>
5251
5252 Fix spurious recognition of c-in-knr-argdecl.
5253
5254 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
5255 putative K&R region.
5256
667ced3a
AM
52572012-02-07 Alan Mackenzie <acm@muc.de>
5258
eb864a71
LM
5259 * progmodes/cc-engine.el (c-forward-objc-directive):
5260 Prevent looping in "#pragma mark @implementation".
667ced3a 5261
5b77774d
MA
52622012-02-07 Michael Albinus <michael.albinus@gmx.de>
5263
5264 * notifications.el (notifications-on-closed-signal): Make `reason'
5265 optional. (Bug#10744)
5266
af008560
GM
52672012-02-07 Glenn Morris <rgm@gnu.org>
5268
60d47423
GM
5269 * emacs-lisp/easy-mmode.el (define-minor-mode):
5270 Doc fixes for the macro and the mode it defines.
5271
dd605cc4
GM
5272 * image.el (imagemagick-types-inhibit): Doc fix.
5273
af008560
GM
5274 * cus-start.el (imagemagick-render-type): Add it.
5275
5cc59a37
LI
52762012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
5277
4d6769e1
JB
5278 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
5279 Set the default at load time, too, so that `font-lock-fontify-buffer'
5280 can be called without setting up the entire mode first. This fixes
5281 a bug in `mm-inline-text' with C MIME parts.
5cc59a37 5282
9a6dd747
CY
52832012-02-06 Chong Yidong <cyd@gnu.org>
5284
2d16b285
CY
5285 * simple.el (list-processes--refresh): Delete exited processes
5286 (Bug#8094).
5287
171e9b6e
CY
5288 * comint.el (comint-next-prompt): next-single-char-property-change
5289 and prev-single-char-property-change never return nil (Bug#8657).
5290
9a6dd747
CY
5291 * custom.el (defcustom): Doc fix (Bug#9711).
5292
aa4589a7
CY
52932012-02-05 Chong Yidong <cyd@gnu.org>
5294
5c2a252f
CY
5295 * cus-edit.el (custom-variable-reset-backup): Quote the value
5296 before storing it in the customized-value property (Bug#6712).
4aab9006 5297 (custom-display): Add a customization type tag.
983b9602 5298 (custom-buffer-create-internal): Improve tooltip message.
5c2a252f 5299
aa4589a7
CY
5300 * wid-edit.el (widget-field-value-get): New optional arg to
5301 suppress trailing whitespace truncation.
5302 (character): Use it (Bug#2689).
5303
1ff980ae
AS
53042012-02-05 Andreas Schwab <schwab@linux-m68k.org>
5305
5306 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
5307 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
5308
03988c98
CY
53092012-02-05 Chong Yidong <cyd@gnu.org>
5310
eeb6cc88
CY
5311 * cus-edit.el (custom-variable-value-create): For mismatched
5312 types, show the current value (Bug#7600).
5313
03988c98
CY
5314 * custom.el (defcustom): Doc fix.
5315
f8cdeef0
GM
53162012-02-05 Glenn Morris <rgm@gnu.org>
5317
5318 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
5319
0696d255
JB
53202012-02-05 Juanma Barranquero <lekktu@gmail.com>
5321
5322 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
5323 (pp-buffer): Use `ignore-errors', `looking-at-p'.
5324 (pp-last-sexp): Use `looking-at-p'.
5325
34c99998
GM
53262012-02-04 Glenn Morris <rgm@gnu.org>
5327
8f05da42
GM
5328 * files.el (revert-buffer):
5329 Doc fix (mention revert-buffer-in-progress-p).
5330
f160676e
GM
5331 * emacs-lisp/ert-x.el (ert-simulate-command):
5332 Check deferred-action-list (which is obsolete) is bound.
5333
c7291ad9
GM
5334 * subr.el (with-wrapper-hook): Doc fixes.
5335
34c99998
GM
5336 * simple.el (filter-buffer-substring-functions)
5337 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
5338
6283a7d3
LL
53392012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
5340
5341 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
5342 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
5343
e96e3013
LL
53442012-02-04 Leo Liu <sdl.web@gmail.com>
5345
5346 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
5347
8ded50f2
GM
53482012-02-04 Glenn Morris <rgm@gnu.org>
5349
82ff1d13
GM
5350 * image.el (image-extension-data): Add obsolete alias.
5351
987a0a16
GM
5352 * isearch.el (isearch-update): Doc fix.
5353
ea32ef46
GM
5354 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
5355
8ded50f2
GM
5356 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
5357
eea14f31
GM
53582012-02-03 Glenn Morris <rgm@gnu.org>
5359
5360 * image.el (image-animated-p): Doc fix. Use image-animated-types.
5361 (image-animate-timeout): Doc fix.
5362
5363 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
5364
12f381b7
GM
53652012-02-02 Glenn Morris <rgm@gnu.org>
5366
953cebf5
GM
5367 * server.el (server-auth-dir): Doc fix.
5368 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
5369
12f381b7
GM
5370 * subr.el (run-mode-hooks): Doc fix.
5371
953a8c3b
JL
53722012-02-02 Juri Linkov <juri@jurta.org>
5373
5374 * image-mode.el (image-toggle-display-image): Remove tautological
5375 `major-mode' from the `derived-mode-p' test.
5376
c5d3843c
KH
53772012-02-02 Kenichi Handa <handa@m17n.org>
5378
9f6e692e 5379 * composite.el (compose-region): Cancel previous change.
c5d3843c 5380
159462d4 53812012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
5382
5383 * composite.el (compose-region, compose-string): Signal error for
5384 a null string component (Bug#6988).
5385
9f562668
CY
53862012-02-01 Chong Yidong <cyd@gnu.org>
5387
e2cef717
CY
5388 * view.el (view-buffer-other-window, view-buffer-other-frame):
5389 Handle special modes like view-buffer (Bug#10650).
5390 (view-buffer): Simplify.
5391
9f562668
CY
5392 * frame.el (set-frame-font): Tweak meaning of third argument.
5393
9f6e692e
JB
5394 * dynamic-setting.el (font-setting-change-default-font):
5395 Use set-frame-font (Bug#9982).
9f562668 5396
781acb9f
GM
53972012-02-01 Glenn Morris <rgm@gnu.org>
5398
6035be52
GM
5399 * progmodes/compile.el (compilation-internal-error-properties):
5400 Respect compilation-first-column in the "*compilation*" buffer.
5401
781acb9f
GM
5402 * emacs-lisp/easy-mmode.el (define-minor-mode):
5403 Relax :variable's test for a named function.
5404
abbceb00
AM
54052012-01-31 Alan Mackenzie <acm@muc.de>
5406
5407 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
5408 off by one error.
5409
fce3fdeb
CY
54102012-01-31 Chong Yidong <cyd@gnu.org>
5411
5412 * frame.el (set-frame-font): New arg ALL-FRAMES.
5413
5414 * menu-bar.el (menu-set-font): Use set-frame-font.
5415
5416 * faces.el (face-spec-reset-face): Don't apply unspecified
5417 attribute values to the default face.
5418
47893581
JB
54192012-01-31 Juanma Barranquero <lekktu@gmail.com>
5420
5421 * progmodes/cwarn.el (cwarn): Remove dead link.
5422 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
5423 Remove * from defcustom docstrings.
5424 (turn-on-cwarn-mode): Make obsolete.
5425 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
5426 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
5427
e58e988a
GM
54282012-01-31 Glenn Morris <rgm@gnu.org>
5429
60dc2671 5430 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6c9b47ae 5431 Fix :variable handling of mode a symbol not equal to modefun.
60dc2671 5432 Allow named functions to be used as the cdr of :variable.
e58e988a 5433
7a3f511d
GM
54342012-01-30 Glenn Morris <rgm@gnu.org>
5435
5436 * emacs-lisp/authors.el (authors-fixed-entries):
5437 Remove reference to deleted file rnewspost.el.
5438
cb882333
JB
54392012-01-29 Juanma Barranquero <lekktu@gmail.com>
5440
5441 * window.el (window-with-parameter): Remove unused variable `windows'.
5442 (window--side-check): Remove unused variable `code'.
5443 (window--resize-siblings): Remove unused variable `first'.
5444 (adjust-window-trailing-edge): Remove unused variable `failed'.
5445 (window-deletable-p, window--delete): Remove unused variable `buffer'.
5446 Use `let', not `let*'.
5447 (balance-windows-2): Remove unused variable `found'.
5448 (window--state-put-2): Remove unused variable `splits'.
5449 (window-state-put): Remove unused variable `selected'.
5450 (same-window-p): Use `string-match-p'.
5451 (display-buffer-assq-regexp): Remove unused variable `value'.
5452 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
5453 Mark argument ALIST as ignored.
5454 (pop-to-buffer): Remove unused variable `old-window'.
5455
907201af
EZ
54562012-01-29 Eli Zaretskii <eliz@gnu.org>
5457
5458 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
5459 and .lzma compressed files.
5460
ea162670
CY
54612012-01-29 Chong Yidong <cyd@gnu.org>
5462
5b95ee8a
CY
5463 * frame.el (window-system-default-frame-alist): Doc fix.
5464
ea162670
CY
5465 * dynamic-setting.el (font-setting-change-default-font): Don't
5466 change the default face if SET-FONT argument is non-nil (Bug#9982).
5467
d6e6f4b1
SB
54682012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
5469
5470 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
5471
0f29fa41 54722012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6b25e4e2
SE
5473
5474 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
5475 breakpoints in files outside current directory (Bug#6098).
5476
db174434
CY
54772012-01-29 Chong Yidong <cyd@gnu.org>
5478
6b25e4e2
SE
5479 * progmodes/python.el: Require ansi-color at top-level.
5480
6df6ae42
JB
5481 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
5482 Define and use in Emacs Lisp mode (Bug#9360).
db174434
CY
5483 (lisp-mode-abbrev-table): Add doc.
5484 (lisp-mode-variables): Don't set local-abbrev-table.
5485 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
5486
e70ee681
RW
54872012-01-28 Roland Winkler <winkler@gnu.org>
5488
5489 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
5490
ace88aa2
RW
54912012-01-28 Roland Winkler <winkler@gnu.org>
5492
5493 * textmodes/bibtex.el (bibtex-entry-alist): New function.
5494 (bibtex-set-dialect): Use it. Either set global values of
5495 dialect-dependent variables or bind these variables buffer-locally
5496 (Bug#10254).
5497 (bibtex-mode): Call bibtex-set-dialect via
5498 hack-local-variables-hook.
eb864a71
LM
5499 (bibtex-dialect): Update docstring.
5500 Add safe-local-variable predicate.
ace88aa2
RW
5501 (bibtex-entry-alist, bibtex-field-alist): Initialize via
5502 bibtex-set-dialect.
5503 (bibtex-mode-map): Define menu for each dialect.
5504 (bibtex-entry): Fix docstring.
5505
93376c5b
CY
55062012-01-28 Chong Yidong <cyd@gnu.org>
5507
5508 * eshell/esh-arg.el (eshell-quote-argument): New function.
5509
5510 * eshell/esh-ext.el (eshell-invoke-batch-file):
5511 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
5512 first arg to eshell-parse-command (Bug#10523).
5513
4372494f
DA
55142012-01-28 Drew Adams <drew.adams@oracle.com>
5515
5516 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
5517 `default-directory' is non-nil.
5518
4d4ec1f8
EZ
55192012-01-28 Eli Zaretskii <eliz@gnu.org>
5520
5521 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
5522 line that displays system-configuration-options. (Bug#9924)
5523
7c188927
DA
55242012-01-28 Drew Adams <drew.adams@oracle.com>
5525
5526 * descr-text.el (describe-char): Show information about POS, in
5527 addition to information about the character at POS. Improve and
5528 update the doc string. Change "code point" to "code point in
5529 charset", to avoid confusion with the character's Unicode code
5530 point shown above that. (Bug#10129)
5531
e0da685a
EZ
55322012-01-28 Eli Zaretskii <eliz@gnu.org>
5533
5534 * descr-text.el (describe-char): Show the raw character, not only
5535 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
5536 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
5537 for the reasons.
5538
70550acf
PH
55392012-01-28 Phil Hagelberg <phil@hagelb.org>
5540
eb864a71
LM
5541 * emacs-lisp/package.el (package-install):
5542 Run package-refresh-contents if there is no archive yet (Bug#9798).
70550acf 5543
0ce8e868
CY
55442012-01-28 Chong Yidong <cyd@gnu.org>
5545
cb882333
JB
5546 * emacs-lisp/package.el (package-maybe-load-descriptor):
5547 New function, split from package-maybe-load-descriptor.
0ce8e868
CY
5548 (package-maybe-load-descriptor): Use it.
5549 (package-download-transaction): Fully load required packages
5550 inside the loop, so that `require' calls work (Bug#10593).
5551 (package-install): No need to call package-initialize now.
5552
2e7f3bea
CY
55532012-01-28 Chong Yidong <cyd@gnu.org>
5554
6e9bad14
CY
5555 * simple.el (deactivate-mark): Doc fix (Bug#8614).
5556
f823b8ca
CY
5557 * tooltip.el (tooltip-mode): Doc fix.
5558 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
5559
2680c309
CY
5560 * frame.el (set-cursor-color): Doc fix (Bug#352).
5561
d7a9e63b
CY
5562 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
5563 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
5564
2e7f3bea
CY
5565 * cus-edit.el (custom-buffer-create-internal): Fix search button
5566 action (Bug#10542).
2ae01800 5567 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
2e7f3bea 5568
fc4f7a23
EW
55692012-01-27 Eduard Wiebe <usenet@pusto.de>
5570
5571 * dired.el (dired-mark-files-regexp):
5572 Include any subdirectory components. (Bug#10445)
5573
7dd37071
ML
55742012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
5575
5576 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
5577 Handle [host]:port syntax. (Bug#10533)
5578
a268160b
AH
55792012-01-27 Alex Harsanyi <harsanyi@mac.com>
5580
5581 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
5582
e43273ef
GM
55832012-01-26 Glenn Morris <rgm@gnu.org>
5584
5585 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
5586 * term.el (term-raw-escape-map): Use Control-X-prefix.
5587 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
5588
1edf595d
MR
55892012-01-25 Martin Rudalics <rudalics@gmx.at>
5590
5591 * window.el (window-state-get, window--state-get-1): Don't deal
5592 with fixed-sizeness of windows. Simplify code.
5593
fa8eafef
JC
55942012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
5595
6df6ae42
JB
5596 * window.el (window--state-get-1, window--state-put-2):
5597 Don't save and restore the mark.
fa8eafef 5598
0b21c100
CY
55992012-01-25 Chong Yidong <cyd@gnu.org>
5600
5601 * custom.el (custom-variable-p): Doc fix.
5602
5ae1a6c8
GM
56032012-01-25 Glenn Morris <rgm@gnu.org>
5604
40047858
GM
5605 * dired.el (dired-goto-file): Handle some of the more common
5606 characters that `ls -b' escapes. (Bug#10596)
5607
5ddce96c
GM
5608 * progmodes/compile.el (compilation-next-error-function):
5609 Respect compilation-first-column in the "*compilation*" buffer.
5610 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
5611
5ae1a6c8
GM
5612 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
5613
b559f1a9
GM
56142012-01-24 Glenn Morris <rgm@gnu.org>
5615
5616 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
5617
6725d21a
JD
56182012-01-24 Julien Danjou <julien@danjou.info>
5619
5620 * color.el (color-rgb-to-hsl): Fix value computing.
5621 (color-hue-to-rgb): New function.
5622 (color-hsl-to-rgb): New function.
5623 (color-clamp, color-saturate-hsl, color-saturate-name)
5624 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5625 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
5626
70df4bbe
GM
56272012-01-24 Glenn Morris <rgm@gnu.org>
5628
5629 * vc/vc-rcs.el (vc-rcs-create-tag):
5630 * vc/vc-sccs.el (vc-sccs-create-tag):
5631 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
5632
802a2ae2
ML
56332012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
5634
5635 * eshell/esh-util.el (eshell-read-hosts-file):
5636 Skip comment lines. (Bug#10549)
5637
d7128bb1
ML
5638 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
5639
d1a5c3b4
JB
56402012-01-23 Juanma Barranquero <lekktu@gmail.com>
5641
2724d9c7
JB
5642 * subr.el (display-delayed-warnings): Doc fix.
5643 (collapse-delayed-warnings): New function to collapse identical
5644 adjacent warnings.
5645 (delayed-warnings-hook): Add it.
d1a5c3b4 5646
a5509865
MA
56472012-01-22 Michael Albinus <michael.albinus@gmx.de>
5648
5649 * net/tramp.el (tramp-action-login): Set connection property "login-as".
5650
a5509865
MA
5651 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
5652 (tramp-default-user-alist): Don't add "pscp".
5653 (tramp-do-copy-or-rename-file-out-of-band): Use connection
5654 property "login-as", if set. (Bug#10530)
5655
cc6d5805
MA
56562012-01-21 Michael Albinus <michael.albinus@gmx.de>
5657
5658 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
5659 "plink1" and "psftp". (Bug#10530)
5660
56612012-01-21 Kenichi Handa <handa@m17n.org>
71784361
KH
5662
5663 * international/mule-cmds.el (prefer-coding-system): Show a
5664 warning message if the default value of file-name-coding-system
5665 was not changed.
5666
f0960428
JC
56672012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
5668
cb882333
JB
5669 * windmove.el (windmove-reference-loc):
5670 Fix windmove-reference-loc miscalculation.
f0960428 5671
dd6f2a63
JB
56722012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
5673
5674 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
5675 default unit.
5676
7b447e9b
GM
56772012-01-21 Glenn Morris <rgm@gnu.org>
5678
117a9ea1
GM
5679 * international/mule.el (auto-coding-alist): Add .tbz.
5680
7b447e9b
GM
5681 * files.el (local-enable-local-variables): Doc fix.
5682 (inhibit-local-variables-regexps): Rename from
5683 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
5684 Doc fix. Add some extensions from auto-coding-alist.
5685 (inhibit-local-variables-suffixes):
5686 Rename from inhibit-first-line-modes-suffixes. Doc fix.
5687 (inhibit-local-variables-p):
5688 New function, extracted from set-auto-mode-1.
5689 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
5690 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
5691 (hack-local-variables): Doc fix. Make the mode-only case
5692 respect enable-local-variables and friends.
5693 Respect inhibit-local-variables-regexps for file-locals, but
5694 not for directory-locals.
5695 (set-visited-file-name):
5696 Take account of inhibit-local-variables-regexps.
5697 Whether it applies may change as the file name is changed.
5698 * jka-cmpr-hook.el (jka-compr-install):
5699 * jka-compr.el (jka-compr-uninstall):
5700 Update for inhibit-first-line-modes-suffixes name change.
5701
dd6e3cdd
MR
57022012-01-20 Martin Rudalics <rudalics@gmx.at>
5703
5704 * help-macro.el (make-help-screen): Temporarily restore original
5705 binding for minor-mode-map-alist (Bug#10454).
5706
0d0deb38
JD
57072012-01-19 Julien Danjou <julien@danjou.info>
5708
5709 * color.el (color-name-to-rgb): Use the white color to find the max
5710 color component value and return correctly computed values.
5711 (color-name-to-rgb): Add missing float conversion for max value.
5712
34a02f46
MR
57132012-01-19 Martin Rudalics <rudalics@gmx.at>
5714
5715 * window.el (window--state-get-1, window-state-get): Do not use
eb864a71
LM
5716 special state value for window-persistent-parameters.
5717 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
34a02f46
MR
5718 (window--state-put-2): Reset all window parameters to nil before
5719 assigning values of persistent parameters.
5720
606c44c4
AM
57212012-01-18 Alan Mackenzie <acm@muc.de>
5722
5723 Eliminate sluggishness and hangs in fontification of "semicolon
5724 deserts".
5725
cb882333
JB
5726 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
5727 Change value 10000 -> 3000.
606c44c4
AM
5728 (c-state-safe-place): Reformulate so it doesn't stack up an
5729 infinite number of wrong entries in c-state-nonlit-pos-cache.
5730 (c-determine-limit-get-base, c-determine-limit): New functions to
5731 determine backward search limits disregarding literals.
5732 (c-find-decl-spots): Amend commenting.
5733 (c-cheap-inside-bracelist-p): New function which detects "={".
5734
5735 * progmodes/cc-fonts.el
5736 (c-make-font-lock-BO-decl-search-function): Give a limit to a
5737 backward search.
5738 (c-font-lock-declarations): Fix an occurrence of point being
5739 undefined. Check additionally for point being in a bracelist or
5740 near a macro invocation without a semicolon so as to avoid a
5741 fruitless time consuming search for a declarator. Give a more
5742 precise search limit for declarators using the new
5743 c-determine-limit.
5744
f3860cea
GM
57452012-01-18 Glenn Morris <rgm@gnu.org>
5746
5747 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
5748 (set-auto-mode): Doc fixes.
5749
1db03b16
GM
57502012-01-17 Glenn Morris <rgm@gnu.org>
5751
0e6038be
GM
5752 * isearch.el (search-nonincremental-instead): Fix doc typo.
5753
1db03b16
GM
5754 * dired.el (dired-insert-directory): Handle newlines in directory name.
5755 (dired-build-subdir-alist): Unescape newlines in directory name.
5756
4cb0aa75
MA
57572012-01-17 Michael Albinus <michael.albinus@gmx.de>
5758
5759 * net/tramp.el (tramp-local-end-of-line): New defcustom.
5760 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
5761 (tramp-action-terminal): Use it. (Bug#10530)
5762
1d00653d
SM
57632012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
5764
5765 * minibuffer.el (completion--replace): Strip properties (bug#10062).
5766
6a6ee00d
MR
57672012-01-16 Martin Rudalics <rudalics@gmx.at>
5768
5769 * window.el (window-state-ignored-parameters): Remove variable.
5770 (window--state-get-1): Rename argument MARKERS to IGNORE.
5771 Handle persistent window parameters. Make copy of clone-of
5772 parameter only if requested. (Bug#10348)
5773 (window--state-put-2): Install a window parameter only if it has
5774 a non-nil value or an existing parameter shall be overwritten.
5775
97912def
MA
57762012-01-15 Michael Albinus <michael.albinus@gmx.de>
5777
5778 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
5779
688070a5
EZ
57802012-01-14 Eli Zaretskii <eliz@gnu.org>
5781
5782 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
5783 don't pass the (nil) value of `upnode' to string-match.
5784
301afadc
CY
57852012-01-14 Chong Yidong <cyd@gnu.org>
5786
5787 * startup.el (command-line): Fix X resource class for cursorColor.
04877ddb 5788 Fix values recognized by the cursorBlink resource.
301afadc 5789
9e5788aa
PE
57902012-01-14 Paul Eggert <eggert@cs.ucla.edu>
5791
5792 * epg.el (epg--make-temp-file): Avoid permission race condition
5793 when running on old Emacs versions (bug#10403).
5794
3cdb7f5a
GM
57952012-01-14 Glenn Morris <rgm@gnu.org>
5796
5797 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
5798
8c82b1b4
AM
57992012-01-13 Alan Mackenzie <acm@muc.de>
5800
5801 Fix filling for when filladapt mode is enabled.
5802
5803 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
5804 c-mask-paragraph, pass in `fill-paragraph' rather than
5805 `fill-region-as-paragraph'. (This is a reversion of a previous
5806 change.)
eb864a71
LM
5807 * progmodes/cc-mode.el (c-basic-common-init):
5808 Make fill-paragraph-handle-comment buffer local and set it to nil.
8c82b1b4 5809
e517eda4
GM
58102012-01-13 Glenn Morris <rgm@gnu.org>
5811
1498536e
GM
5812 * dired.el (dired-switches-escape-p): New function.
5813 (dired-insert-directory): Use dired-switches-escape-p.
5814 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
5815
e517eda4
GM
5816 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
5817
328f984d
GM
58182012-01-12 Glenn Morris <rgm@gnu.org>
5819
5820 * mail/sendmail.el (mail-mode): Update paragraph-separate for
5821 changes in adaptive-fill-regexp. (Bug#10276)
5822
2cc769a8
AM
58232012-01-11 Alan Mackenzie <acm@muc.de>
5824
5825 Fix Emacs bug #10463 - put `widen's around the critical spots.
5826
1d00653d 5827 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
2cc769a8
AM
5828 widen around each invocation of c-state-pp-to-literal. Remove an
5829 unused let variable.
5830
e52c37fa
GM
58312012-01-11 Glenn Morris <rgm@gnu.org>
5832
5833 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
09044622 5834 Doc fix.
e52c37fa 5835
96f8741e
CY
58362012-01-10 Chong Yidong <cyd@gnu.org>
5837
1d00653d
SM
5838 * net/network-stream.el (network-stream-open-starttls):
5839 Avoid emitting a confusing error message when the server gives a bad
96f8741e
CY
5840 response to the capability command.
5841
b09a806e
GM
58422012-01-10 Glenn Morris <rgm@gnu.org>
5843
5844 * mail/unrmail.el (unrmail): Tweak previous change.
5845
7655cb66
CY
58462012-01-09 Chong Yidong <cyd@gnu.org>
5847
5848 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
5849
9d5a8f0b
AM
58502012-01-08 Alan Mackenzie <acm@muc.de>
5851
5852 Optimise font locking in long enum definitions.
5853
5854 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
5855 arm to a cond form to handle enums.
5856 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
5857 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
5858
9a0115ab 58592012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6bb72cbd
PE
5860
5861 * files.el (move-file-to-trash): Preserve default file modes on error.
a0562b3d 5862 (Bug#10401)
6bb72cbd 5863
f186bb95
LMI
58642012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
5865
29232a68
LMI
5866 * faces.el (set-face-attribute): Clarify the meaning of the nil
5867 frame (bug#10294).
5868
4e5d086d
LMI
5869 * subr.el (with-selected-frame): Mention that the selected frame
5870 is restored (bug#9980).
5871
8e66aebe
LMI
5872 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
5873 (bug#9759).
5874
cd394be1 5875 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
f186bb95
LMI
5876 (password-read): Don't autoload unused function.
5877
adf4e762
JB
58782012-01-07 Juanma Barranquero <lekktu@gmail.com>
5879
5880 * progmodes/which-func.el (which-func-mode): Turn into a
5881 non-interactive function and mark as obsolete (bug#10428).
5882
89bd9ccd
CY
58832012-01-06 Chong Yidong <cyd@gnu.org>
5884
5885 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
5886 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
5887 functions, along with 1 and -1.
5888
4afee9d5
EZ
58892012-01-06 Eli Zaretskii <eliz@gnu.org>
5890
5891 * time.el (display-time-load-average)
5892 (display-time-default-load-average): Doc fixes. See the thread
5893 starting at
5894 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
5895 for the details.
5896
536aea70
GM
58972012-01-06 Glenn Morris <rgm@gnu.org>
5898
665ae865
GM
5899 * mail/unrmail.el (unrmail): Give an explicit error if the input file
5900 has no messages. (Bug#10377)
5901
c869783d
GM
5902 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
5903 than Info-edit. (Bug#10385)
5904
2bb4227e
GM
5905 * time.el (display-time-load-average, display-time-next-load-average):
5906 Doc fixes.
5907
7d5944b9
GM
5908 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
5909 local setting of buffer-read-only to the input buffer. (Bug#10419)
5910
536aea70
GM
5911 * calendar/calendar.el (calendar-mode):
5912 Locally set scroll-margin to 0. (Bug#10379)
5913
7dccca16
UM
59142012-01-06 Ulrich Mueller <ulm@gentoo.org>
5915
5916 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
5917
afbb7930
GM
59182012-01-05 Glenn Morris <rgm@gnu.org>
5919
5920 * eshell/em-unix.el (diff-no-select): Autoload it.
5921 (eshell/diff): Use diff-no-select. (Bug#10420)
5922
04482335
CY
59232012-01-05 Chong Yidong <cyd@gnu.org>
5924
7baca3bc
CY
5925 * shell.el (shell-dynamic-complete-functions): Revert last change.
5926 (shell-command-completion-function): New function.
5927 (shell-completion-vars): Use it to implement
5928 shell-completion-execonly (Bug#10417).
5929
04482335
CY
5930 * custom.el (enable-theme): Don't set custom-safe-themes.
5931
1d00653d
SM
5932 * cus-theme.el (custom-theme-merge-theme):
5933 Ignore custom-enabled-themes and custom-safe-themes.
04482335 5934
bb5aa5d6
MM
59352012-01-05 Michael R. Mauger <mmaug@yahoo.com>
5936
5937 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
5938 first prompt in `sql-interacive-mode'.
5939 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
04482335 5940 keywords.
6df6ae42 5941 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
bb5aa5d6
MM
5942 (sql-product-interactive): Bug fix: Set `sql-buffer' in
5943 context of original buffer. Invoke `sql-login-hook'.
5944
a7183d7c
EZ
59452012-01-04 Eli Zaretskii <eliz@gnu.org>
5946
5947 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
5948 letters in cite-prefix.
5949
a1eacd1e
LMI
59502012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5951
5952 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
5953
787cdb34
CY
59542012-01-03 Chong Yidong <cyd@gnu.org>
5955
1d00653d
SM
5956 * shell.el (shell-dynamic-complete-functions):
5957 Put pcomplete-completions-at-point, so as to try
787cdb34
CY
5958 comint-filename-completion first (Bug#10417).
5959
30710442
RS
59602012-01-02 Richard Stallman <rms@gnu.org>
5961
5962 * battery.el (battery-status-function):
5963 Detect when to use battery-yeeloong-sysfs.
5964 (battery-echo-area-format): Add string for Yeeloong.
5965 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
5966 (battery-yeeloong-sysfs): New function.
5967
f75bfc33
CY
59682012-01-02 Chong Yidong <cyd@gnu.org>
5969
5970 * dirtrack.el (dirtrack-list): Eliminate unused third element.
5971 (dirtrack): Merge code for handling relative filenames in prompt
5972 from shell-dir-cookie-watcher.
5973 (dirtrack-debug-message): New arg to avoid excess format calls.
5974
5975 * shell.el (shell-dir-cookie-re): Variable deleted.
5976 (shell-dir-cookie-watcher): Function deleted.
5977 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
5978 with dirtrack-mode.
5979
651e947e
EZ
59802012-01-01 Eli Zaretskii <eliz@gnu.org>
5981
1d00653d
SM
5982 * term/w32-win.el (dynamic-library-alist) <gnutls>:
5983 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
651e947e
EZ
5984 libgnutls-26.dll.
5985
94d4c7dc
AS
59862011-12-31 Andreas Schwab <schwab@linux-m68k.org>
5987
5988 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
5989
8d43f3cd
EZ
59902011-12-31 Eli Zaretskii <eliz@gnu.org>
5991
5992 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
5993 headers of non-MIME messages, when rmail-enable-mime is non-nil.
5994
98c8795a
MA
59952011-12-29 Michael Albinus <michael.albinus@gmx.de>
5996
5997 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
5998 also for alternative shells.
5999 (tramp-open-connection-setup-interactive-shell): Check, whether
6000 the shell is a busybox.
6001 (tramp-send-command): Don't suppress multiple prompts for
6002 busyboxes, it hurts.
6003
51281b32
CY
60042011-12-28 Chong Yidong <cyd@gnu.org>
6005
6006 * progmodes/gdb-mi.el (gdb-get-source-file-list)
6007 (gdb-get-source-file): Move mode line update to
6008 gdb-get-source-file (Bug#10087).
6009
2170cb53
CY
60102011-12-25 Chong Yidong <cyd@gnu.org>
6011
6012 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
6013 gud-gdb-marker-filter without taking it as an argument.
6014 (gud-gdb-run-command-fetch-lines): Caller changed.
6015 (gud-gdb-completion-function): New variable.
6016 (gud-gdb-completion-at-point): Use it.
6017 (gud-gdb-completions-1): Split from gud-gdb-completions.
6018
6019 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
6020 function as separate arguments.
6021 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
6022 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
6023 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
6024 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
6025 (gdb-stopped, def-gdb-auto-update-trigger)
6026 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
b81d40f0
JB
6027 (gdb-get-changed-registers, gdb-get-main-selected-frame):
6028 Callers changed.
2170cb53
CY
6029 (gud-gdbmi-completions): New function.
6030 (gdb): Use it for generating the completion table.
6031
be8b11bb
AM
60322011-12-24 Alan Mackenzie <acm@muc.de>
6033
6034 Introduce a mechanism to widen the region used in context font
1d00653d 6035 locking. Use this to protect declarations from losing their contexts.
be8b11bb 6036
1d00653d
SM
6037 * progmodes/cc-langs.el (c-before-font-lock-functions):
6038 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
b81d40f0 6039 (c-before-context-fontification-functions): New defvar, a list of
be8b11bb
AM
6040 functions to be run just before context (etc.) font locking.
6041
6042 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
b81d40f0 6043 New, functionality extracted from
be8b11bb 6044 c-neutralize-syntax-in-and-mark-CPP.
b81d40f0 6045 (c-in-after-change-fontification): New variable.
be8b11bb
AM
6046 (c-after-change): Set c-in-after-change-fontification.
6047 (c-set-fl-decl-start): Rejig its interface, so it can be called
6048 from both after-change and context fontifying.
b81d40f0
JB
6049 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
6050 New functions.
6051 (c-standard-font-lock-fontify-region-function): New variable.
6052 (c-font-lock-fontify-region): New function.
be8b11bb 6053
341cf6ac
JL
60542011-12-24 Juri Linkov <juri@jurta.org>
6055
6056 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
6057 (Bug#10348)
6058
bffcee0a
MA
60592011-12-23 Michael Albinus <michael.albinus@gmx.de>
6060
6061 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
6062 existence of source file. (Bug#10325)
6063
cb5e207c
AM
60642011-12-23 Alan Mackenzie <acm@muc.de>
6065
6066 Fix unstable fontification inside templates.
6067
b81d40f0
JB
6068 * progmodes/cc-langs.el (c-before-font-lock-functions):
6069 Newly created from the singular version. The (c c++ objc) entry now
cb5e207c
AM
6070 additionally has c-set-fl-decl-start. The other languages (apart
6071 from AWK) have that as a single entry.
6072
b81d40f0
JB
6073 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
6074 The functionality for "local" declarations has been extracted to
cb5e207c
AM
6075 c-set-fl-decl-start.
6076
b81d40f0
JB
6077 * progmodes/cc-mode.el (c-common-init, c-after-change):
6078 Changes due to pluralisation of c-before-font-lock-functions.
cb5e207c
AM
6079 (c-set-fl-decl-start): New function, extracted from
6080 c-font-lock-enclosing-decls and enhanced.
6081
60ff536c
JB
60822011-12-23 Juanma Barranquero <lekktu@gmail.com>
6083
6084 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
6085
1c4757d6
JL
60862011-12-22 Juri Linkov <juri@jurta.org>
6087
6088 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
6089
d031f2c7
CY
60902011-12-22 Chong Yidong <cyd@gnu.org>
6091
6092 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
6093
bace743a
DA
60942011-12-21 Drew Adams <drew.adams@oracle.com>
6095
6096 * files.el (file-remote-p): Fix docstring. (Bug#10319)
6097
728a1f2b
JC
60982011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
6099
6100 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
6101
0d373f73
TZ
61022011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
6103
fec0aaa4
TZ
6104 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
6105 highlighting and support. Fix up comments for capitalization.
6106 (cfengine-mode-debug): New var.
6107 (cfengine3-mode): Change the modeline indicator to "CFE3".
6108 (cfengine3-font-lock-keywords): Improve defun highlighting.
6109 (cfengine2-actions): Rename from `cfengine-actions'.
6110 (cfengine2-font-lock-keywords): Rename from
6111 `cfengine-font-lock-keywords'.
6112 (cfengine2-imenu-expression): Rename from
6113 `cfengine-imenu-expression'.
6114 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
6115 (cfengine2-beginning-of-defun): Rename from
6116 `cfengine-beginning-of-defun'.
6117 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
6118 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
6119 (cfengine2-mode): Rename from `cfengine-mode'. Change the
6120 modeline indicator to "CFE2".
6121 (cfengine-mode): Defalias to `cfengine-auto-mode'.
6122 (cfengine-mode-abbrevs): Mark obsolete.
0d373f73 6123
bc86f573
CY
61242011-12-21 Chong Yidong <cyd@gnu.org>
6125
6126 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
6127 filename argument.
6128
d45ba96b
MR
61292011-12-20 Martin Rudalics <rudalics@gmx.at>
6130
6131 * window.el (window-normalize-buffer-to-display): Remove.
6132 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
6133
a6198c90
CY
61342011-12-19 Chong Yidong <cyd@gnu.org>
6135
6136 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
6137 Don't signal an error in a predicate function; return non-nil.
6138 (vc-dir-mark-file): Move the error here.
6139 (vc-dir-mark-unmark): If acting on the region, keep going if one
6140 of the entries cannot be marked/unmarked.
6141 (vc-dir-mark-all-files): If current entry is a directory, mark
6142 only child files, as documented.
6143
34c5fb55
VB
61442011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
6145
6146 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
6147 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
6148 addition.
6149
c803b2b7
JD
61502011-12-18 Jan Djärv <jan.h.d@swipnet.se>
6151
6152 * term/ns-win.el (ns-get-selection-internal)
6153 (ns-store-selection-internal): Declare.
1154d12e
JB
6154 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
6155 Declare as obsolete.
6156 (ns-get-pasteboard, ns-paste-secondary):
6157 Use ns-get-selection-internal.
6158 (ns-set-pasteboard, ns-copy-including-secondary):
6159 Use ns-store-selection-internal.
c803b2b7 6160
9cff91f8 61612011-12-17 Chong Yidong <cyd@gnu.org>
99a289d9
CY
6162
6163 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9cff91f8 6164 (vc-deduce-fileset): Doc fix.
99a289d9 6165
f16c898a
AS
61662011-12-16 Andreas Schwab <schwab@linux-m68k.org>
6167
6168 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
6169
763237c4
SS
61702011-12-13 Sam Steingold <sds@gnu.org>
6171
6172 * man.el (Man-getpage-in-background): When running under a
6173 window-system, ignore $MANWIDTH and $COLUMNS.
6174
5fc1c122
KH
61752011-12-15 Kenichi Handa <handa@m17n.org>
6176
6177 * language/ethio-util.el: Change coding tag to utf-8-emacs.
6178 (setup-ethiopic-environment-internal): Comment out key-binding for
6179 ethio-toggle-punctuation.
6180
13d49cbb
AM
61812011-12-13 Alan Mackenzie <acm@muc.de>
6182
898169a2
AM
6183 Add the switch statement to AWK Mode.
6184
7a71b18d 6185 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
898169a2
AM
6186 "default" to the keywords regexp.
6187
7a71b18d 6188 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
898169a2 6189 expression as the rest.
1d00653d
SM
6190 (c-nonlabel-token-key): Allow string literals for AWK.
6191 Refactor for the other modes.
898169a2 6192
13d49cbb 6193 Large brace-block initialisation makes CC Mode slow: Fix.
1d00653d 6194 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
13d49cbb
AM
6195 routines. Limit backward searching in c-font-lock-enclosing.decl.
6196
6197 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
6198 pp-state and literal type in addition to the limits.
1d00653d 6199 (c-state-safe-place): New defun, extracted from c-state-literal-at.
13d49cbb 6200 (c-state-literal-at): Use the above new defun.
1d00653d
SM
6201 (c-slow-in-literal, c-fast-in-literal): Remove.
6202 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
13d49cbb
AM
6203
6204 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
6205 being in a literal. Add a limit for backward searching.
6206
6207 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
6208 c-slow-in-literal.
6209
15e0efc7
SM
62102011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
6211
6212 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
6213
454592a6
MR
62142011-12-13 Martin Rudalics <rudalics@gmx.at>
6215
6216 * window.el (delete-other-windows): Use correct frame in call to
6217 window-with-parameter.
6218
87393f26
DP
62192011-12-12 Daniel Pfeiffer <occitan@t-online.de>
6220
6221 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
6222 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
6223 (makefile-gmake-statements, makefile-makepp-statements):
6224 Use it and add new makepp keywords.
6225 (makefile-makepp-font-lock-keywords): Add new patterns.
6226 (makefile-match-function-end): Match new [...] and [[...]].
6227
11636b22
JB
62282011-12-11 Juanma Barranquero <lekktu@gmail.com>
6229
6230 * ses.el (ses-call-printer-return, ses-cell-property-get)
6231 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
6232 (ses-create-cell-variable, ses-reset-header-string)
6233 (ses-cell-set-formula, ses-repair-cell-reference-all)
6234 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
6235 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
6236 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
6237 (ses-aset-with-undo, ses-load, ses-truncate-cell)
6238 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
6239 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
6240 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
6241 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
6242 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
6243 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
6244 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
6245 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
6246
cf018193
VB
62472011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
6248
6249 * ses.el: The overall change is to add cell renaming, that is
6250 setting fancy names for cell symbols other than name matching
6251 "\\`[A-Z]+[0-9]+\\'" regexp .
6252 (ses-create-cell-variable): New defun.
6253 (ses-relocate-formula): Relocate formulas only for cells the
6254 symbols of which are not renamed, i.e. symbols whose names do not
6255 match regexp "\\`[A-Z]+[0-9]+\\'".
6256 (ses-relocate-all): Relocate values only for cells the symbols of
6257 which are not renamed.
6258 (ses-load): Create cells variables as the (ses-cell ...) are read,
6259 in order to check row col consistency with cell symbol name only
6260 for cells that are not renamed.
6261 (ses-replace-name-in-formula): New defun.
6262 (ses-rename-cell): New defun.
6263
ee957461
CY
62642011-12-11 Chong Yidong <cyd@gnu.org>
6265
6266 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
6267 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
6268
9a9e9ef0
MR
62692011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
6270
6271 * window.el (other-window): Fix docstring.
6272
92a8eba5
EZ
62732011-12-10 Eli Zaretskii <eliz@gnu.org>
6274
6275 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
1d00653d
SM
6276 `from' or `to' address before taking its substring.
6277 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
92a8eba5
EZ
6278 encoded name is chopped in the middle of the encoded string, and
6279 thus displayed encoded.
6280
e152e577
JB
62812011-12-10 Juanma Barranquero <lekktu@gmail.com>
6282
6283 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
6284
e5d84bfe
EZ
62852011-12-10 Eli Zaretskii <eliz@gnu.org>
6286
6287 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
6288 to use texinfo-update-node and commands that call it if the
6289 Texinfo file uses @node lines without next/prev/up pointers.
b8830d28 6290 Correct outdated description about texinfo-master-menu.
e5d84bfe
EZ
6291 (texinfo-all-menus-update, texinfo-master-menu)
6292 (texinfo-update-node, texinfo-every-node-update)
6293 (texinfo-multiple-files-update): Doc fix. Warn against updating
6294 all the @node lines.
6295 (texinfo-master-menu): Only call texinfo-update-node if the prefix
b8830d28
EZ
6296 argument is numeric. Explain better in the doc string what the
6297 function really does.
6298 (texinfo-insert-master-menu-list): Improve the error message
6299 displayed if there's no menu in the Top node.
6300 (Bug#2975) See also this thread:
e5d84bfe
EZ
6301 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
6302
1d84e9bb
MG
63032011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
6304
6305 * speedbar.el (speedbar-supported-extension-expressions):
6306 Add .adb and .ads, commonly used for Ada source code (bug#10256).
6307
382c953b
JB
63082011-12-09 Juanma Barranquero <lekktu@gmail.com>
6309
6310 * printing.el (pr-mode-alist):
6311 * simple.el (filter-buffer-substring-functions)
6312 (completion-list-insert-choice-function):
6313 * window.el (window-with-parameter, window-atom-root)
6314 (window-sides-slots, window-size-fixed, window-min-delta)
6315 (window-max-delta, window--resize-mini-window)
6316 (window--resize-child-windows-normal, window-tree)
6317 (delete-other-windows, quit-window, split-window)
6318 (display-buffer-record-window, special-display-buffer-names)
6319 (special-display-regexps, special-display-popup-frame)
6320 (same-window-p, split-window-sensibly)
6321 (display-buffer-overriding-action, display-buffer-alist)
6322 (display-buffer-base-action, display-buffer, switch-to-buffer)
6323 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
6324 (fit-window-to-buffer, recenter-positions)
6325 (mouse-autoselect-window-state, mouse-autoselect-window-select):
6326 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
6327 and remove unneeded backslashes in docstrings.
6328
39c9faef
SM
63292011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6330
98449af8
SM
6331 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
6332
39c9faef
SM
6333 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
6334 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
6335 end in ".mk".
6336 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
6337 when reading the makefile (bug#10116).
6338
86ed9fdc
SM
63392011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6340
6341 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
6342 (bug#10116).
6343
5580f89d
GM
63442011-12-06 Glenn Morris <rgm@gnu.org>
6345
6346 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
6347
28d3917c
CY
63482011-12-06 Chong Yidong <cyd@gnu.org>
6349
6350 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
6351
a98edce9
JB
63522011-12-06 Juanma Barranquero <lekktu@gmail.com>
6353
6354 * textmodes/table.el (table-shorten-cell): Fix typo.
6355
e65adfac
CG
63562011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
6357
6358 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
6359
71cc0b74
EZ
63602011-12-05 Eli Zaretskii <eliz@gnu.org>
6361
6362 * descr-text.el (describe-char): Fix display of strong
6363 right-to-left characters and directional embeddings and overrides.
6364
6365 * simple.el (what-cursor-position): Fix display of codepoints of
6366 strong right-to-left characters.
6367
315bc30d
CY
63682011-12-05 Chong Yidong <cyd@gnu.org>
6369
6370 * faces.el (read-color): Doc fix.
6371
58a70b94
GM
63722011-12-05 Glenn Morris <rgm@gnu.org>
6373
6374 * align.el (align--set-marker): Add doc-string.
6375 Don't try to move something that is not a marker. (Bug#10216)
6376
5158face
GM
63772011-12-04 Glenn Morris <rgm@gnu.org>
6378
6379 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
6380 overly zealous deletion of trailing whitespace.
6381
520fca41
JB
63822011-12-04 Juanma Barranquero <lekktu@gmail.com>
6383
6384 * server.el (server-delete-client): On Windows, do not try to delete
6385 the only terminal.
6386 (server-process-filter): On Windows, treat requests for a tty frame as
6387 if they were for a GUI frame if the running server is in GUI mode.
6388
5e605a2e
GM
63892011-12-03 Glenn Morris <rgm@gnu.org>
6390
6391 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
6392
5c3fe83f
SM
63932011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
6394
6f5e57e7
SM
6395 * electric.el: Streamline electric-indent's hook.
6396 (electric-indent-chars): Revert to simple list.
6397 (electric-indent-functions): New var.
6398 (electric-indent-post-self-insert-function): Use it.
6399
5c3fe83f
SM
6400 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
6401 there's no inferior buffer (bug#10196).
6402 (prolog-consult-compile): Don't use toggle-read-only.
6403
6bdac736
MA
64042011-12-02 Michael Albinus <michael.albinus@gmx.de>
6405
6406 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
6407 interrupt. (Bug#10187)
6408
6131ba7f
SM
64092011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
6410
99c79fee
SM
6411 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
6412 (bug#9160).
6413
6131ba7f
SM
6414 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
6415 (bug#10191).
6416
cb0a02ea
JL
64172011-12-02 Juri Linkov <juri@jurta.org>
6418
6419 * info.el (Info-search): Display "end of manual" when Isearch
6420 reaches the end of single-file Info manual. (Bug#9918)
6421
66e0570c
EZ
64222011-12-02 Eli Zaretskii <eliz@gnu.org>
6423
6424 * isearch.el (isearch-message-prefix): Run the input method part
6425 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
6426
02b16839
JL
64272011-12-02 Juri Linkov <juri@jurta.org>
6428
6429 * isearch.el (isearch-occur): Use `word-search-regexp' for
6430 `isearch-word'.
6431 (isearch-search-and-update): Add condition for `isearch-word' and
6432 call `word-search-regexp'. (Bug#10145)
6433
0b950688
GM
64342011-12-01 Glenn Morris <rgm@gnu.org>
6435
6436 * eshell/em-hist.el (eshell-hist-initialize):
6437 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 6438 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 6439
9505c3c7
SM
64402011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
6441
6442 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
6443
1bbe96b2 64442011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 6445
a1beca85
SM
6446 * progmodes/verilog-mode.el (verilog-pretty-expr):
6447 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
6448 verilog, such as += *= and the like.
6449 (verilog-assignment-operator-re): Regular expression to find the
6450 assigment operator in a verilog assignment.
6451 (verilog-assignment-operation-re): Regular expression to find an
6452 assignment statement for pretty-expr.
6453 (verilog-in-attribute-p): Query returns true if point is in an
6454 attribute context; used to skip these for expression line up from
6455 pretty-expr.
6456 (verilog-in-parameter-p): Query returns true if point is in an
6457 parameter definition context; used to skip these for expression
6458 line up from pretty-expr.
6459 (verilog-in-parenthesis-p): Query returns true if point is in a
6460 parenthetical expression, specifically ( ) but not [ ] or { };
6461 used by pretty-expr.
6462 (verilog-just-one-space): If there is no space, don't add one.
6463 (verilog-get-lineup-indent-2): Specifically skip just attribute
6464 contexts for expression lineup, rather than skipping all
6465 parenthetical expressions.
6466 (verilog-calculate-indent): Fix comment, and fix indent.
6467 (verilog-do-indent): Indent declarations in lists (suggested by
6468 Joachim Lechner).
6469 (verilog-mode-abbrev-table): Populate abbrev mode with the various
6470 skeleton items.
6471 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
6472 by Alain Mellan).
6473
1bbe96b2 64742011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
6475
6476 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
6477 parameters with embedded comments. Reported by Ray Stevens.
6478 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
6479 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
6480 Reported by Tim Holt.
6481 (verilog-auto): Fix AUTOing a upper module then AUTOing module
6482 instantiated by upper module causing wrong expansion until AUTOed a
6483 second time. Reported by K C Buckenmaier.
6484 (verilog-diff-auto): Fix showing .* as a difference when
6485 `verilog-auto-star-save' off. Reported by Dan Dever.
6486 (verilog-auto-reset, verilog-read-always-signals)
6487 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
6488 temporary signals in reset list if
6489 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
6490 style to each signal's assignment type, bug381.
6491 Reported by Thomas Esposito.
6288f0ca
WS
6492 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
6493 (verilog-uvm-statement-re): Support UVM indentation and
6494 highlighting, with old OVM keywords only.
a1beca85 6495 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
1d00653d
SM
6496 Support AUTOTIEOFF creating non-wire data types.
6497 Suggested by Jonathan Greenlaw.
6288f0ca
WS
6498 (verilog-auto-insert-lisp, verilog-delete-to-paren)
6499 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
6500 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
6501 (verilog-read-sub-decls, verilog-read-sub-decls-line):
6502 Fix mismatching parenthesis inside commented out code when deleting
382c953b 6503 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6288f0ca
WS
6504 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
6505 non-numeric vector width. Reported by Alex Reed.
6506 (verilog-auto-ascii-enum): Add "onehot" option to work around not
382c953b 6507 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
6508 (verilog-auto-delete-trailing-whitespace):
6509 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
6510 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
6511 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
6512 Fix verilog-scan-cache corruption when running user AUTO expansion
6513 hooks that call indentation routines.
6514 (verilog-simplify-range-expression): Fix typo ignoring lower case
6515 identifiers.
6516 (verilog-delete-auto): Fix delete-autos to also remove user created
6517 automatics, as long as they start with AUTO.
6518 (verilog-batch-diff-auto, verilog-diff-auto)
6519 (verilog-diff-function): Add `verilog-diff-auto' and bind to
6520 "C-c?" to report differences in AUTO expansion, ignoring spaces.
6521 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
6522 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
6523 (verilog-re-search-forward-quick, verilog-syntax-ppss):
6524 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
6525 is disabled and its cache will get corrupt, causing AUTOS not to
6526 expand. Instead use only -quick functions.
6527 (verilog-scan-region): Fix scanning over escaped quotes.
6528 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
6529 (verilog-re-search-backward-quick)
6530 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
6531 related functions now ignore strings, to fix misparsing of strings
6532 with magic comments embedded in them.
a1beca85
SM
6533 (verilog-read-auto-template):
6534 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
6535 Reported by Brad Dobbie.
6536 (verilog-read-auto-template):
6537 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 6538 Reported by Brad Dobbie.
6288f0ca
WS
6539 (verilog-auto-inst, verilog-auto-inst-param)
6540 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
6541 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
6542 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
6543 debugging templates without merge conflicts, bug357.
6544 Reported by Brad Dobbie.
6545 (verilog-read-auto-template):
6546 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
6547 Reported by Brad Dobbie.
6548 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
6549 abbrevs so user won't be asked to save.
6550 (verilog-read-auto-lisp-present): Fix to start at beginning of
6551 buffer in case called outside of verilog-auto.
6552 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
6553 to "X-2". Reported by Matthew Myers.
6554 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
6555 all inputs from module templates. Reported by Leith Johnson.
6556 (verilog-module-inside-filename-p): Fix locating programs as with
6557 modules.
6558 (verilog-auto-inst-port): Fix vl-width expressions when using
6559 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
6560 (verilog-decls-get-regs, verilog-decls-get-signals,
6561 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
6562 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
6563 verilog-read-decls): Combine reg and wire structures into one var
6564 structure to represent SystemVerilog concepts.
6565 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
6566 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
6567 (verilog-auto-wire-type, verilog-insert-definition):
6568 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
6569 SystemVerilog "logic" keyword instead of "wire"/"reg".
6570 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
6571 to declares outputs that also have assignments (presumably in an
a1beca85
SM
6572 ifdef or generate if so there's not a driver conflict).
6573 Reported by Matthew Myers.
6574 (verilog-auto-declare-nettype, verilog-insert-definition):
6575 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
6576 `default_nettype none. Reported by Julian Gorfajn.
6577 (verilog-read-always-signals-recurse, verilog-read-decls)
6578 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
6579 malformed end statement, bug325. Reported by Joshua Wise and
6580 Andrew Drake.
6581 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
6582 (verilog-inst-comment-re): Fix not deleting Interfaced comment
1d00653d
SM
6583 when expanding .* in interfaces, bug320.
6584 Reported by Pierre-David Pfister.
6288f0ca 6585 (verilog-read-module-name): Fix import statements between module
1d00653d
SM
6586 name and open parenthesis, bug317.
6587 Reported by Pierre-David Pfister.
6288f0ca
WS
6588 (verilog-simplify-range-expression): Fix simplification of
6589 multiplications inside AUTOWIRE connections, bug303.
6590 (verilog-auto-inst-port): Support parameter expansion in
6591 multidimensional arrays.
6592 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
6593 after "assert property". Reported by Julian Gorfajn.
6594 (verilog-simplify-range-expression): Fix "couldn't merge" errors
6595 with multiplication, bug303.
6596 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
6597 Reported by Jan Frode Lonnum.
6598
1bbe96b2
GM
65992011-11-30 Juanma Barranquero <lekktu@gmail.com>
6600
6601 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
6602 (hfy-shell-file-name, hfy-shell):
6603 * international/fontset.el (x-decompose-font-name): Fix typos.
6604
66052011-11-29 Ken Brown <kbrown@cornell.edu>
6606
6607 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
6608 (gdb-version): Remove defvar.
6609 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
6610 (gdb-gud-context-command, gdb-non-stop-handler)
6611 (gdb-current-context-command, gdb-stopped): Use it.
6612 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
6613 (gdb-non-stop-handler): Don't enable pretty-printing here.
6614 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
6615 non-stop mode. Use the following.
6616 (gdb-check-target-async): New defun.
6617 (gud-watch, gdb-stopped): Fix whitespace.
6618 (gdb-get-source-file): Don't try to display the source file if
6619 `gdb-main-file' is nil.
6620
66212011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6622
6623 * align.el: Try to generate fewer markers (bug#10047).
6624 (align--set-marker): New macro.
6625 (align-region): Use it.
6626
c935221f
SM
66272011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6628
6629 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
6630
e70b5064
CY
66312011-11-29 Chong Yidong <cyd@gnu.org>
6632
6633 * indent.el (indent-for-tab-command, indent-according-to-mode):
6634 Doc fix.
6635 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
6636
f3af92b7
MA
66372011-11-29 Michael Albinus <michael.albinus@gmx.de>
6638
6639 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
6640 aware of remote file names. (Bug#10124)
6641
ed472be9
CY
66422011-11-29 Chong Yidong <cyd@gnu.org>
6643
6644 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
6645
24510c22
SM
66462011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6647
6648 * files.el (find-file): Don't use force-same-window (bug#10144).
6649 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
6650 use pop-to-buffer if the selected window can't be used.
6651 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
6652
c60c3703
EZ
66532011-11-28 Eli Zaretskii <eliz@gnu.org>
6654
6655 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
6656 special-mode-map.
6657
e95def75
CY
66582011-11-28 Chong Yidong <cyd@gnu.org>
6659
6660 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
6661
c3f1c606
NR
66622011-11-27 Nick Roberts <nickrob@snap.net.nz>
6663
6664 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
6665 gdb-get-source-file-list on gdb-create-source-file-list.
6666
00db469c
EZ
66672011-11-26 Eli Zaretskii <eliz@gnu.org>
6668
6669 * whitespace.el (whitespace-newline): Use a different foreground
6670 color for 16-color light-background displays.
6671
4ad3bc2a
CY
66722011-11-24 Chong Yidong <cyd@gnu.org>
6673
6674 * window.el (display-buffer--special-action): Doc fix.
6675
e9fce1ac
JB
66762011-11-25 Juanma Barranquero <lekktu@gmail.com>
6677
6678 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
6679 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
6680 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
6681 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
6682 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
6683 (avl-tree-stack-first):
6684 * emacs-lisp/cconv.el (cconv--analyse-use):
6685 * net/gnutls.el (gnutls-negotiate): Fix typos.
6686
cb825e5d
GM
66872011-11-24 Glenn Morris <rgm@gnu.org>
6688
3adbe224
GM
6689 * lpr.el (lpr-windows-system, lpr-lp-system):
6690 * mail/binhex.el (binhex-begin-line):
6691 * progmodes/grep.el (grep-history, grep-find-history):
6692 * textmodes/flyspell.el:
6693 * vc/pcvs-defs.el (cvs-global-menu):
6694 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
6695 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
6696 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
6697
321decc8
GM
6698 * net/tls.el: Fix case of "GnuTLS".
6699
420b63ad
GM
6700 * paths.el (rmail-file-name): Format doc-string for make-docfile.
6701
cb825e5d
GM
6702 * version.el (emacs-build-system): Give it a doc-string.
6703
a0649f08
JL
67042011-11-24 Juri Linkov <juri@jurta.org>
6705
6706 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
6707
c0bc0fd4
GM
67082011-11-24 Glenn Morris <rgm@gnu.org>
6709
6710 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
6711 if called on a non-mime message just toggle the headers. (Bug#8006)
6712
20db1522
JB
67132011-11-24 Juanma Barranquero <lekktu@gmail.com>
6714
6715 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
6716 (allout-lead-with-comment-string, allout-structure-deleted-hook)
6717 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
6718 (allout-rebullet-heading, allout-open-sibtopic)
6719 (allout-toggle-current-subtree-encryption)
6720 (allout-toggle-subtree-encryption, allout-encrypt-string)
6721 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
6722 (allout-distinctive-bullets-string, allout-auto-activation):
6723 * window.el (window-normalize-buffer-to-display):
6724 * progmodes/verilog-mode.el (verilog-batch-indent):
6725 * textmodes/bibtex.el (bibtex-field-braces-opt)
6726 (bibtex-field-strings-opt):
6727 * vc/cvs-status.el (cvs-tree-merge):
6728 Fix typos.
6729
7262a87c
MA
67302011-11-23 Michael Albinus <michael.albinus@gmx.de>
6731
6732 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
6733 `non-essential' to t, in order to avoid remote connections.
6734
283430a1
EZ
67352011-11-23 Eli Zaretskii <eliz@gnu.org>
6736
a1beca85
SM
6737 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6738 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
6739 case-insensitively.
6740
d2992a38
ML
67412011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
6742
6743 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
6744
50419064
GM
67452011-11-23 Glenn Morris <rgm@gnu.org>
6746
da94eca1
GM
6747 * paths.el (rmail-file-name): Reformat the doc-string so that it
6748 is picked up.
6749
9aac4de2
GM
6750 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
6751 (rmail-auto-file): Ignore case in the "special" field names,
6752 as mail-fetch-field does for all others.
6753
8038d2d2
GM
6754 * mail/rmail.el (rmail-forward):
6755 * mail/rmailkwd.el (rmail-set-label):
6756 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
6757 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
6758
f3fe222a
GM
6759 * mail/rmail.el (rmail-current-message): Doc fix.
6760
50419064
GM
6761 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
6762
28109f49
SM
67632011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
6764
6765 * server.el (server-eval-and-print): Allow C-g (bug#6585).
6766
394c65f1
GM
67672011-11-22 Glenn Morris <rgm@gnu.org>
6768
6769 * mail/rmailmm.el (test-rmail-mime-handler)
6770 (test-rmail-mime-bulk-handler)
6771 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
6772
f2a0aa3a
JL
67732011-11-21 Juri Linkov <juri@jurta.org>
6774
1154d12e
JB
6775 * calc/calc.el (calc-read-key-sequence):
6776 Let-bind `input-method-function' to nil. (Bug#10018)
f2a0aa3a 6777
9c34a344
LMI
67782011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
6779
6780 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
6781 Tell the caller that the next line needs recomputation, even
6782 though it doesn't start a sexp (bug#10094).
6783
f04a3be9
SM
67842011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6785
6786 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
6787
7978747f
SM
67882011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
6789
f04a3be9
SM
6790 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
6791 Use force-same-window.
7978747f 6792
fe7a3057
JB
67932011-11-20 Juanma Barranquero <lekktu@gmail.com>
6794
6795 * descr-text.el (describe-char-unicode-data):
6796 * json.el (json-string-escape):
6797 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
6798 (Footnote-unicode, Footnote-style-p):
6799 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
6800
24901d61
CY
68012011-11-20 Chong Yidong <cyd@gnu.org>
6802
6803 * window.el (replace-buffer-in-windows): Restore interactive spec.
6804
bac7ff22
SM
68052011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
6806
24f3d7b9
SM
6807 * electric.el (electric-indent-mode): Fix last change (too optimistic).
6808
bac7ff22
SM
6809 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
6810 (byte-compile-global-not-obsolete-vars): New var.
6811 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
6812 Use it.
6813 (byte-compile-warn-obsolete): Align text with the one in *Help*.
6814
cd1181db
JB
68152011-11-20 Juanma Barranquero <lekktu@gmail.com>
6816
6817 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
6818 * progmodes/pascal.el (electric-pascal-equal):
6819 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
6820 * xml.el (xml-substitute-special): Fix typos.
6821
7fb18e9e
GM
68222011-11-20 Glenn Morris <rgm@gnu.org>
6823
6824 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
6825 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
6826 Doc fixes.
6827 (rmail-decode-mime-charset): Mark as obsolete.
6828
6829 * mail/rmailsum.el (rmail-message-regexp-p-1):
6830 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
6831 Before using mime functions, check they are set. (Bug#10077)
6832
d5a6b3ba
JL
68332011-11-19 Juri Linkov <juri@jurta.org>
6834
6835 * info.el (Info-finder-find-node): Use `package--builtins' instead
6836 of `package-alist'. Use node names formed by the pattern "Keyword "
6837 and the keyword name.
6838
e981b61f
AS
68392011-11-19 Andreas Schwab <schwab@linux-m68k.org>
6840
1d00653d 6841 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
e981b61f 6842
3ffbc301
JL
68432011-11-19 Juri Linkov <juri@jurta.org>
6844
6845 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
6846 that calls `revert-buffer' on all Info buffers. (Bug#9915)
6847 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
6848 `old-history', `old-history-forward'. Add let-binding
6849 `window-selected'. Remove calls to `kill-buffer',
6850 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
6851 before calling `Info-find-node', so `Info-find-node-2' will reread
6852 the Info file. Restore window positions only when `window-selected'
6853 is non-nil.
6854
30c62133
JL
68552011-11-19 Juri Linkov <juri@jurta.org>
6856
6857 * isearch.el (isearch-lazy-highlight-new-loop):
6858 Remove condition `(not isearch-error)'. (Bug#9918)
6859
6860 * misearch.el (multi-isearch-search-fun): Add condition
6861 `(not bound)' to ignore lazy-highlighting search.
6862 Add the search-failed message "end of multi" when the end of
6863 multi-sequence is reached. Uncapitalize the search-failed
6864 message "Repeat for next buffer".
6865
6866 * info.el (Info-search): Add the search-failed message
6867 "end of the manual" when the end of the manual is reached
6868 in Isearch mode.
6869
645ca9cf
JL
68702011-11-19 Juri Linkov <juri@jurta.org>
6871
6872 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
6873 Use non-destructive `remove' instead of `delete' because
6874 `Info-history-list' stored to `Info-isearch-initial-history-list' in
6875 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
6876
df754f66
JL
68772011-11-19 Juri Linkov <juri@jurta.org>
6878
6879 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
6880 to nil instead of binding `search-ring' and `regexp-search-ring'.
6881 (Bug#9185)
6882
0e23d96a
EZ
68832011-11-19 Eli Zaretskii <eliz@gnu.org>
6884
6885 * simple.el (line-move): Force movement by logical lines for any
6886 hscrolled window, not only when auto-hscroll-mode is on.
6887 (line-move-visual): Update doc string to that effect. (Bug#10076)
6888
8a6ccb66
AS
68892011-11-19 Andreas Schwab <schwab@linux-m68k.org>
6890
6891 * language/european.el (macintosh): Define as alias for mac-roman.
6892
49ae5b39
EZ
68932011-11-19 Eli Zaretskii <eliz@gnu.org>
6894
6895 * mail/rmailmm.el (rmail-mime-display-header)
6896 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
6897 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
6898 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
6899 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
6900 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
6901 of a raw aref.
6902 (rmail-mime-entity-segment): To get past the tagline, move forward
6903 2 more lines, to account for the 2 empty lines that precede and
6904 follow the line with the buttons.
6905 (rmail-mime-update-tagline): Move one more line, to get past the
6906 empty line that follows the buttons in the tagline. (Bug#9520)
6907
c56cad4a
MR
69082011-11-19 Martin Rudalics <rudalics@gmx.at>
6909
6910 * window.el (window-max-delta-1, window-min-delta-1)
6911 (window-min-size-1, window-state-get-1, window-state-put-1)
6912 (window-state-put-2): Use "window--" prefix.
6913
cbe71af3
SM
69142011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
6915
2ad52c60
SM
6916 * emacs-lisp/smie.el: Improve warnings and conflict detection.
6917 (smie-warning-count): New var.
6918 (smie-set-prec2tab): Use it.
6919 (smie-bnf->prec2): Improve warnings. Add docstring.
6920 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
6921 (smie-bnf--set-class): New function.
6922 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
6923 corner case.
6924
6944dbc1
SM
6925 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
6926 (compilation-error-properties, compilation-move-to-column):
6927 Handle compilation-first-column while in the target buffer.
6928
c400c4d7
SM
6929 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
6930 Don't hardcode point-min==1.
6931
6dbe3e96
SM
6932 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
6933 (eshell-rewrite-for-command): Remove workaround.
6934 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
6935 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
6936 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
6937
cbe71af3
SM
6938 * files-x.el (modify-file-local-variable): Obey commenting conventions.
6939
a8e1496d
GM
69402011-11-17 Glenn Morris <rgm@gnu.org>
6941
6942 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6943 Ignore buffer-local generated-autoload-file if it is the same
6944 as the global value. (Bug#10049)
6945
df85d315
JB
69462011-11-17 Juanma Barranquero <lekktu@gmail.com>
6947
6948 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
6949 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
6950 (reftex-toc-previous-heading, reftex-toc-max-level)
6951 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
6952 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
6953 (reftex-toc-do-promote, reftex-toc-promote-prepare)
6954 (reftex-toc-promote-action, reftex-toc-extract-section-number)
6955 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
6956 (reftex-toc-rename-label, reftex-toc-visit-location)
6957 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
6958 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
6959 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
6960 leaving "*toc*" only for references to the buffer.
6961
a0c2d0ae
MR
69622011-11-17 Martin Rudalics <rudalics@gmx.at>
6963
6964 * window.el (window-resize, delete-window, split-window):
6965 Replace window-splits by window-combination-resize.
1d00653d 6966 * cus-start.el (window-splits): Replace by window-combination-resize.
a0c2d0ae 6967
35c0bac8
GM
69682011-11-17 Glenn Morris <rgm@gnu.org>
6969
6970 * progmodes/sh-script.el (sh-font-lock-keywords-var):
6971 Make bash entry derive from sh entry, not shell entry.
6972
d0c8fc8a
MA
69732011-11-16 Michael Albinus <michael.albinus@gmx.de>
6974
7262a87c
MA
6975 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
6976 local file name.
6977
7877f373
JB
69782011-11-16 Juanma Barranquero <lekktu@gmail.com>
6979
6980 * menu-bar.el (menu-bar-file-menu):
6981 * printing.el (pr-ps-utility):
6982 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
6983 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
6984 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
6985 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
6986 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
6987 (icalendar--convert-cyclic-to-ical)
6988 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
6989 (icalendar--convert-ical-to-diary)
6990 (icalendar--convert-recurring-to-diary)
6991 (icalendar--convert-non-recurring-all-day-to-diary)
6992 (icalendar-import-format-sample):
6993 * progmodes/idlw-shell.el (idlwave-shell-mode):
6994 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
6995 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
6996 (vhdl-ps-print-init): Fix typos.
6997
10649b82
KM
69982011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
6999
9d0cfcd6
GM
7000 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
7001 FSF and collapse date sequence, obscure author/maintainer email address
7002 better, remove extra version line, track relocation of author's webpage.
10649b82 7003
9d0cfcd6
GM
7004 * progmodes/python.el (python-pdbtrack-input-prompt)
7005 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
7006 regular python pdb prompts. Adjustments shamelessly taken exactly as
7007 suggested in EmacsWiki page (tiny change):
7008 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 7009
58179cce
JB
70102011-11-16 Juanma Barranquero <lekktu@gmail.com>
7011
7012 * expand.el (expand-pos, expand-index, expand-point):
7013 Remove redundant info from docstring.
7014 (expand-add-abbrevs): Doc fix.
7015 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
7016 (expand-sample-perl-mode-expand-list): Fix typos.
7017
7018 * net/dbus.el (dbus-event-member-name):
7019 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
7020 * term/pc-win.el (msdos-create-frame-with-faces):
7021 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
7022
b6f67890
MR
70232011-11-16 Martin Rudalics <rudalics@gmx.at>
7024
7025 * window.el (split-window, window-state-get-1)
7026 (window-state-put-1, window-state-put-2): Rename occurrences of
7027 window-nest to window-combination-limit.
1d00653d 7028 * cus-start.el (window-nest): Rename to window-combination-limit.
b6f67890 7029
ce7ddba0
CY
70302011-11-16 Chong Yidong <cyd@gnu.org>
7031
7032 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
7033 regexp (Bug#10033).
7034
3ae704f4
SM
70352011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7036
7037 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
7038 `completing-read' will remove *Completions* and will preserve
7039 current-buffer for us.
7040 (tmm-add-prompt): Users of *Completions* will always (re)set its
7041 major mode.
7042 (tmm-old-comp-map): Remove.
7043
6ad1cdde
GM
70442011-11-16 Glenn Morris <rgm@gnu.org>
7045
7046 * mail/rmailedit.el: Require rmailmm when compiling.
7047 (rmail-old-mime-state): New declaration.
7048 (rmail-edit-current-message): If editing a mime message,
7049 edit the "raw" message from the mbox buffer.
7050 (rmail-cease-edit): Handle mime messages. (Bug#9840)
7051
d20faa20
GM
70522011-11-15 Glenn Morris <rgm@gnu.org>
7053
7054 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
7055 which wasn't being used. Add optional arg to force given state.
7056 (rmail-mime): Add optional arg to force given state.
7057
c7015153
JB
70582011-11-15 Juanma Barranquero <lekktu@gmail.com>
7059
7060 * allout.el (allout-encryption-plaintext-sanitization-regexps):
7061 * frame.el (display-mm-dimensions-alist):
7062 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
7063 (outline-move-subtree-down):
7064 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
7065 (newsticker--treeview-do-get-node):
7066 * net/quickurl.el (quickurl-list-buffer-name):
7067 * progmodes/dcl-mode.el (dcl-mode):
7068 * progmodes/gdb-mi.el (gdb-mapcar*):
7069 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
7070
45261b50
GM
70712011-11-15 Glenn Morris <rgm@gnu.org>
7072
7073 * mail/rmail.el (rmail-file-coding-system): It's only ever used
7074 in a boolean sense, so just make it a boolean, and fix the doc.
7075 (rmail-show-mime-function, rmail-mime-feature)
7076 (rmail-require-mime-maybe): Doc fixes.
7077 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
7078
7079 * mail/rmailmm.el (rmail-show-mime): Doc fix.
7080
0d26e0b6
JB
70812011-11-15 Juanma Barranquero <lekktu@gmail.com>
7082
7083 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
7084 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
7085 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
7086 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
7087
447f30f6
GM
70882011-11-15 Glenn Morris <rgm@gnu.org>
7089
672b871d
GM
7090 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
7091 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
7092 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
7093 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
7094 (rmail-mime, rmail-show-mime): Doc fixes.
7095
f6aa5bb1
GM
7096 * term/ns-win.el (mode-line-frame-identification):
7097 Leave it alone. (Bug#10051)
7098
947cd66b
GM
7099 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
7100
447f30f6
GM
7101 * mail/rmailout.el (rmail-output-to-rmail-buffer):
7102 Handle empty buffers. (Bug#9978)
7103
0b381c7e
JB
71042011-11-14 Juanma Barranquero <lekktu@gmail.com>
7105
7106 * international/mule.el (define-charset):
7107 * mail/rmailmm.el (rmail-mime-find-header-encoding):
7108 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
7109 * progmodes/verilog-mode.el (verilog-backward-token):
7110 * textmodes/ispell.el (lookup-words):
7111 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
7112
71e027ac
GM
71132011-11-14 Glenn Morris <rgm@gnu.org>
7114
56632ce4
GM
7115 * progmodes/executable.el
7116 (executable-make-buffer-file-executable-if-script-p):
7117 Handle file-modes returning nil.
7118
40500957
GM
7119 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
7120 message - not necessary, and causes problems. (Bug#9831)
7121
071c2340
GM
7122 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
7123
d3cfca60
GM
7124 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
7125
71e027ac
GM
7126 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
7127 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
7128 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
7129
89d61221
MR
71302011-11-12 Martin Rudalics <rudalics@gmx.at>
7131
7132 * window.el (window-resize, delete-window): Use window-splits
7133 variable instead of function.
7134 (window-state-get-1, window-state-put-2, window-state-put):
7135 Don't deal with windows' splits status.
7136
98282f6f
GM
71372011-11-12 Glenn Morris <rgm@gnu.org>
7138
7139 * apropos.el (apropos-do-all, apropos-library, apropos-value)
7140 (apropos-documentation): Doc fixes.
7141
40a8bdf6
JB
71422011-11-11 Juanma Barranquero <lekktu@gmail.com>
7143
7144 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
7145 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
7146
65bd19ff
SM
71472011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7148
7149 * electric.el (electric-indent-post-self-insert-function): Make it
7150 possible for a char to only indent in some circumstances.
7151 (electric-indent-mode): Simplify.
7152
54f9154c
MR
71532011-11-11 Martin Rudalics <rudalics@gmx.at>
7154
7155 * window.el (windows-with-parameter): Remove unused function.
7156 (windows-at-side): Rename to window-at-side-list.
7157 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
7158 (window-side-check, window-size-ignore, window-size-fixed-1)
7159 (window-in-direction-2): Prefix with "window--".
7160 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 7161
68cbc58b
GM
71622011-11-11 Glenn Morris <rgm@gnu.org>
7163
7164 * subr.el (eval-after-load): If FILE is already loaded,
7165 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
7166
b2621720
GM
71672011-11-10 Glenn Morris <rgm@gnu.org>
7168
9a4de110
GM
7169 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
7170 Call svn via vc-svn-command rather than vc-do-command.
7171 (vc-svn-command): Add --non-interactive. (Bug#9993)
7172 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
7173
b2621720
GM
7174 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7175 Add toggle-read-only. (Bug#7292)
7176 * files.el (toggle-read-only): Mention that it should only
7177 be used interactively. (Bug#10006)
7178
1dce7193
SM
71792011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7180
d9ac1a1e
SM
7181 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7182 Adjust regexp for OCaml warnings.
7183
0c325082
SM
7184 * electric.el (electric-pair-post-self-insert-function): Let user
7185 turn it off buffer-locally (bug#9932).
7186
90132c14
SM
7187 * progmodes/python.el (python-beginning-of-statement):
7188 Rewrite (bug#2703).
7189
1dce7193
SM
7190 * progmodes/compile.el: Better handle TABs (bug#9749).
7191 (compilation-internal-error-properties)
7192 (compilation-next-error-function): Obey the target buffer's
7193 compilation-error-screen-columns.
7194
c4e7c63a
JB
71952011-11-09 Juanma Barranquero <lekktu@gmail.com>
7196
7197 * progmodes/meta-mode.el: Remove obsolete comments.
7198 (meta-right-comment-regexp, meta-ignore-comment-regexp):
7199 Fix typos in docstrings.
7200
2cffd681
MR
72012011-11-09 Martin Rudalics <rudalics@gmx.at>
7202
7203 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 7204 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
7205 (window--resizable): New function. Make all callers of
7206 window-resizable call window--resizable instead.
7207 (window-resizable): Rewrite in terms of window--resizable.
7208
0edcba87
GM
72092011-11-08 Glenn Morris <rgm@gnu.org>
7210
7211 * progmodes/delphi.el (delphi-mode-syntax-table):
7212 Let define-derived-mode define a proper syntax table. (Bug#9994)
7213
4b0d61e3
SM
72142011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7215
7216 * window.el: Stay away from defsubst.
7217 (window-list-no-nils): Remove.
7218 (window-state-get-1, window-state-get): Use backquote instead.
7219
cd394be1 72202011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
fcbcac2e 7221
4b0d61e3 7222 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 7223 Fix incorrect use of default argument in `completing-read'.
7224
e1c2c6f2
MR
72252011-11-08 Martin Rudalics <rudalics@gmx.at>
7226
7227 * window.el (display-buffer-function, special-display-function):
7228 Mention display-buffer-record-window but do not mention
7229 help-setup parameter in doc-strings.
b3f4a882 7230 (window-min-delta): Fix doc-string typo.
e1c2c6f2 7231
105216ed
CY
72322011-11-08 Chong Yidong <cyd@gnu.org>
7233
7234 * window.el (window-total-height, window-total-width): Doc fix.
7235 (window-body-size): Move from C.
7236 (window-body-height, window-body-width): Move to C.
7237
0a9f9ab5
SM
72382011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7239
7240 * window.el: Make special-display like display-buffer-alist (bug#9532).
7241 (display-buffer--special-action): New function, morphed
7242 from display-buffer--special.
7243 (display-buffer): Use it to handle special-display-buffers at higher
7244 priority (just after display-buffer-alist).
7245 (display-buffer-fallback-action, display-buffer--other-frame-action)
7246 (pop-to-buffer-same-window): Remove display-buffer--special.
7247
a769dd15
GM
72482011-11-07 Glenn Morris <rgm@gnu.org>
7249
7250 * calendar/cal-menu.el (cal-menu-set-date-title):
7251 Do nothing if not in a calendar. (Bug#9976)
7252
05a61ee3
SM
72532011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
7254
7255 * files.el (find-file): Always use selected-window.
7256
be7f5545
MR
72572011-11-07 Martin Rudalics <rudalics@gmx.at>
7258
7259 * window.el (window-combinations): Make WINDOW argument
7260 mandatory. Rewrite doc-string.
7261 (walk-window-subtree, window-atom-check, window-min-delta)
7262 (window-max-delta, window--resize-this-window)
7263 (window--resize-root-window-vertically, window-tree)
7264 (balance-windows, window-state-put): Rewrite doc-strings as to
7265 not mention the term "subwindow".
7266 (window--resize-subwindows-skip-p): Rename to
7267 window--resize-child-windows-skip-p.
7268 (window--resize-subwindows-normal): Rename to
7269 window--resize-child-windows-normal.
7270 (window--resize-subwindows): Rename to
7271 window--resize-child-windows.
7272 (window-or-subwindow-p): Rename to window--in-subtree-p.
7273
3c6702ef
ML
72742011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7275
7276 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
7277 Ensure that mbox format messages end in two newlines (Bug#9974).
7278
49745b39
CY
72792011-11-06 Chong Yidong <cyd@gnu.org>
7280
7281 * window.el (window-combination-p): Function deleted; its
7282 side-effect is not used in any existing code.
7283 (window-combinations, window-combined-p): Call window-*-child
7284 directly.
7285
24300f5f
CY
72862011-11-05 Chong Yidong <cyd@gnu.org>
7287
7288 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
7289 (window-size-ignore, window-state-get): Callers changed.
7290 (window-normalize-window): Rename from window-normalize-any-window.
7291 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 7292 (window-normalize-live-window): Delete.
447f16b8
CY
7293 (window-combination-p, window-combined-p, window-combinations)
7294 (walk-window-subtree, window-atom-root, window-min-size)
7295 (window-sizable, window-sizable-p, window-size-fixed-p)
7296 (window-min-delta, window-max-delta, window-resizable)
7297 (window-resizable-p, window-full-height-p, window-full-width-p)
7298 (window-current-scroll-bars, window-point-1, set-window-point-1)
7299 (window-at-side-p, window-in-direction, window-resize)
7300 (adjust-window-trailing-edge, maximize-window, minimize-window)
7301 (window-deletable-p, delete-window, delete-other-windows)
7302 (record-window-buffer, unrecord-window-buffer)
7303 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
7304 (quit-window, split-window, window-state-put)
7305 (set-window-text-height, fit-window-to-buffer)
7306 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 7307
89bd5ee1
EZ
73082011-11-04 Eli Zaretskii <eliz@gnu.org>
7309
53479029
EZ
7310 * mail/rmail.el (rmail-simplified-subject): Decode subject with
7311 rfc2047-decode-string.
7312 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
7313 warnings.
7314
89bd5ee1
EZ
7315 * window.el (window-body-height, window-body-width): Mention in
7316 the doc string that the return values are in frame's canonical
7317 units. (Bug#9949)
7318
bd17fdee
AM
73192011-11-03 Alan Mackenzie <acm@muc.de>
7320
7321 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
7322 change in cc-engine.el.
7323
acc825c5
SM
73242011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
7325
7326 * window.el (switch-to-buffer): Use `force-same-window' interactively.
7327
1885e5b8
MR
73282011-11-02 Martin Rudalics <rudalics@gmx.at>
7329
7330 * window.el (quit-window): Call unrecord-window-buffer after
7331 showing another buffer in the window. (Bug#9937)
acc825c5 7332 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 7333
ebe06da9
JB
73342011-11-02 Juanma Barranquero <lekktu@gmail.com>
7335
7336 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
7337 Accept status with more than 9 shelves. (Bug#9935)
7338 Reported by Colin D Bennett <colin@gibibit.com>.
7339
4ee88440
MR
73402011-11-01 Martin Rudalics <rudalics@gmx.at>
7341
7342 * help.el (with-help-window): Don't reference
7343 temp-buffer-show-specifiers in doc-string.
7344
08e1d82c
AS
73452011-10-31 Andreas Schwab <schwab@linux-m68k.org>
7346
7347 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
7348 menu-item.
7349
84bd6e9e
VJL
73502011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7351
7352 * whitespace.el: New version 13.2.2.
7353 (whitespace-newline-mode): Disable properly. Reported by Sarah
7354 <EmacsWiki>.
7355
dba0634a
UJ
73562011-10-30 Ulf Jasper <ulf.jasper@web.de>
7357
7358 * net/newst-treeview.el: Remove "Time-stamp".
7359 (newsticker--group-manage-orphan-feeds): Do not call
7360 newsticker--treeview-tree-update.
db22a3c2
JB
7361 (newsticker-treeview-update, newsticker-treeview):
7362 Call newsticker--treeview-tree-update if necessary.
dba0634a 7363
3d8daefe
MR
73642011-10-30 Martin Rudalics <rudalics@gmx.at>
7365
7366 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
7367 (window-iso-combinations): Remove "iso-" infix.
7368 Suggested by Chong Yidong.
3d8daefe
MR
7369 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
7370 (window-max-delta-1, window-resize, window--resize-siblings)
7371 (window--resize-this-window, adjust-window-trailing-edge)
7372 (split-window, balance-windows-1)
7373 (shrink-window-if-larger-than-buffer):
7374 * calendar/calendar.el (calendar-generate-window):
db22a3c2 7375 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 7376
1bc4c3ae
SM
73772011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7378
7379 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
7380 in place (bug#9907).
7381 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
7382 (eshell-rewrite-if-command, eshell-rewrite-for-command)
7383 (eshell-structure-basic-command, eshell-rewrite-while-command)
7384 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
7385 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
7386 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
7387 (eshell-do-pipelines-synchronously, eshell-eval-command):
7388 Use backquotes and prefer setq to set.
7389 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
7390 (eshell-macrop): Use functionp.
c1e2f5fa 7391 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 7392
30b65d9c
CY
73932011-10-30 Chong Yidong <cyd@gnu.org>
7394
7395 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
7396 instead of set-mark (Bug#9810).
7397
2d197ffb
CY
73982011-10-30 Chong Yidong <cyd@gnu.org>
7399
7400 * window.el (split-window-below, split-window-right): Rename from
7401 split-window-above-each-other and split-window-side-by-side
7402 respectively. All callers changed.
7403 (split-window-sensibly, split-window-sensibly): Use them.
7404 (split-window-keep-point): Doc fix.
7405
7406 * isearch.el: Add isearch-scroll property to split-window-below
7407 and split-window-right.
7408
7409 * follow.el (follow-mode):
7410 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
7411 * progmodes/ada-xref.el (ada-gdb-application):
7412 * emulation/vip.el (vip-buffer-in-two-windows):
7413 * image-dired.el (image-dired-dired-with-window-configuration):
7414 * dired-x.el (dired-do-find-marked-files):
7415 * dired.el (dired-pop-to-buffer):
7416 * bs.el (bs--show-with-configuration):
7417 * vc/emerge.el (emerge-setup-windows):
7418 * textmodes/two-column.el (2C-two-columns):
7419 * textmodes/reftex-toc.el (reftex-toc):
7420 * progmodes/gdb-mi.el (gdb-setup-windows):
7421 * progmodes/fortran.el (fortran-window-create):
7422 * net/newst-treeview.el (newsticker--treeview-window-init):
7423 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
7424 * emulation/tpu-edt.el (tpu-gold-map):
7425 * emulation/crisp.el (crisp-mode-map):
7426 * calendar/calendar.el (calendar-basic-setup): Callers changed.
7427
38bb2ca8
CY
74282011-10-29 Chong Yidong <cyd@gnu.org>
7429
aa4de341
CY
7430 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
7431
e1eb5385
CY
7432 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
7433
5d2ece3c
CY
7434 * textmodes/flyspell.el (flyspell-word): Fix char offset for
7435 forged Ispell output (Bug#7904).
7436
38bb2ca8
CY
7437 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
7438
d0af9f77
SM
74392011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7440
7441 * doc-view.el: Avoid ugly errors about not finding nil.
7442 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
7443 (doc-view-dvipdf-program, doc-view-unoconv-program)
7444 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
7445 Avoid nil or absolute file name as default value.
7446 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
7447
52bedd34
AM
74482011-10-28 Alan Mackenzie <acm@muc.de>
7449
db22a3c2 7450 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 7451
7e43cfa5
AM
74522011-10-28 Alan Mackenzie <acm@muc.de>
7453
7454 Amend the handling of c-beginning/end-of-defun in nested declaration
7455 scopes.
7456
52bedd34
AM
7457 * progmodes/cc-vars.el (c-defun-tactic): Move here from
7458 cc-langs.el. Change it to a defcustom.
7e43cfa5 7459
52bedd34
AM
7460 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
7461 cc-vars.el.
7e43cfa5 7462
d0af9f77
SM
7463 * progmodes/cc-engine.el (c-beginning-of-statement-1):
7464 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 7465
52bedd34 7466 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 7467 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
7468 (c-widen-to-enclosing-decl-scope): New function.
7469 (c-while-widening-to-decl-block): New macro.
7470 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
7471 outward for defun boundaries, and correspondingly change symbol
7472 `respect-enclosure' to `go-outward'.
7473 (c-declaration-limits): Change algorithm to report only the "innermost"
7474 defun's boundaries.
7475
1a2ce9ee
DD
74762011-10-28 Deniz Dogan <deniz@dogan.se>
7477
7478 * net/rcirc.el (rcirc-mode): Use hard newlines.
7479
bc97a826
AM
74802011-10-28 Alan Mackenzie <acm@muc.de>
7481
7482 Amend to indent and fontify macros "which include their own semicolon"
7483 correctly, using the "virtual semicolon" mechanism.
7484
52bedd34 7485 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 7486
d0af9f77 7487 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 7488 Recode to scan one line at a time rather than having \n and \r
58179cce 7489 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 7490 (c-forward-label): Amend for virtual semicolons.
58179cce 7491 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 7492
52bedd34
AM
7493 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
7494 of the new C macros.
bc97a826 7495
52bedd34 7496 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
7497 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
7498 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
7499 (c-opt-cpp-macro-define): Make into a full language variable.
7500 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
7501 AWK Mode (including \n, \r) removed, no longer needed.
7502
d0af9f77
SM
7503 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
7504 Invoke c-make-macro-with-semi-re.
bc97a826 7505
52bedd34
AM
7506 * progmodes/cc-vars.el (c-macro-with-semi-re):
7507 (c-macro-names-with-semicolon): New variables.
58179cce 7508 (c-make-macro-with-semi-re): New function.
bc97a826 7509
7a6c0941
SM
75102011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7511
7512 * vc/log-edit.el: Fill empty field rather than adding new one.
7513 (log-edit-add-field): New function.
7514 (log-edit-insert-changelog): Use it.
7515
b0c4cdcf
ML
75162011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7517
7518 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
7519
ee1f1da9
SM
75202011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7521
7522 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
7523 (gdb--check-interpreter): New function.
7524 (gdb): Use it.
7525
51bc5f8b
GM
75262011-10-27 Glenn Morris <rgm@gnu.org>
7527
416a2c45
GM
7528 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
7529 (least-positive-float, least-negative-float)
7530 (least-positive-normalized-float, least-negative-normalized-float)
7531 (float-epsilon, float-negative-epsilon):
7532 Remove unnecessary declarations.
7533
7534 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
7535 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
7536 (least-positive-float, least-negative-float)
7537 (least-positive-normalized-float, least-negative-normalized-float)
7538 (float-epsilon, float-negative-epsilon): Add doc-strings,
7539 based on those in cl.texi.
7540
51bc5f8b
GM
7541 * files.el (set-visited-file-name): If the major-mode changed,
7542 reload the local variables. (Bug#9796)
7543
15de15c6
CY
75442011-10-27 Chong Yidong <cyd@gnu.org>
7545
7546 * subr.el (change-major-mode-after-body-hook): New hook.
7547 (run-mode-hooks): Run it.
7548
ee1f1da9
SM
7549 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7550 Use change-major-mode-before-body-hook.
15de15c6
CY
7551
7552 * simple.el (fundamental-mode):
7553 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
7554 change introducing fundamental-mode-hook.
7555
5430d399
JB
75562011-10-26 Juanma Barranquero <lekktu@gmail.com>
7557
acc825c5 7558 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 7559
ad74a69e
MA
75602011-10-26 Michael Albinus <michael.albinus@gmx.de>
7561
7562 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 7563 tramp.el explicitly. (Bug#7583)
ad74a69e 7564
71d4c2a5
SM
75652011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
7566
7567 * progmodes/octave-mod.el:
7568 * progmodes/octave-inf.el: Update maintainer.
7569
b1f6fa26
CY
75702011-10-26 Chong Yidong <cyd@gnu.org>
7571
7572 * subr.el (with-wrapper-hook): Rewrite doc.
7573
3f04efd6
MA
75742011-10-25 Michael Albinus <michael.albinus@gmx.de>
7575
7576 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 7577 filenames "/method:foo:". (Bug#9793)
3f04efd6 7578
410488d3
SM
75792011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7580
7581 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
7582 (bug#9865).
7583
c1ebb47e
GM
75842011-10-24 Glenn Morris <rgm@gnu.org>
7585
7586 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
7587
7f5c46c7
MA
75882011-10-24 Michael Albinus <michael.albinus@gmx.de>
7589
7590 * notifications.el: Add the requirement of a running D-Bus session
7591 bus to the Commentary.
7592
db2440b6
JL
75932011-10-24 Juri Linkov <juri@jurta.org>
7594
7595 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
7596 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
7597 (Bug#9364)
7598
feecf435
JL
75992011-10-24 Juri Linkov <juri@jurta.org>
7600
7601 * info.el (Info-following-node-name-re): Add newline to the list
7602 of allowed characters for leading space. (Bug#9824)
7603
a3839de2
SM
76042011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7605
acc825c5
SM
7606 * progmodes/octave-inf.el (inferior-octave-mode-map):
7607 Fix C-c C-h binding.
a3839de2
SM
7608 * progmodes/octave-mod.el (octave-help): Remove.
7609
09388e76
MA
76102011-10-23 Michael Albinus <michael.albinus@gmx.de>
7611
7612 Sync with Tramp 2.2.3.
7613
7614 * net/tramp-cache.el (top): Pacify byte-compiler using
7615 `init-file-user' and `site-run-file'.
7616
7617 * net/trampver.el: Update release number.
7618
86c60681
CY
76192011-10-23 Chong Yidong <cyd@gnu.org>
7620
7621 * files.el (toggle-read-only): Remove obsolete comment about
7622 version control.
7623
7624 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
7625 for toggle-read-only. Note that this hasn't called vc-next-action
7626 since 2008-05-02, though it wasn't documented at the time.
7627
a3839de2
SM
7628 * vc/ediff-init.el (ediff-toggle-read-only-function):
7629 Use toggle-read-only.
86c60681 7630
cd5495ff
AM
76312011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
7632
7633 Fix bug #9560, sporadic wrong indentation; improve instrumentation
7634 of c-parse-state.
7635
00b77525 7636 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 7637 correct faulty logical expression.
cd5495ff
AM
7638 (c-parse-state-state, c-record-parse-state-state):
7639 (c-replay-parse-state-state): New defvar/defuns.
7640 (c-debug-parse-state): Use new functions.
7641
42ee24ed
MR
76422011-10-22 Martin Rudalics <rudalics@gmx.at>
7643
7644 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 7645 last fix. Use window-in-direction correctly.
42ee24ed 7646
a7dee7e7
CY
76472011-10-21 Chong Yidong <cyd@gnu.org>
7648
7649 * progmodes/idlwave.el (idlwave-mode):
7650 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
7651 require-final-newline; that's done in prog-mode.
7652 Suggested by Stefan Monnier.
a7dee7e7 7653
e07b9a6d
MR
76542011-10-21 Martin Rudalics <rudalics@gmx.at>
7655
7656 * mouse.el (mouse-drag-window-above)
7657 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
7658 (mouse-drag-mode-line-1, mouse-drag-header-line)
7659 (mouse-drag-vertical-line-rightward-window): Remove.
7660 (mouse-drag-line): New function.
7661 (mouse-drag-mode-line, mouse-drag-header-line)
7662 (mouse-drag-vertical-line): Call mouse-drag-line.
7663 * window.el (window-at-side-p, windows-at-side): New functions.
7664
7e1361d9
UM
76652011-10-21 Ulrich Mueller <ulm@gentoo.org>
7666
7667 * tar-mode.el (tar-grind-file-mode):
7668 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
7669
30fcaf3a
CY
76702011-10-21 Chong Yidong <cyd@gnu.org>
7671
7672 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
7673 * progmodes/vera-mode.el (vera-mode):
7674 Use mode-require-final-newline.
30fcaf3a 7675
516eddb0
GM
76762011-10-20 Glenn Morris <rgm@gnu.org>
7677
db22a3c2 7678 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 7679
10d5f513
CS
76802011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
7681
7682 * emulation/cua-base.el (cua-set-mark): Fix case of string.
7683
ac6c8639
CY
76842011-10-20 Chong Yidong <cyd@gnu.org>
7685
7686 * emulation/cua-base.el (cua-mode):
7687 * mail/footnote.el (footnote-mode):
7688 * mail/mailabbrev.el (mail-abbrevs-mode):
7689 * net/xesam.el (xesam-minor-mode):
7690 * progmodes/bug-reference.el (bug-reference-mode):
7691 * progmodes/cap-words.el (capitalized-words-mode):
7692 * progmodes/compile.el (compilation-minor-mode)
7693 (compilation-shell-minor-mode):
7694 * progmodes/gud.el (gud-tooltip-mode):
7695 * progmodes/hideif.el (hide-ifdef-mode):
7696 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
7697 * progmodes/subword.el (subword-mode):
7698 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7699 * progmodes/which-func.el (which-function-mode):
7700 * term/tvi970.el (tvi970-set-keypad-mode):
7701 * term/vt100.el (vt100-wide-mode):
7702 * textmodes/flyspell.el (flyspell-mode):
7703 * textmodes/ispell.el (ispell-minor-mode):
7704 * textmodes/nroff-mode.el (nroff-electric-mode):
7705 * textmodes/paragraphs.el (use-hard-newlines):
7706 * textmodes/refill.el (refill-mode):
7707 * textmodes/reftex.el (reftex-mode):
7708 * textmodes/rst.el (rst-minor-mode):
7709 * textmodes/sgml-mode.el (html-autoview-mode)
7710 (sgml-electric-tag-pair-mode):
7711 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
7712 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
7713 * emulation/crisp.el (crisp-mode):
7714 * emacs-lisp/eldoc.el (eldoc-mode):
7715 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
7716 minor mode behavior.
7717
aa42ab43
JL
77182011-10-19 Juri Linkov <juri@jurta.org>
7719
7720 * descr-text.el (describe-char): Add #x2010 and #x2011 to
7721 the list of hard-coded chars with escape-glyph face.
7722
89400f1d
SM
77232011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
7724
7725 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
7726
305c07f6
MA
77272011-10-19 Michael Albinus <michael.albinus@gmx.de>
7728
7729 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
7730 running process.
7731
13754b54
GM
77322011-10-19 Glenn Morris <rgm@gnu.org>
7733
7734 * vc/vc-bzr.el (vc-bzr-after-dir-status):
7735 Ignore ignored files. (Bug#9726)
7736
06e21633
CY
77372011-10-19 Chong Yidong <cyd@gnu.org>
7738
7739 Doc fix for minor modes, stating that an omitted argument enables
7740 the mode unconditionally when called from Lisp.
7741
7742 * abbrev.el (abbrev-mode):
7743 * allout.el (allout-mode):
7744 * autoinsert.el (auto-insert-mode):
7745 * autoarg.el (autoarg-mode, autoarg-kp-mode):
7746 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
7747 (global-auto-revert-mode):
7748 * battery.el (display-battery-mode):
7749 * composite.el (global-auto-composition-mode)
7750 (auto-composition-mode):
7751 * delsel.el (delete-selection-mode):
7752 * desktop.el (desktop-save-mode):
7753 * dired-x.el (dired-omit-mode):
7754 * dirtrack.el (dirtrack-mode):
7755 * doc-view.el (doc-view-minor-mode):
7756 * double.el (double-mode):
7757 * electric.el (electric-indent-mode, electric-pair-mode):
7758 * emacs-lock.el (emacs-lock-mode):
7759 * epa-hook.el (auto-encryption-mode):
7760 * follow.el (follow-mode):
7761 * font-core.el (font-lock-mode):
7762 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
7763 * help.el (temp-buffer-resize-mode):
7764 * hilit-chg.el (highlight-changes-mode)
7765 (highlight-changes-visible-mode):
7766 * hi-lock.el (hi-lock-mode):
7767 * hl-line.el (hl-line-mode, global-hl-line-mode):
7768 * icomplete.el (icomplete-mode):
7769 * ido.el (ido-everywhere):
7770 * image-file.el (auto-image-file-mode):
7771 * image-mode.el (image-minor-mode):
7772 * iswitchb.el (iswitchb-mode):
7773 * jka-cmpr-hook.el (auto-compression-mode):
7774 * linum.el (linum-mode):
7775 * longlines.el (longlines-mode):
7776 * master.el (master-mode):
7777 * mb-depth.el (minibuffer-depth-indicate-mode):
7778 * menu-bar.el (menu-bar-mode):
7779 * minibuf-eldef.el (minibuffer-electric-default-mode):
7780 * mouse-sel.el (mouse-sel-mode):
7781 * msb.el (msb-mode):
7782 * mwheel.el (mouse-wheel-mode):
7783 * outline.el (outline-minor-mode):
7784 * paren.el (show-paren-mode):
7785 * recentf.el (recentf-mode):
7786 * reveal.el (reveal-mode, global-reveal-mode):
7787 * rfn-eshadow.el (file-name-shadow-mode):
7788 * ruler-mode.el (ruler-mode):
7789 * savehist.el (savehist-mode):
7790 * scroll-all.el (scroll-all-mode):
7791 * scroll-bar.el (scroll-bar-mode):
7792 * server.el (server-mode):
7793 * shell.el (shell-dirtrack-mode):
7794 * simple.el (auto-fill-mode, transient-mark-mode)
7795 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
7796 (line-number-mode, column-number-mode, size-indication-mode)
7797 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
7798 * strokes.el (strokes-mode):
7799 * time.el (display-time-mode):
7800 * t-mouse.el (gpm-mouse-mode):
7801 * tool-bar.el (tool-bar-mode):
7802 * tooltip.el (tooltip-mode):
7803 * type-break.el (type-break-mode-line-message-mode)
7804 (type-break-query-mode):
7805 * view.el (view-mode):
7806 * whitespace.el (whitespace-mode, whitespace-newline-mode)
7807 (global-whitespace-mode, global-whitespace-newline-mode):
7808 * xt-mouse.el (xterm-mouse-mode): Doc fix.
7809
a3839de2
SM
7810 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7811 Fix autogenerated docstring.
06e21633 7812
5214e501
JL
78132011-10-19 Juri Linkov <juri@jurta.org>
7814
7815 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
7816 by checking environment variables "DESKTOP_SESSION" and
7817 "XDG_CURRENT_DESKTOP". (Bug#9779)
7818
195f8db9
JL
78192011-10-19 Juri Linkov <juri@jurta.org>
7820
7821 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
7822 (browse-url-chromium-program, browse-url-chromium-arguments):
7823 New defcustoms.
7824 (browse-url-default-browser): Check for `browse-url-chromium' and
7825 call `browse-url-chromium-program'.
7826 (browse-url-chromium): New command. (Bug#9779)
7827
343a34ff
JB
78282011-10-18 Juanma Barranquero <lekktu@gmail.com>
7829
7830 * facemenu.el (list-colors-duplicates): On Windows, detect more
7831 duplicates by assuming that only colors matching "^System" are
7832 special "system colors". (Bug#9722)
7833
6978a151
SM
78342011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
7835
7836 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
7837 to distinguish the author from the committer.
7838
6a80b297
MA
78392011-10-18 Michael Albinus <michael.albinus@gmx.de>
7840
7841 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
7842
b31a5677
JK
78432011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
7844
7845 * international/mule.el (sgml-html-meta-auto-coding-function):
7846 Add support for detecting encoding in HTML5 specified only as
7847 <meta charset="UTF-8">. Implementation just makes http-equiv and
7848 content-type parts from HTML4 encoding string optional. (Bug#9716)
7849
80c6d77f
GM
78502011-10-18 Glenn Morris <rgm@gnu.org>
7851
7852 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
7853
08b0fee8
CY
78542011-10-18 Chong Yidong <cyd@gnu.org>
7855
7856 * faces.el (cursor): Doc fix.
7857
67e729a5
CY
78582011-10-17 Chong Yidong <cyd@gnu.org>
7859
7860 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
7861
343a34ff 78622011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
7863
7864 * dirtrack.el (dirtrack): Support shell buffers with path
7865 prefixes, e.g. tramp-based remote shells. (Bug#9647)
7866
0bc06380
TZ
78672011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
7868
7869 * json.el: Bump version to 1.3 and note change in History.
7870 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
7871
8b79f3e0
SM
78722011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
7873
5a7c536b
SM
7874 * comint.el (comint-insert-input, comint-send-input)
7875 (comint-get-old-input-default, comint-backward-matching-input)
7876 (comint-next-prompt): Use nil instead of `input' for field property of
7877 past user input (bug#114).
7878
96a8a0df
SM
7879 * minibuffer.el (completion--replace): Inherit surrounding properties
7880 (bug#114).
7881 (minibuffer-complete-and-exit): Use it.
7882
8b79f3e0
SM
7883 * comint.el (comint--table-subvert): Quote the all-completions output
7884 (bug#9160).
7885
b8f7ff0d
MR
78862011-10-17 Martin Rudalics <rudalics@gmx.at>
7887
8b79f3e0 7888 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 7889
b8f7ff0d 7890 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 7891 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
7892 entries and separate them from frame entries.
7893
c235b555
GM
78942011-10-15 Glenn Morris <rgm@gnu.org>
7895
7896 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
7897 Doc fixes.
7898
6bbfa6e1
CY
78992011-10-15 Chong Yidong <cyd@stupidchicken.com>
7900
8b79f3e0
SM
7901 * net/network-stream.el (network-stream-open-starttls):
7902 Improve detection of failure due to lack of TLS support.
ec5c990d 7903
6bbfa6e1
CY
7904 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
7905 putting the input text in front and in bold.
7906
98488977
SM
79072011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
7908
3d1337be
SM
7909 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
7910
ee0b45e4
SM
7911 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
7912 empty buffer.
7913
98488977
SM
7914 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
7915 unread-command-events rather than pushing yet-another event.
7916
186f4720
EZ
79172011-10-14 Eli Zaretskii <eliz@gnu.org>
7918
7919 * mail/sendmail.el (sendmail-query-once): Improve the wording of
7920 the explanation of the possible choices. Make the options passed
7921 to completing-read shorter.
7922
8b7a997c
AM
79232011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7924
7925 * textmodes/flyspell.el (flyspell-large-region): Make sure
7926 extended character mode is used if defined (Bug#1339).
7927
12587bbb
EZ
79282011-10-13 Eli Zaretskii <eliz@gnu.org>
7929
7930 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
7931 character info for LRE, LRO, RLE, and RLO characters by appending
7932 an invisible PDF.
12587bbb 7933
bad41229
SM
79342011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
7935
7936 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
7937 even in case of error; add debug spec; simplify data flow.
7938 (with-timeout-handler): Remove.
7939
28dbc92f
MA
79402011-10-12 Michael Albinus <michael.albinus@gmx.de>
7941
7942 Fix Bug#6019, Bug#9315.
7943
7944 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
7945 complete `buffer-file-name', the local file name part could look
7946 remotely (for example on VMS).
7947
7948 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
7949 `tramp-run-real-handler'.
7950 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
7951 already quoted by '"'.
7952
7953 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
7954 Let `file-name-handler-alist' be nil, the local file name part
7955 could look remotely (for example on VMS).
7956
e1b0b23a
SM
79572011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
7958
7959 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
7960 from here...
7961 (flyspell-post-command-hook): ...to here.
7962
a120bde9
SM
79632011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
7964
7965 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
7966 if not needed.
7967 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
7968 using completion. Protect against "slow" callers.
7969 Remove the "message hack".
7970
7ce7717b
JL
79712011-10-11 Juri Linkov <juri@jurta.org>
7972
7973 * isearch.el (isearch-lazy-highlight-word): New variable.
7974 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
7975 Use it. (Bug#9727)
7976
c02ee9d6
GM
79772011-10-11 Glenn Morris <rgm@gnu.org>
7978
7979 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
7980 like f90-previous-statement does.
7981
93e616fd 79822011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7983
1f190e73 7984 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
7985 only in interactive use, to avoid error.
7986
af7b6078
SM
79872011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
7988
7989 * minibuffer.el (completion-file-name-table): Fix last change,
7990 i.e. ignore normal errors but not the other ones.
7991
0563dae9
MR
79922011-10-10 Martin Rudalics <rudalics@gmx.at>
7993
7994 * window.el (special-display-buffer-names)
7995 (special-display-regexps): Remove some remnants of earlier
7996 changes from doc-strings.
366ca7f3
MR
7997 (quit-windows-on): New function.
7998
7999 * vc/vc.el (vc-revert, vc-rollback):
8000 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
8001 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 8002 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 8003
49677495
MR
80042011-10-09 Martin Rudalics <rudalics@gmx.at>
8005
8006 * window.el (frame-auto-hide-function): Add version tag.
8007 (Bug#9699)
8008
56f2d1e1
MA
80092011-10-09 Michael Albinus <michael.albinus@gmx.de>
8010
8011 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
8012 condition.
8013
112a6592
LL
80142011-10-09 Leo Liu <sdl.web@gmail.com>
8015
8016 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
8017 (Bug#9701)
8018
0812589b
GM
80192011-10-08 Glenn Morris <rgm@gnu.org>
8020
8021 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
8022 before the first code statement zero indent. (Bug#9690)
8023
b2b0776e
CY
80242011-10-08 Chong Yidong <cyd@stupidchicken.com>
8025
8026 * simple.el (count-words-region): Always count in the region.
8027 Report the number of lines and characters too.
8028 (count-words): New command, which counts in the buffer if the
8029 region is inactive, as count-words-region used to.
8030 (count-words--message): New function. Handle plurals.
8031 (count-lines-region): Make it an alias for count-words-region.
8032
8033 * bindings.el (esc-map): Replace count-lines-region with
8034 count-words-region.
8035
c557cd6b
MR
80362011-10-08 Martin Rudalics <rudalics@gmx.at>
8037
8038 * window.el (window--delete): Delete dedicated frame
8039 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 8040 (switch-to-buffer): Fix doc-string typo.
c557cd6b 8041
61a57ef4 80422011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8043
3a7d293b 8044 * eshell/eshell.el (eshell-command): Avoid using hooks.
61a57ef4 8045
c3833279
CY
80462011-10-07 Chong Yidong <cyd@stupidchicken.com>
8047
8048 * bindings.el ([M-left],[M-right]): Bind to left-word and
8049 right-word respectively.
8050
21ce8245
GM
80512011-10-07 Glenn Morris <rgm@gnu.org>
8052
8053 * cus-start.el (debug-on-quit): Fix custom type.
8054
6d823bb2
LMI
80552011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8056
0181e193
LMI
8057 * subr.el (define-key-after): Clarify that the function is not
8058 useful for non-menu keymaps.
8059
6d823bb2
LMI
8060 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
8061
8e3459ce 80622011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8063
21ce8245 8064 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 8065 in current minibuffer (Fix bug with recursive minibuffers).
8066
a1c2d21e
CY
80672011-10-06 Chong Yidong <cyd@stupidchicken.com>
8068
8069 * progmodes/gdb-mi.el (gdb): Doc fix.
8070
5a4cf282
MR
80712011-10-05 Martin Rudalics <rudalics@gmx.at>
8072
8073 * window.el (frame-auto-hide-function): New option replacing
8074 frame-auto-delete. Suggested by Stefan Monnier.
8075 (window--delete): Call frame-auto-hide-function instead of
8076 investigating frame-auto-delete.
c96111ea
MR
8077 (window-point-1, set-window-point-1): New functions.
8078 (window-in-direction, record-window-buffer, window-state-get-1)
8079 (display-buffer-record-window): Use window-point-1 instead of
8080 window-point.
8081 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 8082
9854542e
SM
80832011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8084
8085 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
8086
8943cfb0
GM
80872011-10-05 Glenn Morris <rgm@gnu.org>
8088
8089 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
8090 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
8091
647ab967
LL
80922011-10-05 Leo Liu <sdl.web@gmail.com>
8093
8094 * subr.el (read-char-choice): Fix argument to buffer-live-p which
8095 works with buffer object.
8096
3ddfbced
SM
80972011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8098
8099 * mpc.el (mpc-tool-bar-map): Add labels.
8100
bdfa5dd2
GM
81012011-10-04 Glenn Morris <rgm@gnu.org>
8102
8103 * calendar/holidays.el (calendar-check-holidays): Doc fix.
8104
0e2070b5
MR
81052011-10-04 Martin Rudalics <rudalics@gmx.at>
8106
8107 * window.el (window--delete): New function.
8108 (frame-auto-delete): Resuscitate option.
8109 (bury-buffer, replace-buffer-in-windows)
8110 (quit-window): Rewrite using window--delete.
8111 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8112 Pass display-buffer-mark-dedicated to window--display-buffer-2
8113 (Bug#9639).
8114
3dc61a09
SM
81152011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8116
915a9b64
SM
8117 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
8118 returns a list (bug#9554). Add remote file name completion.
8119 * comint.el (comint--table-subvert): Curry and get quote&unquote
8120 functions as arguments.
8121 (comint--complete-file-name-data): Adjust call accordingly.
8122 * pcomplete.el (pcomplete--table-subvert): Remove.
8123 (pcomplete-completions-at-point): Use comint--table-subvert instead.
8124
3dc61a09
SM
8125 * minibuffer.el (completion-table-case-fold): Use currying.
8126 (completion--styles-type, completion--cycling-threshold-type):
8127 New constants.
8128 (completion-styles, completion-category-overrides)
8129 (completion-cycle-threshold): Use them.
8130 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
8131 completion-table-case-fold.
8132
8ea0a993
SB
81332011-10-03 Stephen Berman <stephen.berman@gmx.net>
8134
8135 * minibuffer.el (completion-category-overrides): Fix type of styles
8136 and add more user friendly tags (bug#9660).
8137
8c24b7f6
SM
81382011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8139
8140 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
8141 (mule-input-method-string): New widget.
8142 (default-input-method, language-info-custom-alist): Use it.
8143
428fe61a
SM
81442011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8145
32c1fffd
SM
8146 * pcomplete.el: Require comint.
8147 (pcomplete--common-suffix): Remove.
8148 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
8149 (pcomplete--table-subvert): Sync with comint--table-subvert.
8150 (pcomplete--entries): Use comint-completion-file-name-table.
8151 * comint.el (comint-unquote-filename): Simplify.
8152 (comint-completion-file-name-table): New function (bug#9616).
8153 (comint--complete-file-name-data): Use it.
8154
428fe61a
SM
8155 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
8156 (pcmpl-gnu-tar-buffer): Remove.
8157 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
8158 around. Make sure pcomplete-suffix-list is only changed temporarily.
8159 Don't look inside the tar's file if it's too large.
428fe61a 8160
04c52e2f
CY
81612011-10-01 Chong Yidong <cyd@stupidchicken.com>
8162
ce3cefcc
CY
8163 * cus-edit.el (custom-mode-map):
8164 * epa.el (epa-key-list-mode-map):
8165 * man.el (Man-mode-map):
8166 * startup.el (splash-screen-keymap):
8167 * simple.el (special-mode-map): Use scroll-up-command and
8168 scroll-down-command.
8169
8170 * progmodes/idlw-help.el (idlwave-help-mode-map):
8171 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
8172 * net/newst-plainview.el (newsticker-mode-map):
8173 * emulation/ws-mode.el (wordstar-mode-map):
8174 * emulation/vi.el (vi-com-map):
8175 * calc/calc-graph.el (calc-graph-show-dumb):
8176 * term/sun.el (terminal-init-sun):
8177 * term/ns-win.el (global-map):
8178 * progmodes/grep.el (grep-mode-map):
8179 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
8180 * mail/rmail.el (rmail-mode-map):
8181 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
8182
04c52e2f
CY
8183 * custom.el (custom-safe-themes, load-theme): Treat value of t for
8184 custom-safe-themes as special.
8185
79adf8c8
JD
81862011-10-01 Julien Danjou <julien@danjou.info>
8187
8188 * notifications.el (notifications-notify): Fix docstring.
8189
63bd50d3
PS
81902011-10-01 Per Starbäck <per@starback.se>
8191
8192 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
8193
199e4c7e
MR
81942011-09-30 Martin Rudalics <rudalics@gmx.at>
8195
8196 * startup.el (command-line-1): Fix last fix by inserting
8197 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 8198 (Bug#9605) and (Bug#9636)
199e4c7e 8199
fe5f08dd
EZ
82002011-09-29 Eli Zaretskii <eliz@gnu.org>
8201
8202 * simple.el (line-move): If auto-hscroll-mode is disabled and the
8203 window is hscrolled, move by logical lines. (Bug#9607)
8204 (line-move-visual): Update the doc string to the above effect.
8205
b5516bbd
MR
82062011-09-29 Martin Rudalics <rudalics@gmx.at>
8207
ccee00c0
MR
8208 * window.el (display-buffer-record-window): When WINDOW is the
8209 selected window use `point' instead of `window-point'. (Bug#9626)
8210
b5516bbd
MR
8211 * startup.el (command-line-1): Use insert-before-markers when
8212 inserting initial-scratch-message. (Bug#9605)
ccee00c0 8213
b5516bbd
MR
8214 * help.el (help-window): Remove variable.
8215
52aa0014
GM
82162011-09-29 Glenn Morris <rgm@gnu.org>
8217
8218 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
8219
df9a7357
JB
82202011-09-29 Juanma Barranquero <lekktu@gmail.com>
8221
8222 * descr-text.el (describe-char-categories): Accept category
8223 descriptions more than one line long.
8224
a8406c20
SM
82252011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
8226
88d9610c
SM
8227 * simple.el (delete-trailing-whitespace): Fix last change.
8228
a5daf810
SM
8229 * progmodes/perl-mode.el (perl-syntax-propertize-function):
8230 Don't confuse "y => 3" as the beginning of a `y' operation.
8231
a8406c20
SM
8232 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
8233 object has more than 4 slots (bug#9613).
8234
a239d4e9
JB
82352011-09-28 Juanma Barranquero <lekktu@gmail.com>
8236
8237 * subr.el (with-output-to-temp-buffer):
8238 * net/quickurl.el (quickurl, quickurl-browse-url):
8239 Fix typos in docstrings.
8240
693fbdb6
EZ
82412011-09-27 Eli Zaretskii <eliz@gnu.org>
8242
8243 * minibuffer.el (completion-styles)
8244 (completion-category-overrides): Cross reference each other in doc
8245 strings.
8246
8b457e28
GM
82472011-09-27 Glenn Morris <rgm@gnu.org>
8248
8249 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
8250 to split-string. (Bug#9606)
8251
85a16208
LMI
82522011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
8253
8254 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
8255 (bug#9615).
8256
502f9ebd
CY
82572011-09-27 Chong Yidong <cyd@stupidchicken.com>
8258
8259 * emacs-lisp/package.el (list-packages): Fix echo area message.
8260
7690bdea
LL
82612011-09-27 Leo Liu <sdl.web@gmail.com>
8262
8263 * ido.el (ido-read-internal): Accept cons cell HIST arg.
8264
e2ee6f30
MA
82652011-09-25 Michael Albinus <michael.albinus@gmx.de>
8266
8267 * net/dbus.el (dbus-unregister-object): Don't release services for
8268 registered signals. (Bug#9581)
8269
f3f98342
TZ
82702011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
8271
8272 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
8273 function that picks between cfengine 2 and 3 support
8274 automatically. Update docs accordingly.
8275
dd7aa8dd
KH
82762011-09-22 Kenichi Handa <handa@m17n.org>
8277
8278 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
8279 ZERO.
8280 (indian-itrans-v5-table-for-tamil): New variable.
8281 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
8282
3f2b07f8
KM
82832011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
8284
8285 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
8286 that's true if the current command involved collapsing of text.
8287 It's reset to false at the beginning of the next command.
8288 (allout-post-command-business): Move the cursor to the beginning
8289 of entry if the cursor is hidden and collapsing activity just
8290 happened.
8291
371d6a61
CY
82922011-09-24 Chong Yidong <cyd@stupidchicken.com>
8293
8294 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
8295 tracking (Bug#9541).
8296
2ac2721a
UJ
82972011-09-24 Ulf Jasper <ulf.jasper@web.de>
8298
8299 * net/newst-reader.el (newsticker-html-renderer)
1154d12e
JB
8300 (newsticker-show-news): Automatically load html rendering package
8301 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
8302 because w3m-fill-column is let-bound" and the error "Symbol's value
8303 as variable is void: w3m-fill-column".
2ac2721a 8304
fac7ae53
MA
83052011-09-24 Michael Albinus <michael.albinus@gmx.de>
8306
8307 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
8308 Release services only if they are defined. (Bug#9581)
8309
e08b633b
RS
83102011-09-23 Richard Stallman <rms@gnu.org>
8311
e488d29c
RS
8312 * textmodes/paragraphs.el (forward-sentence): For backwards case,
8313 distinguish start of paragraph from start of its text.
8314
19c38752
RS
8315 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
8316
e08b633b
RS
8317 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
8318 (rmail-generate-viewer-buffer): Put that hook on view buffer.
8319 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
8320
0a39f27e
AS
83212011-09-23 Andreas Schwab <schwab@linux-m68k.org>
8322
8323 * international/mule-diag.el (mule-diag): Insert a newline after
8324 each fontset description.
8325
db4e950d
SM
83262011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8327
8328 * simple.el (delete-trailing-whitespace):
8329 Document last change; simplify.
8330
eca3f3ea
PW
83312011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
8332
d68e189a
PW
8333 * simple.el (delete-trailing-whitespace): Also delete
8334 extra newlines at the end of the buffer.
8335
eca3f3ea
PW
8336 * textmodes/picture.el: Make motion commands obey shift-select-mode.
8337 (picture-newline): Use forward-line so as to ignore fields.
8338
01c157cc
SM
83392011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8340
8341 * subr.el (with-wrapper-hook): Fix edebug spec.
8342
022de23e
LMI
83432011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
8344
8345 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
8346 (bug#4538).
8347
91683089
MA
83482011-09-23 Michael Albinus <michael.albinus@gmx.de>
8349
eca3f3ea
PW
8350 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
8351 Fix nasty bug using wrong cached values.
91683089 8352
5bdd6fa4
AM
83532011-09-23 Alan Mackenzie <acm@muc.de>
8354
8355 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
8356
97adfb97
CY
83572011-09-23 Chong Yidong <cyd@stupidchicken.com>
8358
8359 * window.el (pop-to-buffer): Ensure right window is selected if we
8360 chose another frame.
8361
d4ef2b50
EZ
83622011-09-22 Eli Zaretskii <eliz@gnu.org>
8363
8364 * simple.el (what-cursor-position): Use get-char-property-change
8365 and next-single-char-property-change, to be able to show display
8366 properties that come from overlays as well as text properties.
8367
72258fe5
CY
83682011-09-22 Chong Yidong <cyd@stupidchicken.com>
8369
8370 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
8371
8372 * cmuscheme.el (run-scheme, switch-to-scheme):
8373 * cus-edit.el (customize-group, custom-buffer-create)
8374 (customize-browse):
8375 * info.el (info):
8376 * shell.el (shell):
8377 * mail/sendmail.el (mail):
8378 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
8379
8f098516
RS
83802011-09-22 Richard Stallman <rms@gnu.org>
8381
8382 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
8383 move back only to line beg, don't move back over blank lines.
8384
e74f1bb6
MA
83852011-09-22 Michael Albinus <michael.albinus@gmx.de>
8386
8387 * files.el (copy-directory): Set directory attributes only in case
8388 they could be retrieved from the source directory. (Bug#9565)
8389
bfeef8b6
DK
83902011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
8391
8392 * progmodes/hideshow.el (hs-looking-at-block-start-p)
8393 (hs-find-block-beginning, hs-hide-level-recursive):
8394 Ignore strings as well as comments. (Bug#9502)
8395
7e423bb8
AS
83962011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
8397
8398 * progmodes/sql.el (sql-comint-postgres):
8399 Convert port number to a string. (Bug#9566)
8400
b4d72fcf
MR
84012011-09-22 Martin Rudalics <rudalics@gmx.at>
8402
8403 * window.el (quit-window): Undedicate window when switching to
8404 previous buffer. Reported by Thierry Volpiatto
8405 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
8406 (special-display-popup-frame): When popping up a new frame reset
8407 its previous buffers to nil. Simplify code.
b4d72fcf 8408
a7b88dc6
MA
84092011-09-21 Michael Albinus <michael.albinus@gmx.de>
8410
8411 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
8412 and process filter, as done also in `shell-command'.
8413
cf4eacfd
MR
84142011-09-21 Martin Rudalics <rudalics@gmx.at>
8415
eca3f3ea 8416 * window.el (set-window-buffer-start-and-point):
1154d12e
JB
8417 Call set-window-start with NOFORCE argument t.
8418 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
cf4eacfd
MR
8419 (quit-window): Reword doc-string. Handle new format of
8420 quit-restore parameter. Don't delete window if it has a
8421 previous buffer we can show instead of the present one.
8422 (display-buffer-record-window): Rewrite using a new format for
8423 the quit-restore window parameter
8424 (special-display-popup-frame, display-buffer-same-window)
8425 (display-buffer-reuse-window, display-buffer-pop-up-frame)
8426 (display-buffer-pop-up-window, display-buffer-use-some-window):
8427 Adapt symbol passed to display-buffer-record-window.
8428 * help.el (help-window-setup): Handle new format of quit-restore
8429 parameter.
8430
8d28cb95
SM
84312011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
8432
94ab793f
SM
8433 * faces.el (face-list): Fix docstring (bug#9564).
8434
8d28cb95
SM
8435 * window.el (display-buffer--action-function-custom-type):
8436 Don't include internal functions in the Custom interface.
8437
3820edeb
JL
84382011-09-20 Juri Linkov <juri@jurta.org>
8439
8440 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
8441 (Info-forward-node, Info-backward-node, Info-next-preorder)
8442 (Info-last-preorder): Use it. (Bug#9528)
8443
5147931d
JL
84442011-09-20 Juri Linkov <juri@jurta.org>
8445
8446 * info.el (Info-last-preorder): Visit last menu item only when
8447 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
8448
cf499a1a
JD
84492011-09-20 Julien Danjou <julien@danjou.info>
8450
8451 * password-cache.el (password-cache-remove): Remove entries even if the
8452 value is nil, so that password with a nil value (negative caching) is
8453 possible to invalidate.
8454
f84e2fe2
LM
84552011-09-20 Lawrence Mitchell <wence@gmx.li>
8456
8457 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
8458 all whitespace around breakpoint. (Bug#9553)
8459 (f90-find-breakpoint): Only break at whitespace inside a comment.
8460
78054a46
SM
84612011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
8462
8463 * minibuffer.el (completion-file-name-table): Keep track of errors.
8464 (completion-table-with-predicate): Handle the case where pred1 is nil.
8465 * pcomplete.el (pcomplete-completions-at-point): Simplify.
8466
345083b2
SM
84672011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8468
e24e27be
SM
8469 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
8470 (debugger-return-value): Signal an error if the debugging context does
8471 not await any return value.
8472
345083b2
SM
8473 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
8474 * image-mode.el (image-toggle-display-text)
8475 (image-toggle-display-image): Stay away from evil `intangible'.
8476
08d355e3
LL
84772011-09-19 Leo Liu <sdl.web@gmail.com>
8478
8479 * replace.el (occur-revert-arguments): Make it permanent-local.
8480 (occur-mode): Don't call font-lock-defontify.
8481
f01da43f
CY
84822011-09-19 Chong Yidong <cyd@stupidchicken.com>
8483
8484 * net/ldap.el (ldap-search-internal): Don't push empty search
8485 result (Bug#9508).
8486
b6072fa6
SM
84872011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8488
8489 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
8490
443d6696
MA
84912011-09-19 Michael Albinus <michael.albinus@gmx.de>
8492
8493 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
8494 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
8495
7cc6e154
JL
84962011-09-18 Juri Linkov <juri@jurta.org>
8497
8498 * buff-menu.el (Buffer-menu-mode-map):
8499 * dired.el (dired-mode-map):
8500 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
8501 (lisp-interaction-mode-map):
8502 * emacs-lisp/package.el (package-menu-mode-map):
8503 * epa.el (epa-key-list-mode-map):
8504 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
8505 (menu-bar-options-menu):
8506 * outline.el (outline-mode-menu-bar-map):
8507 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
8508 * vc/vc-dir.el (vc-dir-menu-map):
8509 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
8510 Capitalize non-function content words in menu item strings.
8511
8512 * dired.el (dired-mode-map): Add menu item for
8513 `image-dired-dired-toggle-marked-thumbs'.
8514
80302a81
JL
85152011-09-18 Juri Linkov <juri@jurta.org>
8516
8517 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
8518 to `isearch-case-fold-search' and restore its original value
8519 after the `isearch-mode' call.
8520
46c5cf66
JL
85212011-09-18 Juri Linkov <juri@jurta.org>
8522
8523 * progmodes/grep.el (grep-process-setup): Don't check code for 1
8524 because `zgrep' returns 1 for successful matches (bug#9226).
8525
d18b513b
JL
85262011-09-18 Juri Linkov <juri@jurta.org>
8527
8528 * info.el (Info-extract-menu-node-name): Check the second match
8529 for empty string (second test-case of bug#9528).
8530 (Info-last-preorder): Let-bind `Info-history' to nil to not add
8531 intermediate nodes to the history (first test-case of bug#9528).
8532
72753f87
JL
85332011-09-18 Juri Linkov <juri@jurta.org>
8534
8535 * info.el (Info-mode-syntax-table): New variable.
1154d12e 8536 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
72753f87 8537
c9384295
JL
85382011-09-18 Juri Linkov <juri@jurta.org>
8539
1154d12e
JB
8540 * info.el (Info-file-supports-index-cookies):
8541 Increment line-beginning-position's arg from 3 to 4 because makeinfo
8542 outputs one more line for long file names (bug#4142).
c9384295 8543
d473dce8
CY
85442011-09-18 Chong Yidong <cyd@stupidchicken.com>
8545
8546 * newcomment.el (comment-normalize-vars): If prompting for
8547 comment-start, set comment-start-skip too (Bug#8424).
8548
2176854d
JB
85492011-09-18 Johan Bockgård <bojohan@gnu.org>
8550
8551 * icomplete.el: Fix previous fix of Bug#5849.
8552 (icomplete-mode): Don't set completion-show-inline-help.
8553 (icomplete-minibuffer-setup): Set completion-show-inline-help
8554 locally during icompletion.
8555
3aace4e4
CY
85562011-09-18 Chong Yidong <cyd@stupidchicken.com>
8557
c940224f
CY
8558 * woman.el (woman2-process-escapes): Don't delete unrecognized
8559 escapes (Bug#7843).
8560
3aace4e4
CY
8561 * files.el (inhibit-first-line-modes-regexps): Add image files.
8562 (hack-local-variables-prop-line): Return nil for malformed
8563 prop-lines (Bug#9044).
8564
710dec63
MA
85652011-09-18 Michael Albinus <michael.albinus@gmx.de>
8566
8567 * net/tramp.el (top): Don't require 'shell.
8568 (tramp-methods): Fix docstring.
8569 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
8570 Return complete remote file name. Handle "smb" case.
8571 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
8572 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
8573
8574 * net/tramp-compat.el (top): Require 'shell.
8575
8576 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8577 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
8578 `tramp-current-host'.
8579 (tramp-get-remote-tmpdir): Remove.
8580
8581 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
8582 `tramp-tmpdir' entries.
8583 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
8584 (tramp-smb-handle-file-attributes): Ignore errors.
8585 (tramp-smb-wait-for-output): Check also for process end.
8586
5d5ac8ec
LMI
85872011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
8588
8589 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
8590 when sending QUIT (bug#9312).
8591
8c0f49f0
CY
85922011-09-17 Chong Yidong <cyd@stupidchicken.com>
8593
8594 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
8595 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
8596 occur-mode-display-occurrence.
8597 (occur-edit-mode): Add usage message.
8598 (occur-cease-edit): New command.
8599 (occur-after-change-function): Use text properties to find the
8600 position of the prefix text.
8601 (occur-engine): Set stickiness of prefix text properties.
8602
8f1383f7
GM
86032011-09-17 Glenn Morris <rgm@gnu.org>
8604
8605 * progmodes/etags.el (complete-tag):
8606 Fix call to completion-in-region. (Bug#9526)
8607
744ba0e3
JL
86082011-09-17 Juri Linkov <juri@jurta.org>
8609
8610 * textmodes/ispell.el (ispell-word): Add to the error message
8611 the word, ispell program name and current dictionary (bug#9121).
8612 (ispell-tex-arg-end): Capitalize "error" in the error message.
8613
d9bbf400
AS
86142011-09-17 Andreas Schwab <schwab@linux-m68k.org>
8615
8616 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
8617 check. (Bug#4251)
8618
8da11505
JL
86192011-09-17 Juri Linkov <juri@jurta.org>
8620
8621 * window.el (window-safe-min-height, window-safe-min-width):
8622 Fix typos (followup to bug#9522).
8623
a91adc7e
SJ
86242011-09-17 Sven Joachim <svenjoac@gmx.de>
8625
8626 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
8627
064f328a
EZ
86282011-09-16 Eli Zaretskii <eliz@gnu.org>
8629
8630 * simple.el (line-move): If goal-column is set, move by logical
8631 lines, not by display lines. (Bug#971)
8632 (next-line, previous-line, goal-column, line-move-visual): Doc fix
8633 to reflect the above change.
8634
e69df516
SM
86352011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8636
8637 * image.el (imagemagick-register-types): Use regexp-opt.
8638
cbb0f9ab
CY
86392011-09-15 Chong Yidong <cyd@stupidchicken.com>
8640
8641 * window.el (display-buffer-base-action): Rename from
8642 display-buffer-default-action. Make default value empty.
8643 (display-buffer-overriding-action): Convert to defvar.
8644 (display-buffer-fallback-action): New var.
8645
25322144
CY
86462011-09-15 Chong Yidong <cyd@stupidchicken.com>
8647
8648 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
8649 declaration.
8650 (package--add-to-archive-contents): If there is a duplicate entry
8651 with an older version, remove it.
8652 (package-menu-mark-delete, package-menu-mark-install)
8653 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
8654 (package-menu-mark-obsolete-for-deletion):
8655 Use package-menu-get-status instead of a regexp search.
25322144
CY
8656 (package-menu-get-status): Use tabulated-list-entry.
8657 (package-menu-mark-upgrades): New command.
d770725a 8658 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
8659 (package-menu-execute): Do installation before deletion.
8660 (package-menu-refresh, package-menu-execute): Use derived-mode-p
8661 instead of checking major-mode.
8662 (package-menu--find-upgrades): New function.
8663
7520339c
LMI
86642011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
8665
8666 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
8667 passwords in the log buffer.
65a046c4
LMI
8668 (smtpmail-process-filter): Update the process marker so that the
8669 "broken by peer" status message is inserted in the right place.
7520339c 8670
d3c30954
SM
86712011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
8672
3fe48822
SM
8673 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
8674 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
8675 bibtex-completion-at-point-function.
8676 (bibtex-completion-at-point-function): Use them.
8677
1b8b3954
SM
8678 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
8679
d3c30954
SM
8680 * mpc.el (mpc-constraints-tag-lookup): New function.
8681 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
8682 also to browser "album|playlist".
8683
72779976
JL
86842011-09-14 Juri Linkov <juri@jurta.org>
8685
8686 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
8687 (isearch-edit-string): Use length of `isearch-string' when
8688 `isearch-fail-pos' returns nil.
8689 (isearch-message): Remove duplicate code and call
8690 `isearch-fail-pos' with arg `t'.
8691
a0bf2bcd
CY
86922011-09-14 Chong Yidong <cyd@stupidchicken.com>
8693
17bb0a2d
CY
8694 * replace.el (occur-mode-goto-occurrence): Don't force using other
8695 window (Bug#9499).
8696
a0bf2bcd
CY
8697 * dired-aux.el (dired-do-chmod): Don't provide initial input.
8698
f678e0b6
MR
86992011-09-14 Martin Rudalics <rudalics@gmx.at>
8700
8701 * window.el (display-buffer-window): Remove.
8702 (display-buffer-record-window): Use help-setup window parameter
8703 instead of variable display-buffer-window.
8704 (display-buffer-function, special-display-buffer-names)
8705 (special-display-function): Mention help-setup parameter instead
8706 of display-buffer-window in doc-string.
d3c30954
SM
8707 * help.el (help-window-setup): New argument help-window.
8708 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
8709 Reword some messages.
8710 (with-help-window): Pass window used for displaying the buffer
8711 to help-window-setup. Don't set display-buffer-window.
8712
8e39b2e8
GM
87132011-09-13 Glenn Morris <rgm@gnu.org>
8714
8715 * emacs-lisp/debug.el (debugger-make-xrefs):
8716 Preserve point. (Bug#9462)
8717
85e9c04b
CY
87182011-09-13 Chong Yidong <cyd@stupidchicken.com>
8719
8720 * window.el (window-deletable-p): Use next-frame.
8721
1b36ed6a
MR
87222011-09-13 Martin Rudalics <rudalics@gmx.at>
8723
8724 * window.el (window-auto-delete): Remove.
8725 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 8726 dedication and previous buffers.
1b36ed6a
MR
8727 (switch-to-prev-buffer): Don't delete window.
8728 (delete-windows-on): Delete a window's frame if and only if the
8729 window is dedicated.
8730 (replace-buffer-in-windows): Delete buffer's window or frame if
8731 and only if window is dedicated.
8732 (quit-window): Handle quit-restore as before last change.
4d61f28d 8733 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 8734
ef8ef9fb
CY
87352011-09-13 Chong Yidong <cyd@stupidchicken.com>
8736
8737 * window.el (window-deletable-p): Never delete the last frame on a
8738 given terminal.
8739
b2cba41e
GM
87402011-09-13 Glenn Morris <rgm@gnu.org>
8741
8742 * help.el (describe-key-briefly): Copy previous standard-output change.
8743
51553db6 87442011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
8745
8746 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
8747
b7556719
GM
87482011-09-13 Glenn Morris <rgm@gnu.org>
8749
8750 * emacs-lisp/lisp-mode.el (lisp-indent-function):
8751 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
8752
64b51947
CY
87532011-09-12 Chong Yidong <cyd@stupidchicken.com>
8754
8755 * dired-aux.el (dired-mark-read-string): Don't return default
8756 value on empty input (Bug#9361).
8757 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
8758 Omit initial minibuffer contents.
8759 (dired-do-chmod): Signal an error on empty input.
8760 (dired-mark-read-string): Don't return default on empty input.
8761
8762 * files.el (file-modes-symbolic-to-number): Doc fix.
8763
393a301e
SM
87642011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8765
8766 * international/mule-cmds.el (ucs-completions): Remove.
8767 (read-char-by-name): Use complete-with-action instead; add metadata.
8768
fa5660f9
CY
87692011-09-11 Chong Yidong <cyd@stupidchicken.com>
8770
8771 * window.el (display-buffer--action-function-custom-type)
8772 (display-buffer--action-custom-type): New vars.
8773 (display-buffer-alist, display-buffer-default-action)
8774 (display-buffer-overriding-action): Add defcustom types.
8775
4a592f66
CY
8776 * frame.el (delete-other-frames): Doc fix (Bug#276).
8777
73d56dbd
LMI
87782011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8779
8780 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
8781
37ac18a3
CY
87822011-09-11 Chong Yidong <cyd@stupidchicken.com>
8783
8784 Change modes that used same-window-* vars to use switch-to-buffer.
8785
8786 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
8787 Use switch-to-buffer.
8788
8789 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
8790 (customize-browse, custom-buffer-create-other-window):
8791 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
8792
8793 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
8794 (Info-prev, Info-up, Info-speedbar-goto-node)
8795 (info-display-manual): Use switch-to-buffer.
8796 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
8797
8798 * mail/sendmail.el (mail): Use switch-to-buffer.
8799 (mail-recover): Use switch-to-buffer-other-window.
8800
8801 * cmuscheme.el (run-scheme, switch-to-scheme):
8802 * ielm.el (ielm):
8803 * shell.el (shell):
8804 * net/rlogin.el (rlogin):
8805 * net/telnet.el (telnet, rsh):
8806 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
8807
10195bd6
AS
88082011-09-11 Andreas Schwab <schwab@linux-m68k.org>
8809
8810 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
8811
b322f63a
LMI
88122011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8813
39d7fed6
LMI
8814 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
8815 so don't mention it (bug#9301).
ba5a81f1 8816 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 8817
ee0e9f11
LMI
8818 * faces.el (face-spec-set-match-display): Make `(type graphic)'
8819 match `x', `w32' and `ns', like the manual says (bug#9029).
8820
0b1c89c1 8821 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
8822 (process-kill-buffer-query-function): Mention the buffer name in
8823 the query.
0b1c89c1 8824
77549ea8
LMI
8825 * image-mode.el (image-next-line): The line parameter is mandatory
8826 (bug#9258).
8827
803ef892
LMI
8828 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
8829 which can be useful (bug#9301).
8830
12980837
LMI
8831 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
8832
91054f8f
LMI
8833 * subr.el (match-string): Mention that the current buffer should
8834 be the same as the search was done in (bug#9282).
8835
b322f63a
LMI
8836 * facemenu.el: Disable the remove-* commands if the mark isn't
8837 active (bug#9162).
8838
3199b96f
CY
88392011-09-10 Chong Yidong <cyd@stupidchicken.com>
8840
8841 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
8842 of display-buffer.
8843 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
8844
8845 * replace.el (occur-mode-goto-occurrence)
8846 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
8847 and display-buffer.
8848
8849 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
8850 display-buffer.
8851
8852 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
8853 special-display and same-window variables.
8854 (mail-other-window): Use switch-to-buffer-other-window.
8855 (mail-other-frame): USe switch-to-buffer-other-frame.
8856
393a301e
SM
8857 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
8858 Use display-buffer-other-frame.
3199b96f
CY
8859 (gdb-display-gdb-buffer): Use pop-to-buffer.
8860
8861 * progmodes/gud.el (gud-goto-info): Use info-other-window.
8862
8863 * progmodes/python.el: Don't set same-window-buffer-names.
8864
8865 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
8866
8867 * window.el (display-buffer-alist): Add *Python*.
8868
8319e0bf
CY
88692011-09-10 Chong Yidong <cyd@stupidchicken.com>
8870
8871 * window.el (display-buffer-alist): Add entry for buffers
8872 previously handled same-window-*.
8873 (display-buffer-alist, display-buffer-default-action)
8874 (display-buffer-overriding-action): Mark as risky.
8875 (display-buffer-alist): Document action function changes.
8876 (display-buffer--same-window-action)
8877 (display-buffer--other-frame-action): New variables.
8878 (switch-to-buffer, display-buffer-other-frame): Use them.
8879 (display-buffer): Rename reuse-frame entry to reusable-frames.
8880 (display-buffer-reuse-selected-window): Function deleted.
8881 (display-buffer-reuse-window): Handle reusable-frames alist entry.
8882 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
8883 (display-buffer-special): New function.
8884 (display-buffer--maybe-pop-up-frame-or-window): Rename from
8885 display-buffer-reuse-or-pop-window. Split off special-display
8886 part into display-buffer-special.
8887 (display-buffer-use-some-window): Don't perform any special
8888 pop-up-frames handling.
8889 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 8890 (display-buffer--maybe-same-window): Rename from
0d3ff375 8891 display-buffer-maybe-same-window.
8319e0bf 8892
919a69aa
CY
8893 * info.el: Don't set same-window-regexps.
8894 (info-setup): New function.
8895 (info-other-window, info): Call it.
8896
8897 * cus-edit.el: Don't set same-window-regexps.
8898 (customize-group): New argument.
8899 (customize-group-other-window): Use it.
8900 (customize-face, customize-face-other-window): Likewise.
8901 (custom-buffer-create-other-window): Use pop-to-buffer directly.
8902
8319e0bf
CY
8903 * net/rlogin.el:
8904 * net/telnet.el:
8905 * progmodes/gud.el: Don't set same-window-regexps.
8906
8907 * cmuscheme.el:
8908 * ielm.el:
8909 * shell.el:
8910 * mail/sendmail.el:
8911 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
8912
25173000
JL
89132011-09-10 Juri Linkov <juri@jurta.org>
8914
8915 * isearch.el (isearch-edit-string): Remove obsolete mention of
8916 `C-w' (`isearch-yank-word-or-char') from docstring.
8917 (isearch-query-replace): Fix typo in docstring (bug#9466).
8918
056e44ef
JL
89192011-09-10 Juri Linkov <juri@jurta.org>
8920
8921 * paren.el (show-paren-function): Don't show escaped parens.
8922 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
8923
c3760c17
EZ
89242011-09-10 Eli Zaretskii <eliz@gnu.org>
8925
8926 * mail/sendmail.el (mml-to-mime, mml-attach-file)
8927 (mm-default-file-encoding): Remove autoload forms, they are
8928 replaced with autoload cookies in mml.el and mm-encode.el.
8929 (mail-add-attachment): New command.
8930 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
8931 (mail-mode): Mention mail-insert-file and mail-add-attachment in
8932 the doc string.
8933 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
8934
fece895e
RT
89352011-09-10 Reuben Thomas <rrt@sc3d.org>
8936
e69df516
SM
8937 * simple.el (count-words-region): Use buffer if there's no region
8938 (bug#9429).
fece895e 8939
5e68ce4a
JL
89402011-09-09 Juri Linkov <juri@jurta.org>
8941
8942 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
8943 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
8944 (wdired-isearch-filter-read-only): New function. (Bug#6362)
8945
0a6b9622
AM
89462011-09-09 Alan Mackenzie <acm@muc.de>
8947
8948 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
8949 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
8950
14a29deb
EZ
89512011-09-09 Eli Zaretskii <eliz@gnu.org>
8952
8953 Fix for Savannah bug#9392.
8954 * simple.el (mail-encode-mml): New defvar.
8955
8956 * mail/rmail.el (mail-encode-mml): Add a defvar.
8957 (rmail-enable-mime-composing): Default to t.
8958 (rmail-forward): Use MIME method of forwarding only if both
8959 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
8960 Set mail-encode-mml non-nil if the MIME method was used.
8961
8962 * mail/sendmail.el (mml-to-mime): Add autoload form.
8963 (mail-encode-mml): Add a defvar.
8964 (mail-mode): Make mail-encode-mml buffer-local and initialize it
8965 to nil.
8966 (mail-send): If mail-encode-mml is non-nil, run the outgoing
8967 message through mml-to-mime, and reset mail-encode-mml to nil.
8968
28c45130
GM
89692011-09-09 Glenn Morris <rgm@gnu.org>
8970
8971 * woman.el (woman-if-body): When processing an .el block,
8972 do not delete the next .el block as well. (Bug#9447)
69f4b618 8973 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 8974
9b1c252e
MR
89752011-09-08 Martin Rudalics <rudalics@gmx.at>
8976
8977 * window.el (window-deletable-p): Make sure window is live before
8978 invoking window-prev-buffers.
8979
567457e3
LL
89802011-09-08 Leo Liu <sdl.web@gmail.com>
8981
8982 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
8983
97f05794
JL
89842011-09-08 Juri Linkov <juri@jurta.org>
8985
8986 * progmodes/compile.el (compilation-environment): Make it
8987 a defcustom (bug#8340).
8988
8b0874b5
MR
89892011-09-08 Martin Rudalics <rudalics@gmx.at>
8990
8991 * window.el (frame-auto-delete): Rename to window-auto-delete.
8992 Make it control auto-deletion of windows and/or frames.
8993 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 8994 for deleting window/frame. (Bug#9419)
8b0874b5
MR
8995 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
8996 Rewrite handling of case when window/frame can be deleted.
8997 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 8998 argument t. (Bug#9456)
8b0874b5 8999
4feb6e73
CY
90002011-09-07 Chong Yidong <cyd@stupidchicken.com>
9001
9002 * help-mode.el (help-mode): Restore autoload.
9003
91ab9c13
JL
90042011-09-07 Juri Linkov <juri@jurta.org>
9005
9006 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
9007 `compilation-environment'. Set buffer-local
9008 `compilation-environment' to `thisenv' later after (funcall mode).
9009 (Bug#8340)
9010
9011 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
9012 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
9013 instead of replacing its value. (Bug#8340)
9014
0527e251
JL
90152011-09-07 Juri Linkov <juri@jurta.org>
9016
9017 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
9018 based on text properties put by `grep-filter' instead of matching
9019 escape sequences.
9020 (grep-mode): Set buffer-local `compilation-error-screen-columns'
9021 to the value of `grep-error-screen-columns' (bug#9438).
9022
249f792c
JL
90232011-09-07 Juri Linkov <juri@jurta.org>
9024
9025 * simple.el (next-error-highlight, next-error-highlight-no-select):
9026 Doc fix (bug#9432).
9027
ff7271b9
OT
90282011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
9029
9030 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
9031 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
9032
183fc730
LL
90332011-09-07 Leo Liu <sdl.web@gmail.com>
9034
9035 * net/rcirc.el (rcirc-mode): Conditionally initialize
9036 rcirc-input-ring.
9037
77694924
SM
90382011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9039
9040 * emacs-lisp/find-func.el (find-function-C-source): Only set
9041 find-function-C-source-directory after checking that we found a source
9042 file there (bug#9440).
9043
d809b8eb
AM
90442011-09-06 Alan Mackenzie <acm@muc.de>
9045
9046 * isearch.el (isearch-other-meta-char): Wherever a key list is
9047 unread, "unread" the prefix arg, too. This fixes bug #8901.
9048
453de99f
OG
90492011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
9050
9051 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
9052
90439906
JL
90532011-09-05 Juri Linkov <juri@jurta.org>
9054
9055 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
9056
f62bd846
JL
90572011-09-05 Juri Linkov <juri@jurta.org>
9058
9059 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
9060 keeping point where processing of grep matches begins, and
9061 continue to delete remaining escape sequences from the same point.
9062 (grep-filter): Make leading zero optional in "0?1;31m" because
9063 git-grep emits "\033[1;31m" escape sequences unlike expected
9064 "\033[01;31m" as GNU Grep does (bug#9408).
9065 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
9066
045820ec
JL
90672011-09-05 Juri Linkov <juri@jurta.org>
9068
9069 * subr.el (y-or-n-p): Capitalize "yes".
9070
f5e29b9b
MA
90712011-09-04 Michael Albinus <michael.albinus@gmx.de>
9072
9073 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
9074 `tramp-cache-unload-hook' where appropriate.
9075 (tramp-methods): Rename `tramp-remote-sh' to
9076 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
9077 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
9078
9079 * net/tramp-sh.el (top): Don't require 'shell.
9080 (tramp-methods): Add `tramp-remote-shell' and
9081 `tramp-remote-shell-args' entries.
9082 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
9083 (tramp-sh-handle-shell-command): Remove.
9084 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9085 Use `tramp-remote-shell'.
9086
2784c434
CY
90872011-09-03 Chong Yidong <cyd@stupidchicken.com>
9088
393a301e 9089 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
9090 (sendmail-query-once): Save directly to send-mail-function.
9091 Update message-send-mail-function too.
9092
9093 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
9094
464cdf56
CS
90952011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9096
9097 * progmodes/python.el (python-mode-map): Use correct function to
9098 start python interpreter from menu-bar (as reported by Geert
9099 Kloosterman).
9100 (inferior-python-mode-map): Fix typo.
393a301e 9101 (python-shell-map): Remove.
464cdf56 9102
d37e5c87
DD
91032011-09-03 Deniz Dogan <deniz@dogan.se>
9104
9105 * net/rcirc.el (rcirc-print): Simplify code for
9106 rcirc-scroll-show-maximum-output. There is no need to walk
9107 through all windows to find the right one.
9108
f3ada0ee
CS
91092011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9110
9111 * help.el (help-return-method): Doc fix.
9112
1f3c99ca
MR
91132011-09-03 Martin Rudalics <rudalics@gmx.at>
9114
9115 * window.el (window-deletable-p): Don't return a non-nil value
9116 when there's a buffer that was shown in the window before.
9117 (Bug#9419)
393a301e
SM
9118 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9119 Set window's previous buffers to nil.
1f3c99ca 9120
a3cf097f
EZ
91212011-09-03 Eli Zaretskii <eliz@gnu.org>
9122
9123 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
9124 newline before and after the tag line, so it doesn't interfere
9125 with determining the paragraph direction of bidirectional text.
9126
3d03de90
LL
91272011-09-03 Leo Liu <sdl.web@gmail.com>
9128
9129 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
9130
c3313451
CY
91312011-09-02 Chong Yidong <cyd@stupidchicken.com>
9132
393a301e 9133 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
9134 (pop-to-buffer): Change interactive spec. Pass second argument
9135 directly to display-buffer.
9136 (display-buffer): Fix interactive spec. Use functionp to
9137 distinguish between a function and a list of functions.
9138
9139 * abbrev.el (edit-abbrevs):
9140 * arc-mode.el (archive-extract):
9141 * autoinsert.el (auto-insert):
9142 * bookmark.el (bookmark-bmenu-list):
9143 * files.el (find-file):
9144 * view.el (view-buffer):
9145 * progmodes/compile.el (compilation-goto-locus):
9146 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
9147
89894cd8
CY
91482011-09-02 Chong Yidong <cyd@stupidchicken.com>
9149
9150 * window.el (display-buffer-alist): Doc fix.
9151 (display-buffer): Add docstring. Don't treat
9152 display-buffer-default specially.
9153 (display-buffer-reuse-selected-window)
9154 (display-buffer-same-window, display-buffer-maybe-same-window)
9155 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9156 (display-buffer-pop-up-window)
9157 (display-buffer-reuse-or-pop-window)
9158 (display-buffer-use-some-window): New functions.
9159 (display-buffer-default-action): Use them.
393a301e 9160 (display-buffer-default): Delete.
89894cd8
CY
9161 (pop-to-buffer-1): Fix choice of actions.
9162
ae0bc9fb
SM
91632011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
9164
9165 * minibuffer.el (completion--insert-strings): Don't get confused by
9166 completion entries that end with an LF char.
9167
e9d90883
EZ
91682011-09-01 Eli Zaretskii <eliz@gnu.org>
9169
9170 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
9171
437014c8
CY
91722011-09-01 Chong Yidong <cyd@stupidchicken.com>
9173
9174 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
9175 (display-buffer-same-window, display-buffer-other-window):
9176 New functions.
437014c8
CY
9177 (pop-to-buffer-1): New function. Use the above.
9178 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 9179 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
9180
9181 * view.el (view-buffer-other-window, view-buffer-other-frame):
9182 Just use pop-to-buffer.
9183
a5e063d5
TV
91842011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9185
9186 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
9187
793d32bb
WH
91882011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
9189
9190 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
9191
d65e4c15
RS
91922011-08-31 Richard Stallman <rms@gnu.org>
9193
9194 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
9195 of the separation of rmail-view-buffer from rmail-buffer.
9196 If you say no to "replace original", the decrypt is in the
9197 view buffer. If you say yes, the decrypt goes into the
9198 rmail buffer also.
9199
f818cd2a
MR
92002011-08-31 Martin Rudalics <rudalics@gmx.at>
9201
9202 * window.el (display-buffer-window): Rewrite doc-string.
9203 (display-buffer-record-window): New function.
9204 (display-buffer-macro-specifiers)
9205 (display-buffer-even-window-sizes, display-buffer-set-height)
9206 (display-buffer-set-width, display-buffer-in-window)
9207 (display-buffer-reuse-window, display-buffer-split-specifiers)
9208 (display-buffer-side-specifiers, display-buffer-split-window-1)
9209 (display-buffer-split-window, display-buffer-split-atom-window)
9210 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9211 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
9212 (display-buffer-other-window-means-other-frame)
9213 (display-buffer-normalize-special)
9214 (display-buffer-normalize-default)
9215 (display-buffer-normalize-argument)
9216 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
9217 (display-buffer-normalize-specifiers, display-buffer-frame)
9218 (display-buffer-same-window, display-buffer-same-frame)
9219 (display-buffer-other-window)
9220 (display-buffer-same-frame-other-window)
9221 (display-buffer-other-frame, pop-to-buffer-same-window)
9222 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
9223 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
9224 (switch-to-buffer-same-frame)
9225 (switch-to-buffer-other-window-same-frame)
9226 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
9227 (display-buffer-alist-set-1, display-buffer-alist-set-2)
9228 (display-buffer-alist-set): Remove.
9229 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
9230 (special-display-regexps, special-display-function):
9231 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
9232 parameter.
9233 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
9234 (special-display-frame-alist, special-display-popup-frame)
9235 (same-window-buffer-names, same-window-regexps, same-window-p)
9236 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
9237 (split-window-preferred-function, split-height-threshold)
9238 (split-width-threshold, window-splittable-p)
9239 (split-window-sensibly, window--try-to-split-window)
9240 (window--frame-usable-p, even-window-heights)
9241 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
9242 (window--display-buffer-2, display-buffer-other-frame):
9243 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
9244 (display-buffer-default, display-buffer-assq-regexp): New functions.
9245 (display-buffer-alist): Rewrite doc-string.
9246 (display-buffer-default-action)
9247 (display-buffer-overriding-action): New variables.
9248 (display-buffer, switch-to-buffer): Rewrite.
9249 (pop-to-buffer): Restore Emacs 23 behavior but use
9250 window-normalize-buffer-to-display.
9251 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
9252 Restore Emacs 23 behavior but use
9253 window-normalize-buffer-to-switch-to.
9254 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
9255 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
9256 Rewrite using Emacs 23 options.
f818cd2a 9257
5bc3b51d
MA
92582011-08-31 Michael Albinus <michael.albinus@gmx.de>
9259
9260 * net/tramp.el (tramp-root-regexp): Remove.
9261 (tramp-completion-file-name-regexp-unified)
9262 (tramp-completion-file-name-regexp-separate)
9263 (tramp-completion-file-name-regexp-url): Don't use leading volume
9264 letter on win32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
9265 (tramp-drop-volume-letter): Simplify definition.
9266 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 9267
b1a4f8e1
SM
92682011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9269
9270 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
9271 (bug#9356).
9272
5664fa7b
RT
92732011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
9274
b1a4f8e1 9275 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 9276
9a45d6c3
JL
92772011-08-29 Juri Linkov <juri@jurta.org>
9278
9279 * isearch.el (isearch-done): Don't display message "Mark saved"
9280 when arg `edit' is non-nil to prevent its flicker in the echo area.
9281
fb87e0fb
CY
92822011-08-28 Chong Yidong <cyd@stupidchicken.com>
9283
9284 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
9285 obsolete packages for deletion.
9286
09ac1c2a
CS
92872011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
9288
9289 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 9290 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
9291 view-mode from help-mode.
9292 (help-xref-override-view-map): Remove.
9293 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
9294 view-mode is not used anymore.
9295
7a1ff57f
CY
92962011-08-28 Chong Yidong <cyd@stupidchicken.com>
9297
9298 * server.el (server-port): Doc fix.
9299
b9696605
CY
9300 * cus-theme.el (custom-theme-choose-mode): Inherit from
9301 special-mode (Bug#9124).
9302 (custom-theme-choose-mode-map): Add special-mode to parent.
9303
ef8cdf8c
AM
93042011-08-28 Alan Mackenzie <acm@muc.de>
9305
9306 * progmodes/cc-fonts.el
9307 (c-make-font-lock-BO-decl-search-function): New function.
9308 (c-basic-matchers-after - "Fontify the clauses after various
9309 keywords"): Extract the three keyword lists for the 3 erroneous
9310 constructs from the list of four, and use the new function above
9311 in place of an old one.
9312
27de4e20
DD
93132011-08-28 Deniz Dogan <deniz@dogan.se>
9314
9315 * net/rcirc.el (rcirc-insert-prev-input)
9316 (rcirc-insert-next-input): Remove unused argument.
9317
356a3681
SM
93182011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9319
9320 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
9321
3fc9b218
AM
93222011-08-27 Alan Mackenzie <acm@muc.de>
9323
9324 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
9325 handle function pointer parameters properly.
9326
538a061c
MR
93272011-08-27 Martin Rudalics <rudalics@gmx.at>
9328
9329 * window.el (display-buffer-reuse-window): Fix case where
9330 selected window was reused with non-nil OTHER-WINDOW argument.
9331 (Bug#9381)
9332
35b1c40c
DD
93332011-08-27 Deniz Dogan <deniz@dogan.se>
9334
9335 * net/rcirc.el (rcirc-check-auth-status): Adding support for
9336 oftc's NickServ messages.
9337
2f6a3e79
GM
93382011-08-27 Glenn Morris <rgm@gnu.org>
9339
9340 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
9341
7254299e
CY
93422011-08-26 Chong Yidong <cyd@stupidchicken.com>
9343
9344 * emacs-lisp/package.el (package-install): Call package-initialize
9345 if called interactively.
9346
f8ccf167
LL
93472011-08-26 Leo Liu <sdl.web@gmail.com>
9348
9349 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
9350
3e8cd5ce
JL
93512011-08-25 Juri Linkov <juri@jurta.org>
9352
9353 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
9354 `search-whitespace-regexp' (bug#9364).
9355
93eb7113
JL
93562011-08-25 Juri Linkov <juri@jurta.org>
9357
9358 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
9359 `regexp-search-ring' to their global values to protect from
9360 updating by `read-from-minibuffer' (bug#9185).
9361
f65d1611
JL
93622011-08-25 Juri Linkov <juri@jurta.org>
9363
9364 * textmodes/ispell.el (ispell-command-loop): Add newline
9365 at the end of the "Use option `i'..." line.
9366
f1cf7a31
JL
93672011-08-25 Juri Linkov <juri@jurta.org>
9368
9369 * battery.el (display-battery-mode): If `battery-status-function'
9370 or `battery-mode-line-format' is nil, display the message and set
9371 `display-battery-mode' to nil (bug#9363).
9372
0c95fcf7
EZ
93732011-08-25 Eli Zaretskii <eliz@gnu.org>
9374
9375 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
9376 bidi-string-mark-left-to-right; they are unnecessary now.
9377
a2ebe600
DD
93782011-08-25 Deniz Dogan <deniz@dogan.se>
9379
9380 * net/quickurl.el: Documentation typo fixes.
9381
e4ed06f1
CY
93822011-08-25 Chong Yidong <cyd@stupidchicken.com>
9383
9384 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
9385
e5f1c99e
GM
93862011-08-25 Glenn Morris <rgm@gnu.org>
9387
b2948976
GM
9388 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
9389
e5f1c99e
GM
9390 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
9391 (smtpmail-via-smtp): Handle nil response from smtp.
9392
f22f4808
JL
93932011-08-24 Juri Linkov <juri@jurta.org>
9394
9395 * proced.el (proced-marked): Inherit from `error' instead of
9396 `font-lock-warning-face'.
9397
9398 * ibuffer.el (ibuffer-marked-face): Change default face from
9399 `font-lock-warning-face' to `warning'.
9400 (ibuffer-deletion-face): Change default face from
9401 `font-lock-type-face' to `error'.
9402
9403 * battery.el (battery-update): Use the face `error' instead of
9404 `font-lock-warning-face' (bug#6117).
9405
6a93965e
JL
94062011-08-24 Juri Linkov <juri@jurta.org>
9407
9408 * faces.el (success): Change face color from "Green3" to
9409 "ForestGreen" on light background (bug#9353).
9410
1ed43b09
CY
94112011-08-24 Chong Yidong <cyd@stupidchicken.com>
9412
5664fa7b
RT
9413 * window.el (quit-window): Rename from quit-restore-window.
9414 Use same arglist as old quit-window.
1ed43b09
CY
9415 (frame-auto-delete): Doc fix.
9416
9417 * view.el (view-mode-exit): Use quit-window.
9418
11dcdbb2
JL
94192011-08-24 Juri Linkov <juri@jurta.org>
9420
9421 * isearch.el (isearch-ring-adjust1): Start visiting previous
9422 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
9423 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
9424 for empty search string (when the last search string is reused
9425 automatically) to adjust the isearch ring to the last element and
9426 prepare the correct index for further M-p commands (bug#9185).
9427
de62b4df
KH
94282011-08-24 Kenichi Handa <handa@m17n.org>
9429
9430 * international/ucs-normalize.el: If decomposition property of
9431 CHAR is the default one (i.e. a list of CHAR itself), treat it as
9432 nil.
9433 (nfd, nfkd): Likewise.
9434
963b492b
SM
94352011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
9436
9437 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
9438 from process filters aren't reliably transmitted to the surrounding
9439 accept-process-output.
9440 (mpc-proc-check): New function.
9441 (mpc-proc-sync): Use it (bug#8293)
9442
93b6b5e1
SM
94432011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9444
9445 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
9446 Add compatibility functions (bug#9313).
9447
bca633fb
EZ
94482011-08-23 Eli Zaretskii <eliz@gnu.org>
9449
b177498a
EZ
9450 * cus-start.el (all): Add entry for bidi-paragraph-direction.
9451
6df6ae42 9452 * international/uni-bidi.el: Regenerate.
bca633fb 9453
0902a04e
KH
94542011-08-23 Kenichi Handa <handa@m17n.org>
9455
9456 * international/charprop.el:
9457 * international/uni-bidi.el:
9458 * international/uni-category.el:
9459 * international/uni-combining.el:
9460 * international/uni-comment.el:
9461 * international/uni-decimal.el:
9462 * international/uni-decomposition.el:
9463 * international/uni-digit.el:
9464 * international/uni-lowercase.el:
9465 * international/uni-mirrored.el:
9466 * international/uni-name.el:
9467 * international/uni-numeric.el:
9468 * international/uni-old-name.el:
9469 * international/uni-titlecase.el:
9470 * international/uni-uppercase.el: Regenerate.
9471
3bbf23bc
MR
94722011-08-23 Martin Rudalics <rudalics@gmx.at>
9473
9474 * help.el (help-window-setup): Fix message displayed when other
9475 window is reused. (Bug#9341)
9476
b3fd59bd
SM
94772011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9478
1802e444
SM
9479 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
9480 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
9481
b3fd59bd
SM
9482 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
9483 Mark obsolete.
9484 * shell.el (shell-parse-pcomplete-arguments): New function.
9485 (shell-completion-vars): Use it instead (bug#9160).
9486
4eb61348
SM
94872011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
9488
867cab74
SM
9489 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
9490 strings and comments (bug#9333).
9491
4eb61348
SM
9492 * emacs-lisp/debug.el (debug-arglist): New function.
9493 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
9494 (debug-on-entry-1): Handle interpreted closures (bug#9120).
9495
262a1439
JL
94962011-08-22 Juri Linkov <juri@jurta.org>
9497
56ee679c
JL
9498 * progmodes/compile.el (compilation-mode-font-lock-keywords):
9499 Revert regexp that highlights output switches to its old
9500 pre-2010-10-28 value and remove one `?' from it (bug#9319).
9501
262a1439
JL
9502 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
9503 to check for empty output (bug#9226).
9504
f13f86fb
CY
95052011-08-22 Chong Yidong <cyd@stupidchicken.com>
9506
9507 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
9508 symbol-constituent as the default, as that stops font-lock from
9509 working properly (Bug#8843).
9510
c65c9622
LMI
95112011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9512
9513 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
9514 `coding-system-for-*' around the process open call to avoid
9515 auth-source side effects.
e7f2c178 9516 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
9517 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
9518 probe hangs.
c65c9622 9519
23a8a5ab
CY
95202011-08-21 Chong Yidong <cyd@stupidchicken.com>
9521
ff98b2dd
CY
9522 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
9523
23a8a5ab
CY
9524 * emacs-lisp/find-func.el (find-function-noselect): New arg
9525 lisp-only.
9526
9527 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
9528 signal an error for built-in functions (Bug#6664).
9529
f5e3c598
LMI
95302011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9531
9532 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
9533 (smtpmail-try-auth-methods): Use it.
9534
a3f2468a
CY
95352011-08-21 Chong Yidong <cyd@stupidchicken.com>
9536
2c34e8da
CY
9537 * font-lock.el (font-lock-fontify-region)
9538 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
9539 (font-lock-default-unfontify-buffer)
9540 (font-lock-default-fontify-region)
9541 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
9542
b3fd59bd
SM
9543 * progmodes/compile.el (compilation-error-properties):
9544 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
9545 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
9546 `ant' regexp.
ee31aabc 9547
a3f2468a
CY
9548 * net/browse-url.el (browse-url-firefox): Don't call
9549 browse-url-firefox-sentinel unless using -remote (Bug#9328).
9550
8e999f70
GM
95512011-08-20 Glenn Morris <rgm@gnu.org>
9552
c21a496a
GM
9553 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
9554
59ee0542
GM
9555 * tutorial.el (tutorial--default-keys): Update some default bindings.
9556
8e999f70
GM
9557 * files.el (hack-local-variables): Fully ignore case for "mode:".
9558
e3715033
AM
95592011-08-20 Alan Mackenzie <acm@muc.de>
9560
9561 Resolve invalid use of a regexp in regexp-opt.
9562
4d61f28d
JB
9563 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
9564 detection for a java annotation.
e3715033 9565
4d61f28d 9566 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
9567 detection for a java annotation.
9568
4d61f28d
JB
9569 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
9570 handling for java.
e3715033
AM
9571 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
9572
04ed2e9c
CY
95732011-08-20 Chong Yidong <cyd@stupidchicken.com>
9574
9575 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
9576 (Bug#9274).
9577
826cee64
AM
95782011-08-20 Alan Mackenzie <acm@muc.de>
9579
58179cce 9580 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
9581 such a construct. Mainly for when jit-lock etc. starts a chunk
9582 here.
9583
58179cce 9584 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 9585 variable.
58179cce 9586 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
9587 c-make-font-lock-search-function.
9588 (c-make-font-lock-search-function): Use the above function.
9589 (c-make-font-lock-context-search-function): New function.
9590 (c-cpp-matchers): Enhance the preprocessor expression case with
9591 the above function
9592 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
9593 which takes an expression.
9594
9595 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
9596
13009bd8
MR
95972011-08-20 Martin Rudalics <rudalics@gmx.at>
9598
9599 * window.el (display-buffer-reuse-window)
9600 (display-buffer-pop-up-window): Don't reuse or split a side
9601 window.
9602
9234ff7f
GM
96032011-08-19 Glenn Morris <rgm@gnu.org>
9604
9605 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 9606 Downcase "Mode:". (Bug#9331)
9234ff7f 9607
f635daa1
CY
96082011-08-18 Chong Yidong <cyd@stupidchicken.com>
9609
9610 * international/characters.el: Add L and R categories.
9611
9612 * subr.el (bidi-string-mark-left-to-right): Rename from
9613 string-mark-left-to-right. Use category search.
9614
9615 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
9616
bc987f8b
JL
96172011-08-18 Juri Linkov <juri@jurta.org>
9618
9619 * faces.el (error, warning, success): New faces with definitions
9620 copied from old default values of `font-lock-warning-face',
9621 `compilation-warning', `compilation-info' (bug#6117).
9622
9623 * font-lock.el (font-lock-warning-face): Inherit from `error'.
9624
9625 * progmodes/compile.el (compilation-error): Inherit from `error'.
9626 (compilation-warning): Inherit from `warning'.
9627 (compilation-info): Inherit from `success'.
9628
9629 * dired.el (dired-marked): Inherit from `warning'.
9630 (dired-flagged): Inherit from `error'.
9631
57173b96
LMI
96322011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9633
3e79eb87
LMI
9634 * mail/smtpmail.el (auth-source): Require to avoid problems with
9635 binding variables (bug#9298). Also clean up some unused
9636 autoloads.
9637
b3fd59bd
SM
9638 * net/network-stream.el (network-stream-open-starttls):
9639 Support using starttls.el without using gnutls-cli.
57173b96 9640
02b404de
JL
96412011-08-17 Juri Linkov <juri@jurta.org>
9642
9643 * progmodes/grep.el (rgrep): Handle the case when
9644 `grep-find-command' is a cons cell (bug#9278).
9645
8c9177f2
MR
96462011-08-17 Martin Rudalics <rudalics@gmx.at>
9647
9648 * window.el (display-buffer-pop-up-frame): Run frame creation
9649 function with BUFFER current (as special-display-popup-frame
9650 does). Reported by Drew Adams.
9651
3644a0ab
DU
96522011-08-17 Daiki Ueno <ueno@unixuser.org>
9653
9654 * epa-mail.el: Simplify GnuPG group expansion using
9655 epg-expand-group.
9656 (epa-mail-group-alist, epa-mail-group-modtime)
9657 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
9658 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
9659 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
9660 Remove.
9661
5e617bc2 96622011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
9663
9664 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
9665
9c4aeabf
AM
96662011-08-16 Alan Mackenzie <acm@muc.de>
9667
9668 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
9669 Correct, to avoid the inside of macros.
9670
3a99bf64
RS
96712011-08-16 Richard Stallman <rms@gnu.org>
9672
04963aa8
RS
9673 * epa-mail.el: Handle GnuPG group definitions.
9674 (epa-mail-group-alist, epa-mail-group-modtime)
9675 (epa-mail-gnupg-conf-file): New variables.
9676 (epa-mail-parse-groups, epa-mail-sync-groups)
9677 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
9678 (epa-mail-expand-recipients): New functions.
9679 (epa-mail-encrypt): Call epa-mail-expand-recipients.
9680
177549d0
RS
9681 * mail/rmail.el (rmail-epa-decrypt): New command.
9682
fe38beef
RS
9683 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
9684 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
9685 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
9686 (epa-decrypt-armor-in-region): Make error message clearer.
9687
934eacb9
SM
96882011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
9689
9690 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
9691 and "a2b" to "ab" for `prefix'.
9692
d024fb4e
CY
96932011-08-14 Chong Yidong <cyd@stupidchicken.com>
9694
9695 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
9696 filter groups.
de148fee
CY
9697 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
9698 Fourquet (Bug#8804).
d024fb4e 9699
62f1ca49
JB
97002011-08-12 Juanma Barranquero <lekktu@gmail.com>
9701
9702 * startup.el (argi): Declare as global variable (bug#9275).
9703
9ccaaa4b
CY
97042011-08-12 Chong Yidong <cyd@stupidchicken.com>
9705
9706 * subr.el (string-mark-left-to-right): Search the entire string
9707 for RTL script, not just the terminating character. Doc fix.
9708
a3dae87a
SM
97092011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
9710
6cd18349
SM
9711 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
9712 New function.
9713 (js--regexp-literal, js-syntax-propertize-function): Remove.
9714 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
9715 (js-mode-map): Don't rebind electric keys.
9716 (js-insert-and-indent): Remove.
9717 (js-mode): Setup electric-layout and electric-indent instead.
9718
a3dae87a
SM
9719 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
9720
9d5cb631
DU
97212011-08-12 Daiki Ueno <ueno@unixuser.org>
9722
9723 * epa.el (epa-progress-callback-function): Fix the logic of
9724 displaying progress.
9725 * epa-file.el (epa-file-insert-file-contents): Make progress
9726 display more user-friendly.
9727 (epa-file-write-region): Ditto.
9728
3e26a4a2
CY
97292011-08-10 Chong Yidong <cyd@stupidchicken.com>
9730
9731 * subr.el (string-mark-left-to-right): New function.
9732
9733 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
9734 Use string-mark-left-to-right.
9735 (list-buffers-noselect): Caller changed.
9736
a3dae87a
SM
9737 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9738 Use string-mark-left-to-right.
3e26a4a2
CY
9739 (tabulated-list-print): Recenter after moving point.
9740
ac8cf6e6
JL
97412011-08-10 Juri Linkov <juri@jurta.org>
9742
9743 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
9744 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
9745 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
9746
8d96c9a4
CY
97472011-08-09 Chong Yidong <cyd@stupidchicken.com>
9748
9749 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
9750 (Bug#7554).
9751
7be1c708 97522011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
9753
9754 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
9755 character. (Bug#6594)
9756
37e11a63
CY
97572011-08-08 Chong Yidong <cyd@stupidchicken.com>
9758
839dde57
CY
9759 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
9760 (image-dired--with-db-file): New macro.
9761 (image-dired-write-tags, image-dired-remove-tag)
9762 (image-dired-create-gallery-lists, image-dired-write-comments)
9763 (image-dired-get-comment, image-dired-mark-tagged-files)
9764 (image-dired-list-tags, image-dired-gallery-generate): Use it.
9765 (image-dired-gallery-generate): Use insert-file-contents.
9766
37e11a63
CY
9767 * time.el (display-time-world-list, display-time-world-display):
9768 * time-stamp.el (time-stamp-string):
9769 * vc/add-log.el (add-change-log-entry): Use setenv instead of
9770 set-time-zone-rule (Bug#7337).
9771
0b4946c4
DU
97722011-08-08 Daiki Ueno <ueno@unixuser.org>
9773
9774 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
9775 (epg-error-to-string, epg-errors-to-string): New function.
9776 (epg-wait-for-completion): Reverse errors list.
9777 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
9778 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
9779 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
9780 (epg-sign-keys, epg-generate-key-from-file)
9781 (epg-generate-key-from-string): Format errors by using
9782 epg-errors-to-string (bug#9255).
9783 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
9784
75bfc667
JL
97852011-08-07 Juri Linkov <juri@jurta.org>
9786
9787 * faces.el (list-faces-display): Remove extra angle bracket
9788 from `help-mode-map'.
9789
9790 * info.el (Info-history-toc-nodes): Doc fix.
9791
9792 * longlines.el (longlines-mode): Doc fix.
9793
673e08bb
SM
97942011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
9795
4640dd88
SM
9796 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
9797 of statements and in a few more cases (bug#9183).
9798
673e08bb
SM
9799 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
9800 New functions.
9801 (cl-transform-lambda): Use them (bug#9239).
9802
89b3f019
MR
98032011-08-05 Martin Rudalics <rudalics@gmx.at>
9804
9805 * window.el (display-buffer-same-window)
9806 (display-buffer-same-frame, display-buffer-other-window)
9807 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
9808 (pop-to-buffer-other-window)
9809 (pop-to-buffer-same-frame-other-window)
9810 (pop-to-buffer-other-frame): Make them defuns.
9811 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
9812
640c8776
SM
98132011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
9814
9815 * subr.el (make-composed-keymap): Move from C. Change calling
9816 convention, and improve docstring to bring attention to a subtle point.
9817 * minibuffer.el (completing-read-default): Adjust accordingly.
9818
63648a95
MA
98192011-08-03 Michael Albinus <michael.albinus@gmx.de>
9820
9821 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
9822 (tramp-open-shell): Use `tramp-shell-quote-argument'.
9823
9824 * net/trampver.el: Update release number.
9825
b796c9b7
SM
98262011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
9827
9828 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
9829 "in" (bug#9190).
9830
2239d7d5
LMI
98312011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
9832
e07dd7c3
LMI
9833 * mail/sendmail.el (sendmail-query-once): Restore the current
9834 buffer after querying (bug#9074).
9835
0e6a2bd7
LMI
9836 * dired.el (dired-flagged): Use different faces for marked and
9837 flagged files (bug#6117).
9838
ce887515
LMI
9839 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
9840 (bug#4433).
9841
92f2affc
LMI
9842 * ido.el (ido-mode): Switch off the message if called
9843 non-interactively.
9844
57d5aff0
LMI
9845 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
9846 before 587, since it appears that that's more likely to work for
9847 more people.
9848
98cd6c18 9849 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 9850 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
9851 exist.
9852
b96dec83
LMI
9853 * info.el: Remove the `Info-beginning-of-buffer' function
9854 (bug#8325).
9855
b796c9b7
SM
9856 * net/network-stream.el (network-stream-open-starttls):
9857 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 9858
d90e2ea0
MR
98592011-08-01 Martin Rudalics <rudalics@gmx.at>
9860
9861 * window.el (display-buffer-in-window): Don't set dedicated status
9862 of window here (Bug#9215).
9863 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9864 (display-buffer-pop-up-side-window)
b796c9b7 9865 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 9866
cca09170
SM
98672011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
9868
9869 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
9870 before binding generated-autoload-file.
9871
027b979c
DD
98722011-08-01 Deniz Dogan <deniz@dogan.se>
9873
9874 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
9875
3c7ee4f3
MA
98762011-07-30 Michael Albinus <michael.albinus@gmx.de>
9877
9878 Sync with Tramp 2.2.2.
9879
9880 * net/trampver.el: Update release number.
9881
2cc8e51a
JL
98822011-07-30 Juri Linkov <juri@jurta.org>
9883
9884 * dired-aux.el (dired-touch-initial): Remove function.
9885 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
9886 current time, and `default' to the last modification time of the
9887 current marked file (bug#6887).
9888
a514d856
JM
98892011-07-28 Jose E. Marchesi <jemarch@gnu.org>
9890
9891 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 9892 numeric argument to read-number (bug#9163).
a514d856 9893
8a7eddd7
MA
98942011-07-27 Michael Albinus <michael.albinus@gmx.de>
9895
9896 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
9897 connection process, it could be nil.
9898
1ddd96f5
LL
98992011-07-27 Leo Liu <sdl.web@gmail.com>
9900
9901 Simplify url handling in rcirc-mode.
9902
9903 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
9904 (rcirc-browse-url-at-mouse): Remove.
9905 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
9906
b248a85d
AM
99072011-07-26 Alan Mackenzie <acm@muc.de>
9908
9909 Fontify bitfield declarations properly.
9910
9911 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
9912 (c-symbol-chars): Now exported as a lang variable.
9913 (c-not-primitive-type-keywords): New lang variable.
9914
9915 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
9916 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 9917 parsed as a bitfield declaration.
b248a85d 9918
b796c9b7
SM
9919 * progmodes/cc-engine.el (c-beginning-of-statement-1):
9920 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
9921 (c-punctuation-in): New function.
9922 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
9923 declarations properly.
9924
68575ab0
UJ
99252011-07-26 Ulf Jasper <ulf.jasper@web.de>
9926
9927 * calendar/icalendar.el (icalendar--all-events): Take care of
9928 multiple vcalendars in a single file.
b796c9b7 9929 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 9930
0f0a88b9
DD
99312011-07-25 Deniz Dogan <deniz@dogan.se>
9932
9933 * image.el (insert-image): Clarifying docstring.
9934
0b3f36df
MA
99352011-07-24 Michael Albinus <michael.albinus@gmx.de>
9936
9937 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
9938 `tramp-send-command-and-check' if there is no error.
9939 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
9940
a9901f61
AM
99412011-07-22 Alan Mackenzie <acm@muc.de>
9942
9943 Prevent cc-langs.elc being loaded at run time.
9944
9945 * progmodes/cc-mode.el: Remove two autoload forms which loaded
9946 cc-langs.
9947
4d61f28d 9948 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
9949 "(require 'cc-langs)". Quote a form so it will evaluate at
9950 (cc-mode's) compilation time.
9951
11d074b2
MA
99522011-07-22 Michael Albinus <michael.albinus@gmx.de>
9953
9954 * net/tramp.el (tramp-file-name-handler): Avoid recursive
9955 loading. (Bug#9114)
9956
938b94c8
MR
99572011-07-21 Martin Rudalics <rudalics@gmx.at>
9958
9959 * window.el (display-buffer-pop-up-window)
9960 (display-buffer-pop-up-side-window)
9961 (display-buffer-in-side-window): Call display-buffer-set-height
9962 and display-buffer-set-width after setting the new window's
b796c9b7 9963 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 9964
bfa4f190
SS
99652011-07-20 Sam Steingold <sds@gnu.org>
9966
9967 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
9968 (etags-tags-included-tables): Call `convert-standard-filename' on
9969 the file names contained in TAGS so that windows Emacs can handle
9970 TAGS files created by cygwin ctags.
9971
8ca42262
LMI
99722011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
9973
9974 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
9975 which apparently didn't work.
9976
5db2afd2 99772011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 9978
5db2afd2
RW
9979 * proced.el (proced-send-signal): For *Marked Processes* buffer
9980 put point at beginning of buffer.
9981
92e15d10
SB
99822011-07-19 Stephen Berman <stephen.berman@gmx.net>
9983
9984 * proced.el (proced-format): Make header lines align with the text
9985 (bug#1779).
9986
1bfd59e5
LMI
99872011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
9988
9989 * view.el (view-buffer): Allow running in `special' modes if we're
9990 visiting a file (bug#8615).
9991
f5aae37c
MR
99922011-07-19 Martin Rudalics <rudalics@gmx.at>
9993
9994 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
9995 (display-buffer-alist-set-1, display-buffer-alist-set-2):
9996 New functions.
f5aae37c
MR
9997 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
9998 more accurately.
9999
bf2c1571
AM
100002011-07-18 Alan Mackenzie <acm@muc.de>
10001
10002 Fontify declarators properly when, e.g., a jit-lock chunk begins
10003 inside a declaration.
10004
10005 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
10006
b796c9b7
SM
10007 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10008 New function.
bf2c1571
AM
10009 (c-complex-decl-matchers): Insert reference to
10010 c-font-lock-enclosing-decls.
10011
10012 * progmodes/cc-engine.el (c-backward-single-comment):
10013 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
10014 to nil around calls to (forward-comment -1).
10015
4e190b80
LMI
100162011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10017
12dc863d
LMI
10018 * image.el (put-image): Doc typo fix.
10019
a762e966
LMI
10020 * progmodes/etags.el (tags-search): Doc typo fix.
10021
4e190b80
LMI
10022 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
10023 password if we get errors 550 to 554.
10024
f019fb21
LMI
100252011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10026
b796c9b7 10027 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 10028
81746738
LMI
10029 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
10030 indentation character (bug#6380).
10031
3ee3a1b5
LMI
10032 * files.el (buffer-offer-save): Made permanently local (bug#6241).
10033
c82f64de
LMI
10034 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
10035 to clarify what the problem is (bug#4291).
10036
f019fb21
LMI
10037 * simple.el (current-kill): Clarify what
10038 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
10039 (auto-fill-mode): Document `auto-fill-function' in relation to
10040 `auto-fill-mode' (bug#2470).
f019fb21 10041
0794775d
LM
100422011-07-16 Lawrence Mitchell <wence@gmx.li>
10043
10044 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
10045 method if slot is read-only (bug#9035).
10046
be39b8cc
MR
100472011-07-16 Martin Rudalics <rudalics@gmx.at>
10048
b796c9b7 10049 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 10050 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
10051 selected before, see discussion of (Bug#8615), (Bug#6954).
10052 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 10053
6ccf7859
GM
100542011-07-15 Glenn Morris <rgm@gnu.org>
10055
10056 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 10057 Respect help-form.
6ccf7859 10058
87e86684
LM
100592011-07-09 Lawrence Mitchell <wence@gmx.li>
10060
10061 * net/gnutls.el (gnutls-min-prime-bits): New variable.
10062 (gnutls-negotiate): Use it.
10063
d6066239
LMI
100642011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10065
b796c9b7
SM
10066 * net/gnutls.el (gnutls-negotiate):
10067 Upcase `gnutls-algorithm-priority'.
d6066239 10068
bd23ebc0
GM
100692011-07-15 Glenn Morris <rgm@gnu.org>
10070
c65bca65
GM
10071 * jka-compr.el (jka-compr-verbose): Move from here...
10072 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
10073 Add missing :version tag.
10074 * info.el: No need to require jka-compr when compiling.
bd23ebc0 10075
478615cc
LMI
100762011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10077
7b41decb
LMI
10078 * net/gnutls.el (gnutls-algorithm-priority): New variable.
10079 (gnutls-negotiate): Use it.
10080
dbc44fcd
LMI
10081 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
10082
06789f97
LMI
10083 * info.el (Info-beginning-of-buffer): New command.
10084 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
10085 announcing `b' as the key (bug#8325).
ab896c37 10086 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 10087
c39da690
LMI
10088 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
10089
3aa5f34b
LMI
10090 * international/mule-cmds.el
10091 (describe-specified-language-support): Make the error message
10092 clearer (bug#8905).
10093
4bf0979f
LMI
10094 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
10095
478615cc
LMI
10096 * isearch.el (isearch-barrier): Add a doc string, since it's
10097 mentioned in a function doc string (bug#8678).
10098
75c68aa1
MR
100992011-07-15 Martin Rudalics <rudalics@gmx.at>
10100
10101 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
10102 buffer argument (Bug#9083) and self-identifying label argument.
10103
a7c33da2
GM
101042011-07-15 Glenn Morris <rgm@gnu.org>
10105
10106 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
10107
2f5c6024
LMI
101082011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10109
10110 * man.el (Man-fontify-manpage): Fix message when formatting the
10111 man page (bug#7929).
10112
0bb23927 101132011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
10114
10115 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
10116 argument LRM; if non-nil, append an invisible LRM character to the
10117 buffer name.
10118 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
10119 last argument non-nil, when formatting buffer names.
0bb23927
EZ
10120 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
10121 paragraph direction.
cce4b0a7 10122
621ef9ab
LMI
101232011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10124
d1583c48
LMI
10125 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
10126 the man page name (bug#7929).
10127
6a57fb5f
LMI
10128 * image.el (put-image): Mention the `put-image' overlay property
10129 (bug#7834).
10130
d7956b14
LMI
10131 * scroll-bar.el (set-scroll-bar-mode): Mention that
10132 `scroll-bar-mode' lists the values (bug#7772).
10133
5b2d4a66
LMI
10134 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
10135 command (bug#7729).
10136
7509a874
LMI
10137 * rect.el (apply-on-rectangle): Return the point after the last
10138 operation.
10139 (string-rectangle): Go to the point after the last operation
10140 (bug#7522).
10141
4fe74b19
LMI
10142 * printing.el (pr-toggle-region): Clarify the documentation
10143 slightly (bug#7493).
10144
b796c9b7
SM
10145 * time.el (display-time-update):
10146 Allow `display-time-mail-function' to return nil (bug#7158).
10147 Fix suggested by Detlev Zundel.
ab283561 10148
fc233c9d
LMI
10149 * vc/diff.el (diff): Clarify the order the file names are read
10150 (bug#7111).
10151
43f5740b
LMI
10152 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
10153 the doc string (bug#7015).
10154
f2182a76
LMI
10155 * font-lock.el (font-lock-maximum-decoration): Mention what
10156 numeric levels mean (bug#6935).
10157
621ef9ab
LMI
10158 * startup.el (initial-buffer-choice): Don't mention the `none'
10159 selection, which is against policy.
10160
adc47434
MR
101612011-07-14 Martin Rudalics <rudalics@gmx.at>
10162
b796c9b7
SM
10163 * window.el (display-buffer-normalize-special):
10164 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 10165
7e5bfb8f
EZ
101662011-07-14 Eli Zaretskii <eliz@gnu.org>
10167
10168 * subr.el (version<, version<=, version=): Mention "-CVS" and
10169 "-12345" alpha version numbers.
10170
27fa387a
CY
101712011-07-14 Chong Yidong <cyd@stupidchicken.com>
10172
10173 * bindings.el: Add advertised binding for set-mark-command
10174 (Bug#5772).
10175
8bdfa064
CY
101762011-07-14 Chong Yidong <cyd@stupidchicken.com>
10177
10178 * bindings.el (mode-line-other-buffer):
10179 * bookmark.el (bookmark-bmenu-2-window):
10180 * bs.el (bs-cycle-next, bs-cycle-previous):
10181 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
10182 switch-to-buffer.
10183
10184 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 10185 Delete.
8bdfa064 10186
5eba16a3
JB
101872011-07-14 Juanma Barranquero <lekktu@gmail.com>
10188
10189 * follow.el (follow-debug-message, follow-redisplay):
10190 * jka-cmpr-hook.el (with-auto-compression-mode):
10191 Fix typos in docstrings.
10192
15853710
LMI
101932011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10194
a28e4607
LMI
10195 * subr.el (with-silent-modifications): Clarify somewhat what the
10196 macro inhibits (bug#6525).
10197
15853710
LMI
10198 * simple.el (eval-expression): Note what it does if called
10199 interactively (bug#6495).
10200
bee0fcef
CY
102012011-07-13 Chong Yidong <cyd@stupidchicken.com>
10202
b796c9b7
SM
10203 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
10204 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
10205
10206 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10207 Remove switch-to-buffer.
10208
58274504
LMI
102092011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10210
bd2fcc8d
LMI
10211 * files.el (make-directory): Clarify that an error will be raised
10212 if there's an error (bug#6397).
10213
0f04b32c
LMI
10214 * startup.el (initial-buffer-choice): Add `none' as a choice
10215 (bug#6234).
10216
465c5fc8
LMI
10217 * subr.el (add-hook): Clarify section about buffer-local hooks
10218 (bug#6218).
10219
58274504
LMI
10220 * dired.el (dired-flagged): Clarify doc string (bug#6117).
10221
bead9a43
JB
102222011-07-13 Juanma Barranquero <lekktu@gmail.com>
10223
10224 * tabify.el (untabify): Preserve the current column so that point
10225 doesn't move (bug#6032).
10226
3af98a7b
LMI
102272011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10228
b796c9b7
SM
10229 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
10230 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 10231
6240145a
GM
102322011-07-13 Glenn Morris <rgm@gnu.org>
10233
10234 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
10235 (dired-insert-directory): Give a message the first time
10236 if ls is found not to support --dired.
10237
1d8c2ccc
LMI
102382011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10239
10240 * simple.el (toggle-truncate-lines): Clarify what is toggled
10241 (bug#5580). Text by Drew Adams.
10242
5fc4038e
CY
102432011-07-13 Chong Yidong <cyd@stupidchicken.com>
10244
10245 * simple.el (blink-matching-open): Make the error message from the
10246 last change less verbose.
10247
bf6012e5
DN
102482011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
10249
10250 * font-lock.el (font-lock-comment-face): Use the high contrast
10251 "yellow" color for font-lock-comment-face on low color terminals
10252 using a dark background color (bug#4221).
10253
343c3b5a
LMI
102542011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10255
7e9505c5
LMI
10256 * dired.el (dired-insert-set-properties): Make the doc string
10257 reflect what it does now (bug#5325).
10258
c26fdcf5
LMI
10259 * simple.el (blink-matching-open): Say that we were unable to find
10260 the match within the limit, if we're limited (bug#5122).
10261
bb388cc5
LMI
10262 * international/mule-cmds.el (prefer-coding-system): Add an
10263 example (bug#4869).
10264
343c3b5a
LMI
10265 * progmodes/etags.el (tags-search): Document `file-list-form'
10266 (bug#4731).
10267
2a517d45
LM
102682011-07-13 Lawrence Mitchell <wence@gmx.li>
10269
10270 * net/browse-url.el (browse-url-default-browser)
10271 (browse-url-browser-function): Make the default browser choice a
10272 bit more logical (bug#4300). Also clean up the doc string.
10273
b6c78ef2
JB
102742011-07-13 Juanma Barranquero <lekktu@gmail.com>
10275
10276 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
10277 binary endings (bug#4440).
10278
1c4dd947
LMI
102792011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10280
a2014063
LMI
10281 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
10282 which can be pretty annoying (bug#8971).
10283
9c9c2d88
LMI
10284 * jka-compr.el (jka-compr-verbose): New variable, and use
10285 throughout (bug#8971).
10286
1c4dd947
LMI
10287 * info.el (Info-find-file): Fall back on the installation
10288 directory if we can't find the info node anywhere else.
10289
a1c9f41b
SO
102902011-07-13 Sergei Organov <osv@javad.com> (tiny change)
10291
10292 * vc/vc.el (vc-revert-file):
10293 Don't set file time-stamp in the past. (Bug#5181)
10294
536f3d36
LMI
102952011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10296
7152b011
LMI
10297 * files.el (after-find-file): Give a better error message when
10298 trying to find a symlink that points to a file that doesn't exist
10299 (bug#4398).
10300
536f3d36
LMI
10301 * progmodes/cc-vars.el: Remove (probably) misleading comment
10302 (bug#4396).
10303
460c0fba
JB
103042011-07-12 Johan Bockgård <bojohan@gnu.org>
10305
10306 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
10307
7a6bda45
CY
103082011-07-12 Chong Yidong <cyd@stupidchicken.com>
10309
10310 * mouse-sel.el: Hack restoring functionality, while keeping
10311 compatibility with 2010-07-03 changes to mouse selection.
10312 (mouse-sel-primary-overlay): New var.
10313 (mouse-sel-selection-alist): Use it.
10314 (mouse-sel-mode): Doc fix; remove points that are default features
10315 of mouse.el.
10316
c79598ef
JB
103172011-07-12 Johan Bockgård <bojohan@gnu.org>
10318
10319 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10320 Fix previous fix (bug#2490).
10321
ff8be6ef
RW
103222011-07-12 Roland Winkler <winkler@gnu.org>
10323
b796c9b7
SM
10324 * textmodes/bibtex.el (bibtex-initialize):
10325 Use pop-to-buffer-same-window.
ff8be6ef
RW
10326 (bibtex-search-entries): Fix interactive call.
10327
296ba3ee
LMI
103282011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10329
f5242a02 10330 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
10331 Fontise bytecomp Error lines more correctly (bug#2490).
10332 Fix suggested by Johan Bockgård.
f5242a02 10333
296ba3ee
LMI
10334 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
10335
10336 * dired-x.el (dired-guess-default): Use `delete-dups'.
10337
f69fd0d2
CY
103382011-07-12 Chong Yidong <cyd@stupidchicken.com>
10339
10340 * dired.el (dired-mark-prompt):
10341 * dired-aux.el (dired-read-shell-command): Doc fix.
10342
eab5dc07
LMI
103432011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10344
b796c9b7
SM
10345 * mail/sendmail.el (sendmail-query-once):
10346 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
10347 emacs -Q.
10348
10349 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10350
eab5dc07
LMI
10351 * cus-edit.el (custom-file): Take an optional no-error variable.
10352 (customize-save-variable): Set the variable, and give a warning if
10353 running under "emacs -q".
10354
a1e65d42
JB
103552011-07-11 Juanma Barranquero <lekktu@gmail.com>
10356
10357 * loadhist.el (unload-feature-special-hooks):
10358 Add `auto-coding-functions', `fill-nobreak-predicate' and
10359 `find-directory-functions' (bug#5327).
10360
1d52da10
LMI
103612011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10362
be958f1d
LMI
10363 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
10364
5bedb26c
LMI
10365 * cus-edit.el (custom-guess-name-alist): -alist variables should
10366 use the `alist' type (bug#3120). Suggested by Drew Adams.
10367
1d52da10
LMI
10368 * printing.el: Add documentation to all the `pr-toggle-' commands.
10369
cd394be1 103702011-07-11 Leo Liu <sdl.web@gmail.com>
481a51b6
LL
10371
10372 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
10373 backends where it makes sense (bug#2623).
10374
dcc88d8a
LMI
103752011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10376
c3de9feb
LMI
10377 * dired-x.el (dired-guess-default): Remove duplicate shell command
10378 entries (bug#2028).
8a93078b 10379 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 10380 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 10381
dcc88d8a
LMI
10382 * subr.el (remove-duplicates): New conveniency function.
10383
505e3645
LMI
103842011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
10385
10386 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
10387 (bug#1526).
10388
103892011-07-10 Martin Rudalics <rudalics@gmx.at>
10390
10391 * window.el (display-buffer-normalize-default): Don't invert
10392 meaning of even-window-heights. Reported by Eli Zaretskii
10393 <eliz@gnu.org>.
10394
455e4fa1
BR
103952011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
10396
10397 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
10398
8e0bc3e9
CY
103992011-07-10 Chong Yidong <cyd@stupidchicken.com>
10400
10401 * window.el (display-buffer): Fix arguments to
10402 display-buffer-reuse-window in last change.
10403
fa7c3228
CY
10404 * faces.el (link): Use a less saturated blue on light backgrounds.
10405
10406 * startup.el (fancy-startup-text, fancy-about-text)
10407 (fancy-startup-tail): Use font-lock faces, for background safety.
10408
c0a7f300
BN
104092011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
10410
b796c9b7
SM
10411 * emulation/viper-cmd.el (viper-change-state-to-vi):
10412 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 10413
4dc2a129
MR
104142011-07-09 Martin Rudalics <rudalics@gmx.at>
10415
10416 * window.el (display-buffer-default-specifiers): Remove.
10417 (display-buffer-macro-specifiers): Remove default specifiers.
10418 (display-buffer-alist): Default to nil.
b796c9b7 10419 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
10420 (display-buffer-pop-up-window): Allow splitting internal
10421 windows. Check whether a live window was created.
10422 (display-buffer-other-window-means-other-frame)
10423 (display-buffer-normalize-arguments): Rename to
10424 display-buffer-normalize-argument and rewrite. Set the
10425 other-window specifier.
10426 (display-buffer-normalize-special): New function.
10427 (display-buffer-normalize-options): Rename to
10428 display-buffer-normalize-default and rewrite.
10429 (display-buffer-normalize-options-inhibit): Remove.
10430 (display-buffer-normalize-specifiers): Rewrite.
10431 (display-buffer): Process other-window specifier and call
10432 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
10433 more faithfully.
b796c9b7 10434 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 10435 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
10436 (display-buffer-in-window, display-buffer-alist-set):
10437 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
10438 <tassilo@member.fsf.org>.
10439
2d43b8c9
LL
104402011-07-09 Leo Liu <sdl.web@gmail.com>
10441
10442 * register.el (insert-register): Restore accidental change on
10443 2011-06-26. (Bug#9028)
10444
7f9b7c53
GM
104452011-07-09 Glenn Morris <rgm@gnu.org>
10446
10447 * subr.el (remq): Handle the empty list. (Bug#9024)
10448
f042cfd8
AS
104492011-07-08 Andreas Schwab <schwab@linux-m68k.org>
10450
10451 * mail/sendmail.el (send-mail-function): No longer delay custom
10452 initialization.
10453 * custom.el (custom-initialize-delay): Doc fix.
10454
856b2f11
SM
104552011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10456
10457 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
10458
afae1d68
MA
104592011-07-08 Michael Albinus <michael.albinus@gmx.de>
10460
10461 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
10462 human-friendly prompt.
10463
0757af94
SM
104642011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10465
10466 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
10467 provided by a particular plugin.
10468
d760b731
LMI
104692011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
10470
10471 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
10472 save customizations (with "emacs -Q"), just set the variable
10473 instead of erroring out.
10474
10475 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10476
cd79ce90
JL
104772011-07-08 Juri Linkov <juri@jurta.org>
10478
10479 * arc-mode.el (archive-zip-expunge, archive-zip-update)
10480 (archive-zip-update-case): Use 7z if found by `executable-find'.
10481 The order of searching the available programs is the same as in
10482 `archive-zip-extract' (bug#8968).
10483
14cc04aa
CY
104842011-07-07 Chong Yidong <cyd@stupidchicken.com>
10485
10486 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
10487 (menu-bar-options-menu): Tweak descriptions.
10488
0a1848ec
LMI
104892011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
10490
10491 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
10492 menu items into verb phrases (bug#1421). Also refill to fit under
10493 80 columns.
10494
f5bd0689
CY
104952011-07-07 Chong Yidong <cyd@stupidchicken.com>
10496
538e85c6
CY
10497 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
10498 (Info-read-node-name): Doc fix (Bug#1084).
10499
f5bd0689
CY
10500 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
10501 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
10502 (end-of-sexp, beginning-of-sexp)
10503 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
10504 (forward-symbol, forward-same-syntax, word-at-point)
10505 (sentence-at-point): Doc fix (Bug#1144).
10506
56ec5115
LMI
105072011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
10508
f3f8e37f
LMI
10509 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
10510 should cover it (bug#1281).
10511
0757af94 10512 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 10513
e9fce1ac 10514 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
10515 negotiation fails, then possibly try again with a non-encrypted
10516 connection (bug#9017).
10517
56ec5115
LMI
10518 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
10519 be used.
10520
c2f9aec8
RS
105212011-07-07 Richard Stallman <rms@gnu.org>
10522
10523 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
10524 property, and handle its changed format.
10525 Look for the correct line number.
10526 Use file's line contents (but not past first =) to find
10527 correct line in message.
10528
ef7b981d 105292011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
10530
10531 * international/characters.el (build-unicode-category-table):
10532 Delete it.
0757af94 10533 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 10534
0757af94 10535 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
10536 to src/chartab.c.
10537 (get-char-code-property): Call unicode-property-table-internal to
10538 load a file. Call get-unicode-property-internal where necessary.
10539 (put-char-code-property): Call unicode-property-table-internal to
10540 load a file. Call put-unicode-property-internal where necessary.
10541 put-unicode-property-internal where necessary.
0757af94
SM
10542 (char-code-property-description):
10543 Call unicode-property-table-internal to load a file.
c805dec0
KH
10544
10545 * international/charprop.el:
10546 * international/uni-bidi.el:
10547 * international/uni-category.el:
10548 * international/uni-combining.el:
10549 * international/uni-comment.el:
10550 * international/uni-decimal.el:
10551 * international/uni-decomposition.el:
10552 * international/uni-digit.el:
10553 * international/uni-lowercase.el:
10554 * international/uni-mirrored.el:
10555 * international/uni-name.el:
10556 * international/uni-numeric.el:
10557 * international/uni-old-name.el:
10558 * international/uni-titlecase.el:
10559 * international/uni-uppercase.el: Regenerate.
10560
10561 * loadup.el: Load international/charprop.el before
10562 international/characters.
10563
e14b388a
CY
105642011-07-07 Chong Yidong <cyd@stupidchicken.com>
10565
10566 * window.el (next-buffer, previous-buffer): Signal an error if
10567 called from a minibuffer window.
10568
10569 * bindings.el: Revert 2011-07-04 change.
10570
354cf0ba
RS
105712011-07-06 Richard Stallman <rms@gnu.org>
10572
10573 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
10574 (rmail-mime-insert-bulk, rmail-mime-insert-text):
10575 Treat markers like ints.
10576 (rmail-mime-entity): Doc fix.
10577
a48868a7
LMI
105782011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10579
4906cd3d
LMI
10580 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
10581 defcustom again for backwards compatibility.
10582
e0457abe
LMI
10583 * simple.el (shell-command-on-region): Fill.
10584
d67f7e1f
LMI
10585 * dired-aux.el (dired-kill-line): Add a doc string.
10586
fe204702
LMI
10587 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
10588 to "\\sw\\|\\s_" (bug#358).
10589
a48868a7
LMI
10590 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
10591 (dired-unmark-backward): Ditto.
10592 (dired-flag-backup-files): Ditto.
10593
10594 * dired-x.el (dired-mark-sexp): Ditto.
10595
aa8a705c
RS
105962011-07-06 Richard Stallman <rms@gnu.org>
10597
10598 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
10599 (rmail-mime-entity): New arg TRUNCATED.
10600 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
10601 New functions.
10602 (rmail-mime-save): Warn if entity is truncated.
10603 (rmail-mime-toggle-hidden): Likewise, for showing.
10604 (rmail-mime-process-multipart): Record when an entity is truncated.
10605
a9a936b9
RS
10606 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
10607 if ENTITY is a string.
10608
1f2b92cb
LMI
106092011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10610
f4f73198 10611 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
10612 of faces when `M-C-x'-ing their definitions (bug#8378).
10613 Also clean up the code slightly.
f4f73198 10614
12b16734 10615 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 10616 because that makes the colors go away.
12b16734 10617
f0691d22
LMI
10618 * mail/sendmail.el (send-mail-function): Change the default to
10619 `sendmail-query-once'.
9e87df06 10620 (sendmail-query-once): Add an autoload cookie.
f0691d22 10621
1f2b92cb
LMI
10622 * net/network-stream.el (network-stream-open-starttls): Try using
10623 a plain connection even if the server offered STARTTLS, and we
10624 kinda wanted to use it, if Emacs doesn't have any STARTTLS
10625 capability. This should make smtpmail.el work in slightly more
10626 configurations.
10627
1cdd2a1b
MA
106282011-07-06 Michael Albinus <michael.albinus@gmx.de>
10629
10630 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
10631 New defun.
10632 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
10633
fbcc67e2
MM
106342011-07-06 Michael R. Mauger <mmaug@yahoo.com>
10635
10636 * progmodes/sql.el: Version 3.0
0757af94 10637 (sql-product-alist): Add product :completion-object,
fbcc67e2 10638 :completion-column, and :statement attributes.
0757af94 10639 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 10640 (sql-mode-syntax-table): Mark all punctuation.
0757af94 10641 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
10642 ansi keywords.
10643 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 10644 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
10645 (sql-oracle-show-reserved-words): New function for development.
10646 (sql-product-font-lock): Simplify for source code buffers.
10647 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
10648 New functions.
10649 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
10650 (sql-mode-map): Add statement movement functions.
10651 (sql-ansi-statement-starters, sql-oracle-statement-starters):
10652 New variable.
fbcc67e2
MM
10653 (sql-statement-regexp, sql-beginning-of-statement)
10654 (sql-end-of-statement, sql-signum): New functions.
0757af94 10655 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
10656 (sql-show-sqli-buffer): Bug fix.
10657 (sql-interactive-mode): Store connection data as buffer local.
0757af94 10658 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
10659 with sql-interactive-mode.
10660 (sql-save-connection): Save buffer local settings.
0757af94 10661 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
10662 (sql-product-interactive): Bug fix.
10663 (sql-preoutput-hold): New variable.
10664 (sql-interactive-remove-continuation-prompt): Bug fixes.
10665 (sql-debug-redirect): New variable.
10666 (sql-str-literal): New function.
10667 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 10668 Redesign.
fbcc67e2
MM
10669 (sql-oracle-save-settings, sql-oracle-restore-settings)
10670 (sql-oracle-list-all, sql-oracle-list-table): New functions.
10671 (sql-completion-object, sql-completion-column)
10672 (sql-completion-sqlbuf): New variables.
10673 (sql-build-completions-1, sql-build-completions)
10674 (sql-try-completion): New functions.
10675 (sql-read-table-name): Use them.
10676 (sql-contains-names): New buffer local variable.
10677 (sql-list-all, sql-list-table): Use it.
10678 (sql-oracle-completion-types): New variable.
10679 (sql-oracle-completion-object, sql-sqlite-completion-object)
10680 (sql-postgres-completion-object): New functions.
10681
d4eaeab1
GM
106822011-07-06 Glenn Morris <rgm@gnu.org>
10683
10684 * window.el (pop-to-buffer): Doc fix.
10685
322b7dab 106862011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
10687
10688 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
10689
322b7dab 106902011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 10691
322b7dab 10692 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 10693
322b7dab 10694 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 10695
605dd5bf
CY
106962011-07-05 Chong Yidong <cyd@stupidchicken.com>
10697
10698 * button.el (button): Inherit from link face. Suggested by Dan
10699 Nicolaescu.
10700
7dbfa719
SM
107012011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10702
3db614b0
SM
10703 * progmodes/gdb-mi.el: Fit in 80 columns.
10704 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
10705 switch-to-buffer.
10706
7dbfa719
SM
10707 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
10708 if imenu is simply not configured (bug#8941).
10709
919d884a
KM
107102011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
10711
10712 * allout.el (allout-post-undo-hook): New allout outline-change
10713 event hook to signal undo activity.
10714 (allout-post-command-business): Run allout-post-undo-hook if an
10715 undo just occurred.
7dbfa719
SM
10716 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
10717 * allout-widgets.el (allout-widgets-after-undo-function):
10718 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
10719 in the vicinity of an undo.
10720 (allout-widgets-mode): Include allout-widgets-after-undo-function
10721 on the new allout-post-undo-hook.
10722
450a0f09
SM
107232011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10724
10725 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
10726 Let define-derived-mode define it.
10727 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
10728 cycles of abbrev-table inheritance (bug#8998).
10729
2de69e00
RW
107302011-07-05 Roland Winkler <winkler@gnu.org>
10731
10732 * textmodes/bibtex.el: Add support for biblatex.
10733 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
10734 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
10735 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
10736 (bibtex-entry-alist, bibtex-field-alist): New variables.
10737 (bibtex-entry-field-alist): Obsolete alias for
10738 bibtex-BibTeX-entry-alist.
10739 (bibtex-entry-alist, bibtex-field-alist): New widgets.
10740 (bibtex-set-dialect): New command.
10741 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
10742 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
10743 Bind via bibtex-set-dialect.
2de69e00
RW
10744 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
10745 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
10746 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
10747 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
10748 Define via bibtex-set-dialect.
450a0f09
SM
10749 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
10750 Obey bibtex-no-opt-remove-re.
2de69e00
RW
10751 (bibtex-vec-push, bibtex-vec-incr): New functions.
10752 (bibtex-format-entry, bibtex-field-list)
10753 (bibtex-print-help-message, bibtex-validate)
10754 (bibtex-search-entries): Use new format of bibtex-entry-alist.
10755
2dcdbdd9
SM
107562011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10757
10758 * progmodes/compile.el (compilation-goto-locus):
10759 * net/tramp-cmds.el (tramp-append-tramp-buffers):
10760 * bs.el (bs-cycle-next, bs-cycle-previous):
10761 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
10762 * bindings.el (mode-line-other-buffer):
10763 * autoinsert.el (auto-insert):
10764 * arc-mode.el (archive-extract):
10765 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
10766
b27640fe
JB
107672011-07-05 Juanma Barranquero <lekktu@gmail.com>
10768
10769 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
10770 Fix check of `emacs-lock-unlockable-modes'.
10771 Coerce true values of `emacs-lock--try-unlocking' to t.
10772
53bbe3ad
JB
107732011-07-05 Juanma Barranquero <lekktu@gmail.com>
10774
10775 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
10776 * emacs-lock.el: New file.
10777
1d3cdbc7
JD
107782011-07-05 Julien Danjou <julien@danjou.info>
10779
10780 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
10781 than `boundp' to check if face is set.
10782
9173deec
JB
107832011-07-05 Juanma Barranquero <lekktu@gmail.com>
10784
10785 * register.el (registerv-make):
10786 * window.el (window-min-height): Fix typos in docstrings.
10787
869795d6
JD
107882011-07-05 Jan Djärv <jan.h.d@swipnet.se>
10789
9173deec 10790 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
10791 Update doc string.
10792
b768cdcd
JB
107932011-07-04 Juanma Barranquero <lekktu@gmail.com>
10794
10795 * server.el (server-execute): Catch quit and call
10796 `server-return-error' to pass the error back to emacsclient and
10797 close the connection (bug#8942).
10798
13aa217b
KM
107992011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
10800
10801 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
10802 insecure exception for current topic. Also note that auto-saves
10803 are handled differently.
10804
5d3385a0 10805 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13aa217b
KM
10806 State variables for tracking auto-save inhibition situation.
10807
10808 (allout-write-contents-hook-handler): Rename from
10809 'allout-write-file-hook-handler', and describe how it depends on
10810 write-contents-functions sensitivity to non-nil value to prevent
10811 file write.
10812
10813 (allout-auto-save-hook-handler): Remove. auto-save does not check
10814 this in individual buffers, only in the starting buffer, so this
10815 is not the right way for us to inhibit auto-save in a buffer
10816 according to its condition.
10817
10818 (allout-mode): Use new allout-write-contents-hook-handler, and
10819 only with write-contents-functions. Remove auto-save provisions -
10820 they're implemented elsewhere.
10821
10822 (allout-before-change-handler): If undo is in progress, note that
10823 for attention of allout-post-command-business.
10824
10825 (allout-post-command-business): If the command we're following was
10826 an undo, check for change in the status of encrypted items and
10827 adjust auto-save inhibitions accordingly.
10828
10829 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
10830 according to whether there are or aren't any plain-text topics
10831 pending encryption.
10832
2dcdbdd9 10833 (allout-inhibit-auto-save-info-for-decryption):
1154d12e
JB
10834 Adjust buffer-saved-size and some allout state to inhibit auto-saves
10835 if there are plain-text topics pending encryption.
13aa217b
KM
10836
10837 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
10838 buffer-saved-size and some allout state to not inhibit auto-saves
10839 if there are no longer any plain-text topics pending encryption.
10840
0757af94
SM
10841 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
10842 No longer provide for exemption of the current topic.
13aa217b 10843
ac89b32c
JL
108442011-07-04 Juri Linkov <juri@jurta.org>
10845
10846 Add 7z operations to delete and save changed members (bug#8968).
10847 * arc-mode.el (archive-7z-expunge, archive-7z-update):
10848 New defcustoms.
10849 (archive-7z-write-file-member): New function.
10850 (archive-7z-summarize): Fix the number of dashes in the
10851 listing output.
10852
8fa39615
SM
108532011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10854
10855 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
10856 (bug#8958).
10857
2f11b3f1
CY
108582011-07-04 Chong Yidong <cyd@stupidchicken.com>
10859
d66fef2b
CY
10860 * bindings.el: Ignore next-buffer and previous-buffer in
10861 minibuffer-local-map.
10862
2f11b3f1
CY
10863 * font-lock.el (font-lock-builtin-face): Change light background
10864 color to dark slate blue (Bug#6693).
10865
f932a347
WD
108662011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
10867
10868 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
10869
c8af70e1
SM
108702011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10871
10872 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
10873 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10874 Add switch-to-buffer.
10875
f158badc
LMI
108762011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10877
10878 * isearch.el (isearch-search-fun-function): Clarify further the
10879 meaning of the function returned.
10880
6d95bd46
MA
108812011-07-04 Michael Albinus <michael.albinus@gmx.de>
10882
10883 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
10884
10885 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
10886 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
10887 Use it.
10888 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
10889 `tramp-default-remote-path' does not exist.
10890 (tramp-send-command-and-read): New optional argument NOERROR.
10891 (tramp-open-connection-setup-interactive-shell)
10892 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
10893 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
10894 (tramp-process-sentinel): Flush also process' connection property.
10895 (tramp-sh-handle-start-file-process): Do not set process
10896 sentinel. It is done now ...
10897 (tramp-maybe-open-connection): ... here. (Bug#8929)
10898
909e6b67
MK
108992011-07-04 MON KEY <monkey@sandpframing.com>
10900
10901 * play/animate.el (animate-string): Doc fixes and allow changing
10902 the buffer name (bug#5417).
10903
109042011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10905
c8af70e1 10906 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 10907
f34755dc
PE
109082011-07-04 Paul Eggert <eggert@cs.ucla.edu>
10909
396cec72
PE
10910 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
10911 This is simpler and helps future-proof the code.
10912 (timer-until): Use time-subtract and float-time.
08235028 10913 (timer--time-less-p): Use time-less-p.
f34755dc 10914
56e6cc31
JB
109152011-07-04 Juanma Barranquero <lekktu@gmail.com>
10916
3abb79e5
JB
10917 * type-break.el (timep): Use the value of `float-time' to avoid a
10918 byte-compiler warning.
10919
56e6cc31
JB
10920 * server.el (server-eval-and-print): Return any result, even nil.
10921
7b9430b4
PE
109222011-07-03 Paul Eggert <eggert@cs.ucla.edu>
10923
10924 * type-break.el: Accept time formats that the builtins accept.
10925 (timep, type-break-time-difference): Accept any format that
10926 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
10927 This is simpler and helps future-proof the code.
10928 (type-break-time-difference): Round rather than ignoring
10929 subseconds components.
10930
3034e9e7
LMI
109312011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10932
10933 * info.el (Info-apropos-matches): Make non-interactive, since it
10934 doesn't seem to do anything useful as a command (bug#8829).
10935
1485f4c0
CY
109362011-07-03 Chong Yidong <cyd@stupidchicken.com>
10937
10938 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 10939 Move from faces.el.
1485f4c0
CY
10940 (frame-default-terminal-background): New function.
10941
10942 * custom.el (custom-push-theme): Don't record faces in `changed'
10943 theme; this doesn't work correctly for per-frame face settings.
10944 (disable-theme): Use face-set-after-frame-default to reset faces.
10945 (custom--frame-color-default): New function.
10946
9fa3dd45
LMI
109472011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10948
c8af70e1 10949 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
10950 (bug#8769).
10951
6cbbc20c
KR
109522011-03-29 Kevin Ryde <user42@zip.com.au>
10953
10954 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10955 `perl-Test2' extend to match possible "fail #N" rep count
10956 (bug#8377).
10957
c7f98048
LMI
109582011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10959
65676592
LMI
10960 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
10961 `smtpmail-via-smtp' now returns the error instead of nil.
10962
c7f98048
LMI
10963 * isearch.el (isearch-search-fun-function): Clarify the doc string
10964 (bug#8101).
10965
56e6cc31 109662011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
10967
10968 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
10969 unnecessary spaces (bug#8987).
10970
2b216704
LMI
109712011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10972
10973 * net/network-stream.el (open-network-stream): Use the
10974 :end-of-capability command thoughout.
10975
109762011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
10977
10978 * net/network-stream.el (open-network-stream): Add the
10979 :end-of-capability command parameter, used by pop3.el.
10980
36adf6ce
LMI
109812011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10982
1ca0da0e
LMI
10983 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
10984
fc00f69c
LMI
10985 * fringe.el (fringe-query-style): Remove redundant text " (type ?
10986 for list)" (bug#6475).
10987
28fd8759 10988 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 10989 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
10990 an error (bug#6297).
10991
0dd8b6da
LMI
10992 * man.el (Man-reference-regexp): Allow matching possible
10993 word-wrapped references (bug#6289).
10994
ce1438d6
LMI
10995 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
10996 for consistency with the other vc buffers (bug#6197).
10997 (vc-checkin): Ditto.
10998
10999 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
11000
36adf6ce
LMI
11001 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
11002
e83cc1f7
LMI
110032011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11004
8a20ca4c
LMI
11005 * custom.el (defcustom): Clarify that :set is only used in the
11006 Customize user interface (bug#6089).
11007
83319045
LMI
11008 * progmodes/flymake.el (flymake-mode): If the buffer isn't
11009 associated with a file, refuse to run instead of erroring out
11010 (bug#6084).
11011
a8392169
LMI
11012 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
11013 the doc string, since it appears that using `fill-column' always
11014 controls the width (bug#7845).
11015
e83cc1f7
LMI
11016 * simple.el (shell-command-on-region): Say where the error output
11017 went if `shell-command-default-error-buffer' is set (bug#6857).
11018
e47ca23b
KM
110192011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
11020
11021 * allout.el (allout-yank-processing): Adjust cursor position for
11022 backwards-deleted space.
11023
11024 (allout-rebullet-heading): Register changes with
11025 allout-exposure-changed-hook, so the modified topic is properly
11026 decorated.
11027
5cf56143
LMI
110282011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11029
08549772
LMI
11030 * minibuffer.el (completion-in-region): Document PREDICATE
11031 (bug#7136).
11032
48e96771
LMI
11033 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
11034 of keyword/argument pairs (bug#6904).
11035
c8af70e1
SM
11036 * replace.el (multi-occur):
11037 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 11038
e17d05e2
LMI
110392011-07-02 Drew Adams <drew.adams@oracle.com>
11040
11041 * dired.el (dired-mark-if): Make the message about whether it's
11042 marking or unmarking clearer (bug#8523).
11043
063b0e45
LMI
110442011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11045
11046 * disp-table.el (display-table-print-array): New function.
11047 (describe-display-table): Use it to print the vectors more pretty
11048 (Bug#8859).
11049
28545e04
MR
110502011-07-02 Martin Rudalics <rudalics@gmx.at>
11051
11052 * window.el (window-state-get-1): Don't assign clone numbers.
11053 Add clone-of item to list of window parameters.
11054 (window-state-put-2): Don't process clone numbers.
11055 (display-buffer-alist): Fix doc-string.
11056
3349e122
SM
110572011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
11058
11059 * subr.el (remq): Don't allocate if it's not needed.
11060 (keymap--menu-item-binding, keymap--menu-item-with-binding)
11061 (keymap--merge-bindings): New functions.
11062 (keymap-canonicalize): Use them to refine the canonicalization.
11063 * minibuffer.el (minibuffer-local-completion-map)
11064 (minibuffer-local-must-match-map): Move initialization from C.
11065 (minibuffer-local-filename-completion-map): Move initialization from C;
11066 don't inherit from anything here.
11067 (minibuffer-local-filename-must-match-map): Make obsolete.
11068 (completing-read-default): Use make-composed-keymap to combine
11069 minibuffer-local-filename-completion-map with either
11070 minibuffer-local-must-match-map or
11071 minibuffer-local-filename-completion-map.
11072
d224ac83
GM
110732011-07-01 Glenn Morris <rgm@gnu.org>
11074
3de63bf8
GM
11075 * type-break.el (type-break-time-sum): Use dolist.
11076
d224ac83
GM
11077 * textmodes/flyspell.el (flyspell-word-search-backward):
11078 Replace CL function.
11079
1a1e3f32
SM
110802011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11081
fe3f64d5
SM
11082 * mouse.el (mouse--strip-first-event): New function.
11083 (function-key-map): Use it to map fringe clicks to normal clicks
11084 by default.
11085
eb604e34
SM
11086 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
11087 (vc-bzr-revision-completion-table): Add support for annotate and date.
11088
1a1e3f32
SM
11089 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
11090 inherit from parent.
11091
5bd35902
LMI
110922011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
11093
ace6c69c 11094 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 11095 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 11096
191e2bed
LMI
11097 * dired.el (dired-mode): Fix up the doc string as suggested by
11098 Drew Adams (bug#8817).
11099
5bd35902
LMI
11100 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
11101 cookie, since the manual says that it should be possible to add
11102 this function to `find-file-hook' (bug#8709).
11103
eee8207a
TZ
111042011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11105
11106 * progmodes/cfengine.el: Moved all cfengine3.el functionality
11107 here. Noted Ted Zlatanov as the maintainer.
11108 (cfengine-common-settings, cfengine-common-syntax): New functions
11109 to set up common things between `cfengine-mode' and
11110 `cfengine3-mode'.
11111 (cfengine3-mode): New mode.
11112 (cfengine3-defuns cfengine3-defuns-regex
11113 (cfengine3-class-selector-regex cfengine3-category-regex)
11114 (cfengine3-vartypes cfengine3-font-lock-keywords)
11115 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 11116 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 11117
36b148cf
MA
111182011-07-01 Michael Albinus <michael.albinus@gmx.de>
11119
11120 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
11121
11122 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
11123
0bf4ba9a
MR
111242011-07-01 Martin Rudalics <rudalics@gmx.at>
11125
11126 * window.el (same-window-buffer-names, same-window-regexps)
11127 (same-window-p, special-display-frame-alist)
11128 (special-display-popup-frame, special-display-function)
11129 (special-display-buffer-names, special-display-regexps)
11130 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
11131 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11132 (split-window-preferred-function, split-height-threshold)
11133 (split-width-threshold, even-window-heights)
11134 (display-buffer-mark-dedicated, window-splittable-p)
11135 (split-window-sensibly, window-safely-shrinkable-p):
11136 Un-obsolete.
11137 (display-buffer): Don't spread args with function specifier
11138 because special-display-popup-frame won't like it.
11139
35837f51
PE
111402011-07-01 Paul Eggert <eggert@cs.ucla.edu>
11141
d0672f86
PE
11142 Time-stamp simplifications and fixes.
11143 These improve accuracy slightly, and future-proof the code
11144 against some potential changes to current-time format.
11145
b9444d97
PE
11146 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
11147 by using time-since and float-time.
11148
0ef923dc
PE
11149 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
11150 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
11151 + NNN microseconds".
11152
2f81380d
PE
11153 * type-break.el (type-break-time-sum): Rewrite using time-add.
11154
845b5c3e
PE
11155 * play/hanoi.el (hanoi-current-time-float): Remove.
11156 All uses replaced by float-time.
11157
ee6f1be0
PE
11158 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
11159 This yields a more-accurate answer.
11160 (rng-time-to-float): Remove; no longer needed.
11161
fe955043
PE
11162 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
11163
5777162a
PE
11164 * calendar/timeclock.el (timeclock-seconds-to-time):
11165 Defalias to seconds-to-time, since they're the same thing.
11166
3103f8b6 11167 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 11168 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
11169 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
11170
0e61a35f
SM
111712011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11172
11173 * window.el (bury-buffer): Don't iconify the only frame.
11174 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
11175 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
11176
ddd63a1e
CY
111772011-07-01 Chong Yidong <cyd@stupidchicken.com>
11178
0e61a35f
SM
11179 * eshell/em-smart.el (eshell-smart-display-navigate-list):
11180 Add mouse-yank-primary.
ddd63a1e 11181
055f4923
TZ
111822011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11183
11184 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
11185
6a2fb145
SM
111862011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11187
11188 * emacs-lisp/find-func.el (find-library--load-name): New fun.
11189 (find-library-name): Use it to find relative load names when provided
11190 absolute file name (bug#8803).
11191
fd4983f2
LMI
111922011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11193
887d14ad
LMI
11194 * textmodes/flyspell.el (flyspell-word): Consider words that
11195 differ only in case as potential doublons (bug#5687).
11196
c53dc7fc
LMI
11197 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
11198 Remove two rather uninteresting debugging-like messages to make
11199 debbugs.el more silent.
11200
fd4983f2
LMI
11201 * comint.el (comint-password-prompt-regexp): Accept "Response" as
11202 a password-like phrase.
11203
7a71b18d 112042011-06-30 Masatake YAMATO <yamato@redhat.com>
b14c0c55
AM
11205
11206 * progmodes/cc-guess.el: New file.
11207
6a2fb145 11208 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
11209
11210 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
11211 derived from `c-basic-common-init'.
11212
11213 * progmodes/cc-mode.el (top-level): Require cc-guess.
11214 (c-basic-common-init): Use `cc-choose-style-for-mode'.
11215
1fa280a3
LM
112162011-06-30 Lawrence Mitchell <wence@gmx.li>
11217
11218 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
11219
e6597158
AM
112202011-06-30 Alan Mackenzie <acm@muc.de>
11221
1fa280a3
LM
11222 * progmodes/cc-engine.el (c-guess-continued-construct):
11223 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
11224 lock is disabled. Name this case as "CASE G".
11225
68ba37fb
KM
112262011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
11227
11228 * allout.el (allout-yank-processing): Fix injection of extra space
11229 between bullet and non-whitespace character in first topic when
11230 pasting, ensuring that the actual spacing in the pasted topic
11231 following the bullet char is preserved. This extra space was
11232 causing pasted encrypted topics to get a decrypted status even
11233 when the content was actually still encrypted. Now the decryption
11234 status from before the paste is preserved.
11235
11236 (allout-flag-region): Set all allout overlays so they evaporate
11237 when reduced to zero length (evanescent), to prevent overlay
11238 leakage.
11239
887a0b34
GM
112402011-06-30 Glenn Morris <rgm@gnu.org>
11241
94b9acce
GM
11242 * w32-fns.el (w32-charset-info-alist): Declare.
11243
1d9b46d4
GM
11244 * find-dired.el (find-grep-options): Simplify.
11245
cc232200
GM
11246 * term/ns-win.el (ns-set-resource): Declare.
11247
28e77c46
GM
11248 * ses.el (row, col): Declare dynamic variables honestly.
11249
887a0b34
GM
11250 * textmodes/reftex-parse.el (index-tags): Declare.
11251
658d8eb8
CY
112522011-06-30 Chong Yidong <cyd@stupidchicken.com>
11253
11254 * cus-edit.el (customize-push-and-save): New function.
11255
11256 * files.el (hack-local-variables-confirm): Use it.
11257
1fa280a3
LM
11258 * custom.el (load-theme): New arg NO-CONFIRM.
11259 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
11260 (custom-enabled-themes): Doc fix.
11261
11262 * cus-theme.el (customize-create-theme)
11263 (custom-theme-merge-theme): Callers to load-theme changed.
11264
bb617717
LMI
112652011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11266
d61bdd5d
LMI
11267 * thingatpt.el (thing-at-point-short-url-regexp): Require that
11268 short URLs have at least one dot in them (bug #7614).
11269
bb617717
LMI
11270 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
11271 nil, because using a pty is apparently too slow (bug #895).
11272
2f31f37a
LMI
112732011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
11274
11275 * mail/sendmail.el (sendmail-query-once): New function.
11276 (sendmail-query-once-function): New variable.
11277
3076b24e
GM
112782011-06-29 Glenn Morris <rgm@gnu.org>
11279
faf2a174
GM
11280 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
11281
3076b24e
GM
11282 * ses.el (top-level): Require cl when compiling.
11283 (ses-set-localvars): Fix error statement.
11284 Call it at compile time to silence a storm of warnings.
11285
5386012d
MR
112862011-06-29 Martin Rudalics <rudalics@gmx.at>
11287
11288 * window.el (normalize-live-buffer): Rename to
11289 window-normalize-buffer.
11290 (normalize-live-frame): Rename to window-normalize-frame.
11291 (normalize-any-window): Rename to window-normalize-any-window.
11292 (normalize-live-window): Rename to window-normalize-live-window.
11293 (make-window-atom): Rename to window-make-atom.
11294 (window-resize-reset): Rename to window--resize-reset.
11295 (window-resize-reset-1): Rename to window--resize-reset-1.
11296 (resize-mini-window): Rename to window--resize-mini-window.
11297 (resize-subwindows-skip-p): Rename to
11298 window--resize-subwindows-skip-p.
11299 (resize-subwindows-normal): Rename to
11300 window--resize-subwindows-normal.
11301 (resize-subwindows): Rename to window--resize-subwindows.
11302 (resize-other-windows): Rename to window--resize-siblings.
11303 (resize-this-window): Rename to window--resize-this-window.
11304 (resize-root-window): Rename to window--resize-root-window.
11305 (resize-root-window-vertically): Rename to
11306 window--resize-root-window-vertically.
11307 (normalize-buffer-to-display): Rename to
11308 window-normalize-buffer-to-display.
11309 (normalize-buffer-to-switch-to): Rename to
11310 window-normalize-buffer-to-switch-to.
11311 Correspondingly update all callers of the functions listed
11312 above.
11313 (display-buffer-alist, display-buffer-normalize-arguments)
11314 (display-buffer-normalize-options, display-buffer)
11315 (display-buffer-alist-set): Use "function" instead of
11316 "fun-with-args".
11317
1176868d
CY
113182011-06-28 Chong Yidong <cyd@stupidchicken.com>
11319
11320 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
11321 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
11322 debbugs.gnu.org. Mention acknowledgment email.
11323
20a7a65f
LMI
113242011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
11325
11326 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
11327 buffer multibyteness, since it shouldn't matter.
11328
5f45cca5
MR
113292011-06-28 Martin Rudalics <rudalics@gmx.at>
11330
11331 * window.el (display-buffer-in-side-window): Handle dedicated
11332 windows as in display-buffer-reuse-window.
11333 (display-buffer-normalize-alist): Use value of override
11334 specifier.
11335 (display-buffer-normalize-specifiers): Use value of
11336 other-window-means-other-frame specifier.
11337 (display-buffer-alist): Rewrite some texts in widgets.
11338 (display-buffer): Spread arguments when calling function
11339 specified by fun-with-args.
11340
ad85fe1f
DD
113412011-06-28 Deniz Dogan <deniz@dogan.se>
11342
1fa280a3
LM
11343 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
11344 Unnest `let'.
da68c4c8 11345
ad85fe1f
DD
11346 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
11347 selectors (Bug#5732).
ec49bd31 11348 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 11349
a08cc025
JA
113502011-06-27 Jari Aalto <jari.aalto@cante.net>
11351
11352 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
11353 (eshell-ls-date-format): New defcustom.
11354 (eshell-ls-file): Use it.
11355
e2b551c5
SM
113562011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11357
11358 * help-fns.el (describe-variable): Fix message for terminal-local vars.
11359
8982b231
KY
113602011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
11361
11362 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
11363 (ange-ftp-make-tmp-name): New arg.
11364 (ange-ftp-file-local-copy): Use it.
11365
36c9fa27
J
113662011-06-27 Jambunathan K <kjambunathan@gmail.com>
11367
11368 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
11369 no-conversion (Bug#8870).
11370
d68443dc
MR
113712011-06-27 Martin Rudalics <rudalics@gmx.at>
11372
11373 * window.el (window-right, window-left, window-child)
11374 (window-child-count, window-last-child)
11375 (window-iso-combination-p, walk-window-tree-1)
11376 (window-atom-check-1, window-tree-1, delete-window)
11377 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
11378 new naming conventions - window-vchild, window-hchild,
11379 window-next and window-prev are now called window-top-child,
11380 window-left-child, window-next-sibling and window-prev-sibling
11381 respectively.
d615d6d2
MR
11382 (resize-window-reset): Rename to window-resize-reset.
11383 (resize-window-reset-1): Rename to window-resize-reset-1.
11384 (resize-window): Rename to window-resize.
11385 (window-min-height, window-min-width)
11386 (resize-mini-window, resize-this-window, resize-root-window)
11387 (resize-root-window-vertically, adjust-window-trailing-edge)
11388 (enlarge-window, shrink-window, maximize-window)
11389 (minimize-window, delete-window, quit-restore-window)
11390 (split-window, balance-windows, balance-windows-area-adjust)
11391 (balance-windows-area, window-state-put-2)
11392 (display-buffer-even-window-sizes, display-buffer-set-height)
11393 (display-buffer-set-width, set-window-text-height)
11394 (fit-window-to-buffer): Rename all "resize-window" prefixed
11395 calls to use the "window-resize" prefix convention.
11396 (display-buffer-alist): Fix symbol for label specifier.
11397 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
11398 corresponding specifier.
11399 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 11400
b6458526
VB
114012011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
11402
11403 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
11404 convention.
11405 (ses-call-printer): Does not pass an empty string to formatter when the
11406 cell is empty to keep from barking printer Calc math-format-value.
11407
d31fd9ac
RS
114082011-06-27 Richard Stallman <rms@gnu.org>
11409
43d5bf84
RS
11410 * battery.el (battery-mode-line-limit): New variable.
11411 (battery-update): Handle it.
11412
d31fd9ac
RS
11413 * mail/rmailmm.el (rmail-mime-process-multipart):
11414 Handle truncated messages.
11415
819a6054
GM
114162011-06-27 Glenn Morris <rgm@gnu.org>
11417
11418 * progmodes/flymake.el (flymake-err-line-patterns):
11419 Allow for column numbers in the ant/javac pattern. (Bug#8866)
11420
cedc73f2
VB
114212011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
11422
819a6054 11423 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
11424 (ses--clean-!, ses--clean-_): New functions.
11425 (ses-range): Add configurability of readout order, and conversion
11426 to Calc vector.
11427
5e5d49b6
VB
11428 * ses.el (ses-repair-cell-reference-all): New function.
11429 (ses-cell-symbol): Set macro as safe, so that it can be used in
11430 formulas.
11431
56e6cc31 11432 * ses.el: Update cycle detection algorithm.
90ca8b49 11433 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 11434 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
11435 (ses-set-localvars): New function.
11436 (ses-make-cell): Add property-list as a cell element.
11437 (ses-cell-property-get-fun, ses-cell-property-get)
11438 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
11439 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
11440 New functions.
90ca8b49
VB
11441 (ses-cell-property-set, ses-cell-property-pop)
11442 (ses-cell-property-get-handle): New macro.
11443 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
11444 New aliases, used for code readability.
11445 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
11446 cycle detection.
11447 (ses-self-reference-early-detection): New defcustom.
fac916bf 11448 (ses-formula-references): Robustify against self-referring cells.
90ca8b49
VB
11449 (ses-mode): Use ses-set-localvars.
11450 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
11451 before lauching the update processing.
11452 (ses-initialize-Dijkstra-attempt): New function.
11453 (ses-recalculate-cell): Update for cycle detection based on
11454 Dijkstra algorithm.
11455
2bb63e81
VB
11456 * ses.el: Fix commenting and indenting convention.
11457
c9d29fb8
SM
114582011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11459
11460 * bs.el (bs-cycle-next): Complete last change.
11461
d8e4b68b
JB
114622011-06-27 Drew Adams <drew.adams@oracle.com>
11463
11464 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
11465
40098786
LMI
114662011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11467
c9d29fb8
SM
11468 * net/network-stream.el (network-stream-open-starttls):
11469 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
11470 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
11471
40098786
LMI
11472 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
11473 to binary to possibly avoid line encoding issues on Windows (among
11474 other things).
11475
468d09d4
LMI
114762011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11477
11478 * net/network-stream.el (open-network-stream): Return an :error
11479 saying what the problem was, if possible.
11480
11481 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
11482 server.
11483
11484 * net/network-stream.el (network-stream-open-starttls): If we
11485 wanted to use STARTTLS, and the server offered it, but we weren't
11486 able to because we had no STARTTLS support, then close the connection.
11487 (open-network-stream): Return an :error element, if present.
11488
16f07dd7
CY
114892011-06-26 Chong Yidong <cyd@stupidchicken.com>
11490
88821ca0
CY
11491 * hl-line.el (hl-line-sticky-flag): Doc fix.
11492 (global-hl-line-sticky-flag): New option (Bug#8323).
11493 (global-hl-line-highlight): Obey it.
11494
16f07dd7
CY
11495 * vc/vc.el (vc-revert-show-diff): Default to t.
11496
6b5ccddf
KM
114972011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
11498
c9d29fb8
SM
11499 * allout-widgets.el (allout-widgets-post-command-business):
11500 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
11501 undecorated when an isearch is continued past, and isearch
11502 automatically collapses them. This leads to "widget leaks", where
11503 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
11504 hidden widgets can slow down cursor travel, substantially.
11505 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
11506 so we're doing without this nicety.
11507
11508 (allout-widgets-tally-string): Don't try to do a hash-table-count
11509 of allout-widgets-tally when it's nil. This eliminates spurious "Error
11510 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
11511 *Messages* when allout-widgets-maintain-tally is t.
11512
355f2e07
MR
115132011-06-26 Martin Rudalics <rudalics@gmx.at>
11514
11515 * window.el (display-buffer-normalize-argument): Rename to
11516 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
11517 LABEL argument. Respect special-display-function when popping up
11518 a new frame. Fix code searching for a window showing the buffer
11519 on another frame.
c9d29fb8
SM
11520 (display-buffer-normalize-specifiers):
11521 Call display-buffer-normalize-arguments.
355f2e07
MR
11522 (display-buffer-in-window): Don't undedicate the window if its
11523 buffer remains the same.
11524 Reported by Drew Adams <drew.adams@oracle.com>.
11525 (display-buffer-alist): Add choice for same-window macro
11526 specfier.
11527 (display-buffer): Mention special meaning of LABEL argument in
11528 doc-string. Fix quoting. Don't pop up a new frame even as
11529 fallback.
11530
7ca8fc42
JB
115312011-06-26 Juanma Barranquero <lekktu@gmail.com>
11532
11533 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
11534 avoid deleting the current window in some cases (bug#8911).
11535
bc312254
AS
115362011-06-26 Andreas Schwab <schwab@linux-m68k.org>
11537
11538 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
11539 (Bug#8934)
11540
2db18f3f
LMI
115412011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11542
c9d29fb8
SM
11543 * net/network-stream.el (network-stream-open-starttls):
11544 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
11545 (network-stream-open-tls): Ditto.
11546
6302e0d3
LL
115472011-06-26 Leo Liu <sdl.web@gmail.com>
11548
11549 * register.el (registerv): New struct.
11550 (registerv-make): New function.
c9d29fb8
SM
11551 (jump-to-register, describe-register-1, insert-register):
11552 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
11553 struct. (Bug#8415)
11554
5fdd4046
CY
115552011-06-26 Chong Yidong <cyd@stupidchicken.com>
11556
2afef60a
CY
11557 * vc/vc.el (vc-revert-show-diff): New defcustom.
11558 (vc-diff-internal): New arg specifying diff buffer.
11559 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
11560 reuse an existing *vc-diff* buffer (Bug#8927).
11561
5fdd4046
CY
11562 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
11563
e93db24a
GM
115642011-06-26 Glenn Morris <rgm@gnu.org>
11565
11566 * progmodes/f90.el (f90-critical-indent): New option.
11567 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
11568 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
11569 (f90-mode): Doc fix.
11570 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
11571 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
11572 (f90-beginning-of-block, f90-next-block, f90-indent-region)
11573 (f90-match-end): Handle block, critical.
11574
eefff499
GM
115752011-06-25 Glenn Morris <rgm@gnu.org>
11576
f6ba4cc9
GM
11577 * calendar/diary-lib.el (diary-included-files): Doc fix.
11578 (diary-include-files): New function, extracted from
11579 diary-include-other-diary-files and diary-mark-included-diary-files.
11580 (diary-include-other-diary-files, diary-mark-included-diary-files):
11581 Just call diary-include-files.
11582 (diary-mark-entries): Reset diary-included-files on first call.
11583
16712304
GM
11584 * calendar/diary-lib.el (diary-mark-entries)
11585 (diary-mark-included-diary-files):
11586 Visit included diary-files in temp buffers.
11587
5d8e0d43
GM
11588 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
11589 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
11590 (f90-start-block-re, f90-imenu-generic-expression)
11591 (f90-looking-at-program-block-start, f90-no-block-limit):
11592 Add support for submodules.
11593
ccf7a5d5
GM
11594 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
11595 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 11596
11fdef7d 115972011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
11598
11599 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
11600 buffer-file-type before setting its value, to avoid disastrous
eefff499 11601 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 11602
74f53697
JB
116032011-06-25 Juanma Barranquero <lekktu@gmail.com>
11604
11605 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
11606
11607 * ses.el (ses-unload-function):
11608 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
11609
11610 * proced.el (proced-unload-function):
11611 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
11612
18a4ce5e
AR
116132011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
11614
11615 * server.el (server-create-window-system-frame): Add parameters arg.
11616 (server-process-filter): Doc fix. Handle frame-parameters.
11617
519d22cc
JB
116182011-06-25 Juanma Barranquero <lekktu@gmail.com>
11619
11620 Fix bug#8730, bug#8781.
11621
11622 * loadhist.el (unload--set-major-mode): New function.
11623 (unload-feature): Use it.
11624
11625 * progmodes/python.el (python-after-info-look): Add autoload cookie.
11626 (python-unload-function): New function.
11627
c206f5b0
SM
116282011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11629
11630 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
11631
f9ad64f3
GS
116322011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
11633
11634 * net/browse-url.el (browse-url-firefox-program): Add icecat to
11635 the candidates list.
11636
7d0da90e
JB
116372011-06-24 Juanma Barranquero <lekktu@gmail.com>
11638
11639 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
11640
14b4e83d
RS
116412011-06-23 Richard Stallman <rms@gnu.org>
11642
11643 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
11644 (rmail-variables): Set next-error-move-function.
11645 (rmail-what-message): Take argument POS.
11646 (rmail-next-error-move): New function.
11647
273d2baf
SM
116482011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
11649
11650 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
11651 messages for adjacent non-terminals.
11652
56c2cc9a
RS
116532011-06-23 Richard Stallman <rms@gnu.org>
11654
11655 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 11656 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
11657 (rmail-start-mail): Don't specify use of rmail-mail-return;
11658 that's done by mail-bury now.
11659 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 11660
d59eb518
MA
116612011-06-23 Michael Albinus <michael.albinus@gmx.de>
11662
11663 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
11664 SIZE is a number.
11665
02cfc6d6
MR
116662011-06-23 Martin Rudalics <rudalics@gmx.at>
11667
11668 * window.el (get-lru-window, get-mru-window)
11669 (get-largest-window): Never return a minibuffer window.
11670 (display-buffer-pop-up-window): Fix a bug that could lead to
11671 reusing the minibuffer window.
11672 (display-buffer): Pass original specifier argument to
11673 display-buffer-function instead of the normalized one.
11674 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
11675
4e323265
LL
116762011-06-22 Leo Liu <sdl.web@gmail.com>
11677
11678 * minibuffer.el (completing-read-function)
11679 (completing-read-default): Move from minibuf.c
11680
7a70468f
RS
116812011-06-22 Richard Stallman <rms@gnu.org>
11682
50718fc2
RS
11683 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
11684 to Rmail even if not started by a special Rmail command.
11685
7a70468f
RS
11686 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
11687 Copy the buffer currently showing just one message.
11688
297dde5a
RW
116892011-06-22 Roland Winkler <winkler@gnu.org>
11690
11691 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
11692 (bibtex-clean-entry): First delete the old key so that a
11693 customized algorithm for generating the new key does not get
11694 confused by the old key.
11695 (bibtex-url): Obey regexp of first step.
11696 (bibtex-search-entries): Do not use add-to-list with local
11697 list-var.
11698
97bb1093
LMI
116992011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
11700
11701 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
11702 stored a user name, then query for the password first, instead of
11703 waiting for SMTP to give an error message and the trying again.
11704
1c0f1a19
JD
117052011-06-22 Lawrence Mitchell <wence@gmx.li>
11706
11707 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
11708 BUFFER in call-process.
11709
396f7c9d
LMI
117102011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
11711
11712 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
11713 QUIT twice.
ddb7ffee
LMI
11714 (smtpmail-try-auth-methods): Require user name and password from
11715 auth-source.
396f7c9d 11716
8998d1b3
MR
117172011-06-22 Martin Rudalics <rudalics@gmx.at>
11718
11719 * window.el (display-buffer-default-specifiers)
11720 (display-buffer-alist): Remove entries for pop-up-frame-alist.
11721 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 11722 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
11723
11724 * frame.el (pop-up-frame-alist, pop-up-frame-function)
11725 (special-display-frame-alist, special-display-popup-frame):
11726 Remove duplicate declarations. These are now in window.el.
11727
4ea31e07
LMI
117282011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11729
c9d29fb8
SM
11730 * mail/smtpmail.el (smtpmail-via-smtp):
11731 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
11732 server supports it. SMTP servers that support STARTTLS commonly
11733 require it.
11734
11735 * net/network-stream.el (network-stream-open-starttls): Support
11736 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 11737 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 11738
95f41d9a
LMI
11739 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
11740 upgrades with `open-network-stream', and rely solely on
11741 auth-source for all credentials. Big changes throughout the file,
11742 but in particular:
c9d29fb8
SM
11743 (smtpmail-auth-credentials): Remove.
11744 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
11745 (smtpmail-via-smtp): Check for servers saying they want AUTH after
11746 MAIL FROM, too.
95f41d9a 11747
c9d29fb8
SM
11748 * net/network-stream.el (network-stream-open-starttls):
11749 Provide support for client certificates both for external and built-in
4ea31e07
LMI
11750 STARTTLS.
11751 (auth-source): Require.
11752 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
11753 (network-stream-certificate): Change cert-cert to cert and
11754 cert-key to key.
4ea31e07 11755
065ec2c7
MA
117562011-06-21 Michael Albinus <michael.albinus@gmx.de>
11757
11758 * net/tramp-cache.el (top): Don't load the persistency file when
11759 "emacs -Q" has been called.
11760
cd93b359
DR
117612011-06-21 Tim Harper <timcharper@gmail.com>
11762
d8e4b68b
JB
11763 * term/ns-win.el (ns-initialize-window-system):
11764 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
11765 resource to NO as it is not yet supported by the NS port.
11766
ae9c0411
JB
117672011-06-21 Juanma Barranquero <lekktu@gmail.com>
11768
11769 * misc.el (list-dynamic-libraries--refresh): Compute header here...
11770 (list-dynamic-libraries): ...not here.
11771
7f3f739f
LL
117722011-06-21 Leo Liu <sdl.web@gmail.com>
11773
11774 * subr.el (sha1): Implement sha1 using secure-hash.
11775
327c8fb1
MR
117762011-06-21 Martin Rudalics <rudalics@gmx.at>
11777
11778 * window.el (display-buffer-alist): In default value do not
11779 enforce searching a window on any but the selected frame.
11780 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
11781 (display-buffer-select-window): Remove function.
11782 (display-buffer-in-window): When a window on another frame gets
11783 reused, do not select it any more but just raise its frame if
11784 necessary (Bug#8851) and (Bug#8856).
11785 (display-buffer-normalize-options): Handle pop-up-frames related
11786 options more faithfully.
11787 (pop-to-buffer): Don't rely on `display-buffer' selecting the
11788 window if it is on another frame.
c9d29fb8
SM
11789 (display-buffer-alist, display-buffer-default-specifiers):
11790 Don't make new frame unsplittable by default.
9e9de014
MR
11791 (display-buffer-normalize-argument): Fix doc-string typo and use
11792 'same-frame-other-window instead of 'other-window when associating
11793 with display-buffer-macro-specifiers.
327c8fb1 11794
7cf3f556
VB
117952011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
11796
11797 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
11798 New functions.
11799 (5x5-mode-map, 5x5-mode-menu): Bind them.
11800 (5x5-draw-grid): Tweak the solver's rendering.
11801
60a406cf
SM
118022011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11803
11804 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
11805 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
11806
d8e4b68b 118072011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
11808
11809 * menu-bar.el: Use function variable instead of switch-to-buffer.
11810 (menu-bar-select-buffer-function): New variable.
60a406cf 11811 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 11812
478d6f95
SM
118132011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11814
11815 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
11816 variable's status.
11817
ca530739
JD
118182011-06-20 Jan Djärv <jan.h.d@swipnet.se>
11819
11820 * x-dnd.el (x-dnd-version-from-flags)
11821 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
11822 and long as number (Bug#8899).
11823 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
11824
bcd70d97
SM
118252011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11826
60a406cf 11827 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
11828 (completion-try-completion, completion-all-completions): Compute the
11829 metadata argument if it's missing; make it optional (bug#8795).
11830
60a406cf 11831 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
11832 (widget-complete): Use new :completion-function property.
11833 (widget-completions-at-point): New function.
11834 (default): Use :completion-function instead of :complete.
60a406cf
SM
11835 (widget-default-completions): Rename from widget-default-complete;
11836 Rewrite.
bcd70d97
SM
11837 (widget-string-complete, widget-file-complete, widget-color-complete):
11838 Remove functions.
11839 (file, symbol, function, variable, coding-system, color):
11840 * international/mule-cmds.el (default-input-method, charset)
11841 (language-info-custom-alist):
11842 * cus-edit.el (face): Use new property :completions.
11843
11844 * progmodes/pascal.el (pascal-completions-at-point): New function.
11845 (pascal-mode): Use it.
11846 (pascal-mode-map): Use completion-at-point.
11847 (pascal-toggle-completions): Make obsolete.
11848 (pascal-complete-word, pascal-show-completions):
11849 * progmodes/octave-mod.el (octave-complete-symbol):
11850 Redefine as obsolete alias.
11851 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
11852 Signal absence of completion info for old Octave,
11853 (inferior-octave-complete): Redefine as obsolete alias.
11854 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
11855 (meta-completions-at-point): Rename from meta-complete-symbol and
11856 adapt it for use on completion-at-point-functions.
11857 (meta-common-mode): Use it.
11858 (meta-looking-at-backward, meta-match-buffer): Remove.
11859 (meta-complete-symbol): Redefine as obsolete alias.
11860 (meta-common-mode-map): Use completion-at-point.
11861 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
11862 (makefile-mode-map): Use completion-at-point.
11863 (makefile-completions-at-point): Rename from makefile-complete and
11864 adapt it for use on completion-at-point-functions.
11865 (makefile-mode): Use it.
11866 (makefile-complete): Redefine as obsolete alias.
11867
aebf69c8
DD
118682011-06-20 Deniz Dogan <deniz@dogan.se>
11869
11870 * net/rcirc.el: Delete trailing whitespaces once and for all.
11871
bfbbb27d
DC
118722011-06-20 Daniel Colascione <dan.colascione@gmail.com>
11873
11874 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
11875
d264a46b
CY
118762011-06-19 Chong Yidong <cyd@stupidchicken.com>
11877
4ca009e5
CY
11878 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
11879
d264a46b
CY
11880 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
11881
fbf5b3ce
MR
118822011-06-19 Martin Rudalics <rudalics@gmx.at>
11883
11884 * window.el (display-buffer-other-window-means-other-frame):
11885 Call display-buffer-normalize-alist.
11886 (display-buffer-normalize-specifiers-1): Rename to
11887 display-buffer-normalize-argument. New argument other-frame.
11888 Rewrite.
11889 (display-buffer-normalize-specifiers-2): Rename to
11890 display-buffer-normalize-options.
11891 (display-buffer-normalize-alist-1): New function.
11892 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
11893 display-buffer-normalize-alist.
11894 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
11895 (display-buffer-normalize-options-inhibit): New variable.
11896 (display-buffer-normalize-specifiers): Rewrite calling
11897 display-buffer-normalize-alist,
11898 display-buffer-normalize-argument, and
11899 display-buffer-normalize-options. Don't call the latter if
11900 display-buffer-normalize-options-inhibit is non-nil.
11901 (frame-auto-delete): New option.
11902 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
11903 (window-list-no-nils, window-state-ignored-parameters)
11904 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
11905 (window-state-put-1, window-state-put-2, window-state-put):
11906 New functions.
9a028c23
MR
11907 (display-buffer-normalize-options): Move special-display-p group
11908 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 11909
6d10d800
CY
119102011-06-18 Chong Yidong <cyd@stupidchicken.com>
11911
6420d28b
CY
11912 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
11913 groups (Bug#8776).
11914 (rx-submatch-n): New function.
11915 (rx): Document it.
11916
ddb8b596
CY
11917 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
11918 (Bug#8768).
11919
11920 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
11921
77080289
CY
11922 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
11923
61dfb316
CY
11924 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
11925 anytime existing face settings are present (Bug#8889).
11926
6d10d800
CY
11927 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
11928 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
11929 Remove unused argument.
11930
be3fb2b8
MR
119312011-06-18 Martin Rudalics <rudalics@gmx.at>
11932
bcd70d97
SM
11933 * window.el (display-buffer-default-specifiers):
11934 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
11935 pop-up-window-min-width, and another reuse-window specifier
11936 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
11937 (display-buffer-normalize-specifiers-2):
11938 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
11939 pop-up-windows is unset. Add a reuse-window specifier for the
11940 case popping up a new window fails.
11941 (special-display-popup-frame): Remove double quoting.
28dec25a 11942 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 11943
1c6d8c76
SM
119442011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
11945
11946 * shell.el (shell-completion-vars): Set pcomplete-termination-string
11947 according to comint-completion-addsuffix.
11948
11949 * pcomplete.el: Convert to lexical binding and fix bug#8819.
11950 (pcomplete-suffix-list): Mark as obsolete.
11951 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
11952 pcomplete-seen in the closure.
11953 (pcomplete-comint-setup): Setup completion-at-point as well.
11954 (pcomplete--entries): New function.
11955 (pcomplete--env-regexp): New var.
11956 (pcomplete-entries): Rewrite to work with partial-completion and
11957 without relying on pcomplete-suffix-list.
11958 (pcomplete-pare-list): Remove, unused.
11959
25aef8b8
MR
119602011-06-17 Martin Rudalics <rudalics@gmx.at>
11961
11962 * window.el (display-buffer-alist): Set pop-up-window-min-height
11963 and pop-up-window-min-width in default value. Reported by
11964 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
11965 other-window-means-other-frame.
11966 (display-buffer-macro-specifiers): Comment out entry for
11967 other-window specifier.
11968 (display-buffer-other-window-means-other-frame): New function.
11969 (display-buffer-normalize-specifiers-1): New arguments
11970 buffer-name and label. Treat other-window case specially.
11971 (display-buffer-normalize-specifiers-2): Treat other-window case
11972 specially.
11973 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
11974 (display-buffer-normalize-specifiers):
11975 Call display-buffer-normalize-specifiers-3.
25aef8b8 11976
dbad4f69
MR
119772011-06-17 Martin Rudalics <rudalics@gmx.at>
11978
11979 * window.el (same-window-p): Fix two typos introduced when
11980 adding with-no-warnings.
d1067961
MR
11981 (display-buffer-normalize-specifiers-1): Don't check
11982 pop-up-frames for 'unset initialization.
11983 (display-buffer-normalize-specifiers-2): Major rewrite using
11984 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
11985 (pop-up-frames, display-buffer-reuse-frames)
11986 (display-buffer-mark-dedicated): Don't initialize to 'unset.
11987 Suggested by David Engster <deng@randomsample.de>.
11988 (even-window-heights): Initialize to 'unset.
11989 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
11990 (display-buffer-macro-specifiers): Don't pop up a new frame in the
11991 other window case.
dbad4f69 11992
9b9c9e3a
MR
119932011-06-16 Martin Rudalics <rudalics@gmx.at>
11994
bcd70d97
SM
11995 * window.el (display-buffer-normalize-specifiers-1):
11996 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 11997 second argument of display-buffer (Bug#8865).
981d5c09
MR
11998 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
11999 (switch-to-buffer-other-window-same-frame)
12000 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
12001 Adams (Bug#8875).
9c2755e9
MR
12002 (display-buffer): Don't check noninteractive when calling
12003 display-buffer-pop-up-frame.
12004 (display-buffer-pop-up-frame): Never pop up a frame in
12005 noninteractive mode (Bug#8857).
67222e1d
MR
12006 (enlarge-window, shrink-window): Don't report an error when the
12007 window can't be resized as requested (Bug#8862).
9b9c9e3a 12008
2b75be67
SM
120092011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12010
9ffdd3ba
SM
12011 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
12012
cb581a67
SM
12013 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
12014
2b75be67
SM
12015 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
12016
8c0e3589
AM
120172011-06-15 Alan Mackenzie <acm@muc.de>
12018
cb581a67
SM
12019 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
12020 for declarators, disable knr checking to speed up for normal files.
12021 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 12022
b96e6cde
LMI
120232011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12024
4bba86e6
LMI
12025 * net/network-stream.el (open-network-stream): Add the keyword
12026 :always-query-capabilities for the case where you want to force a
12027 `plain' network connection, but the protocol still requires the
12028 capabilitiy command (i.e., SMTP and EHLO).
12029
2b75be67 12030 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
12031 consistency with other `-live-p' functions.
12032
efdcdbf8
SM
120332011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12034
12035 * window.el (same-window-buffer-names, same-window-regexps)
12036 (special-display-frame-alist, special-display-popup-frame)
12037 (special-display-function, special-display-buffer-names)
12038 (special-display-regexps, pop-up-frame-alist)
12039 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
12040 (pop-up-windows, split-window-preferred-function)
12041 (split-height-threshold, split-width-threshold, even-window-heights)
12042 (display-buffer-mark-dedicated): Don't encourage the use of
12043 display-buffer-alist from Elisp code.
12044
c5cde042
DN
120452011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
12046
12047 * progmodes/python.el (python-mode): Derive from prog-mode.
12048 * progmodes/ps-mode.el (ps-mode):
12049 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 12050 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
12051 * progmodes/ld-script.el (ld-script-mode): Likewise.
12052
baa1c9ab
MR
120532011-06-15 Martin Rudalics <rudalics@gmx.at>
12054
12055 * window.el (display-buffer-alist): Trim default value to avoid
12056 popping up a new frame (Bug#8857) or reusing an arbitrary window
12057 on another frame.
12058 (display-buffer): Do not fall back on popping up a new frame in
12059 batch mode (Bug#8857).
12060
c5dd5a51
CY
120612011-06-14 Chong Yidong <cyd@stupidchicken.com>
12062
12063 * cus-theme.el (describe-theme-1): Use custom-theme-p.
12064 (custom-theme-summary): New function.
12065 (customize-themes): Use it.
12066
d647b7c4
GM
120672011-06-13 Glenn Morris <rgm@gnu.org>
12068
12069 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
12070
9481c002
MR
120712011-06-13 Martin Rudalics <rudalics@gmx.at>
12072
357f93d2
MR
12073 * help.el (help-window): Remove variable.
12074 (help-window-point-marker, temp-buffer-max-height)
12075 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
12076 (help-print-return-message): Don't set help-window.
12077 (resize-temp-buffer-window): Rewrite cod eand doc-string.
12078 (help-window-setup-finish): Remove.
12079 (help-window-display-message, help-window-setup)
12080 (with-help-window): Major rewrite based on new
12081 display-buffer-window variable.
12082
12083 * help-mode.el (help-mode-finish): Remove help-window related
12084 code.
12085
12086 * view.el (view-exits-all-viewing-windows): Remove reference to
12087 view-return-to-alist in doc-string.
12088 (view-return-to-alist): Make obsolete.
12089 (view-buffer): Call pop-to-buffer-same-window and remove
12090 undo-window code.
12091 (view-buffer-other-window): Call pop-to-buffer-other-window and
12092 simplify code. Ignore second argument.
12093 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
12094 simplify code. Ignore second argument.
12095 (view-return-to-alist-update): Make obsolete.
12096 (view-mode-enter): Rename second argument to QUIT-RESTORE.
12097 Rewrite using quit-restore window parameters.
2b75be67
SM
12098 (view-mode-exit): Rename second argument to EXIT-ONLY.
12099 Rewrite using quit-restore-window.
357f93d2
MR
12100 (View-exit, View-exit-and-edit, View-leave, View-quit)
12101 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
12102 appropriate arguments.
12103 (view-end-message): Use quit-restore window parameter.
12104
9481c002
MR
12105 * window.el (display-buffer-function): Rewrite doc-string.
12106 (display-buffer-window, display-buffer-alist): New variables.
12107 (display-buffer-split-specifiers)
12108 (display-buffer-side-specifiers)
12109 (display-buffer-macro-specifiers): New constants.
12110 (display-buffer-even-window-sizes, display-buffer-set-height)
12111 (display-buffer-set-width, display-buffer-select-window)
12112 (display-buffer-in-window, display-buffer-reuse-window)
12113 (display-buffer-split-window-1, display-buffer-split-window)
12114 (display-buffer-split-atom-window, display-buffer-pop-up-window)
12115 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
12116 (display-buffer-in-side-window, normalize-buffer-to-display)
12117 (display-buffer-normalize-specifiers-1)
12118 (display-buffer-normalize-specifiers-2)
2b75be67
SM
12119 (display-buffer-normalize-specifiers, display-buffer-frame):
12120 New functions.
9481c002
MR
12121 (display-buffer): Major rewrite.
12122 (display-buffer-other-window, display-buffer-other-frame)
12123 (pop-to-buffer, switch-to-buffer-other-window)
12124 (switch-to-buffer-other-frame): Rewrite.
12125 (display-buffer-same-window, display-buffer-same-frame)
12126 (display-buffer-same-frame-other-window)
12127 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
12128 (pop-to-buffer-other-window)
12129 (pop-to-buffer-same-frame-other-window)
12130 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
12131 (switch-to-buffer-other-window-same-frame): New functions.
12132 (same-window-p, special-display-p): Rewrite disabling warnings.
12133 Make obsolete.
12134 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12135 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
12136 Make obsolete
12137 (same-window-buffer-names, same-window-regexps)
12138 (special-display-frame-alist, special-display-popup-frame)
12139 (special-display-function, special-display-buffer-names)
12140 (special-display-regexps, pop-up-frame-alist)
12141 (pop-up-frame-function, split-window-preferred-function)
12142 (split-height-threshold, split-width-threshold)
12143 (even-window-heights): Make obsolete.
12144
9db51aca
GM
121452011-06-12 Glenn Morris <rgm@gnu.org>
12146
12147 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 12148 Misc simplifications.
9db51aca 12149
39cffb44
MR
121502011-06-12 Martin Rudalics <rudalics@gmx.at>
12151
12152 * window.el (window-safely-shrinkable-p): Restore function which
12153 was inadvertently removed in change from 2011-06-11. Declare as
12154 obsolete.
12155
2b75be67
SM
12156 * calendar/calendar.el (calendar-generate-window):
12157 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
12158 window-safely-shrinkable-p.
12159
a8955be7
GM
121602011-06-12 Glenn Morris <rgm@gnu.org>
12161
12162 * progmodes/fortran.el (fortran-mode-syntax-table):
12163 * progmodes/f90.el (f90-mode-syntax-table):
12164 Set % to punctuation. (Bug#8820)
12165 (f90-find-tag-default): Remove, no longer needed.
12166
f0d4059d
DC
121672011-06-12 Daniel Colascione <dan.colascione@gmail.com>
12168
12169 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
12170
1100a63c
CY
121712011-06-11 Chong Yidong <cyd@stupidchicken.com>
12172
12173 * image.el (image-animated-p): Return animation delay in seconds.
12174 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
12175 (image-animate-timeout): Remove DELAY argument. Don't assume
12176 every subimage has the same delay; get it from image-animated-p.
12177 (image-animate): Caller changed.
12178
def722bf
MA
121792011-06-11 Michael Albinus <michael.albinus@gmx.de>
12180
12181 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
12182 to ignored backtrace functions.
12183
0a2bb1a9
GM
121842011-06-11 Glenn Morris <rgm@gnu.org>
12185
12186 * calendar/appt.el (appt-disp-window-function): Doc fix.
12187 (appt-check): Handle overlapping appointments. (Bug#8337)
12188
6198ccd0
MR
121892011-06-11 Martin Rudalics <rudalics@gmx.at>
12190
12191 * window.el (window-tree-1, window-tree): New functions, moving
12192 the latter to window.el.
12193 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
12194 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
12195 (bw-refresh-edges): Remove.
12196 (balance-windows-1, balance-windows-2): New functions.
12197 (balance-windows): Rewrite in terms of window tree functions,
12198 balance-windows-1 and balance-windows-2.
12199 (bw-adjust-window): Remove.
12200 (balance-windows-area-adjust): New function with functionality of
12201 bw-adjust-window but using resize-window.
2b75be67
SM
12202 (set-window-text-height): Rewrite doc-string.
12203 Use normalize-live-window and resize-window.
12204 (enlarge-window-horizontally, shrink-window-horizontally):
12205 Rename argument to DELTA.
6198ccd0
MR
12206 (window-buffer-height): New function.
12207 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
12208 Rewrite using new window resize routines.
2b75be67
SM
12209 (kill-buffer-and-window, mouse-autoselect-window-select):
12210 Use ignore-errors instead of condition-case.
6198ccd0
MR
12211 (quit-window): Call delete-frame instead of delete-windows-on
12212 for the only buffer on frame.
12213
9397e56f
MR
122142011-06-10 Martin Rudalics <rudalics@gmx.at>
12215
12216 * loadup.el (top-level): Load window before files for the sake
12217 of replace-buffer-in-windows.
12218
12219 * files.el (read-buffer-to-switch)
12220 (switch-to-buffer-other-window)
2b75be67
SM
12221 (switch-to-buffer-other-frame, display-buffer-other-frame):
12222 Move to window.el.
9397e56f
MR
12223
12224 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
12225 (previous-buffer): Move to window.el.
12226
12227 * bindings.el (unbury-buffer): Move to window.el.
12228
12229 * window.el (delete-other-windows-vertically): Move after
12230 definition of delete-other-windows.
12231 (other-window, delete-windows-on, replace-buffer-in-windows):
12232 Move here from window.c.
12233 (record-window-buffer, unrecord-window-buffer)
12234 (set-window-buffer-start-and-point, switch-to-prev-buffer)
12235 (switch-to-next-buffer): New functions.
12236 (get-next-valid-buffer, last-buffer, next-buffer): Move here
12237 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
12238 (previous-buffer): Move here from simple.el.
12239 Call switch-to-prev-buffer.
9397e56f
MR
12240 (bury-buffer): Move here from buffer.c. Switch to previous
12241 buffer when window cannot be deleted.
12242 (unbury-buffer): Move here from bindings.el.
12243 (ctl-x-map): Move binding for other-window from window.c to
12244 here.
12245 (read-buffer-to-switch, switch-to-buffer-other-window)
12246 (switch-to-buffer-other-frame): Move here from files.el.
12247 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
12248 (switch-to-buffer): Move here from buffer.c.
12249 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 12250
562dd5e9
MR
122512011-06-10 Martin Rudalics <rudalics@gmx.at>
12252
12253 * window.el (window-min-height, window-min-width): Move here
12254 from window.c. Add defcustoms and rewrite doc-strings.
12255 (resize-mini-window, resize-window): New functions.
12256 (adjust-window-trailing-edge, enlarge-window, shrink-window):
12257 Move here from window.c.
12258 (maximize-window, minimize-window): New functions.
12259 (delete-window, delete-other-windows, split-window): Move here
12260 from window.c.
12261 (window-split-min-size): New function.
12262 (split-window-keep-point): Mention split-window-above-each-other
12263 instead of split-window-vertically.
2b75be67 12264 (split-window-above-each-other, split-window-vertically):
1154d12e
JB
12265 Rename split-window-vertically to split-window-above-each-other
12266 and provide defalias for old definition.
12267 (split-window-side-by-side, split-window-horizontally):
12268 Rename split-window-horizontally to split-window-side-by-side
12269 and provide defalias for the old definition.
562dd5e9
MR
12270 (ctl-x-map): Move bindings for delete-window,
12271 delete-other-windows and enlarge-window here from window.c.
12272 Replace bindings for split-window-vertically and
12273 split-window-horizontally by bindings for
12274 split-window-above-each-other and split-window-side-by-side.
12275
12276 * cus-start.el (all): Remove entries for window-min-height and
12277 window-min-width. Add entries for window-splits and
12278 window-nest.
12279
f0da764a
GM
122802011-06-09 Glenn Morris <rgm@gnu.org>
12281
80675c21
GM
12282 * calendar/appt.el (appt-mode-line): New function.
12283 (appt-check, appt-disp-window): Use it.
12284
f0da764a
GM
12285 * files.el (hack-one-local-variable-eval-safep):
12286 Allow minor-modes with explicit +/-1 arguments.
12287
59f623b7
TZ
122882011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
12289
12290 * term/xterm.el (xterm): Add defgroup.
12291 (xterm-extra-capabilities): Add defcustom to supply known xterm
12292 capabilities, skip querying them, or query them (default).
12293 (terminal-init-xterm): Use it.
12294 (terminal-init-xterm-modify-other-keys): New function to set up
12295 modifyOtherKeys support to simplify `terminal-init-xterm'.
12296
9aab8e0d
MR
122972011-06-09 Martin Rudalics <rudalics@gmx.at>
12298
12299 * window.el (resize-window-reset, resize-window-reset-1)
12300 (resize-subwindows-skip-p, resize-subwindows-normal)
12301 (resize-subwindows, resize-other-windows, resize-this-window)
12302 (resize-root-window, resize-root-window-vertically)
12303 (window-deletable-p, window-or-subwindow-p)
12304 (frame-root-window-p): New functions.
12305
e8b08aee
GM
123062011-06-09 Glenn Morris <rgm@gnu.org>
12307
12308 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
12309 (ange-ftp-get-files): Use it.
12310
254c37a5
AK
123112011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
12312
12313 * mail/sendmail.el (mail-recover-1, mail-recover):
12314 * files.el (recover-file, recover-session):
12315 Handle dired-listing-switches not being just a single short option.
12316
35d7dbd3
GM
123172011-06-09 Glenn Morris <rgm@gnu.org>
12318
12319 * calendar/appt.el (appt-display-message, appt-disp-window):
12320 Handle lists of appointments.
12321
387522b2
MR
123222011-06-08 Martin Rudalics <rudalics@gmx.at>
12323
2b75be67
SM
12324 * window.el (one-window-p): Move down in code.
12325 Rewrite doc-string.
12326 (window-current-scroll-bars): Rewrite doc-string.
12327 Normalize live window argument.
387522b2
MR
12328 (walk-windows, get-window-with-predicate, count-windows):
12329 Rewrite doc-string. Use window-list-1.
12330 (window-in-direction-2, window-in-direction, get-mru-window):
12331 New functions.
12332
d8e4b68b 123332011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
12334
12335 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
12336 Doc fix (Bug#8713).
12337
123382011-06-08 Chong Yidong <cyd@stupidchicken.com>
12339
12340 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
12341
123422011-06-08 Juanma Barranquero <lekktu@gmail.com>
12343
12344 * loadhist.el (unload-feature-special-hooks):
12345 Add `comint-output-filter-functions'.
12346
0de12c52
IK
123472011-06-08 Ivan Kanis <gnu@kanis.fr>
12348
12349 * calendar/appt.el (appt-check): Move some initializations into the let.
12350
f3d1777e
MR
123512011-06-08 Martin Rudalics <rudalics@gmx.at>
12352
12353 * window.el (window-height): Defalias to window-total-height.
12354 (window-width): Defalias to window-body-width.
12355
18af70d0
CY
123562011-06-07 Chong Yidong <cyd@stupidchicken.com>
12357
12358 * image-mode.el (image-toggle-animation): New command.
12359 (image-mode-map): Bind it to RET.
12360 (image-mode): Update message.
12361 (image-toggle-display-image): Avoid a spurious cache flush.
12362 (image-transform-rotation): Doc fix.
12363 (image-transform-properties): Return quickly in the normal case.
12364 (image-animate-loop): Rename from image-animate-max-time.
12365
2b75be67 12366 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
12367 (create-animated-image): Remove unnecessary function.
12368 (image-animate): Rename from image-animate-start. New arg.
2b75be67 12369 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
12370 (image-animate-timer): Use car-safe.
12371 (image-animate-timeout): Rename argument.
12372
190b47e6
MR
123732011-06-07 Martin Rudalics <rudalics@gmx.at>
12374
12375 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
12376 window.c. Rename first argument to ALL-FRAMES.
12377 Rephrase doc-strings.
12378 (get-buffer-window-list): Rewrite using window-list-1.
12379 Rephrase doc-string.
a1511caf
MR
12380 (window-safe-min-height, window-safe-min-width): New constants.
12381 (window-size-ignore, window-min-size, window-min-size-1)
12382 (window-sizable, window-sizable-p, window-size-fixed-1)
12383 (window-size-fixed-p, window-min-delta-1, window-min-delta)
12384 (window-max-delta-1, window-max-delta, window-resizable)
12385 (window-resizable-p, window-total-height, window-total-width)
12386 (window-body-width): New functions.
12387 (window-full-height-p, window-full-width-p): Rewrite using
12388 window-total-size.
12389 (window-body-height): Rewrite using window-body-size.
190b47e6 12390
85cc1f11
MR
123912011-06-06 Martin Rudalics <rudalics@gmx.at>
12392
12393 * window.el (window-right, window-left, window-child)
12394 (window-child-count, window-last-child, window-any-p)
12395 (normalize-live-buffer, normalize-live-frame)
12396 (normalize-any-window, normalize-live-window)
12397 (window-iso-combination-p, window-iso-combined-p)
12398 (window-iso-combinations)
12399 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
12400 (windows-with-parameter, window-with-parameter)
12401 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
12402 (window-atom-check, window-side-check, window-check):
12403 New functions.
85cc1f11
MR
12404 (ignore-window-parameters, window-sides, window-sides-vertical)
12405 (window-sides-slots): New variables.
12406 (window-size-fixed): Move down in code. Minor doc-string fix.
12407
e7156492
AS
124082011-06-05 Andreas Schwab <schwab@linux-m68k.org>
12409
12410 * comint.el (comint-dynamic-complete-as-filename)
12411 (comint-dynamic-complete-filename): Correctly call
12412 completion-in-region.
12413
7e821d0d
DD
124142011-06-05 Deniz Dogan <deniz@dogan.se>
12415
12416 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
12417 in last change.
12418
ac09b8a1
DD
124192011-06-05 Deniz Dogan <deniz@dogan.se>
12420
12421 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
12422 (rcirc): Use it to prompt for encryption.
12423
34699b85
RW
124242011-06-05 Roland Winkler <winkler@gnu.org>
12425
12426 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
12427 (bibtex-search-entries): New command bound to C-c C-a.
12428 (bibtex-display-entries): New function.
12429
004dedd3
RW
124302011-06-05 Roland Winkler <winkler@gnu.org>
12431
12432 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
12433 (bibtex-insert-kill): After yanking insert newline if necessary.
12434 (bibtex-initialize): Call bibtex-string-files-init only once.
12435 (bibtex-mode): Do not call easy-menu-add.
12436 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
12437 (bibtex-yank): Set arg properly if nil.
12438
022fe7ce
RW
124392011-06-05 Roland Winkler <winkler@gnu.org>
12440
2b75be67
SM
12441 * textmodes/bibtex.el (bibtex-search-entry-globally):
12442 New variable.
022fe7ce
RW
12443 (bibtex-search-entry): Use it.
12444
b7c3692a
RW
124452011-06-05 Roland Winkler <winkler@gnu.org>
12446
12447 * textmodes/bibtex.el (bibtex-entry-format): New option
12448 sort-fields.
12449 (bibtex-format-entry, bibtex-reformat): Honor this option.
12450 (bibtex-parse-entry): Return fields in proper order.
12451
8eda563d
JB
124522011-06-05 Juanma Barranquero <lekktu@gmail.com>
12453
12454 * doc-view.el (doc-view-remove-if): Move computation of result out
12455 of `dolist' to silence misleading lexical-binding warning.
12456
7dbe3dbc
CY
124572011-06-04 Chong Yidong <cyd@stupidchicken.com>
12458
12459 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
12460 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
12461
0c33dd17
MA
124622011-06-04 Michael Albinus <michael.albinus@gmx.de>
12463
12464 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
12465 "SunOS 5.10".
12466
f8f91c2b
MA
124672011-06-04 Michael Albinus <michael.albinus@gmx.de>
12468
12469 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
12470 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
12471 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
12472 (tramp-parse-putty):
12473 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
12474 (tramp-completion-function-alist-ssh)
12475 (tramp-completion-function-alist-telnet)
12476 (tramp-completion-function-alist-su)
12477 (tramp-completion-function-alist-putty): Set `tramp-autoload'
12478 cookie.
12479
12480 * net/tramp-ftp.el:
12481 * net/tramp-sh.el:
12482 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
12483 load "tramp.el" `tramp-set-completion-function'.
12484
e17d9003
SM
124852011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
12486
12487 * shell.el: Require and use pcomplete.
12488 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
12489 (shell-completion-vars): Set pcomplete-default-completion-function.
12490
6c4cab03
DD
124912011-06-04 Deniz Dogan <deniz@dogan.se>
12492
12493 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
12494 `memq' (Bug#8799).
12495
ea9fafe0
SM
124962011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12497
12498 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
12499
b3e945d3
JB
125002011-06-02 Juanma Barranquero <lekktu@gmail.com>
12501
12502 * bs.el (bs--mark-unmark, bs--nth-wrapper):
12503 * mpc.el (mpc-select-extend, mpc-songpointer-context):
12504 * vc/log-view.el (log-view-beginning-of-defun):
12505 * vc/smerge-mode.el (smerge-apply-resolution-patch)
12506 (smerge-refine-forward, smerge-refine-chopup-region):
12507 Silence warning for unused `dotimes' counter variables.
12508
7d520089
SM
125092011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12510
12511 * net/tramp.el (tramp-with-progress-reporter): Rename from
12512 with-progress-reporter. Use `declare'.
12513 * net/tramp-smb.el:
12514 * net/tramp-sh.el:
12515 * net/tramp-gvfs.el: Update all uses.
12516
a1c2400f
JB
125172011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
12518
12519 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
12520 buffer isn't killed before making it current.
12521
2403c841
SM
125222011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12523
12524 Silence various byte-compiler warnings.
12525 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
12526 `access-type' and new obsolescence format.
12527 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
12528 new format.
12529 (byte-compile-check-variable): New `access-type' argument.
12530 Only warn if the access-type is obsolete.
12531 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
12532 (byte-compile-variable-set): Adjust callers.
12533 * help-fns.el (describe-variable): Adjust to new obsolescence format.
12534 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
12535 setting it as obsolete.
12536 * simple.el (minibuffer-completing-symbol):
12537 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
12538 access as obsolete.
12539 * minibuffer.el (minibuffer-completing-file-name): Don't make it
12540 obsolete yet.
12541 * international/quail.el (quail-mouse-choose-completion): Remove unused
12542 code referring to obsolete var.
12543 (quail-choose-completion-string): Remove.
12544 * server.el (server-clients-with, server-kill-buffer-query-function)
12545 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
12546 * proced.el (proced-send-signal):
12547 * emacs-lisp/lisp.el (lisp-complete-symbol):
12548 Replace completion-annotate-function with completion-extra-properties.
12549
2462470b
SM
125502011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12551
fb5b2591
SM
12552 * simple.el (goto-line): Use read-number.
12553 (overriding-map-is-bound): Remove.
12554 (saved-overriding-map): Change default.
12555 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
12556 Take the map as argument.
12557 (universal-argument, negative-argument, digit-argument): Use it.
12558 (restore-overriding-map): Adjust.
12559 (do-auto-fill): Use fill-forward-paragraph.
12560 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
12561
fd6fa53f
SM
12562 * minibuffer.el (minibuffer-inactive-mode-map): New var.
12563 (minibuffer-inactive-mode): New major mode.
12564 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
12565 the *Messages* buffer" hack.
12566 (mouse-popup-menubar): Don't burp if the event is a normal key.
12567
2462470b
SM
12568 Miscellaneous tweaks.
12569 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
12570 lexical scoping as in subr.el's dolist and dotimes.
12571 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
12572 Silence compiler warning.
12573 * thingatpt.el (forward-whitespace): Trivial coding style fix.
12574 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
12575 * international/ccl.el (ccl-compile): Trivial simplification.
12576 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
12577 * emacs-lisp/testcover.el (testcover-end): Remove spurious
12578 `printflag' argument.
12579 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
12580 Purecopy the whole obsolescence data.
12581
108bf785
LL
125822011-06-01 Leo Liu <sdl.web@gmail.com>
12583
12584 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
12585 improve doc-string as suggested by Marco Pessotto
12586 <melmothx@gmail.com>.
12587 (rcirc-print): Fix last change.
12588
30a23501
SM
125892011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12590
12591 * minibuffer.el (complete-with-action): Return nil for the metadata and
12592 boundaries of non-functional tables.
12593 (completion-table-dynamic): Return nil for the metadata.
12594 (completion-table-with-terminator): Add default case, using
12595 complete-with-action.
12596 (completion--metadata): New function.
12597 (completion-all-sorted-completions, minibuffer-completion-help): Use it
12598 to try and avoid pathological performance problems.
12599 (completion--embedded-envvar-table): Return `category' metadata.
12600
bcd54f83
LMI
126012011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
12602
12603 * subr.el (process-alive-p): New tiny convenience function.
12604
e227544d
SM
126052011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12606
12607 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
12608 content but also its previous major mode.
12609
e8296fdc
HE
126102011-05-31 Helmut Eller <eller.helmut@gmail.com>
12611
4d61f28d 12612 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
12613 *Backtrace* buffer when we exit with C-M-c.
12614
620c53a6
SM
126152011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12616
12617 * minibuffer.el: Add metadata method to completion tables.
12618 (completion-category-overrides): New defcustom.
12619 (completion-metadata, completion--field-metadata)
12620 (completion-metadata-get, completion--styles)
12621 (completion--cycle-threshold): New functions.
12622 (completion-try-completion, completion-all-completions):
12623 Add `metadata' argument to choose completion-styles.
12624 (completion--do-completion): Use metadata to choose cycling.
12625 (completion-all-sorted-completions): Use metadata for sorting.
12626 Remove :completion-cycle-penalty which is not needed any more.
12627 (completion--try-word-completion): Add `metadata' argument.
12628 (minibuffer-completion-help): Check metadata for annotation function
12629 and sorting.
12630 (completion-file-name-table): Return `category' metadata.
12631 (minibuffer-completing-file-name): Make obsolete.
12632 * simple.el (minibuffer-completing-symbol): Make obsolete.
12633 * icomplete.el (icomplete-completions): Pass new `metadata' param to
12634 completion-try-completion.
12635
1257e755
SM
126362011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12637
12638 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
12639
3767e706
LL
126402011-05-30 Leo Liu <sdl.web@gmail.com>
12641
12642 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
12643 (rcirc-print): Decode all incoming messages (bug#8744).
12644 (rcirc-decode-coding-system): Allow value nil for automatic coding
12645 system detection.
3767e706 12646
d1a5d56a
GM
126472011-06-01 Glenn Morris <rgm@gnu.org>
12648
12649 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
12650
e8cbec34
CY
126512011-05-29 Chong Yidong <cyd@stupidchicken.com>
12652
12653 * image.el (image-animate-max-time): Allow nil and t values.
12654 Default to nil.
12655 (create-animated-image): Doc fix.
12656 (image-animate-start): Remove second arg; just use
12657 image-animate-max-time.
12658 (image-animate-timeout): Doc fix. Args changed.
12659
12660 * image-mode.el (image-toggle-display-image): Ensure that the
12661 image spec passed to the animate timer is the same object as in
58179cce 12662 the buffer's display property (Bug#6981).
e8cbec34
CY
12663 (image-transform-properties): Doc fix.
12664
12665 * image.el (image-animate-max-time): Default to nil.
12666
159daf87
MR
126672011-05-29 Martin Rudalics <rudalics@gmx.at>
12668
12669 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
12670 entire buffer list (Bug#8184).
12671
d66c4c7c
CY
126722011-05-29 Chong Yidong <cyd@stupidchicken.com>
12673
12674 * image.el (imagemagick-types-inhibit)
12675 (imagemagick-register-types): Doc fix.
12676
80aec780
DD
126772011-05-29 Deniz Dogan <deniz@dogan.se>
12678
12679 * net/rcirc.el (rcirc): Use the user's stored encryption method by
12680 default.
12681
1dd3c2d9
CY
126822011-05-29 Chong Yidong <cyd@stupidchicken.com>
12683
12684 * select.el: Don't perform clipboard-manager saving in hooks;
12685 leave the hooks empty.
12686
60e56523
LL
126872011-05-28 Leo Liu <sdl.web@gmail.com>
12688
12689 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
12690 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
12691 (occur-edit-mode): New major mode (Bug#8463).
12692 (occur-after-change-function): New function.
12693 (occur-engine): Give Occur tags a read-only property.
12694
2b1e1a22
KR
126952011-05-28 Kevin Ryde <user42@zip.com.au>
12696
12697 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
12698
5d344e88
CY
126992011-05-28 Chong Yidong <cyd@stupidchicken.com>
12700
8e6ca83d
CY
12701 * bindings.el (help-echo): Make the initial non-indicator dash
12702 empty on graphical terminals (Bug#7295).
12703
5d344e88
CY
12704 * files.el (auto-mode-alist): Move config rule after the
12705 in-stripping one (Bug#8547).
12706
bfbbace7
CY
12707 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
12708
fbeba6e2
CY
12709 * startup.el (normal-splash-screen): Remove gratuitous mode-line
12710 setting (Bug#8740).
12711
60ed8c72
AA
127122011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
12713
4ac619f0
AA
12714 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
12715 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
12716 (Bug#8539).
60ed8c72 12717
23db196e
CY
127182011-05-28 Chong Yidong <cyd@stupidchicken.com>
12719
12720 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
12721
5012f24c
DK
127222011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
12723
12724 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
12725 (hs-hide-block-at-point, hs-find-block-beginning)
12726 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
12727 (Bug#8279).
12728
6a639b16
GM
127292011-05-28 Glenn Morris <rgm@gnu.org>
12730
12731 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
12732
d43eaf2c
CY
127332011-05-28 Chong Yidong <cyd@stupidchicken.com>
12734
5199bde1
CY
12735 * help-fns.el (describe-function-1): If the function is a derived
12736 major mode, print the parent mode.
12737
d43eaf2c
CY
12738 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
12739 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
12740
423428a8
SM
127412011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
12742
0ff8e1ba 12743 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 12744 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
12745 * progmodes/etags.el (tags-completion-at-point-function):
12746 * info-look.el (info-lookup-completions-at-point): Mark as
12747 non-exclusive.
12748 (info-complete): Adjust accordingly.
12749
423428a8
SM
12750 * info-look.el: Convert to lexical-binding and completion-at-point.
12751 (info-lookup-completions-at-point): New function.
12752 (info-complete): Use it and completion-in-region.
12753
b74aa22b
DA
127542011-05-28 Drew Adams <drew.adams@oracle.com>
12755
12756 * isearch.el: Let M-e start with point at the first mismatched char.
12757 (isearch-fail-pos): New function.
12758 (isearch-edit-string): Use it.
12759
66e2e71d
DK
127602011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
12761
12762 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12763
b1890b0f 127642011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
eb95d01d
TC
12765
12766 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
12767 traversal functions for avl-trees.
12768 (avl-tree--stack): New struct.
12769 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
12770 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
12771 (avl-tree--do-enter): Add optional `updatefun' arg.
12772 Change return value.
eb95d01d 12773 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
12774 (avl-tree--do-delete): Add `test' and `nilflag' args.
12775 Change return value.
eb95d01d
TC
12776 (avl-tree-member): Add optional `nilflag'
12777 (avl-tree-member-p): New function.
12778 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
12779 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
12780 (avl-tree-stack-empty-p): New functions.
12781
3769ddcf
TC
12782 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
12783 avl-tree--del-balance1 and make it work both ways.
12784 (avl-tree--del-balance2): Remove.
12785 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
12786 make it work both ways.
12787 (avl-tree--enter-balance2): Remove.
12788 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
12789 New macros.
12790 (avl-tree--mapc, avl-tree-map): Add direction argument.
12791
eb95d01d 127922011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
12793
12794 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
12795
a9f737ee
CY
127962011-05-27 Chong Yidong <cyd@stupidchicken.com>
12797
12798 * select.el: Support clipboard managers with built-in function
12799 x-clipboard-manager-save, via delete-frame-functions and
12800 kill-emacs-hook.
12801 (xselect-convert-to-targets): Add MULTIPLE target to list.
12802 (xselect-convert-to-save-targets): New function.
12803
c92a1e54
KH
128042011-05-27 Kenichi Handa <handa@m17n.org>
12805
12806 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
12807 let-binding rfc2047-encode-encoded-words to nil.
12808
e145f188
GM
128092011-05-27 Glenn Morris <rgm@gnu.org>
12810
5ec8a862
GM
12811 * mail/emacsbug.el: Don't require url-util.
12812
4b29d9fb
GM
12813 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
12814
e145f188
GM
12815 * files.el (set-auto-mode):
12816 Also respect mode: entries at the end of the file. (Bug#8586)
12817
7d15102b
GM
128182011-05-26 Glenn Morris <rgm@gnu.org>
12819
98f593b8
GM
12820 * files.el (hack-local-variables-prop-line, hack-local-variables):
12821 Downcase mode names, as seems to be traditional.
27b48e63 12822 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 12823
7d15102b
GM
12824 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
12825 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
12826
51d5b4ec
JD
128272011-05-25 Julien Danjou <julien@danjou.info>
12828
12829 * textmodes/rst.el (rst-define-level-faces): Do not define face
12830 symbol if it is already defined.
12831
91513f63
VB
128322011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
12833
12834 * play/5x5.el (5x5-new-game, 5x5-randomize):
12835 Reset 5x5-solver-output to nil when a new grid is cast.
12836 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
12837 these debugging traces, as defmacro breaks the compiled code.
12838
4d90d6d0
DK
128392011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
12840
12841 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12842
e1b90ef6
LL
128432011-05-24 Leo Liu <sdl.web@gmail.com>
12844
12845 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
12846 (vc-bzr-sha1): Adapt.
12847
d8e4b68b 12848 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
12849
12850 * bindings.el: Provide sha1 feature.
12851
db0406bb 128522011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
12853
12854 * mail/sendmail.el: Require `rfc2047'.
12855 (mail-insert-from-field): Do not perform RFC2047 encoding.
12856 (mail-encode-header): New function.
12857 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
12858 buffer to the return value of select-message-coding-system.
12859 Call mail-encode-header.
b8d747b9
KH
12860
12861 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
12862
db0406bb 128632011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 12864
4d90d6d0
DK
12865 * mail/supercite.el (sc-default-cite-frame):
12866 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 12867
eb8a5e9b
GM
128682011-05-24 Glenn Morris <rgm@gnu.org>
12869
f8630703
GM
12870 * progmodes/python.el (brm-menu): Declare.
12871
8831bbed
GM
12872 * emulation/viper.el (viper-set-hooks): Declare.
12873
eb8a5e9b
GM
12874 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
12875 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
12876 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
12877 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
12878 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
12879 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
12880
a2a25d24
SM
128812011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
12882
12883 Add an :exit-function for completion-at-point.
12884
12885 * minibuffer.el (completion--done): New fun.
12886 (completion--do-completion): Use it. New arg `expect-exact'.
12887 (minibuffer-complete, minibuffer-complete-word): Don't output message,
12888 since completion--do-completion does it for us now.
12889 (minibuffer-force-complete): Use completion--done and
12890 completion--replace. Handle sole-completion case with more care.
12891 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
12892 (completion-extra-properties): New var.
12893 (completion-annotate-function): Make obsolete.
12894 (minibuffer-completion-help): Adjust accordingly.
12895 Use completion-list-insert-choice-function.
12896 (completion-at-point, completion-help-at-point):
12897 Bind completion-extra-properties.
12898 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
12899 * simple.el (completion-list-insert-choice-function): New var.
12900 (completion-setup-function): Preserve it.
12901 (choose-completion): Pay attention to it, shuffle the code a bit.
12902 (choose-completion-string): New arg `insert-function'.
12903
12904 * textmodes/bibtex.el: Convert to lexical binding.
12905 (bibtex-mode-map): Use completion-at-point.
12906 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
12907 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
12908 (bibtex-complete): Define as obsolete alias.
12909 (bibtex-complete-internal): Remove.
12910 (bibtex-format-entry): Remove unused sub-group in regexp.
12911 * shell.el (shell--command-completion-data)
12912 (shell-environment-variable-completion):
12913 * pcomplete.el (pcomplete-completions-at-point):
12914 * comint.el (comint--complete-file-name-data): Use :exit-function
12915 instead of completion-table-with-terminator so it also works for
12916 choose-completion.
12917
e44e373d
SM
129182011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
12919
4f91a816
SM
12920 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
12921
782fc819
SM
12922 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
12923 (bug#8710).
12924
e44e373d
SM
12925 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
12926
381987c3
KM
129272011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
12928
12929 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
12930 customization variable and implement: If non-nil, auto-fill will
12931 be inhibited while on topic's header line.
12932
b776bc70
VB
129332011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
12934
12935 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 12936 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
12937 always have a solution in grid size = 5 cases.
12938 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
12939 (5x5-solver-output, 5x5-log-buffer): New vars.
12940 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
12941 Make these variables buffer local to achieve 5x5 multi-session-ness.
12942 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
12943 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
12944 (5x5-solve-suggest): New funs.
12945 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
12946 randomize a grid so that we ensure that there is always a solution.
12947 (5x5-make-random-grid): Allow other movement than flipping.
12948
7de88b6e
KR
129492011-05-23 Kevin Ryde <user42@zip.com.au>
12950
12951 * emacs-lisp/advice.el (ad-read-advised-function):
5a5fa834 12952 Use `function-called-at-point' as the default, if it has
7de88b6e
KR
12953 advice and passes PREDICATE.
12954
b1ef1257
SM
129552011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
12956
bbca48fe
SM
12957 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
12958 byte-compile-lambda if it's actually a lambda.
12959
b1ef1257
SM
12960 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
12961 Fix function quoting. Use backquote better.
12962
92a9cc65
YS
129632011-05-22 Yuanle Song <sylecn@gmail.com>
12964
12965 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
12966 matching (Bug#8516).
12967
f0fb8059
JA
129682011-01-22 Jari Aalto <jari.aalto@cante.net>
12969
12970 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
12971 different face (Bug#8178).
12972
d5b44c93
CY
129732011-05-22 Chong Yidong <cyd@stupidchicken.com>
12974
12975 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
12976 defface (Bug#8144).
12977
79106a44
SM
129782011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
12979
9c848d8a
SM
12980 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
12981 funcall as well (bug#8712). Warn when performing those conversions.
12982 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
12983
79106a44
SM
12984 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
12985
88dfa756
GM
129862011-05-22 Glenn Morris <rgm@gnu.org>
12987
12988 * files.el (hack-local-variables-prop-line): Small simplifications.
12989 (hack-local-variables, hack-local-variables-prop-line):
12990 If MODE-ONLY, return the mode, rather than just `t'.
12991
b7cf2c79
SM
129922011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
12993
12994 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
12995
3f1a8558
GM
129962011-05-21 Glenn Morris <rgm@gnu.org>
12997
7e4ccca3
GM
12998 * files.el (hack-local-variables-prop-line, hack-local-variables):
12999 If only interested in the mode, don't bother doing the other stuff.
13000
637d46ca
GM
13001 * image-mode.el (image-after-revert-hook):
13002 Redraw all frames on which the image is visible. (Bug#8567)
13003
973d955b
GM
13004 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
13005
3f1a8558
GM
13006 * wid-edit.el (widget-checklist-match-inline):
13007 Fix 2011-04-19 change. (Bug#8649)
13008
96479927
SM
130092011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
13010
1dcf791f
SM
13011 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
13012 Also allow singlespace after single-letter capitals followed by a dot.
13013
96479927
SM
13014 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
13015 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
13016
35fd0881
N
130172011-05-20 Nix <nix@esperi.org.uk>
13018
13019 * files.el (basic-save-buffer-2):
13020 Fix handling of break-hardlink-on-save with non-existent files.
13021
82745640
DD
130222011-05-19 Deniz Dogan <deniz@dogan.se>
13023
13024 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 13025 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 13026
4a720484
GM
130272011-05-19 Glenn Morris <rgm@gnu.org>
13028
d1f21341
GM
13029 * progmodes/f90.el (f90-type-def-re):
13030 Handle "type, bind(c)". (Bug#8691)
13031
4a720484
GM
13032 * emacs-lisp/autoload.el (batch-update-autoloads):
13033 Set autoload-excludes by parsing loadup.el rather than Makefiles.
13034
2fb0a219
MA
130352011-05-18 Michael Albinus <michael.albinus@gmx.de>
13036
13037 * net/tramp.el (tramp-process-actions): Set "first-password-request"
13038 property for the correct connection in case of multihops.
13039
e565dd37
GM
130402011-05-18 Glenn Morris <rgm@gnu.org>
13041
c2571358 13042 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
13043 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
13044
e565dd37
GM
13045 Rationalize calendar handling of day and month abbrev-arrays.
13046 * calendar/calendar.el (calendar-customized-p): New function.
13047 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
13048 (calendar-day-name-array, calendar-month-name-array): Doc fix.
13049 Add :set function.
13050 (calendar-abbrev-length, calendar-day-abbrev-array)
13051 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
13052 (calendar-day-abbrev-array, calendar-month-abbrev-array):
13053 Elements may no longer be nil.
13054 (calendar-day-name, calendar-month-name):
13055 Update for changed nature of abbrev arrays.
13056 * calendar/diary-lib.el (diary-name-pattern):
13057 Update for changed nature of abbrev arrays.
13058 (diary-mark-entries-1): Update calendar-make-alist calls.
13059 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
13060 * calendar/cal-html.el (cal-html-day-abbrev-array):
13061 Simply inherit from calendar-day-abbrev-array.
13062
1d99a745
SM
130632011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
13064
13065 * progmodes/grep.el (grep-mode): Disable default
13066 compilation-directory-matcher setting (bug#8684).
13067
7c1d9aa0
MA
130682011-05-17 Michael Albinus <michael.albinus@gmx.de>
13069
13070 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
13071 instead of "head" and "tail". There were problems with SunOS 5.9,
13072 and it performs better.
13073
3952e9d8
GM
130742011-05-17 Glenn Morris <rgm@gnu.org>
13075
2dd12e7f
GM
13076 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
13077
e4157b9c
GM
13078 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
13079 Replace obsolete function.
13080
8e249bbd
GM
13081 * shell.el (pcomplete-parse-arguments-function): Declare.
13082
3952e9d8
GM
13083 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
13084 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
13085 (appt-check): Doc fixes.
13086 (appt-disp-window-function, appt-delete-window-function):
13087 Remove needless special case in custom :type.
13088 (appt-display-count): Default to 0, not nil.
13089 (appt-check): Reset appt-display-count to 0, not nil.
13090
c71a0d48 130912011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 13092
c71a0d48
GM
13093 * progmodes/python.el (python-font-lock-keywords):
13094 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 13095
31d55be9
SM
130962011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
13097
13098 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
13099
3bfacb2f
KR
131002011-05-16 Kevin Ryde <user42@zip.com.au>
13101
13102 * info-look.el (makefile-automake-mode): New setups, looking in
13103 automake manual, then makefile-mode.
13104 (makefile-mode): Remove automake manual, have it just in
13105 makefile-automake-mode since there's various things different or
13106 not relevant to plain make.
13107 (makefile-mode): Remove "other-modes" non-existent automake-mode,
13108 believe a hypothetical automake-mode would go to makefile-mode,
13109 not the other way around.
13110
c8e83751
CY
131112011-05-15 Chong Yidong <cyd@stupidchicken.com>
13112
5e9e35cd
CY
13113 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
13114 hunk-end tags (Bug#8672).
13115
c8e83751
CY
13116 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
13117 vc-annotate-show-diff-revision-at-line (Bug#8671).
13118
50b23e5a
GM
131192011-05-14 Glenn Morris <rgm@gnu.org>
13120
7210a739
GM
13121 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
13122 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
13123 (change-log-font-lock-keywords): Also handle multiple author lines
13124 with leading tabs. (Bug#8644)
7210a739 13125
4691905a
GM
13126 * calendar/appt.el (appt-check): Rename some local variables.
13127 Some simplification/reordering.
13128
50b23e5a
GM
13129 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
13130 (feedmail-sendmail-f-doesnt-sell-me-out)
13131 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13132 (feedmail-debug-sit-for, feedmail-queue-express-hook)
13133 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
13134 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
13135 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
13136 (feedmail-binmail-gnulinuxish-template):
13137 Rename from feedmail-binmail-linuxish-template.
13138 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
13139 Use insert-buffer-substring.
13140
215cda7c
BC
131412011-05-14 Bill Carpenter <bill@carpenter.org>
13142
13143 * mail/feedmail.el (feedmail-patch-level): Increase.
13144 (feedmail-debug): New custom group.
13145 (feedmail-confirm-outgoing-timeout)
13146 (feedmail-sendmail-f-doesnt-sell-me-out)
13147 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13148 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
13149 (feedmail-sender-line, feedmail-from-line)
13150 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 13151 (feedmail-spray-this-address)
215cda7c
BC
13152 (feedmail-spray-address-fiddle-plex-list)
13153 (feedmail-queue-use-send-time-for-date)
13154 (feedmail-queue-use-send-time-for-message-id)
13155 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
13156 (feedmail-buffer-eating-function):
13157 Doc fixes.
13158 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
13159 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
13160 (feedmail-message-action-scroll-down): New functions.
13161 (feedmail-queue-directory, feedmail-queue-draft-directory):
13162 Use expand-file-name.
13163 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
13164 Remove C-v help entry.
13165 (feedmail-queue-buffer-file-name): New variable.
13166 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
13167 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
13168 (feedmail-message-action-send-strong, feedmail-message-action-edit)
13169 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
13170 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
13171 (feedmail-message-action-toggle-spray)
13172 (feedmail-run-the-queue-no-prompts)
13173 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
13174 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
13175 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
13176 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
13177 (feedmail-envelope-deducer, feedmail-fiddle-from)
13178 (feedmail-fiddle-sender, feedmail-default-date-generator)
13179 (feedmail-fiddle-date, feedmail-fiddle-message-id)
13180 (feedmail-fiddle-spray-address)
13181 (feedmail-fiddle-list-of-spray-fiddle-plexes)
13182 (feedmail-fiddle-list-of-fiddle-plexes)
13183 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
13184 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
13185 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
13186 Change default. Doc fix.
13187 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
13188 (feedmail-binmail-linuxish-template): New constant.
13189 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
13190 Respect feedmail-sendmail-f-doesnt-sell-me-out.
13191 (feedmail-send-it): Add debug call.
13192 Use feedmail-queue-buffer-file-name, and
13193 feedmail-send-it-immediately-wrapper.
13194 (feedmail-message-action-send): Add debug call.
13195 Use feedmail-send-it-immediately-wrapper.
13196 (feedmail-queue-express-to-queue): Add debug call.
13197 Run feedmail-queue-express-hook.
13198 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
13199 (feedmail-message-action-help-blat):
13200 Rename from feedmail-queue-send-edit-prompt-help-first.
13201 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
13202 Check line-endings. Handle errors better.
13203 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
13204 Doc fix. Add debug call.
13205 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
13206 Use feedmail-queue-send-edit-prompt-inner.
13207 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
13208 (feedmail-queue-send-edit-prompt-inner): New function, extracted
13209 from feedmail-queue-send-edit-prompt.
13210 (feedmail-queue-send-edit-prompt-help)
13211 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
13212 (feedmail-tidy-up-slug): Add debug call.
13213 Respect feedmail-queue-slug-suspect-regexp.
13214 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
13215 (feedmail-dump-message-to-queue): Add debug call.
13216 Expand queue-directory.
13217 (feedmail-dump-message-to-queue): Change message slightly.
13218 Use feedmail-say-chatter.
13219 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
13220 (feedmail-send-it-immediately-wrapper): New function.
13221 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
13222 Insert empty string rather than newline. Handle full-frame case.
13223 Use catch/throw. Use feedmail-say-chatter.
13224 (feedmail-fiddle-from): Try mail-host-address.
13225 (feedmail-default-message-id-generator): Doc fix.
13226 Bind system-time-locale. Handle missing end.
13227 (feedmail-fiddle-x-mailer): Add debug call.
13228 Handle feedmail-x-mailer-line being nil.
13229 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
13230 Add debug call. Use buffer-substring-no-properties.
13231 (feedmail-say-debug, feedmail-say-chatter): New functions.
13232 (feedmail-find-eoh): Give an explicit error.
13233
42c7e61e
UJ
132342011-05-13 Ulf Jasper <ulf.jasper@web.de>
13235
c2571358 13236 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 13237 family from helvetica to sans.
c2571358 13238 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
13239 etc/images/newsticker.
13240
c2571358 13241 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
13242 family from helvetica to sans.
13243
13244 * net/newst-plainview.el (newsticker-new-item-face)
13245 (newsticker-old-item-face, newsticker-immortal-item-face)
13246 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 13247 (newsticker-statistics-face): Change default family from
42c7e61e 13248 helvetica to sans.
c2571358 13249 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
13250 etc/images/newsticker.
13251
5d3385a0
JB
13252 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
13253 (newsticker--process-auto-mark-filter-match): Tell user about
42c7e61e
UJ
13254 auto-marking.
13255
8497a297
DV
132562011-05-13 Didier Verna <didier@xemacs.org>
13257
13258 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
13259 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
13260 TODO entries.
8497a297
DV
13261 (lisp-lambda-list-keyword-parameter-indentation)
13262 (lisp-lambda-list-keyword-parameter-alignment)
13263 (lisp-lambda-list-keyword-alignment): New customizable user options.
13264 (lisp-indent-defun-method): Improve docstring.
13265 (extended-loop-p): Fix comment.
13266 (lisp-indent-lambda-list-keywords-regexp): New variable.
13267 (lisp-indent-lambda-list): New function.
13268 (lisp-indent-259): Use it.
13269 (lisp-indent-defmethod): Support for more than one
13270 method qualifier and properly indent methods lambda-lists.
13271 (defgeneric): Provide a missing common-lisp-indent-function property.
13272
f278f87f
SM
132732011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
13274
13275 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
13276 bounds for the empty string (bug#8667).
13277
5233edd7
GM
132782011-05-13 Glenn Morris <rgm@gnu.org>
13279
5237a44f
GM
13280 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
13281
8340026c 13282 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 13283 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 13284
5233edd7 13285 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 13286 (appt-time-msg-list): Doc fix.
a5464014 13287 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 13288
92d10796
AS
132892011-05-12 Andreas Schwab <schwab@linux-m68k.org>
13290
13291 * progmodes/ld-script.el (ld-script-keywords)
13292 (ld-script-builtins): Update keywords list.
13293
914a0ae1
SM
132942011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13295
c89be45f
SM
13296 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
13297
914a0ae1
SM
13298 * shell.el (shell-completion-vars): New function.
13299 (shell-mode):
13300 * simple.el (read-shell-command): Use it.
13301 (blink-matching-open): No need for " [...]" in minibuffer-message.
13302
98dc3df3
GM
133032011-05-12 Glenn Morris <rgm@gnu.org>
13304
13305 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
13306 (appt-check): Simplify.
13307
d2fc7e3d 133082011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 13309
4d61f28d 13310 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
13311 literal "/dev/null".
13312
d2fc7e3d 133132011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
13314
13315 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
13316 Fix typo.
13317
d2fc7e3d 133182011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 13319
3f254caa
SM
13320 * progmodes/which-func.el (which-function):
13321 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
13322 which might not be defined (Bug#8260).
13323
d45885f7
GM
133242011-05-12 Glenn Morris <rgm@gnu.org>
13325
13326 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
13327 Let byte-compile-initial-macro-environment always take precedence.
13328
488086f4
SM
133292011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13330
13331 * net/rcirc.el: Add support for SSL/TLS connections.
13332 (rcirc-server-alist): New field `encryption'.
13333 (rcirc): Check `encryption' settings.
13334 (rcirc-connect): New arg `encryption'. Use open-network-stream.
13335 Merge make-local-variable into `set'.
13336 (rcirc--connection-open-p): New function.
13337 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
13338 the process is not a network process (e.g. running gnutls-cli).
13339 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
13340 Make rcirc-(en|de)code-coding-system local here.
13341 (rcirc-mode): Merge make-local-variable into `set'.
13342 (rcirc-parent-buffer): Make permanent buffer-local.
13343 (rcirc-multiline-minor-mode): Don't do it here.
13344 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
13345 there's no server buffer.
13346
7d3b9d44
GM
133472011-05-11 Glenn Morris <rgm@gnu.org>
13348
f64049c6
GM
13349 * newcomment.el (comment-kill): Prefix "unused" local.
13350
93c9df73
GM
13351 * term/w32console.el (get-screen-color): Declare.
13352
7d3b9d44
GM
13353 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
13354 Handle symbol elements of byte-compile-initial-macro-environment.
13355
9e2dd53f
LL
133562011-05-10 Leo Liu <sdl.web@gmail.com>
13357
488086f4
SM
13358 * bookmark.el (bookmark-bmenu-mode-map):
13359 Bind bookmark-bmenu-search to `/'.
8b340240 13360
9e2dd53f 13361 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
13362 (footnote-unicode-string, footnote-unicode-regexp): New variable.
13363 (Footnote-unicode): New function.
13364 (footnote-style-alist): Add unicode style to the list.
13365 (footnote-style): Doc fix.
9e2dd53f 13366
79b70037
GM
133672011-05-10 Jim Meyering <meyering@redhat.com>
13368
13369 Fix doubled-word typos.
13370 * international/quail.el (quail-insert-kbd-layout): and and -> and
13371 * kermit.el: and and -> and
13372 * net/ldap.el (ldap-search-internal): to to -> to
13373 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
13374 * progmodes/js.el (js-mode): and and -> and
13375 * textmodes/artist.el (artist-move-to-xy): at at -> at
13376 (artist-draw-region-trim-line-endings): if if -> if
13377 And Safetyc -> Safety.
13378 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
13379
b8f82dc1 133802011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 13381 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
13382
13383 * files.el (hack-one-local-variable-eval-safep):
13384 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
13385
4f99f44b
GM
133862011-05-10 Glenn Morris <rgm@gnu.org>
13387
13388 * calendar/diary-lib.el (diary-list-entries-hook)
13389 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
13390 (diary-nongregorian-marking-hook, diary-list-entries)
13391 (diary-include-other-diary-files, diary-mark-entries)
13392 (diary-mark-included-diary-files): Doc fixes.
13393
84f29e6b
JB
133942011-05-09 Juanma Barranquero <lekktu@gmail.com>
13395
13396 * misc.el: Require tabulated-list.el during compilation.
13397
9bedd73a
CY
133982011-05-09 Chong Yidong <cyd@stupidchicken.com>
13399
488086f4
SM
13400 * progmodes/compile.el (compilation-start):
13401 Run compilation-filter-hook for the async case too.
9bedd73a
CY
13402 (compilation-filter-hook): Doc fix.
13403
797c735c
DD
134042011-05-09 Deniz Dogan <deniz@dogan.se>
13405
13406 * wdired.el: Remove outdated installation comment. Fix usage
13407 comment.
13408
5f4b1dfe
JB
134092011-05-09 Juanma Barranquero <lekktu@gmail.com>
13410
13411 * misc.el: Implement new command `list-dynamic-libraries'.
13412 (list-dynamic-libraries--loaded-only-p): New variable.
13413 (list-dynamic-libraries--refresh): New function.
13414 (list-dynamic-libraries): New command.
13415
4c44026c
CY
134162011-05-09 Chong Yidong <cyd@stupidchicken.com>
13417
488086f4
SM
13418 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13419 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
13420 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
13421 higher priority to avoid clobbering by gnu.
13422
027f966d
CY
134232011-05-08 Chong Yidong <cyd@stupidchicken.com>
13424
13425 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
13426 if the face has existing theme settings (Bug#8454).
13427
085f5d7d
CY
134282011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
13429
488086f4
SM
13430 * progmodes/perl-mode.el (perl-imenu-generic-expression):
13431 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 13432
2a86a00c
RS
13433 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
13434 special file names `.' and `..' (Bug#8259).
13435
d9c54a06
CY
134362011-05-08 Chong Yidong <cyd@stupidchicken.com>
13437
488086f4
SM
13438 * progmodes/grep.el (grep-mode-font-lock-keywords):
13439 Remove buffer-changing entries.
d9c54a06
CY
13440 (grep-filter): New function.
13441 (grep-mode): Add it to compilation-filter-hook.
13442
13443 * progmodes/compile.el (compilation-filter-hook)
13444 (compilation-filter-start): New defvars.
13445 (compilation-filter): Call compilation-filter-hook prior to
13446 updating the process mark.
13447
c4662635
SM
134482011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
13449
13450 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
13451
b0512a1d
EZ
134522011-05-07 Eli Zaretskii <eliz@gnu.org>
13453
605c9376
EZ
13454 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
13455 mailclient-send-it even if window-system is nil. (Bug#8595)
13456
c4662635
SM
13457 * term/w32console.el (terminal-init-w32console):
13458 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
13459 background-mode. (Bug#8597)
13460
d1dc2cc2
SM
134612011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
13462
13463 Make bytecomp.el understand that defmethod defines funs (bug#8631).
13464 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
13465 New functions.
13466 (defgeneric, eieio--defmethod): Use them.
13467 (eieio-defgeneric): Remove.
13468 (defmethod): Call defgeneric in a way visible to the byte-compiler.
13469
915d1300
GM
134702011-05-07 Glenn Morris <rgm@gnu.org>
13471
a3961c3e
GM
13472 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
13473 Use let rather than let*.
13474 (timeclock-find-discrep): Remove unused local.
13475
314347b9
GM
13476 * calendar/diary-lib.el (diary-comment-start): Doc fix.
13477
915d1300
GM
13478 * calendar/appt.el (appt-time-msg-list): Doc fix.
13479
275b59b0
NF
134802011-05-06 Noah Friedman <friedman@splode.com>
13481
13482 * apropos.el (apropos-print-doc): Only use
13483 emacs-lisp-docstring-fill-column when it is bound to an integer,
13484 per that variable's documentation.
13485
6c19f744
SM
134862011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13487
13488 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 13489 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 13490
60f884b2
GM
134912011-05-06 Glenn Morris <rgm@gnu.org>
13492
5006e634
GM
13493 * calendar/appt.el (appt-message-warning-time): Doc fix.
13494 (appt-warning-time-regexp): New option.
13495 (appt-make-list): Respect appt-message-warning-time.
13496
548d0a63
GM
13497 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
13498 New options.
13499 (diary-add-to-list): Strip comments from the displayed string.
13500 (diary-mode): Set comment-start and comment-end.
13501
60f884b2
GM
13502 * vc/diff-mode.el (smerge-refine-subst): Declare.
13503 (diff-refine-hunk): Don't require smerge-mode when compiling.
13504
989681bb
JB
135052011-05-06 Juanma Barranquero <lekktu@gmail.com>
13506
13507 * simple.el (list-processes): Return nil as the docstring says.
13508
a6bc05e1
MA
135092011-05-05 Michael Albinus <michael.albinus@gmx.de>
13510
13511 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
13512 to "".
13513 (ange-ftp-write-region, ange-ftp-insert-file-contents)
13514 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
13515 determining of binary transfer. (Bug#7383)
13516
23c22e9a
MA
135172011-05-05 Michael Albinus <michael.albinus@gmx.de>
13518
c4662635
SM
13519 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13520 Fix port computation bug. (Bug#8618)
23c22e9a 13521
0bff894f
GM
135222011-05-05 Glenn Morris <rgm@gnu.org>
13523
b8296902
GM
13524 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
13525
1f522ce8
GM
13526 * simple.el (shell-dynamic-complete-functions)
13527 (comint-dynamic-complete-functions): Declare.
13528
cf5bee67
GM
13529 * net/network-stream.el (gnutls-negotiate):
13530 * simple.el (tabulated-list-print): Fix declarations.
13531
13532 * progmodes/gud.el (syntax-symbol, syntax-point):
13533 Remove unnecessary and incorrect declarations.
13534
0bff894f
GM
13535 * emacs-lisp/check-declare.el (check-declare-scan):
13536 Handle byte-compile-initial-macro-environment in bytecomp.el
13537
9869b3ae
SM
135382011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
13539
13540 Fix earlier half-done eieio-defmethod change (bug#8338).
13541 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
13542 Streamline and change calling convention.
13543 (defmethod): Adjust accordingly and simplify.
13544 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
13545 new eieio--defmethod.
13546 (slot-boundp): Minor CSE simplification.
13547
9c1d5ac5
MZ
135482011-05-05 Milan Zamazal <pdm@zamazal.org>
13549
13550 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
13551 (glasses-make-readable): Use glasses-separate-capital-groups.
13552
455c834e
JB
135532011-05-05 Juanma Barranquero <lekktu@gmail.com>
13554
13555 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
13556 (warning-series): Doc fix.
13557 (display-warning): Don't try to create the buffer if we just found it.
13558
9ed7c8cb
CY
135592011-05-04 Chong Yidong <cyd@stupidchicken.com>
13560
13561 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
13562 (autoload-find-generated-file): New function.
13563 (generate-file-autoloads): Bind generated-autoload-file to
13564 buffer-file-name.
9869b3ae
SM
13565 (update-file-autoloads, update-directory-autoloads):
13566 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
13567 output file (Bug#7989).
13568 (batch-update-autoloads): Doc fix.
13569
0898ca10
JB
135702011-05-04 Juanma Barranquero <lekktu@gmail.com>
13571
13572 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
13573
31dfb76c
GM
135742011-05-04 Glenn Morris <rgm@gnu.org>
13575
f330b642
GM
13576 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
13577 function, so it follows changes in calendar-date-style.
13578 (diary-fancy-date-matcher): New function.
13579 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
13580 (diary-fancy-font-lock-fontify-region-function):
13581 Use diary-fancy-date-pattern as a function.
13582
31dfb76c
GM
13583 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
13584 non-numbers for `year' etc pseudo-variables. (Bug#8583)
13585
48e79d6a
TZ
135862011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
13587
13588 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
13589 instead of positional arguments. Allow :keylist and :crlfiles
13590 arguments.
13591 (open-gnutls-stream): Call it.
13592
13593 * net/network-stream.el (network-stream-open-starttls): Adjust to
13594 call `gnutls-negotiate' with :process and :hostname arguments.
13595
dd5a5ee0
SM
135962011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
13597
ef80fc09
SM
13598 * minibuffer.el (completion--message): New function.
13599 (completion--do-completion, minibuffer-complete)
13600 (minibuffer-force-complete, minibuffer-complete-word): Use it.
13601 (completion--do-completion): Don't ignore completion-auto-help when in
13602 icomplete-mode.
13603
dd5a5ee0
SM
13604 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
13605 internal encoding (e.g. tibetan zero is not whitespace).
13606 (global-whitespace-mode): Prefer save-current-buffer.
13607 (whitespace-trailing-regexp): Remove useless save-match-data.
13608 (whitespace-empty-at-bob-regexp): Minor simplification.
13609
b7d22a83
CY
136102011-05-03 Chong Yidong <cyd@stupidchicken.com>
13611
13612 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
13613
5192af46
AM
136142011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13615
13616 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 13617 Use `concat' to create string for insertion.
5192af46 13618
5767d190
SM
136192011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13620
13621 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
13622 Avoid open-line which runs post-self-insert-hook.
13623 (bibtex-fill-entry): Remove unused `end' var.
13624
bf242939
AM
136252011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
13626
5767d190
SM
13627 * textmodes/ispell.el (ispell-add-per-file-word-list):
13628 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 13629
25666126
LL
136302011-05-03 Leo Liu <sdl.web@gmail.com>
13631
13632 * isearch.el (isearch-yank-pop): New command.
5767d190 13633 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
13634 (isearch-forward): Mention it.
13635
52d3c2d0
SM
136362011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13637
1bcace58
SM
13638 * simple.el (minibuffer-complete-shell-command): Remove.
13639 (minibuffer-local-shell-command-map): Use completion-at-point.
13640 (read-shell-command): Setup completion vars here instead.
13641 (read-expression-map): Bind TAB to symbol completion.
13642
52d3c2d0
SM
13643 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
13644 error directly rather via storing it into `results'.
13645
35813471
LL
136462011-05-02 Leo Liu <sdl.web@gmail.com>
13647
13648 * vc/diff.el: Fix description.
13649
e793a940
LMI
136502011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13651
13652 * server.el (server-eval-at): New function.
13653
8de66e05
LMI
136542011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13655
13656 * net/network-stream.el (open-network-stream): Take a :nowait
13657 parameter and pass it on to `make-network-process'.
13658 (network-stream-open-plain): Ditto.
13659
dcb79f20
AS
136602011-04-30 Andreas Schwab <schwab@linux-m68k.org>
13661
13662 * faces.el (face-spec-set-match-display): Don't match toolkit
13663 options on terminal frames.
13664
14a7fbd8
SM
136652011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
13666
7eabc1be
SM
13667 * progmodes/pascal.el: Use lexical binding.
13668 (pascal-mode-map): Remove author preferences.
13669
14a7fbd8
SM
13670 * pcomplete.el (pcomplete-std-complete): Don't abuse
13671 completion-at-point.
13672
50f84510
JB
136732011-04-28 Juanma Barranquero <lekktu@gmail.com>
13674
6e087a44
JB
13675 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
13676 removing code that has been dead since 1991 or so.
13677
50f84510
JB
13678 * startup.el (command-line): When warning about "_emacs", use a
13679 delayed warning to allow the user to filter it out.
13680
0ba690bd
DD
136812011-04-28 Deniz Dogan <deniz@dogan.se>
13682
13683 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
13684 user has not joined.
13685
08abfaad
SM
136862011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13687
13688 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
13689 aren't any completions at point.
13690
638f053a
JB
136912011-04-28 Juanma Barranquero <lekktu@gmail.com>
13692
13693 * subr.el (display-delayed-warnings): New function.
13694 (delayed-warnings-hook): New variable.
13695
8fff8daa
SM
136962011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13697
08abfaad
SM
13698 * minibuffer.el (completion-at-point, completion-help-at-point):
13699 Don't presume that a given completion-at-point-function will always
13700 use the same calling convention.
13701
8fff8daa
SM
13702 * pcomplete.el (pcomplete-completions-at-point):
13703 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
13704 pcomplete-seen is non-nil.
13705 (pcomplete-comint-setup): Also recognize the new comint/shell
13706 completion functions.
13707 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
13708 pcomplete-seen is non-nil.
13709
841a1577 137102011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 13711
841a1577 13712 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 13713 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 13714 the first character in the entry. This allows for code to add its
211ec907
UJ
13715 own uid to the entry.
13716 (icalendar--convert-float-to-ical): Add export of
13717 `diary-float'-entries save for those with the optional DAY
13718 argument.
13719
2a782793
DC
137202011-04-27 Daniel Colascione <dan.colascione@gmail.com>
13721
13722 * subr.el (shell-quote-argument): Use alternate escaping strategy
13723 when we spot a variable reference in a string.
13724
0438ce91
DC
137252011-04-26 Daniel Colascione <dan.colascione@gmail.com>
13726
13727 * cus-start.el (all): Define customization for debug-on-event.
13728
841a1577 137292011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
13730
13731 * subr.el (shell-quote-argument): Escape correctly under Windows.
13732
d090ed6c
SM
137332011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13734
13735 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
13736
bfd31217
MA
137372011-04-25 Michael Albinus <michael.albinus@gmx.de>
13738
d090ed6c
SM
13739 * net/tramp.el (tramp-process-actions): Add POS argument.
13740 Delete region between POS and (pos).
bfd31217 13741
d090ed6c
SM
13742 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13743 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
13744 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
13745
13746 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
13747 position in `tramp-process-actions' call.
13748
13749 * net/trampver.el: Update release number.
13750
e92f3bd3
SM
137512011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13752
850256b5
SM
13753 * custom.el (defcustom): Obey lexical-binding.
13754
e92f3bd3
SM
13755 Fix octave-inf completion problems reported by Alexander Klimov.
13756 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
13757 Inherit from octave-mode-syntax-table.
13758 (inferior-octave-mode): Set info-lookup-mode.
13759 (inferior-octave-completion-at-point): New function.
13760 (inferior-octave-complete): Use it and completion-in-region.
13761 (inferior-octave-dynamic-complete-functions): Use it as well, and use
13762 comint-filename-completion.
13763 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
13764 symbol elements which shouldn't be word elements.
13765 (octave-font-lock-keywords, octave-beginning-of-defun)
13766 (octave-function-header-regexp): Adjust regexps accordingly.
13767 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
13768
cd22b309
JB
137692011-04-25 Juanma Barranquero <lekktu@gmail.com>
13770
13771 * net/gnutls.el (gnutls-errorp): Declare before first use.
13772
8b492194
TZ
137732011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
13774
13775 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
13776 verify-error, and verify-hostname-error parameters. Check whether
cd22b309 13777 default trustfile exists before going to use it. Add missing
5a5fa834 13778 argument to gnutls-message-maybe call. Return value.
8b492194
TZ
13779 Reported by Claudio Bley <claudio.bley@gmail.com>.
13780 (open-gnutls-stream): Add usage example.
13781
13782 * net/network-stream.el (network-stream-open-starttls): Give host
13783 parameter to `gnutls-negotiate'.
13784 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 13785 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 13786
841a1577 137872011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 13788
cd22b309
JB
13789 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
13790 Use correct match group (bug#8438).
05842630 13791
3ba7869c
CY
137922011-04-24 Chong Yidong <cyd@stupidchicken.com>
13793
512e3ae1
CY
13794 * emacs-lisp/package.el (package-built-in-p): Fix typo.
13795 (package-menu--generate): New arg specifying packages to show.
13796 (package-menu-refresh, package-menu-execute, list-packages):
13797 Callers changed.
13798 (package-show-package-list): New function, replacing deleted
13799 package--list-packages (renamed because it is non-internal).
13800
13801 * finder.el (finder-list-matches): Use package-show-package-list
13802 instead of deleted package--list-packages.
13803
e92f3bd3
SM
13804 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
13805 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
13806 (vc-annotate-mode-map): Bind it to RET.
13807
7031be6d
UR
138082011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
13809
13810 * progmodes/etags.el (next-file): Don't use set-buffer to change
13811 buffers (Bug#8478).
13812
4ef177aa
CY
138132011-04-24 Chong Yidong <cyd@stupidchicken.com>
13814
c8d173eb
CY
13815 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
13816
4ef177aa
CY
13817 * apropos.el (apropos-label-face): Avoid variable-pitch face.
13818 (apropos-accumulator): Doc fix.
13819 (apropos-function, apropos-macro, apropos-command)
13820 (apropos-variable, apropos-face, apropos-group, apropos-widget)
13821 (apropos-plist): Add face property.
13822 (apropos-symbols-internal): Fix indentation.
13823 (apropos-print): Simplify help, and recognize apropos-multi-type.
13824 (apropos-print-doc): Use button-type-get to extract the button's
13825 face property. Fill docstring (Bug#8352).
13826
4ffd0d6b 138272011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
13828
13829 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
13830
c6c32125 13831 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 13832 (mpuz-mode-map): Use mapc.
c6c32125
JB
13833 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
13834 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
13835 Fix typos in docstrings.
13836
58d468b4
JB
13837 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
13838 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
13839
6470c3c6
JB
13840 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
13841
4ffd0d6b 138422011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
13843
13844 * minibuffer.el (completion--do-completion): Avoid the "Next char
13845 not unique" prompt if icomplete-mode is enabled (Bug#5849).
13846
3ad8bad0
CY
13847 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
13848 mouse-2 into unread-command-events, it is interpreted correctly.
13849
71d73c9c 13850 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 13851 (image-toggle-display): Doc fix.
71d73c9c 13852
841a1577 138532011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 13854
4ffd0d6b
GM
13855 * textmodes/page.el (what-page): Use line-number-at-pos to
13856 calculate line number (Bug#6825).
6e1dbaa9 13857
c2fb1b60
JB
138582011-04-22 Juanma Barranquero <lekktu@gmail.com>
13859
13860 * eshell/esh-mode.el (find-tag-interactive): Declare function.
13861 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
13862 Pass argument NO-DEFAULT to `find-tag-interactive'.
13863
e02f48d7
JB
138642011-04-22 Juanma Barranquero <lekktu@gmail.com>
13865
13866 Lexical-binding cleanup.
13867
13868 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
13869 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
13870 * progmodes/ada-prj.el (ada-prj-initialize-values)
13871 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
13872 (ada-prj-show-value):
13873 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
13874 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
13875 (antlr-invalidate-context-cache, antlr-options-menu-filter)
13876 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
13877 * progmodes/bug-reference.el (bug-reference-push-button):
13878 * progmodes/fortran.el (fortran-line-length):
13879 * progmodes/glasses.el (glasses-change):
13880 * progmodes/octave-mod.el (octave-fill-paragraph):
13881 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
13882 (python-pdbtrack-grub-for-buffer, python-sentinel):
13883 * progmodes/sql.el (sql-save-connection):
13884 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
13885 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
13886 Mark unused parameters.
13887
13888 * progmodes/compile.el (compilation--flush-directory-cache)
13889 (compilation--flush-parse, compile-internal): Mark unused parameters.
13890 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
13891 (compilation-next-error-function): Remove unused variable `timestamp'.
13892
13893 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
13894 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
13895
13896 * progmodes/dcl-mode.el (dcl-end-of-command):
13897 Remove unused variable `start'.
13898 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
13899 (dcl-option-value-basic, dcl-option-value-offset)
13900 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
13901 Mark unused parameters.
13902 (dcl-save-local-variable): Remove unused variable `val'.
13903 (mode): Declare.
13904
13905 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
13906 Mark unused parameters.
13907 (delphi-ignore-changes): Move before first use.
13908 (delphi-charset-token-at): Remove unused variable `start'.
13909 (delphi-else-start): Remove unused variable `if-count'.
13910 (delphi-comment-block-start, delphi-comment-block-end):
13911 Remove unused variable `kind'.
13912 (delphi-indent-line): Remove unused variable `new-point'.
13913
13914 * progmodes/ebrowse.el (ebrowse-files-list)
13915 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
13916 Mark unused parameters. Don't quote `lambda'.
13917 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
13918 Don't quote `lambda'.
13919 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
13920 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
13921 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
13922 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
13923 Use `ignore-errors'.
13924 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
13925 (ebrowse-view/find-file-and-search-pattern)
13926 (ebrowse-view/find-member-declaration/definition):
13927 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
13928 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
13929 Rename parameter PREFIX-ARG to PREFIX.
13930 (ebrowse-tags-read-name): Remove unused variables `start' and
13931 `member-info'.
13932 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
13933 to `tags-file'.
13934
13935 * progmodes/etags.el (local-find-tag-hook): Declare.
13936 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
13937 Mark unused parameters.
13938
13939 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
13940 (executable-interpret): Mark unused parameter.
13941
13942 * progmodes/flymake.el (flymake-process-sentinel)
13943 (flymake-after-change-function)
13944 (flymake-create-temp-with-folder-structure)
13945 (flymake-get-include-dirs-dot): Mark unused parameters.
13946 (flymake-safe-delete-directory): Remove unused variable `err'.
13947
13948 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
13949 (speedbar-timer-fn, speedbar-line-text)
13950 (speedbar-change-expand-button-char, speedbar-delete-subblock)
13951 (speedbar-center-buffer-smartly): Declare functions.
13952 (gdb-find-watch-expression): Remove unused variable `array'.
13953 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
13954 (gdb-starting): Mark unused parameters.
13955 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
13956 (gdb-table-string): Remove unused variable `res'.
13957 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
13958 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
13959 (gdb-display-buffer): Remove unused variable `cur-size'.
13960
13961 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
13962 allow lexical-binding compilation.
13963 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
13964 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
13965 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
13966 Mark unused parameters.
13967 (gud-gdb-marker-filter): Remove unused variable `match'.
13968 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
13969 lambda expressions and funcall them, instead of using `fset'.
13970
13971 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
13972 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
13973
13974 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
13975 variable `header-beg'; use `let'.
13976
13977 * progmodes/icon.el (indent-icon-exp): Remove unused variables
13978 `restart', `last-sexp' and `at-do'.
13979
13980 * progmodes/js.el (js--debug): Mark unused parameter.
13981 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
13982 (js--splice-into-items): Remove unused variable `item'.
13983 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
13984
13985 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
13986 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
13987 (makefile-complete): Remove unused variable `try'.
13988 (makefile-fill-paragraph, makefile-match-function-end):
13989 Mark unused parameters.
13990
13991 * progmodes/octave-inf.el (inferior-octave-complete):
13992 Remove unused variable `proc'.
13993 (inferior-octave-output-digest): Mark unused parameter.
13994
13995 * progmodes/perl-mode.el (perl-calculate-indent):
13996 Remove unused variable `err'.
13997
13998 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
13999 (prolog-indent-line): Mark unused parameters.
14000 (prolog-indent-line): Remove unused variable `beg'.
14001
14002 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
14003 (reporter-dont-compact-list): Declare.
14004
14005 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
14006 Remove unused variable `char'.
14007 (sh-debug): Mark unused parameter.
14008 (sh-get-indent-info): Remove unused variable `start'.
14009 (sh-calculate-indent): Remove unused variable `var'.
14010
14011 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
14012 (simula-electric-keyword): Remove unused variable `null'.
14013 (simula-search-backward, simula-search-forward): Remove unused
14014 variables `begin' and `end'.
14015
14016 * progmodes/vera-mode.el (vera-guess-basic-syntax):
14017 Remove unused variable `pos'.
14018 (vera-electric-tab, vera-comment-uncomment-region):
14019 Mark unused parameters.
14020 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
14021
7ede3b65
CY
140222011-04-22 Chong Yidong <cyd@stupidchicken.com>
14023
14024 * emacs-lisp/package.el (package--builtins, package-alist)
14025 (package-load-descriptor, package-built-in-p, package-activate)
14026 (define-package, package-installed-p)
14027 (package-compute-transaction, package-buffer-info)
14028 (package--push): Doc fix. Distinguish more clearly between
14029 version strings and version lists.
14030
121656e9
JB
140312011-04-21 Juanma Barranquero <lekktu@gmail.com>
14032
14033 Lexical-binding cleanup.
14034
14035 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
14036 (5x5-make-mutate-best):
14037 * play/fortune.el (fortune-in-buffer):
14038 * play/gomoku.el (gomoku-init-display):
14039 * play/solitaire.el (solitaire, solitaire-do-check):
14040 * play/tetris.el (tetris-default-update-speed-function):
14041 Mark unused parameters.
14042
14043 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
14044 (bubbles--shift): Remove unused variable `char-org'.
14045 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
14046 (bubbles--show-images): Remove unused variable `char'.
14047
14048 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
14049 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
14050 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
14051 (decipher-analyze-buffer): Use ?\s.
14052 (decipher-make-checkpoint): Remove unused variable `mapping'.
14053
14054 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
14055
14056 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
14057 Remove unused variable `result'; use `let'.
14058
14059 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
14060 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
14061 (gametree-children-shown-p, gametree-compute-reduced-score):
14062 Use `ignore-errors'.
14063
14064 * play/handwrite.el (ps-lpr-switches): Declare.
14065 (handwrite): Remove unused variables `pmin' and `lastp'.
14066
14067 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
14068
14069 * play/landmark.el (landmark-init-display)
14070 (landmark-update-naught-weights): Mark unused parameters.
14071 (landmark-y): Remove unused variable `noise'. Simplify.
14072 (landmark-human-plays): Remove unused variable `score'.
14073
14074 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
14075 (mpuz-try-proposal): Remove unused variable `game'.
14076
14077 * play/zone.el (life-patterns): Declare.
14078
80f499c7
JB
140792011-04-20 Juanma Barranquero <lekktu@gmail.com>
14080
14081 * vc/vc.el (ediff-vc-internal): Declare function.
14082
024ff170
SM
140832011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14084
c0a193ea
SM
14085 * shell.el: Use lexical-binding and std completion UI.
14086 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
14087 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
14088 comint-preoutput-filter-functions rather than on
14089 comint-output-filter-functions.
14090 (shell-command-completion, shell--command-completion-data)
14091 (shell-filename-completion, shell-environment-variable-completion)
14092 (shell-c-a-p-replace-by-expanded-directory): New functions.
14093 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
14094 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
14095 (shell-dynamic-complete-environment-variable): Use them.
14096 (shell-dynamic-complete-as-environment-variable)
14097 (shell-dynamic-complete-as-command): Remove.
14098 (shell-match-partial-variable): Match past point.
14099 * comint.el: Clean up use of completion-at-point-functions.
14100 (comint-completion-at-point): New function.
14101 (comint-mode): Use it completion-at-point-functions.
14102 (comint-dynamic-complete): Make it obsolete.
14103 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
14104 (comint-c-a-p-replace-by-expanded-history): New function.
14105 (comint-dynamic-complete-functions)
14106 (comint-replace-by-expanded-history): Use it.
14107 * minibuffer.el (completion-table-with-terminator): Allow dynamic
14108 termination strings. Try harder to avoid second try-completion.
14109 (completion-in-region-mode-map): Disable bindings that don't work yet.
14110
2dbaa080
SM
14111 * comint.el: Use lexical-binding. Require CL.
14112 (comint-dynamic-complete-functions): Use comint-filename-completion.
14113 (comint-completion-addsuffix): Tweak custom type.
14114 (comint-filename-completion, comint--common-suffix)
14115 (comint--common-quoted-suffix, comint--table-subvert)
14116 (comint--complete-file-name-data): New functions.
14117 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
14118 (comint-dynamic-list-filename-completions): Use them.
14119 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 14120
2dbaa080
SM
14121 * minibuffer.el (completion-in-region-mode):
14122 Keep completion-in-region-mode--predicate global.
14123 (completion-in-region--postch):
14124 Assume completion-in-region-mode--predicate is not null.
14125
c79a6f38
SM
14126 * progmodes/flymake.el (flymake-start-syntax-check-process):
14127 Obey `dir'. Simplify.
14128
024ff170
SM
14129 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
14130 we're in VC after all.
14131
1c6c854e
CS
141322011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
14133
14134 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 14135 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
14136 (vc-version-diff): Use vc-diff-build-argument-list-internal.
14137
bed7f140
SM
141382011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14139
332e62ab
SM
14140 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
14141 add sanity check.
14142
bed7f140
SM
14143 * obsolete/erc-hecomplete.el: Make obsolete.
14144 * obsolete/: Standardize obsolescence info in the header.
14145
f195c582
GM
141462011-04-20 Glenn Morris <rgm@gnu.org>
14147
14148 * calendar/solar.el (solar-horizontal-coordinates):
14149 Use the longitude argument rather than `calendar-longitude'.
14150 (solar-date-next-longitude): Remove unused locals.
14151
cb79b8c0
VJL
141522011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14153
14154 * whitespace.el: New version 13.2.1.
14155
141562011-04-20 felix <EmacsWiki> (tiny change)
14157
d8e4b68b 14158 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
14159 switching between major modes on a file.
14160
602ea69d
SM
141612011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
14162
14163 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
14164 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
14165 multi-line comments as well.
14166
06b60517
JB
141672011-04-19 Juanma Barranquero <lekktu@gmail.com>
14168
14169 Lexical-binding cleanup.
14170
14171 * arc-mode.el (archive-mode-revert):
14172 * cmuscheme.el (scheme-interactively-start-process):
14173 * custom.el (custom-initialize-delay):
14174 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
14175 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
14176 * emacs-lock.el (emacs-lock-clear-sentinel):
14177 * ezimage.el (defezimage):
14178 * follow.el (follow-avoid-tail-recenter):
14179 * fringe.el (set-fringe-mode-1):
14180 * generic-x.el (bat-generic-mode-compile):
14181 * help-mode.el (help-info-variable, help-do-xref)
14182 (help-mode-revert-buffer):
14183 * help.el (view-emacs-todo):
14184 * iswitchb.el (iswitchb-completion-help):
14185 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
14186 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
14187 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
14188 * locate.el (locate-update):
14189 * longlines.el (longlines-encode-region)
14190 (longlines-after-change-function):
14191 * outline.el (outline-isearch-open-invisible):
14192 * ps-def.el (declare-function, charset-dimension, char-width)
14193 (encode-char):
14194 * ps-mule.el (ps-mule-plot-string):
14195 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
14196 (recentf-edit-list-select, recentf-edit-list-validate)
14197 (recentf-open-files-action):
14198 * rect.el (delete-whitespace-rectangle-line)
14199 (rectangle-number-line-callback):
14200 * register.el (window-configuration-to-register)
14201 (frame-configuration-to-register):
14202 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
14203 * select.el (xselect-convert-to-string, xselect-convert-to-length)
14204 (xselect-convert-to-targets, xselect-convert-to-delete)
14205 (xselect-convert-to-filename, xselect-convert-to-charpos)
14206 (xselect-convert-to-lineno, xselect-convert-to-colno)
14207 (xselect-convert-to-os, xselect-convert-to-host)
14208 (xselect-convert-to-user, xselect-convert-to-class)
14209 (xselect-convert-to-name, xselect-convert-to-integer)
14210 (xselect-convert-to-atom, xselect-convert-to-identity):
14211 * subr.el (declare, ignore, process-kill-without-query)
14212 (text-clone-maintain):
14213 * terminal.el (te-get-char, te-tic-sentinel):
14214 * tool-bar.el (tool-bar-make-keymap):
14215 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
14216 * type-break.el (type-break-mode, type-break-noninteractive-query):
14217 * view.el (View-back-to-mark):
14218 * wid-browse.el (widget-browse-action, widget-browse-widget)
14219 (widget-browse-widgets, widget-browse-sexp):
14220 * widget.el (define-widget-keywords):
14221 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
14222 Mark unused parameters.
14223
14224 * align.el (align-adjust-col-for-rule): Mark unused parameter.
14225 (align-areas): Remove unused variable `look'.
14226 (align-region): Remove unused variables `real-end' and `pos-list'.
14227
14228 * apropos.el (apropos-score-doc): Remove unused variable `i'.
14229
14230 * bindings.el (mode-line-modified, mode-line-remote):
14231 Mark unused parameters.
14232 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
14233
14234 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
14235 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
14236
14237 * comint.el (comint-history-isearch-pop-state)
14238 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
14239 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
14240 (comint-substitute-in-file-name): Doc fix.
14241
14242 * completion.el (cmpl-statistics-block): Mark unused parameter.
14243 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
14244 (save-completions-to-file, load-completions-from-file):
14245 Remove unused local variable `e'.
14246
14247 * composite.el (compose-chars): Remove unused variable `len'.
14248 (lgstring-insert-glyph): Remove unused variable `g'.
14249 (compose-glyph-string): Remove unused variables `ascent',
14250 `descent', `lbearing' and `rbearing'.
14251 (compose-glyph-string-relative): Remove unused variables
14252 `lbearing', `rbearing' and `wadjust'.
14253 (compose-gstring-for-graphic): Remove unused variables `header',
14254 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
14255 (compose-gstring-for-terminal): Remove unused variables `header'
14256 and `nchars'. Use `let', not `let*'.
14257
14258 * cus-edit.el (Custom-set, Custom-save, custom-reset)
14259 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
14260 (Custom-buffer-done, custom-buffer-create-internal)
14261 (custom-browse-visibility-action, custom-browse-group-tag-action)
14262 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
14263 (widget-magic-mouse-down-action, custom-toggle-parent)
14264 (custom-add-parent-links, custom-toggle-hide-variable)
14265 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
14266 (custom-toggle-hide-face, face, hook, custom-group-link-action)
14267 (custom-face-menu-create, custom-variable-menu-create, get)
14268 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
14269 (custom-reset-standard-save-and-update): Remove unused variable `value'.
14270 (customize-apropos): Remove unused variable `tests'.
14271 (custom-group-value-create): Remove unused variable `hidden-p'.
14272 (sort-fold-case): Declare.
14273
14274 * cus-theme.el (custom-reset-standard-faces-list)
14275 (custom-reset-standard-variables-list): Declare.
14276 (customize-create-theme, custom-theme-revert, custom-theme-write)
14277 (custom-theme-choose-mode, customize-themes, custom-theme-save):
14278 Mark unused parameters.
14279
14280 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
14281
14282 * delim-col.el (delimit-columns-max): Move defvar before first use.
14283
14284 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 14285 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
14286
14287 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
14288 (auto-insert): Declare.
14289 (desktop-restore-file-buffer): Rename desktop-* parameters;
14290 mark unused ones.
14291 (desktop-create-buffer): Rename desktop-* parameters and bind them.
14292 (desktop-buffer): Rename desktop-* parameters.
14293
14294 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
14295 (dframe-reposition-frame-xemacs, dframe-help-echo)
14296 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
14297 Mark unused parameters.
14298
14299 * dired-aux.el (backup-extract-version-start, overwrite-query)
14300 (overwrite-backup-query, rename-regexp-query)
14301 (rename-non-directory-query): Declare.
14302 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
14303 (dired-add-entry): Remove unused variable `orig-file-name'.
14304 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
14305 Use parameter PRESERVE-TIME instead of accessing dynamic variable
14306 `dired-copy-preserve-time' directly.
14307 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
14308 (dired-insert-subdir-newpos): Rename unused variable `pos'.
14309
14310 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
14311 (dired-virtual-revert, dired-make-relative-symlink):
14312 Mark unused parameters.
14313 (manual-program): Declare.
14314 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
14315 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
14316 wrapped in `with-no-warnings' to avoid replacing one warning by another.
14317
14318 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
14319
14320 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
14321
14322 * echistory.el (electric-history-in-progress, Helper-return-blurb):
14323 Declare.
14324
14325 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
14326
14327 * electric.el (Electric-command-loop): Rename parameter
14328 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
14329
14330 * expand.el (expand-in-literal): Remove unused variable `here'.
14331
14332 * facemenu.el (facemenu-add-new-color):
14333 Remove unused variable `docstring'.
14334
14335 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
14336 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
14337 (face-attr-construct): Mark unused parameter. Doc fix.
14338 (read-color): Remove unused variable `hex-string'.
14339
14340 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
14341 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
14342 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
14343 (display-buffer-other-frame): Remove unused variable `old-window'.
14344 (kill-buffer-hook): Declare.
14345 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
14346 Mark unused parameters.
14347 (after-find-file): Pass 1 to `auto-save-mode', not t.
14348
14349 * files-x.el (auto-insert): Declare.
14350 (modify-file-local-variable-prop-line): Remove unused variable `val'.
14351
14352 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 14353 variable `buf'. Mark unused parameter.
06b60517
JB
14354 (find-lisp-insert-directory): Mark unused parameter.
14355
14356 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
14357 (format-encode-region): Remove unused variables `cur-buf' and `result'.
14358 (format-common-tail): Remove, unused.
14359 (format-deannotate-region): Remove unused variable `loc'.
14360 (format-annotate-region): Remove unused variable `p'.
14361 (format-annotate-single-property-change): Remove unused variables
14362 `default' and `tail'.
14363
14364 * forms.el (read-file-filter): Declare.
14365 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
14366
14367 * frame.el (frame-creation-function-alist): Mark unused parameter.
14368 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
14369
14370 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
14371 Remove unused parameters.
14372 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
14373 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
14374
14375 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
14376 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
14377 (hfy-prepare-tag-map): Mark unused parameters.
14378 (htmlfontify-buffer): Use `called-interactively-p'.
14379
14380 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
14381 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
14382 (ibuffer-do-occur): Mark unused parameters.
14383 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
14384 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
14385
14386 * ibuffer.el: Don't quote `lambda'.
14387 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
14388 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
14389 Mark unused parameters.
14390
14391 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
14392 (ido-completing-read): Mark unused parameters.
14393 (ido-copy-current-word): Mark unused parameters;
14394 remove unused variable `name'.
14395 (ido-sort-merged-list): Remove unused parameter `dirs'.
14396
14397 * ielm.el (ielm-input-sender): Mark unused parameter.
14398 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
14399 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
14400 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
14401 `ielm-string' as a dynamic variable accessible from the IELM prompt.
14402 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
14403
14404 * image-dired.el (image-dired-display-thumbs): Remove unused
14405 variables `curr-file' and `count'.
14406 (image-dired-remove-tag): Remove unused variable `start'.
14407 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
14408 variable `curr-file'
14409 (image-dired-rotate-original): Remove unused variable `temp-file'.
14410 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
14411 Remove unused variable `file'.
14412 (image-dired-gallery-generate): Remove unused variable `curr'.
14413 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
14414
14415 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
14416
14417 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
14418
14419 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
14420
14421 * isearch.el (minibuffer-history-symbol): Declare.
14422 (isearch-edit-string): Remove unused variable `err'.
14423 (isearch-message-prefix, isearch-message-suffix):
14424 Mark unused parameters.
14425
14426 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
14427
14428 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
14429
14430 * makesum.el (double-column): Remove unused variable `cnt'.
14431
14432 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
14433 (ido-ignore-item-temp-list): Declare.
14434
14435 * mouse-drag.el (mouse-drag-throw): Remove unused variables
14436 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
14437 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
14438 (mouse-drag-drag): Remove unused variables `mouse-delta' and
14439 `mouse-col-delta'.
14440
14441 * mouse-sel.el (mouse-extend-internal):
14442 Remove unused variable `orig-window-frame'.
14443
14444 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
14445 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
14446 Move declarations before first use.
14447 (pcomplete-opt): Mark unused parameters; doc fix.
14448
14449 * proced.el (proced-revert): Mark unused parameter.
14450 (proced-send-signal): Remove unused variable `err'.
14451
14452 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
14453 Rename parameter PREFIX-ARG to ARG.
14454 (ps-basic-plot-string, ps-basic-plot-whitespace):
14455 Mark unused parameters.
14456
14457 * replace.el (replace-count): Define.
14458 (occur-revert-function): Mark unused parameters.
14459 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
14460 (isearch-case-fold-search, isearch-string): Declare.
14461 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
14462 bind `case-fold-search'. Remove unused variables `beg' and `end',
14463 and simplify.
14464 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
14465 COUNT and bind `replace-count'.
14466 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
14467 to COUNT.
14468
14469 * savehist.el (print-readably, print-string-length): Declare.
14470
14471 * shadowfile.el (shadow-expand-cluster-in-file-name):
14472 Remove unused variable `cluster'.
14473 (shadow-copy-file): Remove unused variable `i'.
14474 (shadow-noquery, shadow-clusters, shadow-site-cluster)
14475 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
14476 (shadow-define-literal-group, shadow-define-regexp-group)
14477 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
14478
14479 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
14480 (shell): Use `called-interactively-p'.
14481 (shell-directory-tracker): Remove unused variable `chdir-failure'.
14482
14483 * simple.el (compilation-context-lines, comint-file-name-quote-list)
14484 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
14485 (delete-backward-char): Remove unused variable `ocol'.
14486 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
14487 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
14488 (event-apply-hyper-modifier, event-apply-shift-modifier)
14489 (event-apply-control-modifier, event-apply-meta-modifier):
14490 Mark unused parameters.
14491 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
14492 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
14493
14494 * speedbar.el (speedbar-ignored-directory-expressions)
14495 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
14496 (speedbar-find-file, speedbar-dir-follow)
14497 (speedbar-directory-buttons-follow, speedbar-tag-find)
14498 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
14499 (speedbar-buffers-line-directory, speedbar-buffer-click):
14500 Mark unused parameters.
14501 (speedbar-tag-file): Remove unused variable `mode'.
14502 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
14503
14504 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
14505
14506 * talk.el (talk): Remove unused variable `display'.
14507
14508 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
14509 (tar-write-region-annotate): Mark unused parameter.
14510
14511 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
14512 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
14513 Declare them, wrapped in `with-no-warnings' to avoid replacing one
14514 warning by another.
14515
14516 * time-stamp.el (time-stamp-string-preprocess):
14517 Remove unused variable `require-padding'.
14518
14519 * tree-widget.el (widget-glyph-enable): Declare.
14520 (tree-widget-action): Mark unused parameter.
14521
14522 * w32-fns.el (x-get-selection): Mark unused parameter.
14523 (autoload-make-program, generated-autoload-file): Declare.
14524
14525 * wdired.el (wdired-revert): Mark unused parameters.
14526 (wdired-xcase-word): Remove unused variable `err'.
14527
14528 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
14529 (whitespace-help-scroll): Remove unused variable `data-help'.
14530
14531 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
14532 (widget-image-insert, widget-after-change, default)
14533 (widget-default-format-handler, widget-default-notify)
14534 (widget-default-prompt-value, widget-info-link-action)
14535 (widget-url-link-action, widget-function-link-action)
14536 (widget-variable-link-action, widget-file-link-action)
14537 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
14538 (widget-field-prompt-internal, widget-field-action, widget-field-match)
14539 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
14540 (widget-insert-button-action, widget-delete-button-action, visibility)
14541 (widget-documentation-link-action, widget-documentation-string-action)
14542 (widget-const-prompt-value, widget-regexp-match, symbol)
14543 (widget-coding-system-prompt-value)
14544 (widget-key-sequence-value-to-external, sexp)
14545 (widget-sexp-value-to-internal, character, vector, cons)
14546 (widget-choice-prompt-value, widget-boolean-prompt-value)
14547 (widget-color--choose-action): Mark unused parameters.
14548 (widget-item-match-inline, widget-choice-match-inline)
14549 (widget-checklist-match, widget-checklist-match-inline)
14550 (widget-group-match): Rename parameter VALUES to VALS.
14551 (widget-field-value-set): Remove unused variable `size'.
14552 (widget-color-action): Remove unused variables `value' and `start'.
14553
14554 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 14555 variable `dir'. Doc fix.
06b60517
JB
14556 (windmove-find-other-window): Don't pass it.
14557
14558 * window.el (count-windows): Mark unused parameter.
14559 (bw-adjust-window): Remove unused variable `err'.
14560
14561 * woman.el (woman-file-name): Remove unused variable `default'.
14562 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
14563 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
14564 (global-font-lock-mode): Declare.
14565 (woman-decode-region): Mark unused parameter.
14566 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
14567
14568 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
14569 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
14570 (x-dnd-handle-moz-url): Remove unused variable `title'.
14571 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
14572
14573 * xml.el (xml-parse-tag, xml-parse-attlist):
14574 Remove unused variable `pos'.
14575
bc4f7f3d
GM
145762011-04-19 Glenn Morris <rgm@gnu.org>
14577
14578 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
14579 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
14580 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
14581 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
14582 * calendar/cal-html.el (cal-html-insert-minical):
14583 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
14584 (calendar-mark-date-pattern):
14585 Prefix "unused" locals.
14586
14587 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
14588 optional argument `style'.
14589
14590 * calendar/appt.el (appt-make-list):
14591 * calendar/cal-china.el (calendar-chinese-date-string):
14592 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
14593 (diary-hebrew-yahrzeit):
14594 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
14595 * calendar/calendar.el (calendar-generate-window):
14596 * calendar/time-date.el (time-to-days):
14597 Remove unused local variables.
14598
16a43933
CY
145992011-04-18 Chong Yidong <cyd@stupidchicken.com>
14600
14601 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
14602 glyphless-char-display table.
14603 (tabulated-list-glyphless-char-display): New var.
14604
7eed1860
SS
146052011-04-18 Sam Steingold <sds@gnu.org>
14606
14607 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
14608 to acknowledgments.
14609
4d2d1ccd
GM
146102011-04-17 Glenn Morris <rgm@gnu.org>
14611
14612 * calendar/diary-lib.el (diary-sexp-entry):
14613 * calendar/holidays.el (holiday-sexp):
14614 Set debug-on-error rather than the removed stack-trace-on-error.
14615
239da61d
GM
146162011-04-16 Glenn Morris <rgm@gnu.org>
14617
14618 * progmodes/f90.el: Use lexical-binding.
14619 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
14620
8b05752a
SM
146212011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14622
daca8ba5
SM
14623 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
14624 (mail-mode): Setup mailalias completion here instead.
14625 * mail/mailalias.el: Use lexical-binding.
14626 (pattern, mailalias-done): Declare dynamic.
14627 (mail-completion-at-point-function): New function, from mail-complete.
14628 (mail-complete): Use it.
14629 (mail-completion-expand): New function.
14630 (mail-get-names): Use it.
14631 (mail-directory, mail-directory-process, mail-directory-stream):
14632 Don't use `pattern' for lexically bound arg.
14633
6f542485
SM
14634 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
14635
037e7c3f
SM
14636 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
14637 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
14638 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
14639
8b05752a
SM
14640 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
14641 (byte-save-window-excursion, byte-temp-output-buffer-setup)
14642 (byte-interactive-p): Define them again, for use when inlining
14643 old code.
14644
49093f60
JB
146452011-04-15 Juanma Barranquero <lekktu@gmail.com>
14646
14647 * loadup.el: Use `string-to-number', not `string-to-int'.
14648
b5b8e7de
SM
146492011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14650
14651 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
14652 gud-gdb-complete-command.
14653 (gud-gdb-completions): New function, from gud-gdb-complete-command.
14654 (gud-gdb-completion-at-point): New function.
14655 (gud-gdb-completions): Remove.
14656
f42efeb5
MA
146572011-04-14 Michael Albinus <michael.albinus@gmx.de>
14658
49093f60
JB
14659 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
14660 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
14661 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
14662 whether `executable-find' is bound.
f42efeb5
MA
14663
14664 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
14665
e240cc21
SM
146662011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
14667
14668 * minibuffer.el (completion-in-region-mode-predicate)
14669 (completion-in-region-mode--predicate): New vars.
14670 (completion-in-region, completion-in-region--postch)
14671 (completion-in-region-mode): Use them.
14672 (completion--capf-wrapper): Also return the hook function.
14673 (completion-at-point, completion-help-at-point):
14674 Adjust and provide a predicate.
c2bd2ab0
SM
14675
14676 Preserve arg names for advice of subr and lexical functions (bug#8457).
14677 * help-fns.el (help-function-arglist): Consolidate the subr and
14678 new-byte-code cases. Add argument `preserve-names' to extract names
14679 from the docstring when needed.
14680 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
14681 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
14682 (ad-arglist): Use help-function-arglist's new arg.
14683 (ad-definition-type): Use cond.
14684
c183f693
JB
146852011-04-13 Juanma Barranquero <lekktu@gmail.com>
14686
06641a47
JB
14687 * autorevert.el (auto-revert-handler):
14688 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
14689 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
14690 Don't quote lambda.
14691
c183f693
JB
14692 * image-mode.el (image-transform-set-scale):
14693 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
14694
1e3b6001
G
146952011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
14696
14697 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 14698 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
14699 Upgrades via gnutls-cli are too slow to be done opportunistically.
14700
2d6af8dd
JB
147012011-04-12 Juanma Barranquero <lekktu@gmail.com>
14702
14703 * dframe.el (dframe-current-frame): Remove spurious quote.
14704
c0749a51
GM
147052011-04-12 Glenn Morris <rgm@gnu.org>
14706
088d0d61
GM
14707 * calendar/cal-tex.el (cal-tex-end-document):
14708 Try to automatically use latin1 input if needed.
14709
c0749a51
GM
14710 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
14711 Don't try to cons a mark onto an empty element.
14712
5c90fde0
LL
147132011-04-11 Leo Liu <sdl.web@gmail.com>
14714
14715 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
14716 buffers.
14717 (ido-kill-buffer-at-head): Support killing virtual buffers.
14718
369e974d
CY
147192011-04-10 Chong Yidong <cyd@stupidchicken.com>
14720
14721 * minibuffer.el (completion-show-inline-help): New var.
14722 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
14723 (minibuffer-force-complete, minibuffer-complete-word):
14724 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
14725
14726 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
14727 to avoid interference from inline help (Bug#5849).
14728
37f1c930
LL
147292011-04-10 Leo Liu <sdl.web@gmail.com>
14730
099c39a4
JB
14731 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14732 Fix typo.
37f1c930 14733
a32d4040
CY
147342011-04-09 Chong Yidong <cyd@stupidchicken.com>
14735
14736 * image-mode.el (image-toggle-display-image): Signal an error if
14737 not in Image mode.
14738 (image-transform-mode, image-transform-resize)
14739 (image-transform-set-rotation): Doc fix.
daca8ba5 14740 (image-transform-set-resize): Delete.
a32d4040
CY
14741 (image-transform-set-scale, image-transform-fit-to-height)
14742 (image-transform-fit-to-width): Handle image-toggle-display-image
14743 and image-transform-resize directly.
14744
099c39a4 147452011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
14746
14747 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
14748 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
14749 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
14750 (doc-view-mode-map): Add bindings for the new functions.
14751
099c39a4 147522011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 14753
4d61f28d 14754 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
14755 Fix typo in docstring.
14756
3726838a
EZ
147572011-04-08 Eli Zaretskii <eliz@gnu.org>
14758
04f33f1e
EZ
14759 * files.el (file-size-human-readable): Produce one digit after
14760 decimal, like "ls -lh" does.
14761
14762 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
14763 the file size representation.
14764
3726838a
EZ
14765 * simple.el (list-processes): If async subprocesses are not
14766 available, error out with a clear error message.
14767
cbb59342
CY
147682011-04-08 Chong Yidong <cyd@stupidchicken.com>
14769
14770 * help.el (help-form-show): New function, to be called from C.
14771 Put help-form output in a buffer named differently than *Help*.
14772
e3971c44
EZ
147732011-04-08 Eli Zaretskii <eliz@gnu.org>
14774
14775 * files.el (file-size-human-readable): New function.
14776
14777 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
14778 computing the representation inline. Don't require `cl'.
14779
12544bbe
GM
147802011-04-08 Glenn Morris <rgm@gnu.org>
14781
a1de6c6a
GM
14782 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
14783
3c4671f4
GM
14784 * net/browse-url.el (browse-url-firefox):
14785 Test system-type, not system-configuration.
14786
b605679c
GM
14787 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
14788 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
14789 Use log-edit-empty-buffer-p. (Bug#7598)
14790
56442f0c
GM
14791 * net/rlogin.el (rlogin-process-connection-type): Simplify.
14792 (rlogin-mode-map): Initialize in the defvar.
14793 (rlogin): Use ignore-errors.
14794
12544bbe
GM
14795 * replace.el (occur-mode-map): Some fixes for menu items.
14796
eb237b0f
AH
147972011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
14798
14799 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
14800
7d668f2c
CY
148012011-04-06 Chong Yidong <cyd@stupidchicken.com>
14802
e67a13ab
CY
14803 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
14804 issuing unused warnings.
14805
14806 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
14807 macro directly.
14808
7d668f2c
CY
14809 * simple.el: Lisp reimplement of list-processes. Based on an
14810 earlier reimplementation by Leo Liu, but using tabulated-list.el.
14811 (process-menu-mode): New major mode.
14812 (list-processes--refresh, list-processes):
14813 (process-menu-visit-buffer): New functions.
14814
14815 * files.el (save-buffers-kill-emacs): Don't assume any return
14816 value of list-processes, which is undocumented anyway.
14817
a83ec3c9
CY
148182011-04-06 Chong Yidong <cyd@stupidchicken.com>
14819
14820 * emacs-lisp/tabulated-list.el: New file.
14821
e91a96fe
CY
14822 * emacs-lisp/package.el: Use Tabulated List mode.
14823 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
14824 (package-menu-mode): Derive from tabulated-list-mode. Set up the
14825 table format using Tabulated List mode variables.
14826 (package--push): New macro, replacing package-list-maybe-add.
14827 (package-menu--generate): Use package--push. Renamed from
14828 package--generate-package-list.
14829 (package-menu-refresh, list-packages): Use it.
daca8ba5 14830 (package-menu--print-info): Rename from package-print-package.
e91a96fe 14831 Return insertion data instead of inserting it directly.
099c39a4
JB
14832 (package-menu-describe-package, package-menu-execute):
14833 Use tabulated-list-get-id.
e91a96fe
CY
14834 (package-menu-mark-delete, package-menu-mark-install)
14835 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
14836 (package-menu-mark-obsolete-for-deletion):
14837 Use tabulated-list-put-tag.
e91a96fe
CY
14838 (package--list-packages, package-menu-revert)
14839 (package-menu-get-package, package-menu-get-version)
14840 (package-menu-sort-by-column): Functions deleted.
14841 (package-menu-package-list, package-menu-sort-key): Vars deleted.
14842 (package-menu--status-predicate, package-menu--version-predicate)
14843 (package-menu--name-predicate)
14844 (package-menu--description-predicate): Handle arguments in the
14845 Tabulated List format.
14846 (package-list-packages-no-fetch): Call list-packages.
14847
3e214b50
JB
148482011-04-06 Juanma Barranquero <lekktu@gmail.com>
14849
14850 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 14851 (after-find-file): Don't bind it.
3e214b50
JB
14852 (revert-buffer-in-progress-p): New variable.
14853 (revert-buffer): Bind it.
14854 Pass nil for `after-find-file-from-revert-buffer'.
14855
14856 * saveplace.el (save-place-find-file-hook): Use new variable
14857 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
14858
3f0f1700
GM
148592011-04-06 Glenn Morris <rgm@gnu.org>
14860
c0274801
GM
14861 * Makefile.in (AUTOGEN_VCS): New variable.
14862 (autoloads): Use $AUTOGEN_VCS.
14863
3f0f1700
GM
14864 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
14865 * calendar/calendar.el (calendar-mode-map):
14866 Check for toolkit scroll bars. (Bug#8305)
14867
41ea9e48
CY
148682011-04-05 Chong Yidong <cyd@stupidchicken.com>
14869
14870 * minibuffer.el (completion-in-region--postch)
14871 (completion-in-region-mode): Remove unnecessary messages.
14872
6194c800
JB
148732011-04-05 Juanma Barranquero <lekktu@gmail.com>
14874
33256f14
JB
14875 * font-lock.el (font-lock-refresh-defaults):
14876 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
14877 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
14878
6194c800
JB
14879 * info.el (Info-directory-list, Info-read-node-name-2)
14880 (Info-split-parameter-string): Doc fixes.
14881 (Info-virtual-nodes): Reflow docstring.
14882 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
14883 (Info-apropos-toc-nodes, info-finder, Info-get-token)
14884 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
14885 Fix typos in docstrings.
14886 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
14887 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
14888 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
14889 (Info-restore-desktop-buffer): Mark unused parameters.
14890 (Info-directory-find-file, Info-directory-find-node)
14891 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
14892 (Info-virtual-index-find-node, Info-apropos-find-file)
14893 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 14894 Mark unused parameters; fix typos in docstrings.
6194c800
JB
14895 (Info-virtual-index): Remove unused local variable `nodename'.
14896
b87a8200 148972011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 14898
b87a8200
DD
14899 * net/rcirc.el: Update my e-mail address.
14900 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 14901
3b2ff876
CY
149022011-04-05 Chong Yidong <cyd@stupidchicken.com>
14903
14904 * startup.el (command-line): Save the cursor's theme-face
14905 directly, instead of using face-override-spec.
14906
14907 * custom.el (load-theme): Minor optimization in assigning faces.
14908
8d17e7ca
JB
149092011-04-04 Juanma Barranquero <lekktu@gmail.com>
14910
14911 * help-fns.el (describe-variable): Complete all variables having
14912 documentation, including keywords.
14913 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
14914
2fbc1934
JB
149152011-04-04 Juanma Barranquero <lekktu@gmail.com>
14916
14917 Convert to lexical-binding.
14918
14919 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
14920 (bs--get-marked-string, bs--get-modified-string)
14921 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
14922 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
14923 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
14924
14925 * ehelp.el (electric-help-execute-extended)
14926 (electric-help-ctrl-x-prefix):
14927 * hexl.el (hexl-revert-buffer-function):
14928 * linum.el (linum-after-change, linum-after-scroll):
14929 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
14930
14931 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
14932
74f50695
DU
149332011-04-04 Daiki Ueno <ueno@unixuser.org>
14934
14935 * epa-dired.el:
14936 * epa-mail.el:
14937 * epa-hook.el:
14938 * epa-file.el:
14939 * epa.el:
14940 * epg.el: Use lexical binding.
14941
c11325f7
CY
149422011-04-03 Chong Yidong <cyd@stupidchicken.com>
14943
0d9e9a12
CY
14944 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
14945
c11325f7 14946 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
14947 dictionary case for flyspell-mark-duplications-exceptions.
14948 Use regexp matching for languages.
c11325f7
CY
14949 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
14950 default dictionary (Bug#7926).
14951
da91b5f2
CY
149522011-04-02 Chong Yidong <cyd@stupidchicken.com>
14953
099c39a4
JB
14954 * emacs-lisp/package.el (package--with-work-buffer):
14955 Recognize https URLs.
da91b5f2 14956
099c39a4
JB
14957 * net/network-stream.el: Move from gnus/proto-stream.el.
14958 Change prefix to network-stream throughout.
da91b5f2
CY
14959 (open-protocol-stream): Merge into open-network-stream, leaving
14960 open-protocol-stream as an alias. Handle nil BUFFER args.
14961
14962 * subr.el (open-network-stream): Move to net/network-stream.el.
14963
afa8e9f6
GM
149642011-04-02 Glenn Morris <rgm@gnu.org>
14965
1d2e369d
GM
14966 * find-dired.el (find-exec-terminator): New option.
14967 (find-ls-option): Test for -ls support.
14968 (find-ls-subdir-switches): Test for -b in find-ls-option.
14969 (find-dired, find-grep-dired): Doc fixes.
14970 (find-dired): Use find-exec-terminator.
14971
8abb7da8 14972 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
14973 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
14974 (find-name-arg): Remove purecopy.
8abb7da8 14975
f3ca7378
GM
14976 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
14977 (grep-compute-defaults): Check for `-exec COMMAND +' support.
14978 Set grep-find-use-xargs, grep-find-command, and grep-find-template
14979 accordingly. Don't add the null-device if not needed.
14980
afa8e9f6
GM
14981 * files.el (save-some-buffers): Doc fix.
14982
35eae264
EZ
149832011-04-02 Eli Zaretskii <eliz@gnu.org>
14984
14985 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
14986
26b51db5
JB
149872011-04-01 Juanma Barranquero <lekktu@gmail.com>
14988
14989 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
14990 Use `dolist' rather than `mapcar'.
14991
7200d79c
SM
149922011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
14993
03408648 14994 Add lexical binding.
7200d79c 14995
03408648
SM
14996 * subr.el (apply-partially): Use new closures rather than CL.
14997 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
14998 (dolist, dotimes): Use slightly different expansion for lexical code.
14999 (functionp): Move to C.
15000 (letrec): New macro.
15001 (with-wrapper-hook): Use it and apply-partially instead of CL.
15002 (eval-after-load): Preserve lexical-binding.
15003 (save-window-excursion, with-output-to-temp-buffer): Turn them
15004 into macros.
7200d79c 15005
03408648
SM
15006 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
15007
15008 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
15009 than the arglist.
15010 (help-add-fundoc-usage): Don't add `Not documented'.
15011 (help-function-arglist): Handle closures, subroutines, and new
15012 byte-code-functions.
15013 (help-make-usage): Remove leading underscores.
15014 (describe-function-1): Handle closures.
15015 (describe-variable): Use special-variable-p for completion.
15016
15017 * files.el (lexical-binding): Declare safe.
f488fb65 15018
03408648
SM
15019 * emacs-lisp/pcase.el: Don't use destructuring-bind.
15020 (pcase--memoize): Rename from pcase-memoize. Change weakness.
15021 (pcase): Add `let' pattern.
15022 Change memoization so it actually works.
15023 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
15024 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
15025 <let>: New case.
f488fb65 15026
03408648
SM
15027 * emacs-lisp/macroexp.el: Use lexical binding.
15028 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
15029 Don't convert ' to #' without checking that it's indeed quoting
15030 a lambda.
15031
15032 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 15033 Use eval-sexp-add-defvars.
03408648
SM
15034 (eval-sexp-add-defvars): New fun.
15035
15036 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
15037
15038 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
15039 Don't autoload.
15040 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
15041 than the internal `byte-compile-lambda'.
15042 (defmethod): Don't hide code under quotes.
15043 (eieio-defmethod): New `code' argument.
15044
15045 * emacs-lisp/eieio-comp.el: Remove.
15046
15047 * emacs-lisp/edebug.el (edebug-eval-defun)
15048 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
15049 (edebug-toggle): Avoid `eval'.
15050
15051 * emacs-lisp/disass.el (disassemble-internal): Handle new
15052 `closure' objects.
15053 (disassemble-1): Handle new byte codes.
15054
15055 * emacs-lisp/cl.el (pushnew): Silence warning.
15056
15057 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
15058 (cl-byte-compile-throw): Remove.
15059 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
15060
15061 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
15062 closures.
15063
15064 * emacs-lisp/cconv.el: New file.
15065
15066 * emacs-lisp/bytecomp.el: Use lexical binding instead of
15067 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
15068 (byte-compile-initial-macro-environment):
15069 Handle declare-function here.
15070 (byte-compile--lexical-environment): New var.
15071 (byte-stack-ref, byte-stack-set, byte-discardN)
15072 (byte-discardN-preserve-tos): New lap codes.
15073 (byte-interactive-p): Don't use any more.
15074 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
15075 New macros.
15076 (byte-compile-lapcode): Use them and handle new lap codes.
15077 (byte-compile-obsolete): Remove.
15078 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
15079 (byte-compile-arglist-warn): Check late def of inlinable funs.
15080 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
15081 since they should have been expanded by now.
15082 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
15083 (byte-compile-from-buffer): Remove unused second arg.
15084 (byte-compile-preprocess): New function.
15085 (byte-compile-toplevel-file-form): New function to distinguish
15086 file-form calls from outside from file-form calls from hunk-handlers.
15087 (byte-compile-file-form): Simplify.
15088 (byte-compile-file-form-defsubst): Remove.
15089 (byte-compile-file-form-defmumble): Simplify now that
15090 byte-compile-lambda always returns a byte-code-function.
15091 (byte-compile): Preprocess.
15092 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
15093 Remove, not used any more.
15094 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
15095 (byte-compile-make-args-desc): New funs.
15096 (byte-compile-lambda): Handle lexical functions. Always return
15097 a byte-code-function.
15098 (byte-compile-reserved-constants): New var, to make up room for
15099 closed-over variables.
15100 (byte-compile-constants-vector): Obey it.
15101 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
15102 (byte-compile-macroexpand-declare-function): New function.
15103 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
15104 byte-code-functions.
15105 (byte-compile-form): Check obsolescence here.
15106 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
15107 (byte-compile-variable-ref): Remove.
15108 (byte-compile-dynamic-variable-op): New fun.
15109 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
15110 (byte-compile-variable-set): New funs.
15111 (byte-compile-discard): Add 2 args.
15112 (byte-compile-stack-ref, byte-compile-stack-set)
15113 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
15114 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
15115 macroexpand-all instead.
15116 (byte-compile-quote-form): Remove.
15117 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
15118 (byte-compile-bind, byte-compile-unbind): New funs.
15119 (byte-compile-let): Handle let* and lexical binding.
15120 (byte-compile-let*): Remove.
15121 (byte-compile-catch, byte-compile-unwind-protect)
15122 (byte-compile-track-mouse, byte-compile-condition-case):
15123 Handle a new :fun-body form, used for lexical scoping.
15124 (byte-compile-save-window-excursion)
15125 (byte-compile-with-output-to-temp-buffer): Remove.
15126 (byte-compile-defun): Simplify.
15127 (byte-compile-stack-adjustment): New fun.
15128 (byte-compile-out): Use it.
15129 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
15130
15131 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
15132 handler any more.
15133
15134 * emacs-lisp/byte-opt.el: Use lexical binding.
15135 (byte-inline-lapcode): Remove (to bytecomp).
15136 (byte-compile-inline-expand): Pay attention to inlining to/from
15137 lexically bound code.
15138 (byte-compile-unfold-lambda): Don't handle byte-code-functions
15139 any more.
15140 (byte-optimize-form-code-walker): Don't handle save-window-excursion
15141 any more and don't call compiler-macros.
15142 (byte-compile-splice-in-already-compiled-code): Remove.
15143 (byte-code): Don't inline any more.
15144 (disassemble-offset): Receive `bytes' as argument rather than via
15145 dynamic scoping.
15146 (byte-compile-tag-number): Declare before first use.
15147 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
15148 `return' even if make-spliceable.
15149 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
15150 obsolete interactive-p.
15151 (byte-optimize-lapcode): Optimize new lap-codes.
15152 Don't trip up on new form of `byte-constant' lap code.
15153
15154 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
15155
15156 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
15157
15158 * custom.el (custom-initialize-default, custom-declare-variable):
15159 Use `defvar'.
15160
15161 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
15162 New variables.
15163 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
15164 (COMPILE_FIRST): Add macroexp and cconv.
15165 * makefile.w32-in: Mirror changes in Makefile.in.
15166
15167 * vc/cvs-status.el:
15168 * vc/diff-mode.el:
15169 * vc/log-edit.el:
15170 * vc/log-view.el:
15171 * vc/smerge-mode.el:
15172 * textmodes/bibtex-style.el:
15173 * textmodes/css.el:
15174 * startup.el:
15175 * uniquify.el:
da91b5f2
CY
15176 * minibuffer.el:
15177 * newcomment.el:
15178 * reveal.el:
15179 * server.el:
15180 * mpc.el:
15181 * emacs-lisp/smie.el:
15182 * doc-view.el:
15183 * dired.el:
03408648
SM
15184 * abbrev.el: Use lexical binding.
15185
0f0c1f27
EZ
151862011-04-01 Eli Zaretskii <eliz@gnu.org>
15187
15188 * info.el (info-display-manual): New function.
15189
c82b2579
SM
151902011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
15191
15192 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
15193
221ddf68
TH
151942011-03-31 Tassilo Horn <tassilo@member.fsf.org>
15195
15196 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 15197 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 15198
cba6e77e
GM
151992011-03-31 Glenn Morris <rgm@gnu.org>
15200
e040639f
GM
15201 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
15202
cba6e77e
GM
15203 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
15204
6d0f1c9e
CS
152052011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
15206
15207 * progmodes/python.el (python-default-interpreter)
15208 (python-python-command-args, python-jython-command-args)
15209 (python-which-shell, python-which-args, python-which-bufname)
15210 (python-file-queue, python-comint-output-filter-function)
15211 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
15212 variables and functions.
15213
3e2d70fd
SM
152142011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
15215
15216 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
15217 (completion-in-region-mode): New minor mode.
15218 (completion-in-region): Use it.
15219 (completion-in-region--data, completion-in-region-mode-map): New vars.
15220 (completion-in-region--postch): New function.
15221 (completion--capf-misbehave-funs, completion--capf-safe-funs):
15222 New vars.
15223 (completion--capf-wrapper): New function.
15224 (completion-at-point): Use it to track well-behavedness of
15225 hook functions.
15226 (completion-help-at-point): New command.
15227
f3e4086c
JM
152282011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
15229
15230 * vc/add-log.el (add-change-log-entry): Don't use whitespace
15231 syntax class to search for whitespace on a single line
15232 (Message-ID: <4D938140.4030905@redhat.com>).
15233
eb7ffc14
LL
152342011-03-30 Leo Liu <sdl.web@gmail.com>
15235
15236 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
15237 New commands.
15238 (edit-abbrevs-map): Bind them here.
15239 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
15240
d806ab68
KM
152412011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
15242
15243 * allout.el (allout-hide-by-annotation, allout-flag-region):
15244 Reduce possibility of overlay leakage by making them volatile.
15245
15246 * allout-widgets.el (allout-widgets-tally): Define as nil so the
15247 hash is not shared between buffers. Mode initialization is
15248 responsible for giving it a useful starting value.
15249 (allout-item-span): Reduce possibility of overlay leakage by
15250 making them volatile.
15251 (allout-widgets-count-buttons-in-region): Add diagnostic function
15252 for tracking down button overlay leaks.
15253
ea622834
LL
152542011-03-29 Leo Liu <sdl.web@gmail.com>
15255
15256 * ido.el (ido-read-internal): Use the default history var
15257 minibuffer-history if no HISTORY is specified.
15258
b62f8267
G
152592011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
15260
03408648
SM
15261 * net/imap.el (imap-shell-open, imap-process-connection-type):
15262 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
15263 Kerberos, SSL, other subprocesses.
15264
947b6566
LL
152652011-03-28 Leo Liu <sdl.web@gmail.com>
15266
15267 * abbrev.el (abbrev-table-empty-p): New function.
15268 (prepare-abbrev-list-buffer): Place empty abbrev tables after
15269 nonempty ones. (Bug#5937)
15270
5ffb62aa
JD
152712011-03-27 Jan Djärv <jan.h.d@swipnet.se>
15272
15273 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
15274
7a097943
LL
152752011-03-27 Leo Liu <sdl.web@gmail.com>
15276
15277 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
15278 for foreground and background colors.
15279 (ansi-color-make-color-map): Adapt.
15280
c5b40130
LL
152812011-03-25 Leo Liu <sdl.web@gmail.com>
15282
1f48f7d2
LL
15283 * midnight.el (midnight-time-float): Remove. Note it calculates
15284 the microsecond component incorrectly and seconds-to-time does the
15285 same job.
625897ec 15286 Remove redundant (require 'timer).
1f48f7d2 15287
c5b40130
LL
15288 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
15289 (ido-completions): Remove unused arguments. (Bug#8329)
15290
d86d2721
SM
152912011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
15292
15293 * minibuffer.el (completion--flush-all-sorted-completions):
15294 Remove itself from hook.
15295 (completion-at-point): Let the functions perform the completion
15296 immediately and return nil or t.
15297 * comint.el (comint-dynamic-complete-functions): Now identical to
15298 completion-at-point-functions.
15299 (comint-dynamic-list-input-ring): Remove unused var `index'.
15300 (comint--match-partial-filename, comint--unquote&expand-filename):
15301 New funs, split from comint-match-partial-filename.
15302 (comint-dynamic-complete): Use completion-at-point.
15303 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
15304
e8974c48
DA
153052011-03-24 Drew Adams <drew.adams@oracle.com>
15306
15307 * thingatpt.el: Support `defun'.
15308
def71b5e
LL
153092011-03-23 Leo Liu <sdl.web@gmail.com>
15310
cb5af48e
LL
15311 * abbrevlist.el: Move to obsolete/abbrevlist.el.
15312
def71b5e
LL
15313 * help-mode.el (help-mode-finish): Tweak regexp.
15314
927c53e7
GM
153152011-03-23 Glenn Morris <rgm@gnu.org>
15316
18d05bed
GM
15317 * eshell/esh-opt.el (eshell-eval-using-options):
15318 Do not bind unused local variable `eshell-option-stub'.
15319
927c53e7
GM
15320 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
15321
9d0da923
JB
153222011-03-22 Juanma Barranquero <lekktu@gmail.com>
15323
15324 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
15325 keymap variable in `with-no-warnings' to avoid a warning when the
15326 keymap has been already `defconst'ed.
15327
4b978a67
LL
153282011-03-22 Leo Liu <sdl.web@gmail.com>
15329
15330 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
15331 encode all chars in abbrevs; otherwise use emacs-mule or
15332 utf-8-emacs. (Bug#8308)
15333
5fd62452
JB
153342011-03-22 Juanma Barranquero <lekktu@gmail.com>
15335
0b1596c6
JB
15336 * simple.el (backward-delete-char-untabify):
15337 Avoid warning about using `delete-backward-char'.
15338
5fd62452
JB
15339 * image.el (image-type-file-name-regexps): Make it variable.
15340 `imagemagick-register-types' modifies it, and the user may want
15341 to add new extensions for known image types.
15342 (imagemagick-register-types): Throw error if not using ImageMagick.
15343
0b4e93f1
LL
153442011-03-22 Leo Liu <sdl.web@gmail.com>
15345
15346 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
15347 located before rcirc-prompt-end-marker.
15348 (rcirc-complete): Error if point is not after rcirc prompt.
15349 Handle the case when table is nil.
9882e214 15350 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 15351
fccee4ab
CY
153522011-03-22 Chong Yidong <cyd@stupidchicken.com>
15353
15354 * custom.el (custom--inhibit-theme-enable): Make it affect only
15355 custom-theme-set-variables and custom-theme-set-faces.
15356 (provide-theme): Ignore custom--inhibit-theme-enable.
15357 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
15358 (custom-enabling-themes): Delete variable.
d86d2721
SM
15359 (enable-theme): Accept only loaded themes as arguments.
15360 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
15361 (custom-enabled-themes): Forbid themes from setting this.
15362 Eliminate use of custom-enabling-themes.
15363 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 15364
af896da6
LL
153652011-03-21 Leo Liu <sdl.web@gmail.com>
15366
15367 * ido.el (ido-read-internal): Add ido-selected to history instead
15368 of user input.
15369
78f64af0
SM
153702011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
15371
15372 * subr.el (deferred-action-list, deferred-action-function):
15373 Mark obsolete.
15374
b16ac1ec
LL
153752011-03-21 Leo Liu <sdl.web@gmail.com>
15376
810f7698
LL
15377 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
15378 change on 2011-02-13 (bug#8309).
15379
b16ac1ec
LL
15380 * minibuffer.el (read-file-name-function): Change default value.
15381 (read-file-name--defaults): Rename from read-file-name-defaults.
15382 (read-file-name-default): Rename from read-file-name.
15383 (read-file-name): Call read-file-name-function.
15384
4e05e67e
GM
153852011-03-21 Glenn Morris <rgm@gnu.org>
15386
15387 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
15388 Doc fixes.
15389
4359915b
CY
153902011-03-21 Chong Yidong <cyd@stupidchicken.com>
15391
15392 * cus-theme.el: Add missing provide statement.
15393 (customize-create-theme): Extract theme value correctly.
15394 (custom-theme-visit-theme): Autoload.
15395 (customize-create-theme): Prompt before inserting default faces.
15396
1fe275ee
JB
153972011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
15398
15399 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
15400 units and musical notes.
15401
cd394be1 154022011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
15403
15404 * ido.el (ido-read-internal): Use completing-read-default.
15405 (ido-completing-read): Fix compatibility with completing-read.
15406
7d476bde
CO
154072011-03-20 Christian Ohler <ohler@gnu.org>
15408
15409 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
15410 (ert-delete-all-tests): Use `called-interactively-p' rather than
15411 `interactive-p'.
15412 (ert--make-xrefs-region): Respect END.
15413
fe0fb33e
CY
154142011-03-19 Chong Yidong <cyd@stupidchicken.com>
15415
ff854b0b
CY
15416 * dired-aux.el (dired-create-directory): Signal an error if the
15417 directory already exists (Bug#8246).
15418
fe0fb33e
CY
15419 * facemenu.el (list-colors-display): Call list-faces-display
15420 inside with-help-window.
15421 (list-colors-print): Use display property to align the final
15422 column, instead of checking window-width.
15423
576bce32
EZ
154242011-03-19 Eli Zaretskii <eliz@gnu.org>
15425
4d61f28d 15426 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
15427 windows-nt systems.
15428 (emerge-protect-metachars): Quote correctly for ms-dos and
15429 windows-nt systems.
15430
89c41d68 154312011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
15432
15433 * info.el (info-initialize): Replace all uses of `:' with
15434 path-separator for compatibility with non-Unix systems.
15435 Cache quoting of path-separator. (Bug#8258)
15436
b14e3e21 154372011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
15438
15439 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
15440 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
15441 (mouse-avoidance-mode): Fix typos in docstrings.
15442
4525ce3e
CY
154432011-03-19 Chong Yidong <cyd@stupidchicken.com>
15444
15445 * startup.el (package-subdirectory-regexp): Move from package.el.
15446 Omit \\` and \\', and let callers add them.
15447
15448 * emacs-lisp/package.el (package-strip-version)
15449 (package-load-all-descriptors): Add \\` and \\' to
15450 package-subdirectory-regexp before using it.
15451 (package-untar-buffer): New arg DIR; ensure that file untars only
15452 into this expected directory. Remove superfluous delete-region.
15453 (package-unpack): Caller changed.
15454 (package-tar-file-info): Use package-subdirectory-regexp.
15455
a904a09a 154562011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 15457
a904a09a
SM
15458 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
15459 diff-mode-shared-map (bug#8284).
15460 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
15461
154622011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15463
15464 * calendar/time-date.el (format-seconds): Use assoc instead of
15465 assoc-string, since assoc-string doesn't exist in XEmacs.
15466
171fc304
JB
154672011-03-17 Juanma Barranquero <lekktu@gmail.com>
15468
15469 * custom.el (custom-known-themes): Reflow docstring.
15470 (custom-theme-load-path): Fix typo in docstring.
15471 (load-theme): Fix typo in error message.
15472 (custom-available-themes, custom-variable-theme-value):
15473 Use `let', not `let*'.
15474
d71990a1
JB
154752011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
15476
15477 * calc/README: Mention inclusion of musical notes.
15478
15479 * calc/calc-units.el (calc-lu-quant): Rename from
15480 `calc-logunits-quantity'.
15481 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
15482 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
15483 (calc-db): Rename from `calc-dblevel'.
15484 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
15485 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
15486 (calc-np): Rename from `calc-nplevel'.
15487 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
15488 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
15489 (calc-lu-plus): Rename from `calc-logunits-add'.
15490 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
15491 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
15492 (calc-lu-minus): Rename from `calc-logunits-sub'.
15493 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
15494 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
15495 (calc-lu-times): Rename from `calc-logunits-mul'.
15496 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
15497 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
15498 (calc-lu-divide): Rename from `calc-logunits-div'.
15499 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
15500 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
15501
15502 * calc/calc-ext.el (calc-init-extensions): Update the names of the
15503 functions being autoloaded.
15504
15505 * calc/calc.el (calc-lu-power-reference): Rename from
15506 `calc-logunits-power-reference'.
15507 (calc-lu-field-reference): Rename from
15508 `calc-logunits-field-reference'.
15509
7a71b18d
GM
15510 * calc/calc-help.el (calc-l-prefix-help):
15511 Mention musical note functions.
d71990a1 15512
40c2934b
SM
155132011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
15514
15515 * minibuffer.el (completion-all-sorted-completions):
15516 Use :completion-cycle-penalty text property if present.
15517
b0911414
KM
155182011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
15519
15520 * allout.el (allout-yank-processing): Adjust for new rebulleting
15521 regime so bullet being yanked is used without prompting the user
15522 for a choice.
15523
8a05b668
JB
155242011-03-16 Juanma Barranquero <lekktu@gmail.com>
15525
15526 * startup.el (command-line): Warn the user that _emacs is deprecated.
15527
5ba5fb81
JB
155282011-03-16 Juanma Barranquero <lekktu@gmail.com>
15529
15530 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
15531 (delphi-verbose, delphi-comment-face, delphi-string-face)
15532 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
15533 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
15534 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
15535 (delphi-new-comment-line, delphi-font-lock-defaults)
15536 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
15537 Fix typos in docstrings.
15538
2dab465b
KM
155392011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
15540
5ba5fb81 15541 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
15542 Invert the roles of character and string values for INSTEAD, so a
15543 string is used for the more common case of a defaulting prompt.
15544
0adf5618
SM
155452011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15546
15547 * progmodes/ruby-mode.el (ruby-backward-sexp):
15548 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
15549 * play/gamegrid.el (gamegrid-make-face):
15550 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
15551 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
15552 * notifications.el (notifications-notify):
15553 * net/xesam.el (xesam-search-engines):
15554 * net/quickurl.el (quickurl-list-insert):
15555 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
15556
d72700e5
CY
155572011-03-15 Chong Yidong <cyd@stupidchicken.com>
15558
15559 * startup.el (command-line): Update package subdirectory regexp.
15560
49c5410a
SM
155612011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15562
c6eee9aa
SM
15563 * allout.el (allout-abbreviate-flattened-numbering)
15564 (allout-mode-deactivate-hook): Fix up obsolescence "date".
15565
49c5410a
SM
15566 * subr.el (read-char-choice): Only show the cursor after the prompt,
15567 not after the answer.
15568
047b2bb9
KR
155692011-03-15 Kevin Ryde <user42@zip.com.au>
15570
15571 * help-fns.el (variable-at-point): Skip leading quotes, if any
15572 (bug#8253).
15573
0a57d256
SM
155742011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15575
15576 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
15577 warning message.
15578
77c992bc
MA
155792011-03-14 Michael Albinus <michael.albinus@gmx.de>
15580
15581 * shell.el (shell): When called interactively, offer to change the
15582 shell file name on remote hosts.
15583
eebc475d
TZ
155842011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
15585
15586 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
15587 integration for LDAP parameters. The host, base, user or binddn,
15588 and secret tokens can be specified in a netrc file, for instance.
15589 This is optional because an `auth-source' parameter must be
15590 specified in the search attributes.
15591
9d05d1ba
JB
155922011-03-13 Juanma Barranquero <lekktu@gmail.com>
15593
15594 * help.el (describe-mode): Link to the mode's definition (bug#8185).
15595
09d9db2c
GM
155962011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15597
15598 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
15599 into declaration. Remove redundant and harmful binding.
15600
156012011-03-12 Eli Zaretskii <eliz@gnu.org>
15602
15603 * files.el (file-ownership-preserved-p): Pass `integer' as an
15604 explicit 2nd argument to `file-attributes'. If the file's owner
15605 is the Administrators group on Windows, and the current user is
15606 Administrator, consider that a match.
15607
15608 * server.el (server-ensure-safe-dir): Consider server directory
15609 safe on MS-Windows if its owner is the Administrators group while
15610 the current Emacs user is Administrator. Use `=' to compare
15611 numerical UIDs, since they could be integers or floats.
15612
219bd536
JB
156132011-03-12 Juanma Barranquero <lekktu@gmail.com>
15614
15615 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
15616
f3afd36b
MA
156172011-03-12 Michael Albinus <michael.albinus@gmx.de>
15618
15619 Sync with Tramp 2.2.1.
15620
15621 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
15622
15623 * net/trampver.el: Update release number.
15624
3aaaa6f1
SM
156252011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15626
94642599
SM
15627 * progmodes/compile.el (compilation--previous-directory): Fix up
15628 various nil/dead-marker mismatches (bug#8014).
15629 (compilation-directory-properties, compilation-error-properties):
15630 Don't call it at a position past the one we're about to change.
15631
3aaaa6f1
SM
15632 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
15633 Disable obsolescence warnings in the file that declares it.
15634
14239447
KM
156352011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
15636
099c39a4
JB
15637 * allout-widgets.el (allout-widgets-tally):
15638 Initialize allout-widgets-tally as a hash table rather than nil to
15639 prevent mode-line redisplay warnings. Also, clarify the module
15640 description and fix a comment typo.
14239447 15641
135e287c
JB
156422011-03-11 Juanma Barranquero <lekktu@gmail.com>
15643
15644 * help-fns.el (describe-variable): Don't complete keywords.
15645 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
15646
ffbf300e
CY
156472011-03-10 Chong Yidong <cyd@stupidchicken.com>
15648
ba08b241
CY
15649 * emacs-lisp/package.el (package-version-join): Impose a standard
15650 string representation for pre/alpha/beta version lists.
15651 (package-unpack-single): Standardize the directory name by passing
15652 it through package-version-join.
15653 (package-strip-rcs-id): Accept any version string that does not
15654 signal an error in version-to-list.
ffbf300e 15655
f346fd6b
MA
156562011-03-10 Michael Albinus <michael.albinus@gmx.de>
15657
15658 * simple.el (delete-trailing-whitespace): Return nil for the
15659 benefit of `write-file-functions'.
15660
ccb55d27
GM
156612011-03-10 Glenn Morris <rgm@gnu.org>
15662
5ceaac0c
GM
15663 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
15664
02da65ff
GM
15665 * vc/vc-git.el (vc-git-program): New option.
15666 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
15667 (vc-git--call): Use it.
15668
b2f603cc
GM
15669 * eshell/esh-util.el (eshell-condition-case): Doc fix.
15670
5772caab
GM
15671 * cus-edit.el (Custom-newline): If no button at point, look
15672 for a subgroup button at start-of-line. (Bug#2298)
15673
ccb55d27
GM
15674 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
15675
ec6ecaed
JD
156762011-03-10 Julien Danjou <julien@danjou.info>
15677
15678 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
15679 `cursor-type' is nil.
15680
9d5aa01d
JB
156812011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
15682
15683 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
15684
b6a5875b
KM
156852011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
15686
7a71b18d 15687 * allout.el: Change so yank of distinctive-bullet items
b6a5875b
KM
15688 preserves the existing header prefix, rebulleting it if necessary,
15689 rather than replacing it. This is necessary for proper operation
15690 of cooperative addons like allout-widgets.
1154d12e
JB
15691 (allout-make-topic-prefix, allout-rebullet-heading):
15692 Change SOLICIT arg to INSTEAD, and interpret additionally a string
15693 value as alternate bullet to be used, instead of prompting the user
15694 for a bullet character.
b6a5875b 15695
ee545c35
MA
156962011-03-09 Michael Albinus <michael.albinus@gmx.de>
15697
d86d2721
SM
15698 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15699 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
15700 `tramp-default-port'.
15701
c47971d7
DD
157022011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
15703
15704 * net/rcirc.el (rcirc-handler-001): Remove useless
15705 with-rcirc-process-buffer.
15706 (rcirc-check-auth-status): Swap arguments to string-match.
15707
13522cb4
GM
157082011-03-09 Glenn Morris <rgm@gnu.org>
15709
0be6f4f1
GM
15710 * shell.el (shell-mode):
15711 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
15712
13522cb4
GM
15713 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
15714 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
15715
515de2e3
CY
157162011-03-08 Chong Yidong <cyd@stupidchicken.com>
15717
15718 * emacs-lisp/package.el (package-refresh-contents)
15719 (package-menu-execute): Use condition-case-no-debug.
15720
b511b994
MA
157212011-03-08 Michael Albinus <michael.albinus@gmx.de>
15722
15723 * simple.el (shell-command-to-string): Use `process-file'.
15724
15725 * emacs-lisp/package.el (package-tar-file-info): Handle also
15726 remote files.
15727
d86d2721
SM
15728 * emacs-lisp/package-x.el (package-upload-buffer-internal):
15729 Use `equal' for upload base check.
b511b994 15730
25bbfb31
AM
157312011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
15732
15733 * textmodes/texinfo.el (texinfo-environments):
15734 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
15735
be996521
GM
157362011-03-08 Glenn Morris <rgm@gnu.org>
15737
e9c8529f
GM
15738 * cus-start.el (cursor-in-non-selected-windows):
15739 Fix :set quoting oddness. (Bug#8192)
15740
be996521
GM
15741 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
15742 in some setf expressions. (Bug#2159)
15743
2bb5649e
CY
157442011-03-08 Chong Yidong <cyd@stupidchicken.com>
15745
15746 * custom.el (custom-available-themes): Return themes in
15747 alphabetical order.
15748
33383987 15749See ChangeLog.15 for earlier changes.
e3d51b27
MR
15750
15751;; Local Variables:
15752;; coding: utf-8
e3d51b27
MR
15753;; End:
15754
acaf905b 15755 Copyright (C) 2011-2012 Free Software Foundation, Inc.
e3d51b27
MR
15756
15757 This file is part of GNU Emacs.
15758
15759 GNU Emacs is free software: you can redistribute it and/or modify
15760 it under the terms of the GNU General Public License as published by
15761 the Free Software Foundation, either version 3 of the License, or
15762 (at your option) any later version.
15763
15764 GNU Emacs is distributed in the hope that it will be useful,
15765 but WITHOUT ANY WARRANTY; without even the implied warranty of
15766 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15767 GNU General Public License for more details.
15768
15769 You should have received a copy of the GNU General Public License
15770 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.