Merge from gnulib (comment-only change).
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
772b2e2c
CY
12012-06-24 Chong Yidong <cyd@gnu.org>
2
3 * xml.el (xml-parse-tag): Correctly handle comment embedded in
4 non-tag text.
5
711b11e1
JB
62012-06-23 Juanma Barranquero <lekktu@gmail.com>
7
8 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
9
dc5d230c
SM
102012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
11
12 * help-fns.el (describe-variable): Don't croak when doc is not found.
13 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
14 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
15 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
16 * emacs-lisp/smie.el (smie-next-sexp): CSE.
17 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
18 ((lambda ..) ..).
19 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
20
136e1c1d
CY
212012-06-23 Chong Yidong <cyd@gnu.org>
22
e8c1cabf
CY
23 * info.el (Info-mouse-follow-link): Accept symbol values of
24 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
136e1c1d
CY
25 (Info-fontify-node): Use Info-link-keymap for all navigation
26 buttons, with link-args property to perform the desired action.
27 (Info-link-keymap): Doc fix.
28 (Info-next-link-keymap, Info-prev-link-keymap)
29 (Info-up-link-keymap): Delete now-unused keymaps.
30
0e9e6c6a
CY
312012-06-23 Chong Yidong <cyd@gnu.org>
32
05e89fea
CY
33 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
34
0e9e6c6a
CY
35 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
36 system abbrevs.
37
38 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
39
e33c6771
SM
402012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
41
b68581e2
SM
42 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
43 (bug#11719).
44
e33c6771
SM
45 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
46 the requote function doesn't work properly (bug#11714).
47
7117e105
GM
482012-06-23 Glenn Morris <rgm@gnu.org>
49
50 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
51
36cec983
SM
522012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
53
54 Further GV/CL cleanups.
55 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
56 gv-expander.
57 (gv--defun-declaration): New function.
58 (defun-declarations-alist): Use it.
59 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
60 (gv-place): Autoload.
61 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
62 original definition of dotimes and dolist.
63 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
64 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
65 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
66 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
67 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
68 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
69 to the function's definition.
70 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
71 * window.el:
72 * files.el:
73 * faces.el:
74 * env.el: Don't use CL.
75
d35af63c
PE
762012-06-22 Paul Eggert <eggert@cs.ucla.edu>
77
78 Support higher-resolution time stamps (Bug#9000).
79
80 * calendar/time-date.el (with-decoded-time-value): New arg
81 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
82 (encode-time-value): New optional arg PICO. New type 3.
83 (time-to-seconds) [!float-time]: Support the new picoseconds
84 component if it's used.
85 (seconds-to-time, time-subtract, time-add):
86 Support ps-resolution time stamps as well.
87
88 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
89 (timerp): Timer vectors now have length 9, not 8.
90 (timer--time): Support new-style (4-part) time stamps.
91 (timer-next-integral-multiple-of-time): Time stamps now have
92 picosecond resolution, so take a bit more care about rounding.
93 (timer-relative-time, timer-inc-time): New optional arg psecs.
94 (timer-set-time-with-usecs): Set psecs to 0.
95 (timer--activate): Check psecs component, too.
96
97 * proced.el (proced-time-lessp): Support ps-resolution stamps.
98
ac77b21a
SM
992012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
100
f143bfe3
SM
101 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
102 Move the non-essential binding to the post/pre-command-hook where it is
103 more obviously correct.
104
ac77b21a
SM
105 * subr.el (read-passwd): Don't use a history at all.
106 * savehist.el (savehist-save): Remove password saved accidentally
107 because of the above bug.
108
76386c5a
BG
1092012-06-22 Bastien Guerry <bzg@gnu.org>
110
111 * files.el (toggle-read-only): Display a message telling whether
112 the buffer is read-only or not (bug#11726).
113
2ee3d7f0
SM
1142012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
115
116 * emacs-lisp/gv.el: New file.
117 * subr.el (push, pop): Extend to generalized variables.
118 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
119 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
120 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
121 gv-define-simple-setter, and gv-define-expander.
122 Remove setf-methods defined in gv. Rename cl-setf -> setf.
123 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
124 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
125 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
126 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
127 gv-letplace.
128 (cl-defstruct): Don't define setf-method any more.
129 * emacs-lisp/cl.el (flet): Don't autoload.
130 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
131 (define-setf-expander, defsetf, define-modify-macro)
132 (cl-struct-setf-expander): Move from cl-lib.el.
133 * emacs-lisp/syntax.el:
134 * emacs-lisp/ewoc.el:
135 * emacs-lisp/smie.el:
136 * emacs-lisp/cconv.el:
137 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
138 (timer--time): Use gv-define-simple-setter.
139 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
140 to avoid coding-system problems in subr.el. Adjust all users.
141 (macroexp--maxsize, macroexp-small-p): New functions.
142 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
143 * scroll-bar.el (scroll-bar-mode):
144 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
145 (normal-erase-is-backspace-mode): Don't use the `eq' place.
146 * winner.el (winner-configuration, winner-make-point-alist)
147 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
148 * files.el (locate-file-completion-table): Avoid list*.
149
c5695d1d
CY
1502012-06-22 Chong Yidong <cyd@gnu.org>
151
152 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
153 (dired-create-files): Doc fix (Bug#11329).
154 (dired-do-copy): Doc fix (Bug#11334).
155 (dired-mark-read-string): Doc fix (Bug#11553).
156
2ee3d7f0
SM
157 * dired.el (dired-recursive-copies, dired-recursive-deletes):
158 Doc fix (Bug#11326).
c5695d1d
CY
159 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
160 (dired-dwim-target): Doc fix.
161
162 * wdired.el (wdired-mode): Doc fix.
163
89b5595a
GM
1642012-06-22 Glenn Morris <rgm@gnu.org>
165
575db3f1
GM
166 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
167 (pcmpl-rpm-cache-stamp-file): New constant.
168 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
169 (pcmpl-rpm-packages): Optionally cache list of packages.
170
a4c8dd51
GM
171 * pcmpl-rpm.el (pcmpl-rpm): New group.
172 (pcmpl-rpm-query-options): New option.
173 (pcmpl-rpm-packages): No need to inline it.
174 Use pcmpl-rpm-query-options.
175
89b5595a
GM
176 * calendar/calendar.el (calendar-in-read-only-buffer):
177 Avoid some needless mode changes.
178
e76f0800
CY
1792012-06-21 Chong Yidong <cyd@gnu.org>
180
181 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
182 (desktop-path): Remove . from the default value (Bug#10977).
6b67c0d4 183 (desktop-read): Use user-emacs-directory if desktop-path is nil.
e76f0800 184
297a8f1d
CY
1852012-06-20 Chong Yidong <cyd@gnu.org>
186
187 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
188
d34c18b1
DR
1892012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
190
191 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
192 (bug#11201).
193
32f7f28e
CY
1942012-06-20 Chong Yidong <cyd@gnu.org>
195
196 * term.el (term-window-width): Handle the case of a missing right
197 fringe (Bug#8837).
198 (term-check-size): Use window-text-height (Bug#5445).
d34c18b1
DR
199 (term-mode): Use define-derived-mode. Minor cleanups.
200 Set font-lock-defaults (Bug#7692).
6ff7caa8
CY
201 (term-move-columns, term-insert-char, term-emulate-terminal)
202 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
32f7f28e 203
493c6688
MA
2042012-06-20 Michael Albinus <michael.albinus@gmx.de>
205
d34c18b1
DR
206 * net/ange-ftp.el (ange-ftp-get-passwd):
207 Bind `enable-recursive-minibuffers'.
493c6688
MA
208 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
209
3f06ecf4
DR
2102012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
211
212 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
213
68f12411
GM
2142012-06-19 Glenn Morris <rgm@gnu.org>
215
216 * progmodes/python.el (python-mode): Derive from prog-mode.
217
b3820318
KG
2182012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
219
220 * emulation/edt.el (edt-default-menu-bar-update-buffers)
221 (edt-user-menu-bar-update-buffers): New functions.
222 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
223
c6bf3022
CY
2242012-06-19 Chong Yidong <cyd@gnu.org>
225
226 * subr.el (with-selected-window): Preserve the selected window's
227 terminal's top-frame (Bug#4702).
228
229 * window.el (save-selected-window): Likewise.
230
25f09295
SM
2312012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
232
233 * progmodes/python.el (python-rx-constituents): Move backquote.
234 (python-skeleton-define, python-define-auxiliary-skeleton):
235 Use `declare'.
236
6b11952a
MA
2372012-06-18 Michael Albinus <michael.albinus@gmx.de>
238
239 * minibuffer.el (read-file-name-default): Revert the patch from
240 2012-06-17.
241
ee4b1330
SM
2422012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
243
244 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
245 (pcase--u1, pcase--q1): Don't use apply-partially.
246
35647f79
GM
2472012-06-18 Glenn Morris <rgm@gnu.org>
248
249 * progmodes/python.el (python-proc, python-buffer)
250 (python-send-receive, python-send-string): Fix obsolete versions.
251
24b0cff0
MR
2522012-06-18 Martin Rudalics <rudalics@gmx.at>
253
254 * window.el (special-display-p): Completely remove stringp
255 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
256
29855149
MA
2572012-06-17 Michael Albinus <michael.albinus@gmx.de>
258
259 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
260
261 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
262
263 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
264 * net/tramp-sh.el (tramp-maybe-open-connection):
265 Throw if `non-essential' is non-nil.
266
07463363
MR
2672012-06-17 Martin Rudalics <rudalics@gmx.at>
268
269 * window.el (special-display-p): Signal an error if BUFFER-NAME
270 is not a string (Bug#11713).
271
48d1354e
PE
2722012-06-17 Paul Eggert <eggert@cs.ucla.edu>
273
274 * progmodes/python.el (python-info-beginning-of-backslash):
275 Rename from python-info-beginning-of-backlash, as a spelling fix.
276
eb4a8a9a
CY
2772012-06-17 Chong Yidong <cyd@gnu.org>
278
279 * term.el (term-emulate-terminal): If term-check-size is called,
280 move point to the process mark without resetting point (Bug#4635).
281
ddfbf826 2822012-06-17 Glenn Morris <rgm@gnu.org>
9c758578
GM
283
284 * international/mule-cmds.el (mule-menu-keymap)
285 (set-language-environment, set-locale-environment): Doc tweaks.
286
9b0e3eba
AA
2872012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
288
289 * cus-face.el (custom-face-attributes): Add wave-style underline
290 attribute.
291 * faces.el (set-face-attribute): Update docstring to describe
292 wave-style underline attribute.
293
771e3eae
CY
2942012-06-16 Chong Yidong <cyd@gnu.org>
295
296 * term/xterm.el (terminal-init-xterm): Discard input before
297 querying background mode (Bug#10959).
298
7ae2ea10
SM
2992012-06-16 Stefan Merten <smerten@oekonux.de>
300
301 * textmodes/rst.el: Added and corrected some comments.
302 (rst-re-alist-def): Improve symbol syntax.
303 (rst-mode-syntax-table): Correct syntax entries.
6665a6fd
SM
304 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
305 (rst-official-version, rst-official-cvs-rev): Update version
306 information.
7ae2ea10 307
b6974efa
JB
3082012-06-15 Juanma Barranquero <lekktu@gmail.com>
309
310 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
311 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
312
8826d473
GM
3132012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
314
315 * progmodes/python.el: New python.el merge.
316 (python-guess-indent): Obsolete var.
317 (python-indent-guess-indent-offset): New defcustom.
318 (python-indent): Obsolete var.
319 (python-indent-offset): New defcustom.
320 (python-python-command, python-jython-command): Delete var.
321 (python-shell-interpreter): New defcustom.
322 (python-pdbtrack-do-tracking-p): Delete var.
323 (python-pdbtrack-activate): New defcustom.
324 (python-use-skeletons): Obsolete var.
325 (python-skeleton-autoinsert): New defcustom.
326 (inferior-python-filter-regexp, python-continuation-offset)
327 (python-honour-comment-indentation, python-indent-string-contents)
328 (python-jython-packages, python-mode-hook)
329 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
330 (python-shell-prompt-alist)
331 (python-source-modes): Delete defcustoms.
332 (python-check-buffer-name, python-eldoc-setup-code)
333 (python-eldoc-string-code, python-ffap-setup-code)
334 (python-ffap-string-code, python-fill-comment-function)
335 (python-fill-decorator-function, python-fill-paren-function)
336 (python-fill-string-function, python-imenu-include-defun-type)
337 (python-imenu-make-tree, python-imenu-subtree-root-label)
338 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
339 (python-shell-compilation-regexp-alist)
340 (python-shell-completion-module-string-code)
341 (python-shell-completion-pdb-string-code)
342 (python-shell-completion-setup-code)
343 (python-shell-completion-string-code)
344 (python-shell-enable-font-lock, python-shell-exec-path)
345 (python-shell-extra-pythonpaths)
346 (python-shell-internal-buffer-name, python-shell-interpreter-args)
347 (python-shell-process-environment)
348 (python-shell-prompt-block-regexp)
349 (python-shell-prompt-output-regexp)
350 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
351 (python-shell-send-setup-max-wait, python-shell-setup-codes)
352 (python-shell-virtualenv-path): New defcustoms.
353 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
354 (inferior-python-mode-syntax-table, python--prompt-regexp)
355 (python-buffer, python-command python-python-command)
356 (python-default-template, python-imports, python-indent-index)
357 (python-indent-list, python-indent-list-length)
358 (python-mode-running, python-pdbtrack-is-tracking-p)
359 (python-preoutput-continuation, python-preoutput-leftover)
360 (python-preoutput-result, python-preoutput-skip-next-prompt)
361 (python-prev-dir/file, python-recursing)
362 (python-saved-check-command, python-version-checked)
363 (python-which-func-length-limit)
364 (view-return-to-alist): Delete vars.
365 (python-check-custom-command, python-dotty-syntax-table)
366 (python-imenu-index-alist, python-indent-current-level)
367 (python-indent-dedenters, python-indent-levels)
368 (python-nav-beginning-of-defun-regexp)
369 (python-nav-list-defun-positions-cache)
370 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
371 (python-shell-internal-buffer)
372 (python-skeleton-available): New vars.
373 (def-python-skeleton): Delete macro.
374 (python-skeleton-define): New macro.
375 (python-define-auxiliary-skeleton, python-rx): New macros.
376 (python-insert-class): Delete command.
377 (python-skeleton-class): New command.
378 (python-insert-def): Delete command.
379 (python-skeleton-def): New command.
380 (python-insert-for): Delete command.
381 (python-skeleton-for): New command.
382 (python-insert-if): Delete command.
383 (python-skeleton-if): New command.
384 (python-insert-try/except, python-insert-try/finally): Delete commands.
385 (python-skeleton-try): New command.
386 (python-insert-while): Delete command.
387 (python-skeleton-while): New command.
388 (python-backspace): Delete command.
389 (python-indent-dedent-line-backspace): New command.
390 (python-electric-colon): Delete command.
391 (python-indent-electric-colon): New command.
392 (python-guess-indent): Delete command.
393 (python-indent-guess-indent-offset): New command.
394 (python-shift-left): Delete command.
395 (python-indent-shift-left): New command.
396 (python-shift-right): Delete command.
397 (python-indent-shift-right): New command.
398 (python-find-function): Delete command.
399 (python-nav-jump-to-defun): New command.
400 (python-next-statement): Delete command.
401 (python-nav-forward-sentence): New command.
402 (python-previous-statement): Delete command.
403 (python-nav-backward-sentence): New command.
404 (python-fill-paragraph): Delete command.
405 (python-fill-paragraph-function): New command.
406 (python-send-buffer): Delete command.
407 (python-shell-send-buffer): New command.
408 (python-send-defun): Delete command.
409 (python-shell-send-defun): New command.
410 (python-send-region, python-send-region-and-go): Delete commands.
411 (python-shell-send-region)
412 (python-shell-switch-to-shell): New commands.
413 (python-send-string): Delete command.
414 (python-shell-send-string): New command.
415 (python-switch-to-python): Delete command.
416 (python-shell-switch-to-shell): New command.
417 (python-describe-symbol): Delete command.
418 (python-eldoc-at-point): New command.
419 (python--set-prompt-regexp, python-args-to-list)
420 (python-after-info-look, python-check-version)
421 (python-check-comint-prompt, python-find-imports)
422 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
423 (python-unload-function, python-expand-template)
424 (python-maybe-jython, python-preoutput-filter)
425 (python-pdbtrack-get-source-buffer)
426 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
427 (python-pdbtrack-toggle-stack-tracking)
428 (python-pdbtrack-track-stack-file, python-initial-text)
429 (python-first-word, python-comment-line-p, python-send-command)
430 (python-setup-brm, python-sentinel, python-set-proc)
431 (python-skip-out, python-input-filter, python-outdent-p)
432 (python-outline-level, python-backslash-continuation-line-p)
433 (python-end-of-block, python-end-of-statement, python-mark-block)
434 (python-beginning-of-block, python-beginning-of-statement)
435 (python-blank-line-p, python-beginning-of-string)
436 (python-open-block-statement-p): Delete functions.
437 (python-indent-line, python-indent-line-1): Delete functions.
438 (python-indent-line): New function.
439 (python-indentation-levels): Delete function.
440 (python-indent-calculate-levels): New function.
441 (python-proc): Delete function.
442 (python-shell-get-process): New function.
443 (python-send-receive): Delete function.
444 (python-shell-send-string-no-output): New function.
445 (python-module-path): Delete function.
446 (python-ffap-module-path): New function.
447 (python-completion-at-point)
448 (python-symbol-completions): Delete functions.
449 (python-completion-complete-at-point): New function.
450 (python-load-file): Delete function.
451 (python-shell-send-file): New function.
452 (python-calculate-indentation): Delete function.
453 (python-indent-calculate-indentation): New function.
454 (python-skip-comments/blanks): Delete function.
455 (python-util-forward-comment): New function.
456 (python-continuation-line-p): Delete function.
457 (python-info-continuation-line-p): New function.
458 (python-which-func, python-current-defun): Delete function.
459 (python-info-current-defun): New function.
460 (python-beginning-of-defun): Delete function.
461 (python-nav-beginning-of-defun): New function.
462 (python-close-block-statement-p)
463 (python-block-end-p): Delete function.
464 (python-info-closing-block): New function.
465 (python-comint-output-filter-function)
466 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
467 (python-fill-comment, python-fill-decorator, python-fill-paren)
468 (python-fill-string, python-imenu-make-element-tree)
469 (python-imenu-make-tree, python-imenu-tree-assoc)
470 (python-indent-context, python-indent-dedent-line)
471 (python-indent-line-function)
472 (python-indent-post-self-insert-function)
473 (python-indent-toggle-levels)
474 (python-info-assignment-continuation-line-p)
475 (python-info-beginning-of-backlash)
476 (python-info-block-continuation-line-p)
477 (python-info-closing-block-message)
478 (python-info-line-ends-backslash-p)
479 (python-info-looking-at-beginning-of-defun)
480 (python-info-ppss-context, python-info-ppss-context-type)
481 (python-nav-list-defun-positions, python-nav-read-defun)
482 (python-nav-sentence-end, python-nav-sentence-start)
483 (python-pdbtrack-comint-output-filter-function)
484 (python-pdbtrack-set-tracked-buffer)
485 (python-shell-calculate-exec-path)
486 (python-shell-calculate-process-environment)
487 (python-shell-completion--do-completion-at-point)
488 (python-shell-completion--get-completions)
489 (python-shell-completion-complete-at-point)
490 (python-shell-completion-complete-or-indent)
491 (python-shell-get-or-create-process)
492 (python-shell-get-process-name)
493 (python-shell-internal-get-or-create-process)
494 (python-shell-internal-get-process-name)
495 (python-shell-internal-send-string, python-shell-make-comint)
496 (python-shell-parse-command, python-shell-send-setup-code)
497 (python-skeleton-add-menu-items)
498 (python-util-clone-local-variables, python-util-position)
499 (run-python-internal, python-indentation-levels)
500 (python-nav-beginning-of-defun)
501 (python-completion-complete-at-point): New functions.
502 (run-python): Change arguments. New API requirements.
503
4302f5ba
SM
5042012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
505
f38ea36d
SM
506 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
507 (bug#11649).
508
509 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
510 (macroexp--expand-all): Use it.
511
4302f5ba
SM
512 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
513 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
514 Use `cl-function' instead.
515
33377562
JB
5162012-06-14 Juanma Barranquero <lekktu@gmail.com>
517
518 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
519 Suggested by Stefan Monnier while discussing bug#11657.
520
54c5ba1a
SS
5212012-06-14 Sam Steingold <sds@gnu.org>
522
523 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
524
f9f1b1fe
AS
5252012-06-14 Andreas Schwab <schwab@linux-m68k.org>
526
527 * play/doctor.el (doctor-doc): Remove parameter and use
528 doctor-sent instead of sent.
529 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
530
a81068ba
SM
5312012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
532
5a315f9c
SM
533 * files.el: Require cl-lib.
534 (file-name-non-special): Replace case -> cl-case.
535
536 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
537
a81068ba
SM
538 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
539 mapping from #' to function*.
540
8cca9703
CY
5412012-06-13 Chong Yidong <cyd@gnu.org>
542
543 * mouse.el (mouse-drag-track): Do not set the mark if the user
544 releases the mouse without selecting anything (Bug#11588).
545
a12ac9d7
SM
5462012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
547
ccf1dc18
SM
548 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
549 as well (bug#11646).
550
ef62b23d
SM
551 * loadup.el: Count byte-code functions as well.
552
c4c8444a
SM
553 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
554 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
555
a12ac9d7
SM
556 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
557 (bug#11649). Add cl-defun and cl-defmacro.
558
87e6e64f
DA
5592012-06-13 Drew Adams <drew.adams@oracle.com>
560
561 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
562 Fix last change.
563
682cefaf
MA
5642012-06-13 Michael Albinus <michael.albinus@gmx.de>
565
566 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
567 Otherwise, it blocks in batch mode.
568
773e1f08
JB
5692012-06-13 Juanma Barranquero <lekktu@gmail.com>
570
571 * help-mode.el (bookmark-make-record-default): Declare.
572
60057926
CY
5732012-06-13 Chong Yidong <cyd@gnu.org>
574
575 * emacs-lisp/package.el (list-packages): Compute a list of
576 packages that are newly-available since the last list-packages
577 invocation.
578 (package-menu--new-package-list): New var.
579 (package-menu--generate, package-menu--print-info)
580 (package-menu--status-predicate, package-menu-mark-install):
581 Handle new status label "new".
582
ad4d226c
SM
5832012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
584
585 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
586 conversion to backquotes.
587
f1a4e679
CY
5882012-06-12 Chong Yidong <cyd@gnu.org>
589
590 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
591 Rename from gud-inhibit-global-bindings.
592
593 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
594
595 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
596 hook from nxml-glyph-set-hook.
597
598 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
599 declaration.
600
601 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
602
603 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
604 Convert to defcustom.
605
0c9e42b5
DA
6062012-06-12 Drew Adams <drew.adams@oracle.com>
607
608 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
609 New functions.
610 (help-mode): Use them.
611
09e06855
GM
6122012-06-11 Glenn Morris <rgm@gnu.org>
613
614 * progmodes/fortran.el (fortran-font-lock-keywords-3):
615 Use preprocessor face for directives.
616 (fortran-directive-re): Doc fix.
617
71adb94b
SM
6182012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
619
2eb87922
SM
620 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
621 conversion to backquotes (bug#11652).
622
71adb94b
SM
623 Fix compiler-expansion of CL's cXXr functions (bug#11673).
624 * emacs-lisp/cl-lib.el (cl--defalias): New function.
625 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
626 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
627 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
628 (cl-ninth, cl-tenth): Mark them as inlinable.
629 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
630 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
631 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
632 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
633 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
634 (cl-list*, cl-adjoin): Don't put an autoload manually.
635 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
636 (cl--compiler-macro-list*): Add autoload cookie.
637 (cl--compiler-macro-cXXr): New function.
2eb87922 638
71adb94b
SM
639 * help-fns.el (help-fns--compiler-macro): New function extracted from
640 describe-function-1; follow aliases and use `compiler-macro' property.
641 (describe-function-1): Use it.
642
a6674402
CY
6432012-06-11 Chong Yidong <cyd@gnu.org>
644
645 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
646 is uninstalled, if imagemagick is installed.
647
bb3faf5b
SM
6482012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
649
650 * emacs-lisp/cl-lib.el: Use lexical-binding.
651 (cl-map-extents, cl-maclisp-member): Remove.
652 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
653 (cl--set-substring, cl--block-wrapper, cl--block-throw)
654 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
655 * emacs-lisp/cl-extra.el: Use lexical-binding.
656 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
657 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
658 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
659 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
660 * emacs-lisp/cl-seq.el: Use lexical-binding.
661 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
662 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
663 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
664 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
665 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
666 CL's internals.
667
2fe4b125
MA
6682012-06-11 Michael Albinus <michael.albinus@gmx.de>
669
670 Sync with Tramp 2.2.6-pre.
671
672 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
673 `print-length' and `print-level' to nil, in order to avoid
674 truncation. Reported by Christopher Schmidt
675 <christopher@ristopher.com>.
676
677 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
678
679 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
680 New defmacro.
681 (tramp-compat-copy-directory): Add optional argument
682 COPY-CONTENTS. It is not handled yet.
683
684 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
685 (tramp-ftp-file-name-p): Simplify.
686
687 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
688 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
689 connection vector.
690
691 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
692 (tramp-methods): Do not use `tramp-password-end-of-line'.
693 (tramp-completion-function-alist-putty): Handle UNIX case.
694 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
695 (tramp-do-file-attributes-with-stat)
696 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
697 gid as real numbers. They could run out of integer range on cygwin.
698 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
699 (tramp-sh-handle-expand-file-name): Handle hops.
87e6e64f
DA
700 (tramp-open-connection-setup-interactive-shell):
701 Use `tramp-cleanup'. Move check for busyboxes ...
702 (tramp-find-shell): ... here. Simplify implementation.
703 Set "remote-shell" property also for alternative shells.
704 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
705 If failing, a regular file would be written otherwise.
706 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
2fe4b125
MA
707 (tramp-find-inline-encoding): Cache the coding commands in the
708 process cache. Apply test command on the remote side, if defined.
709 (tramp-find-inline-compress): Cache the compress commands in the
710 process cache.
711 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
712 when requested. Handle hops.
713 (tramp-current-connection): New defvar.
87e6e64f
DA
714 (tramp-maybe-open-connection): Use `tramp-cleanup'.
715 Throw `suppress', if there was a failed connection shortly before.
2fe4b125 716 Handle user interrupt. (Bug#10187)
87e6e64f
DA
717 (tramp-get-inline-compress, tramp-get-inline-coding):
718 Read connection properties from the process cache.
2fe4b125
MA
719
720 * net/tramp-smb.el (tramp-smb-server-version)
87e6e64f
DA
721 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
722 New defconsts.
2fe4b125
MA
723 (tramp-smb-prompt): Extend for powershell prompt.
724 (tramp-smb-file-name-handler-alist): Add handlers for
725 `process-file', `shell-command' and `start-file-process'.
726 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
727 (tramp-smb-winexe-shell-command-switch): New defcustoms.
728 (tramp-smb-file-name-p): Simplify.
729 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
730 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
731 (tramp-smb-shell-quote-argument): New defuns.
732 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
733 Implement using "tar". By this, time-stamps are preserved.
734 (tramp-smb-handle-copy-file): Handle also the case of directories.
735 (tramp-smb-do-file-attributes-with-stat)
87e6e64f
DA
736 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
737 Use `tramp-get-connection-buffer').
2fe4b125
MA
738 (tramp-smb-handle-rename-file): Use "rename", when source and
739 target are on the same share.
87e6e64f
DA
740 (tramp-smb-maybe-open-connection): Handle wrong passwords.
741 Use `tramp-smb-server-version'.
2fe4b125
MA
742 (tramp-smb-wait-for-output): Remove prompt.
743
744 * net/tramp.el (top): Require 'cl.
87e6e64f
DA
745 (tramp-methods, tramp-rsh-end-of-line):
746 Remove `tramp-password-end-of-line' from docstring.
2fe4b125
MA
747 (tramp-save-ad-hoc-proxies): New defcustom.
748 (tramp-completion-function-alist): Adapt docstring.
749 (tramp-default-password-end-of-line): Remove defcustom.
750 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
751 (tramp-user-regexp, tramp-file-name-regexp-unified)
752 (tramp-file-name-regexp-url): Extend regexp by hop separator.
753 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
754 (tramp-remote-file-name-spec-regexp): New defconst.
755 (tramp-file-name-structure): Extend structure for hops.
756 (tramp-get-method-parameter): Move up.
757 (tramp-file-name-p, tramp-dissect-file-name)
758 (with-parsed-tramp-file-name): Handle hops.
759 (tramp-file-name-hop): New defun.
760 (tramp-make-tramp-file-name): New optional arg HOP.
761 (tramp-message-show-progress-reporter-message): New defvar.
762 (tramp-with-progress-reporter): Use it. We cannot use
763 `tramp-message-show-message' here, because this suppresses also
764 error buffers.
765 (tramp-error-with-buffer): Suppress buffer view, if
87e6e64f
DA
766 `tramp-message-show-message' is nil.
767 Use `tramp-get-connection-buffer'.
2fe4b125
MA
768 (tramp-cleanup): New defun.
769 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
770 (tramp-file-name-handler): If `debug-on-error' is set, propagate
771 an error unchanged.
772 (tramp-completion-handle-file-name-all-completions): Handle hops.
773 Fix an error when called from ido.
774 (tramp-completion-dissect-file-name): Use better local variable
775 name. Add hop to the vector.
776 (tramp-handle-insert-file-contents): Use progress-reporter for the
777 whole scenario.
778 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
779 to `t'.
780 (tramp-check-for-regexp): Simplify search.
781 (tramp-enter-password): Remove it. Move implementation ...
782 (tramp-action-password): ... here.
783 (tramp-mode-string-to-int, tramp-local-host-p)
784 (tramp-make-tramp-temp-file, tramp-read-passwd)
87e6e64f
DA
785 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
786 Set tramp-autoload cookie.
2fe4b125
MA
787
788 * net/trampver.el: Update release number.
789
7902012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
791 Michael Albinus <michael.albinus@gmx.de>
792
793 * net/tramp.el (tramp-set-completion-function): Fix docstring.
794 (tramp-parse-group, tramp-parse-file)
795 (tramp-parse-shostkeys-sknownhosts): New defuns.
796 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
797 (tramp-parse-shosts-group, tramp-parse-sconfig)
798 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
799 (tramp-parse-sknownhosts, tramp-parse-hosts)
800 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
801 Use them.
802 (tramp-parse-passwd-group, tramp-parse-netrc-group)
803 (tramp-parse-putty-group): Don't narrow.
804 (tramp-parse-putty): Make a loop.
805 (tramp-file-name-handler): Catch the `suppress' signal.
806
72834e10
CY
8072012-06-11 Chong Yidong <cyd@gnu.org>
808
809 * image.el (imagemagick-register-types): Put the ImageMagick entry
810 at the end of image-type-file-name-regexps.
811
a4712e11
JB
8122012-06-11 Johan Bockgård <bojohan@gnu.org>
813
814 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
815 (pcase, pcase-let*, pcase-dolist): Use them.
816
82ad98e3
SM
8172012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
818
819 * emacs-lisp/pcase.el (pcase--let*): New function.
820 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
821 (pcase--expand): Use macroexp-let².
822
f80efb86
SM
8232012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
824
825 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
826 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
827 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
828 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
829 * emacs-lisp/derived.el: Use pcase instead of `cl'.
830 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
831
31ca4639 8322012-06-10 Glenn Morris <rgm@gnu.org>
94f0aa34 833
31ca4639
CY
834 * mail/rmail.el (rmail-yank-current-message): Leave point at
835 correct position. (Bug#11660)
94f0aa34 836
31ca4639 8372012-06-10 Chong Yidong <cyd@gnu.org>
9e1b8ec4 838
31ca4639 839 * allout-widgets.el: Fix code header.
9e1b8ec4 840
31ca4639 8412012-06-10 Chong Yidong <cyd@gnu.org>
00cd0305 842
f80efb86
SM
843 * cus-edit.el (customize-changed-options-previous-release):
844 Bump to 24.1.
31ca4639 845
642b6d30
AS
8462012-06-09 Andreas Schwab <schwab@linux-m68k.org>
847
848 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
849
4f5d2ba1
CY
8502012-06-09 Chong Yidong <cyd@gnu.org>
851
852 * ebuff-menu.el (electric-buffer-list): Preserve header line.
853
e75852fd
MR
8542012-06-09 Martin Rudalics <rudalics@gmx.at>
855
856 * window.el (special-display-popup-frame): Don't use
857 window--display-buffer (Bug#11651).
858
1e48e282
EZ
8592012-06-09 Eli Zaretskii <eliz@gnu.org>
860
8a26b487
EZ
861 Fix parallel builds: make sure loaddefs.el is not being written
862 while Lisp files are compiled.
863 (compile): Don't depend on 'mh-autoloads'.
864 (compile-CMD, compile-SH): Depend on 'autoloads'.
865 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
866
1e48e282
EZ
867 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
868
6175e34b
CY
8692012-06-09 Chong Yidong <cyd@gnu.org>
870
871 * face-remap.el (face-remap-add-relative, face-remap-set-base)
872 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
873 Doc fixes (Bug#11225).
874
d9857e53
SM
8752012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
876
877 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
878 a function if there's a clear indication that it has a compiler-macro.
879 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
880 (macro-declarations-alist): Add arglist to declaration functions.
881 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
882 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
883 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
884 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
885 Also add autoload to find the compiler macro.
886 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
887 (cl--compiler-macro-member, cl--compiler-macro-assoc)
888 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
889 (cl--compiler-macro-get): New functions, replacing calls to
890 cl-define-compiler-macro.
891 (cl-typep) [compiler-macro]: Use macroexp-let².
892
f81298f8 8932012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
ee574791
UJ
894
895 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
896 string properly, fixes Bug#11473.
897
4b56d0fe
CY
8982012-06-08 Chong Yidong <cyd@gnu.org>
899
900 * faces.el (set-face-attribute): Doc fix.
901 (modify-face): Don't use :bold and :italic.
902 (error, warning, success): Tweak definitions.
903
904 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
905 (custom-modified, custom-set, custom-changed, custom-themed)
906 (custom-saved, custom-button, custom-button-mouse)
907 (custom-button-pressed, custom-state, custom-comment-tag)
908 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
909 (custom-group-subtitle): Use new-style face specs.
910 (custom-invalid-face, custom-rogue-face, custom-modified-face)
911 (custom-set-face, custom-changed-face, custom-saved-face)
912 (custom-button-face, custom-button-pressed-face)
913 (custom-documentation-face, custom-state-face)
914 (custom-comment-face, custom-comment-tag-face)
915 (custom-variable-tag-face, custom-variable-button-face)
916 (custom-face-tag-face, custom-group-tag-face-1)
917 (custom-group-tag-face): Remove obsolete face alias.
918
919 * epa.el (epa-validity-high, epa-validity-medium)
920 (epa-validity-low, epa-mark, epa-field-name, epa-string)
921 (epa-field-name, epa-field-body):
922 * font-lock.el (font-lock-comment-face, font-lock-string-face)
923 (font-lock-keyword-face, font-lock-builtin-face)
924 (font-lock-function-name-face, font-lock-variable-name-face)
925 (font-lock-type-face, font-lock-constant-face):
926 * ido.el (ido-first-match, ido-only-match, ido-subdir)
927 (ido-virtual, ido-indicator, ido-incomplete-regexp):
928 * speedbar.el (speedbar-button-face, speedbar-file-face)
929 (speedbar-directory-face, speedbar-tag-face)
930 (speedbar-selected-face, speedbar-highlight-face)
931 (speedbar-separator-face):
932 * whitespace.el (whitespace-newline, whitespace-space)
933 (whitespace-hspace, whitespace-tab, whitespace-trailing)
934 (whitespace-line, whitespace-space-before-tab)
935 (whitespace-space-after-tab, whitespace-indentation)
936 (whitespace-empty):
937 * emulation/cua-base.el (cua-global-mark):
938 * eshell/em-prompt.el (eshell-prompt):
939 * net/newst-plainview.el (newsticker-new-item-face)
940 (newsticker-old-item-face, newsticker-immortal-item-face)
941 (newsticker-obsolete-item-face, newsticker-date-face)
942 (newsticker-statistics-face, newsticker-default-face):
943 * net/newst-reader.el (newsticker-feed-face)
944 (newsticker-extra-face, newsticker-enclosure-face):
945 * net/newst-treeview.el (newsticker-treeview-face)
946 (newsticker-treeview-new-face, newsticker-treeview-old-face)
947 (newsticker-treeview-immortal-face)
948 (newsticker-treeview-obsolete-face)
949 (newsticker-treeview-selection-face):
950 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
951 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
952 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
953 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
954 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
955 (nxml-outline-active-indicator, nxml-outline-ellipsis):
956 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
957 (mpuz-text):
958 * progmodes/vera-mode.el (vera-font-lock-number)
959 (vera-font-lock-function, vera-font-lock-interface):
960 * textmodes/table.el (table-cell): Use new-style face specs, and
961 don't use the old :bold and :italic attributes.
962
963 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
964 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
965 (ebrowse-member-class, ebrowse-progress): Likewise.
966 (ebrowse-tree-mark-face, ebrowse-root-class-face)
967 (ebrowse-file-name-face, ebrowse-default-face)
968 (ebrowse-member-attribute-face, ebrowse-member-class-face)
969 (ebrowse-progress-face): Remove obsolete faces.
970
971 * progmodes/flymake.el (flymake-errline, flymake-warnline):
972 Inherit from error and warning faces respectively.
973
974 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
975 Likewise.
f80efb86
SM
976 (flyspell-incorrect-face, flyspell-duplicate-face):
977 Remove obsolete aliases.
4b56d0fe 978
03310646
MA
9792012-06-08 Michael Albinus <michael.albinus@gmx.de>
980
981 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
982 Avoid infloop.
983
513749ee
SM
9842012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
985
986 * startup.el (argv, argi): Make lexically scoped.
987 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
988 * emacs-lisp/cl-macs.el: Use lexical-binding.
989 Rename cl-bind-* to cl--bind-*.
990 * files.el: Don't require `cl' since it doesn't use it.
991 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
992
595ef4ad
JB
9932012-06-08 Juanma Barranquero <lekktu@gmail.com>
994
995 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
996 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
997 instead of calling external sort utility.
998 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
999
e9f66fcb
EZ
10002012-06-08 Eli Zaretskii <eliz@gnu.org>
1001
1002 * descr-text.el (describe-char): Mention how to insert the
1003 character, if the current input method doesn't support it.
1004 See the discussion in this thread for the details:
1005 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
1006
3d10db47
SS
10072012-06-08 Sam Steingold <sds@gnu.org>
1008
1009 * bindings.el (global-map): Bind XF86Forward to next-buffer and
1010 XF86Back to previous-buffer.
1011 (minibuffer-local-map): Bind them to next-history-element and
1012 previous-history-element respectively.
1013 * help-mode.el (help-mode-map): Bind them to help-go-forward and
1014 help-go-back respectively.
1015 * info.el (Info-mode-map): Bind them to Info-history-forward and
1016 Info-history-back respectively.
1017 These are the keys next to Up on the ThinkPad keyboard.
1018
de7e2b36
SM
10192012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1020
1021 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
1022 * emacs-lisp/cl-macs.el: Provide itself.
1023 (cl--labels-convert-cache): New var.
1024 (cl--labels-convert): New function.
1025 (cl-flet, cl-labels): New implementation with new semantics, relying on
1026 lexical-binding.
1027 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
1028 (cl-closure-vars, cl--function-convert-cache)
1029 (cl--function-convert): Move from cl-macs.el.
1030 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
1031 rename by removing the "cl-" prefix.
1032 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
1033
6fa6c4ae
SM
10342012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1035
1036 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
1037 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
1038 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
1039 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
1040 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
1041 (cl-hash-table-count): Add old compatibility aliases.
1042
1043 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
1044 Use macroexpand-all-environment instead.
1045 (cl--old-macroexpand): New var.
1046 (cl--sm-macroexpand): New function.
1047 (cl-symbol-macrolet): Use it during macro expansion.
1048 (cl--function-convert-cache): New var.
1049 (cl--function-convert): New function, extracted from
1050 cl-macroexpand-all.
1051 (cl-lexical-let): Use it.
1052
1053 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
1054 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
1055 (cl-member): Remove old alias.
1056
1057 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
1058 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
1059 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
1060 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
1061 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
1062 (cl-macroexpand-cmacs): Remove var.
1063 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
1064 Use macroexpand-all instead.
1065
4dd1c416
SM
10662012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1067
1068 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
1069 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
1070 (macroexp-copyable-p): New functions and macros.
1071 * emacs-lisp/edebug.el (edebug-unwrap):
1072 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
1073 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
1074 (pcase--let*): Remove.
1075 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
1076 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
1077 macroexp-const-p instead.
1078 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
1079
1080 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
1081 instead of "cl-" for internal definitions. Use macroexp-const-p.
1082 (cl-old-bc-file-form): Remove var.
1083 (cl-const-exprs-p): Remove fun.
1084 (cl-labels, cl-macrolet): Use backquote.
1085 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
1086 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
1087 (cl-define-setf-expander): Rename from cl-define-setf-method.
1088 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
1089
1090 * international/mule-cmds.el: Don't require CL.
1091 (view-hello-file): Don't use `letf'.
1092
ed8bd4d7
SM
10932012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1094
7287f2f3
SM
1095 * tmm.el (tmm-prompt): Use string-prefix-p.
1096 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
1097 (tmm-add-prompt): Use minibuffer-completion-help.
1098 (tmm-delete-map): Remove.
1099
ed8bd4d7
SM
1100 * subr.el (kbd): Make it its own function.
1101
7b4cdbf4
SM
11022012-06-07 Stefan Merten <smerten@oekonux.de>
1103
1104 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
1105 Silence compiler warnings. Fix versions.
ed8bd4d7 1106 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7b4cdbf4 1107 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
ed8bd4d7 1108 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7b4cdbf4
SM
1109 (rst-package-emacs-version-alist): Correct Emacs version to
1110 represent major merge with upstream.
ed8bd4d7 1111 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7b4cdbf4 1112
2b48d721
GM
11132012-06-06 Glenn Morris <rgm@gnu.org>
1114
1115 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
1116 Only print environment variables if set.
1117
fa779ab0
SM
11182012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1119
1120 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
1121 (macroexp--cons): Rename from maybe-cons.
1122 (macroexp--accumulate): Rename from macroexp-accumulate.
1123 (macroexp--all-forms): Rename from macroexpand-all-forms.
1124 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
1125 (macroexp--expand-all): Rename from macroexpand-all-1.
1126
628299e0
SS
11272012-06-06 Sam Steingold <sds@gnu.org>
1128
1129 * calendar/calendar.el (calendar-in-read-only-buffer):
1130 Call `special-mode' to enable the standard read-only keybindings.
1131
b7bb5838
SM
11322012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1133
1134 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
1135 with "loading" messages (bug#11635).
1136
dfb308ba
MA
11372012-06-06 Michael Albinus <michael.albinus@gmx.de>
1138
1139 * files.el (enable-remote-dir-locals): New option.
1140 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
1141
0372ee92
MA
1142 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1143 Ensure, that the temp directory is local.
1144
1145 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
1146 `temporary-file-directory'.
1147
eed0bb91
MA
1148 * progmodes/python.el (python-send-region): Ensure, that the
1149 temporary file is created also in the remote case.
1150
7a58f64d
GM
11512012-06-06 Glenn Morris <rgm@gnu.org>
1152
f7dd4e98
GM
1153 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
1154 (vc-rcs-update-changelog): Use it.
1155
276d5f5d
GM
1156 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff
1157
7a58f64d
GM
1158 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
1159 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
1160 (vc-sccs-diff): Replace use of the external vcdiff script.
1161
daed4003
GM
11622012-06-05 Glenn Morris <rgm@gnu.org>
1163
1164 * ledit.el: Move to obsolete/.
1165
48c455c7
SS
11662012-06-05 Sam Steingold <sds@gnu.org>
1167
1168 * calendar/calendar.el (calendar-exit): reinstate the 2012-03-28
1169 patch (Bug#11140).
1170
57a7d507
SM
11712012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
1172
d32926ff
SM
1173 * emacs-list/cust-print.el: Move to obsolete.
1174
53aacf21
SM
1175 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
1176 compiler-macro expansion.
1177
57a7d507
SM
1178 Add native compiler-macro support.
1179 * emacs-lisp/macroexp.el (macroexpand-all-1):
1180 Support compiler-macros directly. Properly follow aliases and apply
1181 the compiler macros more thoroughly.
1182 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
1183 macroexpand now properly follows aliases.
1184 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
1185 (cl-compiler-macroexpand): Use new prop.
1186 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
1187
1188 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
1189
51a5f9d8
MR
11902012-06-05 Martin Rudalics <rudalics@gmx.at>
1191
1192 * window.el (get-lru-window, get-mru-window, get-largest-window):
1193 New argument NOT-SELECTED to avoid picking the selected window.
1194 (window--display-buffer-1, window--display-buffer-2): Replace by
1195 new function window--display-buffer
1196 (display-buffer-same-window, display-buffer-reuse-window)
57a7d507
SM
1197 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1198 Use window--display-buffer.
51a5f9d8
MR
1199 (display-buffer-use-some-window): Remove temporary dedication
1200 hack by calling get-lru-window and get-largest-window with
1201 NOT-SELECTED argument non-nil. Call window--display-buffer.
1202
08f9f738
GM
12032012-06-05 Glenn Morris <rgm@gnu.org>
1204
1205 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
1206 Replace external vcdiff script.
1207
e364a2b7
SM
12082012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1209
1210 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
1211
041df390
CY
12122012-06-04 Chong Yidong <cyd@gnu.org>
1213
e364a2b7
SM
1214 * image.el (imagemagick-types-inhibit): Revert last change.
1215 Add INFO and M.
47b36b94 1216 (imagemagick-enabled-types): Remove CIN and EPS*.
041df390 1217
7c1898a7
SM
12182012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1219
1220 * emacs-lisp/cl-lib.el: Rename from cl.el.
1221 * emacs-lisp/cl.el: New compatibility file.
1222 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
1223 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
1224 to obey the "cl-" prefix.
1225 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
1226
0c3461de
GM
12272012-06-03 Glenn Morris <rgm@gnu.org>
1228
1e266c88
GM
1229 * emacs-lisp/authors.el (authors-aliases): Addition.
1230
0c3461de
GM
1231 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
1232 Fix :version.
1233
d8a52e15
SM
12342012-06-03 Stefan Merten <smerten@oekonux.de>
1235
1236 * textmodes/rst.el: Add comments.
1237 (rst-transition, rst-adornment): New faces.
1238 (rst-adornment-faces-alist): Make default safe to reevaluate.
1239 Fixes
1240 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
1241 Improve customization tags.
1242 (rst-define-level-faces): Clarify meaning.
1243
5205d6f6
CY
12442012-06-03 Chong Yidong <cyd@gnu.org>
1245
1246 * progmodes/compile.el (compilation-mode-line-fail)
7c1898a7
SM
1247 (compilation-mode-line-run, compilation-mode-line-exit):
1248 New faces.
5205d6f6
CY
1249 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
1250
757ee657
JD
12512012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
1252
7c1898a7
SM
1253 * progmodes/which-func.el (which-func-update-ediff-windows):
1254 New function. Use it in ediff-select-hook (Bug#11478).
757ee657 1255
5f2c76c6
CY
12562012-06-03 Chong Yidong <cyd@gnu.org>
1257
1258 * bindings.el: Remove explicit help text from format-mode-line.
1259 It is now supplied by mode-line-default-help-echo.
1260 (mode-line-front-space, mode-line-end-spaces)
1261 (mode-line-misc-info): New variables.
1262 (mode-line-modes, mode-line-position): Move the default value to
1263 the variable definition.
1264 (mode-line-default-help-echo): New defcustom.
383f7350
CY
1265 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
1266 (mode-line-modified-help-echo): New functions.
1267 (mode-line-mule-info, mode-line-modified): Use them.
1268 (mode-line-eol-desc, propertized-buffer-identification):
1269 Consistency fixes for help text.
cbe46e5f
CY
1270 (mode-line-coding-system-map): Allow using mouse-3 to invoke
1271 set-buffer-file-coding-system (Bug#289).
1272 (mode-line-mule-info-help-echo): Update help text.
5f2c76c6 1273
f2d6a3df
SM
12742012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
1275
1276 * simple.el (execute-extended-command): Set real-this-command
1277 (bug#11506).
1278
37269466
CY
12792012-06-02 Chong Yidong <cyd@gnu.org>
1280
1281 Remove incorrect uses of "modeline" in comments, docstrings, and
1282 function/variable names (Bug#10329).
1283
1284 * cus-edit.el (mode-line):
1285 * dframe.el (dframe-mouse-hscroll):
1286 * emacs-lisp/re-builder.el:
1287 * emacs-lisp/easy-mmode.el (define-minor-mode):
1288 * frame.el (set-frame-name):
1289 * help.el (lookup-minor-mode-from-indicator):
1290 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
1291 * progmodes/cc-cmds.el (c-toggle-auto-newline)
1292 (c-toggle-hungry-state):
1293 * progmodes/antlr-mode.el (antlr-language-alist):
1294 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
1295 * progmodes/vhdl-mode.el (vhdl-mode):
1296 * progmodes/which-func.el (which-func, which-func-cleanup-function):
1297 * term/ns-win.el (ns-face-at-pos):
1298 * term/sup-mouse.el (sup-mouse-report):
1299 * textmodes/flyspell.el (flyspell-mode-line-string):
1300 * textmodes/ispell.el (ispell-highlight-face):
1301 * textmodes/reftex-global.el:
1302 * vc/vc-arch.el (vc-arch-mode-line-string):
1303 * vc/vc-cvs.el (vc-cvs-mode-line-string):
1304 * vc/vc-git.el (vc-git-mode-line-string):
1305 * vc/vc-hooks.el (vc-display-status)
1306 (vc-default-mode-line-string):
1307 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
1308
1309 * ansi-color.el (ansi-color-faces-vector): Change default faces.
1310
1311 * dired.el (dired-sort-set-mode-line): Rename from
1312 dired-sort-set-modeline. All callers changed.
1313
1314 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
1315 eshell-status-in-modeline.
1316
1317 * foldout.el (foldout-mode-line-string): Rename from
1318 foldout-modeline-string. All callers changed.
1319 (foldout-update-mode-line): Rename from foldout-update-modeline.
1320
1321 * subr.el (redraw-modeline): Make into obsolete alias.
1322
1323 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
1324 timeclock-modeline-display. Make old name an alias.
1325 (timeclock-update-mode-line): Likewise. All callers changed.
1326 (timeclock-mode-line-display): No need to check before using
1327 add-hook.
1328 (timeclock-relative, timeclock-day-over-hook)
1329 (timeclock-use-elapsed, timeclock-mode-string)
1330 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
1331
1332 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
1333 crisp-mode-modeline-string.
1334
1335 * play/solitaire.el (solitaire-build-mode-line): Rename from
1336 solitaire-build-modeline. All callers changed.
1337
1338 * play/zone.el (zone-hiding-mode-line): Rename from
1339 zone-hiding-modeline. All callers changed.
1340 (zone): Remove unusued `modeline-hidden-level' property.
1341
1342 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
1343 xscheme-modeline-initialize. All callers changed.
1344
1345 * strokes.el (strokes-lighter): Rename from
1346 strokes-modeline-string.
1347
1348 * textmodes/sgml-mode.el (html-face-tag-alist)
1349 (html-tag-face-alist): Use mode-line face instead of obsolete
1350 alias modeline.
1351
42152ee4
SM
13522012-06-02 Stefan Merten <smerten@oekonux.de>
1353
1354 * textmodes/rst.el: Always require `cl'.
4cf9b38d 1355 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
42152ee4 1356
95f520b5
CY
13572012-06-02 Chong Yidong <cyd@gnu.org>
1358
1359 * image.el (imagemagick-enabled-types): Rename from
1360 imagemagick-types-enable. Add many more types.
1361 (imagemagick-types-inhibit): Change default to nil.
1362 (imagemagick-filter-types): Caller changed.
1363
4a5f187a
SM
13642012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1365
03fef3e6
SM
1366 * emacs-lisp/cl-macs.el: Use backquotes.
1367 (cl-transform-function-property): Use eval-and-compile rather than
1368 abusing `require'.
1369 (defstruct): Use declare-function instead of with-no-warnings.
1370
4a5f187a
SM
1371 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
1372 (byte-compile-output-docform): Re-add the print-circle bindings.
1373 (byte-compile-fix-header): Use #$ just because it's shorter.
1374 (byte-compile-output-file-form): Remove defun/defmacro.
1375
bd56924f
MR
13762012-06-01 Martin Rudalics <rudalics@gmx.at>
1377
1378 * simple.el (choose-completion): Remove now obsolete binding for
1379 owindow.
1380
046e38ce
MA
13812012-06-01 Michael Albinus <michael.albinus@gmx.de>
1382
1383 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
1384 in order to avoid "Stack overflow in regexp matcher".
1385
32d72c2f
GM
13862012-05-31 Glenn Morris <rgm@gnu.org>
1387
1388 * image.el: For clarity, call imagemagick-register-types at
1389 top-level, rather than relying on a custom :initialize.
1390 (imagemagick-types-enable): New option. (Bug#11557)
60b5f187
GM
1391 (imagemagick-filter-types): New function. (Bug#7406)
1392 (imagemagick-register-types): Use imagemagick-filter-types.
32d72c2f
GM
1393 If disabling support, remove elements altogether rather
1394 than using an impossible regexp.
1395 (imagemagick-types-inhibit): Give it the default init function.
1396
dd41169b
SM
13972012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1398
4a5f187a
SM
1399 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
1400 Handle arbitrary file name lengths (Bug#11585).
dd41169b 1401
efc00ab1 14022012-05-31 Martin Rudalics <rudalics@gmx.at>
5221ccb9
MR
1403
1404 * desktop.el (desktop-read): Clear previous and next buffers for
1405 all windows and bury *Messages* buffer (bug#11556).
1406
500fcedc
SM
14072012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1408
1409 Add `declare' for `defun'. Align `defmacro's with it.
1410 * emacs-lisp/easy-mmode.el (define-minor-mode)
1411 (define-globalized-minor-mode): Don't autoload the var definitions.
1412 * emacs-lisp/byte-run.el: Use lexical-binding.
1413 (defun-declarations-alist, macro-declarations-alist): New vars.
1414 (defmacro, defun): Use them.
1415 (make-obsolete, define-obsolete-function-alias)
1416 (make-obsolete-variable, define-obsolete-variable-alias):
1417 Use `declare'.
1418 (macro-declaration-function): Mark obsolete.
1419 * emacs-lisp/autoload.el: Use lexical-binding.
1420 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
1421
6e8a1786
AM
14222012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1423
1424 * textmodes/ispell.el (ispell-with-no-warnings):
1425 Define as a macro.
500fcedc
SM
1426 (ispell-kill-ispell, ispell-change-dictionary):
1427 Use `called-interactively-p' for Emacs instead of obsolete
6e8a1786
AM
1428 `interactive-p'.
1429
61b108cc
SM
14302012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
1431
1432 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
1433 (macro-declaration-function): Move var from C code.
1434 (macro-declaration-function): Define function with defalias.
1435 * emacs-lisp/macroexp.el (macroexpand-all-1):
1436 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
1437 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
1438 defun/defmacro any more.
1439 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
1440 Provide fallback for unknown arglist.
1441 (byte-compile-arglist-warn): Change calling convention.
1442 (byte-compile-output-file-form): Move print-vars binding.
1443 (byte-compile-output-docform): Simplify accordingly.
1444 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
1445 (byte-compile-defmacro-declaration): Remove.
1446 (byte-compile-file-form-defmumble): Generalize to defalias.
1447 (byte-compile-output-as-comment): Return byte-positions.
1448 Simplify callers accordingly.
1449 (byte-compile-lambda): Use `assert'.
1450 (byte-compile-defun, byte-compile-defmacro): Remove.
1451 (byte-compile-file-form-defalias):
1452 Use byte-compile-file-form-defmumble.
1453 (byte-compile-defalias-warn): Remove.
1454
6d3f7c2f
SM
14552012-05-29 Stefan Merten <smerten@oekonux.de>
1456
1457 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
61b108cc 1458 possible. Fix authors. Improve comments. Improve loading of `cl'.
6d3f7c2f
SM
1459
1460 (rst-mode-abbrev-table): Merge definition.
1461 (rst-mode): Make sure `font-lock-defaults' is buffer local.
1462 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
1463
6dbaa1c7
UJ
14642012-05-29 Ulf Jasper <ulf.jasper@web.de>
1465
1466 * calendar/icalendar.el
1467 (icalendar-export-region): Export UID properly.
1468
14692012-05-29 Leo <sdl.web@gmail.com>
61b108cc
SM
1470 * calendar/icalendar.el (icalendar-import-format):
1471 Add `icalendar-import-format-uid' (Bug#11525).
6dbaa1c7
UJ
1472 (icalendar-import-format-uid): New.
1473 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
1474 Export UID.
1475
6876a58d
SM
14762012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1477
1478 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
1479 different alternative patterns.
1480 (pcase-codegen): Be more careful to preserve identity.
1481 (pcase--u1): Don't forget to mark vars as used.
1482
1483 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
1484 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
1485 (byte-compile-from-buffer): ...rather than here.
1486
1487 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
1488 functions from byte-compile-function-environment.
1489
46b7967e
TN
14902012-05-29 Troels Nielsen <bn.troels@gmail.com>
1491
1492 * window.el (window-deletable-p): Avoid deleting the root window
1493 of a frame with an active minibuffer.
1494
69d565e2
MR
14952012-05-29 Martin Rudalics <rudalics@gmx.at>
1496
1497 * simple.el (choose-completion): Use quit-window (Bug#11567).
1498
a149fa51
CY
14992012-05-29 Chong Yidong <cyd@gnu.org>
1500
1501 * whitespace.el (whitespace-cleanup): Fix usage of
1502 whitespace-empty-at-bob-regexp (Bug#11492).
1503
2b311310
AH
15042012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1505
1506 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
1507 revert (Bug#11488).
1508
b9cb2387
JL
15092012-05-29 Juri Linkov <juri@jurta.org>
1510
1511 * isearch.el (isearch-mode-map): Bind `M-s _' to
1512 `isearch-toggle-symbol'. Bind `M-s c' to
1513 `isearch-toggle-case-fold'.
1514 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
1515 (isearch-forward): Add `M-s _' to the docstring.
1516 (isearch-forward-symbol, isearch-toggle-case-fold)
1517 (isearch-symbol-regexp): New functions. (Bug#11381)
1518
d5e61c1c
JL
15192012-05-29 Juri Linkov <juri@jurta.org>
1520
1521 * isearch.el (isearch-word): Add docstring. (Bug#11381)
1522 (isearch-occur, isearch-search-and-update): If `isearch-word' is
1523 a function, call it to get the regexp.
1524 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
1525 property `isearch-message-prefix' instead of the string "word ".
1526 (isearch-search-fun-default): For the case of `isearch-word',
1527 return a lambda that calls re-search-forward/re-search-backward
1528 with a regexp returned by `word-search-regexp' or by the function
1529 in `isearch-word'.
1530
8cbd80f7
JL
15312012-05-29 Juri Linkov <juri@jurta.org>
1532
1533 * isearch.el (isearch-search-fun-default): New function.
1534 (isearch-search-fun): Move default part to the new function
1535 `isearch-search-fun-default'.
1536 (isearch-search-fun-function): Set the default value to
1537 `isearch-search-fun-default'. (Bug#11381)
1538
1539 * comint.el (comint-history-isearch-end):
1540 Use `isearch-search-fun-default'.
1541 (comint-history-isearch-search): Use `isearch-search-fun-default'
1542 and remove spacial case for `isearch-word'.
1543 (comint-history-isearch-wrap): Remove spacial case for
1544 `isearch-word'.
1545
1546 * hexl.el (hexl-isearch-search-function):
1547 Use `isearch-search-fun-default'.
1548
1549 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
1550 Use `word-search-regexp' for `isearch-word'.
1551
1552 * misearch.el (multi-isearch-search-fun):
1553 Use `isearch-search-fun-default'.
1554
1555 * simple.el (minibuffer-history-isearch-search):
1556 Use `isearch-search-fun-default' and remove spacial case for
1557 `isearch-word'.
1558 (minibuffer-history-isearch-wrap): Remove spacial case for
1559 `isearch-word'.
1560
1561 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
1562 Remove spacial case for `isearch-word'.
1563 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
1564
85c8c5b6
AM
15652012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1566
1567 Decrease XEmacs incompatibilities.
1568 * textmodes/flyspell.el (flyspell-check-pre-word-p):
1569 Use `string-match'.
1570 (flyspell-delete-region-overlays): Use alternative definition for
1571 XEmacs.
1572 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
1573 (flyspell-word): Use `process-kill-without-query' if XEmacs.
1574 (flyspell-mode-on): Use `interactive-p' if XEmacs.
1575 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
1576 `define-obsolete-face-alias' under XEmacs, but old method.
1577
1578 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
1579 `with-no-warnings' definition or Emacs alias.
1580 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
1581 (ispell-word): Do not use `region-p' if XEmacs.
1582
8cab9efc
AM
15832012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1584
1585 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
1586 Check for `ispell-dictionary-base-alist' instead of full
1587 `ispell-dictionary-alist'.
1588 (ispell-init-process): Show spellchecker when starting new Ispell
1589 process.
1590
fda91268
RZ
15912012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1592
1593 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
1594 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
1595
694ea8e3
JB
15962012-05-27 Juanma Barranquero <lekktu@gmail.com>
1597
1598 * version.el (motif-version-string, gtk-version-string)
1599 (ns-version-string): Declare.
1600
e4d4f539
JL
16012012-05-27 Juri Linkov <juri@jurta.org>
1602
1603 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
1604 after the `eval-defun-1' specialcaseing
1605 like in `edebug-eval-defun' (bug#10181).
1606
1607 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
1608 like in `eval-defun-1'.
1609
33017faf 16102012-05-27 Eli Zaretskii <eliz@gnu.org>
b30b64b9 1611
fda91268
RZ
1612 * mail/sendmail.el (mail-yank-region):
1613 Recognize rmail-yank-current-message in addition to insert-buffer.
1614 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
b30b64b9
EZ
1615 a *mail* buffer created through rmail-start-mail with sendmail as
1616 mail-user-agent.
1617
33017faf
GM
16182012-05-27 Chong Yidong <cyd@gnu.org>
1619
1620 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
1621 Default to 256 (Bug#11267).
1622
1623 * help.el (describe-mode): Doc fix.
1624
04188bb9
GM
16252012-05-26 Glenn Morris <rgm@gnu.org>
1626
38264cc9
GM
1627 * w32-fns.el (w32-init-info): Remove.
1628 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
1629
eb7afdad
GM
1630 * info.el (info-initialize): For self-contained NS builds, put the
1631 included info/ directory at the front. (Bug#2791)
1632
04188bb9
GM
1633 * paths.el (Info-default-directory-list): Make it a defcustom,
1634 mainly so that we can use custom-initialize-delay.
1635
a179e3f7
SM
16362012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1637
43416392
SM
1638 * subr.el (buffer-has-markers-at): Mark obsolete.
1639
a179e3f7 1640 * subr.el (lambda): Use declare.
43416392 1641
a179e3f7
SM
1642 * emacs-lisp/lisp-mode.el (lambda):
1643 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
1644
34a008d9
AH
16452012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1646
1647 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
1648
0a3b289f
GM
16492012-05-26 Glenn Morris <rgm@gnu.org>
1650
1651 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
1652
758c81e8
GM
16532012-05-25 Glenn Morris <rgm@gnu.org>
1654
f9f334f0
GM
1655 * paths.el: Remove no-byte-compile.
1656 * loadup.el: No need to load paths.el uncompiled.
1657
87eb79c2
GM
1658 * image.el (imagemagick-types-inhibit): Doc fix.
1659
758c81e8
GM
1660 * version.el: Remove no-byte-compile and associated formatting.
1661 * loadup.el: No need to load version.el uncompiled. AFAICS, this
1662 is ancient code from when there was an "inc-vers.el".
1663
e7e85dc0
SM
16642012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1665
1666 * progmodes/gdb-mi.el: Minor style changes.
1667 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
1668 Turn into minor modes.
1669 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
1670 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
1671 (gdb-shell): Remove unneeded let-binding.
1672 (gdb-get-many-fields): Eliminate O(n²) behavior.
1673
f31237a4
EZ
16742012-05-25 Eli Zaretskii <eliz@gnu.org>
1675
1676 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
1677 platforms that don't link in fontset.c.
1678
bc1b21bb
JL
16792012-05-25 Juri Linkov <juri@jurta.org>
1680
1681 Use the same diff color scheme as in modern VCSes (bug#10181).
1682
1683 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
1684 to avoid confusion with `diff-added' that now uses green colors.
1685 (diff-removed): Use shades of red.
1686 (diff-added): Use shades of green.
1687 (diff-changed): Leave just the yellow color.
1688 (diff-use-changed-face): New variable.
1689 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
1690 how to highlight context diff changes.
1691 (diff-refine-change): Use shades of yellow.
1692 (diff-refine-removed): New face that uses shades of red.
1693 (diff-refine-added): New face that uses shades of green.
1694 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
1695 `diff-refine-removed' in the call to `smerge-refine-subst'
1696 depending on the value of `diff-use-changed-face'.
1697
1698 * vc/smerge-mode.el (smerge-mine): Use shades of red.
1699 (smerge-other): Use shades of green.
1700 (smerge-base): Use shades of yellow.
1701 (smerge-refined-change): Empty face.
1702 (smerge-refined-removed): New face that uses shades of red.
1703 (smerge-refined-added): New face that uses shades of green.
1704 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
1705 args `props-r' and `props-a', and use them. Doc fix.
1706 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
1707 on its value use different faces `smerge-refined-change',
1708 `smerge-refined-removed', `smerge-refined-added' in the call to
1709 `smerge-refine-subst'.
1710
1711 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
1712 Add face condition `min-colors 88' with shades of red.
1713 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
1714 `min-colors 88' with shades of green.
1715 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
1716 `min-colors 88' with shades of yellow.
1717
6df9112c
GM
17182012-05-24 Glenn Morris <rgm@gnu.org>
1719
ead5edc0
GM
1720 * paths.el (prune-directory-list, remote-shell-program): Move to...
1721 * files.el (prune-directory-list, remote-shell-program): ...here.
1722 For the latter, delay initialization, prefer ssh, just search PATH.
1723
f18b81e6
GM
1724 * paths.el (term-file-prefix): Move to faces.el (the only user).
1725 * faces.el (term-file-prefix): Move here, make it a defcustom.
1726
ee2f89a6
GM
1727 * paths.el (news-directory, news-path, news-inews-program):
1728 Move to gnus/nnspool.el.
61a583ca 1729
f8815e4c
GM
1730 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
1731
c8f3b42c
GM
1732 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
1733 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
1734 Make the latter a defcustom, with a delayed initialization.
1735
6df9112c
GM
1736 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
1737 These were deleted from Gnus itself late 2010.
1738
5dadff36
JB
17392012-05-22 Juanma Barranquero <lekktu@gmail.com>
1740
9e1701c6
JB
1741 * progmodes/which-func.el (which-func-ff-hook):
1742 Check against user-error, not error.
1743
bd7239f5 1744 * emacs-lisp/edebug.el (top): Do not load or set up loading of
5dadff36
JB
1745 cl-specs.el, which no longer exists.
1746
3290526d
GM
17472012-05-22 Glenn Morris <rgm@gnu.org>
1748
1749 * info.el (info-emacs-bug): New command.
1750 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
1751 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
1752
ff0c3cfb
GM
17532012-05-21 Glenn Morris <rgm@gnu.org>
1754
1755 * makefile.w32-in (update-subdirs-SH):
1756 * Makefile.in (update-subdirs): Update for moved update-subdirs.
1757
5814f126
SM
17582012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
1759
a52c0aa0
SM
1760 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
1761
5814f126
SM
1762 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1763 Simplify Maven regexp, and make sure the file can't start with a space
1764 (bug#11517).
1765
b847032c
GM
17662012-05-21 Glenn Morris <rgm@gnu.org>
1767
1768 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1769 Scrap superfluous subshells.
1770
3858bfe7
SM
17712012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
1772
1773 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
1774 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
1775
d14b0029
JB
17762012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
1777
1778 * calc/calc.el (calc-ensure-consistent-units): New variable.
1779
a52c0aa0
SM
1780 * calc/calc-units.el (math-consistent-units-p)
1781 (math-check-unit-consistency): New functions.
1782 (calc-quick-units, calc-convert-units):
1783 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
1784 is non-nil.
d14b0029
JB
1785 (calc-extract-units): Fix typo.
1786
60c4db3a
SM
17872012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1788
77f3b62e
SM
1789 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
1790
60c4db3a
SM
1791 * textmodes/flyspell.el: Commenting style, plus code simplifications.
1792 (flyspell-default-deplacement-commands): Don't spell check after
1793 repeated window/frame switches (e.g. triggered by mouse-movement).
1794 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
1795 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
1796 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
1797 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
1798 Remove unused vars.
1799 (flyspell-get-casechars, flyspell-get-not-casechars):
1800 Simplify; Don't bother removing a ] just to add it back.
1801 * textmodes/ispell.el (ispell-program-name): Use executable-find.
1802
b1a10716
RS
18032012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1804
1805 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
1806 New functions.
bd7239f5 1807 (math-function-table): Add support for more C functions.
b1a10716 1808
3f1b25b5
AM
18092012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1810
1811 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1812 (flyspell-debug-signal-word-checked): Protect delay handling for
1813 otherchars against empty otherchars.
1814
b581bb5c
SM
18152012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1816
1817 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
1818 their respective macro declarations.
1819 * skeleton.el (define-skeleton):
1820 * progmodes/compile.el (define-compilation-mode):
1821 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
1822 (define-ibuffer-filter):
1823 * emacs-lisp/generic.el (define-generic-mode):
1824 * emacs-lisp/easy-mmode.el (define-minor-mode)
1825 (define-globalized-minor-mode):
1826 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
1827 * emacs-lisp/byte-run.el (defsubst):
1828 * custom.el (deftheme): Add doc-string metadata.
1829
70b8ef8f
SM
18302012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1831
1832 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
1833
b1198e17
SM
18342012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1835
9abdc45d
SM
1836 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
1837
b1198e17
SM
1838 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
1839 * emacs-lisp/cl-macs.el: Idem.
1840 * emacs-lisp/cl-specs.el: Remove.
1841
4735906a
SM
18422012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1843
1844 Minor renaming of internal CL functions and variables.
1845 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
1846 (cl--position): Rename from cl-position.
1847 (cl--delete-duplicates): Rename from cl-delete-duplicates.
1848 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
1849 (cl--random-state): Rename from *random-state*.
1850
ac348012
SM
18512012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1852
1853 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
1854 parens around the arg list (bug#11499).
1855
a0a79cde
JL
18562012-05-17 Juri Linkov <juri@jurta.org>
1857
1858 * isearch.el (word-search-regexp, word-search-backward)
1859 (word-search-forward, word-search-backward-lax)
1860 (word-search-forward-lax): Move functions from search.c
1861 (bug#10145, bug#11381).
1862
65034a51
AM
18632012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1864
1865 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1866 (flyspell-debug-signal-word-checked): Delay for otherchars as for
1867 normal word components.
1868
1a72a195
SM
18692012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
1870
1871 * minibuffer.el (completion--sifn-requote): Fix last change.
1872 (minibuffer-local-must-match-filename-map):
1873 Move define-obsolete-variable-alias before its var.
1874
fdb058c2
SM
18752012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1876
c41045e6
SM
1877 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
1878
036dfb8b
SM
1879 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
1880 behavior.
1881 (completion--string-equal-p): New function.
1882 (completion--twq-all): Use it to get better assertion failure data.
1883
2473256d
SM
1884 Only handle ".." and '..' quoting in shell-mode (bug#11466).
1885 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
1886 (shell--requote-argument): New functions.
1887 (shell-completion-vars): Use them.
1888 (shell--parse-pcomplete-arguments): Rename from
1889 shell-parse-pcomplete-arguments.
1890 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
1891 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
1892 Obey comint-file-name-quote-list.
1893
fdb058c2
SM
1894 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
1895 (smie-indent-keyword): Use it.
1896
51fa99f1
SM
18972012-05-14 Stefan Merten <smerten@oekonux.de>
1898
1899 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
1900
e18afed7 19012012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
d9d1dfef
SM
1902
1903 * net/rlogin.el (rlogin-mode-map): Fix last change.
1904
e18afed7 19052012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
8633b1f4
JW
1906
1907 * mail/smtpmail.el (smtpmail-send-command): Send the command and
1908 the following \r\n using a single `process-send-string', since the
1909 Lotus SMTP server refuses to accept any commands if they are sent
e18afed7 1910 with two `process-send-string's (Bug#11444).
8633b1f4 1911
e18afed7 19122012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
fe263b8f 1913
fdb058c2
SM
1914 * shell.el (shell-parse-pcomplete-arguments):
1915 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
e18afed7 1916
2d21d7f6
WJ
19172012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
1918
e18afed7 1919 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
2d21d7f6
WJ
1920 (image-transform-scale, image-transform-right-angle-fudge): New vars.
1921 (image-transform-width, image-transform-fit-width): New functions.
1922 (image-transform-properties): Use them.
1923 (image-transform-check-size): New function.
1924 (image-toggle-display-image): Use it (for testing).
1925 (image-transform-set-rotation): Reduce angle mod 360.
1926 Delete obsolete comment.
1927
7102e6d0
WJ
19282012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
1929
1930 * image-mode.el: Fix scaling (bug#11399).
1931 (image-transform-resize): Doc fix.
1932 (image-transform-properties): Default scale is 1 and height should
1933 be an integer.
1934
06bc5e6e
SM
19352012-05-13 Johan Bockgård <bojohan@gnu.org>
1936
1937 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
1938 than hard-coding `car', to fix misbehavior when moving forward.
1939
0ae03b6a
CY
19402012-05-13 Chong Yidong <cyd@gnu.org>
1941
1942 * emacs-lisp/tabulated-list.el (tabulated-list-format)
1943 (tabulated-list-entries, tabulated-list-padding)
1944 (tabulated-list-sort-key): Make permanent-local.
1945
1946 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
1947 (electric-buffer-list): Put electric buffer menu
1948 command descriptions in this docstring, instead of the docstring
1949 of electric-buffer-menu-mode. Code cleanups.
1950 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
1951 Electric-buffer-menu-mode.
1952 (electric-buffer-update-highlight): Minor code cleanup.
1953
205a7391
MA
19542012-05-13 Michael Albinus <michael.albinus@gmx.de>
1955
1956 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
1957 (Bug#11447)
1958
e5bd0a28
SM
19592012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
1960
1961 Move define-obsolete-variable-alias before the var's definition.
1962 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
1963 * tooltip.el (tooltip-hook):
1964 * textmodes/reftex-toc.el (reftex-toc-map):
1965 * textmodes/reftex-sel.el (reftex-select-label-map)
1966 (reftex-select-bib-map):
1967 * textmodes/reftex-index.el (reftex-index-map)
1968 (reftex-index-phrases-map):
1969 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
1970 * progmodes/meta-mode.el (meta-mode-map):
1971 * novice.el (disabled-command-hook):
1972 * loadhist.el (unload-hook-features-list):
1973 * frame.el (blink-cursor):
1974 * files.el (find-file-not-found-hooks, write-file-hooks)
1975 (write-contents-hooks):
1976 * emulation/tpu-edt.el (GOLD-map):
1977 * emacs-lock.el (emacs-lock-from-exiting):
1978 * emacs-lisp/generic.el (generic-font-lock-defaults):
1979 * emacs-lisp/chart.el (chart-map):
1980 * dos-fns.el (register-name-alist):
1981 * dired-x.el (dired-omit-files-p):
1982 * desktop.el (desktop-enable):
1983 * cus-edit.el (custom-mode-hook):
1984 * buff-menu.el (buffer-menu-mode-hook):
1985 * bookmark.el (bookmark-read-annotation-text-func)
1986 (bookmark-exit-hooks):
1987 * allout.el (allout-mode-deactivate-hook)
1988 (allout-exposure-change-hook, allout-structure-added-hook)
1989 (allout-structure-deleted-hook, allout-structure-shifted-hook):
1990 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
1991 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
1992 comes before the corresponding variable's definition.
1993
ac59c2f6
CY
19942012-05-12 Chong Yidong <cyd@gnu.org>
1995
1996 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
0d909786
CY
1997 (Buffer-menu-mouse-select): Restore function (Bug#11459).
1998 (Buffer-menu-mode-map): Bind it.
1999 (Buffer-menu--pretty-name): Add a mouse-face property.
ac59c2f6 2000
dee6c9a3
SM
20012012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
2002
2171cea5
SM
2003 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
2004 (prolog-upper-case-string, prolog-lower-case-string)
2005 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
2006 (prolog-use-smie, prolog-smie-grammar): New vars.
2007 (prolog-smie-forward-token, prolog-smie-backward-token)
2008 (prolog-smie-rules): New funs.
2009 (prolog-comment-indent): Remove.
2010 (prolog-mode-variables): Use default comment indentation instead.
2011 Setup SMIE.
2012 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
2013 (prolog-mode): Don't call them any more.
2014 (prolog-electric-colon, prolog-electric-dash)
2015 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
2016
aa0382bd
SM
2017 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
2018
dbacb4bd
SM
2019 * minibuffer.el (completion--twq-all): Again, allow case differences.
2020
13bdd94c
SM
2021 * term.el: Move keymap initialization code to be more idiomatic.
2022 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
2023 (term-terminal-menu): Move initialization into declaration.
2024 (term-escape-char): Let the user set it in her .emacs.
2025
ff46c759
SM
2026 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
2027 Provide SMIE-based indentation (not enabled by default yet).
2028 (sh-mode-map): Don't bind electric keys.
2029 Use electric-pair-mode instead of skeleton-pair.
2030 (sh-assignment-regexp): Fit within 80 columns.
2031 (sh-indent-supported): Specify actual shell name instead of boolean.
2032 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
2033 (sh-maybe-here-document): Use it. Make obsolete.
2034 (sh-electric-here-document-mode) New minor mode.
2035 (sh-mode): Use it. Don't set sh-indent-supported-here here.
2036 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
2037 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
2038 (sh-smie-rc-grammar, sh-use-smie): New vars.
2039 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
2040 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
2041 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
2042 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
2043 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
2044 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
2045 (sh-set-shell): Use smie-setup if requested.
2046
dee6c9a3
SM
2047 * term.el (term-set-escape-char): Properly set term-escape-char.
2048 See http://stackoverflow.com/questions/10524656.
2049
9f9aa044
CY
20502012-05-10 Chong Yidong <cyd@gnu.org>
2051
2052 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
2053 Use url-generic-parse-url, and handle host names and Windows
2054 filenames properly.
2055 (ffap-url-unwrap-remote): Use url-generic-parse-url.
2056 (ffap-url-unwrap-remote): Accept list values, specifying a list of
2057 URL schemes to work on.
2058 (ffap--toggle-read-only): New function.
2059 (ffap-read-only, ffap-read-only-other-window)
2060 (ffap-read-only-other-frame): Use it.
2061 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
2062 necessary for ffap-url-unwrap-remote.
2063
836d29b3
DA
20642012-05-10 Dave Abrahams <dave@boostpro.com>
2065
2066 * cus-start.el (create-lockfiles): Add it.
2067
00fd78ed
CY
20682012-05-09 Chong Yidong <cyd@gnu.org>
2069
2070 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
2071 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
2072
666b903b 20732012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1cb51c12
SM
2074
2075 * shell.el (shell-completion-vars): Fix last change (bug#11348).
2076
666b903b 20772012-05-09 Chong Yidong <cyd@gnu.org>
18f00515
CY
2078
2079 * ansi-color.el (ansi-color-process-output): Check for validity of
2080 comint-last-output-start before using it. This avoids a bad
2081 interaction with gdb-mi's input/output buffer.
2082
666b903b 20832012-05-09 Glenn Morris <rgm@gnu.org>
fd075e7b
GM
2084
2085 * files.el (dir-locals-read-from-file):
2086 Mention dir-locals in any error message.
2087
666b903b 20882012-05-09 Chong Yidong <cyd@gnu.org>
25f292cd
CY
2089
2090 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
2091 package (Bug#11410).
2092
f677562b
CY
2093 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
2094 variables into description.
2095
666b903b 20962012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3d53ee1b
SM
2097
2098 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
2099 shell-delimiter-argument-list (bug#11348).
2100 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
2101
b499d8d0
JB
21022012-05-09 Juanma Barranquero <lekktu@gmail.com>
2103
8f6b6da8
JB
2104 * textmodes/rst.el: Silence byte-compiler warnings.
2105 (rst-re-alist, rst-reset-section-caches): Move around.
2106 (rst-re): Use `characterp', not `char-valid-p'.
2107 (font-lock-beg, font-lock-end): Declare.
2108
4824146a
JB
2109 * progmodes/idlw-shell.el (specs): Remove reference to deleted
2110 variable `idlwave-shell-activate-alt-keybindings' and simplify.
2111
b499d8d0
JB
2112 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
2113
ad89bb83
GM
21142012-05-08 Glenn Morris <rgm@gnu.org>
2115
2116 * files.el (auto-mode-alist): Treat ".make" like ".mk".
2117
8bba5a75
SM
21182012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2119
49ed9c8e
SM
2120 * vc/log-edit.el: Add GNU coding standards highlighting.
2121 (log-edit-font-lock-gnu-style)
2122 (log-edit-font-lock-gnu-keywords): New vars.
2123 (log-edit-font-lock-keywords): New fun.
2124 (log-edit-mode): Don't fold case in font-lock.
2125 (log-edit-font-lock-keywords): Do not assume case-folding.
2126
07d00b56
SM
2127 * imenu.el: Misc cleanup. Make docstrings out of comments.
2128 Use lexical-binding.
2129 (imenu--index-alist, imenu--last-menubar-index-alist)
2130 (imenu-menubar-modified-tick): Use defvar-local.
2131 (imenu--split-menu): Remove unused var.
2132 (imenu--cleanup-seen): Declare as global.
2133 (imenu--cleanup): Use dolist.
2134
8bba5a75
SM
2135 * subr.el (defvar-local): Add debug spec and doc-string position.
2136
5075bdb5
GM
21372012-05-08 Glenn Morris <rgm@gnu.org>
2138
c052c904
GM
2139 * lisp/language/burmese.el, language/cham.el, language/czech.el:
2140 * language/english.el, language/georgian.el, language/greek.el:
2141 * language/japanese.el, language/khmer.el, language/korean.el:
2142 * language/lao.el, language/misc-lang.el, language/romanian.el:
2143 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
2144 * language/thai.el, language/utf-8-lang.el:
2145 Remove no-byte-compile setting.
2146
5075bdb5
GM
2147 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
2148
06f679a7
AH
21492012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2150
2151 * progmodes/make-mode.el (makefile-browse):
2152 Remove unnecessary interactive. (Bug#11324)
2153
03794570
GM
21542012-05-07 Glenn Morris <rgm@gnu.org>
2155
af8630f4
GM
2156 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
2157
03794570
GM
2158 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
2159
f0809a9d
SM
21602012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2161
28be5ce7
SM
2162 * loadup.el: Preload newcomment.el.
2163 * newcomment.el: Move autoload-only code to toplevel.
2164
f0809a9d
SM
2165 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
2166 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
2167 Handle new :right-align column property.
2168 (tabulated-list-print-col): Idem, plus use `display' text-property to
2169 try and preserve alignment for variable pitch fonts.
2170
1241b724
CY
21712012-05-07 Chong Yidong <cyd@gnu.org>
2172
2173 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
2174 (tabulated-list-use-header-line): New var.
2175 (tabulated-list-init-header): Use it.
2176 (tabulated-list-print-fake-header): New function.
2177 (tabulated-list-print): Use it.
2178 (tabulated-list-sort-button-map): Add non-header-line commands.
2179 (tabulated-list-init-header): Add column name property to basic
2180 labels as well.
2181 (tabulated-list-col-sort): Handle non-header-line button case.
2182 (tabulated-list--sort-by-column-name): Fix a corner case.
2183
f0809a9d
SM
2184 * buff-menu.el (list-buffers--refresh):
2185 Handle Buffer-menu-use-header-line.
1241b724 2186
e5f9458f
CY
21872012-05-06 Chong Yidong <cyd@gnu.org>
2188
2189 * buff-menu.el: Convert to Tabulated List mode.
2190 (Buffer-menu-buffer+size-width): Make obsolete.
2191 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
2192 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
2193 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
2194 documentation into docstring of buffer-menu.
2195 (Buffer-menu-toggle-files-only): Add an informative message.
2196 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
2197 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
2198 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
2199 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
2200 (Buffer-menu-execute, Buffer-menu-select)
2201 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
2202 (Buffer-menu-bury): Use Tabulated List machinery.
2203 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
2204 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
f0809a9d 2205 Delete.
e5f9458f
CY
2206 (list-buffers--refresh): New function.
2207 (list-buffers-noselect): Use it.
2208 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
2209 (Buffer-menu--pretty-file-name): New helper functions.
2210
2211 * loadup.el: Preload tabulated-list.
2212
2213 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
2214 tabulated-list-sort-column.
2215 (tabulated-list-init-header): Add the initial aligning space even
2216 if tabulated-list-padding is zero.
2217
e129292c
CS
22182012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
2219
2220 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
2221 whose cdr is not a cons cell correctly (bug#11038).
2222
6632d361
CY
22232012-05-06 Chong Yidong <cyd@gnu.org>
2224
e129292c
CS
2225 * emacs-lisp/tabulated-list.el (tabulated-list-format):
2226 Accept additional plist in column descriptors.
6632d361
CY
2227 (tabulated-list-init-header): Obey it.
2228 (tabulated-list-get-entry): New function.
2229 (tabulated-list-put-tag): Use it. Use string-width instead of
2230 length.
2231 (tabulated-list--column-number): New function.
2232 (tabulated-list-print): Use it.
e129292c
CS
2233 (tabulated-list-print-col): New function.
2234 Set `tabulated-list-column-name' property on each column's text.
6632d361 2235 (tabulated-list-print-entry): Use it.
e129292c
CS
2236 (tabulated-list-delete-entry, tabulated-list-set-col):
2237 New functions.
6632d361
CY
2238 (tabulated-list-sort-column): New command (Bug#11337).
2239
3cc99f68
CY
2240 * buff-menu.el (list-buffers): Move C-x C-b binding from
2241 buff-menu.el to bindings.el.
2242
2243 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
2244 :advertised-binding feature.
2245
52b61776
TN
22462012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
2247
2248 * progmodes/compile.el (compilation-internal-error-properties):
2249 Calculate start position correctly when end-col is set but
2250 end-line is not (Bug#11382).
2251
ebfe2597
WJ
22522012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
2253
2254 * man.el (Man-unindent): Use text-property-default-nonsticky to
2255 prevent untabify from inheriting face properties (Bug#11408).
2256
6d3f7c2f
SM
22572012-05-05 Stefan Merten <smerten@oekonux.de>
2258
2259 * textmodes/rst.el: Major merge with upstream development up to
2260 Docutils SVN r7399 / rst.el V1.2.1.
2261
2262 Clarify maintainership and authors.
2263
2264 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
2265 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
2266 (rst-official-version, rst-official-cvs-rev, rst-version)
2267 (rst-package-emacs-version-alist): New functions and variables
2268 for version information.
2269
2270 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
2271 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
2272 (rst-mode-syntax-table, rst-mode): New and corrected functions
2273 and variables representing reStructuredText features.
2274
2275 (rst-re): New function for reStructuredText regexes. Use in
2276 many places.
2277
2278 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
2279 (rst-mode-map): Rebind keys.
2280
2281 (rst-mode-lazy, rst-font-lock-keywords)
2282 (rst-font-lock-extend-region)
2283 (rst-font-lock-extend-region-internal)
2284 (rst-font-lock-extend-region-extend)
2285 (rst-font-lock-find-unindented-line-limit)
2286 (rst-font-lock-find-unindented-line-match)
2287 (rst-adornment-level, rst-font-lock-adornment-level)
2288 (rst-font-lock-adornment-match)
2289 (rst-font-lock-handle-adornment-pre-match-form)
2290 (rst-font-lock-handle-adornment-matcher): Major revision of
2291 font-locking. Integrate with other code. Use `jit-lock-mode'.
2292
2293 (rst-preferred-adornments, rst-adjust-hook)
2294 (rst-new-adornment-down, rst-preferred-bullets)
2295 (rst-preferred-bullets, rst-indent, rst-indent-width)
2296 (rst-indent-field, rst-indent-literal-normal)
2297 (rst-indent-literal-minimized, rst-indent-comment): Change,
2298 extend and improve customization.
2299
2300 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
2301 (rst-normalize-cursor-position, rst-get-decoration)
2302 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
2303 (rst-rstrip, rst-toc-insert-find-delete-contents)
2304 (rst-shift-fill-region, rst-compute-bullet-tabs)
2305 (rst-debug-print-tabs, rst-debug-mark-found)
2306 (rst-shift-region-guts, rst-shift-region-right)
2307 (rst-shift-region-left, rst-use-char-classes)
2308 (rst-font-lock-keywords-function)
2309 (rst-font-lock-indentation-point)
2310 (rst-font-lock-find-unindented-line-begin)
2311 (rst-font-lock-find-unindented-line-end)
2312 (rst-font-lock-find-unindented-line)
2313 (rst-font-lock-adornment-point, rst-font-lock-level)
2314 (rst-adornment-level-alist): Remove functions and variables.
2315
2316 (rst-compare-adornments, rst-get-adornment-match)
2317 (rst-suggest-new-adornment, rst-get-adornments-around)
2318 (rst-adornment-complete-p, rst-get-next-adornment)
2319 (rst-adjust-adornment, rst-display-adornments-hierarchy)
2320 (rst-straighten-adornments): Standardize function names to
2321 use "adornment" instead of "decoration". Correct callers.
2322 Similar standardizing in many places.
2323
2324 (rst-update-section, rst-adjust, rst-promote-region)
2325 (rst-enumerate-region, rst-bullet-list-region)
2326 (rst-repeat-last-character): Correct use of `interactive'.
2327
2328 (rst-classify-adornment, rst-find-all-adornments)
2329 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
2330 (rst-find-leftmost-column, rst-repeat-last-character):
2331 Refactor functions.
2332
2333 (rst-find-title-line, rst-reset-section-caches)
2334 (rst-get-adornments-around, rst-adjust-adornment-work)
2335 (rst-arabic-to-roman, rst-roman-to-arabic)
2336 (rst-insert-list-pos, rst-insert-list-new-item)
2337 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
2338 New functions.
2339
2340 (rst-all-sections, rst-section-hierarchy)
2341 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
2342 New variables.
2343
2344 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
2345 configuration instead of only buffer. Change where necessary.
2346
2347 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
2348 (rst-shift-region, rst-adaptive-fill): New functions for
2349 indentation and filling.
2350
2351 (rst-comment-line-break, rst-comment-indent)
2352 (rst-comment-insert-comment, rst-comment-region)
2353 (rst-uncomment-region): New functions for handling comments.
2354
2355 (rst-compile): Quote shell arguments.
2356
2357 (rst-compile-pdf-preview, rst-compile-slides-preview):
2358 Delete temporary files after use.
2359
a43f98b3
GM
23602012-05-05 Glenn Morris <rgm@gnu.org>
2361
48176e8b
GM
2362 * calendar/cal-html.el: Optionally include holidays in the output.
2363 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
2364 (cal-html-holidays): New option.
2365 (cal-html-css-default): Add holiday entry.
2366 (holiday-in-range): Autoload it.
2367 (cal-html-htmlify-entry): Add optional class argument.
2368 (cal-html-htmlify-list): Add optional holidays argument.
2369 (cal-html-insert-agenda-days): Include holidays in the output.
2370 (cal-html-one-month): Maybe include holidays.
2371
a43f98b3
GM
2372 * calendar/holidays.el (holiday-in-range):
2373 Move here from cal-tex-list-holidays.
2374 * calendar/cal-tex.el (cal-tex-list-holidays):
2375 Make it an obsolete alias for holiday-in-range. Update all callers.
2376
fef9d149 23772012-05-05 Chong Yidong <cyd@gnu.org>
eceeb5fc
CY
2378
2379 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
2380 Nextstep.
2381
248da2f4
RW
23822012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
2383
2384 * files.el (file-auto-mode-skip): New var.
2385 (set-auto-mode-1): Use it.
2386
f95e9344
SM
23872012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2388
df96ab1e
SM
2389 * repeat.el: Use lexical-binding.
2390 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
2391 (repeat-undo-count): Remove.
2392 (repeat):
2393 * progmodes/octave-mod.el (octave-abbrev-start):
2394 * progmodes/f90.el (f90-abbrev-start):
2395 * face-remap.el (text-scale-adjust):
2396 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
2397
5342bb06
SM
2398 * emacs-lisp/pcase.el (pcase--let*): New function.
2399 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
2400 a bit more.
2401 (pcase--split-pred): Be more clever about ruling out overlap between
2402 a predicate and some constant pattern.
2403 (pcase--q1): Use `null' instead of (eq foo nil).
2404
f95e9344
SM
2405 * subr.el (setq-local, defvar-local): New macros.
2406 (kbd): Redefine as an alias.
2407 (with-selected-window): Leave unrelated frames alone.
2408 (set-temporary-overlay-map): New function.
2409
71873e2b
SM
24102012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2411
2412 * subr.el (user-error): New function.
2413 * window.el (switch-to-buffer):
2414 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
2415 (smerge-match-conflict):
2416 * simple.el (previous-matching-history-element)
2417 (next-matching-history-element, goto-history-element, undo-more)
2418 (undo-start):
2419 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
2420 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
2421 (next-file, tags-loop-scan, list-tags, complete-tag):
2422 * progmodes/compile.el (compilation-loop):
2423 * mouse.el (mouse-minibuffer-check):
2424 * man.el (Man-bgproc-sentinel, Man-goto-page):
2425 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
2426 (Info-history-forward, Info-follow-reference, Info-menu)
2427 (Info-extract-menu-item, Info-extract-menu-counting)
2428 (Info-forward-node, Info-backward-node, Info-next-menu-item)
2429 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
2430 (Info-next-reference, Info-prev-reference, Info-index)
2431 (Info-index-next, Info-follow-nearest-node)
2432 (Info-copy-current-node-name):
2433 * imenu.el (imenu--make-index-alist)
2434 (imenu-default-create-index-function, imenu-add-to-menubar):
2435 * files.el (basic-save-buffer, recover-file):
2436 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2437 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
2438 (checkdoc-message-text, checkdoc-defun):
2439 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
2440 * cus-edit.el (customize-changed-options, customize-rogue)
2441 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
2442 (custom-variable-mark-to-reset-standard)
2443 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
2444 (custom-file):
2445 * completion.el (check-completion-length):
2446 * comint.el (comint-search-arg)
2447 (comint-previous-matching-input-string-position)
2448 (comint-previous-matching-input)
2449 (comint-replace-by-expanded-history-before-point, comint-send-input)
2450 (comint-copy-old-input, comint-backward-matching-input)
2451 (comint-goto-process-mark, comint-set-process-mark):
2452 * calendar/calendar.el (calendar-cursor-to-date): Use it.
2453 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
2454
8a61ee22
SM
24552012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2456
66408d1e
SM
2457 * dabbrev.el (dabbrev--ignore-case-p): New function.
2458 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
2459 Use it.
2460
8a61ee22
SM
2461 * files.el (automount-dir-prefix): Mark as obsolete.
2462
3c74813a
GM
24632012-05-04 Glenn Morris <rgm@gnu.org>
2464
2465 * patcomp.el, play/bruce.el: Move to obsolete/.
2466
0bfcf5c5
PE
24672012-05-04 Paul Eggert <eggert@cs.ucla.edu>
2468
2469 Fix minor Y10k bugs.
2470 * arc-mode.el (archive-unixdate):
2471 * autoinsert.el (auto-insert-alist):
2472 * calc/calc-forms.el (math-this-year):
2473 * emacs-lisp/copyright.el (copyright-current-year)
2474 (copyright-update-year, copyright):
2475 * tar-mode.el (tar-clip-time-string):
2476 * time.el (display-time-update):
2477 Don't assume years have 4 digits.
2478
78f3273a
CY
24792012-05-04 Chong Yidong <cyd@gnu.org>
2480
2481 * dos-w32.el (file-name-buffer-file-type-alist)
2482 (direct-print-region-use-command-dot-com):
2483 * ffap.el (ffap-menu-regexp):
2484 * find-file.el (ff-special-constructs):
2485 * follow.el (follow-debug):
2486 * forms.el (forms--debug):
2487 * iswitchb.el (iswitchb-all-frames):
2488 * ido.el (ido-all-frames):
2489 * emacs-lisp/timer.el (timer-max-repeats):
2490 * mail/feedmail.el (feedmail-mail-send-hook)
2491 (feedmail-mail-send-hook-queued):
2492 * mail/footnote.el (footnote-signature-separator):
2493 * mail/mailabbrev.el (mail-alias-separator-string)
2494 (mail-abbrev-mode-regexp):
2495 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
2496 * progmodes/idlwave.el (idlwave-libinfo-file)
2497 (idlwave-default-completion-case-is-down)
2498 (idlwave-library-routines): Convert defvars to defcustoms.
2499
2500 * mail/rmail.el (rmail-decode-mime-charset):
2501 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
2502 (idlwave-shell-fix-inserted-breaks)
2503 (idlwave-shell-activate-alt-keybindings)
2504 (idlwave-shell-use-breakpoint-glyph):
2505 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
2506
f7ae6719
SM
25072012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
2508
2509 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
2510
47086495
WS
25112012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
2512
2513 * progmodes/verilog-mode.el (font-lock-keywords):
2514 Fix mis-highligting auto. Reported by Craig Barner.
2515 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
2516 defines from global name space. Reported by Dan Dever.
2517 (verilog-auto-reset, verilog-auto-reset-widths)
2518 (verilog-auto-tieoff): Support using unbased numbers for
2519 AUTORESET and AUTOTIEOFF.
2520 (verilog-submit-bug-report): Update variable list.
2521 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
2522 parenthesis from not matching. Reported by Michael Rytting.
2523 (verilog-auto-template-lint): Fix hash error when linting modules
2524 with no used templates.
2525 (verilog-warn, verilog-warn-error)
2526 (verilog-warn-fatal): When non-interactive report multiple
2527 warnings before exiting. Suggested by Brad Dobbie.
2528 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
2529 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
2530 to report unused template errors. Reported by Brad Dobbie.
2531 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
2532 nets, bug438. Reported by Vns Blore.
2533 (verilog-auto-inout-module, verilog-auto-reg)
2534 (verilog-read-decls, verilog-read-sub-decls-sig)
2535 (verilog-signals-edit-wire-reg, verilog-signals-with):
2536 Fix passing of Verilog data types in ANSI input/output ports
2537 such as "output logic" into the AUTOs. Special case "wire" and
2538 "reg" for backwards compatibility presuming Verilog 2001.
2539 (verilog-auto-ascii-enum): Add "auto enum" as alias.
2540 (verilog-preprocess): Fix replication of preprocess output.
2541 Reported by Brad Dobbie.
2542 (verilog-auto-inst-interfaced-ports):
2543 Create verilog-auto-inst-interfaced-ports, bug429.
2544 Reported by Julian Gorfajn.
2545 (verilog-after-save-font-hook)
2546 (verilog-before-save-font-hook): New variable.
2547 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
2548 (verilog-save-font-mods): Wrap disabling fontification, reported
2549 by David Rogoff.
2550 (verilog-do-indent, verilog-pretty-declarations-auto)
2551 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
2552 Reported by Pierre-David Pfister.
2553 (verilog-set-auto-endcomments): Fix endtask auto comments outside
2554 of class declarations, bug292. Reported by Kevin Heilman.
2555 (verilog-read-decls): Fix 'parameter type' not appearing in
2556 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
2557 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
2558 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
2559 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
2560 Reported by David Kravitz.
2561
25622012-05-03 Michael McNamara <mac@mail.brushroad.com>
2563
2564 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
2565 assignment with tests in ifs and for loops.
2566 (verilog-extended-complete-re, verilog-complete-reg): Change so
2567 that DPI inport functions don't look like fuction declarations.
2568 (verilog-pretty-expr): Don't line up assignment
2569 operations to the test and increment in if and for loops
2570 (verilog-extended-complete-re, verilog-complete-reg): Change so
2571 that DPI inport functions don't look like fuction declarations
2572
2e51d4b5
KH
25732012-05-03 Kenichi Handa <handa@m17n.org>
2574
2575 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
c846da43 2576 decoding, and show a warning message without signaling an error
2e51d4b5
KH
2577 (Bug#11282).
2578
2bd785a2
SM
25792012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
2580
2581 * emacs-lisp/bytecomp.el
2582 (byte-compile-file-form-custom-declare-variable): Compile all elements,
2583 since cconv.el might have introduced :fun-body, internal-make-closure,
2584 and friends for bytecomp to handle (bug#11391).
2585 * custom.el (defcustom): Avoid ((λ ..) ..).
2586
99d27583
SM
25872012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2588
2589 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
2590
55a71479
JB
25912012-05-02 Juanma Barranquero <lekktu@gmail.com>
2592
2593 * notifications.el (dbus-debug):
2594 * term/linux.el (gpm-mouse-enable):
2595 * term/screen.el (xterm-register-default-colors): Declare.
2596
7b97c764
CY
25972012-05-02 Chong Yidong <cyd@gnu.org>
2598
2bc356d7
CY
2599 * cus-start.el (gc-cons-percentage, exec-suffixes)
2600 (dos-display-scancodes, dos-hyper-key, dos-super-key)
2601 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
2602 (make-cursor-line-fully-visible, void-text-area-pointer)
2603 (font-list-limit): Add customization data.
2604
7b97c764
CY
2605 * allout.el (allout-exposure-change-functions)
2606 (allout-structure-added-functions)
2607 (allout-structure-deleted-functions)
2608 (allout-structure-shifted-functions): Rename abnormal hooks from
2609 *-hook, and convert to defcustoms.
5d3385a0
JB
2610 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
2611 Convert to defcustoms.
7b97c764
CY
2612 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
2613
2614 * allout-widgets.el: Hook callers changed.
2615
90207a15 26162012-05-02 Eli Zaretskii <eliz@gnu.org>
91af76bf
EZ
2617
2618 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
2619 the yanked message in preference to the default value of
2620 buffer-file-coding-system.
2621
90207a15 26222012-05-02 Martin Rudalics <rudalics@gmx.at>
d9558cad 2623
5d3385a0
JB
2624 * window.el (display-buffer--action-function-custom-type):
2625 Fix entry.
d9558cad 2626
90207a15 26272012-05-02 Alan Mackenzie <acm@muc.de>
09affde0
AM
2628
2629 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
2630
d80ac57b
GM
26312012-05-01 Glenn Morris <rgm@gnu.org>
2632
976f7668
GM
2633 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
2634
beb83b5a
GM
2635 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
2636
d80ac57b
GM
2637 * cus-edit.el (custom-variable-documentation): Simplify with format.
2638
b593d6a9
AH
26392012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2640 Stefan Monnier <monnier@iro.umontreal.ca>
2641
2642 * simple.el (suggest-key-bindings, execute-extended-command):
2643 Move from keyboard.c.
2644
782fbf2a
CY
26452012-05-01 Chong Yidong <cyd@gnu.org>
2646
2647 * follow.el: Eliminate advice.
2648 (set-process-filter, process-filter, sit-for): Advice deleted.
2649 (follow-mode-off-hook): Obsolete hook removed.
b593d6a9
AH
2650 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
2651 Vars deleted.
782fbf2a
CY
2652 (follow-auto): Use a :set function.
2653 (follow-mode): Rewritten. Don't advise process filters.
2654 (follow-switch-to-current-buffer-all, follow-scroll-up)
2655 (follow-scroll-down): Assume follow-mode is bound.
2656 (follow-comint-scroll-to-bottom)
2657 (follow-align-compilation-windows): New functions.
2658 (follow--window-sorter): New function.
2659 (follow-all-followers): Use it to explicitly sort windows by their
2660 positions; don't make assumptions about next-window order.
2661 (follow-windows-start-end, follow-delete-other-windows-and-split)
2662 (follow-calc-win-start): Doc fix.
2663 (follow-windows-aligned-p, follow-select-if-visible): Don't call
2664 vertical-motion unnecessarily.
2665 (follow-adjust-window): New function.
2666 (follow-post-command-hook): Use it.
2667 (follow-call-set-process-filter, follow-call-process-filter)
2668 (follow-intercept-process-output, follow-tidy-process-filter-alist)
2669 (follow-stop-intercept-process-output, follow-generic-filter):
2670 Functions deleted.
2671 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
b593d6a9
AH
2672 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
2673 New functions, replacing advice on scroll-bar-* commands.
87233a14 2674 (follow-mwheel-scroll): New function (Bug#4112).
782fbf2a
CY
2675
2676 * comint.el (comint-adjust-point): New function.
b593d6a9
AH
2677 (comint-postoutput-scroll-to-bottom): Use it.
2678 Call follow-comint-scroll-to-bottom for Follow mode buffers.
782fbf2a 2679
290af740
GM
26802012-05-01 Glenn Morris <rgm@gnu.org>
2681
2682 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
2683 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
2684 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
2685 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
2686 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
2687 Remove no-byte-compile setting.
2688
6eac8dc9
SM
26892012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2690
2691 * minibuffer.el (completion-table-with-quoting): Fix compatibility
2692 all-completions code to not return a number in the last cdr.
2693
9cc7819c
LL
26942012-04-30 Leo Liu <sdl.web@gmail.com>
2695
2696 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
2697 read-only error.
2698
c93b886f
CY
26992012-04-29 Chong Yidong <cyd@gnu.org>
2700
2701 * follow.el (follow-calc-win-end): Rewrite to handle partial
2702 screen lines correctly (Bug#8390).
2703 (follow-avoid-tail-recenter): Minor cleanup.
2704
8b6c19f4
SM
27052012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
2706
2707 Avoid the obsolete `assoc' package.
2708 * speedbar.el (speedbar-refresh): Avoid adelete.
2709 (speedbar-file-lists): Simplify and avoid aput.
2710 * man.el (Man--sections, Man--refpages): New vars, replacing
2711 Man-sections-alist and Man-refpages-alist.
2712 (Man-build-section-alist, Man-build-references-alist):
2713 Use them; avoid aput.
2714 (Man--last-section, Man--last-refpage): New vars.
2715 (Man-follow-manual-reference): Use them.
2716 Use the `default' arg of completing-read.
2717 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
2718
c5bb7569
CY
27192012-04-27 Chong Yidong <cyd@gnu.org>
2720
d1d2e2e8
CY
2721 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
2722
15cd8efd
CY
2723 * startup.el (x-apply-session-resources): New function.
2724
2725 * term/ns-win.el (ns-initialize-window-system):
2726 * term/w32-win.el (w32-initialize-window-system):
2727 * term/x-win.el (x-initialize-window-system): Use it to properly
2728 set menu-bar-mode and other vars from X resources, even if the
2729 initial frame is not a window-system frame (Bug#2299).
2730
c5bb7569
CY
2731 * subr.el (read-key): Avoid running filter function when setting
2732 up temporary tool bar entries (Bug#9922).
2733
a8e7d6d7 27342012-04-27 Andreas Schwab <schwab@linux-m68k.org>
c4347ab9
AS
2735
2736 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
2737 (Bug#11344)
2738
a8e7d6d7 27392012-04-27 Chong Yidong <cyd@gnu.org>
acb71f1d
CY
2740
2741 * select.el (xselect--encode-string): New function, split from
2742 xselect-convert-to-string.
2743 (xselect-convert-to-string): Use it.
2744 (xselect-convert-to-filename, xselect-convert-to-os)
2745 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
2746 returned strings are properly encoded (Bug#11315).
2747
a8e7d6d7 27482012-04-27 Chong Yidong <cyd@gnu.org>
d55486c7
CY
2749
2750 * simple.el (delete-active-region): Move to killing custom group.
2751
a8e7d6d7 27522012-04-27 Andreas Schwab <schwab@linux-m68k.org>
581b6788
AS
2753
2754 * progmodes/which-func.el (which-func-current): Quote %
2755 characters for mode-line processing.
2756
578c1d4b 27572012-04-27 Chong Yidong <cyd@gnu.org>
18edb22d
CY
2758
2759 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
2760 reaching eob (Bug#11286).
2761
a8e7d6d7 27622012-04-27 Eli Zaretskii <eliz@gnu.org>
9ee9f470
EZ
2763
2764 * progmodes/gdb-mi.el (gdb-control-level): New variable.
2765 (gdb): Make it buffer-local and init to zero.
2766 (gdb-control-commands-regexp): New variable.
2767 (gdb-send): Don't wrap in "-interpreter-exec console" if
2768 gdb-control-level is positive. Increment gdb-control-level
2769 whenever the command matches gdb-control-commands-regexp, and
2770 decrement it each time the command is "end". (Bug#11279)
2771
a8e7d6d7 27722012-04-27 Martin Rudalics <rudalics@gmx.at>
41cfe0cb
MR
2773
2774 * window.el (adjust-window-trailing-edge, enlarge-window)
2775 (shrink-window, window-resize):
2776 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
2777 windows (Bug#11276).
2778
b3608390
CY
27792012-04-27 Chong Yidong <cyd@gnu.org>
2780
2781 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
a8e7d6d7 2782 fix "missing prefix" warning. All callers changed.
b3608390 2783
797e6e88
SM
27842012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
2785
2786 * emacs-lisp/assoc.el: Move to obsolete/.
2787
e95a67dc
SM
27882012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2789
657c21e4 2790 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
e95a67dc
SM
2791
2792 * term/ns-win.el (ns-define-service):
2793 * progmodes/pascal.el (pascal-goto-defun):
2794 * progmodes/js.el (js--read-tab):
2795 * progmodes/etags.el (tags-lazy-completion-table):
2796 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
2797 * emacs-lisp/ewoc.el (ewoc--wrap):
2798 * emacs-lisp/assoc.el (aput, adelete, amake):
2799 * doc-view.el (doc-view-convert-current-doc):
2800 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
2801
cb3e7ae0
CY
28022012-04-26 Chong Yidong <cyd@gnu.org>
2803
dce04f7f
CY
2804 * image.el (image-type-from-buffer): Only return supported image
2805 type (Bug#9045).
2806
cb3e7ae0
CY
2807 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
2808 value, for symmetry with diff-end-of-hunk.
2809 (diff-split-hunk, diff-find-source-location)
2810 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
2811 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
2812 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
2813 compute the relevant hunk or file properly (Bug#6005).
2814 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
2815
0d42eb3e
SM
28162012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2817
2818 * vc/vc-mtn.el:
2819 * vc/vc-hg.el:
2820 * vc/vc-git.el:
2821 * vc/vc-dir.el:
2822 * vc/vc-cvs.el:
2823 * vc/vc-bzr.el:
2824 * vc/vc-arch.el:
2825 * vc/vc.el: Replace lexical-let by lexical-binding.
2826 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
2827 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
2828 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
2829
f08ae1c9
CY
28302012-04-26 Chong Yidong <cyd@gnu.org>
2831
8b71081d
CY
2832 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
2833 (diff-mode-shared-map): Bind it to / and [remap undo].
2834
f08ae1c9
CY
2835 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
2836 (ediff-window-setup-function): Use it as the default, to set up
2837 windows based on whether the current frame is graphical (Bug#2138).
2838 (ediff-choose-window-setup-function-automatically): Make obsolete.
2839
2840 * vc/ediff-init.el: Always define ediff-pixel-width/height.
2841
ef24141c
SM
28422012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
2843
cc356a5d
SM
2844 * ffap.el: Remove old code for obsolete package.
2845 (ffap-complete-as-file-p): Remove.
2846
b4ff4f1f
SM
2847 Use completion-table-with-quoting for comint and pcomplete.
2848 * comint.el (comint--unquote&requote-argument)
2849 (comint--unquote-argument, comint--requote-argument): New functions.
2850 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
2851 (comint-quote-filename): Use regexp-opt-charset.
2852 (comint--common-suffix, comint--common-quoted-suffix)
2853 (comint--table-subvert): Remove.
2854 (comint-unquote-function, comint-requote-function): New vars.
2855 (comint--complete-file-name-data): Use them with
2856 completion-table-with-quoting.
2857 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
2858 * pcomplete.el (pcomplete-arg-quote-list)
2859 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
2860 (pcomplete-unquote-argument-function): Default to non-nil.
2861 (pcomplete-unquote-argument): Simplify.
2862 (pcomplete--common-quoted-suffix): Remove.
2863 (pcomplete-requote-argument-function): New var.
2864 (pcomplete--common-suffix): New function.
2865 (pcomplete-completions-at-point): Use completion-table-with-quoting
2866 and completion-table-subvert.
2867
79c4eeb4
SM
2868 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
2869 (minibuffer--double-dollars): Preserve properties.
2870 (completion--sifn-requote): New function.
2871 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
2872
ef24141c
SM
2873 * minibuffer.el: Add support for completion of quoted/escaped data.
2874 (completion-table-with-quoting, completion-table-subvert): New funs.
2875 (completion--twq-try, completion--twq-all): New functions.
2876 (completion--nth-completion): New function.
2877 (completion-try-completion, completion-all-completions): Use it.
2878
784e7d6e
LL
28792012-04-25 Leo Liu <sdl.web@gmail.com>
2880
dd2ac746
SM
2881 * progmodes/python.el (python-pdbtrack-get-source-buffer):
2882 Use compilation-message if available to find real filename.
784e7d6e 2883
07875ee7
CY
28842012-04-25 Chong Yidong <cyd@gnu.org>
2885
2886 * vc/diff-mode.el (diff-setup-whitespace): New function.
2887 (diff-mode): Use it.
2888
2889 * vc/diff.el (diff-sentinel):
2890 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
2891 Whitespace mode variables based on diff style (Bug#8612).
2892
5055880d
LL
28932012-04-25 Leo Liu <sdl.web@gmail.com>
2894
daf75653
LL
2895 * progmodes/python.el (python-send-region): Add suffix .py to the
2896 temp file.
2897
5055880d
LL
2898 * files.el (auto-mode-alist): Use javascript-mode instead.
2899
db9b177b
AH
29002012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
2901
ef24141c 2902 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
db9b177b
AH
2903
2904 * soap-client.el (soap-resolve-references-for-sequence-type)
ef24141c 2905 (soap-resolve-references-for-array-type): Hack to prevent self
db9b177b 2906 references, see Bug#9.
ef24141c 2907 (soap-parse-envelope): Report the contents of the 'detail' node
db9b177b 2908 when receiving a fault reply.
ef24141c 2909 (soap-parse-envelope): Report the contents of the entire 'detail' node.
db9b177b
AH
2910
2911 * soap-inspect.el (soap-sample-value-for-simple-type)
ef24141c 2912 (soap-inspect-simple-type): New function.
db9b177b 2913
ef24141c 2914 * soap-client.el (soap-simple-type): New struct.
db9b177b 2915 (soap-default-xsd-types, soap-default-soapenc-types)
ef24141c
SM
2916 (soap-decode-basic-type, soap-encode-basic-type):
2917 support unsignedInt and double basic types.
db9b177b 2918 (soap-resolve-references-for-simple-type)
ef24141c
SM
2919 (soap-parse-simple-type, soap-encode-simple-type): New function.
2920 (soap-parse-schema): Parse xsd:simpleType declarations.
db9b177b
AH
2921
2922 * soap-client.el (soap-default-xsd-types)
ef24141c
SM
2923 (soap-default-soapenc-types): Add integer, byte and anyURI types.
2924 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
2925 the local name of "soapenc:Array".
2926 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
db9b177b
AH
2927 decoding integer, byte and anyURI xsd types.
2928
1fc6097b
CY
29292012-04-25 Chong Yidong <cyd@gnu.org>
2930
2931 * cus-edit.el (custom-buffer-create-internal): Update header text.
2932
afc6df87
EZ
29332012-04-25 Eli Zaretskii <eliz@gnu.org>
2934
2935 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
2936 settings on 'system-type', not on 'window-system'. On MS-Windows,
2937 set interactive-mode on in GDB.
2938
dfbd787f
SM
29392012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2940
2941 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
2942 (ruby-syntax-propertize-regexp): Remove.
2943 (ruby-syntax-propertize-function): Split regexp into chunks.
2944 Match following code directly.
2945
85222d44
DG
29462012-04-24 Dmitry Gutov <dgutov@yandex.ru>
2947
51a8ea2a
DG
2948 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
2949 (ruby-syntax-propertize-regexp): New function.
2950 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
2951 by a special keyword.
2952
85222d44
DG
2953 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
2954 (ruby-syntax-general-delimiters-goto-beg)
2955 (ruby-syntax-propertize-general-delimiters): New functions.
2956 (ruby-syntax-propertize-function): Use them to handle GDL.
2957 (ruby-font-lock-keywords): Move old handling of GDL...
2958 (ruby-font-lock-syntactic-keywords): .. to here.
2959 (ruby-calculate-indent): Adjust indentation for GDL.
2960
b613912b
MA
29612012-04-24 Michael Albinus <michael.albinus@gmx.de>
2962
b5380639
MA
2963 * notifications.el (top): Remove unneeded declarations.
2964 (notifications-specification-version): Change to "1.2".
e43042fe 2965 (notifications-interface, notifications-notify-method)
b613912b
MA
2966 (notifications-close-notification-method): Fix docstring.
2967 (notifications-get-capabilities-method): New defconst.
e43042fe
MA
2968 (notifications-notify): Add :action-items, :resident and
2969 :transient hints. Change "image_data" to "image-data" and
2970 "image_path" to "image-path".
b613912b
MA
2971 (notifications-get-capabilities): New defun.
2972
257440aa
LL
29732012-04-24 Leo Liu <sdl.web@gmail.com>
2974
2975 * progmodes/python.el: Move hideshow setup to the end.
2976
b1bac16e
MR
29772012-04-24 Martin Rudalics <rudalics@gmx.at>
2978
2979 * window.el (handle-select-window): Clear echo area since this is
2980 no more done by read_char (Bug#11304).
2981
d81bd059
SM
29822012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2983
2984 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
2985 and `/ M' to filter-derived-mode.
2986 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
2987 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
2988 (ibuffer-mark-by-mode): Use default rather than initial-input.
2989 (ibuffer-filter-by-derived-mode): Autoload and require-match.
2990
c4cf6d91
IA
29912012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
2992
2993 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
2994 (ibuffer-filter-by-derived-mode): New filter.
2995 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
2996
7511ded8
CY
29972012-04-23 Andreas Politz <politza@fh-trier.de>
2998
2999 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
3000
775c916b
CY
30012012-04-23 Chong Yidong <cyd@gnu.org>
3002
3003 * cus-edit.el (customize-apropos, customize-apropos-options):
3004 Disable matching of non-option variables (Bug#11176).
3005 (customize-option, customize-option-other-window)
3006 (customize-changed-options): Doc fix.
3007 (customize-apropos-options, customize-apropos-faces)
3008 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
3009
3010 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
922d37d3 3011 Fix word list splitting (Bug#11132).
46c71e23
CY
3012 (apropos-symbol, apropos-keybinding, apropos-label)
3013 (apropos-property, apropos-function-button)
3014 (apropos-variable-button, apropos-misc-button): New faces.
3015 (apropos-symbol-face, apropos-keybinding-face)
3016 (apropos-label-face, apropos-property-face, apropos-match-face):
3017 Variables removed (Bug#8396).
3018 (apropos-library-button, apropos-format-plist, apropos-print)
3019 (apropos-print-doc, apropos-describe-plist): Callers changed.
775c916b 3020
2df41f9c
MA
30212012-04-23 Michael Albinus <michael.albinus@gmx.de>
3022
3023 * net/xesam.el (xesam-mode-map): Use let-bound map in
3024 initialization. (Bug#11292)
3025
da00640a
AM
30262012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3027
3028 Preserve ispell session localwords when switching back to
3029 original buffer.
3030
3031 * ispell.el (ispell-buffer-session-localwords): New buffer-local
3032 variable to hold buffer session localwords.
3033 (ispell-kill-ispell): add option 'clear to delete session
3034 localwords.
3035 (ispell-command-loop, ispell-change-dictionary)
3036 (ispell-buffer-local-words): Preserve session localwords when
3037 needed.
3038
3039 * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
3040 Preserve session localwords when needed.
3041
f621ccf5
AM
30422012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3043
3044 * ispell.el (ispell-insert-word) Remove unneeded function using
3045 obsolete `translation-table-for-input'.
ef24141c
SM
3046 (ispell-word, ispell-process-line, ispell-complete-word):
3047 Use plain `insert' instead of removed `ispell-insert-word'.
f621ccf5 3048
c2d1019e
CY
30492012-04-22 Chong Yidong <cyd@gnu.org>
3050
3051 * cus-edit.el (custom-variable-menu)
3052 (custom-variable-reset-saved, custom-face-menu)
3053 (custom-face-reset-saved): If there is no saved value, make the
3054 "reset-saved" operation bring back the default (Bug#9509).
3055 (custom-face-state): Properly detect themed faces.
3056
eeddc531
CY
3057 * faces.el (face-spec-set): Stop supporting deprecated form of
3058 third arg.
3059
dcbf5805
MA
30602012-04-22 Michael Albinus <michael.albinus@gmx.de>
3061
3062 Move functions from C to Lisp. Make non-blocking method calls
3063 the default. Implement further D-Bus standard interfaces.
3064
ef24141c
SM
3065 * net/dbus.el (dbus-message-internal): Declare function.
3066 Remove unneeded function declarations.
dcbf5805
MA
3067 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
3068 (dbus-message-type-method-return, dbus-message-type-error)
3069 (dbus-message-type-signal): Declare variables. Remove local
3070 definitions.
3071 (dbus-interface-dbus, dbus-interface-peer)
3072 (dbus-interface-introspectable, dbus-interface-properties)
3073 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
3074 Adapt docstring.
3075 (dbus-interface-objectmanager): New defconst.
3076 (dbus-call-method, dbus-call-method-asynchronously)
3077 (dbus-send-signal, dbus-method-return-internal)
3078 (dbus-method-error-internal, dbus-register-service)
3079 (dbus-register-signal, dbus-register-method): New defuns, moved
3080 from dbusbind.c
3081 (dbus-call-method-handler, dbus-setenv)
ef24141c
SM
3082 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
3083 New defuns.
dcbf5805
MA
3084 (dbus-call-method-non-blocking): Make it an obsolete function.
3085 (dbus-unregister-object, dbus-unregister-service)
3086 (dbus-handle-event, dbus-register-property)
3087 (dbus-property-handler): Obey the new structure of
3088 `bus-registered-objects'.
3089 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
3090 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
3091 Use `dbus-call-method'.
3092
cf20dee0
CY
30932012-04-22 Chong Yidong <cyd@gnu.org>
3094
3095 * cus-edit.el (custom-commands, custom-reset-menu)
3096 (Custom-reset-standard): Tweak labels.
3097 (custom-reset-button-menu): Change default to t.
3098 (custom-buffer-create-internal): For the custom-reset-button-menu
3099 case, put the revert button first.
3100 (custom-group-subtitle): New face.
3101 (custom-group-value-create): Align docstring to a specific column.
3102
3103 * wid-edit.el (widget-documentation-link-add): Don't handle
3104 indentation in this function.
3105 (widget-documentation-string-indent-to): New function.
3106 (widget-documentation-string-value-create): Use it.
3107
3108 * autorevert.el (auto-revert):
3109 * epg-config.el (epg):
3110 * ibuffer.el (ibuffer):
3111 * mpc.el (mpc):
3112 * ses.el (ses):
3113 * eshell/eshell.el (eshell):
3114 * net/ange-ftp.el (ange-ftp):
3115 * progmodes/ebnf2ps.el (postscript):
3116 * progmodes/flymake.el (flymake):
3117 * progmodes/prolog.el (prolog):
3118 * progmodes/verilog-mode.el (verilog-mode):
3119 * progmodes/which-func.el (which-func):
3120 * term/xterm.el (xterm):
3121 * textmodes/picture.el (picture):
3122 * textmodes/tildify.el (tildify):
3123 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
3124 customization buffers.
3125
583e23bd
AM
31262012-04-22 Alan Mackenzie <acm@muc.de>
3127
3128 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
3129 Adding a ) can hide the resulting (..) from searches. Fix it.
3130 Bound the backward search to the position of the existing (.
3131
7dd51bf1
JB
31322012-04-21 Juanma Barranquero <lekktu@gmail.com>
3133
3134 * progmodes/verilog-mode.el (verilog-mode): Check whether
3135 which-func-modes is t before adding verilog-mode.
3136 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
3137
d64a438f
LL
31382012-04-21 Leo Liu <sdl.web@gmail.com>
3139
7dd51bf1 3140 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
d64a438f 3141
081e8d65
MV
31422012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
3143
3144 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
3145 filling of the last column of a table (Bug#5635).
3146 (woman-find-next-control-line): New arg, specifying an additional
3147 regexp component for the control line.
3148 (woman2-roff-buffer): Use it.
3149 (woman-break-table): New function.
3150 (woman2-TS): Use it.
3151
31522012-04-21 Chong Yidong <cyd@gnu.org>
3153
3154 * woman.el (woman-set-buffer-display-table, woman-decode-region)
3155 (woman-horizontal-escapes, woman-negative-vertical-space)
3156 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
3157 (WoMan-warn-ignored): Use ?\s instead of ?\ .
3158
ed571ccb
SM
31592012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3160
3161 * minibuffer.el (completion-file-name-table): Complete user names.
3162
39773899
LL
31632012-04-20 Leo Liu <sdl.web@gmail.com>
3164
3165 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
3166 and pcase-let*.
3167
de6ff46d
CY
31682012-04-20 Chong Yidong <cyd@gnu.org>
3169
3170 * server.el (server-execute): Respect initial-buffer-choice if it
3171 is a string and there are no files to open (Bug#2825).
3172 (server-create-window-system-frame, server-create-tty-frame):
3173 Don't switch buffers here.
2d0e8e61
CY
3174 (server-process-filter): Only try to open a window system frame if
3175 compiled with graphical support (Bug#8314).
de6ff46d 3176
54071013
DN
31772012-04-20 Dan Nicolaescu <dann@gnu.org>
3178
3179 * battery.el (battery-echo-area-format): Display remaining time
3180 for sysfs backend too (Bug#11269).
3181 (battery-linux-sysfs): Fix conditional for the charge.
3182
f30d612a
CY
31832012-04-20 Chong Yidong <cyd@gnu.org>
3184
c07a4c0b 3185 * progmodes/gdb-mi.el (gdb): Revert previous change.
f30d612a
CY
3186 (gdb-inferior-io--init-proc): New function.
3187 (gdb-init-1): Use it.
3188 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
3189 responsible for allocating a new pty and hooking it to gdb when
3190 the old pty gets an EIO due to process exit.
3191 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
3192 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
3193 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
3194
2116e93c
EZ
31952012-04-20 Eli Zaretskii <eliz@gnu.org>
3196
3197 * window.el (window-min-size, window-sizable, window-min-delta)
3198 (window-max-delta, window--resizable, window-resizable)
3199 (window-total-size, window-full-height-p, window-full-width-p)
3200 (window-in-direction, window--resize-mini-window, window-resize)
3201 (window--resize-child-windows-normal)
3202 (window--resize-child-windows, window--resize-siblings)
3203 (window--resize-this-window, adjust-window-trailing-edge)
cd0f830c 3204 (enlarge-window, shrink-window): Doc fixes.
2116e93c 3205
c07a4c0b 32062012-04-20 Chong Yidong <cyd@gnu.org>
b668fa6e 3207
ef24141c
SM
3208 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
3209 New function to call delete-process on the gdb-inferior buffer's pty.
b668fa6e
CY
3210 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
3211 pty process (Bug#11273).
3212 (gdb-update): New arg to suppress talking to the gdb process.
3213 (gdb-done-or-error): Use it.
3214 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
3215 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
3216 sentinel not being called.
3217
3218 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
3219
d02766ab
CY
3220 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
3221
c07a4c0b 32222012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
3223
3224 * net/network-stream.el (open-network-stream): Doc fix.
3225
c07a4c0b 32262012-04-20 Chong Yidong <cyd@gnu.org>
2c070447
CY
3227
3228 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
3229
c07a4c0b 32302012-04-20 Alan Mackenzie <acm@muc.de>
f0f6bc35
AM
3231
3232 Ensure searching for keywords is case sensitive.
3233
3234 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
3235 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
3236 (c-defun-name, c-mark-function, c-cpp-define-name)
3237 (c-comment-indent, c-scan-conditionals, c-indent-defun)
c07a4c0b 3238 (c-context-line-break): Bind case-fold-search to nil.
f0f6bc35 3239
ef24141c
SM
3240 * progmodes/cc-mode.el (c-font-lock-fontify-region):
3241 Bind case-fold-search to nil.
f0f6bc35 3242
c07a4c0b 32432012-04-20 Chong Yidong <cyd@gnu.org>
4fc2c72a
CY
3244
3245 * mail/sendmail.el (mail-bury): Call return action with the right
3246 Rmail buffer (Bug#11242).
3247
9a864fa2
CY
3248 * server.el (server-process-filter): Handle corner case where both
3249 tty and nowait options are present (Bug#11102).
3250
539aa513
EZ
32512012-04-20 Eli Zaretskii <eliz@gnu.org>
3252
3253 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
6cf2a23e
EZ
3254 (top level): Put into the executable the ident-style '$Id:' tag on
3255 windows-nt as well.
539aa513 3256
cfc7d5da
SM
32572012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
3258
3259 * electric.el (electric-indent-post-self-insert-function): Check that
3260 electric-indent-mode is enabled in current buffer.
3261
5b01685c
JB
32622012-04-19 Juanma Barranquero <lekktu@gmail.com>
3263
3264 * imenu.el (imenu-progress-message): Restore; it is "used" in
3265 erc/erc-imenu.el and net/snmp-mode.el.
3266
4d6769e1
JB
32672012-04-19 Juanma Barranquero <lekktu@gmail.com>
3268
3269 * avoid.el (mouse-avoidance-mode): Mark unused arg.
3270 (mouse-avoidance-nudge-mouse): Remove unused binding.
3271
3272 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
3273
3274 * descr-text.el (describe-char):
3275 * progmodes/python.el (python-describe-symbol):
3276 Don't call `toggle-read-only', set `buffer-read-only'.
3277
3278 * imenu.el (imenu-default-goto-function): Mark unused args.
3279 (imenu-progress-message): Remove obsolete macro; all callers changed.
3280
3281 * subr.el (keymap-canonicalize): Remove unused binding.
3282 (read-passwd): Mark unused arg.
3283
3284 * tutorial.el (tutorial--display-changes): Remove unused binding.
3285 (tutorial--save-tutorial-to): Remove unused variable.
3286
3287 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
3288 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
3289 (package-generate-autoloads, package-menu--generate)
3290 (package-menu--find-upgrades): Remove unused bindings.
3291
3292 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
3293 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
3294 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
3295 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
3296 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
3297 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
3298 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
3299 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
3300 (cua-delete-char-rectangle): Mark unused args.
3301 (cua-align-rectangle): Remove unused binding.
3302
3303 * mail/rmail.el (compilation--message->loc)
3304 (epa--find-coding-system-for-mime-charset): Declare.
3305
3306 * net/dbus.el (dbus-register-service): Declare.
3307 (dbus-name-owner-changed-handler): Remove unused binding.
3308
3309 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
3310 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
3311 (nxml-scan-backward-within): Mark unused arg.
3312 (nxml-dynamic-markup-word): Remove unused binding.
3313
3314 * mouse.el (mouse-menu-major-mode-map):
3315 * emacs-lisp/authors.el (authors-scan-change-log)
3316 (authors-add-to-author-list):
3317 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
3318 * emacs-lisp/smie.el (smie-auto-fill):
3319 * mail/sendmail.el (mail-bury):
3320 * mail/unrmail.el (unrmail):
3321 * net/tls.el (open-tls-stream):
3322 * textmodes/picture.el (picture-mouse-set-point):
3323 Remove unused bindings.
3324
8c8fc5df
MA
33252012-04-19 Michael Albinus <michael.albinus@gmx.de>
3326
3327 * net/tramp.el (tramp-action-password): Let-bind
3328 `enable-recursive-minibuffers' to t.
3329
a77b0ac9
SS
33302012-04-18 Sam Steingold <sds@gnu.org>
3331
3332 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
3333 instead of 'string to accommodate values like [f11].
3334 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
3335 * progmodes/gdb-mi.el: Likewise.
3336
12a106a9
LL
33372012-04-18 Leo Liu <sdl.web@gmail.com>
3338
3339 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
3340 current buffer.
3341 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
3342 LOCAL is nil.
3343
bc6494ef
CY
33442012-04-18 Chong Yidong <cyd@gnu.org>
3345
3346 * simple.el (line-move): Use forward-line if in batch mode
3347 (Bug#11053).
3348
c09c46b2
CS
33492012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
3350
3351 * files.el (after-find-file): Do not try to add a final newline if
3352 the buffer is read-only (Bug#11156).
3353
5f6530ea
RS
33542012-04-17 Richard Stallman <rms@gnu.org>
3355
3356 * mail/rmail.el (rmail-start-mail):
3357 Pass (rmail-mail-return...) for the return-action.
3358 Pass (rmail-yank-current-message...) for the yank-action.
3359 (rmail-yank-current-message): New function.
3360 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
3361 (rmail-reply): Likewise.
3362 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
3363
3364 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
c09c46b2 3365 buffer, not the last. Reject temp buffers. Use the rmail-mode
5f6530ea
RS
3366 buffer, not newbuf.
3367
197b6f3c
JB
33682012-04-17 Juanma Barranquero <lekktu@gmail.com>
3369
3370 * server.el (server-ensure-safe-dir): Simplify.
3371
2311d8e5 33722012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
98fb480e 3373
2311d8e5
GM
3374 * emacs-lisp/smie.el: Provide smarter auto-filling.
3375 (smie-auto-fill): New function.
3376 (smie-setup): Use it.
98fb480e 3377
2311d8e5
GM
3378 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
3379
33802012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8eb5d48f
PH
3381
3382 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
3383 (comment-indent): Use it.
3384
2311d8e5 33852012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4bdf2ad2
VB
3386
3387 * ses.el: The overall change is to add cell renaming, that is
3388 setting fancy names for cell symbols other than name matching
3389 "\\`[A-Z]+[0-9]+\\'" regexp .
2311d8e5 3390 (ses-localvars): Add ses--renamed-cell-symb-list.
4bdf2ad2 3391 (ses-create-cell-variable): New defun.
2311d8e5 3392 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4bdf2ad2
VB
3393 (ses-relocate-formula): Relocate formulas only for cells the
3394 symbols of which are not renamed, i.e. symbols whose names do not
3395 match regexp "\\`[A-Z]+[0-9]+\\'".
3396 (ses-relocate-all): Relocate values only for cells the symbols of
3397 which are not renamed.
3398 (ses-load): Create cells variables as the (ses-cell ...) are read,
3399 in order to check row col consistency with cell symbol name only
3400 for cells that are not renamed.
3401 (ses-replace-name-in-formula): New defun.
3402 (ses-rename-cell): New defun.
4bdf2ad2 3403
fc72b15c
PO
34042012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
3405
3406 * progmodes/perl-mode.el (perl-indent-parens-as-block):
3407 New option (bug#11118).
3408 (perl-calculate-indent): Respect it.
3409
12e10e61
GM
34102012-04-17 Glenn Morris <rgm@gnu.org>
3411
3412 * dired-aux.el (dired-mark-read-string): Doc fix.
3413
30009afd
DA
34142012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
3415
3416 * dired-aux.el (dired-mark-read-string): Offer optional completion.
3417 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
3418
41f03f4d
GM
34192012-04-17 Glenn Morris <rgm@gnu.org>
3420
3421 * mouse.el (mouse-drag-track):
3422 * speedbar.el (speedbar-frame-mode):
3423 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
3424
f45f90f3
LL
34252012-04-16 Leo Liu <sdl.web@gmail.com>
3426
3427 * progmodes/python.el: Trivial cleanup.
3428
94ee8db5
GM
34292012-04-16 Glenn Morris <rgm@gnu.org>
3430
121b8917
GM
3431 * vc/vc.el (vc-string-prefix-p):
3432 * vc/pcvs-util.el (cvs-string-prefix-p):
3433 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
3434 * mpc.el (mpc-string-prefix-p):
3435 Make all of these into obsolete aliases for string-prefix-p.
3436 Update callers.
3437 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
3438
1197ecfa
GM
3439 * textmodes/two-column.el: Move custom options to the start.
3440 (frame-width): Remove compat definition.
3441 (2C-associate-buffer, 2C-dissociate):
3442 Use with-current-buffer rather than save-excursion.
3443 (2C-dissociate): Force a mode-line update.
3444 (2C-autoscroll): Use ignore-errors.
3445
099e7202
GM
3446 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
3447 Autoload trivia.
3448
bf350d6a
GM
3449 * emacs-lisp/cl-extra.el (*random-state*):
3450 Remove unnecessary declaration.
3451
0e829eab
GM
3452 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
3453
e3ad7552
GM
3454 * play/cookie1.el (cookie-snarf):
3455 Give an explicit error if input file cannot be read.
3456
68892d27
GM
3457 * play/yow.el (yow-file): Use expand-file-name rather than concat.
3458
20f0c46d
GM
3459 * progmodes/perl-mode.el (c-macro-expand):
3460 Remove unnecessary autoload (it is in loaddefs.el).
3461
5a0978ce
GM
3462 * textmodes/picture.el (picture-desired-column)
3463 (picture-update-desired-column): Convert comments to doc-strings.
3464 (picture-substitute): Remove function.
3465 (picture-mode-map): Initialize in the defvar.
3466
6b955486
GM
3467 * woman.el: Remove eval-after-load for tar-mode.
3468 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
3469 (woman-tar-extract-file): Autoload it.
3470
94ee8db5
GM
3471 * frame.el (automatic-hscrolling): Make this alias obsolete.
3472
177eca34
AM
34732012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3474
3475 * ispell.el (ispell-set-spellchecker-params): Post-process
4be3075e 3476 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3851314b
AM
3477 (ispell-dictionary-base-alist): Revert to original XEmacs
3478 friendly version for default. [:alpha:] will be added in
3479 `ispell-set-spellchecker-params' if needed
177eca34 3480
c505aaeb
CY
34812012-04-16 Chong Yidong <cyd@gnu.org>
3482
3483 * image.el (imagemagick--extension-regexp): New variable.
3484 (imagemagick-register-types): Use it.
3485 (imagemagick-types-inhibit): Add :set function. Allow new value
3486 of t to inhibit all types.
3487
3488 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
3489 so we can preload it.
3490
3491 * loadup.el (fboundp): Preload regexp-opt, needed by
3492 imagemagick-register-types.
3493
60efac0f
CY
34942012-04-15 Chong Yidong <cyd@gnu.org>
3495
3496 * frame.el (scrolling): Remove nearly unused customization group.
3497
3498 * scroll-all.el (scroll-all-mode): Move to windows group.
3499
5dd1713e
CY
35002012-04-15 Chong Yidong <cyd@gnu.org>
3501
3502 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
3503
e6fd457e
CY
35042012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3505
3506 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4d6769e1 3507 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
e6fd457e 3508
e153c136
GM
35092012-04-15 Glenn Morris <rgm@gnu.org>
3510
3511 * simple.el (process-file-side-effects): Doc fix.
3512
e6fd457e 35132012-04-15 Glenn Morris <rgm@gnu.org>
ca7d96c8
GM
3514
3515 * international/mule-cmds.el (set-language-environment): Doc fix.
3516
3603c3b1
JB
35172012-04-14 Juanma Barranquero <lekktu@gmail.com>
3518
3519 * server.el (server-auth-key, server-generate-key): Doc fixes.
3520 (server-get-auth-key): Doc fix. Use `string-match-p'.
3521 (server-start): Reflow docstring.
3522
e6de100c
LI
35232012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
3524
3525 * server.el (server-generate-key): `called-interactively-p'
3526 requires a parameter.
3527
29734c21
MN
35282012-04-14 Michal Nazarewicz <mina86@mina86.com>
3529
3530 * server.el (server-auth-key): New variable.
75f1671a 3531 (server-generate-key, server-get-auth-key): New function.
29734c21
MN
3532 (server-start): Use the new variable and functions to allow
3533 setting a permanent server key (bug#9423).
3534
d65c9521
LL
35352012-04-14 Leo Liu <sdl.web@gmail.com>
3536
3537 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
3538
5ae255c7
PE
35392012-04-14 Paul Eggert <eggert@cs.ucla.edu>
3540
3541 Spelling fixes.
3542 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
3543 Emacs uses American spelling.
3544
d5e6342e
JB
35452012-04-14 Juanma Barranquero <lekktu@gmail.com>
3546
3547 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
3548 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
3549 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
3550 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
3551
ab036cd7
SM
35522012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3553
3554 * progmodes/which-func.el (which-func-modes): Change default.
3555
35dc09a1 35562012-04-14 Kim F. Storm <storm@cua.dk>
9557e2be
CY
3557
3558 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
3559 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
3560
35dc09a1 35612012-04-14 Chong Yidong <cyd@gnu.org>
81927dd2
CY
3562
3563 * custom.el (custom-theme-set-variables): Doc fix.
3564
35dc09a1 35652012-04-14 Glenn Morris <rgm@gnu.org>
8edb942b
GM
3566
3567 * international/mule.el (set-auto-coding-for-load): Doc fix.
3568
35dc09a1 35692012-04-14 Alan Mackenzie <acm@muc.de>
0de3da9f 3570
35dc09a1
GM
3571 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
3572 imenu work again for Objective C Mode. Correct the *-index values,
3573 these having been disturbed by a previous change in 2011-08.
57f845ee 3574
0de3da9f
AM
3575 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
3576 Correct two search limits.
3577
35dc09a1 35782012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
ede141ac
SM
3579
3580 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
3581
35dc09a1 35822012-04-14 Andreas Schwab <schwab@linux-m68k.org>
d0203d61
AS
3583
3584 * international/characters.el: Fix sorting.
3585
35dc09a1 35862012-04-14 Eli Zaretskii <eliz@gnu.org>
cb80bcd1
EZ
3587
3588 * international/characters.el: Add more missing Latin case pairs.
3589
35dc09a1 35902012-04-14 Glenn Morris <rgm@gnu.org>
4a427f58
GM
3591
3592 * files.el (dir-locals-set-class-variables): Doc fix.
3593
35dc09a1 35942012-04-14 Eli Zaretskii <eliz@gnu.org>
9f847f41 3595
3f1b5bf8
EZ
3596 * international/characters.el: Add set-case-syntax-pair call for
3597 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
3598 counterpart. (Bug#11209)
3599
9f847f41
EZ
3600 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
3601
35dc09a1 36022012-04-14 Glenn Morris <rgm@gnu.org>
0c2014a3
GM
3603
3604 * calendar/holidays.el (calendar-check-holidays): Doc fix.
3605
35dc09a1 36062012-04-14 Eli Zaretskii <eliz@gnu.org>
e2627d21 3607
35dc09a1
GM
3608 * textmodes/ispell.el (ispell-dictionary-base-alist):
3609 Add data for Hebrew.
e2627d21 3610
35dc09a1 36112012-04-14 Chong Yidong <cyd@gnu.org>
5c14e333 3612
35dc09a1
GM
3613 * net/rcirc.el (rcirc-cmd-quit):
3614 Revert 2012-03-18 change (Bug#11192).
5c14e333 3615
35dc09a1 36162012-04-14 Glenn Morris <rgm@gnu.org>
bf6fa423
GM
3617
3618 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
3619
35dc09a1 36202012-04-14 Eli Zaretskii <eliz@gnu.org>
82b24fb2 3621
4517fe3a
SM
3622 * minibuffer.el (completion-in-region-mode-map):
3623 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
82b24fb2 3624
b472a594
VD
36252012-04-13 Vivek Dasmohapatra <vivek@etla.org>
3626
3627 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
3628
09b95ce3
MY
36292012-04-13 Masatake YAMATO <yamato@redhat.com>
3630
3631 * minibuffer.el (minibuffer-local-filename-syntax): New variable
3632 to allow `C-M-f' and `C-M-b' to move to the nearest path
3633 separator (bug#9511).
3634
4b63a9ca
LI
36352012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
3636
3637 * avoid.el: Require cl when compiling. And also move the
3638 `provide' to the end.
3639
7b55b8bf
TV
36402012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3641
3642 * avoid.el (mouse-avoidance-banish-position): New variable.
3643 (mouse-avoidance-banish-destination): Use it (bug#10165).
3644
adedaa1f
LL
36452012-04-13 Leo Liu <sdl.web@gmail.com>
3646
3647 * progmodes/which-func.el (which-func-modes): Add objc-mode.
3648
70e74021
KB
36492012-04-13 Ken Brown <kbrown@cornell.edu>
3650
3651 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
ab036cd7 3652 this is no longer needed now that cygstart understands file:// URLs.
70e74021
KB
3653 (browse-url-filename-alist): For the same reason, don't modify
3654 file:// URLs on Cygwin.
3655
e75e89ba
SM
36562012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
3657
3658 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
3659 the region on shift if the binding is already shifted (bug#11221).
3660
82f289a4
GM
36612012-04-12 Glenn Morris <rgm@gnu.org>
3662
3663 * mail/mailpost.el: Move to obsolete/.
3664
d333dc4c
DA
36652012-04-12 Drew Adams <drew.adams@oracle.com>
3666
3667 * imenu.el (imenu--generic-function): Ignore invisible definitions
3668 (bug#10123).
3669
0d15b5ba
VD
36702012-04-12 Vivek Dasmohapatra <vivek@etla.org>
3671
3672 * hexl.el (hexl-bits): New variable.
3673 (hexl-options): Mention the variable in the doc string.
75f1671a 3674 (hexl-rulerise, hexl-line-displen): New functions.
0d15b5ba 3675 (hexl-mode): Mention the new variable.
75f1671a
JB
3676 (hexl-mode, hexl-current-address, hexl-current-address):
3677 Use the displen.
0d15b5ba
VD
3678 (hexl-ascii-start-column): New function.
3679 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
3680 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
3681
64a440db
AM
36822012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3683
3684 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
3685 '("-i" ENCODING), in 2 separate command-line arguments, to specify
3686 the encoding, as expected by hunspell.
3687
6decb6c2
SM
36882012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
3689
3690 * battery.el (battery--linux-sysfs-regexp): New const.
3691 (battery-status-function): Use it. Remove yeeloong special case.
3692 (battery-yeeloong-sysfs): Remove.
3693 (battery-echo-area-format): Remove yeeloong special case.
3694
088be6fb
SM
36952012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3696
6622e416
SM
3697 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
3698 Reported by Noah Friedman.
3699
088be6fb
SM
3700 * subr.el (read-passwd): Use read-string.
3701
b49f886e
LMI
37022012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3703
3704 * vcursor.el (vcursor-move): Increase the priority of the overlay
3705 (bug#9663).
3706
a63067fc
DD
37072012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3708
3709 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
3710 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
3711
ac3cf14a
WS
37122012-04-11 William Stevenson <yhvh2000@gmail.com>
3713
3714 * textmodes/artist.el (artist-mode): Convert artist-mode to use
3715 define-minor-mode (bug#10760).
3716
c4fc691b 37172012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
49a2697c 3718
4d6769e1 3719 * progmodes/grep.el (rgrep): Tweak the find command line so
49a2697c
WJ
3720 that directories matching `grep-find-ignored-files' won't be
3721 pruned (bug#10351).
3722
af23e2e5
CY
37232012-04-11 Chong Yidong <cyd@gnu.org>
3724
3725 * startup.el (command-line): Remove support for long-obsolete
3726 variable font-lock-face-attributes.
3727
ab7ce8c1
GM
37282012-04-11 Glenn Morris <rgm@gnu.org>
3729
3730 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
3731
de8c03dc
SM
37322012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3733
3734 * window.el (window--state-get-1): Obey window-point-insertion-type.
3735
050cc68b
LB
37362012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
3737
3738 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
3739 to previous function when point is on the first character of a
75f1671a 3740 function. Take care of that in `narrow-to-defun' (bug#6157).
050cc68b 3741
a38c310c
GM
37422012-04-11 Glenn Morris <rgm@gnu.org>
3743
effed0c2
GM
3744 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
3745 not just file-errors.
3746
a38c310c
GM
3747 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
3748 (vc-bzr-sha1): Use internal sha1.
3749
0221e323
SM
37502012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3751
3752 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
3753
43956923
SG
37542012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
3755
3756 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
3757 that start in the middle of the line (bug#10496).
3758
6a8c9eaf
DN
37592012-04-10 Dan Nicolaescu <dann@gnu.org>
3760
3761 * battery.el (battery-linux-proc-acpi): Only one battery is
3762 discharged at a time, but that seems to confuse battery.el when
3763 computing `rate-type' for the battery not being discharged
3764 (bug#10332).
3765
1930bf5d
SM
37662012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
3767
2a718f6f
SM
3768 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
3769
599430d0
SM
3770 * international/quail.el: Use dolist and simplify.
3771 (quail-define-package, quail-update-keyboard-layout)
3772 (quail-define-rules): Use dolist.
3773 (quail-insert-kbd-layout, quail-get-translation): CSE.
3774
a2754b6c
SM
3775 * tmm.el: Use dolist, remove left over hook.
3776 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
3777 Use dolist.
3778 (calendar-load-hook): Don't mess with it.
3779
1930bf5d
SM
3780 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
3781 Use derived-mode-p. Run the diff asynchronously.
3782
9f67961c
LMI
37832012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3784
3785 * obsolete/mouse-sel.el: Add an Obsolete-since header.
3786
2a8ce227
JB
37872012-04-10 Juanma Barranquero <lekktu@gmail.com>
3788
3789 * misc.el: Display absolute path of loaded DLLs (bug#10424).
3790 (list-dynamic-libraries--loaded): New function.
3791 (list-dynamic-libraries--refresh): Use it.
3792
8f33b5f8
NW
37932012-04-10 Nathan Weizenbaum <nweiz@google.com>
3794
1930bf5d
SM
3795 * progmodes/python.el (python-fill-paragraph):
3796 Make python-fill-region in a multiline string work when font-lock is
8f33b5f8
NW
3797 disabled (bug#7018).
3798
b12f0439
L
37992012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
3800
1930bf5d 3801 * language/european.el (cp775): Add oem/legacy (en)coding on
75f1671a
JB
3802 DOS/MS Windows for the Baltic languages. There are still plenty
3803 of texts written in this encoding/codepage (bug#6519).
b12f0439 3804
57c3bd01
GM
38052012-04-10 Glenn Morris <rgm@gnu.org>
3806
3807 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
3808 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
3809
6c3eab30
FA
38102012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
3811
1930bf5d 3812 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6c3eab30
FA
3813 next-line "n" and previous-line "p" in order to make recentf more
3814 consistent with ibuffer, dired or org-mode (bug#9387).
3815
24d78a88
LMI
38162012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3817
bc72b5d9
LMI
3818 * image.el (put-image): Return the overlay created instead of the
3819 optional input string (bug#7834). Note that this may break code
3820 that is (for some reason or other) depending on `put-image'
3821 returning the string.
3822
bd2dba5a
LMI
3823 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
3824
74beb59f
LMI
3825 * simple.el (zap-to-char): Allow zapping using input methods
3826 (bug#1580).
3827
24d78a88
LMI
3828 * textmodes/fill.el (fill-region): Leave point and mark where they
3829 were before filling (bug#5399).
3830
263f20cd
GM
38312012-04-09 Glenn Morris <rgm@gnu.org>
3832
3833 * version.el (emacs-bzr-get-version):
3834 Handle lightweight checkouts of local branches.
3835
58d1f797
AS
38362012-04-09 Andreas Schwab <schwab@linux-m68k.org>
3837
263f20cd 3838 * international/characters.el: Recover lost case pairs. (Bug#11209)
58d1f797 3839
b4d3bc10
CY
38402012-04-09 Chong Yidong <cyd@gnu.org>
3841
3842 * custom.el (custom-variable-p): Return nil for non-symbol
3843 arguments instead of signaling an error.
3844 (user-variable-p): Obsolete alias for custom-variable-p.
3845
3846 * apropos.el (apropos-variable):
3847 * files-x.el (read-file-local-variable):
3848 * simple.el (set-variable):
3849 * woman.el (woman-mini-help):
3850 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
3851
fd06db5d
GM
38522012-04-09 Glenn Morris <rgm@gnu.org>
3853
e5fcdb5e
GM
3854 * startup.el (normal-top-level): Don't look for leim-list.el
3855 in places where it will not be found. (Bug#910)
3856
fd06db5d
GM
3857 * international/mule-cmds.el (set-default-coding-systems):
3858 * files.el (normal-mode):
3859 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
3860 This function was removed with ucs-tables.el in 2008.
3861
b39bb7e1
EZ
38622012-04-08 Eli Zaretskii <eliz@gnu.org>
3863
3864 * textmodes/ispell.el (ispell-check-version): For hunspell, set
3865 ispell-encoding8-command to "-i", without a trailing space.
3866 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
3867 separate command-line arguments, to specify the encoding, since
3868 that's how hunspell expects it.
3869
5c5b8e23
GM
38702012-04-08 Glenn Morris <rgm@gnu.org>
3871
3872 * loadup.el: Load bindings before cus-start.
3873 This reduces somewhat the number of "rogue" settings in emacs -Q.
3874
a1ed8b05
GM
38752012-04-07 Glenn Morris <rgm@gnu.org>
3876
3877 * version.el (emacs-bzr-get-version): New function.
dfae128a 3878 (emacs-bzr-version): New variable.
a1ed8b05
GM
3879 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
3880 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
3881
b142f158
EZ
38822012-04-07 Eli Zaretskii <eliz@gnu.org>
3883
dfae128a
GM
3884 * international/uni-bidi.el, international/uni-category.el:
3885 * international/uni-combining.el, international/uni-decimal.el:
3886 * international/uni-decomposition.el, international/uni-digit.el:
3887 * international/uni-lowercase.el, international/uni-mirrored.el:
3888 * international/uni-name.el, international/uni-numeric.el:
3889 * international/uni-titlecase.el, international/uni-uppercase.el:
3890 Update for Unicode 6.1.
b142f158 3891
9078ead6
EZ
38922012-04-07 Eli Zaretskii <eliz@gnu.org>
3893
3894 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
3895
f23d2c7d
LMI
38962012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
3897
3898 * window.el (shrink-window): Mention the `window-min-height'
3899 variable in the doc string.
3900
0a0a3573
BG
39012012-04-05 Bastien Guerry <bzg@altern.org>
3902
3903 * color.el (color-lighten-name): Fix typo.
3904
e5248ac9
SM
39052012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
3906
3907 * server.el (server--on-display-p): New function.
3908 (server--on-display-p): Use it.
3909
b4243e22
GV
39102012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
3911
3912 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
3913 (bug#11145).
3914
305d9f44
SM
39152012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
3916
3917 * comint.el (comint--common-quoted-suffix): Check string boundary
3918 before comparing (bug#11158).
3919 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
3920
3d439cd1
CY
39212012-04-04 Chong Yidong <cyd@gnu.org>
3922
321cc491
CY
3923 * minibuffer.el (completion-extra-properties): Doc fix.
3924
3d439cd1
CY
3925 * subr.el (delayed-warnings-hook): Doc fix.
3926
2d562c0f
DU
39272012-04-04 Daiki Ueno <ueno@unixuser.org>
3928
3929 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
3930 selection (Bug#11159).
3931 (epa-insert-keys): Inform that the default public key will be
3932 exported if no key is selected.
3933
4443f204
RS
39342012-04-04 Richard Stallman <rms@gnu.org>
3935
3936 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
3937
529c06b6
CY
39382012-04-03 Chong Yidong <cyd@gnu.org>
3939
3940 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
3941 mail-insert-file, not its obsolete alias mail-attach-file.
3942
66b907dc
MA
39432012-04-03 Michael Albinus <michael.albinus@gmx.de>
3944
3945 * notifications.el (notifications-notify): Fix docstring.
3946
c0ea195d
GM
39472012-04-02 Glenn Morris <rgm@gnu.org>
3948
3949 * emacs-lisp/authors.el (authors-aliases): Another addition.
3950
5ca64e00
MA
39512012-04-02 Michael Albinus <michael.albinus@gmx.de>
3952
3953 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
3954 `tramp-compat-call-process' instead of `tramp-local-call-process'.
3955 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
3956
42ee526b
CY
39572012-04-01 Chong Yidong <cyd@gnu.org>
3958
3959 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
3960 Handle root directory properly.
3961 (copy-directory): Caller changed.
3962
3963 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
3964 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
3965
0b021094
GM
39662012-03-31 Glenn Morris <rgm@gnu.org>
3967
40f86458
GM
3968 * term/xterm.el (xterm-extra-capabilities): Doc fix.
3969
7019c177
GM
3970 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
3971
a1daddd6
GM
3972 * calendar/calendar.el (calendar-window-list)
3973 (calendar-hide-window): Restore. (Bug#11140)
3974 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
3975
0b021094
GM
3976 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
3977
40311efc
TV
39782012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3979
3980 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
3981 Check if file is a symlink (Bug#10489).
3982
3983 * files.el (copy-directory): Likewise.
3984
5319014e
CY
39852012-03-30 Chong Yidong <cyd@gnu.org>
3986
3987 * image.el (imagemagick-types-inhibit)
3988 (imagemagick-register-types): Doc fix.
3989
935d1290
AM
39902012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3991
ef24141c
SM
3992 * ispell.el (ispell-get-extended-character-mode):
3993 Disable extended-char-mode for hunspell. hunspell does not support it
75f1671a 3994 and treats ~word as ordinary words in pipe mode.
935d1290 3995
61c6e8fd
GM
39962012-03-30 Glenn Morris <rgm@gnu.org>
3997
3998 * tutorial.el (help-with-tutorial): Ensure local variables don't
3999 happen to make the buffer read-only. (Bug#11127)
4000
81fdff00
SM
40012012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
4002
4003 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
4004 (perl-calculate-indent): Return `noindent' in strings.
4005
6e7a6ec0
SS
40062012-03-28 Sam Steingold <sds@gnu.org>
4007
4008 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
4009 instead of the broken adhockery which does not prevent calendar
4010 buffers from being displayed at random after exit.
4011 (calendar-window-list, calendar-hide-window): Remove the broken
4012 adhockery.
4013
fee88ca0
GM
40142012-03-28 Glenn Morris <rgm@gnu.org>
4015
4016 * replace.el (query-replace-map): Doc fix.
4017
38de3354
AS
40182012-03-28 Andreas Schwab <schwab@linux-m68k.org>
4019
4020 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
4021 contents. (Bug#11109)
4022
b973155e
SM
40232012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
4024
4025 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
4026 (bug#11077).
4027 (avl-tree--check, avl-tree--check-node): New funs.
4028
dcb6e7b3
MR
40292012-03-27 Martin Rudalics <rudalics@gmx.at>
4030
4031 * window.el (switch-to-visible-buffer): New option.
b973155e
SM
4032 (switch-to-prev-buffer, switch-to-next-buffer):
4033 Observe switch-to-visible-buffer. Make sure that checking for a window
dcb6e7b3
MR
4034 showing a buffer already is done on the same frame.
4035
b4fa35fa
GM
40362012-03-27 Glenn Morris <rgm@gnu.org>
4037
4038 * startup.el (mail-host-address): Doc fix.
4039
f9210e18
SM
40402012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4041
4042 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
4043 than 197 variables.
4044
c0bf7753
AF
40452012-03-26 Ami Fischman <ami@fischman.org>
4046
4047 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
4048
33da7b16
GM
40492012-03-26 Glenn Morris <rgm@gnu.org>
4050
02243d9d
GM
4051 * files.el (save-buffers-kill-emacs): Doc fix.
4052
33da7b16
GM
4053 * startup.el (normal-top-level, command-line, command-line-1):
4054 Give them doc strings.
4055
e5a69fd0
EZ
40562012-03-25 Eli Zaretskii <eliz@gnu.org>
4057
4058 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
b973155e 4059 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
e5a69fd0 4060
9a69676a
CY
40612012-03-25 Chong Yidong <cyd@gnu.org>
4062
4125cb8b
CY
4063 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
4064 theme if it was previously enabled before (Bug#11031).
4065
dd470960
CY
4066 * cus-theme.el (custom-theme-write-faces): Retrieve current face
4067 spec with custom-face-get-current-spec if its :shown-value is not
4068 determined yet (Bug#9337).
4125cb8b 4069 (customize-create-theme, custom-theme-revert): Doc fixes.
dd470960 4070
9a69676a
CY
4071 * button.el (button-at): Minor addition to docstring.
4072
6e7e90fa
SL
40732012-03-24 Simon Leinen <simon.leinen@gmail.com>
4074
4075 * vc/vc.el (vc-merge): Fix a prompt.
4076
f06e2758
CY
40772012-03-24 Chong Yidong <cyd@gnu.org>
4078
4079 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
4080 point (Bug#9623).
4081
6e7e90fa
SL
4082 * button.el (button-at): Minor addition to docstring.
4083
b9d0879b
SM
40842012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4085
4086 * newcomment.el (comment-choose-indent): No space after BOL.
4087
e71cebb3
SS
40882012-03-22 Sam Steingold <sds@gnu.org>
4089
4090 * window.el (switch-to-prev-buffer): Revert last patch because the
4091 bug turned out to be an advertised feature (Elisp manual 28.14).
4092
335aff35
GM
40932012-03-22 Glenn Morris <rgm@gnu.org>
4094
4095 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
4096 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
4097
c676576a
LMI
40982012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4099
4100 * net/network-stream.el (network-stream-open-starttls): Make error
4101 message under Windows be less misleading.
4102
126f3d39
LW
41032012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
4104
4105 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
4106 understands (bug#9942).
4107
64fee311
CY
41082012-03-22 Chong Yidong <cyd@gnu.org>
4109
4110 * simple.el (end-of-visible-line): Handle return value of
4111 next-single-property-change properly (Bug#9371).
4112
a640d29a
KH
41132012-03-22 Kenichi Handa <handa@m17n.org>
4114
4115 * international/quail.el (quail-insert-kbd-layout): Fix previous
4116 change. To avoid unwanted bidi reordering, use
4117 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
4118
39675016
DG
41192012-03-21 Dmitry Gutov <dgutov@yandex.ru>
4120
4121 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
4122 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
4123 (ruby-beginning-of-indent): Be more careful with the difference
4124 between word-boundary and symbol boundary.
4125 (ruby-mode-syntax-table): Make : a symbol constituent.
4126
0a6934fc 41272012-03-21 Andreas Politz <politza@fh-trier.de>
1acad97c 4128
3d008e4f
SM
4129 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
4130
0a6934fc
SM
41312012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4132
af67c9d7
SM
4133 * progmodes/etags.el (tags-completion-at-point-function):
4134 Improve last fix.
4135
1acad97c
SM
4136 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
4137
e298b5da
SS
41382012-03-21 Sam Steingold <sds@gnu.org>
4139
4140 * progmodes/etags.el (tags-completion-at-point-function):
4141 Avoid the error when point is inside the pattern.
4142
91d82a70
JY
41432012-03-21 John Yates <john@yates-sheets.org> (tiny change)
4144
4145 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
4146 line (Bug#10855).
4147
69188b79
CY
41482012-03-21 Drew Adams <drew.adams@oracle.com>
4149
4150 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
4151
99fc91fe
AK
41522012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
4153
4154 * ido.el (ido-set-current-directory, ido-read-internal)
4155 (ido-choose-completion-string, ido-completion-help): Handle nil
4156 value of ido-completion-buffer (Bug#11008).
4157
087bbb4c
SS
41582012-03-21 Sam Steingold <sds@gnu.org>
4159
4160 * window.el (switch-to-prev-buffer): Do not switch to a visible
4161 window previous buffer, just like with the frame previous buffers.
4162
fb5b8aca
CY
41632012-03-21 Chong Yidong <cyd@gnu.org>
4164
4165 * faces.el (make-face, make-empty-face, copy-face):
4166 * face-remap.el (face-remap-add-relative, face-remap-set-base):
4167 Doc fixes.
4168
dc9924b8
SM
41692012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4170
4171 * wid-edit.el (widget-complete-field): Remove (bug#11051).
4172 (widget-complete): Remove broken use of it.
4173
f0bcceb9
CY
41742012-03-20 Chong Yidong <cyd@gnu.org>
4175
dc9924b8
SM
4176 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
4177 Use string-width and truncate-string-width to handle arbitrary
f0bcceb9
CY
4178 characters.
4179
ee52ebf3
TH
41802012-03-20 Tassilo Horn <tassilo@member.fsf.org>
4181
4182 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
4183 to draw rectangles, not squares. (Regression introduced by revno
4184 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
4185
4c5779ab
CY
41862012-03-18 Chong Yidong <cyd@gnu.org>
4187
4188 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
4189 it is not yet defined (for temacs).
4190
15360934
LL
41912012-03-18 Leo Liu <sdl.web@gmail.com>
4192
dc9924b8 4193 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
15360934 4194
d9a8eb66
EZ
41952012-03-17 Eli Zaretskii <eliz@gnu.org>
4196
4197 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
4198 (ispell-choices-win-default-height, ispell-silently-savep)
4199 (ispell-dictionary-alist, ispell-encoding8-command)
4200 (ispell-check-version, ispell-aspell-find-dictionary)
4201 (ispell-valid-dictionary-list, ispell-words-keyword)
4202 (ispell-get-word, ispell-internal-change-dictionary)
4203 (ispell-region, ispell-skip-region-list)
4204 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
4205 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
4206 (ispell-message-text-end, ispell-message)
4207 (ispell-buffer-local-parsing): Doc fix.
4208
f02ff80d
J
42092012-03-13 Jambunathan K <kjambunathan@gmail.com>
4210
4211 * htmlfontify.el: Add support for code block fontification for ODT
4212 export (Bug #9914).
4213 (hfy-optimisations): Define new option
4214 `body-text-only'
4215 (hfy-fontify-buffer): Honor above setting.
4216 (hfy-begin-span, hfy-end-span): New routines factored out form
4217 `hfy-fontify-buffer'.
4218 (hfy-begin-span-handler, hfy-end-span-handler): New variables
4219 that permit insertion of custom tags.
4220 (hfy-fontify-buffer): Use above handlers.
4221 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
4222 (hfy-face-to-css): Re-defined to be a variable.
dc9924b8 4223 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
75f1671a 4224 over multiple runs. This is made possible by having the caller let
f02ff80d
J
4225 bind a special variable `hfy-user-sheet-assoc'.
4226 (htmlfontify-string): New defun.
4227 (hfy-compile-face-map): Make sure that the last char in the
4228 buffer is correctly fontified.
4229 (hfy-face-resolve-face): Whitespace only change.
4230
9ac7a13f
EZ
42312012-03-17 Eli Zaretskii <eliz@gnu.org>
4232
4233 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
4234 message more clear.
4235
e2b5bdd7
LL
42362012-03-16 Leo Liu <sdl.web@gmail.com>
4237
4238 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
4239
2e492df3
AM
42402012-03-16 Alan Mackenzie <acm@muc.de>
4241
4242 Further optimise the handling of large macros.
4243
4244 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
4245 limit to a call of `c-literal-limits'.
4246 (c-determine-+ve-limit): New function.
dc9924b8
SM
4247 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
4248 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
2e492df3
AM
4249 In CASE 5B, restrict a search limit to 500.
4250 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
4251
4252 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
4253 Restrict macro bounds to +-500 from after-change's BEG END.
4254
50e94f0c
LL
42552012-03-16 Leo Liu <sdl.web@gmail.com>
4256
4257 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
4258
6f09f6ed
AH
42592012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
4260
4261 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
dc9924b8 4262 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6f09f6ed 4263
c7e73d51
GM
42642012-03-16 Glenn Morris <rgm@gnu.org>
4265
da986230
GM
4266 * view.el (view-buffer, view-buffer-other-window)
4267 (view-buffer-other-frame): Doc fixes re special mode-class.
4268
0835f01e
GM
4269 * subr.el (eval-after-load): If named feature is provided not from
4270 a file, run after-load forms. (Bug#10946)
4271
c7e73d51
GM
4272 * calendar/calendar.el (calendar-insert-at-column):
4273 Handle non-unit-width characters a bit better. (Bug#10978)
4274
3f2eafd1
CY
42752012-03-15 Chong Yidong <cyd@gnu.org>
4276
4277 * emacs-lisp/ring.el (ring-extend): New function.
4278 (ring-insert+extend): Extend the ring correctly (Bug#11019).
4279
4280 * comint.el (comint-read-input-ring)
4281 (comint-add-to-input-history): Grow comint-input-ring lazily.
4282
103af3fe
SM
42832012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
4284
663b1677
SM
4285 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
4286 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
4287
103af3fe
SM
4288 * imenu.el: Fix multiple inheritance breakage (bug#9199).
4289 (imenu-add-to-menubar): Don't add a redundant index.
4290 (imenu-update-menubar): Handle a dynamically composed keymap.
4291
899cb7cb
KY
42922012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
4293
4294 * mail/sendmail.el (mail-encode-header):
4295 Bind rfc2047-encode-encoded-words to nil.
4296
3809f91d
GM
42972012-03-13 Glenn Morris <rgm@gnu.org>
4298
4299 * calendar/calendar.el (calendar-string-spread):
4300 Handle non-unit-width characters a bit better. (Bug#10978)
4301
9e345a01
LL
43022012-03-13 Leo Liu <sdl.web@gmail.com>
4303
4304 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
4305 directory and file as argument (Bug#10822).
4306
4a07df36
KS
43072012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4308
4309 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
4310 For dynamically generated code, follow $PC.
4311 (gdb-disassembly-handler-custom): Handle no function name case.
4312
4aaa9356
TL
43132012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
4314
4315 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
4316 * emulation/ws-mode.el (ws-query-replace):
4317 * sort.el (sort-regexp-fields):
4318 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
4319
225979da
SM
43202012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4321
4322 * dabbrev.el: Fix cycle completion order (bug#10963).
4323 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
4324 (dabbrev-completion): Don't use an obarray; provide
4325 a cycle-sort-function.
4326
e2f1fdab
LL
43272012-03-12 Leo Liu <sdl.web@gmail.com>
4328
dc9924b8 4329 * simple.el (kill-new): Use equal-including-properties for comparison.
e2f1fdab
LL
4330 (kill-do-not-save-duplicates): Doc fix.
4331
b19490ed
SM
43322012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4333
4334 * dabbrev.el: Fix cycle completion (bug#10963).
4335 Use lexical binding and wrap to 80 columns.
4336 (dabbrev-completion): Delay computing the list of completions.
4337
4b05d722
KH
43382012-03-12 Kenichi Handa <handa@m17n.org>
4339
4340 * international/quail.el (quail-insert-kbd-layout): Surround each
4341 row by LRO and PDF instead of inserting many LRMs. Pad the left
4342 and right of each non-spacing marks. Insert invisible space
4343 between lower and upper characters to prevent composition.
4344
dbbc2e69
SM
43452012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4346
4347 * minibuffer.el (minibuffer-complete): Don't get confused when the
4348 function is run twice via different commands (bug#10958).
4349 (complete-with-action): Fix docstring.
4350
292112ed
CY
43512012-03-12 Chong Yidong <cyd@gnu.org>
4352
5d1ac394
CY
4353 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
4354 (nxml-completion-at-point-function): New function.
4355 (nxml-mode): Use it.
4356 (nxml-bind-meta-tab-to-complete-flag): Default to t.
4357
292112ed
CY
4358 * emacs-lisp/package.el (package-unpack, package-unpack-single):
4359 Load generated autoloads file before byte compiling (Bug#10970).
4360 (package--make-autoloads-and-compile): New helper fun.
4361
4098f8f7
CS
43622012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
4363
4364 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
4365
8f754691
MA
43662012-03-11 Michael Albinus <michael.albinus@gmx.de>
4367
4368 * autorevert.el (auto-revert-handler): Ensure, that
4369 file-readable-p is applied only for local files or in
4370 auto-revert-tail-mode.
4371
e29ab36b
AS
43722012-03-11 Andreas Schwab <schwab@linux-m68k.org>
4373
dbbc2e69
SM
4374 * server.el (server-eval-at): Handle non-tcp connections.
4375 Decode result string.
ad0bf5b6 4376
e29ab36b
AS
4377 * server.el (server-msg-size): New constant.
4378 (server-reply-print): New function.
4379 (server-eval-and-print): Use it.
4380 (server-eval-at): Use server-quote-arg and server-unquote-arg.
4381 Handle -print-nonl.
4382
de5939ba
CS
43832012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
4384
4385 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
4386 (Bug#10987).
4387
0c93eabf
CY
43882012-03-11 Chong Yidong <cyd@gnu.org>
4389
397a688f
CY
4390 * simple.el (goto-line): Doc fix (Bug#9938).
4391
2cc775f9
CY
4392 * subr.el (save-window-excursion): Doc fix (Bug#9979).
4393
0c93eabf
CY
4394 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
4395 when finished (Bug#10963).
4396
c491fa41
MR
43972012-03-11 Martin Rudalics <rudalics@gmx.at>
4398
4399 * window.el (split-window-below): Fix bug in case where
4400 split-window-keep-point is nil (Bug#10971).
4401
300e8fa5
JL
44022012-03-11 Juri Linkov <juri@jurta.org>
4403
4404 * replace.el (replace-highlight): Set isearch-word to nil
4405 unconditionally. (Bug#10887)
4406
dbf6c5a1
EZ
44072012-03-10 Eli Zaretskii <eliz@gnu.org>
4408
4409 * net/mairix.el (mairix-replace-invalid-chars): Rename from
4410 mairix-replace-illegal-chars; all callers changed. Don't remove
dc9924b8 4411 ^, ~, and = characters: they are meaningful in mairix search specs.
dbf6c5a1
EZ
4412 (mairix-widget-create-query): Add usage information about mairix
4413 search forms: negating words, searching for substrings, etc.
4414
b9e501de
JP
44152012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
4416
4417 * international/fontset.el (font-encoding-alist): Add an entry for
4418 ksx1001 (Bug#5667).
4419
92795c91
RS
44202012-03-10 Richard Stallman <rms@gnu.org>
4421
1694e6c1
RS
4422 * mail/sendmail.el (mail-encode-header):
4423 Set rfc2047-encode-encoded-words.
4424
607e8555
RS
4425 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
4426
de3bc99a
RS
4427 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
4428 view buffer means not swapped.
4429 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
4430 (rmail-write-region-annotate): Error if real text has disappeared.
4431
92795c91
RS
4432 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
4433
699bd04e
CY
44342012-03-10 Chong Yidong <cyd@gnu.org>
4435
4436 * emulation/cua-rect.el (cua--init-rectangles):
dbbc2e69
SM
4437 * emulation/cua-base.el (cua--init-keymaps):
4438 Add delete-forward-char to remappings (Bug#9666).
699bd04e 4439
570a1714
MR
44402012-03-10 Martin Rudalics <rudalics@gmx.at>
4441
dbbc2e69
SM
4442 * speedbar.el (speedbar-unhighlight-one-tag-line):
4443 Avoid unhighlighting due to frame switching (Bug#10275).
570a1714 4444
82dcf4e4
CY
44452012-03-10 Chong Yidong <cyd@gnu.org>
4446
7a2c7ca7
CY
4447 * minibuffer.el (completion-in-region, completion-help-at-point):
4448 Give the completion field overlay a high priority (Bug#6830).
4449
82dcf4e4
CY
4450 * dired.el (dired-goto-file): Recognize absolute file name
4451 listings (Bug#7126).
4452 (dired-goto-file-1): New helper function.
4453 (dired-toggle-read-only): Inhibit warnings.
4454
052e28ac
MA
44552012-03-09 Michael Albinus <michael.albinus@gmx.de>
4456
75f1671a 4457 * net/dbus.el (dbus-property-handler): Return empty array if
052e28ac
MA
4458 there are no properties.
4459
95d5e396
LL
44602012-03-09 Leo Liu <sdl.web@gmail.com>
4461
4462 * savehist.el (savehist-printable): Stricter check for string
4463 value (Bug#10937).
4464
3f018d6d
EZ
44652012-03-09 Eli Zaretskii <eliz@gnu.org>
4466
dbbc2e69
SM
4467 * mail/smtpmail.el (smtpmail-send-it):
4468 Bind coding-system-for-write to *-unix, so that FCC files are kept in
3f018d6d
EZ
4469 valid mbox format.
4470
f7fd3d79
GM
44712012-03-09 Glenn Morris <rgm@gnu.org>
4472
4473 * files.el (dir-locals-find-file):
4474 Don't check result is regular, readable.
4475 (dir-locals-read-from-file): Demote errors.
4476
6ff6e72f
EZ
44772012-03-08 Eli Zaretskii <eliz@gnu.org>
4478
dbbc2e69
SM
4479 * international/quail.el (quail-insert-kbd-layout):
4480 Insert invisible LRM characters before each character in a keyboard
6ff6e72f
EZ
4481 layout cell, to prevent their reordering by bidi display engine.
4482 For details, see the discussion in
4483 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
4484
9cec7834
AM
44852012-03-08 Alan Mackenzie <acm@muc.de>
4486
4487 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
4488 the starting position; make it extend the marked region when
4489 invoked repeatedly - all under appropriate circumstances.
4490 Fixes bugs #5525, #10906.
4491
9a40b8d4
GM
44922012-03-08 Glenn Morris <rgm@gnu.org>
4493
4494 * files.el (locate-dominating-file, dir-locals-find-file):
4495 Undo 2012-03-06 change.
4496
7a08ed35
EZ
44972012-03-07 Eli Zaretskii <eliz@gnu.org>
4498
dbbc2e69
SM
4499 * international/quail.el (quail-help):
4500 Force bidi-paragraph-direction be left-to-right. See discussion in
7a08ed35
EZ
4501 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
4502 for the reason.
4503
5aca4f71 45042012-03-07 Michael Albinus <michael.albinus@gmx.de>
6612a284
MA
4505
4506 Avoid superfluous registering of signals. (Bug#10807)
4507
4508 * notifications.el (notifications-on-action-object)
4509 (notifications-on-close-object): New defvars.
4510 (notifications-on-action-signal, notifications-on-closed-signal):
4511 Unregister the signal if not needed any longer.
4512 (notifications-notify): Register `notifications-action-signal' or
4513 `notifications-closed-signal', if :on-action or :on-close has been
4514 passed as argument.
4515
78e8b10a
CY
45162012-03-07 Chong Yidong <cyd@gnu.org>
4517
4518 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
4519 non-X platforms.
4520
69481eb8
GM
45212012-03-06 Glenn Morris <rgm@gnu.org>
4522
4523 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
4524 (x-disown-selection-internal, x-get-selection-internal):
4525 Doc fix (add arglist signatures). (Bug#10783)
4526
133b8e11
KS
45272012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4528
4529 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
4530 Handle breakpoints with no "type".
4531
99a83064
GM
45322012-03-06 Glenn Morris <rgm@gnu.org>
4533
4534 * files.el (locate-dominating-file): Add optional predicate argument.
4535 (dir-locals-find-file): Make use of above change.
4536
17798e78
TTN
45372012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
4538
4539 * info.el (Info-insert-dir): Also try "dir.gz".
4540
eb182446
GM
45412012-03-06 Glenn Morris <rgm@gnu.org>
4542
8f2114ee
GM
4543 * files.el (dir-locals-find-file):
4544 Ignore non-readable or non-regular files. (Bug#10928)
4545
eb182446
GM
4546 * files.el (locate-dominating-file): Doc fix.
4547
24679323
AS
45482012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
4549
4550 * calendar/calendar.el (calendar-set-mode-line):
4551 `getenv' returns a string. (Bug#10951)
4552
01d972a9
LL
45532012-03-05 Leo Liu <sdl.web@gmail.com>
4554
109aa8a9
LL
4555 * simple.el (backward-delete-char-untabify): Constrain point to
4556 field (Bug#10939).
4557
01d972a9
LL
4558 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
4559
10607bea
CY
45602012-03-05 Chong Yidong <cyd@gnu.org>
4561
4562 * simple.el (count-words): If called from Lisp, return the word
4563 count, for symmetry with `count-lines'. Arglist changed.
4564 (count-words--message): Args changed. Consolidate counting code
4565 from count-words and count-words-region.
4566 (count-words-region): Caller changed.
4567 (count-lines-region): Make it an obsolete alias.
4568
5dd11cfe
TH
45692012-03-04 Tassilo Horn <tassilo@member.fsf.org>
4570
4571 * saveplace.el (save-place-to-alist)
4572 (save-place-ignore-files-regexp): Allow value nil to disable this
4573 feature.
4574
c349f4e6
CY
45752012-03-04 Chong Yidong <cyd@gnu.org>
4576
4577 * faces.el (face-spec-reset-face): For the default face, reset the
4578 attributes to default values (Bug#10748).
4579
e627be4c
LMI
45802012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4581
4582 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
4583 previous patch: Check `message-send-mail-function', and not the
4584 default function (bug#10897).
4585
ebeabff4
MA
45862012-03-04 Michael Albinus <michael.albinus@gmx.de>
4587
a41a6cf4
MA
4588 * notifications.el (notifications-on-action-signal)
4589 (notifications-on-closed-signal): Check for unique service name of
4590 incoming event. Fix error in removing entry.
ebeabff4 4591 (top): Register for signals with wildcard service name.
a41a6cf4 4592 (notifications-notify): Use daemon unique service name for map entries.
ebeabff4 4593
c1ca42b4
CY
45942012-03-04 Chong Yidong <cyd@gnu.org>
4595
dc9924b8 4596 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
c1ca42b4 4597
ea16568d
GM
45982012-03-04 Glenn Morris <rgm@gnu.org>
4599
4600 * abbrev.el (copy-abbrev-table, abbrev-table-p)
4601 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
4602 (expand-abbrev, define-abbrev-table): Doc fixes.
4603
fbae4637
LMI
46042012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4605
4606 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
4607 `message-default-send-mail-function' and not `send-mail-function'
4608 when doing the prompting for `sendmail-query-once' before sending
4609 in Message buffers (bug#10897).
4610
a1e7225c
LMI
4611 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
4612 This is inconsistent with all the other stream functions, which leave
4613 the setting up to the higher levels (if so wanted) (bug#10931).
4614
56d093a9
AM
46152012-03-02 Alan Mackenzie <acm@muc.de>
4616
4617 Depessimize the handling of very large macros.
4618
4619 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
4620 (c-macro-cache-syntactic): New variables to implement a one
4621 element macro cache.
4622 (c-invalidate-macro-cache): New function.
4623 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
4624 Adapt to use the new cache.
4625 (c-state-safe-place): Use better the cache of safe positions.
4626 (c-state-semi-nonlit-pos-cache)
4627 (c-state-semi-nonlit-pos-cache-limit):
4628 New variables for...
4629 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
4630 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
dbbc2e69
SM
4631 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
4632 Use c-state-semi-safe-place.
56d093a9 4633
dbbc2e69
SM
4634 * progmodes/cc-langs.el (c-get-state-before-change-functions):
4635 Add c-invalidate-macro-cache to the C, C++, Obj entries.
56d093a9 4636
817e5c3d
MA
46372012-03-02 Michael Albinus <michael.albinus@gmx.de>
4638
dbbc2e69
SM
4639 * jka-compr.el (jka-compr-call-process):
4640 Apply `file-accessible-directory-p' only when the default directory is
817e5c3d
MA
4641 not remote.
4642
a032a702
MA
46432012-03-01 Michael Albinus <michael.albinus@gmx.de>
4644
4645 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
4646 access of FILE2, if FILE1 does not exist.
4647
99a54f21
MA
4648 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
4649 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
4650
4651 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
4652 Add "PAGER=" to `process-environment'.
4653
f6561e1f
MM
46542012-03-01 Michael R. Mauger <mmaug@yahoo.com>
4655
4656 * progmodes/sql.el: Bug fix
4657 (sql-get-login-ext): Save login values in globals.
4658 (sql-get-login): Use new version of `sql-get-login-ext'.
4659 (sql-interactive-mode): Set global `sql-connection' to nil.
4660 (sql-connect): Set global values for connection.
4661 (sql-product-interactive): Save global values as buffer local.
4662
2d44d9cc
LL
46632012-02-29 Leo Liu <sdl.web@gmail.com>
4664
4665 * abbrev.el (define-abbrevs): Reset sys to nil.
4666
96b49301 46672012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4668
bf7f9bc5
JB
4669 * files.el (file-equal-p): Rename from `files-equal-p'.
4670 Return nil when one or both files don't exist.
96b49301 4671 (file-subdir-of-p): Now only top directory must exists,
4672 return nil if it doesn't.
bf7f9bc5
JB
4673 (copy-directory): No need to test with `file-subdir-of-p' after
4674 creating dir.
4675 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
4676 to `file-equal-p'.
96b49301 4677
44e97401
GM
46782012-02-28 Glenn Morris <rgm@gnu.org>
4679
4680 * shell.el (shell-mode):
4681 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
4682 * play/landmark.el (landmark-font-lock-face-O):
4683 * play/handwrite.el (handwrite):
4684 * play/gomoku.el (gomoku-O):
4685 * net/browse-url.el (browse-url-browser-display):
4686 * international/mule.el (define-charset):
4687 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
4688 * filesets.el (filesets-find-file-delay):
4689 * eshell/em-xtra.el (eshell-xtra):
4690 * eshell/em-unix.el (eshell-grep):
4691 * emulation/viper.el (viper-mode):
4692 * emacs-lisp/regexp-opt.el (regexp-opt-group):
4693 * emacs-lisp/easymenu.el (easy-menu-define):
4694 * calendar/timeclock.el (timeclock-use-display-time):
4695 * bs.el (bs-mode):
4696 * bookmark.el (bookmark-save-flag):
4697 Doc fix (standardize possessive apostrophe usage).
4698
c98c6276
CY
46992012-02-27 Chong Yidong <cyd@gnu.org>
4700
bf7f9bc5
JB
4701 * emulation/viper-cmd.el (viper-intercept-ESC-key):
4702 Fix key-binding lookup for ESC key (Bug#9146).
ecf5f74e 4703
c98c6276
CY
4704 * font-lock.el (font-lock-specified-p): Rename from
4705 font-lock-spec-present. Callers changed.
4706
9c62cd04 47072012-02-27 Daniel Hackney <dan@haxney.org>
8ac9e529 4708
bf7f9bc5
JB
4709 * emacs-lisp/package.el (package-compute-transaction):
4710 Handle holding a package version to t in package-load-list.
8ac9e529 4711
530739c9
MA
47122012-02-26 Michael Albinus <michael.albinus@gmx.de>
4713
4714 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
4715 (tramp-get-inode, tramp-get-device): Use cached values.
4716
487915d7
AM
47172012-02-26 Alan Mackenzie <acm@muc.de>
4718
4719 Check there is a font-lock specification before doing initial
4720 fontification.
4721
4722 * font-core.el (font-lock-mode): Move the conditional from
4723 :after-hook to font-lock-initial-fontify.
4724 (font-lock-default-function): Move the check for a specification
4725 to font-lock-spec-present.
4726
dc9924b8 4727 * font-lock.el (font-lock-initial-fontify): Call ...
487915d7
AM
4728 (font-lock-spec-present): New function.
4729
4fd96557
JB
47302012-02-26 Jim Blandy <jimb@red-bean.com>
4731
4732 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
4733 (gdb-send): Apply it to the operand of the '-interpreter-exec
4734 console' command, so that we can pass arguments with (say) quotes
4735 in them. Store exact string sent in gdb-debug-log (Bug#10765).
4736
9a4888c0
CY
47372012-02-26 Chong Yidong <cyd@gnu.org>
4738
07498861
CY
4739 * help-fns.el (describe-function-1): Clarify description of
4740 remapping (Bug#10844).
4741
9a4888c0
CY
4742 * files.el (files-equal-p): Doc fix.
4743 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
4744 and quit the loop once a mismatch is found.
4745
ea8fb88d
JB
47462012-02-25 Juanma Barranquero <lekktu@gmail.com>
4747
4748 * bs.el (bs--show-with-configuration): Don't throw an error
4749 if the window cannot be split; otherwise, subsequent calls to
4750 bs-show fail, restoring a stale window config. (Bug#10882)
4751
525795c1
JD
47522012-02-25 Jan Djärv <jan.h.d@swipnet.se>
4753
4754 * term/ns-win.el (global-map): Bind ns-drag-file to
4755 ns-find-file (Bug#5855, Bug#10050).
4756
f008086f
AS
47572012-02-25 Andreas Schwab <schwab@linux-m68k.org>
4758
4759 * calendar/parse-time.el (parse-time-string): Allow extractor to
4760 return nil.
4761
a3fcfa99
MA
47622012-02-25 Michael Albinus <michael.albinus@gmx.de>
4763
91027d08
JB
4764 * net/tramp.el (tramp-file-name-for-operation):
4765 Add `files-equal-p' and `file-subdir-of-p'.
a3fcfa99
MA
4766
4767 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
91027d08
JB
4768 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
4769 Add COPY-CONTENTS argument.
a3fcfa99 4770
67b0de11
CY
47712012-02-25 Chong Yidong <cyd@gnu.org>
4772
4773 Add custom groups for VC backends, for consistency with vc-bzr.
4774
4775 * vc/vc-arch.el (vc-arch):
4776 * vc/vc-cvs.el (vc-cvs):
4777 * vc/vc-git.el (vc-git):
4778 * vc/vc-hg.el (vc-hg):
4779 * vc/vc-mtn.el (vc-mtn):
4780 * vc/vc-rcs.el (vc-rcs):
4781 * vc/vc-sccs.el (vc-sccs):
4782 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
4783 All relevant defcustoms reassigned.
4784
3c9dfce6
CY
47852012-02-25 Chong Yidong <cyd@gnu.org>
4786
1339bf43
CY
4787 * newcomment.el (comment-styles): Add autoload (Bug#10868).
4788
3c9dfce6
CY
4789 * term/x-win.el (x-initialize-window-system): Reduce default for
4790 x-selection-timeout to 5 seconds (Bug#8869).
4791
25b2e303 47922012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4793
ec70a47d
GM
4794 * files.el (files-equal-p, file-subdir-of-p): New functions.
4795 (copy-directory): Error when trying to copy a directory on itself.
25b2e303 4796 Add missing copy-contents arg to tramp handler.
ec70a47d
GM
4797 * dired-aux.el (dired-copy-file-recursive): Same.
4798 (dired-create-files): Modify destination when source is equal to
4799 dest when copying files.
53a46cd0 4800 Return also when dest is a subdir of source. (Bug#10489)
25b2e303 4801
914260cd
MA
48022012-02-24 Michael Albinus <michael.albinus@gmx.de>
4803
4804 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
4805 (Bug#10874)
4806
2cb228f7
AM
48072012-02-23 Alan Mackenzie <acm@muc.de>
4808
4809 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
4810 parameter "after-hook:" to allow the expansion to run code after
4811 the execution of the mode hooks.
4812
4813 * font-lock.el (font-lock-initial-fontify): New function extracted
91027d08 4814 from font-lock-mode-internal.
2cb228f7 4815
91027d08 4816 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
2cb228f7
AM
4817 :after-hook.
4818
8f0fde21
SM
48192012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
4820
3e88618b
SM
4821 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
4822 (completion--cache-all-sorted-completions): New function.
4823 (completion-all-sorted-completions): Use it.
4824 (completion--do-completion, minibuffer-force-complete):
4825 Use it to re-instate the flush hook.
4826
8f0fde21
SM
4827 * icomplete.el (icomplete-completions): Replace last fix with a better
4828 one (bug#10850).
4829
8e911f6f
DG
48302012-02-23 Dmitry Gutov <dgutov@yandex.ru>
4831
4832 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
4833 when it might call us back infinitely (bug#10797).
4834
49fe4321
GM
48352012-02-23 Glenn Morris <rgm@gnu.org>
4836
4837 * minibuffer.el (completion-category-overrides): Doc fix.
4838
b291b572
SM
48392012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
4840
4841 * minibuffer.el (completion-table-with-context): Fix inf-loop.
4842 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
4843
31a9ef2e
GM
48442012-02-23 Glenn Morris <rgm@gnu.org>
4845
5e6e6794 4846 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
31a9ef2e
GM
4847 (authors-obsolete-files-regexps, authors-ignored-files)
4848 (authors-ambiguous-files, authors-renamed-files-alist):
4849 Add more entries.
4850
0bd1e074
JL
48512012-02-23 Juri Linkov <juri@jurta.org>
4852
4853 * isearch.el (isearch-occur): Sync interactive spec with occur's
4854 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
4855
b617673c
JL
4856 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
4857
19e9789e
JL
48582012-02-22 Juri Linkov <juri@jurta.org>
4859
4860 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
4861 (ucs-insert): Doc fix. Check for hex digits in the string.
4862 Don't display `nil' in the error message. (Bug#10857)
4863
f41ce09d
AM
48642012-02-22 Alan Mackenzie <acm@muc.de>
4865
7a71b18d 4866 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
f41ce09d 4867
ac2eceee
GM
48682012-02-22 Glenn Morris <rgm@gnu.org>
4869
4870 * ffap.el (ffap-c-path):
4871 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
4872
abd1f678
CY
48732012-02-22 Chong Yidong <cyd@gnu.org>
4874
4875 * custom.el (load-theme): Doc fix.
4876
f25aef2e
GM
48772012-02-22 Glenn Morris <rgm@gnu.org>
4878
4879 * dired-x.el (dired-guess-shell-alist-default):
4880 Remove escape sequences from nroff output. (Bug#172)
4881
5f8dc2ca
GM
48822012-02-21 Glenn Morris <rgm@gnu.org>
4883
6ff86ec4
GM
4884 * vc/emerge.el (emerge-defvar-local):
4885 Set `permanent-local' property rather than unused `preserved'.
4886
be3223a3 4887 * textmodes/picture.el (picture-delete-char): New alias.
5f8dc2ca
GM
4888 (picture-mode-map): Use it. (Bug#10860)
4889 (picture-mode): Doc fix.
4890
3fe58f4f
JB
48912012-02-21 Juanma Barranquero <lekktu@gmail.com>
4892
4893 * newcomment.el (uncomment-region-default): Remove unused binding.
4894
f9a998c3
GM
48952012-02-21 Glenn Morris <rgm@gnu.org>
4896
4897 * textmodes/picture.el (picture-motion, picture-motion-reverse)
4898 (picture-self-insert, picture-tab-chars): Doc fix.
4899 (picture-mode-map): Fix C-a, C-e.
4900
c6029348
GM
49012012-02-20 Glenn Morris <rgm@gnu.org>
4902
4903 * emacs-lisp/authors.el (authors-aliases): Add another entry.
4904
ab1ce9d7
LL
49052012-02-20 Leo Liu <sdl.web@gmail.com>
4906
4907 * icomplete.el (icomplete-completions): Check FROM arg before
4908 passing to substring (Bug#10850).
4909
0fd40f89
CY
49102012-02-19 Chong Yidong <cyd@gnu.org>
4911
4912 * comint.el: Require ansi-color.
4913 (comint-output-filter-functions): Add ansi-color-process-output.
4914
4915 * ansi-color.el: Don't set comint-output-filter-functions; it is
4916 now in the initial value defined in comint.el.
4917 (ansi-color-apply-face-function): New variable.
4918 (ansi-color-apply-on-region): Use it.
4919 (ansi-color-apply-overlay-face): New function.
4920
4921 * shell.el (shell): No need to require ansi-color.
4922 (shell-mode): Use ansi-color-apply-face-function to highlight
4923 color escapes using font-lock-face property (Bug#10835).
4924
20af2394
CY
49252012-02-19 Chong Yidong <cyd@gnu.org>
4926
4927 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
4928 mode-line formats (Bug#10839).
4929
e23a3fbe
GM
49302012-02-18 Glenn Morris <rgm@gnu.org>
4931
b474519e
GM
4932 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
4933
4934 * mail/undigest.el (unforward-rmail-message): Doc fix.
4935
e23a3fbe
GM
4936 * saveplace.el (save-place-ignore-files-regexp): Add :version.
4937
57939ff4
EZ
49382012-02-18 Eli Zaretskii <eliz@gnu.org>
4939
4940 * international/characters.el (script-list): Sync with the latest
4941 Unicode Character Database.
4942
0c23686e
AS
49432012-02-18 Andreas Schwab <schwab@linux-m68k.org>
4944
4945 * international/titdic-cnv.el: Remove duplicate coding tag.
4946 * language/cham.el: Likewise.
4947 * language/tai-viet.el: Likewise.
4948
6818b449
GM
49492012-02-18 Glenn Morris <rgm@gnu.org>
4950
4951 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
4952 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
4953 (calendar-bahai-all-holidays-flag, calendar-other-dates):
4954 * calendar/diary-lib.el (diary-abbreviated-year-flag):
4955 * calendar/holidays.el (holiday-bahai-holidays)
4956 (calendar-holidays, list-holidays):
4957 Use utf-8 Bahá'í in doc-strings, menus, etc.
4958
0311a3fc
TH
49592012-02-17 Tassilo Horn <tassilo@member.fsf.org>
4960
4961 * saveplace.el (save-place-ignore-files-regexp): New variable
4962 allowing for excluding files from saving their location of point.
4963 The default value matches the temporary commit message editing
4964 files from Git, SVN, Bazaar, and Mercurial.
4965 (save-place-to-alist): Use it.
4966
eb864a71
LM
49672012-02-17 Lawrence Mitchell <wence@gmx.li>
4968 Stefan Monnier <monnier@iro.umontreal.ca>
4969
4970 * newcomment.el (uncomment-region-default): Don't leave extra space
4971 when an arg is provided (bug#8150).
4972
ee0ce425
TZ
49732012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
4974
eb864a71 4975 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
ee0ce425 4976
95ddf442
GM
49772012-02-17 Glenn Morris <rgm@gnu.org>
4978
4979 * net/socks.el: Require network-stream. (Bug#10599)
4980
48dd1e39 49812012-02-17 Kenichi Handa <handa@m17n.org>
c406be43
KH
4982
4983 * international/charprop.el:
4984 * international/uni-name.el:
4985 * international/uni-old-name.el:
4986 * international/uni-comment.el: Regenerate.
4987
d68cd087
GM
49882012-02-16 Glenn Morris <rgm@gnu.org>
4989
4990 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
4991 Interactively in calendar buffer, give an error if not on a date.
4992
13932042
GM
49932012-02-15 Glenn Morris <rgm@gnu.org>
4994
4995 * shell.el (shell-delimiter-argument-list):
4996 Revert 2011-02-17 change. (Bug#8027)
4997
c3a70e2b
CY
49982012-02-15 Chong Yidong <cyd@gnu.org>
4999
60236b0d
CY
5000 * minibuffer.el (completion-at-point-functions): Doc fix.
5001
c3a70e2b
CY
5002 * custom.el (defcustom): Doc fix; note use of defvar.
5003
9f26dc24
GM
50042012-02-15 Glenn Morris <rgm@gnu.org>
5005
5006 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
5007 Doc fixes.
5008
6546b134
GM
50092012-02-14 Glenn Morris <rgm@gnu.org>
5010
5011 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
5012
d29b2b4c
LI
50132012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
5014
5015 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
5016 way the ports list is computed.
835bdcba
LI
5017 (smtpmail-query-smtp-server): Prompt the user for a port number if
5018 we can't connect to any of the standard ports (bug#10810).
d29b2b4c 5019
08dcdbc9
TZ
50202012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
5021
5022 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
5023
2605051a
GM
50242012-02-13 Glenn Morris <rgm@gnu.org>
5025
5026 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
5027
7ee99f32
TZ
50282012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
5029
5030 * net/gnutls.el (gnutls-trustfiles): New variable.
5031 (gnutls-negotiate): Use it.
5032
5f0af64f
LI
50332012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
5034
5035 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
5036 does its stuff if Gnus is running.
5037
c14fcc95
AM
50382012-02-13 Alan Mackenzie <acm@muc.de>
5039
5040 Fix a loop in c-set-fl-decl-start.
5041
7a71b18d 5042 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
c14fcc95
AM
5043 c-backward-syntactic-ws actually moves backwards.
5044
142b4d90
LL
50452012-02-13 Leo Liu <sdl.web@gmail.com>
5046
5047 * net/rcirc.el (rcirc-markup-attributes): Move point to the
5048 beginning so that all \C-o chars are removed.
5049
fa9958a6
TZ
50502012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
5051
dc9924b8 5052 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
fa9958a6 5053
0bc5886a
AM
50542012-02-12 Alan Mackenzie <acm@muc.de>
5055
5056 Fix infinite loop with long macros.
4d6769e1 5057 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
0bc5886a 5058
d4bd55e7
CY
50592012-02-12 Chong Yidong <cyd@gnu.org>
5060
5061 * window.el (display-buffer): Doc fix (Bug#10785).
5062
66f3fe22
GM
50632012-02-12 Glenn Morris <rgm@gnu.org>
5064
bd7da63e
GM
5065 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
5066 (x-disown-selection-internal, x-get-selection-internal):
5067 Sync docs with the xselect.c versions.
5068
66f3fe22
GM
5069 * allout-widgets.el: Add missing license notice.
5070
3e0d2fa7
GM
50712012-02-11 Glenn Morris <rgm@gnu.org>
5072
cfecdf09
GM
5073 * select.el (x-get-selection-internal, x-own-selection-internal)
5074 (x-disown-selection-internal):
5075 * x-dnd.el (x-get-selection-internal): Update declarations.
5076
6d216d7f
GM
5077 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
5078
2bed3f04
GM
5079 * window.el (window-sides-slots):
5080 * tool-bar.el (tool-bar-position):
5081 * term/xterm.el (xterm-extra-capabilities):
5082 * ses.el (ses-self-reference-early-detection):
5083 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
5084 (verilog-auto-wire-type)
5085 (verilog-auto-delete-trailing-whitespace)
5086 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
5087 (verilog-auto-tieoff-declaration):
5088 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
5089 (sql-oracle-statement-starters, sql-oracle-scan-on):
5090 * progmodes/prolog.el (prolog-align-comments-flag)
5091 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
5092 (prolog-left-indent-regexp, prolog-paren-indent-p)
5093 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
5094 (prolog-types, prolog-mode-specificators)
5095 (prolog-determinism-specificators, prolog-directives)
5096 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
5097 (prolog-electric-dot-flag)
5098 (prolog-electric-dot-full-predicate-template)
5099 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
5100 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
5101 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
5102 (prolog-program-switches, prolog-prompt-regexp)
5103 (prolog-debug-on-string, prolog-debug-off-string)
5104 (prolog-trace-on-string, prolog-trace-off-string)
5105 (prolog-zip-on-string, prolog-zip-off-string)
5106 (prolog-use-standard-consult-compile-method-flag)
5107 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
5108 (prolog-imenu-max-lines, prolog-info-predicate-index)
5109 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
5110 (prolog-char-quote-workaround):
5111 * progmodes/cc-vars.el (c-defun-tactic):
5112 * net/tramp.el (tramp-encoding-command-interactive)
5113 (tramp-local-end-of-line):
5114 * net/soap-client.el (soap-client):
5115 * net/netrc.el (netrc-file):
5116 * net/gnutls.el (gnutls):
5117 * minibuffer.el (completion-category-overrides)
5118 (completion-cycle-threshold)
5119 (completion-pcm-complete-word-inserts-delimiters):
5120 * man.el (Man-name-local-regexp):
5121 * mail/feedmail.el (feedmail-display-full-frame):
5122 * international/characters.el (glyphless-char-display-control):
5123 * eshell/em-ls.el (eshell-ls-date-format):
5124 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
5125 (lisp-lambda-list-keyword-parameter-indentation)
5126 (lisp-lambda-list-keyword-parameter-alignment):
5127 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
5128 * dired-x.el (dired-omit-verbose):
5129 * cus-theme.el (custom-theme-allow-multiple-selections):
5130 * calc/calc.el (calc-highlight-selections-with-faces)
5131 (calc-lu-field-reference, calc-lu-power-reference)
5132 (calc-note-threshold):
5133 * battery.el (battery-mode-line-limit):
5134 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
5135 (archive-7z-update):
5136 * allout.el (allout-prefixed-keybindings)
5137 (allout-unprefixed-keybindings)
5138 (allout-inhibit-auto-fill-on-headline)
5139 (allout-flattened-numbering-abbreviation):
5140 * allout-widgets.el (allout-widgets-auto-activation)
5141 (allout-widgets-icons-dark-subdir)
5142 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
5143 (allout-widgets-theme-dark-background)
5144 (allout-widgets-theme-light-background)
5145 (allout-widgets-item-image-properties-emacs)
5146 (allout-widgets-item-image-properties-xemacs)
5147 (allout-widgets-run-unit-tests-on-load)
5148 (allout-widgets-time-decoration-activity)
5149 (allout-widgets-hook-error-post-time)
5150 (allout-widgets-track-decoration):
5151 Add missing :version tags to new defcustoms and defgroups.
5152
5fec1b8e
GM
5153 * progmodes/sql.el (sql-ansi-statement-starters)
5154 (sql-oracle-statement-starters): Add custom type.
5155
3e0d2fa7
GM
5156 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
5157 (prolog-system-version): Give it a type.
5158
90b671e2
EZ
51592012-02-11 Eli Zaretskii <eliz@gnu.org>
5160
5161 * term/pc-win.el (x-select-text, x-selection-owner-p)
5162 (x-own-selection-internal, x-disown-selection-internal)
5163 (x-get-selection-internal): Sync doc strings and argument lists
5164 with xselect.c, common-win.el and x-win.el. (Bug#10783)
5165
5eac0c02
LL
51662012-02-11 Leo Liu <sdl.web@gmail.com>
5167
5168 * progmodes/python.el (python-end-of-statement): Fix infinite
5169 loop. (Bug#10788)
5170
f82cb659
GM
51712012-02-10 Glenn Morris <rgm@gnu.org>
5172
5173 * international/mule-cmds.el (unify-8859-on-encoding-mode)
5174 (unify-8859-on-decoding-mode): Properly mark as obsolete.
5175
cc26d239
LI
51762012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
5177
5178 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
5179 about SMTP before checking the From header.
5180
91027d08 5181 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
cc26d239
LI
5182 into own function for reuse by emacsbug.el.
5183
1be3ca5a
LL
51842012-02-10 Leo Liu <sdl.web@gmail.com>
5185
5186 * subr.el (condition-case-unless-debug): Rename from
5187 condition-case-no-debug. All callers changed.
5188 (with-demoted-errors): Fix caller.
5189
5190 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
5191 * nxml/rng-valid.el (rng-do-some-validation):
5192 * emacs-lisp/package.el (package-refresh-contents)
5193 (package-menu-execute):
5194 * desktop.el (desktop-create-buffer):
91027d08 5195 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
1be3ca5a 5196
b011fbfe
GM
51972012-02-10 Glenn Morris <rgm@gnu.org>
5198
b2096d72
GM
5199 * textmodes/bibtex.el:
5200 Add missing :version tags for new/changed defcustoms.
5201
b011fbfe
GM
5202 * files.el (remote-file-name-inhibit-cache): Doc fixes.
5203
4c7e65bf
LI
52042012-02-09 Lars Ingebrigtsen <larsi@rusty>
5205
5206 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
5207 (smtpmail-via-smtp): Use it, or fall back on the From address.
5208 (smtpmail-send-it): Ditto.
5209
f3934f6f
SM
52102012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
5211
5212 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
5213 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
5214 (byte-compile-tmp-var): New const.
5215 (byte-compile-defvar): Use it to minimize .elc size.
5216 Just use `defvar' rather than simulate it (bug#10761).
5217
a075a2c5
GM
52182012-02-09 Glenn Morris <rgm@gnu.org>
5219
cf3aa21b
GM
5220 * files.el (rename-uniquely): Doc fix. (Bug#3806)
5221
354998cd
GM
5222 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
5223 Add :version tags.
5224
dc9924b8
SM
5225 * progmodes/compile.el (compilation-error-screen-columns)
5226 (compilation-first-column, compilation-filter-start): Doc fixes.
83274125 5227
dab3703d
GM
5228 * vc/log-view.el (log-view-toggle-entry-display):
5229 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
5230
3f88cd72
GM
5231 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
5232 (report-emacs-bug-can-use-xdg-email):
5233 (report-emacs-bug-insert-to-mailer): Doc fixes.
5234 (report-emacs-bug): Message fix.
5235
d95b247d
GM
5236 * net/browse-url.el (browse-url-can-use-xdg-open)
5237 (browse-url-xdg-open): Doc fixes.
5238
a075a2c5
GM
5239 * electric.el (electric-indent-mode, electric-pair-mode)
5240 (electric-layout-rules, electric-layout-mode): Doc fixes.
5241 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
5242
ffb6157e
MR
52432012-02-08 Martin Rudalics <rudalics@gmx.at>
5244
5245 * server.el (server-unselect-display): Don't inadvertently kill
5246 the current buffer. (Bug#10729)
5247
e1ac4066
GM
52482012-02-08 Glenn Morris <rgm@gnu.org>
5249
34e8a2da
GM
5250 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
5251 (sql-list-table): Doc fixes.
5252
b4ac6e8c
GM
5253 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
5254 Comment out (does nothing).
5255
e1ac4066
GM
5256 * completion.el (dynamic-completion-mode):
5257 * dirtrack.el (dirtrack-debug-mode):
5258 * electric.el (electric-layout-mode):
5259 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
5260 * face-remap.el (text-scale-mode, buffer-face-mode):
5261 * iimage.el (iimage-mode):
5262 * image-mode.el (image-transform-mode):
5263 * minibuffer.el (completion-in-region-mode):
5264 * scroll-lock.el (scroll-lock-mode):
5265 * simple.el (next-error-follow-minor-mode):
5266 * tar-mode.el (tar-subfile-mode):
5267 * tooltip.el (tooltip-mode):
5268 * vcursor.el (vcursor-use-vcursor-map):
5269 * wid-browse.el (widget-minor-mode):
5270 * emulation/tpu-edt.el (tpu-edt-mode):
5271 * emulation/tpu-extras.el (tpu-cursor-free-mode):
5272 * international/iso-ascii.el (iso-ascii-mode):
5273 * language/thai-util.el (thai-word-mode):
5274 * mail/supercite.el (sc-minor-mode):
5275 * net/goto-addr.el (goto-address-mode):
5276 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
5277 * progmodes/cwarn.el (cwarn-mode):
5278 * progmodes/flymake.el (flymake-mode):
5279 * progmodes/glasses.el (glasses-mode):
5280 * progmodes/hideshow.el (hs-minor-mode):
5281 * progmodes/pascal.el (pascal-outline-mode):
5282 * textmodes/enriched.el (enriched-mode):
5283 * vc/smerge-mode.el (smerge-mode):
5284 Doc fixes (minor mode argument).
5285
5e0d957f
EZ
52862012-02-07 Eli Zaretskii <eliz@gnu.org>
5287
5288 * ls-lisp.el (ls-lisp-sanitize): New function.
5289 (ls-lisp-insert-directory): Use it to fix or remove any elements
5290 in file-alist with missing attributes. (Bug#4673)
5291
98d7371e
AM
52922012-02-07 Alan Mackenzie <acm@muc.de>
5293
5294 Fix spurious recognition of c-in-knr-argdecl.
5295
5296 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
5297 putative K&R region.
5298
667ced3a
AM
52992012-02-07 Alan Mackenzie <acm@muc.de>
5300
eb864a71
LM
5301 * progmodes/cc-engine.el (c-forward-objc-directive):
5302 Prevent looping in "#pragma mark @implementation".
667ced3a 5303
5b77774d
MA
53042012-02-07 Michael Albinus <michael.albinus@gmx.de>
5305
5306 * notifications.el (notifications-on-closed-signal): Make `reason'
5307 optional. (Bug#10744)
5308
af008560
GM
53092012-02-07 Glenn Morris <rgm@gnu.org>
5310
60d47423
GM
5311 * emacs-lisp/easy-mmode.el (define-minor-mode):
5312 Doc fixes for the macro and the mode it defines.
5313
dd605cc4
GM
5314 * image.el (imagemagick-types-inhibit): Doc fix.
5315
af008560
GM
5316 * cus-start.el (imagemagick-render-type): Add it.
5317
5cc59a37
LI
53182012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
5319
4d6769e1
JB
5320 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
5321 Set the default at load time, too, so that `font-lock-fontify-buffer'
5322 can be called without setting up the entire mode first. This fixes
5323 a bug in `mm-inline-text' with C MIME parts.
5cc59a37 5324
9a6dd747
CY
53252012-02-06 Chong Yidong <cyd@gnu.org>
5326
2d16b285
CY
5327 * simple.el (list-processes--refresh): Delete exited processes
5328 (Bug#8094).
5329
171e9b6e
CY
5330 * comint.el (comint-next-prompt): next-single-char-property-change
5331 and prev-single-char-property-change never return nil (Bug#8657).
5332
9a6dd747
CY
5333 * custom.el (defcustom): Doc fix (Bug#9711).
5334
aa4589a7
CY
53352012-02-05 Chong Yidong <cyd@gnu.org>
5336
5c2a252f
CY
5337 * cus-edit.el (custom-variable-reset-backup): Quote the value
5338 before storing it in the customized-value property (Bug#6712).
4aab9006 5339 (custom-display): Add a customization type tag.
983b9602 5340 (custom-buffer-create-internal): Improve tooltip message.
5c2a252f 5341
aa4589a7
CY
5342 * wid-edit.el (widget-field-value-get): New optional arg to
5343 suppress trailing whitespace truncation.
5344 (character): Use it (Bug#2689).
5345
1ff980ae
AS
53462012-02-05 Andreas Schwab <schwab@linux-m68k.org>
5347
5348 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
5349 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
5350
03988c98
CY
53512012-02-05 Chong Yidong <cyd@gnu.org>
5352
eeb6cc88
CY
5353 * cus-edit.el (custom-variable-value-create): For mismatched
5354 types, show the current value (Bug#7600).
5355
03988c98
CY
5356 * custom.el (defcustom): Doc fix.
5357
f8cdeef0
GM
53582012-02-05 Glenn Morris <rgm@gnu.org>
5359
5360 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
5361
0696d255
JB
53622012-02-05 Juanma Barranquero <lekktu@gmail.com>
5363
5364 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
5365 (pp-buffer): Use `ignore-errors', `looking-at-p'.
5366 (pp-last-sexp): Use `looking-at-p'.
5367
34c99998
GM
53682012-02-04 Glenn Morris <rgm@gnu.org>
5369
8f05da42
GM
5370 * files.el (revert-buffer):
5371 Doc fix (mention revert-buffer-in-progress-p).
5372
f160676e
GM
5373 * emacs-lisp/ert-x.el (ert-simulate-command):
5374 Check deferred-action-list (which is obsolete) is bound.
5375
c7291ad9
GM
5376 * subr.el (with-wrapper-hook): Doc fixes.
5377
34c99998
GM
5378 * simple.el (filter-buffer-substring-functions)
5379 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
5380
6283a7d3
LL
53812012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
5382
5383 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
5384 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
5385
e96e3013
LL
53862012-02-04 Leo Liu <sdl.web@gmail.com>
5387
5388 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
5389
8ded50f2
GM
53902012-02-04 Glenn Morris <rgm@gnu.org>
5391
82ff1d13
GM
5392 * image.el (image-extension-data): Add obsolete alias.
5393
987a0a16
GM
5394 * isearch.el (isearch-update): Doc fix.
5395
ea32ef46
GM
5396 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
5397
8ded50f2
GM
5398 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
5399
eea14f31
GM
54002012-02-03 Glenn Morris <rgm@gnu.org>
5401
5402 * image.el (image-animated-p): Doc fix. Use image-animated-types.
5403 (image-animate-timeout): Doc fix.
5404
5405 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
5406
12f381b7
GM
54072012-02-02 Glenn Morris <rgm@gnu.org>
5408
953cebf5
GM
5409 * server.el (server-auth-dir): Doc fix.
5410 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
5411
12f381b7
GM
5412 * subr.el (run-mode-hooks): Doc fix.
5413
953a8c3b
JL
54142012-02-02 Juri Linkov <juri@jurta.org>
5415
5416 * image-mode.el (image-toggle-display-image): Remove tautological
5417 `major-mode' from the `derived-mode-p' test.
5418
c5d3843c
KH
54192012-02-02 Kenichi Handa <handa@m17n.org>
5420
9f6e692e 5421 * composite.el (compose-region): Cancel previous change.
c5d3843c 5422
159462d4 54232012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
5424
5425 * composite.el (compose-region, compose-string): Signal error for
5426 a null string component (Bug#6988).
5427
9f562668
CY
54282012-02-01 Chong Yidong <cyd@gnu.org>
5429
e2cef717
CY
5430 * view.el (view-buffer-other-window, view-buffer-other-frame):
5431 Handle special modes like view-buffer (Bug#10650).
5432 (view-buffer): Simplify.
5433
9f562668
CY
5434 * frame.el (set-frame-font): Tweak meaning of third argument.
5435
9f6e692e
JB
5436 * dynamic-setting.el (font-setting-change-default-font):
5437 Use set-frame-font (Bug#9982).
9f562668 5438
781acb9f
GM
54392012-02-01 Glenn Morris <rgm@gnu.org>
5440
6035be52
GM
5441 * progmodes/compile.el (compilation-internal-error-properties):
5442 Respect compilation-first-column in the "*compilation*" buffer.
5443
781acb9f
GM
5444 * emacs-lisp/easy-mmode.el (define-minor-mode):
5445 Relax :variable's test for a named function.
5446
abbceb00
AM
54472012-01-31 Alan Mackenzie <acm@muc.de>
5448
5449 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
5450 off by one error.
5451
fce3fdeb
CY
54522012-01-31 Chong Yidong <cyd@gnu.org>
5453
5454 * frame.el (set-frame-font): New arg ALL-FRAMES.
5455
5456 * menu-bar.el (menu-set-font): Use set-frame-font.
5457
5458 * faces.el (face-spec-reset-face): Don't apply unspecified
5459 attribute values to the default face.
5460
47893581
JB
54612012-01-31 Juanma Barranquero <lekktu@gmail.com>
5462
5463 * progmodes/cwarn.el (cwarn): Remove dead link.
5464 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
5465 Remove * from defcustom docstrings.
5466 (turn-on-cwarn-mode): Make obsolete.
5467 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
5468 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
5469
e58e988a
GM
54702012-01-31 Glenn Morris <rgm@gnu.org>
5471
60dc2671 5472 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6c9b47ae 5473 Fix :variable handling of mode a symbol not equal to modefun.
60dc2671 5474 Allow named functions to be used as the cdr of :variable.
e58e988a 5475
7a3f511d
GM
54762012-01-30 Glenn Morris <rgm@gnu.org>
5477
5478 * emacs-lisp/authors.el (authors-fixed-entries):
5479 Remove reference to deleted file rnewspost.el.
5480
cb882333
JB
54812012-01-29 Juanma Barranquero <lekktu@gmail.com>
5482
5483 * window.el (window-with-parameter): Remove unused variable `windows'.
5484 (window--side-check): Remove unused variable `code'.
5485 (window--resize-siblings): Remove unused variable `first'.
5486 (adjust-window-trailing-edge): Remove unused variable `failed'.
5487 (window-deletable-p, window--delete): Remove unused variable `buffer'.
5488 Use `let', not `let*'.
5489 (balance-windows-2): Remove unused variable `found'.
5490 (window--state-put-2): Remove unused variable `splits'.
5491 (window-state-put): Remove unused variable `selected'.
5492 (same-window-p): Use `string-match-p'.
5493 (display-buffer-assq-regexp): Remove unused variable `value'.
5494 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
5495 Mark argument ALIST as ignored.
5496 (pop-to-buffer): Remove unused variable `old-window'.
5497
907201af
EZ
54982012-01-29 Eli Zaretskii <eliz@gnu.org>
5499
5500 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
5501 and .lzma compressed files.
5502
ea162670
CY
55032012-01-29 Chong Yidong <cyd@gnu.org>
5504
5b95ee8a
CY
5505 * frame.el (window-system-default-frame-alist): Doc fix.
5506
ea162670
CY
5507 * dynamic-setting.el (font-setting-change-default-font): Don't
5508 change the default face if SET-FONT argument is non-nil (Bug#9982).
5509
d6e6f4b1
SB
55102012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
5511
5512 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
5513
0f29fa41 55142012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6b25e4e2
SE
5515
5516 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
5517 breakpoints in files outside current directory (Bug#6098).
5518
db174434
CY
55192012-01-29 Chong Yidong <cyd@gnu.org>
5520
6b25e4e2
SE
5521 * progmodes/python.el: Require ansi-color at top-level.
5522
6df6ae42
JB
5523 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
5524 Define and use in Emacs Lisp mode (Bug#9360).
db174434
CY
5525 (lisp-mode-abbrev-table): Add doc.
5526 (lisp-mode-variables): Don't set local-abbrev-table.
5527 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
5528
e70ee681
RW
55292012-01-28 Roland Winkler <winkler@gnu.org>
5530
5531 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
5532
ace88aa2
RW
55332012-01-28 Roland Winkler <winkler@gnu.org>
5534
5535 * textmodes/bibtex.el (bibtex-entry-alist): New function.
5536 (bibtex-set-dialect): Use it. Either set global values of
5537 dialect-dependent variables or bind these variables buffer-locally
5538 (Bug#10254).
5539 (bibtex-mode): Call bibtex-set-dialect via
5540 hack-local-variables-hook.
eb864a71
LM
5541 (bibtex-dialect): Update docstring.
5542 Add safe-local-variable predicate.
ace88aa2
RW
5543 (bibtex-entry-alist, bibtex-field-alist): Initialize via
5544 bibtex-set-dialect.
5545 (bibtex-mode-map): Define menu for each dialect.
5546 (bibtex-entry): Fix docstring.
5547
93376c5b
CY
55482012-01-28 Chong Yidong <cyd@gnu.org>
5549
5550 * eshell/esh-arg.el (eshell-quote-argument): New function.
5551
5552 * eshell/esh-ext.el (eshell-invoke-batch-file):
5553 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
5554 first arg to eshell-parse-command (Bug#10523).
5555
4372494f
DA
55562012-01-28 Drew Adams <drew.adams@oracle.com>
5557
5558 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
5559 `default-directory' is non-nil.
5560
4d4ec1f8
EZ
55612012-01-28 Eli Zaretskii <eliz@gnu.org>
5562
5563 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
5564 line that displays system-configuration-options. (Bug#9924)
5565
7c188927
DA
55662012-01-28 Drew Adams <drew.adams@oracle.com>
5567
5568 * descr-text.el (describe-char): Show information about POS, in
5569 addition to information about the character at POS. Improve and
5570 update the doc string. Change "code point" to "code point in
5571 charset", to avoid confusion with the character's Unicode code
5572 point shown above that. (Bug#10129)
5573
e0da685a
EZ
55742012-01-28 Eli Zaretskii <eliz@gnu.org>
5575
5576 * descr-text.el (describe-char): Show the raw character, not only
5577 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
5578 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
5579 for the reasons.
5580
70550acf
PH
55812012-01-28 Phil Hagelberg <phil@hagelb.org>
5582
eb864a71
LM
5583 * emacs-lisp/package.el (package-install):
5584 Run package-refresh-contents if there is no archive yet (Bug#9798).
70550acf 5585
0ce8e868
CY
55862012-01-28 Chong Yidong <cyd@gnu.org>
5587
cb882333
JB
5588 * emacs-lisp/package.el (package-maybe-load-descriptor):
5589 New function, split from package-maybe-load-descriptor.
0ce8e868
CY
5590 (package-maybe-load-descriptor): Use it.
5591 (package-download-transaction): Fully load required packages
5592 inside the loop, so that `require' calls work (Bug#10593).
5593 (package-install): No need to call package-initialize now.
5594
2e7f3bea
CY
55952012-01-28 Chong Yidong <cyd@gnu.org>
5596
6e9bad14
CY
5597 * simple.el (deactivate-mark): Doc fix (Bug#8614).
5598
f823b8ca
CY
5599 * tooltip.el (tooltip-mode): Doc fix.
5600 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
5601
2680c309
CY
5602 * frame.el (set-cursor-color): Doc fix (Bug#352).
5603
d7a9e63b
CY
5604 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
5605 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
5606
2e7f3bea
CY
5607 * cus-edit.el (custom-buffer-create-internal): Fix search button
5608 action (Bug#10542).
2ae01800 5609 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
2e7f3bea 5610
fc4f7a23
EW
56112012-01-27 Eduard Wiebe <usenet@pusto.de>
5612
5613 * dired.el (dired-mark-files-regexp):
5614 Include any subdirectory components. (Bug#10445)
5615
7dd37071
ML
56162012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
5617
5618 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
5619 Handle [host]:port syntax. (Bug#10533)
5620
a268160b
AH
56212012-01-27 Alex Harsanyi <harsanyi@mac.com>
5622
5623 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
5624
e43273ef
GM
56252012-01-26 Glenn Morris <rgm@gnu.org>
5626
5627 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
5628 * term.el (term-raw-escape-map): Use Control-X-prefix.
5629 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
5630
1edf595d
MR
56312012-01-25 Martin Rudalics <rudalics@gmx.at>
5632
5633 * window.el (window-state-get, window--state-get-1): Don't deal
5634 with fixed-sizeness of windows. Simplify code.
5635
fa8eafef
JC
56362012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
5637
6df6ae42
JB
5638 * window.el (window--state-get-1, window--state-put-2):
5639 Don't save and restore the mark.
fa8eafef 5640
0b21c100
CY
56412012-01-25 Chong Yidong <cyd@gnu.org>
5642
5643 * custom.el (custom-variable-p): Doc fix.
5644
5ae1a6c8
GM
56452012-01-25 Glenn Morris <rgm@gnu.org>
5646
40047858
GM
5647 * dired.el (dired-goto-file): Handle some of the more common
5648 characters that `ls -b' escapes. (Bug#10596)
5649
5ddce96c
GM
5650 * progmodes/compile.el (compilation-next-error-function):
5651 Respect compilation-first-column in the "*compilation*" buffer.
5652 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
5653
5ae1a6c8
GM
5654 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
5655
b559f1a9
GM
56562012-01-24 Glenn Morris <rgm@gnu.org>
5657
5658 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
5659
6725d21a
JD
56602012-01-24 Julien Danjou <julien@danjou.info>
5661
5662 * color.el (color-rgb-to-hsl): Fix value computing.
5663 (color-hue-to-rgb): New function.
5664 (color-hsl-to-rgb): New function.
5665 (color-clamp, color-saturate-hsl, color-saturate-name)
5666 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5667 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
5668
70df4bbe
GM
56692012-01-24 Glenn Morris <rgm@gnu.org>
5670
5671 * vc/vc-rcs.el (vc-rcs-create-tag):
5672 * vc/vc-sccs.el (vc-sccs-create-tag):
5673 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
5674
802a2ae2
ML
56752012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
5676
5677 * eshell/esh-util.el (eshell-read-hosts-file):
5678 Skip comment lines. (Bug#10549)
5679
d7128bb1
ML
5680 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
5681
d1a5c3b4
JB
56822012-01-23 Juanma Barranquero <lekktu@gmail.com>
5683
2724d9c7
JB
5684 * subr.el (display-delayed-warnings): Doc fix.
5685 (collapse-delayed-warnings): New function to collapse identical
5686 adjacent warnings.
5687 (delayed-warnings-hook): Add it.
d1a5c3b4 5688
a5509865
MA
56892012-01-22 Michael Albinus <michael.albinus@gmx.de>
5690
5691 * net/tramp.el (tramp-action-login): Set connection property "login-as".
5692
a5509865
MA
5693 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
5694 (tramp-default-user-alist): Don't add "pscp".
5695 (tramp-do-copy-or-rename-file-out-of-band): Use connection
5696 property "login-as", if set. (Bug#10530)
5697
cc6d5805
MA
56982012-01-21 Michael Albinus <michael.albinus@gmx.de>
5699
5700 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
5701 "plink1" and "psftp". (Bug#10530)
5702
57032012-01-21 Kenichi Handa <handa@m17n.org>
71784361
KH
5704
5705 * international/mule-cmds.el (prefer-coding-system): Show a
5706 warning message if the default value of file-name-coding-system
5707 was not changed.
5708
f0960428
JC
57092012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
5710
cb882333
JB
5711 * windmove.el (windmove-reference-loc):
5712 Fix windmove-reference-loc miscalculation.
f0960428 5713
dd6f2a63
JB
57142012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
5715
5716 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
5717 default unit.
5718
7b447e9b
GM
57192012-01-21 Glenn Morris <rgm@gnu.org>
5720
117a9ea1
GM
5721 * international/mule.el (auto-coding-alist): Add .tbz.
5722
7b447e9b
GM
5723 * files.el (local-enable-local-variables): Doc fix.
5724 (inhibit-local-variables-regexps): Rename from
5725 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
5726 Doc fix. Add some extensions from auto-coding-alist.
5727 (inhibit-local-variables-suffixes):
5728 Rename from inhibit-first-line-modes-suffixes. Doc fix.
5729 (inhibit-local-variables-p):
5730 New function, extracted from set-auto-mode-1.
5731 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
5732 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
5733 (hack-local-variables): Doc fix. Make the mode-only case
5734 respect enable-local-variables and friends.
5735 Respect inhibit-local-variables-regexps for file-locals, but
5736 not for directory-locals.
5737 (set-visited-file-name):
5738 Take account of inhibit-local-variables-regexps.
5739 Whether it applies may change as the file name is changed.
5740 * jka-cmpr-hook.el (jka-compr-install):
5741 * jka-compr.el (jka-compr-uninstall):
5742 Update for inhibit-first-line-modes-suffixes name change.
5743
dd6e3cdd
MR
57442012-01-20 Martin Rudalics <rudalics@gmx.at>
5745
5746 * help-macro.el (make-help-screen): Temporarily restore original
5747 binding for minor-mode-map-alist (Bug#10454).
5748
0d0deb38
JD
57492012-01-19 Julien Danjou <julien@danjou.info>
5750
5751 * color.el (color-name-to-rgb): Use the white color to find the max
5752 color component value and return correctly computed values.
5753 (color-name-to-rgb): Add missing float conversion for max value.
5754
34a02f46
MR
57552012-01-19 Martin Rudalics <rudalics@gmx.at>
5756
5757 * window.el (window--state-get-1, window-state-get): Do not use
eb864a71
LM
5758 special state value for window-persistent-parameters.
5759 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
34a02f46
MR
5760 (window--state-put-2): Reset all window parameters to nil before
5761 assigning values of persistent parameters.
5762
606c44c4
AM
57632012-01-18 Alan Mackenzie <acm@muc.de>
5764
5765 Eliminate sluggishness and hangs in fontification of "semicolon
5766 deserts".
5767
cb882333
JB
5768 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
5769 Change value 10000 -> 3000.
606c44c4
AM
5770 (c-state-safe-place): Reformulate so it doesn't stack up an
5771 infinite number of wrong entries in c-state-nonlit-pos-cache.
5772 (c-determine-limit-get-base, c-determine-limit): New functions to
5773 determine backward search limits disregarding literals.
5774 (c-find-decl-spots): Amend commenting.
5775 (c-cheap-inside-bracelist-p): New function which detects "={".
5776
5777 * progmodes/cc-fonts.el
5778 (c-make-font-lock-BO-decl-search-function): Give a limit to a
5779 backward search.
5780 (c-font-lock-declarations): Fix an occurrence of point being
5781 undefined. Check additionally for point being in a bracelist or
5782 near a macro invocation without a semicolon so as to avoid a
5783 fruitless time consuming search for a declarator. Give a more
5784 precise search limit for declarators using the new
5785 c-determine-limit.
5786
f3860cea
GM
57872012-01-18 Glenn Morris <rgm@gnu.org>
5788
5789 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
5790 (set-auto-mode): Doc fixes.
5791
1db03b16
GM
57922012-01-17 Glenn Morris <rgm@gnu.org>
5793
0e6038be
GM
5794 * isearch.el (search-nonincremental-instead): Fix doc typo.
5795
1db03b16
GM
5796 * dired.el (dired-insert-directory): Handle newlines in directory name.
5797 (dired-build-subdir-alist): Unescape newlines in directory name.
5798
4cb0aa75
MA
57992012-01-17 Michael Albinus <michael.albinus@gmx.de>
5800
5801 * net/tramp.el (tramp-local-end-of-line): New defcustom.
5802 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
5803 (tramp-action-terminal): Use it. (Bug#10530)
5804
1d00653d
SM
58052012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
5806
5807 * minibuffer.el (completion--replace): Strip properties (bug#10062).
5808
6a6ee00d
MR
58092012-01-16 Martin Rudalics <rudalics@gmx.at>
5810
5811 * window.el (window-state-ignored-parameters): Remove variable.
5812 (window--state-get-1): Rename argument MARKERS to IGNORE.
5813 Handle persistent window parameters. Make copy of clone-of
5814 parameter only if requested. (Bug#10348)
5815 (window--state-put-2): Install a window parameter only if it has
5816 a non-nil value or an existing parameter shall be overwritten.
5817
97912def
MA
58182012-01-15 Michael Albinus <michael.albinus@gmx.de>
5819
5820 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
5821
688070a5
EZ
58222012-01-14 Eli Zaretskii <eliz@gnu.org>
5823
5824 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
5825 don't pass the (nil) value of `upnode' to string-match.
5826
301afadc
CY
58272012-01-14 Chong Yidong <cyd@gnu.org>
5828
5829 * startup.el (command-line): Fix X resource class for cursorColor.
04877ddb 5830 Fix values recognized by the cursorBlink resource.
301afadc 5831
9e5788aa
PE
58322012-01-14 Paul Eggert <eggert@cs.ucla.edu>
5833
5834 * epg.el (epg--make-temp-file): Avoid permission race condition
5835 when running on old Emacs versions (bug#10403).
5836
3cdb7f5a
GM
58372012-01-14 Glenn Morris <rgm@gnu.org>
5838
5839 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
5840
8c82b1b4
AM
58412012-01-13 Alan Mackenzie <acm@muc.de>
5842
5843 Fix filling for when filladapt mode is enabled.
5844
5845 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
5846 c-mask-paragraph, pass in `fill-paragraph' rather than
5847 `fill-region-as-paragraph'. (This is a reversion of a previous
5848 change.)
eb864a71
LM
5849 * progmodes/cc-mode.el (c-basic-common-init):
5850 Make fill-paragraph-handle-comment buffer local and set it to nil.
8c82b1b4 5851
e517eda4
GM
58522012-01-13 Glenn Morris <rgm@gnu.org>
5853
1498536e
GM
5854 * dired.el (dired-switches-escape-p): New function.
5855 (dired-insert-directory): Use dired-switches-escape-p.
5856 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
5857
e517eda4
GM
5858 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
5859
328f984d
GM
58602012-01-12 Glenn Morris <rgm@gnu.org>
5861
5862 * mail/sendmail.el (mail-mode): Update paragraph-separate for
5863 changes in adaptive-fill-regexp. (Bug#10276)
5864
2cc769a8
AM
58652012-01-11 Alan Mackenzie <acm@muc.de>
5866
5867 Fix Emacs bug #10463 - put `widen's around the critical spots.
5868
1d00653d 5869 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
2cc769a8
AM
5870 widen around each invocation of c-state-pp-to-literal. Remove an
5871 unused let variable.
5872
e52c37fa
GM
58732012-01-11 Glenn Morris <rgm@gnu.org>
5874
5875 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
09044622 5876 Doc fix.
e52c37fa 5877
96f8741e
CY
58782012-01-10 Chong Yidong <cyd@gnu.org>
5879
1d00653d
SM
5880 * net/network-stream.el (network-stream-open-starttls):
5881 Avoid emitting a confusing error message when the server gives a bad
96f8741e
CY
5882 response to the capability command.
5883
b09a806e
GM
58842012-01-10 Glenn Morris <rgm@gnu.org>
5885
5886 * mail/unrmail.el (unrmail): Tweak previous change.
5887
7655cb66
CY
58882012-01-09 Chong Yidong <cyd@gnu.org>
5889
5890 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
5891
9d5a8f0b
AM
58922012-01-08 Alan Mackenzie <acm@muc.de>
5893
5894 Optimise font locking in long enum definitions.
5895
5896 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
5897 arm to a cond form to handle enums.
5898 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
5899 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
5900
9a0115ab 59012012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6bb72cbd
PE
5902
5903 * files.el (move-file-to-trash): Preserve default file modes on error.
a0562b3d 5904 (Bug#10401)
6bb72cbd 5905
f186bb95
LMI
59062012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
5907
29232a68
LMI
5908 * faces.el (set-face-attribute): Clarify the meaning of the nil
5909 frame (bug#10294).
5910
4e5d086d
LMI
5911 * subr.el (with-selected-frame): Mention that the selected frame
5912 is restored (bug#9980).
5913
8e66aebe
LMI
5914 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
5915 (bug#9759).
5916
cd394be1 5917 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
f186bb95
LMI
5918 (password-read): Don't autoload unused function.
5919
adf4e762
JB
59202012-01-07 Juanma Barranquero <lekktu@gmail.com>
5921
5922 * progmodes/which-func.el (which-func-mode): Turn into a
5923 non-interactive function and mark as obsolete (bug#10428).
5924
89bd9ccd
CY
59252012-01-06 Chong Yidong <cyd@gnu.org>
5926
5927 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
5928 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
5929 functions, along with 1 and -1.
5930
4afee9d5
EZ
59312012-01-06 Eli Zaretskii <eliz@gnu.org>
5932
5933 * time.el (display-time-load-average)
5934 (display-time-default-load-average): Doc fixes. See the thread
5935 starting at
5936 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
5937 for the details.
5938
536aea70
GM
59392012-01-06 Glenn Morris <rgm@gnu.org>
5940
665ae865
GM
5941 * mail/unrmail.el (unrmail): Give an explicit error if the input file
5942 has no messages. (Bug#10377)
5943
c869783d
GM
5944 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
5945 than Info-edit. (Bug#10385)
5946
2bb4227e
GM
5947 * time.el (display-time-load-average, display-time-next-load-average):
5948 Doc fixes.
5949
7d5944b9
GM
5950 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
5951 local setting of buffer-read-only to the input buffer. (Bug#10419)
5952
536aea70
GM
5953 * calendar/calendar.el (calendar-mode):
5954 Locally set scroll-margin to 0. (Bug#10379)
5955
7dccca16
UM
59562012-01-06 Ulrich Mueller <ulm@gentoo.org>
5957
5958 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
5959
afbb7930
GM
59602012-01-05 Glenn Morris <rgm@gnu.org>
5961
5962 * eshell/em-unix.el (diff-no-select): Autoload it.
5963 (eshell/diff): Use diff-no-select. (Bug#10420)
5964
04482335
CY
59652012-01-05 Chong Yidong <cyd@gnu.org>
5966
7baca3bc
CY
5967 * shell.el (shell-dynamic-complete-functions): Revert last change.
5968 (shell-command-completion-function): New function.
5969 (shell-completion-vars): Use it to implement
5970 shell-completion-execonly (Bug#10417).
5971
04482335
CY
5972 * custom.el (enable-theme): Don't set custom-safe-themes.
5973
1d00653d
SM
5974 * cus-theme.el (custom-theme-merge-theme):
5975 Ignore custom-enabled-themes and custom-safe-themes.
04482335 5976
bb5aa5d6
MM
59772012-01-05 Michael R. Mauger <mmaug@yahoo.com>
5978
5979 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
5980 first prompt in `sql-interacive-mode'.
5981 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
04482335 5982 keywords.
6df6ae42 5983 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
bb5aa5d6
MM
5984 (sql-product-interactive): Bug fix: Set `sql-buffer' in
5985 context of original buffer. Invoke `sql-login-hook'.
5986
a7183d7c
EZ
59872012-01-04 Eli Zaretskii <eliz@gnu.org>
5988
5989 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
5990 letters in cite-prefix.
5991
a1eacd1e
LMI
59922012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5993
5994 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
5995
787cdb34
CY
59962012-01-03 Chong Yidong <cyd@gnu.org>
5997
1d00653d
SM
5998 * shell.el (shell-dynamic-complete-functions):
5999 Put pcomplete-completions-at-point, so as to try
787cdb34
CY
6000 comint-filename-completion first (Bug#10417).
6001
30710442
RS
60022012-01-02 Richard Stallman <rms@gnu.org>
6003
6004 * battery.el (battery-status-function):
6005 Detect when to use battery-yeeloong-sysfs.
6006 (battery-echo-area-format): Add string for Yeeloong.
6007 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
6008 (battery-yeeloong-sysfs): New function.
6009
f75bfc33
CY
60102012-01-02 Chong Yidong <cyd@gnu.org>
6011
6012 * dirtrack.el (dirtrack-list): Eliminate unused third element.
6013 (dirtrack): Merge code for handling relative filenames in prompt
6014 from shell-dir-cookie-watcher.
6015 (dirtrack-debug-message): New arg to avoid excess format calls.
6016
6017 * shell.el (shell-dir-cookie-re): Variable deleted.
6018 (shell-dir-cookie-watcher): Function deleted.
6019 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
6020 with dirtrack-mode.
6021
651e947e
EZ
60222012-01-01 Eli Zaretskii <eliz@gnu.org>
6023
1d00653d
SM
6024 * term/w32-win.el (dynamic-library-alist) <gnutls>:
6025 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
651e947e
EZ
6026 libgnutls-26.dll.
6027
94d4c7dc
AS
60282011-12-31 Andreas Schwab <schwab@linux-m68k.org>
6029
6030 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
6031
8d43f3cd
EZ
60322011-12-31 Eli Zaretskii <eliz@gnu.org>
6033
6034 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
6035 headers of non-MIME messages, when rmail-enable-mime is non-nil.
6036
98c8795a
MA
60372011-12-29 Michael Albinus <michael.albinus@gmx.de>
6038
6039 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
6040 also for alternative shells.
6041 (tramp-open-connection-setup-interactive-shell): Check, whether
6042 the shell is a busybox.
6043 (tramp-send-command): Don't suppress multiple prompts for
6044 busyboxes, it hurts.
6045
51281b32
CY
60462011-12-28 Chong Yidong <cyd@gnu.org>
6047
6048 * progmodes/gdb-mi.el (gdb-get-source-file-list)
6049 (gdb-get-source-file): Move mode line update to
6050 gdb-get-source-file (Bug#10087).
6051
2170cb53
CY
60522011-12-25 Chong Yidong <cyd@gnu.org>
6053
6054 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
6055 gud-gdb-marker-filter without taking it as an argument.
6056 (gud-gdb-run-command-fetch-lines): Caller changed.
6057 (gud-gdb-completion-function): New variable.
6058 (gud-gdb-completion-at-point): Use it.
6059 (gud-gdb-completions-1): Split from gud-gdb-completions.
6060
6061 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
6062 function as separate arguments.
6063 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
6064 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
6065 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
6066 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
6067 (gdb-stopped, def-gdb-auto-update-trigger)
6068 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
b81d40f0
JB
6069 (gdb-get-changed-registers, gdb-get-main-selected-frame):
6070 Callers changed.
2170cb53
CY
6071 (gud-gdbmi-completions): New function.
6072 (gdb): Use it for generating the completion table.
6073
be8b11bb
AM
60742011-12-24 Alan Mackenzie <acm@muc.de>
6075
6076 Introduce a mechanism to widen the region used in context font
1d00653d 6077 locking. Use this to protect declarations from losing their contexts.
be8b11bb 6078
1d00653d
SM
6079 * progmodes/cc-langs.el (c-before-font-lock-functions):
6080 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
b81d40f0 6081 (c-before-context-fontification-functions): New defvar, a list of
be8b11bb
AM
6082 functions to be run just before context (etc.) font locking.
6083
6084 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
b81d40f0 6085 New, functionality extracted from
be8b11bb 6086 c-neutralize-syntax-in-and-mark-CPP.
b81d40f0 6087 (c-in-after-change-fontification): New variable.
be8b11bb
AM
6088 (c-after-change): Set c-in-after-change-fontification.
6089 (c-set-fl-decl-start): Rejig its interface, so it can be called
6090 from both after-change and context fontifying.
b81d40f0
JB
6091 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
6092 New functions.
6093 (c-standard-font-lock-fontify-region-function): New variable.
6094 (c-font-lock-fontify-region): New function.
be8b11bb 6095
341cf6ac
JL
60962011-12-24 Juri Linkov <juri@jurta.org>
6097
6098 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
6099 (Bug#10348)
6100
bffcee0a
MA
61012011-12-23 Michael Albinus <michael.albinus@gmx.de>
6102
6103 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
6104 existence of source file. (Bug#10325)
6105
cb5e207c
AM
61062011-12-23 Alan Mackenzie <acm@muc.de>
6107
6108 Fix unstable fontification inside templates.
6109
b81d40f0
JB
6110 * progmodes/cc-langs.el (c-before-font-lock-functions):
6111 Newly created from the singular version. The (c c++ objc) entry now
cb5e207c
AM
6112 additionally has c-set-fl-decl-start. The other languages (apart
6113 from AWK) have that as a single entry.
6114
b81d40f0
JB
6115 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
6116 The functionality for "local" declarations has been extracted to
cb5e207c
AM
6117 c-set-fl-decl-start.
6118
b81d40f0
JB
6119 * progmodes/cc-mode.el (c-common-init, c-after-change):
6120 Changes due to pluralisation of c-before-font-lock-functions.
cb5e207c
AM
6121 (c-set-fl-decl-start): New function, extracted from
6122 c-font-lock-enclosing-decls and enhanced.
6123
60ff536c
JB
61242011-12-23 Juanma Barranquero <lekktu@gmail.com>
6125
6126 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
6127
1c4757d6
JL
61282011-12-22 Juri Linkov <juri@jurta.org>
6129
6130 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
6131
d031f2c7
CY
61322011-12-22 Chong Yidong <cyd@gnu.org>
6133
6134 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
6135
bace743a
DA
61362011-12-21 Drew Adams <drew.adams@oracle.com>
6137
6138 * files.el (file-remote-p): Fix docstring. (Bug#10319)
6139
728a1f2b
JC
61402011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
6141
6142 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
6143
0d373f73
TZ
61442011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
6145
fec0aaa4
TZ
6146 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
6147 highlighting and support. Fix up comments for capitalization.
6148 (cfengine-mode-debug): New var.
6149 (cfengine3-mode): Change the modeline indicator to "CFE3".
6150 (cfengine3-font-lock-keywords): Improve defun highlighting.
6151 (cfengine2-actions): Rename from `cfengine-actions'.
6152 (cfengine2-font-lock-keywords): Rename from
6153 `cfengine-font-lock-keywords'.
6154 (cfengine2-imenu-expression): Rename from
6155 `cfengine-imenu-expression'.
6156 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
6157 (cfengine2-beginning-of-defun): Rename from
6158 `cfengine-beginning-of-defun'.
6159 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
6160 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
6161 (cfengine2-mode): Rename from `cfengine-mode'. Change the
6162 modeline indicator to "CFE2".
6163 (cfengine-mode): Defalias to `cfengine-auto-mode'.
6164 (cfengine-mode-abbrevs): Mark obsolete.
0d373f73 6165
bc86f573
CY
61662011-12-21 Chong Yidong <cyd@gnu.org>
6167
6168 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
6169 filename argument.
6170
d45ba96b
MR
61712011-12-20 Martin Rudalics <rudalics@gmx.at>
6172
6173 * window.el (window-normalize-buffer-to-display): Remove.
6174 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
6175
a6198c90
CY
61762011-12-19 Chong Yidong <cyd@gnu.org>
6177
6178 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
6179 Don't signal an error in a predicate function; return non-nil.
6180 (vc-dir-mark-file): Move the error here.
6181 (vc-dir-mark-unmark): If acting on the region, keep going if one
6182 of the entries cannot be marked/unmarked.
6183 (vc-dir-mark-all-files): If current entry is a directory, mark
6184 only child files, as documented.
6185
34c5fb55
VB
61862011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
6187
6188 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
6189 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
6190 addition.
6191
c803b2b7
JD
61922011-12-18 Jan Djärv <jan.h.d@swipnet.se>
6193
6194 * term/ns-win.el (ns-get-selection-internal)
6195 (ns-store-selection-internal): Declare.
1154d12e
JB
6196 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
6197 Declare as obsolete.
6198 (ns-get-pasteboard, ns-paste-secondary):
6199 Use ns-get-selection-internal.
6200 (ns-set-pasteboard, ns-copy-including-secondary):
6201 Use ns-store-selection-internal.
c803b2b7 6202
9cff91f8 62032011-12-17 Chong Yidong <cyd@gnu.org>
99a289d9
CY
6204
6205 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9cff91f8 6206 (vc-deduce-fileset): Doc fix.
99a289d9 6207
f16c898a
AS
62082011-12-16 Andreas Schwab <schwab@linux-m68k.org>
6209
6210 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
6211
763237c4
SS
62122011-12-13 Sam Steingold <sds@gnu.org>
6213
6214 * man.el (Man-getpage-in-background): When running under a
6215 window-system, ignore $MANWIDTH and $COLUMNS.
6216
5fc1c122
KH
62172011-12-15 Kenichi Handa <handa@m17n.org>
6218
6219 * language/ethio-util.el: Change coding tag to utf-8-emacs.
6220 (setup-ethiopic-environment-internal): Comment out key-binding for
6221 ethio-toggle-punctuation.
6222
13d49cbb
AM
62232011-12-13 Alan Mackenzie <acm@muc.de>
6224
898169a2
AM
6225 Add the switch statement to AWK Mode.
6226
7a71b18d 6227 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
898169a2
AM
6228 "default" to the keywords regexp.
6229
7a71b18d 6230 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
898169a2 6231 expression as the rest.
1d00653d
SM
6232 (c-nonlabel-token-key): Allow string literals for AWK.
6233 Refactor for the other modes.
898169a2 6234
13d49cbb 6235 Large brace-block initialisation makes CC Mode slow: Fix.
1d00653d 6236 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
13d49cbb
AM
6237 routines. Limit backward searching in c-font-lock-enclosing.decl.
6238
6239 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
6240 pp-state and literal type in addition to the limits.
1d00653d 6241 (c-state-safe-place): New defun, extracted from c-state-literal-at.
13d49cbb 6242 (c-state-literal-at): Use the above new defun.
1d00653d
SM
6243 (c-slow-in-literal, c-fast-in-literal): Remove.
6244 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
13d49cbb
AM
6245
6246 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
6247 being in a literal. Add a limit for backward searching.
6248
6249 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
6250 c-slow-in-literal.
6251
15e0efc7
SM
62522011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
6253
6254 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
6255
454592a6
MR
62562011-12-13 Martin Rudalics <rudalics@gmx.at>
6257
6258 * window.el (delete-other-windows): Use correct frame in call to
6259 window-with-parameter.
6260
87393f26
DP
62612011-12-12 Daniel Pfeiffer <occitan@t-online.de>
6262
6263 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
6264 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
6265 (makefile-gmake-statements, makefile-makepp-statements):
6266 Use it and add new makepp keywords.
6267 (makefile-makepp-font-lock-keywords): Add new patterns.
6268 (makefile-match-function-end): Match new [...] and [[...]].
6269
11636b22
JB
62702011-12-11 Juanma Barranquero <lekktu@gmail.com>
6271
6272 * ses.el (ses-call-printer-return, ses-cell-property-get)
6273 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
6274 (ses-create-cell-variable, ses-reset-header-string)
6275 (ses-cell-set-formula, ses-repair-cell-reference-all)
6276 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
6277 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
6278 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
6279 (ses-aset-with-undo, ses-load, ses-truncate-cell)
6280 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
6281 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
6282 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
6283 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
6284 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
6285 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
6286 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
6287 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
6288
cf018193
VB
62892011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
6290
6291 * ses.el: The overall change is to add cell renaming, that is
6292 setting fancy names for cell symbols other than name matching
6293 "\\`[A-Z]+[0-9]+\\'" regexp .
6294 (ses-create-cell-variable): New defun.
6295 (ses-relocate-formula): Relocate formulas only for cells the
6296 symbols of which are not renamed, i.e. symbols whose names do not
6297 match regexp "\\`[A-Z]+[0-9]+\\'".
6298 (ses-relocate-all): Relocate values only for cells the symbols of
6299 which are not renamed.
6300 (ses-load): Create cells variables as the (ses-cell ...) are read,
6301 in order to check row col consistency with cell symbol name only
6302 for cells that are not renamed.
6303 (ses-replace-name-in-formula): New defun.
6304 (ses-rename-cell): New defun.
6305
ee957461
CY
63062011-12-11 Chong Yidong <cyd@gnu.org>
6307
6308 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
6309 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
6310
9a9e9ef0
MR
63112011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
6312
6313 * window.el (other-window): Fix docstring.
6314
92a8eba5
EZ
63152011-12-10 Eli Zaretskii <eliz@gnu.org>
6316
6317 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
1d00653d
SM
6318 `from' or `to' address before taking its substring.
6319 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
92a8eba5
EZ
6320 encoded name is chopped in the middle of the encoded string, and
6321 thus displayed encoded.
6322
e152e577
JB
63232011-12-10 Juanma Barranquero <lekktu@gmail.com>
6324
6325 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
6326
e5d84bfe
EZ
63272011-12-10 Eli Zaretskii <eliz@gnu.org>
6328
6329 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
6330 to use texinfo-update-node and commands that call it if the
6331 Texinfo file uses @node lines without next/prev/up pointers.
b8830d28 6332 Correct outdated description about texinfo-master-menu.
e5d84bfe
EZ
6333 (texinfo-all-menus-update, texinfo-master-menu)
6334 (texinfo-update-node, texinfo-every-node-update)
6335 (texinfo-multiple-files-update): Doc fix. Warn against updating
6336 all the @node lines.
6337 (texinfo-master-menu): Only call texinfo-update-node if the prefix
b8830d28
EZ
6338 argument is numeric. Explain better in the doc string what the
6339 function really does.
6340 (texinfo-insert-master-menu-list): Improve the error message
6341 displayed if there's no menu in the Top node.
6342 (Bug#2975) See also this thread:
e5d84bfe
EZ
6343 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
6344
1d84e9bb
MG
63452011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
6346
6347 * speedbar.el (speedbar-supported-extension-expressions):
6348 Add .adb and .ads, commonly used for Ada source code (bug#10256).
6349
382c953b
JB
63502011-12-09 Juanma Barranquero <lekktu@gmail.com>
6351
6352 * printing.el (pr-mode-alist):
6353 * simple.el (filter-buffer-substring-functions)
6354 (completion-list-insert-choice-function):
6355 * window.el (window-with-parameter, window-atom-root)
6356 (window-sides-slots, window-size-fixed, window-min-delta)
6357 (window-max-delta, window--resize-mini-window)
6358 (window--resize-child-windows-normal, window-tree)
6359 (delete-other-windows, quit-window, split-window)
6360 (display-buffer-record-window, special-display-buffer-names)
6361 (special-display-regexps, special-display-popup-frame)
6362 (same-window-p, split-window-sensibly)
6363 (display-buffer-overriding-action, display-buffer-alist)
6364 (display-buffer-base-action, display-buffer, switch-to-buffer)
6365 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
6366 (fit-window-to-buffer, recenter-positions)
6367 (mouse-autoselect-window-state, mouse-autoselect-window-select):
6368 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
6369 and remove unneeded backslashes in docstrings.
6370
39c9faef
SM
63712011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6372
98449af8
SM
6373 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
6374
39c9faef
SM
6375 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
6376 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
6377 end in ".mk".
6378 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
6379 when reading the makefile (bug#10116).
6380
86ed9fdc
SM
63812011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6382
6383 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
6384 (bug#10116).
6385
5580f89d
GM
63862011-12-06 Glenn Morris <rgm@gnu.org>
6387
6388 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
6389
28d3917c
CY
63902011-12-06 Chong Yidong <cyd@gnu.org>
6391
6392 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
6393
a98edce9
JB
63942011-12-06 Juanma Barranquero <lekktu@gmail.com>
6395
6396 * textmodes/table.el (table-shorten-cell): Fix typo.
6397
e65adfac
CG
63982011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
6399
6400 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
6401
71cc0b74
EZ
64022011-12-05 Eli Zaretskii <eliz@gnu.org>
6403
6404 * descr-text.el (describe-char): Fix display of strong
6405 right-to-left characters and directional embeddings and overrides.
6406
6407 * simple.el (what-cursor-position): Fix display of codepoints of
6408 strong right-to-left characters.
6409
315bc30d
CY
64102011-12-05 Chong Yidong <cyd@gnu.org>
6411
6412 * faces.el (read-color): Doc fix.
6413
58a70b94
GM
64142011-12-05 Glenn Morris <rgm@gnu.org>
6415
6416 * align.el (align--set-marker): Add doc-string.
6417 Don't try to move something that is not a marker. (Bug#10216)
6418
5158face
GM
64192011-12-04 Glenn Morris <rgm@gnu.org>
6420
6421 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
6422 overly zealous deletion of trailing whitespace.
6423
520fca41
JB
64242011-12-04 Juanma Barranquero <lekktu@gmail.com>
6425
6426 * server.el (server-delete-client): On Windows, do not try to delete
6427 the only terminal.
6428 (server-process-filter): On Windows, treat requests for a tty frame as
6429 if they were for a GUI frame if the running server is in GUI mode.
6430
5e605a2e
GM
64312011-12-03 Glenn Morris <rgm@gnu.org>
6432
6433 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
6434
5c3fe83f
SM
64352011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
6436
6f5e57e7
SM
6437 * electric.el: Streamline electric-indent's hook.
6438 (electric-indent-chars): Revert to simple list.
6439 (electric-indent-functions): New var.
6440 (electric-indent-post-self-insert-function): Use it.
6441
5c3fe83f
SM
6442 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
6443 there's no inferior buffer (bug#10196).
6444 (prolog-consult-compile): Don't use toggle-read-only.
6445
6bdac736
MA
64462011-12-02 Michael Albinus <michael.albinus@gmx.de>
6447
6448 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
6449 interrupt. (Bug#10187)
6450
6131ba7f
SM
64512011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
6452
99c79fee
SM
6453 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
6454 (bug#9160).
6455
6131ba7f
SM
6456 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
6457 (bug#10191).
6458
cb0a02ea
JL
64592011-12-02 Juri Linkov <juri@jurta.org>
6460
6461 * info.el (Info-search): Display "end of manual" when Isearch
6462 reaches the end of single-file Info manual. (Bug#9918)
6463
66e0570c
EZ
64642011-12-02 Eli Zaretskii <eliz@gnu.org>
6465
6466 * isearch.el (isearch-message-prefix): Run the input method part
6467 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
6468
02b16839
JL
64692011-12-02 Juri Linkov <juri@jurta.org>
6470
6471 * isearch.el (isearch-occur): Use `word-search-regexp' for
6472 `isearch-word'.
6473 (isearch-search-and-update): Add condition for `isearch-word' and
6474 call `word-search-regexp'. (Bug#10145)
6475
0b950688
GM
64762011-12-01 Glenn Morris <rgm@gnu.org>
6477
6478 * eshell/em-hist.el (eshell-hist-initialize):
6479 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 6480 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 6481
9505c3c7
SM
64822011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
6483
6484 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
6485
1bbe96b2 64862011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 6487
a1beca85
SM
6488 * progmodes/verilog-mode.el (verilog-pretty-expr):
6489 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
6490 verilog, such as += *= and the like.
6491 (verilog-assignment-operator-re): Regular expression to find the
6492 assigment operator in a verilog assignment.
6493 (verilog-assignment-operation-re): Regular expression to find an
6494 assignment statement for pretty-expr.
6495 (verilog-in-attribute-p): Query returns true if point is in an
6496 attribute context; used to skip these for expression line up from
6497 pretty-expr.
6498 (verilog-in-parameter-p): Query returns true if point is in an
6499 parameter definition context; used to skip these for expression
6500 line up from pretty-expr.
6501 (verilog-in-parenthesis-p): Query returns true if point is in a
6502 parenthetical expression, specifically ( ) but not [ ] or { };
6503 used by pretty-expr.
6504 (verilog-just-one-space): If there is no space, don't add one.
6505 (verilog-get-lineup-indent-2): Specifically skip just attribute
6506 contexts for expression lineup, rather than skipping all
6507 parenthetical expressions.
6508 (verilog-calculate-indent): Fix comment, and fix indent.
6509 (verilog-do-indent): Indent declarations in lists (suggested by
6510 Joachim Lechner).
6511 (verilog-mode-abbrev-table): Populate abbrev mode with the various
6512 skeleton items.
6513 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
6514 by Alain Mellan).
6515
1bbe96b2 65162011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
6517
6518 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
6519 parameters with embedded comments. Reported by Ray Stevens.
6520 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
6521 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
6522 Reported by Tim Holt.
6523 (verilog-auto): Fix AUTOing a upper module then AUTOing module
6524 instantiated by upper module causing wrong expansion until AUTOed a
6525 second time. Reported by K C Buckenmaier.
6526 (verilog-diff-auto): Fix showing .* as a difference when
6527 `verilog-auto-star-save' off. Reported by Dan Dever.
6528 (verilog-auto-reset, verilog-read-always-signals)
6529 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
6530 temporary signals in reset list if
6531 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
6532 style to each signal's assignment type, bug381.
6533 Reported by Thomas Esposito.
6288f0ca
WS
6534 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
6535 (verilog-uvm-statement-re): Support UVM indentation and
6536 highlighting, with old OVM keywords only.
a1beca85 6537 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
1d00653d
SM
6538 Support AUTOTIEOFF creating non-wire data types.
6539 Suggested by Jonathan Greenlaw.
6288f0ca
WS
6540 (verilog-auto-insert-lisp, verilog-delete-to-paren)
6541 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
6542 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
6543 (verilog-read-sub-decls, verilog-read-sub-decls-line):
6544 Fix mismatching parenthesis inside commented out code when deleting
382c953b 6545 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6288f0ca
WS
6546 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
6547 non-numeric vector width. Reported by Alex Reed.
6548 (verilog-auto-ascii-enum): Add "onehot" option to work around not
382c953b 6549 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
6550 (verilog-auto-delete-trailing-whitespace):
6551 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
6552 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
6553 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
6554 Fix verilog-scan-cache corruption when running user AUTO expansion
6555 hooks that call indentation routines.
6556 (verilog-simplify-range-expression): Fix typo ignoring lower case
6557 identifiers.
6558 (verilog-delete-auto): Fix delete-autos to also remove user created
6559 automatics, as long as they start with AUTO.
6560 (verilog-batch-diff-auto, verilog-diff-auto)
6561 (verilog-diff-function): Add `verilog-diff-auto' and bind to
6562 "C-c?" to report differences in AUTO expansion, ignoring spaces.
6563 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
6564 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
6565 (verilog-re-search-forward-quick, verilog-syntax-ppss):
6566 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
6567 is disabled and its cache will get corrupt, causing AUTOS not to
6568 expand. Instead use only -quick functions.
6569 (verilog-scan-region): Fix scanning over escaped quotes.
6570 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
6571 (verilog-re-search-backward-quick)
6572 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
6573 related functions now ignore strings, to fix misparsing of strings
6574 with magic comments embedded in them.
a1beca85
SM
6575 (verilog-read-auto-template):
6576 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
6577 Reported by Brad Dobbie.
6578 (verilog-read-auto-template):
6579 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 6580 Reported by Brad Dobbie.
6288f0ca
WS
6581 (verilog-auto-inst, verilog-auto-inst-param)
6582 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
6583 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
6584 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
6585 debugging templates without merge conflicts, bug357.
6586 Reported by Brad Dobbie.
6587 (verilog-read-auto-template):
6588 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
6589 Reported by Brad Dobbie.
6590 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
6591 abbrevs so user won't be asked to save.
6592 (verilog-read-auto-lisp-present): Fix to start at beginning of
6593 buffer in case called outside of verilog-auto.
6594 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
6595 to "X-2". Reported by Matthew Myers.
6596 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
6597 all inputs from module templates. Reported by Leith Johnson.
6598 (verilog-module-inside-filename-p): Fix locating programs as with
6599 modules.
6600 (verilog-auto-inst-port): Fix vl-width expressions when using
6601 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
6602 (verilog-decls-get-regs, verilog-decls-get-signals,
6603 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
6604 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
6605 verilog-read-decls): Combine reg and wire structures into one var
6606 structure to represent SystemVerilog concepts.
6607 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
6608 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
6609 (verilog-auto-wire-type, verilog-insert-definition):
6610 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
6611 SystemVerilog "logic" keyword instead of "wire"/"reg".
6612 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
6613 to declares outputs that also have assignments (presumably in an
a1beca85
SM
6614 ifdef or generate if so there's not a driver conflict).
6615 Reported by Matthew Myers.
6616 (verilog-auto-declare-nettype, verilog-insert-definition):
6617 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
6618 `default_nettype none. Reported by Julian Gorfajn.
6619 (verilog-read-always-signals-recurse, verilog-read-decls)
6620 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
6621 malformed end statement, bug325. Reported by Joshua Wise and
6622 Andrew Drake.
6623 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
6624 (verilog-inst-comment-re): Fix not deleting Interfaced comment
1d00653d
SM
6625 when expanding .* in interfaces, bug320.
6626 Reported by Pierre-David Pfister.
6288f0ca 6627 (verilog-read-module-name): Fix import statements between module
1d00653d
SM
6628 name and open parenthesis, bug317.
6629 Reported by Pierre-David Pfister.
6288f0ca
WS
6630 (verilog-simplify-range-expression): Fix simplification of
6631 multiplications inside AUTOWIRE connections, bug303.
6632 (verilog-auto-inst-port): Support parameter expansion in
6633 multidimensional arrays.
6634 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
6635 after "assert property". Reported by Julian Gorfajn.
6636 (verilog-simplify-range-expression): Fix "couldn't merge" errors
6637 with multiplication, bug303.
6638 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
6639 Reported by Jan Frode Lonnum.
6640
1bbe96b2
GM
66412011-11-30 Juanma Barranquero <lekktu@gmail.com>
6642
6643 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
6644 (hfy-shell-file-name, hfy-shell):
6645 * international/fontset.el (x-decompose-font-name): Fix typos.
6646
66472011-11-29 Ken Brown <kbrown@cornell.edu>
6648
6649 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
6650 (gdb-version): Remove defvar.
6651 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
6652 (gdb-gud-context-command, gdb-non-stop-handler)
6653 (gdb-current-context-command, gdb-stopped): Use it.
6654 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
6655 (gdb-non-stop-handler): Don't enable pretty-printing here.
6656 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
6657 non-stop mode. Use the following.
6658 (gdb-check-target-async): New defun.
6659 (gud-watch, gdb-stopped): Fix whitespace.
6660 (gdb-get-source-file): Don't try to display the source file if
6661 `gdb-main-file' is nil.
6662
66632011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6664
6665 * align.el: Try to generate fewer markers (bug#10047).
6666 (align--set-marker): New macro.
6667 (align-region): Use it.
6668
c935221f
SM
66692011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6670
6671 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
6672
e70b5064
CY
66732011-11-29 Chong Yidong <cyd@gnu.org>
6674
6675 * indent.el (indent-for-tab-command, indent-according-to-mode):
6676 Doc fix.
6677 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
6678
f3af92b7
MA
66792011-11-29 Michael Albinus <michael.albinus@gmx.de>
6680
6681 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
6682 aware of remote file names. (Bug#10124)
6683
ed472be9
CY
66842011-11-29 Chong Yidong <cyd@gnu.org>
6685
6686 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
6687
24510c22
SM
66882011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6689
6690 * files.el (find-file): Don't use force-same-window (bug#10144).
6691 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
6692 use pop-to-buffer if the selected window can't be used.
6693 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
6694
c60c3703
EZ
66952011-11-28 Eli Zaretskii <eliz@gnu.org>
6696
6697 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
6698 special-mode-map.
6699
e95def75
CY
67002011-11-28 Chong Yidong <cyd@gnu.org>
6701
6702 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
6703
c3f1c606
NR
67042011-11-27 Nick Roberts <nickrob@snap.net.nz>
6705
6706 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
6707 gdb-get-source-file-list on gdb-create-source-file-list.
6708
00db469c
EZ
67092011-11-26 Eli Zaretskii <eliz@gnu.org>
6710
6711 * whitespace.el (whitespace-newline): Use a different foreground
6712 color for 16-color light-background displays.
6713
4ad3bc2a
CY
67142011-11-24 Chong Yidong <cyd@gnu.org>
6715
6716 * window.el (display-buffer--special-action): Doc fix.
6717
e9fce1ac
JB
67182011-11-25 Juanma Barranquero <lekktu@gmail.com>
6719
6720 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
6721 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
6722 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
6723 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
6724 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
6725 (avl-tree-stack-first):
6726 * emacs-lisp/cconv.el (cconv--analyse-use):
6727 * net/gnutls.el (gnutls-negotiate): Fix typos.
6728
cb825e5d
GM
67292011-11-24 Glenn Morris <rgm@gnu.org>
6730
3adbe224
GM
6731 * lpr.el (lpr-windows-system, lpr-lp-system):
6732 * mail/binhex.el (binhex-begin-line):
6733 * progmodes/grep.el (grep-history, grep-find-history):
6734 * textmodes/flyspell.el:
6735 * vc/pcvs-defs.el (cvs-global-menu):
6736 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
6737 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
6738 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
6739
321decc8
GM
6740 * net/tls.el: Fix case of "GnuTLS".
6741
420b63ad
GM
6742 * paths.el (rmail-file-name): Format doc-string for make-docfile.
6743
cb825e5d
GM
6744 * version.el (emacs-build-system): Give it a doc-string.
6745
a0649f08
JL
67462011-11-24 Juri Linkov <juri@jurta.org>
6747
6748 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
6749
c0bc0fd4
GM
67502011-11-24 Glenn Morris <rgm@gnu.org>
6751
6752 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
6753 if called on a non-mime message just toggle the headers. (Bug#8006)
6754
20db1522
JB
67552011-11-24 Juanma Barranquero <lekktu@gmail.com>
6756
6757 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
6758 (allout-lead-with-comment-string, allout-structure-deleted-hook)
6759 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
6760 (allout-rebullet-heading, allout-open-sibtopic)
6761 (allout-toggle-current-subtree-encryption)
6762 (allout-toggle-subtree-encryption, allout-encrypt-string)
6763 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
6764 (allout-distinctive-bullets-string, allout-auto-activation):
6765 * window.el (window-normalize-buffer-to-display):
6766 * progmodes/verilog-mode.el (verilog-batch-indent):
6767 * textmodes/bibtex.el (bibtex-field-braces-opt)
6768 (bibtex-field-strings-opt):
6769 * vc/cvs-status.el (cvs-tree-merge):
6770 Fix typos.
6771
7262a87c
MA
67722011-11-23 Michael Albinus <michael.albinus@gmx.de>
6773
6774 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
6775 `non-essential' to t, in order to avoid remote connections.
6776
283430a1
EZ
67772011-11-23 Eli Zaretskii <eliz@gnu.org>
6778
a1beca85
SM
6779 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6780 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
6781 case-insensitively.
6782
d2992a38
ML
67832011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
6784
6785 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
6786
50419064
GM
67872011-11-23 Glenn Morris <rgm@gnu.org>
6788
da94eca1
GM
6789 * paths.el (rmail-file-name): Reformat the doc-string so that it
6790 is picked up.
6791
9aac4de2
GM
6792 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
6793 (rmail-auto-file): Ignore case in the "special" field names,
6794 as mail-fetch-field does for all others.
6795
8038d2d2
GM
6796 * mail/rmail.el (rmail-forward):
6797 * mail/rmailkwd.el (rmail-set-label):
6798 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
6799 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
6800
f3fe222a
GM
6801 * mail/rmail.el (rmail-current-message): Doc fix.
6802
50419064
GM
6803 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
6804
28109f49
SM
68052011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
6806
6807 * server.el (server-eval-and-print): Allow C-g (bug#6585).
6808
394c65f1
GM
68092011-11-22 Glenn Morris <rgm@gnu.org>
6810
6811 * mail/rmailmm.el (test-rmail-mime-handler)
6812 (test-rmail-mime-bulk-handler)
6813 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
6814
f2a0aa3a
JL
68152011-11-21 Juri Linkov <juri@jurta.org>
6816
1154d12e
JB
6817 * calc/calc.el (calc-read-key-sequence):
6818 Let-bind `input-method-function' to nil. (Bug#10018)
f2a0aa3a 6819
9c34a344
LMI
68202011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
6821
6822 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
6823 Tell the caller that the next line needs recomputation, even
6824 though it doesn't start a sexp (bug#10094).
6825
f04a3be9
SM
68262011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6827
6828 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
6829
7978747f
SM
68302011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
6831
f04a3be9
SM
6832 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
6833 Use force-same-window.
7978747f 6834
fe7a3057
JB
68352011-11-20 Juanma Barranquero <lekktu@gmail.com>
6836
6837 * descr-text.el (describe-char-unicode-data):
6838 * json.el (json-string-escape):
6839 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
6840 (Footnote-unicode, Footnote-style-p):
6841 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
6842
24901d61
CY
68432011-11-20 Chong Yidong <cyd@gnu.org>
6844
6845 * window.el (replace-buffer-in-windows): Restore interactive spec.
6846
bac7ff22
SM
68472011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
6848
24f3d7b9
SM
6849 * electric.el (electric-indent-mode): Fix last change (too optimistic).
6850
bac7ff22
SM
6851 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
6852 (byte-compile-global-not-obsolete-vars): New var.
6853 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
6854 Use it.
6855 (byte-compile-warn-obsolete): Align text with the one in *Help*.
6856
cd1181db
JB
68572011-11-20 Juanma Barranquero <lekktu@gmail.com>
6858
6859 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
6860 * progmodes/pascal.el (electric-pascal-equal):
6861 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
6862 * xml.el (xml-substitute-special): Fix typos.
6863
7fb18e9e
GM
68642011-11-20 Glenn Morris <rgm@gnu.org>
6865
6866 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
6867 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
6868 Doc fixes.
6869 (rmail-decode-mime-charset): Mark as obsolete.
6870
6871 * mail/rmailsum.el (rmail-message-regexp-p-1):
6872 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
6873 Before using mime functions, check they are set. (Bug#10077)
6874
d5a6b3ba
JL
68752011-11-19 Juri Linkov <juri@jurta.org>
6876
6877 * info.el (Info-finder-find-node): Use `package--builtins' instead
6878 of `package-alist'. Use node names formed by the pattern "Keyword "
6879 and the keyword name.
6880
e981b61f
AS
68812011-11-19 Andreas Schwab <schwab@linux-m68k.org>
6882
1d00653d 6883 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
e981b61f 6884
3ffbc301
JL
68852011-11-19 Juri Linkov <juri@jurta.org>
6886
6887 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
6888 that calls `revert-buffer' on all Info buffers. (Bug#9915)
6889 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
6890 `old-history', `old-history-forward'. Add let-binding
6891 `window-selected'. Remove calls to `kill-buffer',
6892 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
6893 before calling `Info-find-node', so `Info-find-node-2' will reread
6894 the Info file. Restore window positions only when `window-selected'
6895 is non-nil.
6896
30c62133
JL
68972011-11-19 Juri Linkov <juri@jurta.org>
6898
6899 * isearch.el (isearch-lazy-highlight-new-loop):
6900 Remove condition `(not isearch-error)'. (Bug#9918)
6901
6902 * misearch.el (multi-isearch-search-fun): Add condition
6903 `(not bound)' to ignore lazy-highlighting search.
6904 Add the search-failed message "end of multi" when the end of
6905 multi-sequence is reached. Uncapitalize the search-failed
6906 message "Repeat for next buffer".
6907
6908 * info.el (Info-search): Add the search-failed message
6909 "end of the manual" when the end of the manual is reached
6910 in Isearch mode.
6911
645ca9cf
JL
69122011-11-19 Juri Linkov <juri@jurta.org>
6913
6914 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
6915 Use non-destructive `remove' instead of `delete' because
6916 `Info-history-list' stored to `Info-isearch-initial-history-list' in
6917 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
6918
df754f66
JL
69192011-11-19 Juri Linkov <juri@jurta.org>
6920
6921 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
6922 to nil instead of binding `search-ring' and `regexp-search-ring'.
6923 (Bug#9185)
6924
0e23d96a
EZ
69252011-11-19 Eli Zaretskii <eliz@gnu.org>
6926
6927 * simple.el (line-move): Force movement by logical lines for any
6928 hscrolled window, not only when auto-hscroll-mode is on.
6929 (line-move-visual): Update doc string to that effect. (Bug#10076)
6930
8a6ccb66
AS
69312011-11-19 Andreas Schwab <schwab@linux-m68k.org>
6932
6933 * language/european.el (macintosh): Define as alias for mac-roman.
6934
49ae5b39
EZ
69352011-11-19 Eli Zaretskii <eliz@gnu.org>
6936
6937 * mail/rmailmm.el (rmail-mime-display-header)
6938 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
6939 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
6940 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
6941 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
6942 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
6943 of a raw aref.
6944 (rmail-mime-entity-segment): To get past the tagline, move forward
6945 2 more lines, to account for the 2 empty lines that precede and
6946 follow the line with the buttons.
6947 (rmail-mime-update-tagline): Move one more line, to get past the
6948 empty line that follows the buttons in the tagline. (Bug#9520)
6949
c56cad4a
MR
69502011-11-19 Martin Rudalics <rudalics@gmx.at>
6951
6952 * window.el (window-max-delta-1, window-min-delta-1)
6953 (window-min-size-1, window-state-get-1, window-state-put-1)
6954 (window-state-put-2): Use "window--" prefix.
6955
cbe71af3
SM
69562011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
6957
2ad52c60
SM
6958 * emacs-lisp/smie.el: Improve warnings and conflict detection.
6959 (smie-warning-count): New var.
6960 (smie-set-prec2tab): Use it.
6961 (smie-bnf->prec2): Improve warnings. Add docstring.
6962 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
6963 (smie-bnf--set-class): New function.
6964 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
6965 corner case.
6966
6944dbc1
SM
6967 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
6968 (compilation-error-properties, compilation-move-to-column):
6969 Handle compilation-first-column while in the target buffer.
6970
c400c4d7
SM
6971 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
6972 Don't hardcode point-min==1.
6973
6dbe3e96
SM
6974 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
6975 (eshell-rewrite-for-command): Remove workaround.
6976 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
6977 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
6978 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
6979
cbe71af3
SM
6980 * files-x.el (modify-file-local-variable): Obey commenting conventions.
6981
a8e1496d
GM
69822011-11-17 Glenn Morris <rgm@gnu.org>
6983
6984 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6985 Ignore buffer-local generated-autoload-file if it is the same
6986 as the global value. (Bug#10049)
6987
df85d315
JB
69882011-11-17 Juanma Barranquero <lekktu@gmail.com>
6989
6990 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
6991 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
6992 (reftex-toc-previous-heading, reftex-toc-max-level)
6993 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
6994 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
6995 (reftex-toc-do-promote, reftex-toc-promote-prepare)
6996 (reftex-toc-promote-action, reftex-toc-extract-section-number)
6997 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
6998 (reftex-toc-rename-label, reftex-toc-visit-location)
6999 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
7000 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
7001 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
7002 leaving "*toc*" only for references to the buffer.
7003
a0c2d0ae
MR
70042011-11-17 Martin Rudalics <rudalics@gmx.at>
7005
7006 * window.el (window-resize, delete-window, split-window):
7007 Replace window-splits by window-combination-resize.
1d00653d 7008 * cus-start.el (window-splits): Replace by window-combination-resize.
a0c2d0ae 7009
35c0bac8
GM
70102011-11-17 Glenn Morris <rgm@gnu.org>
7011
7012 * progmodes/sh-script.el (sh-font-lock-keywords-var):
7013 Make bash entry derive from sh entry, not shell entry.
7014
d0c8fc8a
MA
70152011-11-16 Michael Albinus <michael.albinus@gmx.de>
7016
7262a87c
MA
7017 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
7018 local file name.
7019
7877f373
JB
70202011-11-16 Juanma Barranquero <lekktu@gmail.com>
7021
7022 * menu-bar.el (menu-bar-file-menu):
7023 * printing.el (pr-ps-utility):
7024 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
7025 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
7026 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
7027 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
7028 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
7029 (icalendar--convert-cyclic-to-ical)
7030 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
7031 (icalendar--convert-ical-to-diary)
7032 (icalendar--convert-recurring-to-diary)
7033 (icalendar--convert-non-recurring-all-day-to-diary)
7034 (icalendar-import-format-sample):
7035 * progmodes/idlw-shell.el (idlwave-shell-mode):
7036 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
7037 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
7038 (vhdl-ps-print-init): Fix typos.
7039
10649b82
KM
70402011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
7041
9d0cfcd6
GM
7042 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
7043 FSF and collapse date sequence, obscure author/maintainer email address
7044 better, remove extra version line, track relocation of author's webpage.
10649b82 7045
9d0cfcd6
GM
7046 * progmodes/python.el (python-pdbtrack-input-prompt)
7047 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
7048 regular python pdb prompts. Adjustments shamelessly taken exactly as
7049 suggested in EmacsWiki page (tiny change):
7050 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 7051
58179cce
JB
70522011-11-16 Juanma Barranquero <lekktu@gmail.com>
7053
7054 * expand.el (expand-pos, expand-index, expand-point):
7055 Remove redundant info from docstring.
7056 (expand-add-abbrevs): Doc fix.
7057 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
7058 (expand-sample-perl-mode-expand-list): Fix typos.
7059
7060 * net/dbus.el (dbus-event-member-name):
7061 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
7062 * term/pc-win.el (msdos-create-frame-with-faces):
7063 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
7064
b6f67890
MR
70652011-11-16 Martin Rudalics <rudalics@gmx.at>
7066
7067 * window.el (split-window, window-state-get-1)
7068 (window-state-put-1, window-state-put-2): Rename occurrences of
7069 window-nest to window-combination-limit.
1d00653d 7070 * cus-start.el (window-nest): Rename to window-combination-limit.
b6f67890 7071
ce7ddba0
CY
70722011-11-16 Chong Yidong <cyd@gnu.org>
7073
7074 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
7075 regexp (Bug#10033).
7076
3ae704f4
SM
70772011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7078
7079 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
7080 `completing-read' will remove *Completions* and will preserve
7081 current-buffer for us.
7082 (tmm-add-prompt): Users of *Completions* will always (re)set its
7083 major mode.
7084 (tmm-old-comp-map): Remove.
7085
6ad1cdde
GM
70862011-11-16 Glenn Morris <rgm@gnu.org>
7087
7088 * mail/rmailedit.el: Require rmailmm when compiling.
7089 (rmail-old-mime-state): New declaration.
7090 (rmail-edit-current-message): If editing a mime message,
7091 edit the "raw" message from the mbox buffer.
7092 (rmail-cease-edit): Handle mime messages. (Bug#9840)
7093
d20faa20
GM
70942011-11-15 Glenn Morris <rgm@gnu.org>
7095
7096 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
7097 which wasn't being used. Add optional arg to force given state.
7098 (rmail-mime): Add optional arg to force given state.
7099
c7015153
JB
71002011-11-15 Juanma Barranquero <lekktu@gmail.com>
7101
7102 * allout.el (allout-encryption-plaintext-sanitization-regexps):
7103 * frame.el (display-mm-dimensions-alist):
7104 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
7105 (outline-move-subtree-down):
7106 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
7107 (newsticker--treeview-do-get-node):
7108 * net/quickurl.el (quickurl-list-buffer-name):
7109 * progmodes/dcl-mode.el (dcl-mode):
7110 * progmodes/gdb-mi.el (gdb-mapcar*):
7111 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
7112
45261b50
GM
71132011-11-15 Glenn Morris <rgm@gnu.org>
7114
7115 * mail/rmail.el (rmail-file-coding-system): It's only ever used
7116 in a boolean sense, so just make it a boolean, and fix the doc.
7117 (rmail-show-mime-function, rmail-mime-feature)
7118 (rmail-require-mime-maybe): Doc fixes.
7119 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
7120
7121 * mail/rmailmm.el (rmail-show-mime): Doc fix.
7122
0d26e0b6
JB
71232011-11-15 Juanma Barranquero <lekktu@gmail.com>
7124
7125 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
7126 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
7127 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
7128 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
7129
447f30f6
GM
71302011-11-15 Glenn Morris <rgm@gnu.org>
7131
672b871d
GM
7132 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
7133 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
7134 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
7135 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
7136 (rmail-mime, rmail-show-mime): Doc fixes.
7137
f6aa5bb1
GM
7138 * term/ns-win.el (mode-line-frame-identification):
7139 Leave it alone. (Bug#10051)
7140
947cd66b
GM
7141 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
7142
447f30f6
GM
7143 * mail/rmailout.el (rmail-output-to-rmail-buffer):
7144 Handle empty buffers. (Bug#9978)
7145
0b381c7e
JB
71462011-11-14 Juanma Barranquero <lekktu@gmail.com>
7147
7148 * international/mule.el (define-charset):
7149 * mail/rmailmm.el (rmail-mime-find-header-encoding):
7150 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
7151 * progmodes/verilog-mode.el (verilog-backward-token):
7152 * textmodes/ispell.el (lookup-words):
7153 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
7154
71e027ac
GM
71552011-11-14 Glenn Morris <rgm@gnu.org>
7156
56632ce4
GM
7157 * progmodes/executable.el
7158 (executable-make-buffer-file-executable-if-script-p):
7159 Handle file-modes returning nil.
7160
40500957
GM
7161 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
7162 message - not necessary, and causes problems. (Bug#9831)
7163
071c2340
GM
7164 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
7165
d3cfca60
GM
7166 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
7167
71e027ac
GM
7168 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
7169 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
7170 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
7171
89d61221
MR
71722011-11-12 Martin Rudalics <rudalics@gmx.at>
7173
7174 * window.el (window-resize, delete-window): Use window-splits
7175 variable instead of function.
7176 (window-state-get-1, window-state-put-2, window-state-put):
7177 Don't deal with windows' splits status.
7178
98282f6f
GM
71792011-11-12 Glenn Morris <rgm@gnu.org>
7180
7181 * apropos.el (apropos-do-all, apropos-library, apropos-value)
7182 (apropos-documentation): Doc fixes.
7183
40a8bdf6
JB
71842011-11-11 Juanma Barranquero <lekktu@gmail.com>
7185
7186 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
7187 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
7188
65bd19ff
SM
71892011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7190
7191 * electric.el (electric-indent-post-self-insert-function): Make it
7192 possible for a char to only indent in some circumstances.
7193 (electric-indent-mode): Simplify.
7194
54f9154c
MR
71952011-11-11 Martin Rudalics <rudalics@gmx.at>
7196
7197 * window.el (windows-with-parameter): Remove unused function.
7198 (windows-at-side): Rename to window-at-side-list.
7199 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
7200 (window-side-check, window-size-ignore, window-size-fixed-1)
7201 (window-in-direction-2): Prefix with "window--".
7202 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 7203
68cbc58b
GM
72042011-11-11 Glenn Morris <rgm@gnu.org>
7205
7206 * subr.el (eval-after-load): If FILE is already loaded,
7207 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
7208
b2621720
GM
72092011-11-10 Glenn Morris <rgm@gnu.org>
7210
9a4de110
GM
7211 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
7212 Call svn via vc-svn-command rather than vc-do-command.
7213 (vc-svn-command): Add --non-interactive. (Bug#9993)
7214 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
7215
b2621720
GM
7216 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7217 Add toggle-read-only. (Bug#7292)
7218 * files.el (toggle-read-only): Mention that it should only
7219 be used interactively. (Bug#10006)
7220
1dce7193
SM
72212011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7222
d9ac1a1e
SM
7223 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7224 Adjust regexp for OCaml warnings.
7225
0c325082
SM
7226 * electric.el (electric-pair-post-self-insert-function): Let user
7227 turn it off buffer-locally (bug#9932).
7228
90132c14
SM
7229 * progmodes/python.el (python-beginning-of-statement):
7230 Rewrite (bug#2703).
7231
1dce7193
SM
7232 * progmodes/compile.el: Better handle TABs (bug#9749).
7233 (compilation-internal-error-properties)
7234 (compilation-next-error-function): Obey the target buffer's
7235 compilation-error-screen-columns.
7236
c4e7c63a
JB
72372011-11-09 Juanma Barranquero <lekktu@gmail.com>
7238
7239 * progmodes/meta-mode.el: Remove obsolete comments.
7240 (meta-right-comment-regexp, meta-ignore-comment-regexp):
7241 Fix typos in docstrings.
7242
2cffd681
MR
72432011-11-09 Martin Rudalics <rudalics@gmx.at>
7244
7245 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 7246 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
7247 (window--resizable): New function. Make all callers of
7248 window-resizable call window--resizable instead.
7249 (window-resizable): Rewrite in terms of window--resizable.
7250
0edcba87
GM
72512011-11-08 Glenn Morris <rgm@gnu.org>
7252
7253 * progmodes/delphi.el (delphi-mode-syntax-table):
7254 Let define-derived-mode define a proper syntax table. (Bug#9994)
7255
4b0d61e3
SM
72562011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7257
7258 * window.el: Stay away from defsubst.
7259 (window-list-no-nils): Remove.
7260 (window-state-get-1, window-state-get): Use backquote instead.
7261
cd394be1 72622011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
fcbcac2e 7263
4b0d61e3 7264 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 7265 Fix incorrect use of default argument in `completing-read'.
7266
e1c2c6f2
MR
72672011-11-08 Martin Rudalics <rudalics@gmx.at>
7268
7269 * window.el (display-buffer-function, special-display-function):
7270 Mention display-buffer-record-window but do not mention
7271 help-setup parameter in doc-strings.
b3f4a882 7272 (window-min-delta): Fix doc-string typo.
e1c2c6f2 7273
105216ed
CY
72742011-11-08 Chong Yidong <cyd@gnu.org>
7275
7276 * window.el (window-total-height, window-total-width): Doc fix.
7277 (window-body-size): Move from C.
7278 (window-body-height, window-body-width): Move to C.
7279
0a9f9ab5
SM
72802011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7281
7282 * window.el: Make special-display like display-buffer-alist (bug#9532).
7283 (display-buffer--special-action): New function, morphed
7284 from display-buffer--special.
7285 (display-buffer): Use it to handle special-display-buffers at higher
7286 priority (just after display-buffer-alist).
7287 (display-buffer-fallback-action, display-buffer--other-frame-action)
7288 (pop-to-buffer-same-window): Remove display-buffer--special.
7289
a769dd15
GM
72902011-11-07 Glenn Morris <rgm@gnu.org>
7291
7292 * calendar/cal-menu.el (cal-menu-set-date-title):
7293 Do nothing if not in a calendar. (Bug#9976)
7294
05a61ee3
SM
72952011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
7296
7297 * files.el (find-file): Always use selected-window.
7298
be7f5545
MR
72992011-11-07 Martin Rudalics <rudalics@gmx.at>
7300
7301 * window.el (window-combinations): Make WINDOW argument
7302 mandatory. Rewrite doc-string.
7303 (walk-window-subtree, window-atom-check, window-min-delta)
7304 (window-max-delta, window--resize-this-window)
7305 (window--resize-root-window-vertically, window-tree)
7306 (balance-windows, window-state-put): Rewrite doc-strings as to
7307 not mention the term "subwindow".
7308 (window--resize-subwindows-skip-p): Rename to
7309 window--resize-child-windows-skip-p.
7310 (window--resize-subwindows-normal): Rename to
7311 window--resize-child-windows-normal.
7312 (window--resize-subwindows): Rename to
7313 window--resize-child-windows.
7314 (window-or-subwindow-p): Rename to window--in-subtree-p.
7315
3c6702ef
ML
73162011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7317
7318 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
7319 Ensure that mbox format messages end in two newlines (Bug#9974).
7320
49745b39
CY
73212011-11-06 Chong Yidong <cyd@gnu.org>
7322
7323 * window.el (window-combination-p): Function deleted; its
7324 side-effect is not used in any existing code.
7325 (window-combinations, window-combined-p): Call window-*-child
7326 directly.
7327
24300f5f
CY
73282011-11-05 Chong Yidong <cyd@gnu.org>
7329
7330 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
7331 (window-size-ignore, window-state-get): Callers changed.
7332 (window-normalize-window): Rename from window-normalize-any-window.
7333 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 7334 (window-normalize-live-window): Delete.
447f16b8
CY
7335 (window-combination-p, window-combined-p, window-combinations)
7336 (walk-window-subtree, window-atom-root, window-min-size)
7337 (window-sizable, window-sizable-p, window-size-fixed-p)
7338 (window-min-delta, window-max-delta, window-resizable)
7339 (window-resizable-p, window-full-height-p, window-full-width-p)
7340 (window-current-scroll-bars, window-point-1, set-window-point-1)
7341 (window-at-side-p, window-in-direction, window-resize)
7342 (adjust-window-trailing-edge, maximize-window, minimize-window)
7343 (window-deletable-p, delete-window, delete-other-windows)
7344 (record-window-buffer, unrecord-window-buffer)
7345 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
7346 (quit-window, split-window, window-state-put)
7347 (set-window-text-height, fit-window-to-buffer)
7348 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 7349
89bd5ee1
EZ
73502011-11-04 Eli Zaretskii <eliz@gnu.org>
7351
53479029
EZ
7352 * mail/rmail.el (rmail-simplified-subject): Decode subject with
7353 rfc2047-decode-string.
7354 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
7355 warnings.
7356
89bd5ee1
EZ
7357 * window.el (window-body-height, window-body-width): Mention in
7358 the doc string that the return values are in frame's canonical
7359 units. (Bug#9949)
7360
bd17fdee
AM
73612011-11-03 Alan Mackenzie <acm@muc.de>
7362
7363 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
7364 change in cc-engine.el.
7365
acc825c5
SM
73662011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
7367
7368 * window.el (switch-to-buffer): Use `force-same-window' interactively.
7369
1885e5b8
MR
73702011-11-02 Martin Rudalics <rudalics@gmx.at>
7371
7372 * window.el (quit-window): Call unrecord-window-buffer after
7373 showing another buffer in the window. (Bug#9937)
acc825c5 7374 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 7375
ebe06da9
JB
73762011-11-02 Juanma Barranquero <lekktu@gmail.com>
7377
7378 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
7379 Accept status with more than 9 shelves. (Bug#9935)
7380 Reported by Colin D Bennett <colin@gibibit.com>.
7381
4ee88440
MR
73822011-11-01 Martin Rudalics <rudalics@gmx.at>
7383
7384 * help.el (with-help-window): Don't reference
7385 temp-buffer-show-specifiers in doc-string.
7386
08e1d82c
AS
73872011-10-31 Andreas Schwab <schwab@linux-m68k.org>
7388
7389 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
7390 menu-item.
7391
84bd6e9e
VJL
73922011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7393
7394 * whitespace.el: New version 13.2.2.
7395 (whitespace-newline-mode): Disable properly. Reported by Sarah
7396 <EmacsWiki>.
7397
dba0634a
UJ
73982011-10-30 Ulf Jasper <ulf.jasper@web.de>
7399
7400 * net/newst-treeview.el: Remove "Time-stamp".
7401 (newsticker--group-manage-orphan-feeds): Do not call
7402 newsticker--treeview-tree-update.
db22a3c2
JB
7403 (newsticker-treeview-update, newsticker-treeview):
7404 Call newsticker--treeview-tree-update if necessary.
dba0634a 7405
3d8daefe
MR
74062011-10-30 Martin Rudalics <rudalics@gmx.at>
7407
7408 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
7409 (window-iso-combinations): Remove "iso-" infix.
7410 Suggested by Chong Yidong.
3d8daefe
MR
7411 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
7412 (window-max-delta-1, window-resize, window--resize-siblings)
7413 (window--resize-this-window, adjust-window-trailing-edge)
7414 (split-window, balance-windows-1)
7415 (shrink-window-if-larger-than-buffer):
7416 * calendar/calendar.el (calendar-generate-window):
db22a3c2 7417 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 7418
1bc4c3ae
SM
74192011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7420
7421 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
7422 in place (bug#9907).
7423 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
7424 (eshell-rewrite-if-command, eshell-rewrite-for-command)
7425 (eshell-structure-basic-command, eshell-rewrite-while-command)
7426 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
7427 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
7428 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
7429 (eshell-do-pipelines-synchronously, eshell-eval-command):
7430 Use backquotes and prefer setq to set.
7431 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
7432 (eshell-macrop): Use functionp.
c1e2f5fa 7433 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 7434
30b65d9c
CY
74352011-10-30 Chong Yidong <cyd@gnu.org>
7436
7437 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
7438 instead of set-mark (Bug#9810).
7439
2d197ffb
CY
74402011-10-30 Chong Yidong <cyd@gnu.org>
7441
7442 * window.el (split-window-below, split-window-right): Rename from
7443 split-window-above-each-other and split-window-side-by-side
7444 respectively. All callers changed.
7445 (split-window-sensibly, split-window-sensibly): Use them.
7446 (split-window-keep-point): Doc fix.
7447
7448 * isearch.el: Add isearch-scroll property to split-window-below
7449 and split-window-right.
7450
7451 * follow.el (follow-mode):
7452 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
7453 * progmodes/ada-xref.el (ada-gdb-application):
7454 * emulation/vip.el (vip-buffer-in-two-windows):
7455 * image-dired.el (image-dired-dired-with-window-configuration):
7456 * dired-x.el (dired-do-find-marked-files):
7457 * dired.el (dired-pop-to-buffer):
7458 * bs.el (bs--show-with-configuration):
7459 * vc/emerge.el (emerge-setup-windows):
7460 * textmodes/two-column.el (2C-two-columns):
7461 * textmodes/reftex-toc.el (reftex-toc):
7462 * progmodes/gdb-mi.el (gdb-setup-windows):
7463 * progmodes/fortran.el (fortran-window-create):
7464 * net/newst-treeview.el (newsticker--treeview-window-init):
7465 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
7466 * emulation/tpu-edt.el (tpu-gold-map):
7467 * emulation/crisp.el (crisp-mode-map):
7468 * calendar/calendar.el (calendar-basic-setup): Callers changed.
7469
38bb2ca8
CY
74702011-10-29 Chong Yidong <cyd@gnu.org>
7471
aa4de341
CY
7472 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
7473
e1eb5385
CY
7474 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
7475
5d2ece3c
CY
7476 * textmodes/flyspell.el (flyspell-word): Fix char offset for
7477 forged Ispell output (Bug#7904).
7478
38bb2ca8
CY
7479 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
7480
d0af9f77
SM
74812011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7482
7483 * doc-view.el: Avoid ugly errors about not finding nil.
7484 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
7485 (doc-view-dvipdf-program, doc-view-unoconv-program)
7486 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
7487 Avoid nil or absolute file name as default value.
7488 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
7489
52bedd34
AM
74902011-10-28 Alan Mackenzie <acm@muc.de>
7491
db22a3c2 7492 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 7493
7e43cfa5
AM
74942011-10-28 Alan Mackenzie <acm@muc.de>
7495
7496 Amend the handling of c-beginning/end-of-defun in nested declaration
7497 scopes.
7498
52bedd34
AM
7499 * progmodes/cc-vars.el (c-defun-tactic): Move here from
7500 cc-langs.el. Change it to a defcustom.
7e43cfa5 7501
52bedd34
AM
7502 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
7503 cc-vars.el.
7e43cfa5 7504
d0af9f77
SM
7505 * progmodes/cc-engine.el (c-beginning-of-statement-1):
7506 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 7507
52bedd34 7508 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 7509 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
7510 (c-widen-to-enclosing-decl-scope): New function.
7511 (c-while-widening-to-decl-block): New macro.
7512 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
7513 outward for defun boundaries, and correspondingly change symbol
7514 `respect-enclosure' to `go-outward'.
7515 (c-declaration-limits): Change algorithm to report only the "innermost"
7516 defun's boundaries.
7517
1a2ce9ee
DD
75182011-10-28 Deniz Dogan <deniz@dogan.se>
7519
7520 * net/rcirc.el (rcirc-mode): Use hard newlines.
7521
bc97a826
AM
75222011-10-28 Alan Mackenzie <acm@muc.de>
7523
7524 Amend to indent and fontify macros "which include their own semicolon"
7525 correctly, using the "virtual semicolon" mechanism.
7526
52bedd34 7527 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 7528
d0af9f77 7529 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 7530 Recode to scan one line at a time rather than having \n and \r
58179cce 7531 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 7532 (c-forward-label): Amend for virtual semicolons.
58179cce 7533 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 7534
52bedd34
AM
7535 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
7536 of the new C macros.
bc97a826 7537
52bedd34 7538 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
7539 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
7540 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
7541 (c-opt-cpp-macro-define): Make into a full language variable.
7542 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
7543 AWK Mode (including \n, \r) removed, no longer needed.
7544
d0af9f77
SM
7545 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
7546 Invoke c-make-macro-with-semi-re.
bc97a826 7547
52bedd34
AM
7548 * progmodes/cc-vars.el (c-macro-with-semi-re):
7549 (c-macro-names-with-semicolon): New variables.
58179cce 7550 (c-make-macro-with-semi-re): New function.
bc97a826 7551
7a6c0941
SM
75522011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7553
7554 * vc/log-edit.el: Fill empty field rather than adding new one.
7555 (log-edit-add-field): New function.
7556 (log-edit-insert-changelog): Use it.
7557
b0c4cdcf
ML
75582011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7559
7560 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
7561
ee1f1da9
SM
75622011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7563
7564 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
7565 (gdb--check-interpreter): New function.
7566 (gdb): Use it.
7567
51bc5f8b
GM
75682011-10-27 Glenn Morris <rgm@gnu.org>
7569
416a2c45
GM
7570 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
7571 (least-positive-float, least-negative-float)
7572 (least-positive-normalized-float, least-negative-normalized-float)
7573 (float-epsilon, float-negative-epsilon):
7574 Remove unnecessary declarations.
7575
7576 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
7577 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
7578 (least-positive-float, least-negative-float)
7579 (least-positive-normalized-float, least-negative-normalized-float)
7580 (float-epsilon, float-negative-epsilon): Add doc-strings,
7581 based on those in cl.texi.
7582
51bc5f8b
GM
7583 * files.el (set-visited-file-name): If the major-mode changed,
7584 reload the local variables. (Bug#9796)
7585
15de15c6
CY
75862011-10-27 Chong Yidong <cyd@gnu.org>
7587
7588 * subr.el (change-major-mode-after-body-hook): New hook.
7589 (run-mode-hooks): Run it.
7590
ee1f1da9
SM
7591 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7592 Use change-major-mode-before-body-hook.
15de15c6
CY
7593
7594 * simple.el (fundamental-mode):
7595 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
7596 change introducing fundamental-mode-hook.
7597
5430d399
JB
75982011-10-26 Juanma Barranquero <lekktu@gmail.com>
7599
acc825c5 7600 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 7601
ad74a69e
MA
76022011-10-26 Michael Albinus <michael.albinus@gmx.de>
7603
7604 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 7605 tramp.el explicitly. (Bug#7583)
ad74a69e 7606
71d4c2a5
SM
76072011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
7608
7609 * progmodes/octave-mod.el:
7610 * progmodes/octave-inf.el: Update maintainer.
7611
b1f6fa26
CY
76122011-10-26 Chong Yidong <cyd@gnu.org>
7613
7614 * subr.el (with-wrapper-hook): Rewrite doc.
7615
3f04efd6
MA
76162011-10-25 Michael Albinus <michael.albinus@gmx.de>
7617
7618 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 7619 filenames "/method:foo:". (Bug#9793)
3f04efd6 7620
410488d3
SM
76212011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7622
7623 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
7624 (bug#9865).
7625
c1ebb47e
GM
76262011-10-24 Glenn Morris <rgm@gnu.org>
7627
7628 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
7629
7f5c46c7
MA
76302011-10-24 Michael Albinus <michael.albinus@gmx.de>
7631
7632 * notifications.el: Add the requirement of a running D-Bus session
7633 bus to the Commentary.
7634
db2440b6
JL
76352011-10-24 Juri Linkov <juri@jurta.org>
7636
7637 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
7638 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
7639 (Bug#9364)
7640
feecf435
JL
76412011-10-24 Juri Linkov <juri@jurta.org>
7642
7643 * info.el (Info-following-node-name-re): Add newline to the list
7644 of allowed characters for leading space. (Bug#9824)
7645
a3839de2
SM
76462011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7647
acc825c5
SM
7648 * progmodes/octave-inf.el (inferior-octave-mode-map):
7649 Fix C-c C-h binding.
a3839de2
SM
7650 * progmodes/octave-mod.el (octave-help): Remove.
7651
09388e76
MA
76522011-10-23 Michael Albinus <michael.albinus@gmx.de>
7653
7654 Sync with Tramp 2.2.3.
7655
7656 * net/tramp-cache.el (top): Pacify byte-compiler using
7657 `init-file-user' and `site-run-file'.
7658
7659 * net/trampver.el: Update release number.
7660
86c60681
CY
76612011-10-23 Chong Yidong <cyd@gnu.org>
7662
7663 * files.el (toggle-read-only): Remove obsolete comment about
7664 version control.
7665
7666 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
7667 for toggle-read-only. Note that this hasn't called vc-next-action
7668 since 2008-05-02, though it wasn't documented at the time.
7669
a3839de2
SM
7670 * vc/ediff-init.el (ediff-toggle-read-only-function):
7671 Use toggle-read-only.
86c60681 7672
cd5495ff
AM
76732011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
7674
7675 Fix bug #9560, sporadic wrong indentation; improve instrumentation
7676 of c-parse-state.
7677
00b77525 7678 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 7679 correct faulty logical expression.
cd5495ff
AM
7680 (c-parse-state-state, c-record-parse-state-state):
7681 (c-replay-parse-state-state): New defvar/defuns.
7682 (c-debug-parse-state): Use new functions.
7683
42ee24ed
MR
76842011-10-22 Martin Rudalics <rudalics@gmx.at>
7685
7686 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 7687 last fix. Use window-in-direction correctly.
42ee24ed 7688
a7dee7e7
CY
76892011-10-21 Chong Yidong <cyd@gnu.org>
7690
7691 * progmodes/idlwave.el (idlwave-mode):
7692 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
7693 require-final-newline; that's done in prog-mode.
7694 Suggested by Stefan Monnier.
a7dee7e7 7695
e07b9a6d
MR
76962011-10-21 Martin Rudalics <rudalics@gmx.at>
7697
7698 * mouse.el (mouse-drag-window-above)
7699 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
7700 (mouse-drag-mode-line-1, mouse-drag-header-line)
7701 (mouse-drag-vertical-line-rightward-window): Remove.
7702 (mouse-drag-line): New function.
7703 (mouse-drag-mode-line, mouse-drag-header-line)
7704 (mouse-drag-vertical-line): Call mouse-drag-line.
7705 * window.el (window-at-side-p, windows-at-side): New functions.
7706
7e1361d9
UM
77072011-10-21 Ulrich Mueller <ulm@gentoo.org>
7708
7709 * tar-mode.el (tar-grind-file-mode):
7710 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
7711
30fcaf3a
CY
77122011-10-21 Chong Yidong <cyd@gnu.org>
7713
7714 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
7715 * progmodes/vera-mode.el (vera-mode):
7716 Use mode-require-final-newline.
30fcaf3a 7717
516eddb0
GM
77182011-10-20 Glenn Morris <rgm@gnu.org>
7719
db22a3c2 7720 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 7721
10d5f513
CS
77222011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
7723
7724 * emulation/cua-base.el (cua-set-mark): Fix case of string.
7725
ac6c8639
CY
77262011-10-20 Chong Yidong <cyd@gnu.org>
7727
7728 * emulation/cua-base.el (cua-mode):
7729 * mail/footnote.el (footnote-mode):
7730 * mail/mailabbrev.el (mail-abbrevs-mode):
7731 * net/xesam.el (xesam-minor-mode):
7732 * progmodes/bug-reference.el (bug-reference-mode):
7733 * progmodes/cap-words.el (capitalized-words-mode):
7734 * progmodes/compile.el (compilation-minor-mode)
7735 (compilation-shell-minor-mode):
7736 * progmodes/gud.el (gud-tooltip-mode):
7737 * progmodes/hideif.el (hide-ifdef-mode):
7738 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
7739 * progmodes/subword.el (subword-mode):
7740 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7741 * progmodes/which-func.el (which-function-mode):
7742 * term/tvi970.el (tvi970-set-keypad-mode):
7743 * term/vt100.el (vt100-wide-mode):
7744 * textmodes/flyspell.el (flyspell-mode):
7745 * textmodes/ispell.el (ispell-minor-mode):
7746 * textmodes/nroff-mode.el (nroff-electric-mode):
7747 * textmodes/paragraphs.el (use-hard-newlines):
7748 * textmodes/refill.el (refill-mode):
7749 * textmodes/reftex.el (reftex-mode):
7750 * textmodes/rst.el (rst-minor-mode):
7751 * textmodes/sgml-mode.el (html-autoview-mode)
7752 (sgml-electric-tag-pair-mode):
7753 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
7754 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
7755 * emulation/crisp.el (crisp-mode):
7756 * emacs-lisp/eldoc.el (eldoc-mode):
7757 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
7758 minor mode behavior.
7759
aa42ab43
JL
77602011-10-19 Juri Linkov <juri@jurta.org>
7761
7762 * descr-text.el (describe-char): Add #x2010 and #x2011 to
7763 the list of hard-coded chars with escape-glyph face.
7764
89400f1d
SM
77652011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
7766
7767 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
7768
305c07f6
MA
77692011-10-19 Michael Albinus <michael.albinus@gmx.de>
7770
7771 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
7772 running process.
7773
13754b54
GM
77742011-10-19 Glenn Morris <rgm@gnu.org>
7775
7776 * vc/vc-bzr.el (vc-bzr-after-dir-status):
7777 Ignore ignored files. (Bug#9726)
7778
06e21633
CY
77792011-10-19 Chong Yidong <cyd@gnu.org>
7780
7781 Doc fix for minor modes, stating that an omitted argument enables
7782 the mode unconditionally when called from Lisp.
7783
7784 * abbrev.el (abbrev-mode):
7785 * allout.el (allout-mode):
7786 * autoinsert.el (auto-insert-mode):
7787 * autoarg.el (autoarg-mode, autoarg-kp-mode):
7788 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
7789 (global-auto-revert-mode):
7790 * battery.el (display-battery-mode):
7791 * composite.el (global-auto-composition-mode)
7792 (auto-composition-mode):
7793 * delsel.el (delete-selection-mode):
7794 * desktop.el (desktop-save-mode):
7795 * dired-x.el (dired-omit-mode):
7796 * dirtrack.el (dirtrack-mode):
7797 * doc-view.el (doc-view-minor-mode):
7798 * double.el (double-mode):
7799 * electric.el (electric-indent-mode, electric-pair-mode):
7800 * emacs-lock.el (emacs-lock-mode):
7801 * epa-hook.el (auto-encryption-mode):
7802 * follow.el (follow-mode):
7803 * font-core.el (font-lock-mode):
7804 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
7805 * help.el (temp-buffer-resize-mode):
7806 * hilit-chg.el (highlight-changes-mode)
7807 (highlight-changes-visible-mode):
7808 * hi-lock.el (hi-lock-mode):
7809 * hl-line.el (hl-line-mode, global-hl-line-mode):
7810 * icomplete.el (icomplete-mode):
7811 * ido.el (ido-everywhere):
7812 * image-file.el (auto-image-file-mode):
7813 * image-mode.el (image-minor-mode):
7814 * iswitchb.el (iswitchb-mode):
7815 * jka-cmpr-hook.el (auto-compression-mode):
7816 * linum.el (linum-mode):
7817 * longlines.el (longlines-mode):
7818 * master.el (master-mode):
7819 * mb-depth.el (minibuffer-depth-indicate-mode):
7820 * menu-bar.el (menu-bar-mode):
7821 * minibuf-eldef.el (minibuffer-electric-default-mode):
7822 * mouse-sel.el (mouse-sel-mode):
7823 * msb.el (msb-mode):
7824 * mwheel.el (mouse-wheel-mode):
7825 * outline.el (outline-minor-mode):
7826 * paren.el (show-paren-mode):
7827 * recentf.el (recentf-mode):
7828 * reveal.el (reveal-mode, global-reveal-mode):
7829 * rfn-eshadow.el (file-name-shadow-mode):
7830 * ruler-mode.el (ruler-mode):
7831 * savehist.el (savehist-mode):
7832 * scroll-all.el (scroll-all-mode):
7833 * scroll-bar.el (scroll-bar-mode):
7834 * server.el (server-mode):
7835 * shell.el (shell-dirtrack-mode):
7836 * simple.el (auto-fill-mode, transient-mark-mode)
7837 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
7838 (line-number-mode, column-number-mode, size-indication-mode)
7839 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
7840 * strokes.el (strokes-mode):
7841 * time.el (display-time-mode):
7842 * t-mouse.el (gpm-mouse-mode):
7843 * tool-bar.el (tool-bar-mode):
7844 * tooltip.el (tooltip-mode):
7845 * type-break.el (type-break-mode-line-message-mode)
7846 (type-break-query-mode):
7847 * view.el (view-mode):
7848 * whitespace.el (whitespace-mode, whitespace-newline-mode)
7849 (global-whitespace-mode, global-whitespace-newline-mode):
7850 * xt-mouse.el (xterm-mouse-mode): Doc fix.
7851
a3839de2
SM
7852 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7853 Fix autogenerated docstring.
06e21633 7854
5214e501
JL
78552011-10-19 Juri Linkov <juri@jurta.org>
7856
7857 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
7858 by checking environment variables "DESKTOP_SESSION" and
7859 "XDG_CURRENT_DESKTOP". (Bug#9779)
7860
195f8db9
JL
78612011-10-19 Juri Linkov <juri@jurta.org>
7862
7863 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
7864 (browse-url-chromium-program, browse-url-chromium-arguments):
7865 New defcustoms.
7866 (browse-url-default-browser): Check for `browse-url-chromium' and
7867 call `browse-url-chromium-program'.
7868 (browse-url-chromium): New command. (Bug#9779)
7869
343a34ff
JB
78702011-10-18 Juanma Barranquero <lekktu@gmail.com>
7871
7872 * facemenu.el (list-colors-duplicates): On Windows, detect more
7873 duplicates by assuming that only colors matching "^System" are
7874 special "system colors". (Bug#9722)
7875
6978a151
SM
78762011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
7877
7878 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
7879 to distinguish the author from the committer.
7880
6a80b297
MA
78812011-10-18 Michael Albinus <michael.albinus@gmx.de>
7882
7883 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
7884
b31a5677
JK
78852011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
7886
7887 * international/mule.el (sgml-html-meta-auto-coding-function):
7888 Add support for detecting encoding in HTML5 specified only as
7889 <meta charset="UTF-8">. Implementation just makes http-equiv and
7890 content-type parts from HTML4 encoding string optional. (Bug#9716)
7891
80c6d77f
GM
78922011-10-18 Glenn Morris <rgm@gnu.org>
7893
7894 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
7895
08b0fee8
CY
78962011-10-18 Chong Yidong <cyd@gnu.org>
7897
7898 * faces.el (cursor): Doc fix.
7899
67e729a5
CY
79002011-10-17 Chong Yidong <cyd@gnu.org>
7901
7902 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
7903
343a34ff 79042011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
7905
7906 * dirtrack.el (dirtrack): Support shell buffers with path
7907 prefixes, e.g. tramp-based remote shells. (Bug#9647)
7908
0bc06380
TZ
79092011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
7910
7911 * json.el: Bump version to 1.3 and note change in History.
7912 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
7913
8b79f3e0
SM
79142011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
7915
5a7c536b
SM
7916 * comint.el (comint-insert-input, comint-send-input)
7917 (comint-get-old-input-default, comint-backward-matching-input)
7918 (comint-next-prompt): Use nil instead of `input' for field property of
7919 past user input (bug#114).
7920
96a8a0df
SM
7921 * minibuffer.el (completion--replace): Inherit surrounding properties
7922 (bug#114).
7923 (minibuffer-complete-and-exit): Use it.
7924
8b79f3e0
SM
7925 * comint.el (comint--table-subvert): Quote the all-completions output
7926 (bug#9160).
7927
b8f7ff0d
MR
79282011-10-17 Martin Rudalics <rudalics@gmx.at>
7929
8b79f3e0 7930 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 7931
b8f7ff0d 7932 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 7933 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
7934 entries and separate them from frame entries.
7935
c235b555
GM
79362011-10-15 Glenn Morris <rgm@gnu.org>
7937
7938 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
7939 Doc fixes.
7940
6bbfa6e1
CY
79412011-10-15 Chong Yidong <cyd@stupidchicken.com>
7942
8b79f3e0
SM
7943 * net/network-stream.el (network-stream-open-starttls):
7944 Improve detection of failure due to lack of TLS support.
ec5c990d 7945
6bbfa6e1
CY
7946 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
7947 putting the input text in front and in bold.
7948
98488977
SM
79492011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
7950
3d1337be
SM
7951 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
7952
ee0b45e4
SM
7953 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
7954 empty buffer.
7955
98488977
SM
7956 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
7957 unread-command-events rather than pushing yet-another event.
7958
186f4720
EZ
79592011-10-14 Eli Zaretskii <eliz@gnu.org>
7960
7961 * mail/sendmail.el (sendmail-query-once): Improve the wording of
7962 the explanation of the possible choices. Make the options passed
7963 to completing-read shorter.
7964
8b7a997c
AM
79652011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7966
7967 * textmodes/flyspell.el (flyspell-large-region): Make sure
7968 extended character mode is used if defined (Bug#1339).
7969
12587bbb
EZ
79702011-10-13 Eli Zaretskii <eliz@gnu.org>
7971
7972 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
7973 character info for LRE, LRO, RLE, and RLO characters by appending
7974 an invisible PDF.
12587bbb 7975
bad41229
SM
79762011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
7977
7978 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
7979 even in case of error; add debug spec; simplify data flow.
7980 (with-timeout-handler): Remove.
7981
28dbc92f
MA
79822011-10-12 Michael Albinus <michael.albinus@gmx.de>
7983
7984 Fix Bug#6019, Bug#9315.
7985
7986 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
7987 complete `buffer-file-name', the local file name part could look
7988 remotely (for example on VMS).
7989
7990 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
7991 `tramp-run-real-handler'.
7992 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
7993 already quoted by '"'.
7994
7995 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
7996 Let `file-name-handler-alist' be nil, the local file name part
7997 could look remotely (for example on VMS).
7998
e1b0b23a
SM
79992011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8000
8001 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
8002 from here...
8003 (flyspell-post-command-hook): ...to here.
8004
a120bde9
SM
80052011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8006
8007 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
8008 if not needed.
8009 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
8010 using completion. Protect against "slow" callers.
8011 Remove the "message hack".
8012
7ce7717b
JL
80132011-10-11 Juri Linkov <juri@jurta.org>
8014
8015 * isearch.el (isearch-lazy-highlight-word): New variable.
8016 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
8017 Use it. (Bug#9727)
8018
c02ee9d6
GM
80192011-10-11 Glenn Morris <rgm@gnu.org>
8020
8021 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
8022 like f90-previous-statement does.
8023
93e616fd 80242011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8025
1f190e73 8026 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
8027 only in interactive use, to avoid error.
8028
af7b6078
SM
80292011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8030
8031 * minibuffer.el (completion-file-name-table): Fix last change,
8032 i.e. ignore normal errors but not the other ones.
8033
0563dae9
MR
80342011-10-10 Martin Rudalics <rudalics@gmx.at>
8035
8036 * window.el (special-display-buffer-names)
8037 (special-display-regexps): Remove some remnants of earlier
8038 changes from doc-strings.
366ca7f3
MR
8039 (quit-windows-on): New function.
8040
8041 * vc/vc.el (vc-revert, vc-rollback):
8042 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
8043 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 8044 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 8045
49677495
MR
80462011-10-09 Martin Rudalics <rudalics@gmx.at>
8047
8048 * window.el (frame-auto-hide-function): Add version tag.
8049 (Bug#9699)
8050
56f2d1e1
MA
80512011-10-09 Michael Albinus <michael.albinus@gmx.de>
8052
8053 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
8054 condition.
8055
112a6592
LL
80562011-10-09 Leo Liu <sdl.web@gmail.com>
8057
8058 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
8059 (Bug#9701)
8060
0812589b
GM
80612011-10-08 Glenn Morris <rgm@gnu.org>
8062
8063 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
8064 before the first code statement zero indent. (Bug#9690)
8065
b2b0776e
CY
80662011-10-08 Chong Yidong <cyd@stupidchicken.com>
8067
8068 * simple.el (count-words-region): Always count in the region.
8069 Report the number of lines and characters too.
8070 (count-words): New command, which counts in the buffer if the
8071 region is inactive, as count-words-region used to.
8072 (count-words--message): New function. Handle plurals.
8073 (count-lines-region): Make it an alias for count-words-region.
8074
8075 * bindings.el (esc-map): Replace count-lines-region with
8076 count-words-region.
8077
c557cd6b
MR
80782011-10-08 Martin Rudalics <rudalics@gmx.at>
8079
8080 * window.el (window--delete): Delete dedicated frame
8081 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 8082 (switch-to-buffer): Fix doc-string typo.
c557cd6b 8083
61a57ef4 80842011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8085
3a7d293b 8086 * eshell/eshell.el (eshell-command): Avoid using hooks.
61a57ef4 8087
c3833279
CY
80882011-10-07 Chong Yidong <cyd@stupidchicken.com>
8089
8090 * bindings.el ([M-left],[M-right]): Bind to left-word and
8091 right-word respectively.
8092
21ce8245
GM
80932011-10-07 Glenn Morris <rgm@gnu.org>
8094
8095 * cus-start.el (debug-on-quit): Fix custom type.
8096
6d823bb2
LMI
80972011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8098
0181e193
LMI
8099 * subr.el (define-key-after): Clarify that the function is not
8100 useful for non-menu keymaps.
8101
6d823bb2
LMI
8102 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
8103
8e3459ce 81042011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8105
21ce8245 8106 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 8107 in current minibuffer (Fix bug with recursive minibuffers).
8108
a1c2d21e
CY
81092011-10-06 Chong Yidong <cyd@stupidchicken.com>
8110
8111 * progmodes/gdb-mi.el (gdb): Doc fix.
8112
5a4cf282
MR
81132011-10-05 Martin Rudalics <rudalics@gmx.at>
8114
8115 * window.el (frame-auto-hide-function): New option replacing
8116 frame-auto-delete. Suggested by Stefan Monnier.
8117 (window--delete): Call frame-auto-hide-function instead of
8118 investigating frame-auto-delete.
c96111ea
MR
8119 (window-point-1, set-window-point-1): New functions.
8120 (window-in-direction, record-window-buffer, window-state-get-1)
8121 (display-buffer-record-window): Use window-point-1 instead of
8122 window-point.
8123 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 8124
9854542e
SM
81252011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8126
8127 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
8128
8943cfb0
GM
81292011-10-05 Glenn Morris <rgm@gnu.org>
8130
8131 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
8132 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
8133
647ab967
LL
81342011-10-05 Leo Liu <sdl.web@gmail.com>
8135
8136 * subr.el (read-char-choice): Fix argument to buffer-live-p which
8137 works with buffer object.
8138
3ddfbced
SM
81392011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8140
8141 * mpc.el (mpc-tool-bar-map): Add labels.
8142
bdfa5dd2
GM
81432011-10-04 Glenn Morris <rgm@gnu.org>
8144
8145 * calendar/holidays.el (calendar-check-holidays): Doc fix.
8146
0e2070b5
MR
81472011-10-04 Martin Rudalics <rudalics@gmx.at>
8148
8149 * window.el (window--delete): New function.
8150 (frame-auto-delete): Resuscitate option.
8151 (bury-buffer, replace-buffer-in-windows)
8152 (quit-window): Rewrite using window--delete.
8153 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8154 Pass display-buffer-mark-dedicated to window--display-buffer-2
8155 (Bug#9639).
8156
3dc61a09
SM
81572011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8158
915a9b64
SM
8159 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
8160 returns a list (bug#9554). Add remote file name completion.
8161 * comint.el (comint--table-subvert): Curry and get quote&unquote
8162 functions as arguments.
8163 (comint--complete-file-name-data): Adjust call accordingly.
8164 * pcomplete.el (pcomplete--table-subvert): Remove.
8165 (pcomplete-completions-at-point): Use comint--table-subvert instead.
8166
3dc61a09
SM
8167 * minibuffer.el (completion-table-case-fold): Use currying.
8168 (completion--styles-type, completion--cycling-threshold-type):
8169 New constants.
8170 (completion-styles, completion-category-overrides)
8171 (completion-cycle-threshold): Use them.
8172 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
8173 completion-table-case-fold.
8174
8ea0a993
SB
81752011-10-03 Stephen Berman <stephen.berman@gmx.net>
8176
8177 * minibuffer.el (completion-category-overrides): Fix type of styles
8178 and add more user friendly tags (bug#9660).
8179
8c24b7f6
SM
81802011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8181
8182 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
8183 (mule-input-method-string): New widget.
8184 (default-input-method, language-info-custom-alist): Use it.
8185
428fe61a
SM
81862011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8187
32c1fffd
SM
8188 * pcomplete.el: Require comint.
8189 (pcomplete--common-suffix): Remove.
8190 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
8191 (pcomplete--table-subvert): Sync with comint--table-subvert.
8192 (pcomplete--entries): Use comint-completion-file-name-table.
8193 * comint.el (comint-unquote-filename): Simplify.
8194 (comint-completion-file-name-table): New function (bug#9616).
8195 (comint--complete-file-name-data): Use it.
8196
428fe61a
SM
8197 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
8198 (pcmpl-gnu-tar-buffer): Remove.
8199 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
8200 around. Make sure pcomplete-suffix-list is only changed temporarily.
8201 Don't look inside the tar's file if it's too large.
428fe61a 8202
04c52e2f
CY
82032011-10-01 Chong Yidong <cyd@stupidchicken.com>
8204
ce3cefcc
CY
8205 * cus-edit.el (custom-mode-map):
8206 * epa.el (epa-key-list-mode-map):
8207 * man.el (Man-mode-map):
8208 * startup.el (splash-screen-keymap):
8209 * simple.el (special-mode-map): Use scroll-up-command and
8210 scroll-down-command.
8211
8212 * progmodes/idlw-help.el (idlwave-help-mode-map):
8213 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
8214 * net/newst-plainview.el (newsticker-mode-map):
8215 * emulation/ws-mode.el (wordstar-mode-map):
8216 * emulation/vi.el (vi-com-map):
8217 * calc/calc-graph.el (calc-graph-show-dumb):
8218 * term/sun.el (terminal-init-sun):
8219 * term/ns-win.el (global-map):
8220 * progmodes/grep.el (grep-mode-map):
8221 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
8222 * mail/rmail.el (rmail-mode-map):
8223 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
8224
04c52e2f
CY
8225 * custom.el (custom-safe-themes, load-theme): Treat value of t for
8226 custom-safe-themes as special.
8227
79adf8c8
JD
82282011-10-01 Julien Danjou <julien@danjou.info>
8229
8230 * notifications.el (notifications-notify): Fix docstring.
8231
63bd50d3
PS
82322011-10-01 Per Starbäck <per@starback.se>
8233
8234 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
8235
199e4c7e
MR
82362011-09-30 Martin Rudalics <rudalics@gmx.at>
8237
8238 * startup.el (command-line-1): Fix last fix by inserting
8239 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 8240 (Bug#9605) and (Bug#9636)
199e4c7e 8241
fe5f08dd
EZ
82422011-09-29 Eli Zaretskii <eliz@gnu.org>
8243
8244 * simple.el (line-move): If auto-hscroll-mode is disabled and the
8245 window is hscrolled, move by logical lines. (Bug#9607)
8246 (line-move-visual): Update the doc string to the above effect.
8247
b5516bbd
MR
82482011-09-29 Martin Rudalics <rudalics@gmx.at>
8249
ccee00c0
MR
8250 * window.el (display-buffer-record-window): When WINDOW is the
8251 selected window use `point' instead of `window-point'. (Bug#9626)
8252
b5516bbd
MR
8253 * startup.el (command-line-1): Use insert-before-markers when
8254 inserting initial-scratch-message. (Bug#9605)
ccee00c0 8255
b5516bbd
MR
8256 * help.el (help-window): Remove variable.
8257
52aa0014
GM
82582011-09-29 Glenn Morris <rgm@gnu.org>
8259
8260 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
8261
df9a7357
JB
82622011-09-29 Juanma Barranquero <lekktu@gmail.com>
8263
8264 * descr-text.el (describe-char-categories): Accept category
8265 descriptions more than one line long.
8266
a8406c20
SM
82672011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
8268
88d9610c
SM
8269 * simple.el (delete-trailing-whitespace): Fix last change.
8270
a5daf810
SM
8271 * progmodes/perl-mode.el (perl-syntax-propertize-function):
8272 Don't confuse "y => 3" as the beginning of a `y' operation.
8273
a8406c20
SM
8274 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
8275 object has more than 4 slots (bug#9613).
8276
a239d4e9
JB
82772011-09-28 Juanma Barranquero <lekktu@gmail.com>
8278
8279 * subr.el (with-output-to-temp-buffer):
8280 * net/quickurl.el (quickurl, quickurl-browse-url):
8281 Fix typos in docstrings.
8282
693fbdb6
EZ
82832011-09-27 Eli Zaretskii <eliz@gnu.org>
8284
8285 * minibuffer.el (completion-styles)
8286 (completion-category-overrides): Cross reference each other in doc
8287 strings.
8288
8b457e28
GM
82892011-09-27 Glenn Morris <rgm@gnu.org>
8290
8291 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
8292 to split-string. (Bug#9606)
8293
85a16208
LMI
82942011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
8295
8296 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
8297 (bug#9615).
8298
502f9ebd
CY
82992011-09-27 Chong Yidong <cyd@stupidchicken.com>
8300
8301 * emacs-lisp/package.el (list-packages): Fix echo area message.
8302
7690bdea
LL
83032011-09-27 Leo Liu <sdl.web@gmail.com>
8304
8305 * ido.el (ido-read-internal): Accept cons cell HIST arg.
8306
e2ee6f30
MA
83072011-09-25 Michael Albinus <michael.albinus@gmx.de>
8308
8309 * net/dbus.el (dbus-unregister-object): Don't release services for
8310 registered signals. (Bug#9581)
8311
f3f98342
TZ
83122011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
8313
8314 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
8315 function that picks between cfengine 2 and 3 support
8316 automatically. Update docs accordingly.
8317
dd7aa8dd
KH
83182011-09-22 Kenichi Handa <handa@m17n.org>
8319
8320 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
8321 ZERO.
8322 (indian-itrans-v5-table-for-tamil): New variable.
8323 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
8324
3f2b07f8
KM
83252011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
8326
8327 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
8328 that's true if the current command involved collapsing of text.
8329 It's reset to false at the beginning of the next command.
8330 (allout-post-command-business): Move the cursor to the beginning
8331 of entry if the cursor is hidden and collapsing activity just
8332 happened.
8333
371d6a61
CY
83342011-09-24 Chong Yidong <cyd@stupidchicken.com>
8335
8336 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
8337 tracking (Bug#9541).
8338
2ac2721a
UJ
83392011-09-24 Ulf Jasper <ulf.jasper@web.de>
8340
8341 * net/newst-reader.el (newsticker-html-renderer)
1154d12e
JB
8342 (newsticker-show-news): Automatically load html rendering package
8343 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
8344 because w3m-fill-column is let-bound" and the error "Symbol's value
8345 as variable is void: w3m-fill-column".
2ac2721a 8346
fac7ae53
MA
83472011-09-24 Michael Albinus <michael.albinus@gmx.de>
8348
8349 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
8350 Release services only if they are defined. (Bug#9581)
8351
e08b633b
RS
83522011-09-23 Richard Stallman <rms@gnu.org>
8353
e488d29c
RS
8354 * textmodes/paragraphs.el (forward-sentence): For backwards case,
8355 distinguish start of paragraph from start of its text.
8356
19c38752
RS
8357 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
8358
e08b633b
RS
8359 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
8360 (rmail-generate-viewer-buffer): Put that hook on view buffer.
8361 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
8362
0a39f27e
AS
83632011-09-23 Andreas Schwab <schwab@linux-m68k.org>
8364
8365 * international/mule-diag.el (mule-diag): Insert a newline after
8366 each fontset description.
8367
db4e950d
SM
83682011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8369
8370 * simple.el (delete-trailing-whitespace):
8371 Document last change; simplify.
8372
eca3f3ea
PW
83732011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
8374
d68e189a
PW
8375 * simple.el (delete-trailing-whitespace): Also delete
8376 extra newlines at the end of the buffer.
8377
eca3f3ea
PW
8378 * textmodes/picture.el: Make motion commands obey shift-select-mode.
8379 (picture-newline): Use forward-line so as to ignore fields.
8380
01c157cc
SM
83812011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8382
8383 * subr.el (with-wrapper-hook): Fix edebug spec.
8384
022de23e
LMI
83852011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
8386
8387 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
8388 (bug#4538).
8389
91683089
MA
83902011-09-23 Michael Albinus <michael.albinus@gmx.de>
8391
eca3f3ea
PW
8392 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
8393 Fix nasty bug using wrong cached values.
91683089 8394
5bdd6fa4
AM
83952011-09-23 Alan Mackenzie <acm@muc.de>
8396
8397 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
8398
97adfb97
CY
83992011-09-23 Chong Yidong <cyd@stupidchicken.com>
8400
8401 * window.el (pop-to-buffer): Ensure right window is selected if we
8402 chose another frame.
8403
d4ef2b50
EZ
84042011-09-22 Eli Zaretskii <eliz@gnu.org>
8405
8406 * simple.el (what-cursor-position): Use get-char-property-change
8407 and next-single-char-property-change, to be able to show display
8408 properties that come from overlays as well as text properties.
8409
72258fe5
CY
84102011-09-22 Chong Yidong <cyd@stupidchicken.com>
8411
8412 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
8413
8414 * cmuscheme.el (run-scheme, switch-to-scheme):
8415 * cus-edit.el (customize-group, custom-buffer-create)
8416 (customize-browse):
8417 * info.el (info):
8418 * shell.el (shell):
8419 * mail/sendmail.el (mail):
8420 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
8421
8f098516
RS
84222011-09-22 Richard Stallman <rms@gnu.org>
8423
8424 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
8425 move back only to line beg, don't move back over blank lines.
8426
e74f1bb6
MA
84272011-09-22 Michael Albinus <michael.albinus@gmx.de>
8428
8429 * files.el (copy-directory): Set directory attributes only in case
8430 they could be retrieved from the source directory. (Bug#9565)
8431
bfeef8b6
DK
84322011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
8433
8434 * progmodes/hideshow.el (hs-looking-at-block-start-p)
8435 (hs-find-block-beginning, hs-hide-level-recursive):
8436 Ignore strings as well as comments. (Bug#9502)
8437
7e423bb8
AS
84382011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
8439
8440 * progmodes/sql.el (sql-comint-postgres):
8441 Convert port number to a string. (Bug#9566)
8442
b4d72fcf
MR
84432011-09-22 Martin Rudalics <rudalics@gmx.at>
8444
8445 * window.el (quit-window): Undedicate window when switching to
8446 previous buffer. Reported by Thierry Volpiatto
8447 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
8448 (special-display-popup-frame): When popping up a new frame reset
8449 its previous buffers to nil. Simplify code.
b4d72fcf 8450
a7b88dc6
MA
84512011-09-21 Michael Albinus <michael.albinus@gmx.de>
8452
8453 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
8454 and process filter, as done also in `shell-command'.
8455
cf4eacfd
MR
84562011-09-21 Martin Rudalics <rudalics@gmx.at>
8457
eca3f3ea 8458 * window.el (set-window-buffer-start-and-point):
1154d12e
JB
8459 Call set-window-start with NOFORCE argument t.
8460 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
cf4eacfd
MR
8461 (quit-window): Reword doc-string. Handle new format of
8462 quit-restore parameter. Don't delete window if it has a
8463 previous buffer we can show instead of the present one.
8464 (display-buffer-record-window): Rewrite using a new format for
8465 the quit-restore window parameter
8466 (special-display-popup-frame, display-buffer-same-window)
8467 (display-buffer-reuse-window, display-buffer-pop-up-frame)
8468 (display-buffer-pop-up-window, display-buffer-use-some-window):
8469 Adapt symbol passed to display-buffer-record-window.
8470 * help.el (help-window-setup): Handle new format of quit-restore
8471 parameter.
8472
8d28cb95
SM
84732011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
8474
94ab793f
SM
8475 * faces.el (face-list): Fix docstring (bug#9564).
8476
8d28cb95
SM
8477 * window.el (display-buffer--action-function-custom-type):
8478 Don't include internal functions in the Custom interface.
8479
3820edeb
JL
84802011-09-20 Juri Linkov <juri@jurta.org>
8481
8482 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
8483 (Info-forward-node, Info-backward-node, Info-next-preorder)
8484 (Info-last-preorder): Use it. (Bug#9528)
8485
5147931d
JL
84862011-09-20 Juri Linkov <juri@jurta.org>
8487
8488 * info.el (Info-last-preorder): Visit last menu item only when
8489 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
8490
cf499a1a
JD
84912011-09-20 Julien Danjou <julien@danjou.info>
8492
8493 * password-cache.el (password-cache-remove): Remove entries even if the
8494 value is nil, so that password with a nil value (negative caching) is
8495 possible to invalidate.
8496
f84e2fe2
LM
84972011-09-20 Lawrence Mitchell <wence@gmx.li>
8498
8499 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
8500 all whitespace around breakpoint. (Bug#9553)
8501 (f90-find-breakpoint): Only break at whitespace inside a comment.
8502
78054a46
SM
85032011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
8504
8505 * minibuffer.el (completion-file-name-table): Keep track of errors.
8506 (completion-table-with-predicate): Handle the case where pred1 is nil.
8507 * pcomplete.el (pcomplete-completions-at-point): Simplify.
8508
345083b2
SM
85092011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8510
e24e27be
SM
8511 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
8512 (debugger-return-value): Signal an error if the debugging context does
8513 not await any return value.
8514
345083b2
SM
8515 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
8516 * image-mode.el (image-toggle-display-text)
8517 (image-toggle-display-image): Stay away from evil `intangible'.
8518
08d355e3
LL
85192011-09-19 Leo Liu <sdl.web@gmail.com>
8520
8521 * replace.el (occur-revert-arguments): Make it permanent-local.
8522 (occur-mode): Don't call font-lock-defontify.
8523
f01da43f
CY
85242011-09-19 Chong Yidong <cyd@stupidchicken.com>
8525
8526 * net/ldap.el (ldap-search-internal): Don't push empty search
8527 result (Bug#9508).
8528
b6072fa6
SM
85292011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8530
8531 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
8532
443d6696
MA
85332011-09-19 Michael Albinus <michael.albinus@gmx.de>
8534
8535 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
8536 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
8537
7cc6e154
JL
85382011-09-18 Juri Linkov <juri@jurta.org>
8539
8540 * buff-menu.el (Buffer-menu-mode-map):
8541 * dired.el (dired-mode-map):
8542 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
8543 (lisp-interaction-mode-map):
8544 * emacs-lisp/package.el (package-menu-mode-map):
8545 * epa.el (epa-key-list-mode-map):
8546 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
8547 (menu-bar-options-menu):
8548 * outline.el (outline-mode-menu-bar-map):
8549 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
8550 * vc/vc-dir.el (vc-dir-menu-map):
8551 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
8552 Capitalize non-function content words in menu item strings.
8553
8554 * dired.el (dired-mode-map): Add menu item for
8555 `image-dired-dired-toggle-marked-thumbs'.
8556
80302a81
JL
85572011-09-18 Juri Linkov <juri@jurta.org>
8558
8559 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
8560 to `isearch-case-fold-search' and restore its original value
8561 after the `isearch-mode' call.
8562
46c5cf66
JL
85632011-09-18 Juri Linkov <juri@jurta.org>
8564
8565 * progmodes/grep.el (grep-process-setup): Don't check code for 1
8566 because `zgrep' returns 1 for successful matches (bug#9226).
8567
d18b513b
JL
85682011-09-18 Juri Linkov <juri@jurta.org>
8569
8570 * info.el (Info-extract-menu-node-name): Check the second match
8571 for empty string (second test-case of bug#9528).
8572 (Info-last-preorder): Let-bind `Info-history' to nil to not add
8573 intermediate nodes to the history (first test-case of bug#9528).
8574
72753f87
JL
85752011-09-18 Juri Linkov <juri@jurta.org>
8576
8577 * info.el (Info-mode-syntax-table): New variable.
1154d12e 8578 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
72753f87 8579
c9384295
JL
85802011-09-18 Juri Linkov <juri@jurta.org>
8581
1154d12e
JB
8582 * info.el (Info-file-supports-index-cookies):
8583 Increment line-beginning-position's arg from 3 to 4 because makeinfo
8584 outputs one more line for long file names (bug#4142).
c9384295 8585
d473dce8
CY
85862011-09-18 Chong Yidong <cyd@stupidchicken.com>
8587
8588 * newcomment.el (comment-normalize-vars): If prompting for
8589 comment-start, set comment-start-skip too (Bug#8424).
8590
2176854d
JB
85912011-09-18 Johan Bockgård <bojohan@gnu.org>
8592
8593 * icomplete.el: Fix previous fix of Bug#5849.
8594 (icomplete-mode): Don't set completion-show-inline-help.
8595 (icomplete-minibuffer-setup): Set completion-show-inline-help
8596 locally during icompletion.
8597
3aace4e4
CY
85982011-09-18 Chong Yidong <cyd@stupidchicken.com>
8599
c940224f
CY
8600 * woman.el (woman2-process-escapes): Don't delete unrecognized
8601 escapes (Bug#7843).
8602
3aace4e4
CY
8603 * files.el (inhibit-first-line-modes-regexps): Add image files.
8604 (hack-local-variables-prop-line): Return nil for malformed
8605 prop-lines (Bug#9044).
8606
710dec63
MA
86072011-09-18 Michael Albinus <michael.albinus@gmx.de>
8608
8609 * net/tramp.el (top): Don't require 'shell.
8610 (tramp-methods): Fix docstring.
8611 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
8612 Return complete remote file name. Handle "smb" case.
8613 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
8614 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
8615
8616 * net/tramp-compat.el (top): Require 'shell.
8617
8618 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8619 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
8620 `tramp-current-host'.
8621 (tramp-get-remote-tmpdir): Remove.
8622
8623 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
8624 `tramp-tmpdir' entries.
8625 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
8626 (tramp-smb-handle-file-attributes): Ignore errors.
8627 (tramp-smb-wait-for-output): Check also for process end.
8628
5d5ac8ec
LMI
86292011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
8630
8631 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
8632 when sending QUIT (bug#9312).
8633
8c0f49f0
CY
86342011-09-17 Chong Yidong <cyd@stupidchicken.com>
8635
8636 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
8637 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
8638 occur-mode-display-occurrence.
8639 (occur-edit-mode): Add usage message.
8640 (occur-cease-edit): New command.
8641 (occur-after-change-function): Use text properties to find the
8642 position of the prefix text.
8643 (occur-engine): Set stickiness of prefix text properties.
8644
8f1383f7
GM
86452011-09-17 Glenn Morris <rgm@gnu.org>
8646
8647 * progmodes/etags.el (complete-tag):
8648 Fix call to completion-in-region. (Bug#9526)
8649
744ba0e3
JL
86502011-09-17 Juri Linkov <juri@jurta.org>
8651
8652 * textmodes/ispell.el (ispell-word): Add to the error message
8653 the word, ispell program name and current dictionary (bug#9121).
8654 (ispell-tex-arg-end): Capitalize "error" in the error message.
8655
d9bbf400
AS
86562011-09-17 Andreas Schwab <schwab@linux-m68k.org>
8657
8658 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
8659 check. (Bug#4251)
8660
8da11505
JL
86612011-09-17 Juri Linkov <juri@jurta.org>
8662
8663 * window.el (window-safe-min-height, window-safe-min-width):
8664 Fix typos (followup to bug#9522).
8665
a91adc7e
SJ
86662011-09-17 Sven Joachim <svenjoac@gmx.de>
8667
8668 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
8669
064f328a
EZ
86702011-09-16 Eli Zaretskii <eliz@gnu.org>
8671
8672 * simple.el (line-move): If goal-column is set, move by logical
8673 lines, not by display lines. (Bug#971)
8674 (next-line, previous-line, goal-column, line-move-visual): Doc fix
8675 to reflect the above change.
8676
e69df516
SM
86772011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8678
8679 * image.el (imagemagick-register-types): Use regexp-opt.
8680
cbb0f9ab
CY
86812011-09-15 Chong Yidong <cyd@stupidchicken.com>
8682
8683 * window.el (display-buffer-base-action): Rename from
8684 display-buffer-default-action. Make default value empty.
8685 (display-buffer-overriding-action): Convert to defvar.
8686 (display-buffer-fallback-action): New var.
8687
25322144
CY
86882011-09-15 Chong Yidong <cyd@stupidchicken.com>
8689
8690 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
8691 declaration.
8692 (package--add-to-archive-contents): If there is a duplicate entry
8693 with an older version, remove it.
8694 (package-menu-mark-delete, package-menu-mark-install)
8695 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
8696 (package-menu-mark-obsolete-for-deletion):
8697 Use package-menu-get-status instead of a regexp search.
25322144
CY
8698 (package-menu-get-status): Use tabulated-list-entry.
8699 (package-menu-mark-upgrades): New command.
d770725a 8700 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
8701 (package-menu-execute): Do installation before deletion.
8702 (package-menu-refresh, package-menu-execute): Use derived-mode-p
8703 instead of checking major-mode.
8704 (package-menu--find-upgrades): New function.
8705
7520339c
LMI
87062011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
8707
8708 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
8709 passwords in the log buffer.
65a046c4
LMI
8710 (smtpmail-process-filter): Update the process marker so that the
8711 "broken by peer" status message is inserted in the right place.
7520339c 8712
d3c30954
SM
87132011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
8714
3fe48822
SM
8715 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
8716 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
8717 bibtex-completion-at-point-function.
8718 (bibtex-completion-at-point-function): Use them.
8719
1b8b3954
SM
8720 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
8721
d3c30954
SM
8722 * mpc.el (mpc-constraints-tag-lookup): New function.
8723 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
8724 also to browser "album|playlist".
8725
72779976
JL
87262011-09-14 Juri Linkov <juri@jurta.org>
8727
8728 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
8729 (isearch-edit-string): Use length of `isearch-string' when
8730 `isearch-fail-pos' returns nil.
8731 (isearch-message): Remove duplicate code and call
8732 `isearch-fail-pos' with arg `t'.
8733
a0bf2bcd
CY
87342011-09-14 Chong Yidong <cyd@stupidchicken.com>
8735
17bb0a2d
CY
8736 * replace.el (occur-mode-goto-occurrence): Don't force using other
8737 window (Bug#9499).
8738
a0bf2bcd
CY
8739 * dired-aux.el (dired-do-chmod): Don't provide initial input.
8740
f678e0b6
MR
87412011-09-14 Martin Rudalics <rudalics@gmx.at>
8742
8743 * window.el (display-buffer-window): Remove.
8744 (display-buffer-record-window): Use help-setup window parameter
8745 instead of variable display-buffer-window.
8746 (display-buffer-function, special-display-buffer-names)
8747 (special-display-function): Mention help-setup parameter instead
8748 of display-buffer-window in doc-string.
d3c30954
SM
8749 * help.el (help-window-setup): New argument help-window.
8750 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
8751 Reword some messages.
8752 (with-help-window): Pass window used for displaying the buffer
8753 to help-window-setup. Don't set display-buffer-window.
8754
8e39b2e8
GM
87552011-09-13 Glenn Morris <rgm@gnu.org>
8756
8757 * emacs-lisp/debug.el (debugger-make-xrefs):
8758 Preserve point. (Bug#9462)
8759
85e9c04b
CY
87602011-09-13 Chong Yidong <cyd@stupidchicken.com>
8761
8762 * window.el (window-deletable-p): Use next-frame.
8763
1b36ed6a
MR
87642011-09-13 Martin Rudalics <rudalics@gmx.at>
8765
8766 * window.el (window-auto-delete): Remove.
8767 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 8768 dedication and previous buffers.
1b36ed6a
MR
8769 (switch-to-prev-buffer): Don't delete window.
8770 (delete-windows-on): Delete a window's frame if and only if the
8771 window is dedicated.
8772 (replace-buffer-in-windows): Delete buffer's window or frame if
8773 and only if window is dedicated.
8774 (quit-window): Handle quit-restore as before last change.
4d61f28d 8775 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 8776
ef8ef9fb
CY
87772011-09-13 Chong Yidong <cyd@stupidchicken.com>
8778
8779 * window.el (window-deletable-p): Never delete the last frame on a
8780 given terminal.
8781
b2cba41e
GM
87822011-09-13 Glenn Morris <rgm@gnu.org>
8783
8784 * help.el (describe-key-briefly): Copy previous standard-output change.
8785
51553db6 87862011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
8787
8788 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
8789
b7556719
GM
87902011-09-13 Glenn Morris <rgm@gnu.org>
8791
8792 * emacs-lisp/lisp-mode.el (lisp-indent-function):
8793 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
8794
64b51947
CY
87952011-09-12 Chong Yidong <cyd@stupidchicken.com>
8796
8797 * dired-aux.el (dired-mark-read-string): Don't return default
8798 value on empty input (Bug#9361).
8799 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
8800 Omit initial minibuffer contents.
8801 (dired-do-chmod): Signal an error on empty input.
8802 (dired-mark-read-string): Don't return default on empty input.
8803
8804 * files.el (file-modes-symbolic-to-number): Doc fix.
8805
393a301e
SM
88062011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8807
8808 * international/mule-cmds.el (ucs-completions): Remove.
8809 (read-char-by-name): Use complete-with-action instead; add metadata.
8810
fa5660f9
CY
88112011-09-11 Chong Yidong <cyd@stupidchicken.com>
8812
8813 * window.el (display-buffer--action-function-custom-type)
8814 (display-buffer--action-custom-type): New vars.
8815 (display-buffer-alist, display-buffer-default-action)
8816 (display-buffer-overriding-action): Add defcustom types.
8817
4a592f66
CY
8818 * frame.el (delete-other-frames): Doc fix (Bug#276).
8819
73d56dbd
LMI
88202011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8821
8822 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
8823
37ac18a3
CY
88242011-09-11 Chong Yidong <cyd@stupidchicken.com>
8825
8826 Change modes that used same-window-* vars to use switch-to-buffer.
8827
8828 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
8829 Use switch-to-buffer.
8830
8831 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
8832 (customize-browse, custom-buffer-create-other-window):
8833 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
8834
8835 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
8836 (Info-prev, Info-up, Info-speedbar-goto-node)
8837 (info-display-manual): Use switch-to-buffer.
8838 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
8839
8840 * mail/sendmail.el (mail): Use switch-to-buffer.
8841 (mail-recover): Use switch-to-buffer-other-window.
8842
8843 * cmuscheme.el (run-scheme, switch-to-scheme):
8844 * ielm.el (ielm):
8845 * shell.el (shell):
8846 * net/rlogin.el (rlogin):
8847 * net/telnet.el (telnet, rsh):
8848 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
8849
10195bd6
AS
88502011-09-11 Andreas Schwab <schwab@linux-m68k.org>
8851
8852 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
8853
b322f63a
LMI
88542011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8855
39d7fed6
LMI
8856 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
8857 so don't mention it (bug#9301).
ba5a81f1 8858 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 8859
ee0e9f11
LMI
8860 * faces.el (face-spec-set-match-display): Make `(type graphic)'
8861 match `x', `w32' and `ns', like the manual says (bug#9029).
8862
0b1c89c1 8863 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
8864 (process-kill-buffer-query-function): Mention the buffer name in
8865 the query.
0b1c89c1 8866
77549ea8
LMI
8867 * image-mode.el (image-next-line): The line parameter is mandatory
8868 (bug#9258).
8869
803ef892
LMI
8870 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
8871 which can be useful (bug#9301).
8872
12980837
LMI
8873 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
8874
91054f8f
LMI
8875 * subr.el (match-string): Mention that the current buffer should
8876 be the same as the search was done in (bug#9282).
8877
b322f63a
LMI
8878 * facemenu.el: Disable the remove-* commands if the mark isn't
8879 active (bug#9162).
8880
3199b96f
CY
88812011-09-10 Chong Yidong <cyd@stupidchicken.com>
8882
8883 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
8884 of display-buffer.
8885 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
8886
8887 * replace.el (occur-mode-goto-occurrence)
8888 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
8889 and display-buffer.
8890
8891 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
8892 display-buffer.
8893
8894 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
8895 special-display and same-window variables.
8896 (mail-other-window): Use switch-to-buffer-other-window.
8897 (mail-other-frame): USe switch-to-buffer-other-frame.
8898
393a301e
SM
8899 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
8900 Use display-buffer-other-frame.
3199b96f
CY
8901 (gdb-display-gdb-buffer): Use pop-to-buffer.
8902
8903 * progmodes/gud.el (gud-goto-info): Use info-other-window.
8904
8905 * progmodes/python.el: Don't set same-window-buffer-names.
8906
8907 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
8908
8909 * window.el (display-buffer-alist): Add *Python*.
8910
8319e0bf
CY
89112011-09-10 Chong Yidong <cyd@stupidchicken.com>
8912
8913 * window.el (display-buffer-alist): Add entry for buffers
8914 previously handled same-window-*.
8915 (display-buffer-alist, display-buffer-default-action)
8916 (display-buffer-overriding-action): Mark as risky.
8917 (display-buffer-alist): Document action function changes.
8918 (display-buffer--same-window-action)
8919 (display-buffer--other-frame-action): New variables.
8920 (switch-to-buffer, display-buffer-other-frame): Use them.
8921 (display-buffer): Rename reuse-frame entry to reusable-frames.
8922 (display-buffer-reuse-selected-window): Function deleted.
8923 (display-buffer-reuse-window): Handle reusable-frames alist entry.
8924 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
8925 (display-buffer-special): New function.
8926 (display-buffer--maybe-pop-up-frame-or-window): Rename from
8927 display-buffer-reuse-or-pop-window. Split off special-display
8928 part into display-buffer-special.
8929 (display-buffer-use-some-window): Don't perform any special
8930 pop-up-frames handling.
8931 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 8932 (display-buffer--maybe-same-window): Rename from
0d3ff375 8933 display-buffer-maybe-same-window.
8319e0bf 8934
919a69aa
CY
8935 * info.el: Don't set same-window-regexps.
8936 (info-setup): New function.
8937 (info-other-window, info): Call it.
8938
8939 * cus-edit.el: Don't set same-window-regexps.
8940 (customize-group): New argument.
8941 (customize-group-other-window): Use it.
8942 (customize-face, customize-face-other-window): Likewise.
8943 (custom-buffer-create-other-window): Use pop-to-buffer directly.
8944
8319e0bf
CY
8945 * net/rlogin.el:
8946 * net/telnet.el:
8947 * progmodes/gud.el: Don't set same-window-regexps.
8948
8949 * cmuscheme.el:
8950 * ielm.el:
8951 * shell.el:
8952 * mail/sendmail.el:
8953 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
8954
25173000
JL
89552011-09-10 Juri Linkov <juri@jurta.org>
8956
8957 * isearch.el (isearch-edit-string): Remove obsolete mention of
8958 `C-w' (`isearch-yank-word-or-char') from docstring.
8959 (isearch-query-replace): Fix typo in docstring (bug#9466).
8960
056e44ef
JL
89612011-09-10 Juri Linkov <juri@jurta.org>
8962
8963 * paren.el (show-paren-function): Don't show escaped parens.
8964 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
8965
c3760c17
EZ
89662011-09-10 Eli Zaretskii <eliz@gnu.org>
8967
8968 * mail/sendmail.el (mml-to-mime, mml-attach-file)
8969 (mm-default-file-encoding): Remove autoload forms, they are
8970 replaced with autoload cookies in mml.el and mm-encode.el.
8971 (mail-add-attachment): New command.
8972 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
8973 (mail-mode): Mention mail-insert-file and mail-add-attachment in
8974 the doc string.
8975 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
8976
fece895e
RT
89772011-09-10 Reuben Thomas <rrt@sc3d.org>
8978
e69df516
SM
8979 * simple.el (count-words-region): Use buffer if there's no region
8980 (bug#9429).
fece895e 8981
5e68ce4a
JL
89822011-09-09 Juri Linkov <juri@jurta.org>
8983
8984 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
8985 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
8986 (wdired-isearch-filter-read-only): New function. (Bug#6362)
8987
0a6b9622
AM
89882011-09-09 Alan Mackenzie <acm@muc.de>
8989
8990 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
8991 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
8992
14a29deb
EZ
89932011-09-09 Eli Zaretskii <eliz@gnu.org>
8994
8995 Fix for Savannah bug#9392.
8996 * simple.el (mail-encode-mml): New defvar.
8997
8998 * mail/rmail.el (mail-encode-mml): Add a defvar.
8999 (rmail-enable-mime-composing): Default to t.
9000 (rmail-forward): Use MIME method of forwarding only if both
9001 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
9002 Set mail-encode-mml non-nil if the MIME method was used.
9003
9004 * mail/sendmail.el (mml-to-mime): Add autoload form.
9005 (mail-encode-mml): Add a defvar.
9006 (mail-mode): Make mail-encode-mml buffer-local and initialize it
9007 to nil.
9008 (mail-send): If mail-encode-mml is non-nil, run the outgoing
9009 message through mml-to-mime, and reset mail-encode-mml to nil.
9010
28c45130
GM
90112011-09-09 Glenn Morris <rgm@gnu.org>
9012
9013 * woman.el (woman-if-body): When processing an .el block,
9014 do not delete the next .el block as well. (Bug#9447)
69f4b618 9015 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 9016
9b1c252e
MR
90172011-09-08 Martin Rudalics <rudalics@gmx.at>
9018
9019 * window.el (window-deletable-p): Make sure window is live before
9020 invoking window-prev-buffers.
9021
567457e3
LL
90222011-09-08 Leo Liu <sdl.web@gmail.com>
9023
9024 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
9025
97f05794
JL
90262011-09-08 Juri Linkov <juri@jurta.org>
9027
9028 * progmodes/compile.el (compilation-environment): Make it
9029 a defcustom (bug#8340).
9030
8b0874b5
MR
90312011-09-08 Martin Rudalics <rudalics@gmx.at>
9032
9033 * window.el (frame-auto-delete): Rename to window-auto-delete.
9034 Make it control auto-deletion of windows and/or frames.
9035 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 9036 for deleting window/frame. (Bug#9419)
8b0874b5
MR
9037 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
9038 Rewrite handling of case when window/frame can be deleted.
9039 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 9040 argument t. (Bug#9456)
8b0874b5 9041
4feb6e73
CY
90422011-09-07 Chong Yidong <cyd@stupidchicken.com>
9043
9044 * help-mode.el (help-mode): Restore autoload.
9045
91ab9c13
JL
90462011-09-07 Juri Linkov <juri@jurta.org>
9047
9048 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
9049 `compilation-environment'. Set buffer-local
9050 `compilation-environment' to `thisenv' later after (funcall mode).
9051 (Bug#8340)
9052
9053 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
9054 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
9055 instead of replacing its value. (Bug#8340)
9056
0527e251
JL
90572011-09-07 Juri Linkov <juri@jurta.org>
9058
9059 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
9060 based on text properties put by `grep-filter' instead of matching
9061 escape sequences.
9062 (grep-mode): Set buffer-local `compilation-error-screen-columns'
9063 to the value of `grep-error-screen-columns' (bug#9438).
9064
249f792c
JL
90652011-09-07 Juri Linkov <juri@jurta.org>
9066
9067 * simple.el (next-error-highlight, next-error-highlight-no-select):
9068 Doc fix (bug#9432).
9069
ff7271b9
OT
90702011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
9071
9072 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
9073 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
9074
183fc730
LL
90752011-09-07 Leo Liu <sdl.web@gmail.com>
9076
9077 * net/rcirc.el (rcirc-mode): Conditionally initialize
9078 rcirc-input-ring.
9079
77694924
SM
90802011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9081
9082 * emacs-lisp/find-func.el (find-function-C-source): Only set
9083 find-function-C-source-directory after checking that we found a source
9084 file there (bug#9440).
9085
d809b8eb
AM
90862011-09-06 Alan Mackenzie <acm@muc.de>
9087
9088 * isearch.el (isearch-other-meta-char): Wherever a key list is
9089 unread, "unread" the prefix arg, too. This fixes bug #8901.
9090
453de99f
OG
90912011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
9092
9093 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
9094
90439906
JL
90952011-09-05 Juri Linkov <juri@jurta.org>
9096
9097 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
9098
f62bd846
JL
90992011-09-05 Juri Linkov <juri@jurta.org>
9100
9101 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
9102 keeping point where processing of grep matches begins, and
9103 continue to delete remaining escape sequences from the same point.
9104 (grep-filter): Make leading zero optional in "0?1;31m" because
9105 git-grep emits "\033[1;31m" escape sequences unlike expected
9106 "\033[01;31m" as GNU Grep does (bug#9408).
9107 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
9108
045820ec
JL
91092011-09-05 Juri Linkov <juri@jurta.org>
9110
9111 * subr.el (y-or-n-p): Capitalize "yes".
9112
f5e29b9b
MA
91132011-09-04 Michael Albinus <michael.albinus@gmx.de>
9114
9115 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
9116 `tramp-cache-unload-hook' where appropriate.
9117 (tramp-methods): Rename `tramp-remote-sh' to
9118 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
9119 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
9120
9121 * net/tramp-sh.el (top): Don't require 'shell.
9122 (tramp-methods): Add `tramp-remote-shell' and
9123 `tramp-remote-shell-args' entries.
9124 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
9125 (tramp-sh-handle-shell-command): Remove.
9126 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9127 Use `tramp-remote-shell'.
9128
2784c434
CY
91292011-09-03 Chong Yidong <cyd@stupidchicken.com>
9130
393a301e 9131 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
9132 (sendmail-query-once): Save directly to send-mail-function.
9133 Update message-send-mail-function too.
9134
9135 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
9136
464cdf56
CS
91372011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9138
9139 * progmodes/python.el (python-mode-map): Use correct function to
9140 start python interpreter from menu-bar (as reported by Geert
9141 Kloosterman).
9142 (inferior-python-mode-map): Fix typo.
393a301e 9143 (python-shell-map): Remove.
464cdf56 9144
d37e5c87
DD
91452011-09-03 Deniz Dogan <deniz@dogan.se>
9146
9147 * net/rcirc.el (rcirc-print): Simplify code for
9148 rcirc-scroll-show-maximum-output. There is no need to walk
9149 through all windows to find the right one.
9150
f3ada0ee
CS
91512011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9152
9153 * help.el (help-return-method): Doc fix.
9154
1f3c99ca
MR
91552011-09-03 Martin Rudalics <rudalics@gmx.at>
9156
9157 * window.el (window-deletable-p): Don't return a non-nil value
9158 when there's a buffer that was shown in the window before.
9159 (Bug#9419)
393a301e
SM
9160 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9161 Set window's previous buffers to nil.
1f3c99ca 9162
a3cf097f
EZ
91632011-09-03 Eli Zaretskii <eliz@gnu.org>
9164
9165 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
9166 newline before and after the tag line, so it doesn't interfere
9167 with determining the paragraph direction of bidirectional text.
9168
3d03de90
LL
91692011-09-03 Leo Liu <sdl.web@gmail.com>
9170
9171 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
9172
c3313451
CY
91732011-09-02 Chong Yidong <cyd@stupidchicken.com>
9174
393a301e 9175 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
9176 (pop-to-buffer): Change interactive spec. Pass second argument
9177 directly to display-buffer.
9178 (display-buffer): Fix interactive spec. Use functionp to
9179 distinguish between a function and a list of functions.
9180
9181 * abbrev.el (edit-abbrevs):
9182 * arc-mode.el (archive-extract):
9183 * autoinsert.el (auto-insert):
9184 * bookmark.el (bookmark-bmenu-list):
9185 * files.el (find-file):
9186 * view.el (view-buffer):
9187 * progmodes/compile.el (compilation-goto-locus):
9188 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
9189
89894cd8
CY
91902011-09-02 Chong Yidong <cyd@stupidchicken.com>
9191
9192 * window.el (display-buffer-alist): Doc fix.
9193 (display-buffer): Add docstring. Don't treat
9194 display-buffer-default specially.
9195 (display-buffer-reuse-selected-window)
9196 (display-buffer-same-window, display-buffer-maybe-same-window)
9197 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9198 (display-buffer-pop-up-window)
9199 (display-buffer-reuse-or-pop-window)
9200 (display-buffer-use-some-window): New functions.
9201 (display-buffer-default-action): Use them.
393a301e 9202 (display-buffer-default): Delete.
89894cd8
CY
9203 (pop-to-buffer-1): Fix choice of actions.
9204
ae0bc9fb
SM
92052011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
9206
9207 * minibuffer.el (completion--insert-strings): Don't get confused by
9208 completion entries that end with an LF char.
9209
e9d90883
EZ
92102011-09-01 Eli Zaretskii <eliz@gnu.org>
9211
9212 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
9213
437014c8
CY
92142011-09-01 Chong Yidong <cyd@stupidchicken.com>
9215
9216 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
9217 (display-buffer-same-window, display-buffer-other-window):
9218 New functions.
437014c8
CY
9219 (pop-to-buffer-1): New function. Use the above.
9220 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 9221 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
9222
9223 * view.el (view-buffer-other-window, view-buffer-other-frame):
9224 Just use pop-to-buffer.
9225
a5e063d5
TV
92262011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9227
9228 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
9229
793d32bb
WH
92302011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
9231
9232 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
9233
d65e4c15
RS
92342011-08-31 Richard Stallman <rms@gnu.org>
9235
9236 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
9237 of the separation of rmail-view-buffer from rmail-buffer.
9238 If you say no to "replace original", the decrypt is in the
9239 view buffer. If you say yes, the decrypt goes into the
9240 rmail buffer also.
9241
f818cd2a
MR
92422011-08-31 Martin Rudalics <rudalics@gmx.at>
9243
9244 * window.el (display-buffer-window): Rewrite doc-string.
9245 (display-buffer-record-window): New function.
9246 (display-buffer-macro-specifiers)
9247 (display-buffer-even-window-sizes, display-buffer-set-height)
9248 (display-buffer-set-width, display-buffer-in-window)
9249 (display-buffer-reuse-window, display-buffer-split-specifiers)
9250 (display-buffer-side-specifiers, display-buffer-split-window-1)
9251 (display-buffer-split-window, display-buffer-split-atom-window)
9252 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9253 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
9254 (display-buffer-other-window-means-other-frame)
9255 (display-buffer-normalize-special)
9256 (display-buffer-normalize-default)
9257 (display-buffer-normalize-argument)
9258 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
9259 (display-buffer-normalize-specifiers, display-buffer-frame)
9260 (display-buffer-same-window, display-buffer-same-frame)
9261 (display-buffer-other-window)
9262 (display-buffer-same-frame-other-window)
9263 (display-buffer-other-frame, pop-to-buffer-same-window)
9264 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
9265 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
9266 (switch-to-buffer-same-frame)
9267 (switch-to-buffer-other-window-same-frame)
9268 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
9269 (display-buffer-alist-set-1, display-buffer-alist-set-2)
9270 (display-buffer-alist-set): Remove.
9271 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
9272 (special-display-regexps, special-display-function):
9273 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
9274 parameter.
9275 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
9276 (special-display-frame-alist, special-display-popup-frame)
9277 (same-window-buffer-names, same-window-regexps, same-window-p)
9278 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
9279 (split-window-preferred-function, split-height-threshold)
9280 (split-width-threshold, window-splittable-p)
9281 (split-window-sensibly, window--try-to-split-window)
9282 (window--frame-usable-p, even-window-heights)
9283 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
9284 (window--display-buffer-2, display-buffer-other-frame):
9285 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
9286 (display-buffer-default, display-buffer-assq-regexp): New functions.
9287 (display-buffer-alist): Rewrite doc-string.
9288 (display-buffer-default-action)
9289 (display-buffer-overriding-action): New variables.
9290 (display-buffer, switch-to-buffer): Rewrite.
9291 (pop-to-buffer): Restore Emacs 23 behavior but use
9292 window-normalize-buffer-to-display.
9293 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
9294 Restore Emacs 23 behavior but use
9295 window-normalize-buffer-to-switch-to.
9296 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
9297 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
9298 Rewrite using Emacs 23 options.
f818cd2a 9299
5bc3b51d
MA
93002011-08-31 Michael Albinus <michael.albinus@gmx.de>
9301
9302 * net/tramp.el (tramp-root-regexp): Remove.
9303 (tramp-completion-file-name-regexp-unified)
9304 (tramp-completion-file-name-regexp-separate)
9305 (tramp-completion-file-name-regexp-url): Don't use leading volume
9306 letter on win32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
9307 (tramp-drop-volume-letter): Simplify definition.
9308 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 9309
b1a4f8e1
SM
93102011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9311
9312 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
9313 (bug#9356).
9314
5664fa7b
RT
93152011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
9316
b1a4f8e1 9317 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 9318
9a45d6c3
JL
93192011-08-29 Juri Linkov <juri@jurta.org>
9320
9321 * isearch.el (isearch-done): Don't display message "Mark saved"
9322 when arg `edit' is non-nil to prevent its flicker in the echo area.
9323
fb87e0fb
CY
93242011-08-28 Chong Yidong <cyd@stupidchicken.com>
9325
9326 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
9327 obsolete packages for deletion.
9328
09ac1c2a
CS
93292011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
9330
9331 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 9332 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
9333 view-mode from help-mode.
9334 (help-xref-override-view-map): Remove.
9335 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
9336 view-mode is not used anymore.
9337
7a1ff57f
CY
93382011-08-28 Chong Yidong <cyd@stupidchicken.com>
9339
9340 * server.el (server-port): Doc fix.
9341
b9696605
CY
9342 * cus-theme.el (custom-theme-choose-mode): Inherit from
9343 special-mode (Bug#9124).
9344 (custom-theme-choose-mode-map): Add special-mode to parent.
9345
ef8cdf8c
AM
93462011-08-28 Alan Mackenzie <acm@muc.de>
9347
9348 * progmodes/cc-fonts.el
9349 (c-make-font-lock-BO-decl-search-function): New function.
9350 (c-basic-matchers-after - "Fontify the clauses after various
9351 keywords"): Extract the three keyword lists for the 3 erroneous
9352 constructs from the list of four, and use the new function above
9353 in place of an old one.
9354
27de4e20
DD
93552011-08-28 Deniz Dogan <deniz@dogan.se>
9356
9357 * net/rcirc.el (rcirc-insert-prev-input)
9358 (rcirc-insert-next-input): Remove unused argument.
9359
356a3681
SM
93602011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9361
9362 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
9363
3fc9b218
AM
93642011-08-27 Alan Mackenzie <acm@muc.de>
9365
9366 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
9367 handle function pointer parameters properly.
9368
538a061c
MR
93692011-08-27 Martin Rudalics <rudalics@gmx.at>
9370
9371 * window.el (display-buffer-reuse-window): Fix case where
9372 selected window was reused with non-nil OTHER-WINDOW argument.
9373 (Bug#9381)
9374
35b1c40c
DD
93752011-08-27 Deniz Dogan <deniz@dogan.se>
9376
9377 * net/rcirc.el (rcirc-check-auth-status): Adding support for
9378 oftc's NickServ messages.
9379
2f6a3e79
GM
93802011-08-27 Glenn Morris <rgm@gnu.org>
9381
9382 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
9383
7254299e
CY
93842011-08-26 Chong Yidong <cyd@stupidchicken.com>
9385
9386 * emacs-lisp/package.el (package-install): Call package-initialize
9387 if called interactively.
9388
f8ccf167
LL
93892011-08-26 Leo Liu <sdl.web@gmail.com>
9390
9391 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
9392
3e8cd5ce
JL
93932011-08-25 Juri Linkov <juri@jurta.org>
9394
9395 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
9396 `search-whitespace-regexp' (bug#9364).
9397
93eb7113
JL
93982011-08-25 Juri Linkov <juri@jurta.org>
9399
9400 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
9401 `regexp-search-ring' to their global values to protect from
9402 updating by `read-from-minibuffer' (bug#9185).
9403
f65d1611
JL
94042011-08-25 Juri Linkov <juri@jurta.org>
9405
9406 * textmodes/ispell.el (ispell-command-loop): Add newline
9407 at the end of the "Use option `i'..." line.
9408
f1cf7a31
JL
94092011-08-25 Juri Linkov <juri@jurta.org>
9410
9411 * battery.el (display-battery-mode): If `battery-status-function'
9412 or `battery-mode-line-format' is nil, display the message and set
9413 `display-battery-mode' to nil (bug#9363).
9414
0c95fcf7
EZ
94152011-08-25 Eli Zaretskii <eliz@gnu.org>
9416
9417 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
9418 bidi-string-mark-left-to-right; they are unnecessary now.
9419
a2ebe600
DD
94202011-08-25 Deniz Dogan <deniz@dogan.se>
9421
9422 * net/quickurl.el: Documentation typo fixes.
9423
e4ed06f1
CY
94242011-08-25 Chong Yidong <cyd@stupidchicken.com>
9425
9426 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
9427
e5f1c99e
GM
94282011-08-25 Glenn Morris <rgm@gnu.org>
9429
b2948976
GM
9430 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
9431
e5f1c99e
GM
9432 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
9433 (smtpmail-via-smtp): Handle nil response from smtp.
9434
f22f4808
JL
94352011-08-24 Juri Linkov <juri@jurta.org>
9436
9437 * proced.el (proced-marked): Inherit from `error' instead of
9438 `font-lock-warning-face'.
9439
9440 * ibuffer.el (ibuffer-marked-face): Change default face from
9441 `font-lock-warning-face' to `warning'.
9442 (ibuffer-deletion-face): Change default face from
9443 `font-lock-type-face' to `error'.
9444
9445 * battery.el (battery-update): Use the face `error' instead of
9446 `font-lock-warning-face' (bug#6117).
9447
6a93965e
JL
94482011-08-24 Juri Linkov <juri@jurta.org>
9449
9450 * faces.el (success): Change face color from "Green3" to
9451 "ForestGreen" on light background (bug#9353).
9452
1ed43b09
CY
94532011-08-24 Chong Yidong <cyd@stupidchicken.com>
9454
5664fa7b
RT
9455 * window.el (quit-window): Rename from quit-restore-window.
9456 Use same arglist as old quit-window.
1ed43b09
CY
9457 (frame-auto-delete): Doc fix.
9458
9459 * view.el (view-mode-exit): Use quit-window.
9460
11dcdbb2
JL
94612011-08-24 Juri Linkov <juri@jurta.org>
9462
9463 * isearch.el (isearch-ring-adjust1): Start visiting previous
9464 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
9465 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
9466 for empty search string (when the last search string is reused
9467 automatically) to adjust the isearch ring to the last element and
9468 prepare the correct index for further M-p commands (bug#9185).
9469
de62b4df
KH
94702011-08-24 Kenichi Handa <handa@m17n.org>
9471
9472 * international/ucs-normalize.el: If decomposition property of
9473 CHAR is the default one (i.e. a list of CHAR itself), treat it as
9474 nil.
9475 (nfd, nfkd): Likewise.
9476
963b492b
SM
94772011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
9478
9479 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
9480 from process filters aren't reliably transmitted to the surrounding
9481 accept-process-output.
9482 (mpc-proc-check): New function.
9483 (mpc-proc-sync): Use it (bug#8293)
9484
93b6b5e1
SM
94852011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9486
9487 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
9488 Add compatibility functions (bug#9313).
9489
bca633fb
EZ
94902011-08-23 Eli Zaretskii <eliz@gnu.org>
9491
b177498a
EZ
9492 * cus-start.el (all): Add entry for bidi-paragraph-direction.
9493
6df6ae42 9494 * international/uni-bidi.el: Regenerate.
bca633fb 9495
0902a04e
KH
94962011-08-23 Kenichi Handa <handa@m17n.org>
9497
9498 * international/charprop.el:
9499 * international/uni-bidi.el:
9500 * international/uni-category.el:
9501 * international/uni-combining.el:
9502 * international/uni-comment.el:
9503 * international/uni-decimal.el:
9504 * international/uni-decomposition.el:
9505 * international/uni-digit.el:
9506 * international/uni-lowercase.el:
9507 * international/uni-mirrored.el:
9508 * international/uni-name.el:
9509 * international/uni-numeric.el:
9510 * international/uni-old-name.el:
9511 * international/uni-titlecase.el:
9512 * international/uni-uppercase.el: Regenerate.
9513
3bbf23bc
MR
95142011-08-23 Martin Rudalics <rudalics@gmx.at>
9515
9516 * help.el (help-window-setup): Fix message displayed when other
9517 window is reused. (Bug#9341)
9518
b3fd59bd
SM
95192011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9520
1802e444
SM
9521 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
9522 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
9523
b3fd59bd
SM
9524 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
9525 Mark obsolete.
9526 * shell.el (shell-parse-pcomplete-arguments): New function.
9527 (shell-completion-vars): Use it instead (bug#9160).
9528
4eb61348
SM
95292011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
9530
867cab74
SM
9531 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
9532 strings and comments (bug#9333).
9533
4eb61348
SM
9534 * emacs-lisp/debug.el (debug-arglist): New function.
9535 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
9536 (debug-on-entry-1): Handle interpreted closures (bug#9120).
9537
262a1439
JL
95382011-08-22 Juri Linkov <juri@jurta.org>
9539
56ee679c
JL
9540 * progmodes/compile.el (compilation-mode-font-lock-keywords):
9541 Revert regexp that highlights output switches to its old
9542 pre-2010-10-28 value and remove one `?' from it (bug#9319).
9543
262a1439
JL
9544 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
9545 to check for empty output (bug#9226).
9546
f13f86fb
CY
95472011-08-22 Chong Yidong <cyd@stupidchicken.com>
9548
9549 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
9550 symbol-constituent as the default, as that stops font-lock from
9551 working properly (Bug#8843).
9552
c65c9622
LMI
95532011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9554
9555 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
9556 `coding-system-for-*' around the process open call to avoid
9557 auth-source side effects.
e7f2c178 9558 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
9559 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
9560 probe hangs.
c65c9622 9561
23a8a5ab
CY
95622011-08-21 Chong Yidong <cyd@stupidchicken.com>
9563
ff98b2dd
CY
9564 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
9565
23a8a5ab
CY
9566 * emacs-lisp/find-func.el (find-function-noselect): New arg
9567 lisp-only.
9568
9569 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
9570 signal an error for built-in functions (Bug#6664).
9571
f5e3c598
LMI
95722011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9573
9574 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
9575 (smtpmail-try-auth-methods): Use it.
9576
a3f2468a
CY
95772011-08-21 Chong Yidong <cyd@stupidchicken.com>
9578
2c34e8da
CY
9579 * font-lock.el (font-lock-fontify-region)
9580 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
9581 (font-lock-default-unfontify-buffer)
9582 (font-lock-default-fontify-region)
9583 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
9584
b3fd59bd
SM
9585 * progmodes/compile.el (compilation-error-properties):
9586 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
9587 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
9588 `ant' regexp.
ee31aabc 9589
a3f2468a
CY
9590 * net/browse-url.el (browse-url-firefox): Don't call
9591 browse-url-firefox-sentinel unless using -remote (Bug#9328).
9592
8e999f70
GM
95932011-08-20 Glenn Morris <rgm@gnu.org>
9594
c21a496a
GM
9595 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
9596
59ee0542
GM
9597 * tutorial.el (tutorial--default-keys): Update some default bindings.
9598
8e999f70
GM
9599 * files.el (hack-local-variables): Fully ignore case for "mode:".
9600
e3715033
AM
96012011-08-20 Alan Mackenzie <acm@muc.de>
9602
9603 Resolve invalid use of a regexp in regexp-opt.
9604
4d61f28d
JB
9605 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
9606 detection for a java annotation.
e3715033 9607
4d61f28d 9608 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
9609 detection for a java annotation.
9610
4d61f28d
JB
9611 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
9612 handling for java.
e3715033
AM
9613 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
9614
04ed2e9c
CY
96152011-08-20 Chong Yidong <cyd@stupidchicken.com>
9616
9617 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
9618 (Bug#9274).
9619
826cee64
AM
96202011-08-20 Alan Mackenzie <acm@muc.de>
9621
58179cce 9622 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
9623 such a construct. Mainly for when jit-lock etc. starts a chunk
9624 here.
9625
58179cce 9626 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 9627 variable.
58179cce 9628 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
9629 c-make-font-lock-search-function.
9630 (c-make-font-lock-search-function): Use the above function.
9631 (c-make-font-lock-context-search-function): New function.
9632 (c-cpp-matchers): Enhance the preprocessor expression case with
9633 the above function
9634 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
9635 which takes an expression.
9636
9637 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
9638
13009bd8
MR
96392011-08-20 Martin Rudalics <rudalics@gmx.at>
9640
9641 * window.el (display-buffer-reuse-window)
9642 (display-buffer-pop-up-window): Don't reuse or split a side
9643 window.
9644
9234ff7f
GM
96452011-08-19 Glenn Morris <rgm@gnu.org>
9646
9647 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 9648 Downcase "Mode:". (Bug#9331)
9234ff7f 9649
f635daa1
CY
96502011-08-18 Chong Yidong <cyd@stupidchicken.com>
9651
9652 * international/characters.el: Add L and R categories.
9653
9654 * subr.el (bidi-string-mark-left-to-right): Rename from
9655 string-mark-left-to-right. Use category search.
9656
9657 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
9658
bc987f8b
JL
96592011-08-18 Juri Linkov <juri@jurta.org>
9660
9661 * faces.el (error, warning, success): New faces with definitions
9662 copied from old default values of `font-lock-warning-face',
9663 `compilation-warning', `compilation-info' (bug#6117).
9664
9665 * font-lock.el (font-lock-warning-face): Inherit from `error'.
9666
9667 * progmodes/compile.el (compilation-error): Inherit from `error'.
9668 (compilation-warning): Inherit from `warning'.
9669 (compilation-info): Inherit from `success'.
9670
9671 * dired.el (dired-marked): Inherit from `warning'.
9672 (dired-flagged): Inherit from `error'.
9673
57173b96
LMI
96742011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9675
3e79eb87
LMI
9676 * mail/smtpmail.el (auth-source): Require to avoid problems with
9677 binding variables (bug#9298). Also clean up some unused
9678 autoloads.
9679
b3fd59bd
SM
9680 * net/network-stream.el (network-stream-open-starttls):
9681 Support using starttls.el without using gnutls-cli.
57173b96 9682
02b404de
JL
96832011-08-17 Juri Linkov <juri@jurta.org>
9684
9685 * progmodes/grep.el (rgrep): Handle the case when
9686 `grep-find-command' is a cons cell (bug#9278).
9687
8c9177f2
MR
96882011-08-17 Martin Rudalics <rudalics@gmx.at>
9689
9690 * window.el (display-buffer-pop-up-frame): Run frame creation
9691 function with BUFFER current (as special-display-popup-frame
9692 does). Reported by Drew Adams.
9693
3644a0ab
DU
96942011-08-17 Daiki Ueno <ueno@unixuser.org>
9695
9696 * epa-mail.el: Simplify GnuPG group expansion using
9697 epg-expand-group.
9698 (epa-mail-group-alist, epa-mail-group-modtime)
9699 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
9700 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
9701 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
9702 Remove.
9703
5e617bc2 97042011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
9705
9706 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
9707
9c4aeabf
AM
97082011-08-16 Alan Mackenzie <acm@muc.de>
9709
9710 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
9711 Correct, to avoid the inside of macros.
9712
3a99bf64
RS
97132011-08-16 Richard Stallman <rms@gnu.org>
9714
04963aa8
RS
9715 * epa-mail.el: Handle GnuPG group definitions.
9716 (epa-mail-group-alist, epa-mail-group-modtime)
9717 (epa-mail-gnupg-conf-file): New variables.
9718 (epa-mail-parse-groups, epa-mail-sync-groups)
9719 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
9720 (epa-mail-expand-recipients): New functions.
9721 (epa-mail-encrypt): Call epa-mail-expand-recipients.
9722
177549d0
RS
9723 * mail/rmail.el (rmail-epa-decrypt): New command.
9724
fe38beef
RS
9725 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
9726 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
9727 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
9728 (epa-decrypt-armor-in-region): Make error message clearer.
9729
934eacb9
SM
97302011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
9731
9732 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
9733 and "a2b" to "ab" for `prefix'.
9734
d024fb4e
CY
97352011-08-14 Chong Yidong <cyd@stupidchicken.com>
9736
9737 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
9738 filter groups.
de148fee
CY
9739 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
9740 Fourquet (Bug#8804).
d024fb4e 9741
62f1ca49
JB
97422011-08-12 Juanma Barranquero <lekktu@gmail.com>
9743
9744 * startup.el (argi): Declare as global variable (bug#9275).
9745
9ccaaa4b
CY
97462011-08-12 Chong Yidong <cyd@stupidchicken.com>
9747
9748 * subr.el (string-mark-left-to-right): Search the entire string
9749 for RTL script, not just the terminating character. Doc fix.
9750
a3dae87a
SM
97512011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
9752
6cd18349
SM
9753 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
9754 New function.
9755 (js--regexp-literal, js-syntax-propertize-function): Remove.
9756 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
9757 (js-mode-map): Don't rebind electric keys.
9758 (js-insert-and-indent): Remove.
9759 (js-mode): Setup electric-layout and electric-indent instead.
9760
a3dae87a
SM
9761 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
9762
9d5cb631
DU
97632011-08-12 Daiki Ueno <ueno@unixuser.org>
9764
9765 * epa.el (epa-progress-callback-function): Fix the logic of
9766 displaying progress.
9767 * epa-file.el (epa-file-insert-file-contents): Make progress
9768 display more user-friendly.
9769 (epa-file-write-region): Ditto.
9770
3e26a4a2
CY
97712011-08-10 Chong Yidong <cyd@stupidchicken.com>
9772
9773 * subr.el (string-mark-left-to-right): New function.
9774
9775 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
9776 Use string-mark-left-to-right.
9777 (list-buffers-noselect): Caller changed.
9778
a3dae87a
SM
9779 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9780 Use string-mark-left-to-right.
3e26a4a2
CY
9781 (tabulated-list-print): Recenter after moving point.
9782
ac8cf6e6
JL
97832011-08-10 Juri Linkov <juri@jurta.org>
9784
9785 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
9786 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
9787 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
9788
8d96c9a4
CY
97892011-08-09 Chong Yidong <cyd@stupidchicken.com>
9790
9791 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
9792 (Bug#7554).
9793
7be1c708 97942011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
9795
9796 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
9797 character. (Bug#6594)
9798
37e11a63
CY
97992011-08-08 Chong Yidong <cyd@stupidchicken.com>
9800
839dde57
CY
9801 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
9802 (image-dired--with-db-file): New macro.
9803 (image-dired-write-tags, image-dired-remove-tag)
9804 (image-dired-create-gallery-lists, image-dired-write-comments)
9805 (image-dired-get-comment, image-dired-mark-tagged-files)
9806 (image-dired-list-tags, image-dired-gallery-generate): Use it.
9807 (image-dired-gallery-generate): Use insert-file-contents.
9808
37e11a63
CY
9809 * time.el (display-time-world-list, display-time-world-display):
9810 * time-stamp.el (time-stamp-string):
9811 * vc/add-log.el (add-change-log-entry): Use setenv instead of
9812 set-time-zone-rule (Bug#7337).
9813
0b4946c4
DU
98142011-08-08 Daiki Ueno <ueno@unixuser.org>
9815
9816 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
9817 (epg-error-to-string, epg-errors-to-string): New function.
9818 (epg-wait-for-completion): Reverse errors list.
9819 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
9820 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
9821 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
9822 (epg-sign-keys, epg-generate-key-from-file)
9823 (epg-generate-key-from-string): Format errors by using
9824 epg-errors-to-string (bug#9255).
9825 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
9826
75bfc667
JL
98272011-08-07 Juri Linkov <juri@jurta.org>
9828
9829 * faces.el (list-faces-display): Remove extra angle bracket
9830 from `help-mode-map'.
9831
9832 * info.el (Info-history-toc-nodes): Doc fix.
9833
9834 * longlines.el (longlines-mode): Doc fix.
9835
673e08bb
SM
98362011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
9837
4640dd88
SM
9838 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
9839 of statements and in a few more cases (bug#9183).
9840
673e08bb
SM
9841 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
9842 New functions.
9843 (cl-transform-lambda): Use them (bug#9239).
9844
89b3f019
MR
98452011-08-05 Martin Rudalics <rudalics@gmx.at>
9846
9847 * window.el (display-buffer-same-window)
9848 (display-buffer-same-frame, display-buffer-other-window)
9849 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
9850 (pop-to-buffer-other-window)
9851 (pop-to-buffer-same-frame-other-window)
9852 (pop-to-buffer-other-frame): Make them defuns.
9853 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
9854
640c8776
SM
98552011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
9856
9857 * subr.el (make-composed-keymap): Move from C. Change calling
9858 convention, and improve docstring to bring attention to a subtle point.
9859 * minibuffer.el (completing-read-default): Adjust accordingly.
9860
63648a95
MA
98612011-08-03 Michael Albinus <michael.albinus@gmx.de>
9862
9863 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
9864 (tramp-open-shell): Use `tramp-shell-quote-argument'.
9865
9866 * net/trampver.el: Update release number.
9867
b796c9b7
SM
98682011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
9869
9870 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
9871 "in" (bug#9190).
9872
2239d7d5
LMI
98732011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
9874
e07dd7c3
LMI
9875 * mail/sendmail.el (sendmail-query-once): Restore the current
9876 buffer after querying (bug#9074).
9877
0e6a2bd7
LMI
9878 * dired.el (dired-flagged): Use different faces for marked and
9879 flagged files (bug#6117).
9880
ce887515
LMI
9881 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
9882 (bug#4433).
9883
92f2affc
LMI
9884 * ido.el (ido-mode): Switch off the message if called
9885 non-interactively.
9886
57d5aff0
LMI
9887 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
9888 before 587, since it appears that that's more likely to work for
9889 more people.
9890
98cd6c18 9891 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 9892 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
9893 exist.
9894
b96dec83
LMI
9895 * info.el: Remove the `Info-beginning-of-buffer' function
9896 (bug#8325).
9897
b796c9b7
SM
9898 * net/network-stream.el (network-stream-open-starttls):
9899 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 9900
d90e2ea0
MR
99012011-08-01 Martin Rudalics <rudalics@gmx.at>
9902
9903 * window.el (display-buffer-in-window): Don't set dedicated status
9904 of window here (Bug#9215).
9905 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9906 (display-buffer-pop-up-side-window)
b796c9b7 9907 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 9908
cca09170
SM
99092011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
9910
9911 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
9912 before binding generated-autoload-file.
9913
027b979c
DD
99142011-08-01 Deniz Dogan <deniz@dogan.se>
9915
9916 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
9917
3c7ee4f3
MA
99182011-07-30 Michael Albinus <michael.albinus@gmx.de>
9919
9920 Sync with Tramp 2.2.2.
9921
9922 * net/trampver.el: Update release number.
9923
2cc8e51a
JL
99242011-07-30 Juri Linkov <juri@jurta.org>
9925
9926 * dired-aux.el (dired-touch-initial): Remove function.
9927 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
9928 current time, and `default' to the last modification time of the
9929 current marked file (bug#6887).
9930
a514d856
JM
99312011-07-28 Jose E. Marchesi <jemarch@gnu.org>
9932
9933 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 9934 numeric argument to read-number (bug#9163).
a514d856 9935
8a7eddd7
MA
99362011-07-27 Michael Albinus <michael.albinus@gmx.de>
9937
9938 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
9939 connection process, it could be nil.
9940
1ddd96f5
LL
99412011-07-27 Leo Liu <sdl.web@gmail.com>
9942
9943 Simplify url handling in rcirc-mode.
9944
9945 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
9946 (rcirc-browse-url-at-mouse): Remove.
9947 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
9948
b248a85d
AM
99492011-07-26 Alan Mackenzie <acm@muc.de>
9950
9951 Fontify bitfield declarations properly.
9952
9953 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
9954 (c-symbol-chars): Now exported as a lang variable.
9955 (c-not-primitive-type-keywords): New lang variable.
9956
9957 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
9958 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 9959 parsed as a bitfield declaration.
b248a85d 9960
b796c9b7
SM
9961 * progmodes/cc-engine.el (c-beginning-of-statement-1):
9962 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
9963 (c-punctuation-in): New function.
9964 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
9965 declarations properly.
9966
68575ab0
UJ
99672011-07-26 Ulf Jasper <ulf.jasper@web.de>
9968
9969 * calendar/icalendar.el (icalendar--all-events): Take care of
9970 multiple vcalendars in a single file.
b796c9b7 9971 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 9972
0f0a88b9
DD
99732011-07-25 Deniz Dogan <deniz@dogan.se>
9974
9975 * image.el (insert-image): Clarifying docstring.
9976
0b3f36df
MA
99772011-07-24 Michael Albinus <michael.albinus@gmx.de>
9978
9979 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
9980 `tramp-send-command-and-check' if there is no error.
9981 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
9982
a9901f61
AM
99832011-07-22 Alan Mackenzie <acm@muc.de>
9984
9985 Prevent cc-langs.elc being loaded at run time.
9986
9987 * progmodes/cc-mode.el: Remove two autoload forms which loaded
9988 cc-langs.
9989
4d61f28d 9990 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
9991 "(require 'cc-langs)". Quote a form so it will evaluate at
9992 (cc-mode's) compilation time.
9993
11d074b2
MA
99942011-07-22 Michael Albinus <michael.albinus@gmx.de>
9995
9996 * net/tramp.el (tramp-file-name-handler): Avoid recursive
9997 loading. (Bug#9114)
9998
938b94c8
MR
99992011-07-21 Martin Rudalics <rudalics@gmx.at>
10000
10001 * window.el (display-buffer-pop-up-window)
10002 (display-buffer-pop-up-side-window)
10003 (display-buffer-in-side-window): Call display-buffer-set-height
10004 and display-buffer-set-width after setting the new window's
b796c9b7 10005 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 10006
bfa4f190
SS
100072011-07-20 Sam Steingold <sds@gnu.org>
10008
10009 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
10010 (etags-tags-included-tables): Call `convert-standard-filename' on
10011 the file names contained in TAGS so that windows Emacs can handle
10012 TAGS files created by cygwin ctags.
10013
8ca42262
LMI
100142011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
10015
10016 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
10017 which apparently didn't work.
10018
5db2afd2 100192011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 10020
5db2afd2
RW
10021 * proced.el (proced-send-signal): For *Marked Processes* buffer
10022 put point at beginning of buffer.
10023
92e15d10
SB
100242011-07-19 Stephen Berman <stephen.berman@gmx.net>
10025
10026 * proced.el (proced-format): Make header lines align with the text
10027 (bug#1779).
10028
1bfd59e5
LMI
100292011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10030
10031 * view.el (view-buffer): Allow running in `special' modes if we're
10032 visiting a file (bug#8615).
10033
f5aae37c
MR
100342011-07-19 Martin Rudalics <rudalics@gmx.at>
10035
10036 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
10037 (display-buffer-alist-set-1, display-buffer-alist-set-2):
10038 New functions.
f5aae37c
MR
10039 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
10040 more accurately.
10041
bf2c1571
AM
100422011-07-18 Alan Mackenzie <acm@muc.de>
10043
10044 Fontify declarators properly when, e.g., a jit-lock chunk begins
10045 inside a declaration.
10046
10047 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
10048
b796c9b7
SM
10049 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10050 New function.
bf2c1571
AM
10051 (c-complex-decl-matchers): Insert reference to
10052 c-font-lock-enclosing-decls.
10053
10054 * progmodes/cc-engine.el (c-backward-single-comment):
10055 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
10056 to nil around calls to (forward-comment -1).
10057
4e190b80
LMI
100582011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10059
12dc863d
LMI
10060 * image.el (put-image): Doc typo fix.
10061
a762e966
LMI
10062 * progmodes/etags.el (tags-search): Doc typo fix.
10063
4e190b80
LMI
10064 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
10065 password if we get errors 550 to 554.
10066
f019fb21
LMI
100672011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10068
b796c9b7 10069 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 10070
81746738
LMI
10071 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
10072 indentation character (bug#6380).
10073
3ee3a1b5
LMI
10074 * files.el (buffer-offer-save): Made permanently local (bug#6241).
10075
c82f64de
LMI
10076 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
10077 to clarify what the problem is (bug#4291).
10078
f019fb21
LMI
10079 * simple.el (current-kill): Clarify what
10080 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
10081 (auto-fill-mode): Document `auto-fill-function' in relation to
10082 `auto-fill-mode' (bug#2470).
f019fb21 10083
0794775d
LM
100842011-07-16 Lawrence Mitchell <wence@gmx.li>
10085
10086 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
10087 method if slot is read-only (bug#9035).
10088
be39b8cc
MR
100892011-07-16 Martin Rudalics <rudalics@gmx.at>
10090
b796c9b7 10091 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 10092 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
10093 selected before, see discussion of (Bug#8615), (Bug#6954).
10094 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 10095
6ccf7859
GM
100962011-07-15 Glenn Morris <rgm@gnu.org>
10097
10098 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 10099 Respect help-form.
6ccf7859 10100
87e86684
LM
101012011-07-09 Lawrence Mitchell <wence@gmx.li>
10102
10103 * net/gnutls.el (gnutls-min-prime-bits): New variable.
10104 (gnutls-negotiate): Use it.
10105
d6066239
LMI
101062011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10107
b796c9b7
SM
10108 * net/gnutls.el (gnutls-negotiate):
10109 Upcase `gnutls-algorithm-priority'.
d6066239 10110
bd23ebc0
GM
101112011-07-15 Glenn Morris <rgm@gnu.org>
10112
c65bca65
GM
10113 * jka-compr.el (jka-compr-verbose): Move from here...
10114 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
10115 Add missing :version tag.
10116 * info.el: No need to require jka-compr when compiling.
bd23ebc0 10117
478615cc
LMI
101182011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10119
7b41decb
LMI
10120 * net/gnutls.el (gnutls-algorithm-priority): New variable.
10121 (gnutls-negotiate): Use it.
10122
dbc44fcd
LMI
10123 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
10124
06789f97
LMI
10125 * info.el (Info-beginning-of-buffer): New command.
10126 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
10127 announcing `b' as the key (bug#8325).
ab896c37 10128 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 10129
c39da690
LMI
10130 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
10131
3aa5f34b
LMI
10132 * international/mule-cmds.el
10133 (describe-specified-language-support): Make the error message
10134 clearer (bug#8905).
10135
4bf0979f
LMI
10136 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
10137
478615cc
LMI
10138 * isearch.el (isearch-barrier): Add a doc string, since it's
10139 mentioned in a function doc string (bug#8678).
10140
75c68aa1
MR
101412011-07-15 Martin Rudalics <rudalics@gmx.at>
10142
10143 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
10144 buffer argument (Bug#9083) and self-identifying label argument.
10145
a7c33da2
GM
101462011-07-15 Glenn Morris <rgm@gnu.org>
10147
10148 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
10149
2f5c6024
LMI
101502011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10151
10152 * man.el (Man-fontify-manpage): Fix message when formatting the
10153 man page (bug#7929).
10154
0bb23927 101552011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
10156
10157 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
10158 argument LRM; if non-nil, append an invisible LRM character to the
10159 buffer name.
10160 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
10161 last argument non-nil, when formatting buffer names.
0bb23927
EZ
10162 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
10163 paragraph direction.
cce4b0a7 10164
621ef9ab
LMI
101652011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10166
d1583c48
LMI
10167 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
10168 the man page name (bug#7929).
10169
6a57fb5f
LMI
10170 * image.el (put-image): Mention the `put-image' overlay property
10171 (bug#7834).
10172
d7956b14
LMI
10173 * scroll-bar.el (set-scroll-bar-mode): Mention that
10174 `scroll-bar-mode' lists the values (bug#7772).
10175
5b2d4a66
LMI
10176 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
10177 command (bug#7729).
10178
7509a874
LMI
10179 * rect.el (apply-on-rectangle): Return the point after the last
10180 operation.
10181 (string-rectangle): Go to the point after the last operation
10182 (bug#7522).
10183
4fe74b19
LMI
10184 * printing.el (pr-toggle-region): Clarify the documentation
10185 slightly (bug#7493).
10186
b796c9b7
SM
10187 * time.el (display-time-update):
10188 Allow `display-time-mail-function' to return nil (bug#7158).
10189 Fix suggested by Detlev Zundel.
ab283561 10190
fc233c9d
LMI
10191 * vc/diff.el (diff): Clarify the order the file names are read
10192 (bug#7111).
10193
43f5740b
LMI
10194 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
10195 the doc string (bug#7015).
10196
f2182a76
LMI
10197 * font-lock.el (font-lock-maximum-decoration): Mention what
10198 numeric levels mean (bug#6935).
10199
621ef9ab
LMI
10200 * startup.el (initial-buffer-choice): Don't mention the `none'
10201 selection, which is against policy.
10202
adc47434
MR
102032011-07-14 Martin Rudalics <rudalics@gmx.at>
10204
b796c9b7
SM
10205 * window.el (display-buffer-normalize-special):
10206 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 10207
7e5bfb8f
EZ
102082011-07-14 Eli Zaretskii <eliz@gnu.org>
10209
10210 * subr.el (version<, version<=, version=): Mention "-CVS" and
10211 "-12345" alpha version numbers.
10212
27fa387a
CY
102132011-07-14 Chong Yidong <cyd@stupidchicken.com>
10214
10215 * bindings.el: Add advertised binding for set-mark-command
10216 (Bug#5772).
10217
8bdfa064
CY
102182011-07-14 Chong Yidong <cyd@stupidchicken.com>
10219
10220 * bindings.el (mode-line-other-buffer):
10221 * bookmark.el (bookmark-bmenu-2-window):
10222 * bs.el (bs-cycle-next, bs-cycle-previous):
10223 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
10224 switch-to-buffer.
10225
10226 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 10227 Delete.
8bdfa064 10228
5eba16a3
JB
102292011-07-14 Juanma Barranquero <lekktu@gmail.com>
10230
10231 * follow.el (follow-debug-message, follow-redisplay):
10232 * jka-cmpr-hook.el (with-auto-compression-mode):
10233 Fix typos in docstrings.
10234
15853710
LMI
102352011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10236
a28e4607
LMI
10237 * subr.el (with-silent-modifications): Clarify somewhat what the
10238 macro inhibits (bug#6525).
10239
15853710
LMI
10240 * simple.el (eval-expression): Note what it does if called
10241 interactively (bug#6495).
10242
bee0fcef
CY
102432011-07-13 Chong Yidong <cyd@stupidchicken.com>
10244
b796c9b7
SM
10245 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
10246 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
10247
10248 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10249 Remove switch-to-buffer.
10250
58274504
LMI
102512011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10252
bd2fcc8d
LMI
10253 * files.el (make-directory): Clarify that an error will be raised
10254 if there's an error (bug#6397).
10255
0f04b32c
LMI
10256 * startup.el (initial-buffer-choice): Add `none' as a choice
10257 (bug#6234).
10258
465c5fc8
LMI
10259 * subr.el (add-hook): Clarify section about buffer-local hooks
10260 (bug#6218).
10261
58274504
LMI
10262 * dired.el (dired-flagged): Clarify doc string (bug#6117).
10263
bead9a43
JB
102642011-07-13 Juanma Barranquero <lekktu@gmail.com>
10265
10266 * tabify.el (untabify): Preserve the current column so that point
10267 doesn't move (bug#6032).
10268
3af98a7b
LMI
102692011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10270
b796c9b7
SM
10271 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
10272 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 10273
6240145a
GM
102742011-07-13 Glenn Morris <rgm@gnu.org>
10275
10276 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
10277 (dired-insert-directory): Give a message the first time
10278 if ls is found not to support --dired.
10279
1d8c2ccc
LMI
102802011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10281
10282 * simple.el (toggle-truncate-lines): Clarify what is toggled
10283 (bug#5580). Text by Drew Adams.
10284
5fc4038e
CY
102852011-07-13 Chong Yidong <cyd@stupidchicken.com>
10286
10287 * simple.el (blink-matching-open): Make the error message from the
10288 last change less verbose.
10289
bf6012e5
DN
102902011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
10291
10292 * font-lock.el (font-lock-comment-face): Use the high contrast
10293 "yellow" color for font-lock-comment-face on low color terminals
10294 using a dark background color (bug#4221).
10295
343c3b5a
LMI
102962011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10297
7e9505c5
LMI
10298 * dired.el (dired-insert-set-properties): Make the doc string
10299 reflect what it does now (bug#5325).
10300
c26fdcf5
LMI
10301 * simple.el (blink-matching-open): Say that we were unable to find
10302 the match within the limit, if we're limited (bug#5122).
10303
bb388cc5
LMI
10304 * international/mule-cmds.el (prefer-coding-system): Add an
10305 example (bug#4869).
10306
343c3b5a
LMI
10307 * progmodes/etags.el (tags-search): Document `file-list-form'
10308 (bug#4731).
10309
2a517d45
LM
103102011-07-13 Lawrence Mitchell <wence@gmx.li>
10311
10312 * net/browse-url.el (browse-url-default-browser)
10313 (browse-url-browser-function): Make the default browser choice a
10314 bit more logical (bug#4300). Also clean up the doc string.
10315
b6c78ef2
JB
103162011-07-13 Juanma Barranquero <lekktu@gmail.com>
10317
10318 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
10319 binary endings (bug#4440).
10320
1c4dd947
LMI
103212011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10322
a2014063
LMI
10323 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
10324 which can be pretty annoying (bug#8971).
10325
9c9c2d88
LMI
10326 * jka-compr.el (jka-compr-verbose): New variable, and use
10327 throughout (bug#8971).
10328
1c4dd947
LMI
10329 * info.el (Info-find-file): Fall back on the installation
10330 directory if we can't find the info node anywhere else.
10331
a1c9f41b
SO
103322011-07-13 Sergei Organov <osv@javad.com> (tiny change)
10333
10334 * vc/vc.el (vc-revert-file):
10335 Don't set file time-stamp in the past. (Bug#5181)
10336
536f3d36
LMI
103372011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10338
7152b011
LMI
10339 * files.el (after-find-file): Give a better error message when
10340 trying to find a symlink that points to a file that doesn't exist
10341 (bug#4398).
10342
536f3d36
LMI
10343 * progmodes/cc-vars.el: Remove (probably) misleading comment
10344 (bug#4396).
10345
460c0fba
JB
103462011-07-12 Johan Bockgård <bojohan@gnu.org>
10347
10348 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
10349
7a6bda45
CY
103502011-07-12 Chong Yidong <cyd@stupidchicken.com>
10351
10352 * mouse-sel.el: Hack restoring functionality, while keeping
10353 compatibility with 2010-07-03 changes to mouse selection.
10354 (mouse-sel-primary-overlay): New var.
10355 (mouse-sel-selection-alist): Use it.
10356 (mouse-sel-mode): Doc fix; remove points that are default features
10357 of mouse.el.
10358
c79598ef
JB
103592011-07-12 Johan Bockgård <bojohan@gnu.org>
10360
10361 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10362 Fix previous fix (bug#2490).
10363
ff8be6ef
RW
103642011-07-12 Roland Winkler <winkler@gnu.org>
10365
b796c9b7
SM
10366 * textmodes/bibtex.el (bibtex-initialize):
10367 Use pop-to-buffer-same-window.
ff8be6ef
RW
10368 (bibtex-search-entries): Fix interactive call.
10369
296ba3ee
LMI
103702011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10371
f5242a02 10372 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
10373 Fontise bytecomp Error lines more correctly (bug#2490).
10374 Fix suggested by Johan Bockgård.
f5242a02 10375
296ba3ee
LMI
10376 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
10377
10378 * dired-x.el (dired-guess-default): Use `delete-dups'.
10379
f69fd0d2
CY
103802011-07-12 Chong Yidong <cyd@stupidchicken.com>
10381
10382 * dired.el (dired-mark-prompt):
10383 * dired-aux.el (dired-read-shell-command): Doc fix.
10384
eab5dc07
LMI
103852011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10386
b796c9b7
SM
10387 * mail/sendmail.el (sendmail-query-once):
10388 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
10389 emacs -Q.
10390
10391 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10392
eab5dc07
LMI
10393 * cus-edit.el (custom-file): Take an optional no-error variable.
10394 (customize-save-variable): Set the variable, and give a warning if
10395 running under "emacs -q".
10396
a1e65d42
JB
103972011-07-11 Juanma Barranquero <lekktu@gmail.com>
10398
10399 * loadhist.el (unload-feature-special-hooks):
10400 Add `auto-coding-functions', `fill-nobreak-predicate' and
10401 `find-directory-functions' (bug#5327).
10402
1d52da10
LMI
104032011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10404
be958f1d
LMI
10405 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
10406
5bedb26c
LMI
10407 * cus-edit.el (custom-guess-name-alist): -alist variables should
10408 use the `alist' type (bug#3120). Suggested by Drew Adams.
10409
1d52da10
LMI
10410 * printing.el: Add documentation to all the `pr-toggle-' commands.
10411
cd394be1 104122011-07-11 Leo Liu <sdl.web@gmail.com>
481a51b6
LL
10413
10414 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
10415 backends where it makes sense (bug#2623).
10416
dcc88d8a
LMI
104172011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10418
c3de9feb
LMI
10419 * dired-x.el (dired-guess-default): Remove duplicate shell command
10420 entries (bug#2028).
8a93078b 10421 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 10422 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 10423
dcc88d8a
LMI
10424 * subr.el (remove-duplicates): New conveniency function.
10425
505e3645
LMI
104262011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
10427
10428 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
10429 (bug#1526).
10430
104312011-07-10 Martin Rudalics <rudalics@gmx.at>
10432
10433 * window.el (display-buffer-normalize-default): Don't invert
10434 meaning of even-window-heights. Reported by Eli Zaretskii
10435 <eliz@gnu.org>.
10436
455e4fa1
BR
104372011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
10438
10439 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
10440
8e0bc3e9
CY
104412011-07-10 Chong Yidong <cyd@stupidchicken.com>
10442
10443 * window.el (display-buffer): Fix arguments to
10444 display-buffer-reuse-window in last change.
10445
fa7c3228
CY
10446 * faces.el (link): Use a less saturated blue on light backgrounds.
10447
10448 * startup.el (fancy-startup-text, fancy-about-text)
10449 (fancy-startup-tail): Use font-lock faces, for background safety.
10450
c0a7f300
BN
104512011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
10452
b796c9b7
SM
10453 * emulation/viper-cmd.el (viper-change-state-to-vi):
10454 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 10455
4dc2a129
MR
104562011-07-09 Martin Rudalics <rudalics@gmx.at>
10457
10458 * window.el (display-buffer-default-specifiers): Remove.
10459 (display-buffer-macro-specifiers): Remove default specifiers.
10460 (display-buffer-alist): Default to nil.
b796c9b7 10461 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
10462 (display-buffer-pop-up-window): Allow splitting internal
10463 windows. Check whether a live window was created.
10464 (display-buffer-other-window-means-other-frame)
10465 (display-buffer-normalize-arguments): Rename to
10466 display-buffer-normalize-argument and rewrite. Set the
10467 other-window specifier.
10468 (display-buffer-normalize-special): New function.
10469 (display-buffer-normalize-options): Rename to
10470 display-buffer-normalize-default and rewrite.
10471 (display-buffer-normalize-options-inhibit): Remove.
10472 (display-buffer-normalize-specifiers): Rewrite.
10473 (display-buffer): Process other-window specifier and call
10474 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
10475 more faithfully.
b796c9b7 10476 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 10477 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
10478 (display-buffer-in-window, display-buffer-alist-set):
10479 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
10480 <tassilo@member.fsf.org>.
10481
2d43b8c9
LL
104822011-07-09 Leo Liu <sdl.web@gmail.com>
10483
10484 * register.el (insert-register): Restore accidental change on
10485 2011-06-26. (Bug#9028)
10486
7f9b7c53
GM
104872011-07-09 Glenn Morris <rgm@gnu.org>
10488
10489 * subr.el (remq): Handle the empty list. (Bug#9024)
10490
f042cfd8
AS
104912011-07-08 Andreas Schwab <schwab@linux-m68k.org>
10492
10493 * mail/sendmail.el (send-mail-function): No longer delay custom
10494 initialization.
10495 * custom.el (custom-initialize-delay): Doc fix.
10496
856b2f11
SM
104972011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10498
10499 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
10500
afae1d68
MA
105012011-07-08 Michael Albinus <michael.albinus@gmx.de>
10502
10503 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
10504 human-friendly prompt.
10505
0757af94
SM
105062011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10507
10508 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
10509 provided by a particular plugin.
10510
d760b731
LMI
105112011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
10512
10513 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
10514 save customizations (with "emacs -Q"), just set the variable
10515 instead of erroring out.
10516
10517 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10518
cd79ce90
JL
105192011-07-08 Juri Linkov <juri@jurta.org>
10520
10521 * arc-mode.el (archive-zip-expunge, archive-zip-update)
10522 (archive-zip-update-case): Use 7z if found by `executable-find'.
10523 The order of searching the available programs is the same as in
10524 `archive-zip-extract' (bug#8968).
10525
14cc04aa
CY
105262011-07-07 Chong Yidong <cyd@stupidchicken.com>
10527
10528 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
10529 (menu-bar-options-menu): Tweak descriptions.
10530
0a1848ec
LMI
105312011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
10532
10533 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
10534 menu items into verb phrases (bug#1421). Also refill to fit under
10535 80 columns.
10536
f5bd0689
CY
105372011-07-07 Chong Yidong <cyd@stupidchicken.com>
10538
538e85c6
CY
10539 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
10540 (Info-read-node-name): Doc fix (Bug#1084).
10541
f5bd0689
CY
10542 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
10543 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
10544 (end-of-sexp, beginning-of-sexp)
10545 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
10546 (forward-symbol, forward-same-syntax, word-at-point)
10547 (sentence-at-point): Doc fix (Bug#1144).
10548
56ec5115
LMI
105492011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
10550
f3f8e37f
LMI
10551 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
10552 should cover it (bug#1281).
10553
0757af94 10554 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 10555
e9fce1ac 10556 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
10557 negotiation fails, then possibly try again with a non-encrypted
10558 connection (bug#9017).
10559
56ec5115
LMI
10560 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
10561 be used.
10562
c2f9aec8
RS
105632011-07-07 Richard Stallman <rms@gnu.org>
10564
10565 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
10566 property, and handle its changed format.
10567 Look for the correct line number.
10568 Use file's line contents (but not past first =) to find
10569 correct line in message.
10570
ef7b981d 105712011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
10572
10573 * international/characters.el (build-unicode-category-table):
10574 Delete it.
0757af94 10575 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 10576
0757af94 10577 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
10578 to src/chartab.c.
10579 (get-char-code-property): Call unicode-property-table-internal to
10580 load a file. Call get-unicode-property-internal where necessary.
10581 (put-char-code-property): Call unicode-property-table-internal to
10582 load a file. Call put-unicode-property-internal where necessary.
10583 put-unicode-property-internal where necessary.
0757af94
SM
10584 (char-code-property-description):
10585 Call unicode-property-table-internal to load a file.
c805dec0
KH
10586
10587 * international/charprop.el:
10588 * international/uni-bidi.el:
10589 * international/uni-category.el:
10590 * international/uni-combining.el:
10591 * international/uni-comment.el:
10592 * international/uni-decimal.el:
10593 * international/uni-decomposition.el:
10594 * international/uni-digit.el:
10595 * international/uni-lowercase.el:
10596 * international/uni-mirrored.el:
10597 * international/uni-name.el:
10598 * international/uni-numeric.el:
10599 * international/uni-old-name.el:
10600 * international/uni-titlecase.el:
10601 * international/uni-uppercase.el: Regenerate.
10602
10603 * loadup.el: Load international/charprop.el before
10604 international/characters.
10605
e14b388a
CY
106062011-07-07 Chong Yidong <cyd@stupidchicken.com>
10607
10608 * window.el (next-buffer, previous-buffer): Signal an error if
10609 called from a minibuffer window.
10610
10611 * bindings.el: Revert 2011-07-04 change.
10612
354cf0ba
RS
106132011-07-06 Richard Stallman <rms@gnu.org>
10614
10615 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
10616 (rmail-mime-insert-bulk, rmail-mime-insert-text):
10617 Treat markers like ints.
10618 (rmail-mime-entity): Doc fix.
10619
a48868a7
LMI
106202011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10621
4906cd3d
LMI
10622 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
10623 defcustom again for backwards compatibility.
10624
e0457abe
LMI
10625 * simple.el (shell-command-on-region): Fill.
10626
d67f7e1f
LMI
10627 * dired-aux.el (dired-kill-line): Add a doc string.
10628
fe204702
LMI
10629 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
10630 to "\\sw\\|\\s_" (bug#358).
10631
a48868a7
LMI
10632 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
10633 (dired-unmark-backward): Ditto.
10634 (dired-flag-backup-files): Ditto.
10635
10636 * dired-x.el (dired-mark-sexp): Ditto.
10637
aa8a705c
RS
106382011-07-06 Richard Stallman <rms@gnu.org>
10639
10640 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
10641 (rmail-mime-entity): New arg TRUNCATED.
10642 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
10643 New functions.
10644 (rmail-mime-save): Warn if entity is truncated.
10645 (rmail-mime-toggle-hidden): Likewise, for showing.
10646 (rmail-mime-process-multipart): Record when an entity is truncated.
10647
a9a936b9
RS
10648 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
10649 if ENTITY is a string.
10650
1f2b92cb
LMI
106512011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10652
f4f73198 10653 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
10654 of faces when `M-C-x'-ing their definitions (bug#8378).
10655 Also clean up the code slightly.
f4f73198 10656
12b16734 10657 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 10658 because that makes the colors go away.
12b16734 10659
f0691d22
LMI
10660 * mail/sendmail.el (send-mail-function): Change the default to
10661 `sendmail-query-once'.
9e87df06 10662 (sendmail-query-once): Add an autoload cookie.
f0691d22 10663
1f2b92cb
LMI
10664 * net/network-stream.el (network-stream-open-starttls): Try using
10665 a plain connection even if the server offered STARTTLS, and we
10666 kinda wanted to use it, if Emacs doesn't have any STARTTLS
10667 capability. This should make smtpmail.el work in slightly more
10668 configurations.
10669
1cdd2a1b
MA
106702011-07-06 Michael Albinus <michael.albinus@gmx.de>
10671
10672 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
10673 New defun.
10674 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
10675
fbcc67e2
MM
106762011-07-06 Michael R. Mauger <mmaug@yahoo.com>
10677
10678 * progmodes/sql.el: Version 3.0
0757af94 10679 (sql-product-alist): Add product :completion-object,
fbcc67e2 10680 :completion-column, and :statement attributes.
0757af94 10681 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 10682 (sql-mode-syntax-table): Mark all punctuation.
0757af94 10683 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
10684 ansi keywords.
10685 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 10686 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
10687 (sql-oracle-show-reserved-words): New function for development.
10688 (sql-product-font-lock): Simplify for source code buffers.
10689 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
10690 New functions.
10691 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
10692 (sql-mode-map): Add statement movement functions.
10693 (sql-ansi-statement-starters, sql-oracle-statement-starters):
10694 New variable.
fbcc67e2
MM
10695 (sql-statement-regexp, sql-beginning-of-statement)
10696 (sql-end-of-statement, sql-signum): New functions.
0757af94 10697 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
10698 (sql-show-sqli-buffer): Bug fix.
10699 (sql-interactive-mode): Store connection data as buffer local.
0757af94 10700 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
10701 with sql-interactive-mode.
10702 (sql-save-connection): Save buffer local settings.
0757af94 10703 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
10704 (sql-product-interactive): Bug fix.
10705 (sql-preoutput-hold): New variable.
10706 (sql-interactive-remove-continuation-prompt): Bug fixes.
10707 (sql-debug-redirect): New variable.
10708 (sql-str-literal): New function.
10709 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 10710 Redesign.
fbcc67e2
MM
10711 (sql-oracle-save-settings, sql-oracle-restore-settings)
10712 (sql-oracle-list-all, sql-oracle-list-table): New functions.
10713 (sql-completion-object, sql-completion-column)
10714 (sql-completion-sqlbuf): New variables.
10715 (sql-build-completions-1, sql-build-completions)
10716 (sql-try-completion): New functions.
10717 (sql-read-table-name): Use them.
10718 (sql-contains-names): New buffer local variable.
10719 (sql-list-all, sql-list-table): Use it.
10720 (sql-oracle-completion-types): New variable.
10721 (sql-oracle-completion-object, sql-sqlite-completion-object)
10722 (sql-postgres-completion-object): New functions.
10723
d4eaeab1
GM
107242011-07-06 Glenn Morris <rgm@gnu.org>
10725
10726 * window.el (pop-to-buffer): Doc fix.
10727
322b7dab 107282011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
10729
10730 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
10731
322b7dab 107322011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 10733
322b7dab 10734 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 10735
322b7dab 10736 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 10737
605dd5bf
CY
107382011-07-05 Chong Yidong <cyd@stupidchicken.com>
10739
10740 * button.el (button): Inherit from link face. Suggested by Dan
10741 Nicolaescu.
10742
7dbfa719
SM
107432011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10744
3db614b0
SM
10745 * progmodes/gdb-mi.el: Fit in 80 columns.
10746 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
10747 switch-to-buffer.
10748
7dbfa719
SM
10749 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
10750 if imenu is simply not configured (bug#8941).
10751
919d884a
KM
107522011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
10753
10754 * allout.el (allout-post-undo-hook): New allout outline-change
10755 event hook to signal undo activity.
10756 (allout-post-command-business): Run allout-post-undo-hook if an
10757 undo just occurred.
7dbfa719
SM
10758 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
10759 * allout-widgets.el (allout-widgets-after-undo-function):
10760 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
10761 in the vicinity of an undo.
10762 (allout-widgets-mode): Include allout-widgets-after-undo-function
10763 on the new allout-post-undo-hook.
10764
450a0f09
SM
107652011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10766
10767 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
10768 Let define-derived-mode define it.
10769 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
10770 cycles of abbrev-table inheritance (bug#8998).
10771
2de69e00
RW
107722011-07-05 Roland Winkler <winkler@gnu.org>
10773
10774 * textmodes/bibtex.el: Add support for biblatex.
10775 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
10776 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
10777 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
10778 (bibtex-entry-alist, bibtex-field-alist): New variables.
10779 (bibtex-entry-field-alist): Obsolete alias for
10780 bibtex-BibTeX-entry-alist.
10781 (bibtex-entry-alist, bibtex-field-alist): New widgets.
10782 (bibtex-set-dialect): New command.
10783 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
10784 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
10785 Bind via bibtex-set-dialect.
2de69e00
RW
10786 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
10787 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
10788 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
10789 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
10790 Define via bibtex-set-dialect.
450a0f09
SM
10791 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
10792 Obey bibtex-no-opt-remove-re.
2de69e00
RW
10793 (bibtex-vec-push, bibtex-vec-incr): New functions.
10794 (bibtex-format-entry, bibtex-field-list)
10795 (bibtex-print-help-message, bibtex-validate)
10796 (bibtex-search-entries): Use new format of bibtex-entry-alist.
10797
2dcdbdd9
SM
107982011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10799
10800 * progmodes/compile.el (compilation-goto-locus):
10801 * net/tramp-cmds.el (tramp-append-tramp-buffers):
10802 * bs.el (bs-cycle-next, bs-cycle-previous):
10803 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
10804 * bindings.el (mode-line-other-buffer):
10805 * autoinsert.el (auto-insert):
10806 * arc-mode.el (archive-extract):
10807 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
10808
b27640fe
JB
108092011-07-05 Juanma Barranquero <lekktu@gmail.com>
10810
10811 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
10812 Fix check of `emacs-lock-unlockable-modes'.
10813 Coerce true values of `emacs-lock--try-unlocking' to t.
10814
53bbe3ad
JB
108152011-07-05 Juanma Barranquero <lekktu@gmail.com>
10816
10817 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
10818 * emacs-lock.el: New file.
10819
1d3cdbc7
JD
108202011-07-05 Julien Danjou <julien@danjou.info>
10821
10822 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
10823 than `boundp' to check if face is set.
10824
9173deec
JB
108252011-07-05 Juanma Barranquero <lekktu@gmail.com>
10826
10827 * register.el (registerv-make):
10828 * window.el (window-min-height): Fix typos in docstrings.
10829
869795d6
JD
108302011-07-05 Jan Djärv <jan.h.d@swipnet.se>
10831
9173deec 10832 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
10833 Update doc string.
10834
b768cdcd
JB
108352011-07-04 Juanma Barranquero <lekktu@gmail.com>
10836
10837 * server.el (server-execute): Catch quit and call
10838 `server-return-error' to pass the error back to emacsclient and
10839 close the connection (bug#8942).
10840
13aa217b
KM
108412011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
10842
10843 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
10844 insecure exception for current topic. Also note that auto-saves
10845 are handled differently.
10846
5d3385a0 10847 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13aa217b
KM
10848 State variables for tracking auto-save inhibition situation.
10849
10850 (allout-write-contents-hook-handler): Rename from
10851 'allout-write-file-hook-handler', and describe how it depends on
10852 write-contents-functions sensitivity to non-nil value to prevent
10853 file write.
10854
10855 (allout-auto-save-hook-handler): Remove. auto-save does not check
10856 this in individual buffers, only in the starting buffer, so this
10857 is not the right way for us to inhibit auto-save in a buffer
10858 according to its condition.
10859
10860 (allout-mode): Use new allout-write-contents-hook-handler, and
10861 only with write-contents-functions. Remove auto-save provisions -
10862 they're implemented elsewhere.
10863
10864 (allout-before-change-handler): If undo is in progress, note that
10865 for attention of allout-post-command-business.
10866
10867 (allout-post-command-business): If the command we're following was
10868 an undo, check for change in the status of encrypted items and
10869 adjust auto-save inhibitions accordingly.
10870
10871 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
10872 according to whether there are or aren't any plain-text topics
10873 pending encryption.
10874
2dcdbdd9 10875 (allout-inhibit-auto-save-info-for-decryption):
1154d12e
JB
10876 Adjust buffer-saved-size and some allout state to inhibit auto-saves
10877 if there are plain-text topics pending encryption.
13aa217b
KM
10878
10879 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
10880 buffer-saved-size and some allout state to not inhibit auto-saves
10881 if there are no longer any plain-text topics pending encryption.
10882
0757af94
SM
10883 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
10884 No longer provide for exemption of the current topic.
13aa217b 10885
ac89b32c
JL
108862011-07-04 Juri Linkov <juri@jurta.org>
10887
10888 Add 7z operations to delete and save changed members (bug#8968).
10889 * arc-mode.el (archive-7z-expunge, archive-7z-update):
10890 New defcustoms.
10891 (archive-7z-write-file-member): New function.
10892 (archive-7z-summarize): Fix the number of dashes in the
10893 listing output.
10894
8fa39615
SM
108952011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10896
10897 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
10898 (bug#8958).
10899
2f11b3f1
CY
109002011-07-04 Chong Yidong <cyd@stupidchicken.com>
10901
d66fef2b
CY
10902 * bindings.el: Ignore next-buffer and previous-buffer in
10903 minibuffer-local-map.
10904
2f11b3f1
CY
10905 * font-lock.el (font-lock-builtin-face): Change light background
10906 color to dark slate blue (Bug#6693).
10907
f932a347
WD
109082011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
10909
10910 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
10911
c8af70e1
SM
109122011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10913
10914 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
10915 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10916 Add switch-to-buffer.
10917
f158badc
LMI
109182011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10919
10920 * isearch.el (isearch-search-fun-function): Clarify further the
10921 meaning of the function returned.
10922
6d95bd46
MA
109232011-07-04 Michael Albinus <michael.albinus@gmx.de>
10924
10925 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
10926
10927 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
10928 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
10929 Use it.
10930 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
10931 `tramp-default-remote-path' does not exist.
10932 (tramp-send-command-and-read): New optional argument NOERROR.
10933 (tramp-open-connection-setup-interactive-shell)
10934 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
10935 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
10936 (tramp-process-sentinel): Flush also process' connection property.
10937 (tramp-sh-handle-start-file-process): Do not set process
10938 sentinel. It is done now ...
10939 (tramp-maybe-open-connection): ... here. (Bug#8929)
10940
909e6b67
MK
109412011-07-04 MON KEY <monkey@sandpframing.com>
10942
10943 * play/animate.el (animate-string): Doc fixes and allow changing
10944 the buffer name (bug#5417).
10945
109462011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10947
c8af70e1 10948 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 10949
f34755dc
PE
109502011-07-04 Paul Eggert <eggert@cs.ucla.edu>
10951
396cec72
PE
10952 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
10953 This is simpler and helps future-proof the code.
10954 (timer-until): Use time-subtract and float-time.
08235028 10955 (timer--time-less-p): Use time-less-p.
f34755dc 10956
56e6cc31
JB
109572011-07-04 Juanma Barranquero <lekktu@gmail.com>
10958
3abb79e5
JB
10959 * type-break.el (timep): Use the value of `float-time' to avoid a
10960 byte-compiler warning.
10961
56e6cc31
JB
10962 * server.el (server-eval-and-print): Return any result, even nil.
10963
7b9430b4
PE
109642011-07-03 Paul Eggert <eggert@cs.ucla.edu>
10965
10966 * type-break.el: Accept time formats that the builtins accept.
10967 (timep, type-break-time-difference): Accept any format that
10968 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
10969 This is simpler and helps future-proof the code.
10970 (type-break-time-difference): Round rather than ignoring
10971 subseconds components.
10972
3034e9e7
LMI
109732011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10974
10975 * info.el (Info-apropos-matches): Make non-interactive, since it
10976 doesn't seem to do anything useful as a command (bug#8829).
10977
1485f4c0
CY
109782011-07-03 Chong Yidong <cyd@stupidchicken.com>
10979
10980 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 10981 Move from faces.el.
1485f4c0
CY
10982 (frame-default-terminal-background): New function.
10983
10984 * custom.el (custom-push-theme): Don't record faces in `changed'
10985 theme; this doesn't work correctly for per-frame face settings.
10986 (disable-theme): Use face-set-after-frame-default to reset faces.
10987 (custom--frame-color-default): New function.
10988
9fa3dd45
LMI
109892011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10990
c8af70e1 10991 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
10992 (bug#8769).
10993
6cbbc20c
KR
109942011-03-29 Kevin Ryde <user42@zip.com.au>
10995
10996 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10997 `perl-Test2' extend to match possible "fail #N" rep count
10998 (bug#8377).
10999
c7f98048
LMI
110002011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11001
65676592
LMI
11002 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
11003 `smtpmail-via-smtp' now returns the error instead of nil.
11004
c7f98048
LMI
11005 * isearch.el (isearch-search-fun-function): Clarify the doc string
11006 (bug#8101).
11007
56e6cc31 110082011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
11009
11010 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
11011 unnecessary spaces (bug#8987).
11012
2b216704
LMI
110132011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11014
11015 * net/network-stream.el (open-network-stream): Use the
11016 :end-of-capability command thoughout.
11017
110182011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
11019
11020 * net/network-stream.el (open-network-stream): Add the
11021 :end-of-capability command parameter, used by pop3.el.
11022
36adf6ce
LMI
110232011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11024
1ca0da0e
LMI
11025 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
11026
fc00f69c
LMI
11027 * fringe.el (fringe-query-style): Remove redundant text " (type ?
11028 for list)" (bug#6475).
11029
28fd8759 11030 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 11031 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
11032 an error (bug#6297).
11033
0dd8b6da
LMI
11034 * man.el (Man-reference-regexp): Allow matching possible
11035 word-wrapped references (bug#6289).
11036
ce1438d6
LMI
11037 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
11038 for consistency with the other vc buffers (bug#6197).
11039 (vc-checkin): Ditto.
11040
11041 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
11042
36adf6ce
LMI
11043 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
11044
e83cc1f7
LMI
110452011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11046
8a20ca4c
LMI
11047 * custom.el (defcustom): Clarify that :set is only used in the
11048 Customize user interface (bug#6089).
11049
83319045
LMI
11050 * progmodes/flymake.el (flymake-mode): If the buffer isn't
11051 associated with a file, refuse to run instead of erroring out
11052 (bug#6084).
11053
a8392169
LMI
11054 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
11055 the doc string, since it appears that using `fill-column' always
11056 controls the width (bug#7845).
11057
e83cc1f7
LMI
11058 * simple.el (shell-command-on-region): Say where the error output
11059 went if `shell-command-default-error-buffer' is set (bug#6857).
11060
e47ca23b
KM
110612011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
11062
11063 * allout.el (allout-yank-processing): Adjust cursor position for
11064 backwards-deleted space.
11065
11066 (allout-rebullet-heading): Register changes with
11067 allout-exposure-changed-hook, so the modified topic is properly
11068 decorated.
11069
5cf56143
LMI
110702011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11071
08549772
LMI
11072 * minibuffer.el (completion-in-region): Document PREDICATE
11073 (bug#7136).
11074
48e96771
LMI
11075 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
11076 of keyword/argument pairs (bug#6904).
11077
c8af70e1
SM
11078 * replace.el (multi-occur):
11079 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 11080
e17d05e2
LMI
110812011-07-02 Drew Adams <drew.adams@oracle.com>
11082
11083 * dired.el (dired-mark-if): Make the message about whether it's
11084 marking or unmarking clearer (bug#8523).
11085
063b0e45
LMI
110862011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11087
11088 * disp-table.el (display-table-print-array): New function.
11089 (describe-display-table): Use it to print the vectors more pretty
11090 (Bug#8859).
11091
28545e04
MR
110922011-07-02 Martin Rudalics <rudalics@gmx.at>
11093
11094 * window.el (window-state-get-1): Don't assign clone numbers.
11095 Add clone-of item to list of window parameters.
11096 (window-state-put-2): Don't process clone numbers.
11097 (display-buffer-alist): Fix doc-string.
11098
3349e122
SM
110992011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
11100
11101 * subr.el (remq): Don't allocate if it's not needed.
11102 (keymap--menu-item-binding, keymap--menu-item-with-binding)
11103 (keymap--merge-bindings): New functions.
11104 (keymap-canonicalize): Use them to refine the canonicalization.
11105 * minibuffer.el (minibuffer-local-completion-map)
11106 (minibuffer-local-must-match-map): Move initialization from C.
11107 (minibuffer-local-filename-completion-map): Move initialization from C;
11108 don't inherit from anything here.
11109 (minibuffer-local-filename-must-match-map): Make obsolete.
11110 (completing-read-default): Use make-composed-keymap to combine
11111 minibuffer-local-filename-completion-map with either
11112 minibuffer-local-must-match-map or
11113 minibuffer-local-filename-completion-map.
11114
d224ac83
GM
111152011-07-01 Glenn Morris <rgm@gnu.org>
11116
3de63bf8
GM
11117 * type-break.el (type-break-time-sum): Use dolist.
11118
d224ac83
GM
11119 * textmodes/flyspell.el (flyspell-word-search-backward):
11120 Replace CL function.
11121
1a1e3f32
SM
111222011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11123
fe3f64d5
SM
11124 * mouse.el (mouse--strip-first-event): New function.
11125 (function-key-map): Use it to map fringe clicks to normal clicks
11126 by default.
11127
eb604e34
SM
11128 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
11129 (vc-bzr-revision-completion-table): Add support for annotate and date.
11130
1a1e3f32
SM
11131 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
11132 inherit from parent.
11133
5bd35902
LMI
111342011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
11135
ace6c69c 11136 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 11137 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 11138
191e2bed
LMI
11139 * dired.el (dired-mode): Fix up the doc string as suggested by
11140 Drew Adams (bug#8817).
11141
5bd35902
LMI
11142 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
11143 cookie, since the manual says that it should be possible to add
11144 this function to `find-file-hook' (bug#8709).
11145
eee8207a
TZ
111462011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11147
11148 * progmodes/cfengine.el: Moved all cfengine3.el functionality
11149 here. Noted Ted Zlatanov as the maintainer.
11150 (cfengine-common-settings, cfengine-common-syntax): New functions
11151 to set up common things between `cfengine-mode' and
11152 `cfengine3-mode'.
11153 (cfengine3-mode): New mode.
11154 (cfengine3-defuns cfengine3-defuns-regex
11155 (cfengine3-class-selector-regex cfengine3-category-regex)
11156 (cfengine3-vartypes cfengine3-font-lock-keywords)
11157 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 11158 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 11159
36b148cf
MA
111602011-07-01 Michael Albinus <michael.albinus@gmx.de>
11161
11162 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
11163
11164 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
11165
0bf4ba9a
MR
111662011-07-01 Martin Rudalics <rudalics@gmx.at>
11167
11168 * window.el (same-window-buffer-names, same-window-regexps)
11169 (same-window-p, special-display-frame-alist)
11170 (special-display-popup-frame, special-display-function)
11171 (special-display-buffer-names, special-display-regexps)
11172 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
11173 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11174 (split-window-preferred-function, split-height-threshold)
11175 (split-width-threshold, even-window-heights)
11176 (display-buffer-mark-dedicated, window-splittable-p)
11177 (split-window-sensibly, window-safely-shrinkable-p):
11178 Un-obsolete.
11179 (display-buffer): Don't spread args with function specifier
11180 because special-display-popup-frame won't like it.
11181
35837f51
PE
111822011-07-01 Paul Eggert <eggert@cs.ucla.edu>
11183
d0672f86
PE
11184 Time-stamp simplifications and fixes.
11185 These improve accuracy slightly, and future-proof the code
11186 against some potential changes to current-time format.
11187
b9444d97
PE
11188 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
11189 by using time-since and float-time.
11190
0ef923dc
PE
11191 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
11192 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
11193 + NNN microseconds".
11194
2f81380d
PE
11195 * type-break.el (type-break-time-sum): Rewrite using time-add.
11196
845b5c3e
PE
11197 * play/hanoi.el (hanoi-current-time-float): Remove.
11198 All uses replaced by float-time.
11199
ee6f1be0
PE
11200 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
11201 This yields a more-accurate answer.
11202 (rng-time-to-float): Remove; no longer needed.
11203
fe955043
PE
11204 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
11205
5777162a
PE
11206 * calendar/timeclock.el (timeclock-seconds-to-time):
11207 Defalias to seconds-to-time, since they're the same thing.
11208
3103f8b6 11209 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 11210 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
11211 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
11212
0e61a35f
SM
112132011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11214
11215 * window.el (bury-buffer): Don't iconify the only frame.
11216 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
11217 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
11218
ddd63a1e
CY
112192011-07-01 Chong Yidong <cyd@stupidchicken.com>
11220
0e61a35f
SM
11221 * eshell/em-smart.el (eshell-smart-display-navigate-list):
11222 Add mouse-yank-primary.
ddd63a1e 11223
055f4923
TZ
112242011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11225
11226 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
11227
6a2fb145
SM
112282011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11229
11230 * emacs-lisp/find-func.el (find-library--load-name): New fun.
11231 (find-library-name): Use it to find relative load names when provided
11232 absolute file name (bug#8803).
11233
fd4983f2
LMI
112342011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11235
887d14ad
LMI
11236 * textmodes/flyspell.el (flyspell-word): Consider words that
11237 differ only in case as potential doublons (bug#5687).
11238
c53dc7fc
LMI
11239 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
11240 Remove two rather uninteresting debugging-like messages to make
11241 debbugs.el more silent.
11242
fd4983f2
LMI
11243 * comint.el (comint-password-prompt-regexp): Accept "Response" as
11244 a password-like phrase.
11245
7a71b18d 112462011-06-30 Masatake YAMATO <yamato@redhat.com>
b14c0c55
AM
11247
11248 * progmodes/cc-guess.el: New file.
11249
6a2fb145 11250 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
11251
11252 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
11253 derived from `c-basic-common-init'.
11254
11255 * progmodes/cc-mode.el (top-level): Require cc-guess.
11256 (c-basic-common-init): Use `cc-choose-style-for-mode'.
11257
1fa280a3
LM
112582011-06-30 Lawrence Mitchell <wence@gmx.li>
11259
11260 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
11261
e6597158
AM
112622011-06-30 Alan Mackenzie <acm@muc.de>
11263
1fa280a3
LM
11264 * progmodes/cc-engine.el (c-guess-continued-construct):
11265 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
11266 lock is disabled. Name this case as "CASE G".
11267
68ba37fb
KM
112682011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
11269
11270 * allout.el (allout-yank-processing): Fix injection of extra space
11271 between bullet and non-whitespace character in first topic when
11272 pasting, ensuring that the actual spacing in the pasted topic
11273 following the bullet char is preserved. This extra space was
11274 causing pasted encrypted topics to get a decrypted status even
11275 when the content was actually still encrypted. Now the decryption
11276 status from before the paste is preserved.
11277
11278 (allout-flag-region): Set all allout overlays so they evaporate
11279 when reduced to zero length (evanescent), to prevent overlay
11280 leakage.
11281
887a0b34
GM
112822011-06-30 Glenn Morris <rgm@gnu.org>
11283
94b9acce
GM
11284 * w32-fns.el (w32-charset-info-alist): Declare.
11285
1d9b46d4
GM
11286 * find-dired.el (find-grep-options): Simplify.
11287
cc232200
GM
11288 * term/ns-win.el (ns-set-resource): Declare.
11289
28e77c46
GM
11290 * ses.el (row, col): Declare dynamic variables honestly.
11291
887a0b34
GM
11292 * textmodes/reftex-parse.el (index-tags): Declare.
11293
658d8eb8
CY
112942011-06-30 Chong Yidong <cyd@stupidchicken.com>
11295
11296 * cus-edit.el (customize-push-and-save): New function.
11297
11298 * files.el (hack-local-variables-confirm): Use it.
11299
1fa280a3
LM
11300 * custom.el (load-theme): New arg NO-CONFIRM.
11301 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
11302 (custom-enabled-themes): Doc fix.
11303
11304 * cus-theme.el (customize-create-theme)
11305 (custom-theme-merge-theme): Callers to load-theme changed.
11306
bb617717
LMI
113072011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11308
d61bdd5d
LMI
11309 * thingatpt.el (thing-at-point-short-url-regexp): Require that
11310 short URLs have at least one dot in them (bug #7614).
11311
bb617717
LMI
11312 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
11313 nil, because using a pty is apparently too slow (bug #895).
11314
2f31f37a
LMI
113152011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
11316
11317 * mail/sendmail.el (sendmail-query-once): New function.
11318 (sendmail-query-once-function): New variable.
11319
3076b24e
GM
113202011-06-29 Glenn Morris <rgm@gnu.org>
11321
faf2a174
GM
11322 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
11323
3076b24e
GM
11324 * ses.el (top-level): Require cl when compiling.
11325 (ses-set-localvars): Fix error statement.
11326 Call it at compile time to silence a storm of warnings.
11327
5386012d
MR
113282011-06-29 Martin Rudalics <rudalics@gmx.at>
11329
11330 * window.el (normalize-live-buffer): Rename to
11331 window-normalize-buffer.
11332 (normalize-live-frame): Rename to window-normalize-frame.
11333 (normalize-any-window): Rename to window-normalize-any-window.
11334 (normalize-live-window): Rename to window-normalize-live-window.
11335 (make-window-atom): Rename to window-make-atom.
11336 (window-resize-reset): Rename to window--resize-reset.
11337 (window-resize-reset-1): Rename to window--resize-reset-1.
11338 (resize-mini-window): Rename to window--resize-mini-window.
11339 (resize-subwindows-skip-p): Rename to
11340 window--resize-subwindows-skip-p.
11341 (resize-subwindows-normal): Rename to
11342 window--resize-subwindows-normal.
11343 (resize-subwindows): Rename to window--resize-subwindows.
11344 (resize-other-windows): Rename to window--resize-siblings.
11345 (resize-this-window): Rename to window--resize-this-window.
11346 (resize-root-window): Rename to window--resize-root-window.
11347 (resize-root-window-vertically): Rename to
11348 window--resize-root-window-vertically.
11349 (normalize-buffer-to-display): Rename to
11350 window-normalize-buffer-to-display.
11351 (normalize-buffer-to-switch-to): Rename to
11352 window-normalize-buffer-to-switch-to.
11353 Correspondingly update all callers of the functions listed
11354 above.
11355 (display-buffer-alist, display-buffer-normalize-arguments)
11356 (display-buffer-normalize-options, display-buffer)
11357 (display-buffer-alist-set): Use "function" instead of
11358 "fun-with-args".
11359
1176868d
CY
113602011-06-28 Chong Yidong <cyd@stupidchicken.com>
11361
11362 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
11363 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
11364 debbugs.gnu.org. Mention acknowledgment email.
11365
20a7a65f
LMI
113662011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
11367
11368 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
11369 buffer multibyteness, since it shouldn't matter.
11370
5f45cca5
MR
113712011-06-28 Martin Rudalics <rudalics@gmx.at>
11372
11373 * window.el (display-buffer-in-side-window): Handle dedicated
11374 windows as in display-buffer-reuse-window.
11375 (display-buffer-normalize-alist): Use value of override
11376 specifier.
11377 (display-buffer-normalize-specifiers): Use value of
11378 other-window-means-other-frame specifier.
11379 (display-buffer-alist): Rewrite some texts in widgets.
11380 (display-buffer): Spread arguments when calling function
11381 specified by fun-with-args.
11382
ad85fe1f
DD
113832011-06-28 Deniz Dogan <deniz@dogan.se>
11384
1fa280a3
LM
11385 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
11386 Unnest `let'.
da68c4c8 11387
ad85fe1f
DD
11388 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
11389 selectors (Bug#5732).
ec49bd31 11390 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 11391
a08cc025
JA
113922011-06-27 Jari Aalto <jari.aalto@cante.net>
11393
11394 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
11395 (eshell-ls-date-format): New defcustom.
11396 (eshell-ls-file): Use it.
11397
e2b551c5
SM
113982011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11399
11400 * help-fns.el (describe-variable): Fix message for terminal-local vars.
11401
8982b231
KY
114022011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
11403
11404 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
11405 (ange-ftp-make-tmp-name): New arg.
11406 (ange-ftp-file-local-copy): Use it.
11407
36c9fa27
J
114082011-06-27 Jambunathan K <kjambunathan@gmail.com>
11409
11410 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
11411 no-conversion (Bug#8870).
11412
d68443dc
MR
114132011-06-27 Martin Rudalics <rudalics@gmx.at>
11414
11415 * window.el (window-right, window-left, window-child)
11416 (window-child-count, window-last-child)
11417 (window-iso-combination-p, walk-window-tree-1)
11418 (window-atom-check-1, window-tree-1, delete-window)
11419 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
11420 new naming conventions - window-vchild, window-hchild,
11421 window-next and window-prev are now called window-top-child,
11422 window-left-child, window-next-sibling and window-prev-sibling
11423 respectively.
d615d6d2
MR
11424 (resize-window-reset): Rename to window-resize-reset.
11425 (resize-window-reset-1): Rename to window-resize-reset-1.
11426 (resize-window): Rename to window-resize.
11427 (window-min-height, window-min-width)
11428 (resize-mini-window, resize-this-window, resize-root-window)
11429 (resize-root-window-vertically, adjust-window-trailing-edge)
11430 (enlarge-window, shrink-window, maximize-window)
11431 (minimize-window, delete-window, quit-restore-window)
11432 (split-window, balance-windows, balance-windows-area-adjust)
11433 (balance-windows-area, window-state-put-2)
11434 (display-buffer-even-window-sizes, display-buffer-set-height)
11435 (display-buffer-set-width, set-window-text-height)
11436 (fit-window-to-buffer): Rename all "resize-window" prefixed
11437 calls to use the "window-resize" prefix convention.
11438 (display-buffer-alist): Fix symbol for label specifier.
11439 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
11440 corresponding specifier.
11441 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 11442
b6458526
VB
114432011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
11444
11445 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
11446 convention.
11447 (ses-call-printer): Does not pass an empty string to formatter when the
11448 cell is empty to keep from barking printer Calc math-format-value.
11449
d31fd9ac
RS
114502011-06-27 Richard Stallman <rms@gnu.org>
11451
43d5bf84
RS
11452 * battery.el (battery-mode-line-limit): New variable.
11453 (battery-update): Handle it.
11454
d31fd9ac
RS
11455 * mail/rmailmm.el (rmail-mime-process-multipart):
11456 Handle truncated messages.
11457
819a6054
GM
114582011-06-27 Glenn Morris <rgm@gnu.org>
11459
11460 * progmodes/flymake.el (flymake-err-line-patterns):
11461 Allow for column numbers in the ant/javac pattern. (Bug#8866)
11462
cedc73f2
VB
114632011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
11464
819a6054 11465 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
11466 (ses--clean-!, ses--clean-_): New functions.
11467 (ses-range): Add configurability of readout order, and conversion
11468 to Calc vector.
11469
5e5d49b6
VB
11470 * ses.el (ses-repair-cell-reference-all): New function.
11471 (ses-cell-symbol): Set macro as safe, so that it can be used in
11472 formulas.
11473
56e6cc31 11474 * ses.el: Update cycle detection algorithm.
90ca8b49 11475 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 11476 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
11477 (ses-set-localvars): New function.
11478 (ses-make-cell): Add property-list as a cell element.
11479 (ses-cell-property-get-fun, ses-cell-property-get)
11480 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
11481 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
11482 New functions.
90ca8b49
VB
11483 (ses-cell-property-set, ses-cell-property-pop)
11484 (ses-cell-property-get-handle): New macro.
11485 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
11486 New aliases, used for code readability.
11487 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
11488 cycle detection.
11489 (ses-self-reference-early-detection): New defcustom.
fac916bf 11490 (ses-formula-references): Robustify against self-referring cells.
90ca8b49
VB
11491 (ses-mode): Use ses-set-localvars.
11492 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
11493 before lauching the update processing.
11494 (ses-initialize-Dijkstra-attempt): New function.
11495 (ses-recalculate-cell): Update for cycle detection based on
11496 Dijkstra algorithm.
11497
2bb63e81
VB
11498 * ses.el: Fix commenting and indenting convention.
11499
c9d29fb8
SM
115002011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11501
11502 * bs.el (bs-cycle-next): Complete last change.
11503
d8e4b68b
JB
115042011-06-27 Drew Adams <drew.adams@oracle.com>
11505
11506 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
11507
40098786
LMI
115082011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11509
c9d29fb8
SM
11510 * net/network-stream.el (network-stream-open-starttls):
11511 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
11512 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
11513
40098786
LMI
11514 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
11515 to binary to possibly avoid line encoding issues on Windows (among
11516 other things).
11517
468d09d4
LMI
115182011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11519
11520 * net/network-stream.el (open-network-stream): Return an :error
11521 saying what the problem was, if possible.
11522
11523 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
11524 server.
11525
11526 * net/network-stream.el (network-stream-open-starttls): If we
11527 wanted to use STARTTLS, and the server offered it, but we weren't
11528 able to because we had no STARTTLS support, then close the connection.
11529 (open-network-stream): Return an :error element, if present.
11530
16f07dd7
CY
115312011-06-26 Chong Yidong <cyd@stupidchicken.com>
11532
88821ca0
CY
11533 * hl-line.el (hl-line-sticky-flag): Doc fix.
11534 (global-hl-line-sticky-flag): New option (Bug#8323).
11535 (global-hl-line-highlight): Obey it.
11536
16f07dd7
CY
11537 * vc/vc.el (vc-revert-show-diff): Default to t.
11538
6b5ccddf
KM
115392011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
11540
c9d29fb8
SM
11541 * allout-widgets.el (allout-widgets-post-command-business):
11542 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
11543 undecorated when an isearch is continued past, and isearch
11544 automatically collapses them. This leads to "widget leaks", where
11545 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
11546 hidden widgets can slow down cursor travel, substantially.
11547 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
11548 so we're doing without this nicety.
11549
11550 (allout-widgets-tally-string): Don't try to do a hash-table-count
11551 of allout-widgets-tally when it's nil. This eliminates spurious "Error
11552 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
11553 *Messages* when allout-widgets-maintain-tally is t.
11554
355f2e07
MR
115552011-06-26 Martin Rudalics <rudalics@gmx.at>
11556
11557 * window.el (display-buffer-normalize-argument): Rename to
11558 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
11559 LABEL argument. Respect special-display-function when popping up
11560 a new frame. Fix code searching for a window showing the buffer
11561 on another frame.
c9d29fb8
SM
11562 (display-buffer-normalize-specifiers):
11563 Call display-buffer-normalize-arguments.
355f2e07
MR
11564 (display-buffer-in-window): Don't undedicate the window if its
11565 buffer remains the same.
11566 Reported by Drew Adams <drew.adams@oracle.com>.
11567 (display-buffer-alist): Add choice for same-window macro
11568 specfier.
11569 (display-buffer): Mention special meaning of LABEL argument in
11570 doc-string. Fix quoting. Don't pop up a new frame even as
11571 fallback.
11572
7ca8fc42
JB
115732011-06-26 Juanma Barranquero <lekktu@gmail.com>
11574
11575 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
11576 avoid deleting the current window in some cases (bug#8911).
11577
bc312254
AS
115782011-06-26 Andreas Schwab <schwab@linux-m68k.org>
11579
11580 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
11581 (Bug#8934)
11582
2db18f3f
LMI
115832011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11584
c9d29fb8
SM
11585 * net/network-stream.el (network-stream-open-starttls):
11586 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
11587 (network-stream-open-tls): Ditto.
11588
6302e0d3
LL
115892011-06-26 Leo Liu <sdl.web@gmail.com>
11590
11591 * register.el (registerv): New struct.
11592 (registerv-make): New function.
c9d29fb8
SM
11593 (jump-to-register, describe-register-1, insert-register):
11594 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
11595 struct. (Bug#8415)
11596
5fdd4046
CY
115972011-06-26 Chong Yidong <cyd@stupidchicken.com>
11598
2afef60a
CY
11599 * vc/vc.el (vc-revert-show-diff): New defcustom.
11600 (vc-diff-internal): New arg specifying diff buffer.
11601 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
11602 reuse an existing *vc-diff* buffer (Bug#8927).
11603
5fdd4046
CY
11604 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
11605
e93db24a
GM
116062011-06-26 Glenn Morris <rgm@gnu.org>
11607
11608 * progmodes/f90.el (f90-critical-indent): New option.
11609 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
11610 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
11611 (f90-mode): Doc fix.
11612 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
11613 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
11614 (f90-beginning-of-block, f90-next-block, f90-indent-region)
11615 (f90-match-end): Handle block, critical.
11616
eefff499
GM
116172011-06-25 Glenn Morris <rgm@gnu.org>
11618
f6ba4cc9
GM
11619 * calendar/diary-lib.el (diary-included-files): Doc fix.
11620 (diary-include-files): New function, extracted from
11621 diary-include-other-diary-files and diary-mark-included-diary-files.
11622 (diary-include-other-diary-files, diary-mark-included-diary-files):
11623 Just call diary-include-files.
11624 (diary-mark-entries): Reset diary-included-files on first call.
11625
16712304
GM
11626 * calendar/diary-lib.el (diary-mark-entries)
11627 (diary-mark-included-diary-files):
11628 Visit included diary-files in temp buffers.
11629
5d8e0d43
GM
11630 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
11631 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
11632 (f90-start-block-re, f90-imenu-generic-expression)
11633 (f90-looking-at-program-block-start, f90-no-block-limit):
11634 Add support for submodules.
11635
ccf7a5d5
GM
11636 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
11637 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 11638
11fdef7d 116392011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
11640
11641 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
11642 buffer-file-type before setting its value, to avoid disastrous
eefff499 11643 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 11644
74f53697
JB
116452011-06-25 Juanma Barranquero <lekktu@gmail.com>
11646
11647 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
11648
11649 * ses.el (ses-unload-function):
11650 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
11651
11652 * proced.el (proced-unload-function):
11653 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
11654
18a4ce5e
AR
116552011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
11656
11657 * server.el (server-create-window-system-frame): Add parameters arg.
11658 (server-process-filter): Doc fix. Handle frame-parameters.
11659
519d22cc
JB
116602011-06-25 Juanma Barranquero <lekktu@gmail.com>
11661
11662 Fix bug#8730, bug#8781.
11663
11664 * loadhist.el (unload--set-major-mode): New function.
11665 (unload-feature): Use it.
11666
11667 * progmodes/python.el (python-after-info-look): Add autoload cookie.
11668 (python-unload-function): New function.
11669
c206f5b0
SM
116702011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11671
11672 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
11673
f9ad64f3
GS
116742011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
11675
11676 * net/browse-url.el (browse-url-firefox-program): Add icecat to
11677 the candidates list.
11678
7d0da90e
JB
116792011-06-24 Juanma Barranquero <lekktu@gmail.com>
11680
11681 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
11682
14b4e83d
RS
116832011-06-23 Richard Stallman <rms@gnu.org>
11684
11685 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
11686 (rmail-variables): Set next-error-move-function.
11687 (rmail-what-message): Take argument POS.
11688 (rmail-next-error-move): New function.
11689
273d2baf
SM
116902011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
11691
11692 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
11693 messages for adjacent non-terminals.
11694
56c2cc9a
RS
116952011-06-23 Richard Stallman <rms@gnu.org>
11696
11697 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 11698 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
11699 (rmail-start-mail): Don't specify use of rmail-mail-return;
11700 that's done by mail-bury now.
11701 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 11702
d59eb518
MA
117032011-06-23 Michael Albinus <michael.albinus@gmx.de>
11704
11705 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
11706 SIZE is a number.
11707
02cfc6d6
MR
117082011-06-23 Martin Rudalics <rudalics@gmx.at>
11709
11710 * window.el (get-lru-window, get-mru-window)
11711 (get-largest-window): Never return a minibuffer window.
11712 (display-buffer-pop-up-window): Fix a bug that could lead to
11713 reusing the minibuffer window.
11714 (display-buffer): Pass original specifier argument to
11715 display-buffer-function instead of the normalized one.
11716 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
11717
4e323265
LL
117182011-06-22 Leo Liu <sdl.web@gmail.com>
11719
11720 * minibuffer.el (completing-read-function)
11721 (completing-read-default): Move from minibuf.c
11722
7a70468f
RS
117232011-06-22 Richard Stallman <rms@gnu.org>
11724
50718fc2
RS
11725 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
11726 to Rmail even if not started by a special Rmail command.
11727
7a70468f
RS
11728 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
11729 Copy the buffer currently showing just one message.
11730
297dde5a
RW
117312011-06-22 Roland Winkler <winkler@gnu.org>
11732
11733 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
11734 (bibtex-clean-entry): First delete the old key so that a
11735 customized algorithm for generating the new key does not get
11736 confused by the old key.
11737 (bibtex-url): Obey regexp of first step.
11738 (bibtex-search-entries): Do not use add-to-list with local
11739 list-var.
11740
97bb1093
LMI
117412011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
11742
11743 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
11744 stored a user name, then query for the password first, instead of
11745 waiting for SMTP to give an error message and the trying again.
11746
1c0f1a19
JD
117472011-06-22 Lawrence Mitchell <wence@gmx.li>
11748
11749 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
11750 BUFFER in call-process.
11751
396f7c9d
LMI
117522011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
11753
11754 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
11755 QUIT twice.
ddb7ffee
LMI
11756 (smtpmail-try-auth-methods): Require user name and password from
11757 auth-source.
396f7c9d 11758
8998d1b3
MR
117592011-06-22 Martin Rudalics <rudalics@gmx.at>
11760
11761 * window.el (display-buffer-default-specifiers)
11762 (display-buffer-alist): Remove entries for pop-up-frame-alist.
11763 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 11764 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
11765
11766 * frame.el (pop-up-frame-alist, pop-up-frame-function)
11767 (special-display-frame-alist, special-display-popup-frame):
11768 Remove duplicate declarations. These are now in window.el.
11769
4ea31e07
LMI
117702011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11771
c9d29fb8
SM
11772 * mail/smtpmail.el (smtpmail-via-smtp):
11773 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
11774 server supports it. SMTP servers that support STARTTLS commonly
11775 require it.
11776
11777 * net/network-stream.el (network-stream-open-starttls): Support
11778 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 11779 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 11780
95f41d9a
LMI
11781 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
11782 upgrades with `open-network-stream', and rely solely on
11783 auth-source for all credentials. Big changes throughout the file,
11784 but in particular:
c9d29fb8
SM
11785 (smtpmail-auth-credentials): Remove.
11786 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
11787 (smtpmail-via-smtp): Check for servers saying they want AUTH after
11788 MAIL FROM, too.
95f41d9a 11789
c9d29fb8
SM
11790 * net/network-stream.el (network-stream-open-starttls):
11791 Provide support for client certificates both for external and built-in
4ea31e07
LMI
11792 STARTTLS.
11793 (auth-source): Require.
11794 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
11795 (network-stream-certificate): Change cert-cert to cert and
11796 cert-key to key.
4ea31e07 11797
065ec2c7
MA
117982011-06-21 Michael Albinus <michael.albinus@gmx.de>
11799
11800 * net/tramp-cache.el (top): Don't load the persistency file when
11801 "emacs -Q" has been called.
11802
cd93b359
DR
118032011-06-21 Tim Harper <timcharper@gmail.com>
11804
d8e4b68b
JB
11805 * term/ns-win.el (ns-initialize-window-system):
11806 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
11807 resource to NO as it is not yet supported by the NS port.
11808
ae9c0411
JB
118092011-06-21 Juanma Barranquero <lekktu@gmail.com>
11810
11811 * misc.el (list-dynamic-libraries--refresh): Compute header here...
11812 (list-dynamic-libraries): ...not here.
11813
7f3f739f
LL
118142011-06-21 Leo Liu <sdl.web@gmail.com>
11815
11816 * subr.el (sha1): Implement sha1 using secure-hash.
11817
327c8fb1
MR
118182011-06-21 Martin Rudalics <rudalics@gmx.at>
11819
11820 * window.el (display-buffer-alist): In default value do not
11821 enforce searching a window on any but the selected frame.
11822 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
11823 (display-buffer-select-window): Remove function.
11824 (display-buffer-in-window): When a window on another frame gets
11825 reused, do not select it any more but just raise its frame if
11826 necessary (Bug#8851) and (Bug#8856).
11827 (display-buffer-normalize-options): Handle pop-up-frames related
11828 options more faithfully.
11829 (pop-to-buffer): Don't rely on `display-buffer' selecting the
11830 window if it is on another frame.
c9d29fb8
SM
11831 (display-buffer-alist, display-buffer-default-specifiers):
11832 Don't make new frame unsplittable by default.
9e9de014
MR
11833 (display-buffer-normalize-argument): Fix doc-string typo and use
11834 'same-frame-other-window instead of 'other-window when associating
11835 with display-buffer-macro-specifiers.
327c8fb1 11836
7cf3f556
VB
118372011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
11838
11839 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
11840 New functions.
11841 (5x5-mode-map, 5x5-mode-menu): Bind them.
11842 (5x5-draw-grid): Tweak the solver's rendering.
11843
60a406cf
SM
118442011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11845
11846 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
11847 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
11848
d8e4b68b 118492011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
11850
11851 * menu-bar.el: Use function variable instead of switch-to-buffer.
11852 (menu-bar-select-buffer-function): New variable.
60a406cf 11853 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 11854
478d6f95
SM
118552011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11856
11857 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
11858 variable's status.
11859
ca530739
JD
118602011-06-20 Jan Djärv <jan.h.d@swipnet.se>
11861
11862 * x-dnd.el (x-dnd-version-from-flags)
11863 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
11864 and long as number (Bug#8899).
11865 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
11866
bcd70d97
SM
118672011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11868
60a406cf 11869 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
11870 (completion-try-completion, completion-all-completions): Compute the
11871 metadata argument if it's missing; make it optional (bug#8795).
11872
60a406cf 11873 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
11874 (widget-complete): Use new :completion-function property.
11875 (widget-completions-at-point): New function.
11876 (default): Use :completion-function instead of :complete.
60a406cf
SM
11877 (widget-default-completions): Rename from widget-default-complete;
11878 Rewrite.
bcd70d97
SM
11879 (widget-string-complete, widget-file-complete, widget-color-complete):
11880 Remove functions.
11881 (file, symbol, function, variable, coding-system, color):
11882 * international/mule-cmds.el (default-input-method, charset)
11883 (language-info-custom-alist):
11884 * cus-edit.el (face): Use new property :completions.
11885
11886 * progmodes/pascal.el (pascal-completions-at-point): New function.
11887 (pascal-mode): Use it.
11888 (pascal-mode-map): Use completion-at-point.
11889 (pascal-toggle-completions): Make obsolete.
11890 (pascal-complete-word, pascal-show-completions):
11891 * progmodes/octave-mod.el (octave-complete-symbol):
11892 Redefine as obsolete alias.
11893 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
11894 Signal absence of completion info for old Octave,
11895 (inferior-octave-complete): Redefine as obsolete alias.
11896 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
11897 (meta-completions-at-point): Rename from meta-complete-symbol and
11898 adapt it for use on completion-at-point-functions.
11899 (meta-common-mode): Use it.
11900 (meta-looking-at-backward, meta-match-buffer): Remove.
11901 (meta-complete-symbol): Redefine as obsolete alias.
11902 (meta-common-mode-map): Use completion-at-point.
11903 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
11904 (makefile-mode-map): Use completion-at-point.
11905 (makefile-completions-at-point): Rename from makefile-complete and
11906 adapt it for use on completion-at-point-functions.
11907 (makefile-mode): Use it.
11908 (makefile-complete): Redefine as obsolete alias.
11909
aebf69c8
DD
119102011-06-20 Deniz Dogan <deniz@dogan.se>
11911
11912 * net/rcirc.el: Delete trailing whitespaces once and for all.
11913
bfbbb27d
DC
119142011-06-20 Daniel Colascione <dan.colascione@gmail.com>
11915
11916 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
11917
d264a46b
CY
119182011-06-19 Chong Yidong <cyd@stupidchicken.com>
11919
4ca009e5
CY
11920 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
11921
d264a46b
CY
11922 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
11923
fbf5b3ce
MR
119242011-06-19 Martin Rudalics <rudalics@gmx.at>
11925
11926 * window.el (display-buffer-other-window-means-other-frame):
11927 Call display-buffer-normalize-alist.
11928 (display-buffer-normalize-specifiers-1): Rename to
11929 display-buffer-normalize-argument. New argument other-frame.
11930 Rewrite.
11931 (display-buffer-normalize-specifiers-2): Rename to
11932 display-buffer-normalize-options.
11933 (display-buffer-normalize-alist-1): New function.
11934 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
11935 display-buffer-normalize-alist.
11936 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
11937 (display-buffer-normalize-options-inhibit): New variable.
11938 (display-buffer-normalize-specifiers): Rewrite calling
11939 display-buffer-normalize-alist,
11940 display-buffer-normalize-argument, and
11941 display-buffer-normalize-options. Don't call the latter if
11942 display-buffer-normalize-options-inhibit is non-nil.
11943 (frame-auto-delete): New option.
11944 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
11945 (window-list-no-nils, window-state-ignored-parameters)
11946 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
11947 (window-state-put-1, window-state-put-2, window-state-put):
11948 New functions.
9a028c23
MR
11949 (display-buffer-normalize-options): Move special-display-p group
11950 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 11951
6d10d800
CY
119522011-06-18 Chong Yidong <cyd@stupidchicken.com>
11953
6420d28b
CY
11954 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
11955 groups (Bug#8776).
11956 (rx-submatch-n): New function.
11957 (rx): Document it.
11958
ddb8b596
CY
11959 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
11960 (Bug#8768).
11961
11962 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
11963
77080289
CY
11964 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
11965
61dfb316
CY
11966 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
11967 anytime existing face settings are present (Bug#8889).
11968
6d10d800
CY
11969 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
11970 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
11971 Remove unused argument.
11972
be3fb2b8
MR
119732011-06-18 Martin Rudalics <rudalics@gmx.at>
11974
bcd70d97
SM
11975 * window.el (display-buffer-default-specifiers):
11976 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
11977 pop-up-window-min-width, and another reuse-window specifier
11978 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
11979 (display-buffer-normalize-specifiers-2):
11980 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
11981 pop-up-windows is unset. Add a reuse-window specifier for the
11982 case popping up a new window fails.
11983 (special-display-popup-frame): Remove double quoting.
28dec25a 11984 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 11985
1c6d8c76
SM
119862011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
11987
11988 * shell.el (shell-completion-vars): Set pcomplete-termination-string
11989 according to comint-completion-addsuffix.
11990
11991 * pcomplete.el: Convert to lexical binding and fix bug#8819.
11992 (pcomplete-suffix-list): Mark as obsolete.
11993 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
11994 pcomplete-seen in the closure.
11995 (pcomplete-comint-setup): Setup completion-at-point as well.
11996 (pcomplete--entries): New function.
11997 (pcomplete--env-regexp): New var.
11998 (pcomplete-entries): Rewrite to work with partial-completion and
11999 without relying on pcomplete-suffix-list.
12000 (pcomplete-pare-list): Remove, unused.
12001
25aef8b8
MR
120022011-06-17 Martin Rudalics <rudalics@gmx.at>
12003
12004 * window.el (display-buffer-alist): Set pop-up-window-min-height
12005 and pop-up-window-min-width in default value. Reported by
12006 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
12007 other-window-means-other-frame.
12008 (display-buffer-macro-specifiers): Comment out entry for
12009 other-window specifier.
12010 (display-buffer-other-window-means-other-frame): New function.
12011 (display-buffer-normalize-specifiers-1): New arguments
12012 buffer-name and label. Treat other-window case specially.
12013 (display-buffer-normalize-specifiers-2): Treat other-window case
12014 specially.
12015 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
12016 (display-buffer-normalize-specifiers):
12017 Call display-buffer-normalize-specifiers-3.
25aef8b8 12018
dbad4f69
MR
120192011-06-17 Martin Rudalics <rudalics@gmx.at>
12020
12021 * window.el (same-window-p): Fix two typos introduced when
12022 adding with-no-warnings.
d1067961
MR
12023 (display-buffer-normalize-specifiers-1): Don't check
12024 pop-up-frames for 'unset initialization.
12025 (display-buffer-normalize-specifiers-2): Major rewrite using
12026 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
12027 (pop-up-frames, display-buffer-reuse-frames)
12028 (display-buffer-mark-dedicated): Don't initialize to 'unset.
12029 Suggested by David Engster <deng@randomsample.de>.
12030 (even-window-heights): Initialize to 'unset.
12031 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
12032 (display-buffer-macro-specifiers): Don't pop up a new frame in the
12033 other window case.
dbad4f69 12034
9b9c9e3a
MR
120352011-06-16 Martin Rudalics <rudalics@gmx.at>
12036
bcd70d97
SM
12037 * window.el (display-buffer-normalize-specifiers-1):
12038 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 12039 second argument of display-buffer (Bug#8865).
981d5c09
MR
12040 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
12041 (switch-to-buffer-other-window-same-frame)
12042 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
12043 Adams (Bug#8875).
9c2755e9
MR
12044 (display-buffer): Don't check noninteractive when calling
12045 display-buffer-pop-up-frame.
12046 (display-buffer-pop-up-frame): Never pop up a frame in
12047 noninteractive mode (Bug#8857).
67222e1d
MR
12048 (enlarge-window, shrink-window): Don't report an error when the
12049 window can't be resized as requested (Bug#8862).
9b9c9e3a 12050
2b75be67
SM
120512011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12052
9ffdd3ba
SM
12053 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
12054
cb581a67
SM
12055 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
12056
2b75be67
SM
12057 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
12058
8c0e3589
AM
120592011-06-15 Alan Mackenzie <acm@muc.de>
12060
cb581a67
SM
12061 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
12062 for declarators, disable knr checking to speed up for normal files.
12063 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 12064
b96e6cde
LMI
120652011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12066
4bba86e6
LMI
12067 * net/network-stream.el (open-network-stream): Add the keyword
12068 :always-query-capabilities for the case where you want to force a
12069 `plain' network connection, but the protocol still requires the
12070 capabilitiy command (i.e., SMTP and EHLO).
12071
2b75be67 12072 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
12073 consistency with other `-live-p' functions.
12074
efdcdbf8
SM
120752011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12076
12077 * window.el (same-window-buffer-names, same-window-regexps)
12078 (special-display-frame-alist, special-display-popup-frame)
12079 (special-display-function, special-display-buffer-names)
12080 (special-display-regexps, pop-up-frame-alist)
12081 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
12082 (pop-up-windows, split-window-preferred-function)
12083 (split-height-threshold, split-width-threshold, even-window-heights)
12084 (display-buffer-mark-dedicated): Don't encourage the use of
12085 display-buffer-alist from Elisp code.
12086
c5cde042
DN
120872011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
12088
12089 * progmodes/python.el (python-mode): Derive from prog-mode.
12090 * progmodes/ps-mode.el (ps-mode):
12091 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 12092 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
12093 * progmodes/ld-script.el (ld-script-mode): Likewise.
12094
baa1c9ab
MR
120952011-06-15 Martin Rudalics <rudalics@gmx.at>
12096
12097 * window.el (display-buffer-alist): Trim default value to avoid
12098 popping up a new frame (Bug#8857) or reusing an arbitrary window
12099 on another frame.
12100 (display-buffer): Do not fall back on popping up a new frame in
12101 batch mode (Bug#8857).
12102
c5dd5a51
CY
121032011-06-14 Chong Yidong <cyd@stupidchicken.com>
12104
12105 * cus-theme.el (describe-theme-1): Use custom-theme-p.
12106 (custom-theme-summary): New function.
12107 (customize-themes): Use it.
12108
d647b7c4
GM
121092011-06-13 Glenn Morris <rgm@gnu.org>
12110
12111 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
12112
9481c002
MR
121132011-06-13 Martin Rudalics <rudalics@gmx.at>
12114
357f93d2
MR
12115 * help.el (help-window): Remove variable.
12116 (help-window-point-marker, temp-buffer-max-height)
12117 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
12118 (help-print-return-message): Don't set help-window.
12119 (resize-temp-buffer-window): Rewrite cod eand doc-string.
12120 (help-window-setup-finish): Remove.
12121 (help-window-display-message, help-window-setup)
12122 (with-help-window): Major rewrite based on new
12123 display-buffer-window variable.
12124
12125 * help-mode.el (help-mode-finish): Remove help-window related
12126 code.
12127
12128 * view.el (view-exits-all-viewing-windows): Remove reference to
12129 view-return-to-alist in doc-string.
12130 (view-return-to-alist): Make obsolete.
12131 (view-buffer): Call pop-to-buffer-same-window and remove
12132 undo-window code.
12133 (view-buffer-other-window): Call pop-to-buffer-other-window and
12134 simplify code. Ignore second argument.
12135 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
12136 simplify code. Ignore second argument.
12137 (view-return-to-alist-update): Make obsolete.
12138 (view-mode-enter): Rename second argument to QUIT-RESTORE.
12139 Rewrite using quit-restore window parameters.
2b75be67
SM
12140 (view-mode-exit): Rename second argument to EXIT-ONLY.
12141 Rewrite using quit-restore-window.
357f93d2
MR
12142 (View-exit, View-exit-and-edit, View-leave, View-quit)
12143 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
12144 appropriate arguments.
12145 (view-end-message): Use quit-restore window parameter.
12146
9481c002
MR
12147 * window.el (display-buffer-function): Rewrite doc-string.
12148 (display-buffer-window, display-buffer-alist): New variables.
12149 (display-buffer-split-specifiers)
12150 (display-buffer-side-specifiers)
12151 (display-buffer-macro-specifiers): New constants.
12152 (display-buffer-even-window-sizes, display-buffer-set-height)
12153 (display-buffer-set-width, display-buffer-select-window)
12154 (display-buffer-in-window, display-buffer-reuse-window)
12155 (display-buffer-split-window-1, display-buffer-split-window)
12156 (display-buffer-split-atom-window, display-buffer-pop-up-window)
12157 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
12158 (display-buffer-in-side-window, normalize-buffer-to-display)
12159 (display-buffer-normalize-specifiers-1)
12160 (display-buffer-normalize-specifiers-2)
2b75be67
SM
12161 (display-buffer-normalize-specifiers, display-buffer-frame):
12162 New functions.
9481c002
MR
12163 (display-buffer): Major rewrite.
12164 (display-buffer-other-window, display-buffer-other-frame)
12165 (pop-to-buffer, switch-to-buffer-other-window)
12166 (switch-to-buffer-other-frame): Rewrite.
12167 (display-buffer-same-window, display-buffer-same-frame)
12168 (display-buffer-same-frame-other-window)
12169 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
12170 (pop-to-buffer-other-window)
12171 (pop-to-buffer-same-frame-other-window)
12172 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
12173 (switch-to-buffer-other-window-same-frame): New functions.
12174 (same-window-p, special-display-p): Rewrite disabling warnings.
12175 Make obsolete.
12176 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12177 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
12178 Make obsolete
12179 (same-window-buffer-names, same-window-regexps)
12180 (special-display-frame-alist, special-display-popup-frame)
12181 (special-display-function, special-display-buffer-names)
12182 (special-display-regexps, pop-up-frame-alist)
12183 (pop-up-frame-function, split-window-preferred-function)
12184 (split-height-threshold, split-width-threshold)
12185 (even-window-heights): Make obsolete.
12186
9db51aca
GM
121872011-06-12 Glenn Morris <rgm@gnu.org>
12188
12189 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 12190 Misc simplifications.
9db51aca 12191
39cffb44
MR
121922011-06-12 Martin Rudalics <rudalics@gmx.at>
12193
12194 * window.el (window-safely-shrinkable-p): Restore function which
12195 was inadvertently removed in change from 2011-06-11. Declare as
12196 obsolete.
12197
2b75be67
SM
12198 * calendar/calendar.el (calendar-generate-window):
12199 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
12200 window-safely-shrinkable-p.
12201
a8955be7
GM
122022011-06-12 Glenn Morris <rgm@gnu.org>
12203
12204 * progmodes/fortran.el (fortran-mode-syntax-table):
12205 * progmodes/f90.el (f90-mode-syntax-table):
12206 Set % to punctuation. (Bug#8820)
12207 (f90-find-tag-default): Remove, no longer needed.
12208
f0d4059d
DC
122092011-06-12 Daniel Colascione <dan.colascione@gmail.com>
12210
12211 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
12212
1100a63c
CY
122132011-06-11 Chong Yidong <cyd@stupidchicken.com>
12214
12215 * image.el (image-animated-p): Return animation delay in seconds.
12216 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
12217 (image-animate-timeout): Remove DELAY argument. Don't assume
12218 every subimage has the same delay; get it from image-animated-p.
12219 (image-animate): Caller changed.
12220
def722bf
MA
122212011-06-11 Michael Albinus <michael.albinus@gmx.de>
12222
12223 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
12224 to ignored backtrace functions.
12225
0a2bb1a9
GM
122262011-06-11 Glenn Morris <rgm@gnu.org>
12227
12228 * calendar/appt.el (appt-disp-window-function): Doc fix.
12229 (appt-check): Handle overlapping appointments. (Bug#8337)
12230
6198ccd0
MR
122312011-06-11 Martin Rudalics <rudalics@gmx.at>
12232
12233 * window.el (window-tree-1, window-tree): New functions, moving
12234 the latter to window.el.
12235 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
12236 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
12237 (bw-refresh-edges): Remove.
12238 (balance-windows-1, balance-windows-2): New functions.
12239 (balance-windows): Rewrite in terms of window tree functions,
12240 balance-windows-1 and balance-windows-2.
12241 (bw-adjust-window): Remove.
12242 (balance-windows-area-adjust): New function with functionality of
12243 bw-adjust-window but using resize-window.
2b75be67
SM
12244 (set-window-text-height): Rewrite doc-string.
12245 Use normalize-live-window and resize-window.
12246 (enlarge-window-horizontally, shrink-window-horizontally):
12247 Rename argument to DELTA.
6198ccd0
MR
12248 (window-buffer-height): New function.
12249 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
12250 Rewrite using new window resize routines.
2b75be67
SM
12251 (kill-buffer-and-window, mouse-autoselect-window-select):
12252 Use ignore-errors instead of condition-case.
6198ccd0
MR
12253 (quit-window): Call delete-frame instead of delete-windows-on
12254 for the only buffer on frame.
12255
9397e56f
MR
122562011-06-10 Martin Rudalics <rudalics@gmx.at>
12257
12258 * loadup.el (top-level): Load window before files for the sake
12259 of replace-buffer-in-windows.
12260
12261 * files.el (read-buffer-to-switch)
12262 (switch-to-buffer-other-window)
2b75be67
SM
12263 (switch-to-buffer-other-frame, display-buffer-other-frame):
12264 Move to window.el.
9397e56f
MR
12265
12266 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
12267 (previous-buffer): Move to window.el.
12268
12269 * bindings.el (unbury-buffer): Move to window.el.
12270
12271 * window.el (delete-other-windows-vertically): Move after
12272 definition of delete-other-windows.
12273 (other-window, delete-windows-on, replace-buffer-in-windows):
12274 Move here from window.c.
12275 (record-window-buffer, unrecord-window-buffer)
12276 (set-window-buffer-start-and-point, switch-to-prev-buffer)
12277 (switch-to-next-buffer): New functions.
12278 (get-next-valid-buffer, last-buffer, next-buffer): Move here
12279 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
12280 (previous-buffer): Move here from simple.el.
12281 Call switch-to-prev-buffer.
9397e56f
MR
12282 (bury-buffer): Move here from buffer.c. Switch to previous
12283 buffer when window cannot be deleted.
12284 (unbury-buffer): Move here from bindings.el.
12285 (ctl-x-map): Move binding for other-window from window.c to
12286 here.
12287 (read-buffer-to-switch, switch-to-buffer-other-window)
12288 (switch-to-buffer-other-frame): Move here from files.el.
12289 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
12290 (switch-to-buffer): Move here from buffer.c.
12291 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 12292
562dd5e9
MR
122932011-06-10 Martin Rudalics <rudalics@gmx.at>
12294
12295 * window.el (window-min-height, window-min-width): Move here
12296 from window.c. Add defcustoms and rewrite doc-strings.
12297 (resize-mini-window, resize-window): New functions.
12298 (adjust-window-trailing-edge, enlarge-window, shrink-window):
12299 Move here from window.c.
12300 (maximize-window, minimize-window): New functions.
12301 (delete-window, delete-other-windows, split-window): Move here
12302 from window.c.
12303 (window-split-min-size): New function.
12304 (split-window-keep-point): Mention split-window-above-each-other
12305 instead of split-window-vertically.
2b75be67 12306 (split-window-above-each-other, split-window-vertically):
1154d12e
JB
12307 Rename split-window-vertically to split-window-above-each-other
12308 and provide defalias for old definition.
12309 (split-window-side-by-side, split-window-horizontally):
12310 Rename split-window-horizontally to split-window-side-by-side
12311 and provide defalias for the old definition.
562dd5e9
MR
12312 (ctl-x-map): Move bindings for delete-window,
12313 delete-other-windows and enlarge-window here from window.c.
12314 Replace bindings for split-window-vertically and
12315 split-window-horizontally by bindings for
12316 split-window-above-each-other and split-window-side-by-side.
12317
12318 * cus-start.el (all): Remove entries for window-min-height and
12319 window-min-width. Add entries for window-splits and
12320 window-nest.
12321
f0da764a
GM
123222011-06-09 Glenn Morris <rgm@gnu.org>
12323
80675c21
GM
12324 * calendar/appt.el (appt-mode-line): New function.
12325 (appt-check, appt-disp-window): Use it.
12326
f0da764a
GM
12327 * files.el (hack-one-local-variable-eval-safep):
12328 Allow minor-modes with explicit +/-1 arguments.
12329
59f623b7
TZ
123302011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
12331
12332 * term/xterm.el (xterm): Add defgroup.
12333 (xterm-extra-capabilities): Add defcustom to supply known xterm
12334 capabilities, skip querying them, or query them (default).
12335 (terminal-init-xterm): Use it.
12336 (terminal-init-xterm-modify-other-keys): New function to set up
12337 modifyOtherKeys support to simplify `terminal-init-xterm'.
12338
9aab8e0d
MR
123392011-06-09 Martin Rudalics <rudalics@gmx.at>
12340
12341 * window.el (resize-window-reset, resize-window-reset-1)
12342 (resize-subwindows-skip-p, resize-subwindows-normal)
12343 (resize-subwindows, resize-other-windows, resize-this-window)
12344 (resize-root-window, resize-root-window-vertically)
12345 (window-deletable-p, window-or-subwindow-p)
12346 (frame-root-window-p): New functions.
12347
e8b08aee
GM
123482011-06-09 Glenn Morris <rgm@gnu.org>
12349
12350 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
12351 (ange-ftp-get-files): Use it.
12352
254c37a5
AK
123532011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
12354
12355 * mail/sendmail.el (mail-recover-1, mail-recover):
12356 * files.el (recover-file, recover-session):
12357 Handle dired-listing-switches not being just a single short option.
12358
35d7dbd3
GM
123592011-06-09 Glenn Morris <rgm@gnu.org>
12360
12361 * calendar/appt.el (appt-display-message, appt-disp-window):
12362 Handle lists of appointments.
12363
387522b2
MR
123642011-06-08 Martin Rudalics <rudalics@gmx.at>
12365
2b75be67
SM
12366 * window.el (one-window-p): Move down in code.
12367 Rewrite doc-string.
12368 (window-current-scroll-bars): Rewrite doc-string.
12369 Normalize live window argument.
387522b2
MR
12370 (walk-windows, get-window-with-predicate, count-windows):
12371 Rewrite doc-string. Use window-list-1.
12372 (window-in-direction-2, window-in-direction, get-mru-window):
12373 New functions.
12374
d8e4b68b 123752011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
12376
12377 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
12378 Doc fix (Bug#8713).
12379
123802011-06-08 Chong Yidong <cyd@stupidchicken.com>
12381
12382 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
12383
123842011-06-08 Juanma Barranquero <lekktu@gmail.com>
12385
12386 * loadhist.el (unload-feature-special-hooks):
12387 Add `comint-output-filter-functions'.
12388
0de12c52
IK
123892011-06-08 Ivan Kanis <gnu@kanis.fr>
12390
12391 * calendar/appt.el (appt-check): Move some initializations into the let.
12392
f3d1777e
MR
123932011-06-08 Martin Rudalics <rudalics@gmx.at>
12394
12395 * window.el (window-height): Defalias to window-total-height.
12396 (window-width): Defalias to window-body-width.
12397
18af70d0
CY
123982011-06-07 Chong Yidong <cyd@stupidchicken.com>
12399
12400 * image-mode.el (image-toggle-animation): New command.
12401 (image-mode-map): Bind it to RET.
12402 (image-mode): Update message.
12403 (image-toggle-display-image): Avoid a spurious cache flush.
12404 (image-transform-rotation): Doc fix.
12405 (image-transform-properties): Return quickly in the normal case.
12406 (image-animate-loop): Rename from image-animate-max-time.
12407
2b75be67 12408 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
12409 (create-animated-image): Remove unnecessary function.
12410 (image-animate): Rename from image-animate-start. New arg.
2b75be67 12411 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
12412 (image-animate-timer): Use car-safe.
12413 (image-animate-timeout): Rename argument.
12414
190b47e6
MR
124152011-06-07 Martin Rudalics <rudalics@gmx.at>
12416
12417 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
12418 window.c. Rename first argument to ALL-FRAMES.
12419 Rephrase doc-strings.
12420 (get-buffer-window-list): Rewrite using window-list-1.
12421 Rephrase doc-string.
a1511caf
MR
12422 (window-safe-min-height, window-safe-min-width): New constants.
12423 (window-size-ignore, window-min-size, window-min-size-1)
12424 (window-sizable, window-sizable-p, window-size-fixed-1)
12425 (window-size-fixed-p, window-min-delta-1, window-min-delta)
12426 (window-max-delta-1, window-max-delta, window-resizable)
12427 (window-resizable-p, window-total-height, window-total-width)
12428 (window-body-width): New functions.
12429 (window-full-height-p, window-full-width-p): Rewrite using
12430 window-total-size.
12431 (window-body-height): Rewrite using window-body-size.
190b47e6 12432
85cc1f11
MR
124332011-06-06 Martin Rudalics <rudalics@gmx.at>
12434
12435 * window.el (window-right, window-left, window-child)
12436 (window-child-count, window-last-child, window-any-p)
12437 (normalize-live-buffer, normalize-live-frame)
12438 (normalize-any-window, normalize-live-window)
12439 (window-iso-combination-p, window-iso-combined-p)
12440 (window-iso-combinations)
12441 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
12442 (windows-with-parameter, window-with-parameter)
12443 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
12444 (window-atom-check, window-side-check, window-check):
12445 New functions.
85cc1f11
MR
12446 (ignore-window-parameters, window-sides, window-sides-vertical)
12447 (window-sides-slots): New variables.
12448 (window-size-fixed): Move down in code. Minor doc-string fix.
12449
e7156492
AS
124502011-06-05 Andreas Schwab <schwab@linux-m68k.org>
12451
12452 * comint.el (comint-dynamic-complete-as-filename)
12453 (comint-dynamic-complete-filename): Correctly call
12454 completion-in-region.
12455
7e821d0d
DD
124562011-06-05 Deniz Dogan <deniz@dogan.se>
12457
12458 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
12459 in last change.
12460
ac09b8a1
DD
124612011-06-05 Deniz Dogan <deniz@dogan.se>
12462
12463 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
12464 (rcirc): Use it to prompt for encryption.
12465
34699b85
RW
124662011-06-05 Roland Winkler <winkler@gnu.org>
12467
12468 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
12469 (bibtex-search-entries): New command bound to C-c C-a.
12470 (bibtex-display-entries): New function.
12471
004dedd3
RW
124722011-06-05 Roland Winkler <winkler@gnu.org>
12473
12474 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
12475 (bibtex-insert-kill): After yanking insert newline if necessary.
12476 (bibtex-initialize): Call bibtex-string-files-init only once.
12477 (bibtex-mode): Do not call easy-menu-add.
12478 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
12479 (bibtex-yank): Set arg properly if nil.
12480
022fe7ce
RW
124812011-06-05 Roland Winkler <winkler@gnu.org>
12482
2b75be67
SM
12483 * textmodes/bibtex.el (bibtex-search-entry-globally):
12484 New variable.
022fe7ce
RW
12485 (bibtex-search-entry): Use it.
12486
b7c3692a
RW
124872011-06-05 Roland Winkler <winkler@gnu.org>
12488
12489 * textmodes/bibtex.el (bibtex-entry-format): New option
12490 sort-fields.
12491 (bibtex-format-entry, bibtex-reformat): Honor this option.
12492 (bibtex-parse-entry): Return fields in proper order.
12493
8eda563d
JB
124942011-06-05 Juanma Barranquero <lekktu@gmail.com>
12495
12496 * doc-view.el (doc-view-remove-if): Move computation of result out
12497 of `dolist' to silence misleading lexical-binding warning.
12498
7dbe3dbc
CY
124992011-06-04 Chong Yidong <cyd@stupidchicken.com>
12500
12501 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
12502 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
12503
0c33dd17
MA
125042011-06-04 Michael Albinus <michael.albinus@gmx.de>
12505
12506 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
12507 "SunOS 5.10".
12508
f8f91c2b
MA
125092011-06-04 Michael Albinus <michael.albinus@gmx.de>
12510
12511 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
12512 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
12513 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
12514 (tramp-parse-putty):
12515 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
12516 (tramp-completion-function-alist-ssh)
12517 (tramp-completion-function-alist-telnet)
12518 (tramp-completion-function-alist-su)
12519 (tramp-completion-function-alist-putty): Set `tramp-autoload'
12520 cookie.
12521
12522 * net/tramp-ftp.el:
12523 * net/tramp-sh.el:
12524 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
12525 load "tramp.el" `tramp-set-completion-function'.
12526
e17d9003
SM
125272011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
12528
12529 * shell.el: Require and use pcomplete.
12530 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
12531 (shell-completion-vars): Set pcomplete-default-completion-function.
12532
6c4cab03
DD
125332011-06-04 Deniz Dogan <deniz@dogan.se>
12534
12535 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
12536 `memq' (Bug#8799).
12537
ea9fafe0
SM
125382011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12539
12540 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
12541
b3e945d3
JB
125422011-06-02 Juanma Barranquero <lekktu@gmail.com>
12543
12544 * bs.el (bs--mark-unmark, bs--nth-wrapper):
12545 * mpc.el (mpc-select-extend, mpc-songpointer-context):
12546 * vc/log-view.el (log-view-beginning-of-defun):
12547 * vc/smerge-mode.el (smerge-apply-resolution-patch)
12548 (smerge-refine-forward, smerge-refine-chopup-region):
12549 Silence warning for unused `dotimes' counter variables.
12550
7d520089
SM
125512011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12552
12553 * net/tramp.el (tramp-with-progress-reporter): Rename from
12554 with-progress-reporter. Use `declare'.
12555 * net/tramp-smb.el:
12556 * net/tramp-sh.el:
12557 * net/tramp-gvfs.el: Update all uses.
12558
a1c2400f
JB
125592011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
12560
12561 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
12562 buffer isn't killed before making it current.
12563
2403c841
SM
125642011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12565
12566 Silence various byte-compiler warnings.
12567 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
12568 `access-type' and new obsolescence format.
12569 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
12570 new format.
12571 (byte-compile-check-variable): New `access-type' argument.
12572 Only warn if the access-type is obsolete.
12573 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
12574 (byte-compile-variable-set): Adjust callers.
12575 * help-fns.el (describe-variable): Adjust to new obsolescence format.
12576 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
12577 setting it as obsolete.
12578 * simple.el (minibuffer-completing-symbol):
12579 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
12580 access as obsolete.
12581 * minibuffer.el (minibuffer-completing-file-name): Don't make it
12582 obsolete yet.
12583 * international/quail.el (quail-mouse-choose-completion): Remove unused
12584 code referring to obsolete var.
12585 (quail-choose-completion-string): Remove.
12586 * server.el (server-clients-with, server-kill-buffer-query-function)
12587 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
12588 * proced.el (proced-send-signal):
12589 * emacs-lisp/lisp.el (lisp-complete-symbol):
12590 Replace completion-annotate-function with completion-extra-properties.
12591
2462470b
SM
125922011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12593
fb5b2591
SM
12594 * simple.el (goto-line): Use read-number.
12595 (overriding-map-is-bound): Remove.
12596 (saved-overriding-map): Change default.
12597 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
12598 Take the map as argument.
12599 (universal-argument, negative-argument, digit-argument): Use it.
12600 (restore-overriding-map): Adjust.
12601 (do-auto-fill): Use fill-forward-paragraph.
12602 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
12603
fd6fa53f
SM
12604 * minibuffer.el (minibuffer-inactive-mode-map): New var.
12605 (minibuffer-inactive-mode): New major mode.
12606 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
12607 the *Messages* buffer" hack.
12608 (mouse-popup-menubar): Don't burp if the event is a normal key.
12609
2462470b
SM
12610 Miscellaneous tweaks.
12611 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
12612 lexical scoping as in subr.el's dolist and dotimes.
12613 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
12614 Silence compiler warning.
12615 * thingatpt.el (forward-whitespace): Trivial coding style fix.
12616 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
12617 * international/ccl.el (ccl-compile): Trivial simplification.
12618 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
12619 * emacs-lisp/testcover.el (testcover-end): Remove spurious
12620 `printflag' argument.
12621 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
12622 Purecopy the whole obsolescence data.
12623
108bf785
LL
126242011-06-01 Leo Liu <sdl.web@gmail.com>
12625
12626 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
12627 improve doc-string as suggested by Marco Pessotto
12628 <melmothx@gmail.com>.
12629 (rcirc-print): Fix last change.
12630
30a23501
SM
126312011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12632
12633 * minibuffer.el (complete-with-action): Return nil for the metadata and
12634 boundaries of non-functional tables.
12635 (completion-table-dynamic): Return nil for the metadata.
12636 (completion-table-with-terminator): Add default case, using
12637 complete-with-action.
12638 (completion--metadata): New function.
12639 (completion-all-sorted-completions, minibuffer-completion-help): Use it
12640 to try and avoid pathological performance problems.
12641 (completion--embedded-envvar-table): Return `category' metadata.
12642
bcd54f83
LMI
126432011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
12644
12645 * subr.el (process-alive-p): New tiny convenience function.
12646
e227544d
SM
126472011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12648
12649 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
12650 content but also its previous major mode.
12651
e8296fdc
HE
126522011-05-31 Helmut Eller <eller.helmut@gmail.com>
12653
4d61f28d 12654 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
12655 *Backtrace* buffer when we exit with C-M-c.
12656
620c53a6
SM
126572011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12658
12659 * minibuffer.el: Add metadata method to completion tables.
12660 (completion-category-overrides): New defcustom.
12661 (completion-metadata, completion--field-metadata)
12662 (completion-metadata-get, completion--styles)
12663 (completion--cycle-threshold): New functions.
12664 (completion-try-completion, completion-all-completions):
12665 Add `metadata' argument to choose completion-styles.
12666 (completion--do-completion): Use metadata to choose cycling.
12667 (completion-all-sorted-completions): Use metadata for sorting.
12668 Remove :completion-cycle-penalty which is not needed any more.
12669 (completion--try-word-completion): Add `metadata' argument.
12670 (minibuffer-completion-help): Check metadata for annotation function
12671 and sorting.
12672 (completion-file-name-table): Return `category' metadata.
12673 (minibuffer-completing-file-name): Make obsolete.
12674 * simple.el (minibuffer-completing-symbol): Make obsolete.
12675 * icomplete.el (icomplete-completions): Pass new `metadata' param to
12676 completion-try-completion.
12677
1257e755
SM
126782011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12679
12680 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
12681
3767e706
LL
126822011-05-30 Leo Liu <sdl.web@gmail.com>
12683
12684 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
12685 (rcirc-print): Decode all incoming messages (bug#8744).
12686 (rcirc-decode-coding-system): Allow value nil for automatic coding
12687 system detection.
3767e706 12688
d1a5d56a
GM
126892011-06-01 Glenn Morris <rgm@gnu.org>
12690
12691 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
12692
e8cbec34
CY
126932011-05-29 Chong Yidong <cyd@stupidchicken.com>
12694
12695 * image.el (image-animate-max-time): Allow nil and t values.
12696 Default to nil.
12697 (create-animated-image): Doc fix.
12698 (image-animate-start): Remove second arg; just use
12699 image-animate-max-time.
12700 (image-animate-timeout): Doc fix. Args changed.
12701
12702 * image-mode.el (image-toggle-display-image): Ensure that the
12703 image spec passed to the animate timer is the same object as in
58179cce 12704 the buffer's display property (Bug#6981).
e8cbec34
CY
12705 (image-transform-properties): Doc fix.
12706
12707 * image.el (image-animate-max-time): Default to nil.
12708
159daf87
MR
127092011-05-29 Martin Rudalics <rudalics@gmx.at>
12710
12711 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
12712 entire buffer list (Bug#8184).
12713
d66c4c7c
CY
127142011-05-29 Chong Yidong <cyd@stupidchicken.com>
12715
12716 * image.el (imagemagick-types-inhibit)
12717 (imagemagick-register-types): Doc fix.
12718
80aec780
DD
127192011-05-29 Deniz Dogan <deniz@dogan.se>
12720
12721 * net/rcirc.el (rcirc): Use the user's stored encryption method by
12722 default.
12723
1dd3c2d9
CY
127242011-05-29 Chong Yidong <cyd@stupidchicken.com>
12725
12726 * select.el: Don't perform clipboard-manager saving in hooks;
12727 leave the hooks empty.
12728
60e56523
LL
127292011-05-28 Leo Liu <sdl.web@gmail.com>
12730
12731 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
12732 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
12733 (occur-edit-mode): New major mode (Bug#8463).
12734 (occur-after-change-function): New function.
12735 (occur-engine): Give Occur tags a read-only property.
12736
2b1e1a22
KR
127372011-05-28 Kevin Ryde <user42@zip.com.au>
12738
12739 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
12740
5d344e88
CY
127412011-05-28 Chong Yidong <cyd@stupidchicken.com>
12742
8e6ca83d
CY
12743 * bindings.el (help-echo): Make the initial non-indicator dash
12744 empty on graphical terminals (Bug#7295).
12745
5d344e88
CY
12746 * files.el (auto-mode-alist): Move config rule after the
12747 in-stripping one (Bug#8547).
12748
bfbbace7
CY
12749 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
12750
fbeba6e2
CY
12751 * startup.el (normal-splash-screen): Remove gratuitous mode-line
12752 setting (Bug#8740).
12753
60ed8c72
AA
127542011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
12755
4ac619f0
AA
12756 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
12757 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
12758 (Bug#8539).
60ed8c72 12759
23db196e
CY
127602011-05-28 Chong Yidong <cyd@stupidchicken.com>
12761
12762 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
12763
5012f24c
DK
127642011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
12765
12766 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
12767 (hs-hide-block-at-point, hs-find-block-beginning)
12768 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
12769 (Bug#8279).
12770
6a639b16
GM
127712011-05-28 Glenn Morris <rgm@gnu.org>
12772
12773 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
12774
d43eaf2c
CY
127752011-05-28 Chong Yidong <cyd@stupidchicken.com>
12776
5199bde1
CY
12777 * help-fns.el (describe-function-1): If the function is a derived
12778 major mode, print the parent mode.
12779
d43eaf2c
CY
12780 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
12781 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
12782
423428a8
SM
127832011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
12784
0ff8e1ba 12785 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 12786 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
12787 * progmodes/etags.el (tags-completion-at-point-function):
12788 * info-look.el (info-lookup-completions-at-point): Mark as
12789 non-exclusive.
12790 (info-complete): Adjust accordingly.
12791
423428a8
SM
12792 * info-look.el: Convert to lexical-binding and completion-at-point.
12793 (info-lookup-completions-at-point): New function.
12794 (info-complete): Use it and completion-in-region.
12795
b74aa22b
DA
127962011-05-28 Drew Adams <drew.adams@oracle.com>
12797
12798 * isearch.el: Let M-e start with point at the first mismatched char.
12799 (isearch-fail-pos): New function.
12800 (isearch-edit-string): Use it.
12801
66e2e71d
DK
128022011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
12803
12804 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12805
b1890b0f 128062011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
eb95d01d
TC
12807
12808 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
12809 traversal functions for avl-trees.
12810 (avl-tree--stack): New struct.
12811 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
12812 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
12813 (avl-tree--do-enter): Add optional `updatefun' arg.
12814 Change return value.
eb95d01d 12815 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
12816 (avl-tree--do-delete): Add `test' and `nilflag' args.
12817 Change return value.
eb95d01d
TC
12818 (avl-tree-member): Add optional `nilflag'
12819 (avl-tree-member-p): New function.
12820 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
12821 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
12822 (avl-tree-stack-empty-p): New functions.
12823
3769ddcf
TC
12824 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
12825 avl-tree--del-balance1 and make it work both ways.
12826 (avl-tree--del-balance2): Remove.
12827 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
12828 make it work both ways.
12829 (avl-tree--enter-balance2): Remove.
12830 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
12831 New macros.
12832 (avl-tree--mapc, avl-tree-map): Add direction argument.
12833
eb95d01d 128342011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
12835
12836 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
12837
a9f737ee
CY
128382011-05-27 Chong Yidong <cyd@stupidchicken.com>
12839
12840 * select.el: Support clipboard managers with built-in function
12841 x-clipboard-manager-save, via delete-frame-functions and
12842 kill-emacs-hook.
12843 (xselect-convert-to-targets): Add MULTIPLE target to list.
12844 (xselect-convert-to-save-targets): New function.
12845
c92a1e54
KH
128462011-05-27 Kenichi Handa <handa@m17n.org>
12847
12848 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
12849 let-binding rfc2047-encode-encoded-words to nil.
12850
e145f188
GM
128512011-05-27 Glenn Morris <rgm@gnu.org>
12852
5ec8a862
GM
12853 * mail/emacsbug.el: Don't require url-util.
12854
4b29d9fb
GM
12855 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
12856
e145f188
GM
12857 * files.el (set-auto-mode):
12858 Also respect mode: entries at the end of the file. (Bug#8586)
12859
7d15102b
GM
128602011-05-26 Glenn Morris <rgm@gnu.org>
12861
98f593b8
GM
12862 * files.el (hack-local-variables-prop-line, hack-local-variables):
12863 Downcase mode names, as seems to be traditional.
27b48e63 12864 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 12865
7d15102b
GM
12866 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
12867 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
12868
51d5b4ec
JD
128692011-05-25 Julien Danjou <julien@danjou.info>
12870
12871 * textmodes/rst.el (rst-define-level-faces): Do not define face
12872 symbol if it is already defined.
12873
91513f63
VB
128742011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
12875
12876 * play/5x5.el (5x5-new-game, 5x5-randomize):
12877 Reset 5x5-solver-output to nil when a new grid is cast.
12878 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
12879 these debugging traces, as defmacro breaks the compiled code.
12880
4d90d6d0
DK
128812011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
12882
12883 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12884
e1b90ef6
LL
128852011-05-24 Leo Liu <sdl.web@gmail.com>
12886
12887 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
12888 (vc-bzr-sha1): Adapt.
12889
d8e4b68b 12890 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
12891
12892 * bindings.el: Provide sha1 feature.
12893
db0406bb 128942011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
12895
12896 * mail/sendmail.el: Require `rfc2047'.
12897 (mail-insert-from-field): Do not perform RFC2047 encoding.
12898 (mail-encode-header): New function.
12899 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
12900 buffer to the return value of select-message-coding-system.
12901 Call mail-encode-header.
b8d747b9
KH
12902
12903 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
12904
db0406bb 129052011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 12906
4d90d6d0
DK
12907 * mail/supercite.el (sc-default-cite-frame):
12908 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 12909
eb8a5e9b
GM
129102011-05-24 Glenn Morris <rgm@gnu.org>
12911
f8630703
GM
12912 * progmodes/python.el (brm-menu): Declare.
12913
8831bbed
GM
12914 * emulation/viper.el (viper-set-hooks): Declare.
12915
eb8a5e9b
GM
12916 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
12917 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
12918 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
12919 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
12920 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
12921 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
12922
a2a25d24
SM
129232011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
12924
12925 Add an :exit-function for completion-at-point.
12926
12927 * minibuffer.el (completion--done): New fun.
12928 (completion--do-completion): Use it. New arg `expect-exact'.
12929 (minibuffer-complete, minibuffer-complete-word): Don't output message,
12930 since completion--do-completion does it for us now.
12931 (minibuffer-force-complete): Use completion--done and
12932 completion--replace. Handle sole-completion case with more care.
12933 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
12934 (completion-extra-properties): New var.
12935 (completion-annotate-function): Make obsolete.
12936 (minibuffer-completion-help): Adjust accordingly.
12937 Use completion-list-insert-choice-function.
12938 (completion-at-point, completion-help-at-point):
12939 Bind completion-extra-properties.
12940 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
12941 * simple.el (completion-list-insert-choice-function): New var.
12942 (completion-setup-function): Preserve it.
12943 (choose-completion): Pay attention to it, shuffle the code a bit.
12944 (choose-completion-string): New arg `insert-function'.
12945
12946 * textmodes/bibtex.el: Convert to lexical binding.
12947 (bibtex-mode-map): Use completion-at-point.
12948 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
12949 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
12950 (bibtex-complete): Define as obsolete alias.
12951 (bibtex-complete-internal): Remove.
12952 (bibtex-format-entry): Remove unused sub-group in regexp.
12953 * shell.el (shell--command-completion-data)
12954 (shell-environment-variable-completion):
12955 * pcomplete.el (pcomplete-completions-at-point):
12956 * comint.el (comint--complete-file-name-data): Use :exit-function
12957 instead of completion-table-with-terminator so it also works for
12958 choose-completion.
12959
e44e373d
SM
129602011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
12961
4f91a816
SM
12962 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
12963
782fc819
SM
12964 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
12965 (bug#8710).
12966
e44e373d
SM
12967 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
12968
381987c3
KM
129692011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
12970
12971 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
12972 customization variable and implement: If non-nil, auto-fill will
12973 be inhibited while on topic's header line.
12974
b776bc70
VB
129752011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
12976
12977 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 12978 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
12979 always have a solution in grid size = 5 cases.
12980 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
12981 (5x5-solver-output, 5x5-log-buffer): New vars.
12982 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
12983 Make these variables buffer local to achieve 5x5 multi-session-ness.
12984 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
12985 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
12986 (5x5-solve-suggest): New funs.
12987 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
12988 randomize a grid so that we ensure that there is always a solution.
12989 (5x5-make-random-grid): Allow other movement than flipping.
12990
7de88b6e
KR
129912011-05-23 Kevin Ryde <user42@zip.com.au>
12992
12993 * emacs-lisp/advice.el (ad-read-advised-function):
5a5fa834 12994 Use `function-called-at-point' as the default, if it has
7de88b6e
KR
12995 advice and passes PREDICATE.
12996
b1ef1257
SM
129972011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
12998
bbca48fe
SM
12999 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
13000 byte-compile-lambda if it's actually a lambda.
13001
b1ef1257
SM
13002 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
13003 Fix function quoting. Use backquote better.
13004
92a9cc65
YS
130052011-05-22 Yuanle Song <sylecn@gmail.com>
13006
13007 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
13008 matching (Bug#8516).
13009
f0fb8059
JA
130102011-01-22 Jari Aalto <jari.aalto@cante.net>
13011
13012 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
13013 different face (Bug#8178).
13014
d5b44c93
CY
130152011-05-22 Chong Yidong <cyd@stupidchicken.com>
13016
13017 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
13018 defface (Bug#8144).
13019
79106a44
SM
130202011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
13021
9c848d8a
SM
13022 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
13023 funcall as well (bug#8712). Warn when performing those conversions.
13024 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
13025
79106a44
SM
13026 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
13027
88dfa756
GM
130282011-05-22 Glenn Morris <rgm@gnu.org>
13029
13030 * files.el (hack-local-variables-prop-line): Small simplifications.
13031 (hack-local-variables, hack-local-variables-prop-line):
13032 If MODE-ONLY, return the mode, rather than just `t'.
13033
b7cf2c79
SM
130342011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13035
13036 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
13037
3f1a8558
GM
130382011-05-21 Glenn Morris <rgm@gnu.org>
13039
7e4ccca3
GM
13040 * files.el (hack-local-variables-prop-line, hack-local-variables):
13041 If only interested in the mode, don't bother doing the other stuff.
13042
637d46ca
GM
13043 * image-mode.el (image-after-revert-hook):
13044 Redraw all frames on which the image is visible. (Bug#8567)
13045
973d955b
GM
13046 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
13047
3f1a8558
GM
13048 * wid-edit.el (widget-checklist-match-inline):
13049 Fix 2011-04-19 change. (Bug#8649)
13050
96479927
SM
130512011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
13052
1dcf791f
SM
13053 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
13054 Also allow singlespace after single-letter capitals followed by a dot.
13055
96479927
SM
13056 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
13057 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
13058
35fd0881
N
130592011-05-20 Nix <nix@esperi.org.uk>
13060
13061 * files.el (basic-save-buffer-2):
13062 Fix handling of break-hardlink-on-save with non-existent files.
13063
82745640
DD
130642011-05-19 Deniz Dogan <deniz@dogan.se>
13065
13066 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 13067 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 13068
4a720484
GM
130692011-05-19 Glenn Morris <rgm@gnu.org>
13070
d1f21341
GM
13071 * progmodes/f90.el (f90-type-def-re):
13072 Handle "type, bind(c)". (Bug#8691)
13073
4a720484
GM
13074 * emacs-lisp/autoload.el (batch-update-autoloads):
13075 Set autoload-excludes by parsing loadup.el rather than Makefiles.
13076
2fb0a219
MA
130772011-05-18 Michael Albinus <michael.albinus@gmx.de>
13078
13079 * net/tramp.el (tramp-process-actions): Set "first-password-request"
13080 property for the correct connection in case of multihops.
13081
e565dd37
GM
130822011-05-18 Glenn Morris <rgm@gnu.org>
13083
c2571358 13084 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
13085 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
13086
e565dd37
GM
13087 Rationalize calendar handling of day and month abbrev-arrays.
13088 * calendar/calendar.el (calendar-customized-p): New function.
13089 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
13090 (calendar-day-name-array, calendar-month-name-array): Doc fix.
13091 Add :set function.
13092 (calendar-abbrev-length, calendar-day-abbrev-array)
13093 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
13094 (calendar-day-abbrev-array, calendar-month-abbrev-array):
13095 Elements may no longer be nil.
13096 (calendar-day-name, calendar-month-name):
13097 Update for changed nature of abbrev arrays.
13098 * calendar/diary-lib.el (diary-name-pattern):
13099 Update for changed nature of abbrev arrays.
13100 (diary-mark-entries-1): Update calendar-make-alist calls.
13101 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
13102 * calendar/cal-html.el (cal-html-day-abbrev-array):
13103 Simply inherit from calendar-day-abbrev-array.
13104
1d99a745
SM
131052011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
13106
13107 * progmodes/grep.el (grep-mode): Disable default
13108 compilation-directory-matcher setting (bug#8684).
13109
7c1d9aa0
MA
131102011-05-17 Michael Albinus <michael.albinus@gmx.de>
13111
13112 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
13113 instead of "head" and "tail". There were problems with SunOS 5.9,
13114 and it performs better.
13115
3952e9d8
GM
131162011-05-17 Glenn Morris <rgm@gnu.org>
13117
2dd12e7f
GM
13118 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
13119
e4157b9c
GM
13120 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
13121 Replace obsolete function.
13122
8e249bbd
GM
13123 * shell.el (pcomplete-parse-arguments-function): Declare.
13124
3952e9d8
GM
13125 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
13126 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
13127 (appt-check): Doc fixes.
13128 (appt-disp-window-function, appt-delete-window-function):
13129 Remove needless special case in custom :type.
13130 (appt-display-count): Default to 0, not nil.
13131 (appt-check): Reset appt-display-count to 0, not nil.
13132
c71a0d48 131332011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 13134
c71a0d48
GM
13135 * progmodes/python.el (python-font-lock-keywords):
13136 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 13137
31d55be9
SM
131382011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
13139
13140 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
13141
3bfacb2f
KR
131422011-05-16 Kevin Ryde <user42@zip.com.au>
13143
13144 * info-look.el (makefile-automake-mode): New setups, looking in
13145 automake manual, then makefile-mode.
13146 (makefile-mode): Remove automake manual, have it just in
13147 makefile-automake-mode since there's various things different or
13148 not relevant to plain make.
13149 (makefile-mode): Remove "other-modes" non-existent automake-mode,
13150 believe a hypothetical automake-mode would go to makefile-mode,
13151 not the other way around.
13152
c8e83751
CY
131532011-05-15 Chong Yidong <cyd@stupidchicken.com>
13154
5e9e35cd
CY
13155 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
13156 hunk-end tags (Bug#8672).
13157
c8e83751
CY
13158 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
13159 vc-annotate-show-diff-revision-at-line (Bug#8671).
13160
50b23e5a
GM
131612011-05-14 Glenn Morris <rgm@gnu.org>
13162
7210a739
GM
13163 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
13164 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
13165 (change-log-font-lock-keywords): Also handle multiple author lines
13166 with leading tabs. (Bug#8644)
7210a739 13167
4691905a
GM
13168 * calendar/appt.el (appt-check): Rename some local variables.
13169 Some simplification/reordering.
13170
50b23e5a
GM
13171 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
13172 (feedmail-sendmail-f-doesnt-sell-me-out)
13173 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13174 (feedmail-debug-sit-for, feedmail-queue-express-hook)
13175 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
13176 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
13177 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
13178 (feedmail-binmail-gnulinuxish-template):
13179 Rename from feedmail-binmail-linuxish-template.
13180 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
13181 Use insert-buffer-substring.
13182
215cda7c
BC
131832011-05-14 Bill Carpenter <bill@carpenter.org>
13184
13185 * mail/feedmail.el (feedmail-patch-level): Increase.
13186 (feedmail-debug): New custom group.
13187 (feedmail-confirm-outgoing-timeout)
13188 (feedmail-sendmail-f-doesnt-sell-me-out)
13189 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13190 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
13191 (feedmail-sender-line, feedmail-from-line)
13192 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 13193 (feedmail-spray-this-address)
215cda7c
BC
13194 (feedmail-spray-address-fiddle-plex-list)
13195 (feedmail-queue-use-send-time-for-date)
13196 (feedmail-queue-use-send-time-for-message-id)
13197 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
13198 (feedmail-buffer-eating-function):
13199 Doc fixes.
13200 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
13201 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
13202 (feedmail-message-action-scroll-down): New functions.
13203 (feedmail-queue-directory, feedmail-queue-draft-directory):
13204 Use expand-file-name.
13205 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
13206 Remove C-v help entry.
13207 (feedmail-queue-buffer-file-name): New variable.
13208 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
13209 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
13210 (feedmail-message-action-send-strong, feedmail-message-action-edit)
13211 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
13212 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
13213 (feedmail-message-action-toggle-spray)
13214 (feedmail-run-the-queue-no-prompts)
13215 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
13216 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
13217 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
13218 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
13219 (feedmail-envelope-deducer, feedmail-fiddle-from)
13220 (feedmail-fiddle-sender, feedmail-default-date-generator)
13221 (feedmail-fiddle-date, feedmail-fiddle-message-id)
13222 (feedmail-fiddle-spray-address)
13223 (feedmail-fiddle-list-of-spray-fiddle-plexes)
13224 (feedmail-fiddle-list-of-fiddle-plexes)
13225 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
13226 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
13227 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
13228 Change default. Doc fix.
13229 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
13230 (feedmail-binmail-linuxish-template): New constant.
13231 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
13232 Respect feedmail-sendmail-f-doesnt-sell-me-out.
13233 (feedmail-send-it): Add debug call.
13234 Use feedmail-queue-buffer-file-name, and
13235 feedmail-send-it-immediately-wrapper.
13236 (feedmail-message-action-send): Add debug call.
13237 Use feedmail-send-it-immediately-wrapper.
13238 (feedmail-queue-express-to-queue): Add debug call.
13239 Run feedmail-queue-express-hook.
13240 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
13241 (feedmail-message-action-help-blat):
13242 Rename from feedmail-queue-send-edit-prompt-help-first.
13243 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
13244 Check line-endings. Handle errors better.
13245 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
13246 Doc fix. Add debug call.
13247 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
13248 Use feedmail-queue-send-edit-prompt-inner.
13249 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
13250 (feedmail-queue-send-edit-prompt-inner): New function, extracted
13251 from feedmail-queue-send-edit-prompt.
13252 (feedmail-queue-send-edit-prompt-help)
13253 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
13254 (feedmail-tidy-up-slug): Add debug call.
13255 Respect feedmail-queue-slug-suspect-regexp.
13256 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
13257 (feedmail-dump-message-to-queue): Add debug call.
13258 Expand queue-directory.
13259 (feedmail-dump-message-to-queue): Change message slightly.
13260 Use feedmail-say-chatter.
13261 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
13262 (feedmail-send-it-immediately-wrapper): New function.
13263 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
13264 Insert empty string rather than newline. Handle full-frame case.
13265 Use catch/throw. Use feedmail-say-chatter.
13266 (feedmail-fiddle-from): Try mail-host-address.
13267 (feedmail-default-message-id-generator): Doc fix.
13268 Bind system-time-locale. Handle missing end.
13269 (feedmail-fiddle-x-mailer): Add debug call.
13270 Handle feedmail-x-mailer-line being nil.
13271 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
13272 Add debug call. Use buffer-substring-no-properties.
13273 (feedmail-say-debug, feedmail-say-chatter): New functions.
13274 (feedmail-find-eoh): Give an explicit error.
13275
42c7e61e
UJ
132762011-05-13 Ulf Jasper <ulf.jasper@web.de>
13277
c2571358 13278 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 13279 family from helvetica to sans.
c2571358 13280 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
13281 etc/images/newsticker.
13282
c2571358 13283 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
13284 family from helvetica to sans.
13285
13286 * net/newst-plainview.el (newsticker-new-item-face)
13287 (newsticker-old-item-face, newsticker-immortal-item-face)
13288 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 13289 (newsticker-statistics-face): Change default family from
42c7e61e 13290 helvetica to sans.
c2571358 13291 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
13292 etc/images/newsticker.
13293
5d3385a0
JB
13294 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
13295 (newsticker--process-auto-mark-filter-match): Tell user about
42c7e61e
UJ
13296 auto-marking.
13297
8497a297
DV
132982011-05-13 Didier Verna <didier@xemacs.org>
13299
13300 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
13301 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
13302 TODO entries.
8497a297
DV
13303 (lisp-lambda-list-keyword-parameter-indentation)
13304 (lisp-lambda-list-keyword-parameter-alignment)
13305 (lisp-lambda-list-keyword-alignment): New customizable user options.
13306 (lisp-indent-defun-method): Improve docstring.
13307 (extended-loop-p): Fix comment.
13308 (lisp-indent-lambda-list-keywords-regexp): New variable.
13309 (lisp-indent-lambda-list): New function.
13310 (lisp-indent-259): Use it.
13311 (lisp-indent-defmethod): Support for more than one
13312 method qualifier and properly indent methods lambda-lists.
13313 (defgeneric): Provide a missing common-lisp-indent-function property.
13314
f278f87f
SM
133152011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
13316
13317 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
13318 bounds for the empty string (bug#8667).
13319
5233edd7
GM
133202011-05-13 Glenn Morris <rgm@gnu.org>
13321
5237a44f
GM
13322 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
13323
8340026c 13324 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 13325 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 13326
5233edd7 13327 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 13328 (appt-time-msg-list): Doc fix.
a5464014 13329 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 13330
92d10796
AS
133312011-05-12 Andreas Schwab <schwab@linux-m68k.org>
13332
13333 * progmodes/ld-script.el (ld-script-keywords)
13334 (ld-script-builtins): Update keywords list.
13335
914a0ae1
SM
133362011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13337
c89be45f
SM
13338 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
13339
914a0ae1
SM
13340 * shell.el (shell-completion-vars): New function.
13341 (shell-mode):
13342 * simple.el (read-shell-command): Use it.
13343 (blink-matching-open): No need for " [...]" in minibuffer-message.
13344
98dc3df3
GM
133452011-05-12 Glenn Morris <rgm@gnu.org>
13346
13347 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
13348 (appt-check): Simplify.
13349
d2fc7e3d 133502011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 13351
4d61f28d 13352 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
13353 literal "/dev/null".
13354
d2fc7e3d 133552011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
13356
13357 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
13358 Fix typo.
13359
d2fc7e3d 133602011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 13361
3f254caa
SM
13362 * progmodes/which-func.el (which-function):
13363 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
13364 which might not be defined (Bug#8260).
13365
d45885f7
GM
133662011-05-12 Glenn Morris <rgm@gnu.org>
13367
13368 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
13369 Let byte-compile-initial-macro-environment always take precedence.
13370
488086f4
SM
133712011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13372
13373 * net/rcirc.el: Add support for SSL/TLS connections.
13374 (rcirc-server-alist): New field `encryption'.
13375 (rcirc): Check `encryption' settings.
13376 (rcirc-connect): New arg `encryption'. Use open-network-stream.
13377 Merge make-local-variable into `set'.
13378 (rcirc--connection-open-p): New function.
13379 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
13380 the process is not a network process (e.g. running gnutls-cli).
13381 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
13382 Make rcirc-(en|de)code-coding-system local here.
13383 (rcirc-mode): Merge make-local-variable into `set'.
13384 (rcirc-parent-buffer): Make permanent buffer-local.
13385 (rcirc-multiline-minor-mode): Don't do it here.
13386 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
13387 there's no server buffer.
13388
7d3b9d44
GM
133892011-05-11 Glenn Morris <rgm@gnu.org>
13390
f64049c6
GM
13391 * newcomment.el (comment-kill): Prefix "unused" local.
13392
93c9df73
GM
13393 * term/w32console.el (get-screen-color): Declare.
13394
7d3b9d44
GM
13395 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
13396 Handle symbol elements of byte-compile-initial-macro-environment.
13397
9e2dd53f
LL
133982011-05-10 Leo Liu <sdl.web@gmail.com>
13399
488086f4
SM
13400 * bookmark.el (bookmark-bmenu-mode-map):
13401 Bind bookmark-bmenu-search to `/'.
8b340240 13402
9e2dd53f 13403 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
13404 (footnote-unicode-string, footnote-unicode-regexp): New variable.
13405 (Footnote-unicode): New function.
13406 (footnote-style-alist): Add unicode style to the list.
13407 (footnote-style): Doc fix.
9e2dd53f 13408
79b70037
GM
134092011-05-10 Jim Meyering <meyering@redhat.com>
13410
13411 Fix doubled-word typos.
13412 * international/quail.el (quail-insert-kbd-layout): and and -> and
13413 * kermit.el: and and -> and
13414 * net/ldap.el (ldap-search-internal): to to -> to
13415 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
13416 * progmodes/js.el (js-mode): and and -> and
13417 * textmodes/artist.el (artist-move-to-xy): at at -> at
13418 (artist-draw-region-trim-line-endings): if if -> if
13419 And Safetyc -> Safety.
13420 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
13421
b8f82dc1 134222011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 13423 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
13424
13425 * files.el (hack-one-local-variable-eval-safep):
13426 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
13427
4f99f44b
GM
134282011-05-10 Glenn Morris <rgm@gnu.org>
13429
13430 * calendar/diary-lib.el (diary-list-entries-hook)
13431 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
13432 (diary-nongregorian-marking-hook, diary-list-entries)
13433 (diary-include-other-diary-files, diary-mark-entries)
13434 (diary-mark-included-diary-files): Doc fixes.
13435
84f29e6b
JB
134362011-05-09 Juanma Barranquero <lekktu@gmail.com>
13437
13438 * misc.el: Require tabulated-list.el during compilation.
13439
9bedd73a
CY
134402011-05-09 Chong Yidong <cyd@stupidchicken.com>
13441
488086f4
SM
13442 * progmodes/compile.el (compilation-start):
13443 Run compilation-filter-hook for the async case too.
9bedd73a
CY
13444 (compilation-filter-hook): Doc fix.
13445
797c735c
DD
134462011-05-09 Deniz Dogan <deniz@dogan.se>
13447
13448 * wdired.el: Remove outdated installation comment. Fix usage
13449 comment.
13450
5f4b1dfe
JB
134512011-05-09 Juanma Barranquero <lekktu@gmail.com>
13452
13453 * misc.el: Implement new command `list-dynamic-libraries'.
13454 (list-dynamic-libraries--loaded-only-p): New variable.
13455 (list-dynamic-libraries--refresh): New function.
13456 (list-dynamic-libraries): New command.
13457
4c44026c
CY
134582011-05-09 Chong Yidong <cyd@stupidchicken.com>
13459
488086f4
SM
13460 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13461 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
13462 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
13463 higher priority to avoid clobbering by gnu.
13464
027f966d
CY
134652011-05-08 Chong Yidong <cyd@stupidchicken.com>
13466
13467 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
13468 if the face has existing theme settings (Bug#8454).
13469
085f5d7d
CY
134702011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
13471
488086f4
SM
13472 * progmodes/perl-mode.el (perl-imenu-generic-expression):
13473 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 13474
2a86a00c
RS
13475 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
13476 special file names `.' and `..' (Bug#8259).
13477
d9c54a06
CY
134782011-05-08 Chong Yidong <cyd@stupidchicken.com>
13479
488086f4
SM
13480 * progmodes/grep.el (grep-mode-font-lock-keywords):
13481 Remove buffer-changing entries.
d9c54a06
CY
13482 (grep-filter): New function.
13483 (grep-mode): Add it to compilation-filter-hook.
13484
13485 * progmodes/compile.el (compilation-filter-hook)
13486 (compilation-filter-start): New defvars.
13487 (compilation-filter): Call compilation-filter-hook prior to
13488 updating the process mark.
13489
c4662635
SM
134902011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
13491
13492 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
13493
b0512a1d
EZ
134942011-05-07 Eli Zaretskii <eliz@gnu.org>
13495
605c9376
EZ
13496 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
13497 mailclient-send-it even if window-system is nil. (Bug#8595)
13498
c4662635
SM
13499 * term/w32console.el (terminal-init-w32console):
13500 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
13501 background-mode. (Bug#8597)
13502
d1dc2cc2
SM
135032011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
13504
13505 Make bytecomp.el understand that defmethod defines funs (bug#8631).
13506 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
13507 New functions.
13508 (defgeneric, eieio--defmethod): Use them.
13509 (eieio-defgeneric): Remove.
13510 (defmethod): Call defgeneric in a way visible to the byte-compiler.
13511
915d1300
GM
135122011-05-07 Glenn Morris <rgm@gnu.org>
13513
a3961c3e
GM
13514 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
13515 Use let rather than let*.
13516 (timeclock-find-discrep): Remove unused local.
13517
314347b9
GM
13518 * calendar/diary-lib.el (diary-comment-start): Doc fix.
13519
915d1300
GM
13520 * calendar/appt.el (appt-time-msg-list): Doc fix.
13521
275b59b0
NF
135222011-05-06 Noah Friedman <friedman@splode.com>
13523
13524 * apropos.el (apropos-print-doc): Only use
13525 emacs-lisp-docstring-fill-column when it is bound to an integer,
13526 per that variable's documentation.
13527
6c19f744
SM
135282011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13529
13530 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 13531 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 13532
60f884b2
GM
135332011-05-06 Glenn Morris <rgm@gnu.org>
13534
5006e634
GM
13535 * calendar/appt.el (appt-message-warning-time): Doc fix.
13536 (appt-warning-time-regexp): New option.
13537 (appt-make-list): Respect appt-message-warning-time.
13538
548d0a63
GM
13539 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
13540 New options.
13541 (diary-add-to-list): Strip comments from the displayed string.
13542 (diary-mode): Set comment-start and comment-end.
13543
60f884b2
GM
13544 * vc/diff-mode.el (smerge-refine-subst): Declare.
13545 (diff-refine-hunk): Don't require smerge-mode when compiling.
13546
989681bb
JB
135472011-05-06 Juanma Barranquero <lekktu@gmail.com>
13548
13549 * simple.el (list-processes): Return nil as the docstring says.
13550
a6bc05e1
MA
135512011-05-05 Michael Albinus <michael.albinus@gmx.de>
13552
13553 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
13554 to "".
13555 (ange-ftp-write-region, ange-ftp-insert-file-contents)
13556 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
13557 determining of binary transfer. (Bug#7383)
13558
23c22e9a
MA
135592011-05-05 Michael Albinus <michael.albinus@gmx.de>
13560
c4662635
SM
13561 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13562 Fix port computation bug. (Bug#8618)
23c22e9a 13563
0bff894f
GM
135642011-05-05 Glenn Morris <rgm@gnu.org>
13565
b8296902
GM
13566 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
13567
1f522ce8
GM
13568 * simple.el (shell-dynamic-complete-functions)
13569 (comint-dynamic-complete-functions): Declare.
13570
cf5bee67
GM
13571 * net/network-stream.el (gnutls-negotiate):
13572 * simple.el (tabulated-list-print): Fix declarations.
13573
13574 * progmodes/gud.el (syntax-symbol, syntax-point):
13575 Remove unnecessary and incorrect declarations.
13576
0bff894f
GM
13577 * emacs-lisp/check-declare.el (check-declare-scan):
13578 Handle byte-compile-initial-macro-environment in bytecomp.el
13579
9869b3ae
SM
135802011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
13581
13582 Fix earlier half-done eieio-defmethod change (bug#8338).
13583 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
13584 Streamline and change calling convention.
13585 (defmethod): Adjust accordingly and simplify.
13586 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
13587 new eieio--defmethod.
13588 (slot-boundp): Minor CSE simplification.
13589
9c1d5ac5
MZ
135902011-05-05 Milan Zamazal <pdm@zamazal.org>
13591
13592 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
13593 (glasses-make-readable): Use glasses-separate-capital-groups.
13594
455c834e
JB
135952011-05-05 Juanma Barranquero <lekktu@gmail.com>
13596
13597 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
13598 (warning-series): Doc fix.
13599 (display-warning): Don't try to create the buffer if we just found it.
13600
9ed7c8cb
CY
136012011-05-04 Chong Yidong <cyd@stupidchicken.com>
13602
13603 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
13604 (autoload-find-generated-file): New function.
13605 (generate-file-autoloads): Bind generated-autoload-file to
13606 buffer-file-name.
9869b3ae
SM
13607 (update-file-autoloads, update-directory-autoloads):
13608 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
13609 output file (Bug#7989).
13610 (batch-update-autoloads): Doc fix.
13611
0898ca10
JB
136122011-05-04 Juanma Barranquero <lekktu@gmail.com>
13613
13614 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
13615
31dfb76c
GM
136162011-05-04 Glenn Morris <rgm@gnu.org>
13617
f330b642
GM
13618 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
13619 function, so it follows changes in calendar-date-style.
13620 (diary-fancy-date-matcher): New function.
13621 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
13622 (diary-fancy-font-lock-fontify-region-function):
13623 Use diary-fancy-date-pattern as a function.
13624
31dfb76c
GM
13625 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
13626 non-numbers for `year' etc pseudo-variables. (Bug#8583)
13627
48e79d6a
TZ
136282011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
13629
13630 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
13631 instead of positional arguments. Allow :keylist and :crlfiles
13632 arguments.
13633 (open-gnutls-stream): Call it.
13634
13635 * net/network-stream.el (network-stream-open-starttls): Adjust to
13636 call `gnutls-negotiate' with :process and :hostname arguments.
13637
dd5a5ee0
SM
136382011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
13639
ef80fc09
SM
13640 * minibuffer.el (completion--message): New function.
13641 (completion--do-completion, minibuffer-complete)
13642 (minibuffer-force-complete, minibuffer-complete-word): Use it.
13643 (completion--do-completion): Don't ignore completion-auto-help when in
13644 icomplete-mode.
13645
dd5a5ee0
SM
13646 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
13647 internal encoding (e.g. tibetan zero is not whitespace).
13648 (global-whitespace-mode): Prefer save-current-buffer.
13649 (whitespace-trailing-regexp): Remove useless save-match-data.
13650 (whitespace-empty-at-bob-regexp): Minor simplification.
13651
b7d22a83
CY
136522011-05-03 Chong Yidong <cyd@stupidchicken.com>
13653
13654 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
13655
5192af46
AM
136562011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13657
13658 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 13659 Use `concat' to create string for insertion.
5192af46 13660
5767d190
SM
136612011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13662
13663 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
13664 Avoid open-line which runs post-self-insert-hook.
13665 (bibtex-fill-entry): Remove unused `end' var.
13666
bf242939
AM
136672011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
13668
5767d190
SM
13669 * textmodes/ispell.el (ispell-add-per-file-word-list):
13670 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 13671
25666126
LL
136722011-05-03 Leo Liu <sdl.web@gmail.com>
13673
13674 * isearch.el (isearch-yank-pop): New command.
5767d190 13675 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
13676 (isearch-forward): Mention it.
13677
52d3c2d0
SM
136782011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13679
1bcace58
SM
13680 * simple.el (minibuffer-complete-shell-command): Remove.
13681 (minibuffer-local-shell-command-map): Use completion-at-point.
13682 (read-shell-command): Setup completion vars here instead.
13683 (read-expression-map): Bind TAB to symbol completion.
13684
52d3c2d0
SM
13685 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
13686 error directly rather via storing it into `results'.
13687
35813471
LL
136882011-05-02 Leo Liu <sdl.web@gmail.com>
13689
13690 * vc/diff.el: Fix description.
13691
e793a940
LMI
136922011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13693
13694 * server.el (server-eval-at): New function.
13695
8de66e05
LMI
136962011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13697
13698 * net/network-stream.el (open-network-stream): Take a :nowait
13699 parameter and pass it on to `make-network-process'.
13700 (network-stream-open-plain): Ditto.
13701
dcb79f20
AS
137022011-04-30 Andreas Schwab <schwab@linux-m68k.org>
13703
13704 * faces.el (face-spec-set-match-display): Don't match toolkit
13705 options on terminal frames.
13706
14a7fbd8
SM
137072011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
13708
7eabc1be
SM
13709 * progmodes/pascal.el: Use lexical binding.
13710 (pascal-mode-map): Remove author preferences.
13711
14a7fbd8
SM
13712 * pcomplete.el (pcomplete-std-complete): Don't abuse
13713 completion-at-point.
13714
50f84510
JB
137152011-04-28 Juanma Barranquero <lekktu@gmail.com>
13716
6e087a44
JB
13717 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
13718 removing code that has been dead since 1991 or so.
13719
50f84510
JB
13720 * startup.el (command-line): When warning about "_emacs", use a
13721 delayed warning to allow the user to filter it out.
13722
0ba690bd
DD
137232011-04-28 Deniz Dogan <deniz@dogan.se>
13724
13725 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
13726 user has not joined.
13727
08abfaad
SM
137282011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13729
13730 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
13731 aren't any completions at point.
13732
638f053a
JB
137332011-04-28 Juanma Barranquero <lekktu@gmail.com>
13734
13735 * subr.el (display-delayed-warnings): New function.
13736 (delayed-warnings-hook): New variable.
13737
8fff8daa
SM
137382011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13739
08abfaad
SM
13740 * minibuffer.el (completion-at-point, completion-help-at-point):
13741 Don't presume that a given completion-at-point-function will always
13742 use the same calling convention.
13743
8fff8daa
SM
13744 * pcomplete.el (pcomplete-completions-at-point):
13745 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
13746 pcomplete-seen is non-nil.
13747 (pcomplete-comint-setup): Also recognize the new comint/shell
13748 completion functions.
13749 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
13750 pcomplete-seen is non-nil.
13751
841a1577 137522011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 13753
841a1577 13754 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 13755 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 13756 the first character in the entry. This allows for code to add its
211ec907
UJ
13757 own uid to the entry.
13758 (icalendar--convert-float-to-ical): Add export of
13759 `diary-float'-entries save for those with the optional DAY
13760 argument.
13761
2a782793
DC
137622011-04-27 Daniel Colascione <dan.colascione@gmail.com>
13763
13764 * subr.el (shell-quote-argument): Use alternate escaping strategy
13765 when we spot a variable reference in a string.
13766
0438ce91
DC
137672011-04-26 Daniel Colascione <dan.colascione@gmail.com>
13768
13769 * cus-start.el (all): Define customization for debug-on-event.
13770
841a1577 137712011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
13772
13773 * subr.el (shell-quote-argument): Escape correctly under Windows.
13774
d090ed6c
SM
137752011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13776
13777 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
13778
bfd31217
MA
137792011-04-25 Michael Albinus <michael.albinus@gmx.de>
13780
d090ed6c
SM
13781 * net/tramp.el (tramp-process-actions): Add POS argument.
13782 Delete region between POS and (pos).
bfd31217 13783
d090ed6c
SM
13784 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13785 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
13786 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
13787
13788 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
13789 position in `tramp-process-actions' call.
13790
13791 * net/trampver.el: Update release number.
13792
e92f3bd3
SM
137932011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13794
850256b5
SM
13795 * custom.el (defcustom): Obey lexical-binding.
13796
e92f3bd3
SM
13797 Fix octave-inf completion problems reported by Alexander Klimov.
13798 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
13799 Inherit from octave-mode-syntax-table.
13800 (inferior-octave-mode): Set info-lookup-mode.
13801 (inferior-octave-completion-at-point): New function.
13802 (inferior-octave-complete): Use it and completion-in-region.
13803 (inferior-octave-dynamic-complete-functions): Use it as well, and use
13804 comint-filename-completion.
13805 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
13806 symbol elements which shouldn't be word elements.
13807 (octave-font-lock-keywords, octave-beginning-of-defun)
13808 (octave-function-header-regexp): Adjust regexps accordingly.
13809 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
13810
cd22b309
JB
138112011-04-25 Juanma Barranquero <lekktu@gmail.com>
13812
13813 * net/gnutls.el (gnutls-errorp): Declare before first use.
13814
8b492194
TZ
138152011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
13816
13817 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
13818 verify-error, and verify-hostname-error parameters. Check whether
cd22b309 13819 default trustfile exists before going to use it. Add missing
5a5fa834 13820 argument to gnutls-message-maybe call. Return value.
8b492194
TZ
13821 Reported by Claudio Bley <claudio.bley@gmail.com>.
13822 (open-gnutls-stream): Add usage example.
13823
13824 * net/network-stream.el (network-stream-open-starttls): Give host
13825 parameter to `gnutls-negotiate'.
13826 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 13827 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 13828
841a1577 138292011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 13830
cd22b309
JB
13831 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
13832 Use correct match group (bug#8438).
05842630 13833
3ba7869c
CY
138342011-04-24 Chong Yidong <cyd@stupidchicken.com>
13835
512e3ae1
CY
13836 * emacs-lisp/package.el (package-built-in-p): Fix typo.
13837 (package-menu--generate): New arg specifying packages to show.
13838 (package-menu-refresh, package-menu-execute, list-packages):
13839 Callers changed.
13840 (package-show-package-list): New function, replacing deleted
13841 package--list-packages (renamed because it is non-internal).
13842
13843 * finder.el (finder-list-matches): Use package-show-package-list
13844 instead of deleted package--list-packages.
13845
e92f3bd3
SM
13846 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
13847 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
13848 (vc-annotate-mode-map): Bind it to RET.
13849
7031be6d
UR
138502011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
13851
13852 * progmodes/etags.el (next-file): Don't use set-buffer to change
13853 buffers (Bug#8478).
13854
4ef177aa
CY
138552011-04-24 Chong Yidong <cyd@stupidchicken.com>
13856
c8d173eb
CY
13857 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
13858
4ef177aa
CY
13859 * apropos.el (apropos-label-face): Avoid variable-pitch face.
13860 (apropos-accumulator): Doc fix.
13861 (apropos-function, apropos-macro, apropos-command)
13862 (apropos-variable, apropos-face, apropos-group, apropos-widget)
13863 (apropos-plist): Add face property.
13864 (apropos-symbols-internal): Fix indentation.
13865 (apropos-print): Simplify help, and recognize apropos-multi-type.
13866 (apropos-print-doc): Use button-type-get to extract the button's
13867 face property. Fill docstring (Bug#8352).
13868
4ffd0d6b 138692011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
13870
13871 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
13872
c6c32125 13873 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 13874 (mpuz-mode-map): Use mapc.
c6c32125
JB
13875 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
13876 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
13877 Fix typos in docstrings.
13878
58d468b4
JB
13879 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
13880 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
13881
6470c3c6
JB
13882 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
13883
4ffd0d6b 138842011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
13885
13886 * minibuffer.el (completion--do-completion): Avoid the "Next char
13887 not unique" prompt if icomplete-mode is enabled (Bug#5849).
13888
3ad8bad0
CY
13889 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
13890 mouse-2 into unread-command-events, it is interpreted correctly.
13891
71d73c9c 13892 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 13893 (image-toggle-display): Doc fix.
71d73c9c 13894
841a1577 138952011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 13896
4ffd0d6b
GM
13897 * textmodes/page.el (what-page): Use line-number-at-pos to
13898 calculate line number (Bug#6825).
6e1dbaa9 13899
c2fb1b60
JB
139002011-04-22 Juanma Barranquero <lekktu@gmail.com>
13901
13902 * eshell/esh-mode.el (find-tag-interactive): Declare function.
13903 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
13904 Pass argument NO-DEFAULT to `find-tag-interactive'.
13905
e02f48d7
JB
139062011-04-22 Juanma Barranquero <lekktu@gmail.com>
13907
13908 Lexical-binding cleanup.
13909
13910 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
13911 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
13912 * progmodes/ada-prj.el (ada-prj-initialize-values)
13913 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
13914 (ada-prj-show-value):
13915 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
13916 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
13917 (antlr-invalidate-context-cache, antlr-options-menu-filter)
13918 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
13919 * progmodes/bug-reference.el (bug-reference-push-button):
13920 * progmodes/fortran.el (fortran-line-length):
13921 * progmodes/glasses.el (glasses-change):
13922 * progmodes/octave-mod.el (octave-fill-paragraph):
13923 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
13924 (python-pdbtrack-grub-for-buffer, python-sentinel):
13925 * progmodes/sql.el (sql-save-connection):
13926 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
13927 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
13928 Mark unused parameters.
13929
13930 * progmodes/compile.el (compilation--flush-directory-cache)
13931 (compilation--flush-parse, compile-internal): Mark unused parameters.
13932 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
13933 (compilation-next-error-function): Remove unused variable `timestamp'.
13934
13935 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
13936 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
13937
13938 * progmodes/dcl-mode.el (dcl-end-of-command):
13939 Remove unused variable `start'.
13940 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
13941 (dcl-option-value-basic, dcl-option-value-offset)
13942 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
13943 Mark unused parameters.
13944 (dcl-save-local-variable): Remove unused variable `val'.
13945 (mode): Declare.
13946
13947 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
13948 Mark unused parameters.
13949 (delphi-ignore-changes): Move before first use.
13950 (delphi-charset-token-at): Remove unused variable `start'.
13951 (delphi-else-start): Remove unused variable `if-count'.
13952 (delphi-comment-block-start, delphi-comment-block-end):
13953 Remove unused variable `kind'.
13954 (delphi-indent-line): Remove unused variable `new-point'.
13955
13956 * progmodes/ebrowse.el (ebrowse-files-list)
13957 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
13958 Mark unused parameters. Don't quote `lambda'.
13959 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
13960 Don't quote `lambda'.
13961 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
13962 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
13963 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
13964 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
13965 Use `ignore-errors'.
13966 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
13967 (ebrowse-view/find-file-and-search-pattern)
13968 (ebrowse-view/find-member-declaration/definition):
13969 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
13970 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
13971 Rename parameter PREFIX-ARG to PREFIX.
13972 (ebrowse-tags-read-name): Remove unused variables `start' and
13973 `member-info'.
13974 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
13975 to `tags-file'.
13976
13977 * progmodes/etags.el (local-find-tag-hook): Declare.
13978 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
13979 Mark unused parameters.
13980
13981 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
13982 (executable-interpret): Mark unused parameter.
13983
13984 * progmodes/flymake.el (flymake-process-sentinel)
13985 (flymake-after-change-function)
13986 (flymake-create-temp-with-folder-structure)
13987 (flymake-get-include-dirs-dot): Mark unused parameters.
13988 (flymake-safe-delete-directory): Remove unused variable `err'.
13989
13990 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
13991 (speedbar-timer-fn, speedbar-line-text)
13992 (speedbar-change-expand-button-char, speedbar-delete-subblock)
13993 (speedbar-center-buffer-smartly): Declare functions.
13994 (gdb-find-watch-expression): Remove unused variable `array'.
13995 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
13996 (gdb-starting): Mark unused parameters.
13997 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
13998 (gdb-table-string): Remove unused variable `res'.
13999 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
14000 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
14001 (gdb-display-buffer): Remove unused variable `cur-size'.
14002
14003 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
14004 allow lexical-binding compilation.
14005 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
14006 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
14007 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
14008 Mark unused parameters.
14009 (gud-gdb-marker-filter): Remove unused variable `match'.
14010 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
14011 lambda expressions and funcall them, instead of using `fset'.
14012
14013 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
14014 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
14015
14016 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
14017 variable `header-beg'; use `let'.
14018
14019 * progmodes/icon.el (indent-icon-exp): Remove unused variables
14020 `restart', `last-sexp' and `at-do'.
14021
14022 * progmodes/js.el (js--debug): Mark unused parameter.
14023 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
14024 (js--splice-into-items): Remove unused variable `item'.
14025 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
14026
14027 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
14028 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
14029 (makefile-complete): Remove unused variable `try'.
14030 (makefile-fill-paragraph, makefile-match-function-end):
14031 Mark unused parameters.
14032
14033 * progmodes/octave-inf.el (inferior-octave-complete):
14034 Remove unused variable `proc'.
14035 (inferior-octave-output-digest): Mark unused parameter.
14036
14037 * progmodes/perl-mode.el (perl-calculate-indent):
14038 Remove unused variable `err'.
14039
14040 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
14041 (prolog-indent-line): Mark unused parameters.
14042 (prolog-indent-line): Remove unused variable `beg'.
14043
14044 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
14045 (reporter-dont-compact-list): Declare.
14046
14047 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
14048 Remove unused variable `char'.
14049 (sh-debug): Mark unused parameter.
14050 (sh-get-indent-info): Remove unused variable `start'.
14051 (sh-calculate-indent): Remove unused variable `var'.
14052
14053 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
14054 (simula-electric-keyword): Remove unused variable `null'.
14055 (simula-search-backward, simula-search-forward): Remove unused
14056 variables `begin' and `end'.
14057
14058 * progmodes/vera-mode.el (vera-guess-basic-syntax):
14059 Remove unused variable `pos'.
14060 (vera-electric-tab, vera-comment-uncomment-region):
14061 Mark unused parameters.
14062 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
14063
7ede3b65
CY
140642011-04-22 Chong Yidong <cyd@stupidchicken.com>
14065
14066 * emacs-lisp/package.el (package--builtins, package-alist)
14067 (package-load-descriptor, package-built-in-p, package-activate)
14068 (define-package, package-installed-p)
14069 (package-compute-transaction, package-buffer-info)
14070 (package--push): Doc fix. Distinguish more clearly between
14071 version strings and version lists.
14072
121656e9
JB
140732011-04-21 Juanma Barranquero <lekktu@gmail.com>
14074
14075 Lexical-binding cleanup.
14076
14077 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
14078 (5x5-make-mutate-best):
14079 * play/fortune.el (fortune-in-buffer):
14080 * play/gomoku.el (gomoku-init-display):
14081 * play/solitaire.el (solitaire, solitaire-do-check):
14082 * play/tetris.el (tetris-default-update-speed-function):
14083 Mark unused parameters.
14084
14085 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
14086 (bubbles--shift): Remove unused variable `char-org'.
14087 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
14088 (bubbles--show-images): Remove unused variable `char'.
14089
14090 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
14091 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
14092 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
14093 (decipher-analyze-buffer): Use ?\s.
14094 (decipher-make-checkpoint): Remove unused variable `mapping'.
14095
14096 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
14097
14098 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
14099 Remove unused variable `result'; use `let'.
14100
14101 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
14102 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
14103 (gametree-children-shown-p, gametree-compute-reduced-score):
14104 Use `ignore-errors'.
14105
14106 * play/handwrite.el (ps-lpr-switches): Declare.
14107 (handwrite): Remove unused variables `pmin' and `lastp'.
14108
14109 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
14110
14111 * play/landmark.el (landmark-init-display)
14112 (landmark-update-naught-weights): Mark unused parameters.
14113 (landmark-y): Remove unused variable `noise'. Simplify.
14114 (landmark-human-plays): Remove unused variable `score'.
14115
14116 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
14117 (mpuz-try-proposal): Remove unused variable `game'.
14118
14119 * play/zone.el (life-patterns): Declare.
14120
80f499c7
JB
141212011-04-20 Juanma Barranquero <lekktu@gmail.com>
14122
14123 * vc/vc.el (ediff-vc-internal): Declare function.
14124
024ff170
SM
141252011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14126
c0a193ea
SM
14127 * shell.el: Use lexical-binding and std completion UI.
14128 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
14129 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
14130 comint-preoutput-filter-functions rather than on
14131 comint-output-filter-functions.
14132 (shell-command-completion, shell--command-completion-data)
14133 (shell-filename-completion, shell-environment-variable-completion)
14134 (shell-c-a-p-replace-by-expanded-directory): New functions.
14135 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
14136 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
14137 (shell-dynamic-complete-environment-variable): Use them.
14138 (shell-dynamic-complete-as-environment-variable)
14139 (shell-dynamic-complete-as-command): Remove.
14140 (shell-match-partial-variable): Match past point.
14141 * comint.el: Clean up use of completion-at-point-functions.
14142 (comint-completion-at-point): New function.
14143 (comint-mode): Use it completion-at-point-functions.
14144 (comint-dynamic-complete): Make it obsolete.
14145 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
14146 (comint-c-a-p-replace-by-expanded-history): New function.
14147 (comint-dynamic-complete-functions)
14148 (comint-replace-by-expanded-history): Use it.
14149 * minibuffer.el (completion-table-with-terminator): Allow dynamic
14150 termination strings. Try harder to avoid second try-completion.
14151 (completion-in-region-mode-map): Disable bindings that don't work yet.
14152
2dbaa080
SM
14153 * comint.el: Use lexical-binding. Require CL.
14154 (comint-dynamic-complete-functions): Use comint-filename-completion.
14155 (comint-completion-addsuffix): Tweak custom type.
14156 (comint-filename-completion, comint--common-suffix)
14157 (comint--common-quoted-suffix, comint--table-subvert)
14158 (comint--complete-file-name-data): New functions.
14159 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
14160 (comint-dynamic-list-filename-completions): Use them.
14161 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 14162
2dbaa080
SM
14163 * minibuffer.el (completion-in-region-mode):
14164 Keep completion-in-region-mode--predicate global.
14165 (completion-in-region--postch):
14166 Assume completion-in-region-mode--predicate is not null.
14167
c79a6f38
SM
14168 * progmodes/flymake.el (flymake-start-syntax-check-process):
14169 Obey `dir'. Simplify.
14170
024ff170
SM
14171 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
14172 we're in VC after all.
14173
1c6c854e
CS
141742011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
14175
14176 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 14177 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
14178 (vc-version-diff): Use vc-diff-build-argument-list-internal.
14179
bed7f140
SM
141802011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14181
332e62ab
SM
14182 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
14183 add sanity check.
14184
bed7f140
SM
14185 * obsolete/erc-hecomplete.el: Make obsolete.
14186 * obsolete/: Standardize obsolescence info in the header.
14187
f195c582
GM
141882011-04-20 Glenn Morris <rgm@gnu.org>
14189
14190 * calendar/solar.el (solar-horizontal-coordinates):
14191 Use the longitude argument rather than `calendar-longitude'.
14192 (solar-date-next-longitude): Remove unused locals.
14193
cb79b8c0
VJL
141942011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14195
14196 * whitespace.el: New version 13.2.1.
14197
141982011-04-20 felix <EmacsWiki> (tiny change)
14199
d8e4b68b 14200 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
14201 switching between major modes on a file.
14202
602ea69d
SM
142032011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
14204
14205 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
14206 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
14207 multi-line comments as well.
14208
06b60517
JB
142092011-04-19 Juanma Barranquero <lekktu@gmail.com>
14210
14211 Lexical-binding cleanup.
14212
14213 * arc-mode.el (archive-mode-revert):
14214 * cmuscheme.el (scheme-interactively-start-process):
14215 * custom.el (custom-initialize-delay):
14216 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
14217 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
14218 * emacs-lock.el (emacs-lock-clear-sentinel):
14219 * ezimage.el (defezimage):
14220 * follow.el (follow-avoid-tail-recenter):
14221 * fringe.el (set-fringe-mode-1):
14222 * generic-x.el (bat-generic-mode-compile):
14223 * help-mode.el (help-info-variable, help-do-xref)
14224 (help-mode-revert-buffer):
14225 * help.el (view-emacs-todo):
14226 * iswitchb.el (iswitchb-completion-help):
14227 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
14228 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
14229 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
14230 * locate.el (locate-update):
14231 * longlines.el (longlines-encode-region)
14232 (longlines-after-change-function):
14233 * outline.el (outline-isearch-open-invisible):
14234 * ps-def.el (declare-function, charset-dimension, char-width)
14235 (encode-char):
14236 * ps-mule.el (ps-mule-plot-string):
14237 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
14238 (recentf-edit-list-select, recentf-edit-list-validate)
14239 (recentf-open-files-action):
14240 * rect.el (delete-whitespace-rectangle-line)
14241 (rectangle-number-line-callback):
14242 * register.el (window-configuration-to-register)
14243 (frame-configuration-to-register):
14244 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
14245 * select.el (xselect-convert-to-string, xselect-convert-to-length)
14246 (xselect-convert-to-targets, xselect-convert-to-delete)
14247 (xselect-convert-to-filename, xselect-convert-to-charpos)
14248 (xselect-convert-to-lineno, xselect-convert-to-colno)
14249 (xselect-convert-to-os, xselect-convert-to-host)
14250 (xselect-convert-to-user, xselect-convert-to-class)
14251 (xselect-convert-to-name, xselect-convert-to-integer)
14252 (xselect-convert-to-atom, xselect-convert-to-identity):
14253 * subr.el (declare, ignore, process-kill-without-query)
14254 (text-clone-maintain):
14255 * terminal.el (te-get-char, te-tic-sentinel):
14256 * tool-bar.el (tool-bar-make-keymap):
14257 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
14258 * type-break.el (type-break-mode, type-break-noninteractive-query):
14259 * view.el (View-back-to-mark):
14260 * wid-browse.el (widget-browse-action, widget-browse-widget)
14261 (widget-browse-widgets, widget-browse-sexp):
14262 * widget.el (define-widget-keywords):
14263 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
14264 Mark unused parameters.
14265
14266 * align.el (align-adjust-col-for-rule): Mark unused parameter.
14267 (align-areas): Remove unused variable `look'.
14268 (align-region): Remove unused variables `real-end' and `pos-list'.
14269
14270 * apropos.el (apropos-score-doc): Remove unused variable `i'.
14271
14272 * bindings.el (mode-line-modified, mode-line-remote):
14273 Mark unused parameters.
14274 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
14275
14276 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
14277 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
14278
14279 * comint.el (comint-history-isearch-pop-state)
14280 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
14281 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
14282 (comint-substitute-in-file-name): Doc fix.
14283
14284 * completion.el (cmpl-statistics-block): Mark unused parameter.
14285 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
14286 (save-completions-to-file, load-completions-from-file):
14287 Remove unused local variable `e'.
14288
14289 * composite.el (compose-chars): Remove unused variable `len'.
14290 (lgstring-insert-glyph): Remove unused variable `g'.
14291 (compose-glyph-string): Remove unused variables `ascent',
14292 `descent', `lbearing' and `rbearing'.
14293 (compose-glyph-string-relative): Remove unused variables
14294 `lbearing', `rbearing' and `wadjust'.
14295 (compose-gstring-for-graphic): Remove unused variables `header',
14296 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
14297 (compose-gstring-for-terminal): Remove unused variables `header'
14298 and `nchars'. Use `let', not `let*'.
14299
14300 * cus-edit.el (Custom-set, Custom-save, custom-reset)
14301 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
14302 (Custom-buffer-done, custom-buffer-create-internal)
14303 (custom-browse-visibility-action, custom-browse-group-tag-action)
14304 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
14305 (widget-magic-mouse-down-action, custom-toggle-parent)
14306 (custom-add-parent-links, custom-toggle-hide-variable)
14307 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
14308 (custom-toggle-hide-face, face, hook, custom-group-link-action)
14309 (custom-face-menu-create, custom-variable-menu-create, get)
14310 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
14311 (custom-reset-standard-save-and-update): Remove unused variable `value'.
14312 (customize-apropos): Remove unused variable `tests'.
14313 (custom-group-value-create): Remove unused variable `hidden-p'.
14314 (sort-fold-case): Declare.
14315
14316 * cus-theme.el (custom-reset-standard-faces-list)
14317 (custom-reset-standard-variables-list): Declare.
14318 (customize-create-theme, custom-theme-revert, custom-theme-write)
14319 (custom-theme-choose-mode, customize-themes, custom-theme-save):
14320 Mark unused parameters.
14321
14322 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
14323
14324 * delim-col.el (delimit-columns-max): Move defvar before first use.
14325
14326 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 14327 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
14328
14329 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
14330 (auto-insert): Declare.
14331 (desktop-restore-file-buffer): Rename desktop-* parameters;
14332 mark unused ones.
14333 (desktop-create-buffer): Rename desktop-* parameters and bind them.
14334 (desktop-buffer): Rename desktop-* parameters.
14335
14336 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
14337 (dframe-reposition-frame-xemacs, dframe-help-echo)
14338 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
14339 Mark unused parameters.
14340
14341 * dired-aux.el (backup-extract-version-start, overwrite-query)
14342 (overwrite-backup-query, rename-regexp-query)
14343 (rename-non-directory-query): Declare.
14344 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
14345 (dired-add-entry): Remove unused variable `orig-file-name'.
14346 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
14347 Use parameter PRESERVE-TIME instead of accessing dynamic variable
14348 `dired-copy-preserve-time' directly.
14349 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
14350 (dired-insert-subdir-newpos): Rename unused variable `pos'.
14351
14352 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
14353 (dired-virtual-revert, dired-make-relative-symlink):
14354 Mark unused parameters.
14355 (manual-program): Declare.
14356 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
14357 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
14358 wrapped in `with-no-warnings' to avoid replacing one warning by another.
14359
14360 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
14361
14362 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
14363
14364 * echistory.el (electric-history-in-progress, Helper-return-blurb):
14365 Declare.
14366
14367 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
14368
14369 * electric.el (Electric-command-loop): Rename parameter
14370 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
14371
14372 * expand.el (expand-in-literal): Remove unused variable `here'.
14373
14374 * facemenu.el (facemenu-add-new-color):
14375 Remove unused variable `docstring'.
14376
14377 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
14378 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
14379 (face-attr-construct): Mark unused parameter. Doc fix.
14380 (read-color): Remove unused variable `hex-string'.
14381
14382 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
14383 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
14384 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
14385 (display-buffer-other-frame): Remove unused variable `old-window'.
14386 (kill-buffer-hook): Declare.
14387 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
14388 Mark unused parameters.
14389 (after-find-file): Pass 1 to `auto-save-mode', not t.
14390
14391 * files-x.el (auto-insert): Declare.
14392 (modify-file-local-variable-prop-line): Remove unused variable `val'.
14393
14394 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 14395 variable `buf'. Mark unused parameter.
06b60517
JB
14396 (find-lisp-insert-directory): Mark unused parameter.
14397
14398 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
14399 (format-encode-region): Remove unused variables `cur-buf' and `result'.
14400 (format-common-tail): Remove, unused.
14401 (format-deannotate-region): Remove unused variable `loc'.
14402 (format-annotate-region): Remove unused variable `p'.
14403 (format-annotate-single-property-change): Remove unused variables
14404 `default' and `tail'.
14405
14406 * forms.el (read-file-filter): Declare.
14407 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
14408
14409 * frame.el (frame-creation-function-alist): Mark unused parameter.
14410 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
14411
14412 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
14413 Remove unused parameters.
14414 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
14415 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
14416
14417 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
14418 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
14419 (hfy-prepare-tag-map): Mark unused parameters.
14420 (htmlfontify-buffer): Use `called-interactively-p'.
14421
14422 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
14423 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
14424 (ibuffer-do-occur): Mark unused parameters.
14425 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
14426 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
14427
14428 * ibuffer.el: Don't quote `lambda'.
14429 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
14430 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
14431 Mark unused parameters.
14432
14433 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
14434 (ido-completing-read): Mark unused parameters.
14435 (ido-copy-current-word): Mark unused parameters;
14436 remove unused variable `name'.
14437 (ido-sort-merged-list): Remove unused parameter `dirs'.
14438
14439 * ielm.el (ielm-input-sender): Mark unused parameter.
14440 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
14441 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
14442 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
14443 `ielm-string' as a dynamic variable accessible from the IELM prompt.
14444 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
14445
14446 * image-dired.el (image-dired-display-thumbs): Remove unused
14447 variables `curr-file' and `count'.
14448 (image-dired-remove-tag): Remove unused variable `start'.
14449 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
14450 variable `curr-file'
14451 (image-dired-rotate-original): Remove unused variable `temp-file'.
14452 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
14453 Remove unused variable `file'.
14454 (image-dired-gallery-generate): Remove unused variable `curr'.
14455 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
14456
14457 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
14458
14459 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
14460
14461 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
14462
14463 * isearch.el (minibuffer-history-symbol): Declare.
14464 (isearch-edit-string): Remove unused variable `err'.
14465 (isearch-message-prefix, isearch-message-suffix):
14466 Mark unused parameters.
14467
14468 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
14469
14470 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
14471
14472 * makesum.el (double-column): Remove unused variable `cnt'.
14473
14474 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
14475 (ido-ignore-item-temp-list): Declare.
14476
14477 * mouse-drag.el (mouse-drag-throw): Remove unused variables
14478 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
14479 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
14480 (mouse-drag-drag): Remove unused variables `mouse-delta' and
14481 `mouse-col-delta'.
14482
14483 * mouse-sel.el (mouse-extend-internal):
14484 Remove unused variable `orig-window-frame'.
14485
14486 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
14487 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
14488 Move declarations before first use.
14489 (pcomplete-opt): Mark unused parameters; doc fix.
14490
14491 * proced.el (proced-revert): Mark unused parameter.
14492 (proced-send-signal): Remove unused variable `err'.
14493
14494 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
14495 Rename parameter PREFIX-ARG to ARG.
14496 (ps-basic-plot-string, ps-basic-plot-whitespace):
14497 Mark unused parameters.
14498
14499 * replace.el (replace-count): Define.
14500 (occur-revert-function): Mark unused parameters.
14501 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
14502 (isearch-case-fold-search, isearch-string): Declare.
14503 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
14504 bind `case-fold-search'. Remove unused variables `beg' and `end',
14505 and simplify.
14506 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
14507 COUNT and bind `replace-count'.
14508 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
14509 to COUNT.
14510
14511 * savehist.el (print-readably, print-string-length): Declare.
14512
14513 * shadowfile.el (shadow-expand-cluster-in-file-name):
14514 Remove unused variable `cluster'.
14515 (shadow-copy-file): Remove unused variable `i'.
14516 (shadow-noquery, shadow-clusters, shadow-site-cluster)
14517 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
14518 (shadow-define-literal-group, shadow-define-regexp-group)
14519 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
14520
14521 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
14522 (shell): Use `called-interactively-p'.
14523 (shell-directory-tracker): Remove unused variable `chdir-failure'.
14524
14525 * simple.el (compilation-context-lines, comint-file-name-quote-list)
14526 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
14527 (delete-backward-char): Remove unused variable `ocol'.
14528 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
14529 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
14530 (event-apply-hyper-modifier, event-apply-shift-modifier)
14531 (event-apply-control-modifier, event-apply-meta-modifier):
14532 Mark unused parameters.
14533 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
14534 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
14535
14536 * speedbar.el (speedbar-ignored-directory-expressions)
14537 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
14538 (speedbar-find-file, speedbar-dir-follow)
14539 (speedbar-directory-buttons-follow, speedbar-tag-find)
14540 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
14541 (speedbar-buffers-line-directory, speedbar-buffer-click):
14542 Mark unused parameters.
14543 (speedbar-tag-file): Remove unused variable `mode'.
14544 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
14545
14546 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
14547
14548 * talk.el (talk): Remove unused variable `display'.
14549
14550 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
14551 (tar-write-region-annotate): Mark unused parameter.
14552
14553 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
14554 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
14555 Declare them, wrapped in `with-no-warnings' to avoid replacing one
14556 warning by another.
14557
14558 * time-stamp.el (time-stamp-string-preprocess):
14559 Remove unused variable `require-padding'.
14560
14561 * tree-widget.el (widget-glyph-enable): Declare.
14562 (tree-widget-action): Mark unused parameter.
14563
14564 * w32-fns.el (x-get-selection): Mark unused parameter.
14565 (autoload-make-program, generated-autoload-file): Declare.
14566
14567 * wdired.el (wdired-revert): Mark unused parameters.
14568 (wdired-xcase-word): Remove unused variable `err'.
14569
14570 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
14571 (whitespace-help-scroll): Remove unused variable `data-help'.
14572
14573 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
14574 (widget-image-insert, widget-after-change, default)
14575 (widget-default-format-handler, widget-default-notify)
14576 (widget-default-prompt-value, widget-info-link-action)
14577 (widget-url-link-action, widget-function-link-action)
14578 (widget-variable-link-action, widget-file-link-action)
14579 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
14580 (widget-field-prompt-internal, widget-field-action, widget-field-match)
14581 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
14582 (widget-insert-button-action, widget-delete-button-action, visibility)
14583 (widget-documentation-link-action, widget-documentation-string-action)
14584 (widget-const-prompt-value, widget-regexp-match, symbol)
14585 (widget-coding-system-prompt-value)
14586 (widget-key-sequence-value-to-external, sexp)
14587 (widget-sexp-value-to-internal, character, vector, cons)
14588 (widget-choice-prompt-value, widget-boolean-prompt-value)
14589 (widget-color--choose-action): Mark unused parameters.
14590 (widget-item-match-inline, widget-choice-match-inline)
14591 (widget-checklist-match, widget-checklist-match-inline)
14592 (widget-group-match): Rename parameter VALUES to VALS.
14593 (widget-field-value-set): Remove unused variable `size'.
14594 (widget-color-action): Remove unused variables `value' and `start'.
14595
14596 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 14597 variable `dir'. Doc fix.
06b60517
JB
14598 (windmove-find-other-window): Don't pass it.
14599
14600 * window.el (count-windows): Mark unused parameter.
14601 (bw-adjust-window): Remove unused variable `err'.
14602
14603 * woman.el (woman-file-name): Remove unused variable `default'.
14604 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
14605 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
14606 (global-font-lock-mode): Declare.
14607 (woman-decode-region): Mark unused parameter.
14608 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
14609
14610 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
14611 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
14612 (x-dnd-handle-moz-url): Remove unused variable `title'.
14613 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
14614
14615 * xml.el (xml-parse-tag, xml-parse-attlist):
14616 Remove unused variable `pos'.
14617
bc4f7f3d
GM
146182011-04-19 Glenn Morris <rgm@gnu.org>
14619
14620 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
14621 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
14622 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
14623 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
14624 * calendar/cal-html.el (cal-html-insert-minical):
14625 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
14626 (calendar-mark-date-pattern):
14627 Prefix "unused" locals.
14628
14629 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
14630 optional argument `style'.
14631
14632 * calendar/appt.el (appt-make-list):
14633 * calendar/cal-china.el (calendar-chinese-date-string):
14634 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
14635 (diary-hebrew-yahrzeit):
14636 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
14637 * calendar/calendar.el (calendar-generate-window):
14638 * calendar/time-date.el (time-to-days):
14639 Remove unused local variables.
14640
16a43933
CY
146412011-04-18 Chong Yidong <cyd@stupidchicken.com>
14642
14643 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
14644 glyphless-char-display table.
14645 (tabulated-list-glyphless-char-display): New var.
14646
7eed1860
SS
146472011-04-18 Sam Steingold <sds@gnu.org>
14648
14649 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
14650 to acknowledgments.
14651
4d2d1ccd
GM
146522011-04-17 Glenn Morris <rgm@gnu.org>
14653
14654 * calendar/diary-lib.el (diary-sexp-entry):
14655 * calendar/holidays.el (holiday-sexp):
14656 Set debug-on-error rather than the removed stack-trace-on-error.
14657
239da61d
GM
146582011-04-16 Glenn Morris <rgm@gnu.org>
14659
14660 * progmodes/f90.el: Use lexical-binding.
14661 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
14662
8b05752a
SM
146632011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14664
daca8ba5
SM
14665 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
14666 (mail-mode): Setup mailalias completion here instead.
14667 * mail/mailalias.el: Use lexical-binding.
14668 (pattern, mailalias-done): Declare dynamic.
14669 (mail-completion-at-point-function): New function, from mail-complete.
14670 (mail-complete): Use it.
14671 (mail-completion-expand): New function.
14672 (mail-get-names): Use it.
14673 (mail-directory, mail-directory-process, mail-directory-stream):
14674 Don't use `pattern' for lexically bound arg.
14675
6f542485
SM
14676 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
14677
037e7c3f
SM
14678 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
14679 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
14680 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
14681
8b05752a
SM
14682 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
14683 (byte-save-window-excursion, byte-temp-output-buffer-setup)
14684 (byte-interactive-p): Define them again, for use when inlining
14685 old code.
14686
49093f60
JB
146872011-04-15 Juanma Barranquero <lekktu@gmail.com>
14688
14689 * loadup.el: Use `string-to-number', not `string-to-int'.
14690
b5b8e7de
SM
146912011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14692
14693 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
14694 gud-gdb-complete-command.
14695 (gud-gdb-completions): New function, from gud-gdb-complete-command.
14696 (gud-gdb-completion-at-point): New function.
14697 (gud-gdb-completions): Remove.
14698
f42efeb5
MA
146992011-04-14 Michael Albinus <michael.albinus@gmx.de>
14700
49093f60
JB
14701 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
14702 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
14703 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
14704 whether `executable-find' is bound.
f42efeb5
MA
14705
14706 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
14707
e240cc21
SM
147082011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
14709
14710 * minibuffer.el (completion-in-region-mode-predicate)
14711 (completion-in-region-mode--predicate): New vars.
14712 (completion-in-region, completion-in-region--postch)
14713 (completion-in-region-mode): Use them.
14714 (completion--capf-wrapper): Also return the hook function.
14715 (completion-at-point, completion-help-at-point):
14716 Adjust and provide a predicate.
c2bd2ab0
SM
14717
14718 Preserve arg names for advice of subr and lexical functions (bug#8457).
14719 * help-fns.el (help-function-arglist): Consolidate the subr and
14720 new-byte-code cases. Add argument `preserve-names' to extract names
14721 from the docstring when needed.
14722 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
14723 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
14724 (ad-arglist): Use help-function-arglist's new arg.
14725 (ad-definition-type): Use cond.
14726
c183f693
JB
147272011-04-13 Juanma Barranquero <lekktu@gmail.com>
14728
06641a47
JB
14729 * autorevert.el (auto-revert-handler):
14730 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
14731 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
14732 Don't quote lambda.
14733
c183f693
JB
14734 * image-mode.el (image-transform-set-scale):
14735 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
14736
1e3b6001
G
147372011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
14738
14739 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 14740 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
14741 Upgrades via gnutls-cli are too slow to be done opportunistically.
14742
2d6af8dd
JB
147432011-04-12 Juanma Barranquero <lekktu@gmail.com>
14744
14745 * dframe.el (dframe-current-frame): Remove spurious quote.
14746
c0749a51
GM
147472011-04-12 Glenn Morris <rgm@gnu.org>
14748
088d0d61
GM
14749 * calendar/cal-tex.el (cal-tex-end-document):
14750 Try to automatically use latin1 input if needed.
14751
c0749a51
GM
14752 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
14753 Don't try to cons a mark onto an empty element.
14754
5c90fde0
LL
147552011-04-11 Leo Liu <sdl.web@gmail.com>
14756
14757 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
14758 buffers.
14759 (ido-kill-buffer-at-head): Support killing virtual buffers.
14760
369e974d
CY
147612011-04-10 Chong Yidong <cyd@stupidchicken.com>
14762
14763 * minibuffer.el (completion-show-inline-help): New var.
14764 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
14765 (minibuffer-force-complete, minibuffer-complete-word):
14766 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
14767
14768 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
14769 to avoid interference from inline help (Bug#5849).
14770
37f1c930
LL
147712011-04-10 Leo Liu <sdl.web@gmail.com>
14772
099c39a4
JB
14773 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14774 Fix typo.
37f1c930 14775
a32d4040
CY
147762011-04-09 Chong Yidong <cyd@stupidchicken.com>
14777
14778 * image-mode.el (image-toggle-display-image): Signal an error if
14779 not in Image mode.
14780 (image-transform-mode, image-transform-resize)
14781 (image-transform-set-rotation): Doc fix.
daca8ba5 14782 (image-transform-set-resize): Delete.
a32d4040
CY
14783 (image-transform-set-scale, image-transform-fit-to-height)
14784 (image-transform-fit-to-width): Handle image-toggle-display-image
14785 and image-transform-resize directly.
14786
099c39a4 147872011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
14788
14789 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
14790 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
14791 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
14792 (doc-view-mode-map): Add bindings for the new functions.
14793
099c39a4 147942011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 14795
4d61f28d 14796 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
14797 Fix typo in docstring.
14798
3726838a
EZ
147992011-04-08 Eli Zaretskii <eliz@gnu.org>
14800
04f33f1e
EZ
14801 * files.el (file-size-human-readable): Produce one digit after
14802 decimal, like "ls -lh" does.
14803
14804 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
14805 the file size representation.
14806
3726838a
EZ
14807 * simple.el (list-processes): If async subprocesses are not
14808 available, error out with a clear error message.
14809
cbb59342
CY
148102011-04-08 Chong Yidong <cyd@stupidchicken.com>
14811
14812 * help.el (help-form-show): New function, to be called from C.
14813 Put help-form output in a buffer named differently than *Help*.
14814
e3971c44
EZ
148152011-04-08 Eli Zaretskii <eliz@gnu.org>
14816
14817 * files.el (file-size-human-readable): New function.
14818
14819 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
14820 computing the representation inline. Don't require `cl'.
14821
12544bbe
GM
148222011-04-08 Glenn Morris <rgm@gnu.org>
14823
a1de6c6a
GM
14824 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
14825
3c4671f4
GM
14826 * net/browse-url.el (browse-url-firefox):
14827 Test system-type, not system-configuration.
14828
b605679c
GM
14829 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
14830 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
14831 Use log-edit-empty-buffer-p. (Bug#7598)
14832
56442f0c
GM
14833 * net/rlogin.el (rlogin-process-connection-type): Simplify.
14834 (rlogin-mode-map): Initialize in the defvar.
14835 (rlogin): Use ignore-errors.
14836
12544bbe
GM
14837 * replace.el (occur-mode-map): Some fixes for menu items.
14838
eb237b0f
AH
148392011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
14840
14841 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
14842
7d668f2c
CY
148432011-04-06 Chong Yidong <cyd@stupidchicken.com>
14844
e67a13ab
CY
14845 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
14846 issuing unused warnings.
14847
14848 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
14849 macro directly.
14850
7d668f2c
CY
14851 * simple.el: Lisp reimplement of list-processes. Based on an
14852 earlier reimplementation by Leo Liu, but using tabulated-list.el.
14853 (process-menu-mode): New major mode.
14854 (list-processes--refresh, list-processes):
14855 (process-menu-visit-buffer): New functions.
14856
14857 * files.el (save-buffers-kill-emacs): Don't assume any return
14858 value of list-processes, which is undocumented anyway.
14859
a83ec3c9
CY
148602011-04-06 Chong Yidong <cyd@stupidchicken.com>
14861
14862 * emacs-lisp/tabulated-list.el: New file.
14863
e91a96fe
CY
14864 * emacs-lisp/package.el: Use Tabulated List mode.
14865 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
14866 (package-menu-mode): Derive from tabulated-list-mode. Set up the
14867 table format using Tabulated List mode variables.
14868 (package--push): New macro, replacing package-list-maybe-add.
14869 (package-menu--generate): Use package--push. Renamed from
14870 package--generate-package-list.
14871 (package-menu-refresh, list-packages): Use it.
daca8ba5 14872 (package-menu--print-info): Rename from package-print-package.
e91a96fe 14873 Return insertion data instead of inserting it directly.
099c39a4
JB
14874 (package-menu-describe-package, package-menu-execute):
14875 Use tabulated-list-get-id.
e91a96fe
CY
14876 (package-menu-mark-delete, package-menu-mark-install)
14877 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
14878 (package-menu-mark-obsolete-for-deletion):
14879 Use tabulated-list-put-tag.
e91a96fe
CY
14880 (package--list-packages, package-menu-revert)
14881 (package-menu-get-package, package-menu-get-version)
14882 (package-menu-sort-by-column): Functions deleted.
14883 (package-menu-package-list, package-menu-sort-key): Vars deleted.
14884 (package-menu--status-predicate, package-menu--version-predicate)
14885 (package-menu--name-predicate)
14886 (package-menu--description-predicate): Handle arguments in the
14887 Tabulated List format.
14888 (package-list-packages-no-fetch): Call list-packages.
14889
3e214b50
JB
148902011-04-06 Juanma Barranquero <lekktu@gmail.com>
14891
14892 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 14893 (after-find-file): Don't bind it.
3e214b50
JB
14894 (revert-buffer-in-progress-p): New variable.
14895 (revert-buffer): Bind it.
14896 Pass nil for `after-find-file-from-revert-buffer'.
14897
14898 * saveplace.el (save-place-find-file-hook): Use new variable
14899 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
14900
3f0f1700
GM
149012011-04-06 Glenn Morris <rgm@gnu.org>
14902
c0274801
GM
14903 * Makefile.in (AUTOGEN_VCS): New variable.
14904 (autoloads): Use $AUTOGEN_VCS.
14905
3f0f1700
GM
14906 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
14907 * calendar/calendar.el (calendar-mode-map):
14908 Check for toolkit scroll bars. (Bug#8305)
14909
41ea9e48
CY
149102011-04-05 Chong Yidong <cyd@stupidchicken.com>
14911
14912 * minibuffer.el (completion-in-region--postch)
14913 (completion-in-region-mode): Remove unnecessary messages.
14914
6194c800
JB
149152011-04-05 Juanma Barranquero <lekktu@gmail.com>
14916
33256f14
JB
14917 * font-lock.el (font-lock-refresh-defaults):
14918 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
14919 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
14920
6194c800
JB
14921 * info.el (Info-directory-list, Info-read-node-name-2)
14922 (Info-split-parameter-string): Doc fixes.
14923 (Info-virtual-nodes): Reflow docstring.
14924 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
14925 (Info-apropos-toc-nodes, info-finder, Info-get-token)
14926 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
14927 Fix typos in docstrings.
14928 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
14929 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
14930 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
14931 (Info-restore-desktop-buffer): Mark unused parameters.
14932 (Info-directory-find-file, Info-directory-find-node)
14933 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
14934 (Info-virtual-index-find-node, Info-apropos-find-file)
14935 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 14936 Mark unused parameters; fix typos in docstrings.
6194c800
JB
14937 (Info-virtual-index): Remove unused local variable `nodename'.
14938
b87a8200 149392011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 14940
b87a8200
DD
14941 * net/rcirc.el: Update my e-mail address.
14942 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 14943
3b2ff876
CY
149442011-04-05 Chong Yidong <cyd@stupidchicken.com>
14945
14946 * startup.el (command-line): Save the cursor's theme-face
14947 directly, instead of using face-override-spec.
14948
14949 * custom.el (load-theme): Minor optimization in assigning faces.
14950
8d17e7ca
JB
149512011-04-04 Juanma Barranquero <lekktu@gmail.com>
14952
14953 * help-fns.el (describe-variable): Complete all variables having
14954 documentation, including keywords.
14955 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
14956
2fbc1934
JB
149572011-04-04 Juanma Barranquero <lekktu@gmail.com>
14958
14959 Convert to lexical-binding.
14960
14961 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
14962 (bs--get-marked-string, bs--get-modified-string)
14963 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
14964 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
14965 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
14966
14967 * ehelp.el (electric-help-execute-extended)
14968 (electric-help-ctrl-x-prefix):
14969 * hexl.el (hexl-revert-buffer-function):
14970 * linum.el (linum-after-change, linum-after-scroll):
14971 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
14972
14973 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
14974
74f50695
DU
149752011-04-04 Daiki Ueno <ueno@unixuser.org>
14976
14977 * epa-dired.el:
14978 * epa-mail.el:
14979 * epa-hook.el:
14980 * epa-file.el:
14981 * epa.el:
14982 * epg.el: Use lexical binding.
14983
c11325f7
CY
149842011-04-03 Chong Yidong <cyd@stupidchicken.com>
14985
0d9e9a12
CY
14986 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
14987
c11325f7 14988 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
14989 dictionary case for flyspell-mark-duplications-exceptions.
14990 Use regexp matching for languages.
c11325f7
CY
14991 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
14992 default dictionary (Bug#7926).
14993
da91b5f2
CY
149942011-04-02 Chong Yidong <cyd@stupidchicken.com>
14995
099c39a4
JB
14996 * emacs-lisp/package.el (package--with-work-buffer):
14997 Recognize https URLs.
da91b5f2 14998
099c39a4
JB
14999 * net/network-stream.el: Move from gnus/proto-stream.el.
15000 Change prefix to network-stream throughout.
da91b5f2
CY
15001 (open-protocol-stream): Merge into open-network-stream, leaving
15002 open-protocol-stream as an alias. Handle nil BUFFER args.
15003
15004 * subr.el (open-network-stream): Move to net/network-stream.el.
15005
afa8e9f6
GM
150062011-04-02 Glenn Morris <rgm@gnu.org>
15007
1d2e369d
GM
15008 * find-dired.el (find-exec-terminator): New option.
15009 (find-ls-option): Test for -ls support.
15010 (find-ls-subdir-switches): Test for -b in find-ls-option.
15011 (find-dired, find-grep-dired): Doc fixes.
15012 (find-dired): Use find-exec-terminator.
15013
8abb7da8 15014 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
15015 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
15016 (find-name-arg): Remove purecopy.
8abb7da8 15017
f3ca7378
GM
15018 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
15019 (grep-compute-defaults): Check for `-exec COMMAND +' support.
15020 Set grep-find-use-xargs, grep-find-command, and grep-find-template
15021 accordingly. Don't add the null-device if not needed.
15022
afa8e9f6
GM
15023 * files.el (save-some-buffers): Doc fix.
15024
35eae264
EZ
150252011-04-02 Eli Zaretskii <eliz@gnu.org>
15026
15027 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
15028
26b51db5
JB
150292011-04-01 Juanma Barranquero <lekktu@gmail.com>
15030
15031 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
15032 Use `dolist' rather than `mapcar'.
15033
7200d79c
SM
150342011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15035
03408648 15036 Add lexical binding.
7200d79c 15037
03408648
SM
15038 * subr.el (apply-partially): Use new closures rather than CL.
15039 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
15040 (dolist, dotimes): Use slightly different expansion for lexical code.
15041 (functionp): Move to C.
15042 (letrec): New macro.
15043 (with-wrapper-hook): Use it and apply-partially instead of CL.
15044 (eval-after-load): Preserve lexical-binding.
15045 (save-window-excursion, with-output-to-temp-buffer): Turn them
15046 into macros.
7200d79c 15047
03408648
SM
15048 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
15049
15050 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
15051 than the arglist.
15052 (help-add-fundoc-usage): Don't add `Not documented'.
15053 (help-function-arglist): Handle closures, subroutines, and new
15054 byte-code-functions.
15055 (help-make-usage): Remove leading underscores.
15056 (describe-function-1): Handle closures.
15057 (describe-variable): Use special-variable-p for completion.
15058
15059 * files.el (lexical-binding): Declare safe.
f488fb65 15060
03408648
SM
15061 * emacs-lisp/pcase.el: Don't use destructuring-bind.
15062 (pcase--memoize): Rename from pcase-memoize. Change weakness.
15063 (pcase): Add `let' pattern.
15064 Change memoization so it actually works.
15065 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
15066 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
15067 <let>: New case.
f488fb65 15068
03408648
SM
15069 * emacs-lisp/macroexp.el: Use lexical binding.
15070 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
15071 Don't convert ' to #' without checking that it's indeed quoting
15072 a lambda.
15073
15074 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 15075 Use eval-sexp-add-defvars.
03408648
SM
15076 (eval-sexp-add-defvars): New fun.
15077
15078 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
15079
15080 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
15081 Don't autoload.
15082 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
15083 than the internal `byte-compile-lambda'.
15084 (defmethod): Don't hide code under quotes.
15085 (eieio-defmethod): New `code' argument.
15086
15087 * emacs-lisp/eieio-comp.el: Remove.
15088
15089 * emacs-lisp/edebug.el (edebug-eval-defun)
15090 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
15091 (edebug-toggle): Avoid `eval'.
15092
15093 * emacs-lisp/disass.el (disassemble-internal): Handle new
15094 `closure' objects.
15095 (disassemble-1): Handle new byte codes.
15096
15097 * emacs-lisp/cl.el (pushnew): Silence warning.
15098
15099 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
15100 (cl-byte-compile-throw): Remove.
15101 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
15102
15103 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
15104 closures.
15105
15106 * emacs-lisp/cconv.el: New file.
15107
15108 * emacs-lisp/bytecomp.el: Use lexical binding instead of
15109 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
15110 (byte-compile-initial-macro-environment):
15111 Handle declare-function here.
15112 (byte-compile--lexical-environment): New var.
15113 (byte-stack-ref, byte-stack-set, byte-discardN)
15114 (byte-discardN-preserve-tos): New lap codes.
15115 (byte-interactive-p): Don't use any more.
15116 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
15117 New macros.
15118 (byte-compile-lapcode): Use them and handle new lap codes.
15119 (byte-compile-obsolete): Remove.
15120 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
15121 (byte-compile-arglist-warn): Check late def of inlinable funs.
15122 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
15123 since they should have been expanded by now.
15124 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
15125 (byte-compile-from-buffer): Remove unused second arg.
15126 (byte-compile-preprocess): New function.
15127 (byte-compile-toplevel-file-form): New function to distinguish
15128 file-form calls from outside from file-form calls from hunk-handlers.
15129 (byte-compile-file-form): Simplify.
15130 (byte-compile-file-form-defsubst): Remove.
15131 (byte-compile-file-form-defmumble): Simplify now that
15132 byte-compile-lambda always returns a byte-code-function.
15133 (byte-compile): Preprocess.
15134 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
15135 Remove, not used any more.
15136 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
15137 (byte-compile-make-args-desc): New funs.
15138 (byte-compile-lambda): Handle lexical functions. Always return
15139 a byte-code-function.
15140 (byte-compile-reserved-constants): New var, to make up room for
15141 closed-over variables.
15142 (byte-compile-constants-vector): Obey it.
15143 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
15144 (byte-compile-macroexpand-declare-function): New function.
15145 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
15146 byte-code-functions.
15147 (byte-compile-form): Check obsolescence here.
15148 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
15149 (byte-compile-variable-ref): Remove.
15150 (byte-compile-dynamic-variable-op): New fun.
15151 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
15152 (byte-compile-variable-set): New funs.
15153 (byte-compile-discard): Add 2 args.
15154 (byte-compile-stack-ref, byte-compile-stack-set)
15155 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
15156 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
15157 macroexpand-all instead.
15158 (byte-compile-quote-form): Remove.
15159 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
15160 (byte-compile-bind, byte-compile-unbind): New funs.
15161 (byte-compile-let): Handle let* and lexical binding.
15162 (byte-compile-let*): Remove.
15163 (byte-compile-catch, byte-compile-unwind-protect)
15164 (byte-compile-track-mouse, byte-compile-condition-case):
15165 Handle a new :fun-body form, used for lexical scoping.
15166 (byte-compile-save-window-excursion)
15167 (byte-compile-with-output-to-temp-buffer): Remove.
15168 (byte-compile-defun): Simplify.
15169 (byte-compile-stack-adjustment): New fun.
15170 (byte-compile-out): Use it.
15171 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
15172
15173 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
15174 handler any more.
15175
15176 * emacs-lisp/byte-opt.el: Use lexical binding.
15177 (byte-inline-lapcode): Remove (to bytecomp).
15178 (byte-compile-inline-expand): Pay attention to inlining to/from
15179 lexically bound code.
15180 (byte-compile-unfold-lambda): Don't handle byte-code-functions
15181 any more.
15182 (byte-optimize-form-code-walker): Don't handle save-window-excursion
15183 any more and don't call compiler-macros.
15184 (byte-compile-splice-in-already-compiled-code): Remove.
15185 (byte-code): Don't inline any more.
15186 (disassemble-offset): Receive `bytes' as argument rather than via
15187 dynamic scoping.
15188 (byte-compile-tag-number): Declare before first use.
15189 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
15190 `return' even if make-spliceable.
15191 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
15192 obsolete interactive-p.
15193 (byte-optimize-lapcode): Optimize new lap-codes.
15194 Don't trip up on new form of `byte-constant' lap code.
15195
15196 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
15197
15198 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
15199
15200 * custom.el (custom-initialize-default, custom-declare-variable):
15201 Use `defvar'.
15202
15203 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
15204 New variables.
15205 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
15206 (COMPILE_FIRST): Add macroexp and cconv.
15207 * makefile.w32-in: Mirror changes in Makefile.in.
15208
15209 * vc/cvs-status.el:
15210 * vc/diff-mode.el:
15211 * vc/log-edit.el:
15212 * vc/log-view.el:
15213 * vc/smerge-mode.el:
15214 * textmodes/bibtex-style.el:
15215 * textmodes/css.el:
15216 * startup.el:
15217 * uniquify.el:
da91b5f2
CY
15218 * minibuffer.el:
15219 * newcomment.el:
15220 * reveal.el:
15221 * server.el:
15222 * mpc.el:
15223 * emacs-lisp/smie.el:
15224 * doc-view.el:
15225 * dired.el:
03408648
SM
15226 * abbrev.el: Use lexical binding.
15227
0f0c1f27
EZ
152282011-04-01 Eli Zaretskii <eliz@gnu.org>
15229
15230 * info.el (info-display-manual): New function.
15231
c82b2579
SM
152322011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
15233
15234 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
15235
221ddf68
TH
152362011-03-31 Tassilo Horn <tassilo@member.fsf.org>
15237
15238 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 15239 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 15240
cba6e77e
GM
152412011-03-31 Glenn Morris <rgm@gnu.org>
15242
e040639f
GM
15243 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
15244
cba6e77e
GM
15245 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
15246
6d0f1c9e
CS
152472011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
15248
15249 * progmodes/python.el (python-default-interpreter)
15250 (python-python-command-args, python-jython-command-args)
15251 (python-which-shell, python-which-args, python-which-bufname)
15252 (python-file-queue, python-comint-output-filter-function)
15253 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
15254 variables and functions.
15255
3e2d70fd
SM
152562011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
15257
15258 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
15259 (completion-in-region-mode): New minor mode.
15260 (completion-in-region): Use it.
15261 (completion-in-region--data, completion-in-region-mode-map): New vars.
15262 (completion-in-region--postch): New function.
15263 (completion--capf-misbehave-funs, completion--capf-safe-funs):
15264 New vars.
15265 (completion--capf-wrapper): New function.
15266 (completion-at-point): Use it to track well-behavedness of
15267 hook functions.
15268 (completion-help-at-point): New command.
15269
f3e4086c
JM
152702011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
15271
15272 * vc/add-log.el (add-change-log-entry): Don't use whitespace
15273 syntax class to search for whitespace on a single line
15274 (Message-ID: <4D938140.4030905@redhat.com>).
15275
eb7ffc14
LL
152762011-03-30 Leo Liu <sdl.web@gmail.com>
15277
15278 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
15279 New commands.
15280 (edit-abbrevs-map): Bind them here.
15281 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
15282
d806ab68
KM
152832011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
15284
15285 * allout.el (allout-hide-by-annotation, allout-flag-region):
15286 Reduce possibility of overlay leakage by making them volatile.
15287
15288 * allout-widgets.el (allout-widgets-tally): Define as nil so the
15289 hash is not shared between buffers. Mode initialization is
15290 responsible for giving it a useful starting value.
15291 (allout-item-span): Reduce possibility of overlay leakage by
15292 making them volatile.
15293 (allout-widgets-count-buttons-in-region): Add diagnostic function
15294 for tracking down button overlay leaks.
15295
ea622834
LL
152962011-03-29 Leo Liu <sdl.web@gmail.com>
15297
15298 * ido.el (ido-read-internal): Use the default history var
15299 minibuffer-history if no HISTORY is specified.
15300
b62f8267
G
153012011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
15302
03408648
SM
15303 * net/imap.el (imap-shell-open, imap-process-connection-type):
15304 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
15305 Kerberos, SSL, other subprocesses.
15306
947b6566
LL
153072011-03-28 Leo Liu <sdl.web@gmail.com>
15308
15309 * abbrev.el (abbrev-table-empty-p): New function.
15310 (prepare-abbrev-list-buffer): Place empty abbrev tables after
15311 nonempty ones. (Bug#5937)
15312
5ffb62aa
JD
153132011-03-27 Jan Djärv <jan.h.d@swipnet.se>
15314
15315 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
15316
7a097943
LL
153172011-03-27 Leo Liu <sdl.web@gmail.com>
15318
15319 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
15320 for foreground and background colors.
15321 (ansi-color-make-color-map): Adapt.
15322
c5b40130
LL
153232011-03-25 Leo Liu <sdl.web@gmail.com>
15324
1f48f7d2
LL
15325 * midnight.el (midnight-time-float): Remove. Note it calculates
15326 the microsecond component incorrectly and seconds-to-time does the
15327 same job.
625897ec 15328 Remove redundant (require 'timer).
1f48f7d2 15329
c5b40130
LL
15330 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
15331 (ido-completions): Remove unused arguments. (Bug#8329)
15332
d86d2721
SM
153332011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
15334
15335 * minibuffer.el (completion--flush-all-sorted-completions):
15336 Remove itself from hook.
15337 (completion-at-point): Let the functions perform the completion
15338 immediately and return nil or t.
15339 * comint.el (comint-dynamic-complete-functions): Now identical to
15340 completion-at-point-functions.
15341 (comint-dynamic-list-input-ring): Remove unused var `index'.
15342 (comint--match-partial-filename, comint--unquote&expand-filename):
15343 New funs, split from comint-match-partial-filename.
15344 (comint-dynamic-complete): Use completion-at-point.
15345 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
15346
e8974c48
DA
153472011-03-24 Drew Adams <drew.adams@oracle.com>
15348
15349 * thingatpt.el: Support `defun'.
15350
def71b5e
LL
153512011-03-23 Leo Liu <sdl.web@gmail.com>
15352
cb5af48e
LL
15353 * abbrevlist.el: Move to obsolete/abbrevlist.el.
15354
def71b5e
LL
15355 * help-mode.el (help-mode-finish): Tweak regexp.
15356
927c53e7
GM
153572011-03-23 Glenn Morris <rgm@gnu.org>
15358
18d05bed
GM
15359 * eshell/esh-opt.el (eshell-eval-using-options):
15360 Do not bind unused local variable `eshell-option-stub'.
15361
927c53e7
GM
15362 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
15363
9d0da923
JB
153642011-03-22 Juanma Barranquero <lekktu@gmail.com>
15365
15366 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
15367 keymap variable in `with-no-warnings' to avoid a warning when the
15368 keymap has been already `defconst'ed.
15369
4b978a67
LL
153702011-03-22 Leo Liu <sdl.web@gmail.com>
15371
15372 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
15373 encode all chars in abbrevs; otherwise use emacs-mule or
15374 utf-8-emacs. (Bug#8308)
15375
5fd62452
JB
153762011-03-22 Juanma Barranquero <lekktu@gmail.com>
15377
0b1596c6
JB
15378 * simple.el (backward-delete-char-untabify):
15379 Avoid warning about using `delete-backward-char'.
15380
5fd62452
JB
15381 * image.el (image-type-file-name-regexps): Make it variable.
15382 `imagemagick-register-types' modifies it, and the user may want
15383 to add new extensions for known image types.
15384 (imagemagick-register-types): Throw error if not using ImageMagick.
15385
0b4e93f1
LL
153862011-03-22 Leo Liu <sdl.web@gmail.com>
15387
15388 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
15389 located before rcirc-prompt-end-marker.
15390 (rcirc-complete): Error if point is not after rcirc prompt.
15391 Handle the case when table is nil.
9882e214 15392 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 15393
fccee4ab
CY
153942011-03-22 Chong Yidong <cyd@stupidchicken.com>
15395
15396 * custom.el (custom--inhibit-theme-enable): Make it affect only
15397 custom-theme-set-variables and custom-theme-set-faces.
15398 (provide-theme): Ignore custom--inhibit-theme-enable.
15399 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
15400 (custom-enabling-themes): Delete variable.
d86d2721
SM
15401 (enable-theme): Accept only loaded themes as arguments.
15402 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
15403 (custom-enabled-themes): Forbid themes from setting this.
15404 Eliminate use of custom-enabling-themes.
15405 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 15406
af896da6
LL
154072011-03-21 Leo Liu <sdl.web@gmail.com>
15408
15409 * ido.el (ido-read-internal): Add ido-selected to history instead
15410 of user input.
15411
78f64af0
SM
154122011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
15413
15414 * subr.el (deferred-action-list, deferred-action-function):
15415 Mark obsolete.
15416
b16ac1ec
LL
154172011-03-21 Leo Liu <sdl.web@gmail.com>
15418
810f7698
LL
15419 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
15420 change on 2011-02-13 (bug#8309).
15421
b16ac1ec
LL
15422 * minibuffer.el (read-file-name-function): Change default value.
15423 (read-file-name--defaults): Rename from read-file-name-defaults.
15424 (read-file-name-default): Rename from read-file-name.
15425 (read-file-name): Call read-file-name-function.
15426
4e05e67e
GM
154272011-03-21 Glenn Morris <rgm@gnu.org>
15428
15429 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
15430 Doc fixes.
15431
4359915b
CY
154322011-03-21 Chong Yidong <cyd@stupidchicken.com>
15433
15434 * cus-theme.el: Add missing provide statement.
15435 (customize-create-theme): Extract theme value correctly.
15436 (custom-theme-visit-theme): Autoload.
15437 (customize-create-theme): Prompt before inserting default faces.
15438
1fe275ee
JB
154392011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
15440
15441 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
15442 units and musical notes.
15443
cd394be1 154442011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
15445
15446 * ido.el (ido-read-internal): Use completing-read-default.
15447 (ido-completing-read): Fix compatibility with completing-read.
15448
7d476bde
CO
154492011-03-20 Christian Ohler <ohler@gnu.org>
15450
15451 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
15452 (ert-delete-all-tests): Use `called-interactively-p' rather than
15453 `interactive-p'.
15454 (ert--make-xrefs-region): Respect END.
15455
fe0fb33e
CY
154562011-03-19 Chong Yidong <cyd@stupidchicken.com>
15457
ff854b0b
CY
15458 * dired-aux.el (dired-create-directory): Signal an error if the
15459 directory already exists (Bug#8246).
15460
fe0fb33e
CY
15461 * facemenu.el (list-colors-display): Call list-faces-display
15462 inside with-help-window.
15463 (list-colors-print): Use display property to align the final
15464 column, instead of checking window-width.
15465
576bce32
EZ
154662011-03-19 Eli Zaretskii <eliz@gnu.org>
15467
4d61f28d 15468 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
15469 windows-nt systems.
15470 (emerge-protect-metachars): Quote correctly for ms-dos and
15471 windows-nt systems.
15472
89c41d68 154732011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
15474
15475 * info.el (info-initialize): Replace all uses of `:' with
15476 path-separator for compatibility with non-Unix systems.
15477 Cache quoting of path-separator. (Bug#8258)
15478
b14e3e21 154792011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
15480
15481 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
15482 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
15483 (mouse-avoidance-mode): Fix typos in docstrings.
15484
4525ce3e
CY
154852011-03-19 Chong Yidong <cyd@stupidchicken.com>
15486
15487 * startup.el (package-subdirectory-regexp): Move from package.el.
15488 Omit \\` and \\', and let callers add them.
15489
15490 * emacs-lisp/package.el (package-strip-version)
15491 (package-load-all-descriptors): Add \\` and \\' to
15492 package-subdirectory-regexp before using it.
15493 (package-untar-buffer): New arg DIR; ensure that file untars only
15494 into this expected directory. Remove superfluous delete-region.
15495 (package-unpack): Caller changed.
15496 (package-tar-file-info): Use package-subdirectory-regexp.
15497
a904a09a 154982011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 15499
a904a09a
SM
15500 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
15501 diff-mode-shared-map (bug#8284).
15502 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
15503
155042011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15505
15506 * calendar/time-date.el (format-seconds): Use assoc instead of
15507 assoc-string, since assoc-string doesn't exist in XEmacs.
15508
171fc304
JB
155092011-03-17 Juanma Barranquero <lekktu@gmail.com>
15510
15511 * custom.el (custom-known-themes): Reflow docstring.
15512 (custom-theme-load-path): Fix typo in docstring.
15513 (load-theme): Fix typo in error message.
15514 (custom-available-themes, custom-variable-theme-value):
15515 Use `let', not `let*'.
15516
d71990a1
JB
155172011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
15518
15519 * calc/README: Mention inclusion of musical notes.
15520
15521 * calc/calc-units.el (calc-lu-quant): Rename from
15522 `calc-logunits-quantity'.
15523 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
15524 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
15525 (calc-db): Rename from `calc-dblevel'.
15526 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
15527 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
15528 (calc-np): Rename from `calc-nplevel'.
15529 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
15530 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
15531 (calc-lu-plus): Rename from `calc-logunits-add'.
15532 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
15533 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
15534 (calc-lu-minus): Rename from `calc-logunits-sub'.
15535 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
15536 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
15537 (calc-lu-times): Rename from `calc-logunits-mul'.
15538 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
15539 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
15540 (calc-lu-divide): Rename from `calc-logunits-div'.
15541 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
15542 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
15543
15544 * calc/calc-ext.el (calc-init-extensions): Update the names of the
15545 functions being autoloaded.
15546
15547 * calc/calc.el (calc-lu-power-reference): Rename from
15548 `calc-logunits-power-reference'.
15549 (calc-lu-field-reference): Rename from
15550 `calc-logunits-field-reference'.
15551
7a71b18d
GM
15552 * calc/calc-help.el (calc-l-prefix-help):
15553 Mention musical note functions.
d71990a1 15554
40c2934b
SM
155552011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
15556
15557 * minibuffer.el (completion-all-sorted-completions):
15558 Use :completion-cycle-penalty text property if present.
15559
b0911414
KM
155602011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
15561
15562 * allout.el (allout-yank-processing): Adjust for new rebulleting
15563 regime so bullet being yanked is used without prompting the user
15564 for a choice.
15565
8a05b668
JB
155662011-03-16 Juanma Barranquero <lekktu@gmail.com>
15567
15568 * startup.el (command-line): Warn the user that _emacs is deprecated.
15569
5ba5fb81
JB
155702011-03-16 Juanma Barranquero <lekktu@gmail.com>
15571
15572 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
15573 (delphi-verbose, delphi-comment-face, delphi-string-face)
15574 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
15575 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
15576 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
15577 (delphi-new-comment-line, delphi-font-lock-defaults)
15578 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
15579 Fix typos in docstrings.
15580
2dab465b
KM
155812011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
15582
5ba5fb81 15583 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
15584 Invert the roles of character and string values for INSTEAD, so a
15585 string is used for the more common case of a defaulting prompt.
15586
0adf5618
SM
155872011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15588
15589 * progmodes/ruby-mode.el (ruby-backward-sexp):
15590 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
15591 * play/gamegrid.el (gamegrid-make-face):
15592 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
15593 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
15594 * notifications.el (notifications-notify):
15595 * net/xesam.el (xesam-search-engines):
15596 * net/quickurl.el (quickurl-list-insert):
15597 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
15598
d72700e5
CY
155992011-03-15 Chong Yidong <cyd@stupidchicken.com>
15600
15601 * startup.el (command-line): Update package subdirectory regexp.
15602
49c5410a
SM
156032011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15604
c6eee9aa
SM
15605 * allout.el (allout-abbreviate-flattened-numbering)
15606 (allout-mode-deactivate-hook): Fix up obsolescence "date".
15607
49c5410a
SM
15608 * subr.el (read-char-choice): Only show the cursor after the prompt,
15609 not after the answer.
15610
047b2bb9
KR
156112011-03-15 Kevin Ryde <user42@zip.com.au>
15612
15613 * help-fns.el (variable-at-point): Skip leading quotes, if any
15614 (bug#8253).
15615
0a57d256
SM
156162011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15617
15618 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
15619 warning message.
15620
77c992bc
MA
156212011-03-14 Michael Albinus <michael.albinus@gmx.de>
15622
15623 * shell.el (shell): When called interactively, offer to change the
15624 shell file name on remote hosts.
15625
eebc475d
TZ
156262011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
15627
15628 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
15629 integration for LDAP parameters. The host, base, user or binddn,
15630 and secret tokens can be specified in a netrc file, for instance.
15631 This is optional because an `auth-source' parameter must be
15632 specified in the search attributes.
15633
9d05d1ba
JB
156342011-03-13 Juanma Barranquero <lekktu@gmail.com>
15635
15636 * help.el (describe-mode): Link to the mode's definition (bug#8185).
15637
09d9db2c
GM
156382011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15639
15640 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
15641 into declaration. Remove redundant and harmful binding.
15642
156432011-03-12 Eli Zaretskii <eliz@gnu.org>
15644
15645 * files.el (file-ownership-preserved-p): Pass `integer' as an
15646 explicit 2nd argument to `file-attributes'. If the file's owner
15647 is the Administrators group on Windows, and the current user is
15648 Administrator, consider that a match.
15649
15650 * server.el (server-ensure-safe-dir): Consider server directory
15651 safe on MS-Windows if its owner is the Administrators group while
15652 the current Emacs user is Administrator. Use `=' to compare
15653 numerical UIDs, since they could be integers or floats.
15654
219bd536
JB
156552011-03-12 Juanma Barranquero <lekktu@gmail.com>
15656
15657 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
15658
f3afd36b
MA
156592011-03-12 Michael Albinus <michael.albinus@gmx.de>
15660
15661 Sync with Tramp 2.2.1.
15662
15663 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
15664
15665 * net/trampver.el: Update release number.
15666
3aaaa6f1
SM
156672011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15668
94642599
SM
15669 * progmodes/compile.el (compilation--previous-directory): Fix up
15670 various nil/dead-marker mismatches (bug#8014).
15671 (compilation-directory-properties, compilation-error-properties):
15672 Don't call it at a position past the one we're about to change.
15673
3aaaa6f1
SM
15674 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
15675 Disable obsolescence warnings in the file that declares it.
15676
14239447
KM
156772011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
15678
099c39a4
JB
15679 * allout-widgets.el (allout-widgets-tally):
15680 Initialize allout-widgets-tally as a hash table rather than nil to
15681 prevent mode-line redisplay warnings. Also, clarify the module
15682 description and fix a comment typo.
14239447 15683
135e287c
JB
156842011-03-11 Juanma Barranquero <lekktu@gmail.com>
15685
15686 * help-fns.el (describe-variable): Don't complete keywords.
15687 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
15688
ffbf300e
CY
156892011-03-10 Chong Yidong <cyd@stupidchicken.com>
15690
ba08b241
CY
15691 * emacs-lisp/package.el (package-version-join): Impose a standard
15692 string representation for pre/alpha/beta version lists.
15693 (package-unpack-single): Standardize the directory name by passing
15694 it through package-version-join.
15695 (package-strip-rcs-id): Accept any version string that does not
15696 signal an error in version-to-list.
ffbf300e 15697
f346fd6b
MA
156982011-03-10 Michael Albinus <michael.albinus@gmx.de>
15699
15700 * simple.el (delete-trailing-whitespace): Return nil for the
15701 benefit of `write-file-functions'.
15702
ccb55d27
GM
157032011-03-10 Glenn Morris <rgm@gnu.org>
15704
5ceaac0c
GM
15705 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
15706
02da65ff
GM
15707 * vc/vc-git.el (vc-git-program): New option.
15708 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
15709 (vc-git--call): Use it.
15710
b2f603cc
GM
15711 * eshell/esh-util.el (eshell-condition-case): Doc fix.
15712
5772caab
GM
15713 * cus-edit.el (Custom-newline): If no button at point, look
15714 for a subgroup button at start-of-line. (Bug#2298)
15715
ccb55d27
GM
15716 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
15717
ec6ecaed
JD
157182011-03-10 Julien Danjou <julien@danjou.info>
15719
15720 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
15721 `cursor-type' is nil.
15722
9d5aa01d
JB
157232011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
15724
15725 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
15726
b6a5875b
KM
157272011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
15728
7a71b18d 15729 * allout.el: Change so yank of distinctive-bullet items
b6a5875b
KM
15730 preserves the existing header prefix, rebulleting it if necessary,
15731 rather than replacing it. This is necessary for proper operation
15732 of cooperative addons like allout-widgets.
1154d12e
JB
15733 (allout-make-topic-prefix, allout-rebullet-heading):
15734 Change SOLICIT arg to INSTEAD, and interpret additionally a string
15735 value as alternate bullet to be used, instead of prompting the user
15736 for a bullet character.
b6a5875b 15737
ee545c35
MA
157382011-03-09 Michael Albinus <michael.albinus@gmx.de>
15739
d86d2721
SM
15740 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15741 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
15742 `tramp-default-port'.
15743
c47971d7
DD
157442011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
15745
15746 * net/rcirc.el (rcirc-handler-001): Remove useless
15747 with-rcirc-process-buffer.
15748 (rcirc-check-auth-status): Swap arguments to string-match.
15749
13522cb4
GM
157502011-03-09 Glenn Morris <rgm@gnu.org>
15751
0be6f4f1
GM
15752 * shell.el (shell-mode):
15753 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
15754
13522cb4
GM
15755 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
15756 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
15757
515de2e3
CY
157582011-03-08 Chong Yidong <cyd@stupidchicken.com>
15759
15760 * emacs-lisp/package.el (package-refresh-contents)
15761 (package-menu-execute): Use condition-case-no-debug.
15762
b511b994
MA
157632011-03-08 Michael Albinus <michael.albinus@gmx.de>
15764
15765 * simple.el (shell-command-to-string): Use `process-file'.
15766
15767 * emacs-lisp/package.el (package-tar-file-info): Handle also
15768 remote files.
15769
d86d2721
SM
15770 * emacs-lisp/package-x.el (package-upload-buffer-internal):
15771 Use `equal' for upload base check.
b511b994 15772
25bbfb31
AM
157732011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
15774
15775 * textmodes/texinfo.el (texinfo-environments):
15776 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
15777
be996521
GM
157782011-03-08 Glenn Morris <rgm@gnu.org>
15779
e9c8529f
GM
15780 * cus-start.el (cursor-in-non-selected-windows):
15781 Fix :set quoting oddness. (Bug#8192)
15782
be996521
GM
15783 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
15784 in some setf expressions. (Bug#2159)
15785
2bb5649e
CY
157862011-03-08 Chong Yidong <cyd@stupidchicken.com>
15787
15788 * custom.el (custom-available-themes): Return themes in
15789 alphabetical order.
15790
33383987 15791See ChangeLog.15 for earlier changes.
e3d51b27
MR
15792
15793;; Local Variables:
15794;; coding: utf-8
e3d51b27
MR
15795;; End:
15796
acaf905b 15797 Copyright (C) 2011-2012 Free Software Foundation, Inc.
e3d51b27
MR
15798
15799 This file is part of GNU Emacs.
15800
15801 GNU Emacs is free software: you can redistribute it and/or modify
15802 it under the terms of the GNU General Public License as published by
15803 the Free Software Foundation, either version 3 of the License, or
15804 (at your option) any later version.
15805
15806 GNU Emacs is distributed in the hope that it will be useful,
15807 but WITHOUT ANY WARRANTY; without even the implied warranty of
15808 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15809 GNU General Public License for more details.
15810
15811 You should have received a copy of the GNU General Public License
15812 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.