apropos.el doc fixes.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
98282f6f
GM
12011-11-12 Glenn Morris <rgm@gnu.org>
2
3 * apropos.el (apropos-do-all, apropos-library, apropos-value)
4 (apropos-documentation): Doc fixes.
5
40a8bdf6
JB
62011-11-11 Juanma Barranquero <lekktu@gmail.com>
7
8 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
9 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
10
65bd19ff
SM
112011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
12
13 * electric.el (electric-indent-post-self-insert-function): Make it
14 possible for a char to only indent in some circumstances.
15 (electric-indent-mode): Simplify.
16
54f9154c
MR
172011-11-11 Martin Rudalics <rudalics@gmx.at>
18
19 * window.el (windows-with-parameter): Remove unused function.
20 (windows-at-side): Rename to window-at-side-list.
21 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
22 (window-side-check, window-size-ignore, window-size-fixed-1)
23 (window-in-direction-2): Prefix with "window--".
24 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 25
68cbc58b
GM
262011-11-11 Glenn Morris <rgm@gnu.org>
27
28 * subr.el (eval-after-load): If FILE is already loaded,
29 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
30
b2621720
GM
312011-11-10 Glenn Morris <rgm@gnu.org>
32
9a4de110
GM
33 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
34 Call svn via vc-svn-command rather than vc-do-command.
35 (vc-svn-command): Add --non-interactive. (Bug#9993)
36 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
37
b2621720
GM
38 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
39 Add toggle-read-only. (Bug#7292)
40 * files.el (toggle-read-only): Mention that it should only
41 be used interactively. (Bug#10006)
42
1dce7193
SM
432011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
44
d9ac1a1e
SM
45 * progmodes/compile.el (compilation-error-regexp-alist-alist):
46 Adjust regexp for OCaml warnings.
47
0c325082
SM
48 * electric.el (electric-pair-post-self-insert-function): Let user
49 turn it off buffer-locally (bug#9932).
50
90132c14
SM
51 * progmodes/python.el (python-beginning-of-statement):
52 Rewrite (bug#2703).
53
1dce7193
SM
54 * progmodes/compile.el: Better handle TABs (bug#9749).
55 (compilation-internal-error-properties)
56 (compilation-next-error-function): Obey the target buffer's
57 compilation-error-screen-columns.
58
c4e7c63a
JB
592011-11-09 Juanma Barranquero <lekktu@gmail.com>
60
61 * progmodes/meta-mode.el: Remove obsolete comments.
62 (meta-right-comment-regexp, meta-ignore-comment-regexp):
63 Fix typos in docstrings.
64
2cffd681
MR
652011-11-09 Martin Rudalics <rudalics@gmx.at>
66
67 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 68 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
69 (window--resizable): New function. Make all callers of
70 window-resizable call window--resizable instead.
71 (window-resizable): Rewrite in terms of window--resizable.
72
0edcba87
GM
732011-11-08 Glenn Morris <rgm@gnu.org>
74
75 * progmodes/delphi.el (delphi-mode-syntax-table):
76 Let define-derived-mode define a proper syntax table. (Bug#9994)
77
4b0d61e3
SM
782011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
79
80 * window.el: Stay away from defsubst.
81 (window-list-no-nils): Remove.
82 (window-state-get-1, window-state-get): Use backquote instead.
83
fcbcac2e 842011-11-08 thierry <thierry.volpiatto@gmail.com>
85
4b0d61e3 86 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 87 Fix incorrect use of default argument in `completing-read'.
88
e1c2c6f2
MR
892011-11-08 Martin Rudalics <rudalics@gmx.at>
90
91 * window.el (display-buffer-function, special-display-function):
92 Mention display-buffer-record-window but do not mention
93 help-setup parameter in doc-strings.
b3f4a882 94 (window-min-delta): Fix doc-string typo.
e1c2c6f2 95
105216ed
CY
962011-11-08 Chong Yidong <cyd@gnu.org>
97
98 * window.el (window-total-height, window-total-width): Doc fix.
99 (window-body-size): Move from C.
100 (window-body-height, window-body-width): Move to C.
101
0a9f9ab5
SM
1022011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
103
104 * window.el: Make special-display like display-buffer-alist (bug#9532).
105 (display-buffer--special-action): New function, morphed
106 from display-buffer--special.
107 (display-buffer): Use it to handle special-display-buffers at higher
108 priority (just after display-buffer-alist).
109 (display-buffer-fallback-action, display-buffer--other-frame-action)
110 (pop-to-buffer-same-window): Remove display-buffer--special.
111
a769dd15
GM
1122011-11-07 Glenn Morris <rgm@gnu.org>
113
114 * calendar/cal-menu.el (cal-menu-set-date-title):
115 Do nothing if not in a calendar. (Bug#9976)
116
05a61ee3
SM
1172011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
118
119 * files.el (find-file): Always use selected-window.
120
be7f5545
MR
1212011-11-07 Martin Rudalics <rudalics@gmx.at>
122
123 * window.el (window-combinations): Make WINDOW argument
124 mandatory. Rewrite doc-string.
125 (walk-window-subtree, window-atom-check, window-min-delta)
126 (window-max-delta, window--resize-this-window)
127 (window--resize-root-window-vertically, window-tree)
128 (balance-windows, window-state-put): Rewrite doc-strings as to
129 not mention the term "subwindow".
130 (window--resize-subwindows-skip-p): Rename to
131 window--resize-child-windows-skip-p.
132 (window--resize-subwindows-normal): Rename to
133 window--resize-child-windows-normal.
134 (window--resize-subwindows): Rename to
135 window--resize-child-windows.
136 (window-or-subwindow-p): Rename to window--in-subtree-p.
137
3c6702ef
ML
1382011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
139
140 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
141 Ensure that mbox format messages end in two newlines (Bug#9974).
142
49745b39
CY
1432011-11-06 Chong Yidong <cyd@gnu.org>
144
145 * window.el (window-combination-p): Function deleted; its
146 side-effect is not used in any existing code.
147 (window-combinations, window-combined-p): Call window-*-child
148 directly.
149
24300f5f
CY
1502011-11-05 Chong Yidong <cyd@gnu.org>
151
152 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
153 (window-size-ignore, window-state-get): Callers changed.
154 (window-normalize-window): Rename from window-normalize-any-window.
155 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 156 (window-normalize-live-window): Delete.
447f16b8
CY
157 (window-combination-p, window-combined-p, window-combinations)
158 (walk-window-subtree, window-atom-root, window-min-size)
159 (window-sizable, window-sizable-p, window-size-fixed-p)
160 (window-min-delta, window-max-delta, window-resizable)
161 (window-resizable-p, window-full-height-p, window-full-width-p)
162 (window-current-scroll-bars, window-point-1, set-window-point-1)
163 (window-at-side-p, window-in-direction, window-resize)
164 (adjust-window-trailing-edge, maximize-window, minimize-window)
165 (window-deletable-p, delete-window, delete-other-windows)
166 (record-window-buffer, unrecord-window-buffer)
167 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
168 (quit-window, split-window, window-state-put)
169 (set-window-text-height, fit-window-to-buffer)
170 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 171
89bd5ee1
EZ
1722011-11-04 Eli Zaretskii <eliz@gnu.org>
173
53479029
EZ
174 * mail/rmail.el (rmail-simplified-subject): Decode subject with
175 rfc2047-decode-string.
176 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
177 warnings.
178
89bd5ee1
EZ
179 * window.el (window-body-height, window-body-width): Mention in
180 the doc string that the return values are in frame's canonical
181 units. (Bug#9949)
182
bd17fdee
AM
1832011-11-03 Alan Mackenzie <acm@muc.de>
184
185 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
186 change in cc-engine.el.
187
acc825c5
SM
1882011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
189
190 * window.el (switch-to-buffer): Use `force-same-window' interactively.
191
1885e5b8
MR
1922011-11-02 Martin Rudalics <rudalics@gmx.at>
193
194 * window.el (quit-window): Call unrecord-window-buffer after
195 showing another buffer in the window. (Bug#9937)
acc825c5 196 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 197
ebe06da9
JB
1982011-11-02 Juanma Barranquero <lekktu@gmail.com>
199
200 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
201 Accept status with more than 9 shelves. (Bug#9935)
202 Reported by Colin D Bennett <colin@gibibit.com>.
203
4ee88440
MR
2042011-11-01 Martin Rudalics <rudalics@gmx.at>
205
206 * help.el (with-help-window): Don't reference
207 temp-buffer-show-specifiers in doc-string.
208
08e1d82c
AS
2092011-10-31 Andreas Schwab <schwab@linux-m68k.org>
210
211 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
212 menu-item.
213
84bd6e9e
VJL
2142011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
215
216 * whitespace.el: New version 13.2.2.
217 (whitespace-newline-mode): Disable properly. Reported by Sarah
218 <EmacsWiki>.
219
dba0634a
UJ
2202011-10-30 Ulf Jasper <ulf.jasper@web.de>
221
222 * net/newst-treeview.el: Remove "Time-stamp".
223 (newsticker--group-manage-orphan-feeds): Do not call
224 newsticker--treeview-tree-update.
db22a3c2
JB
225 (newsticker-treeview-update, newsticker-treeview):
226 Call newsticker--treeview-tree-update if necessary.
dba0634a 227
3d8daefe
MR
2282011-10-30 Martin Rudalics <rudalics@gmx.at>
229
230 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
231 (window-iso-combinations): Remove "iso-" infix.
232 Suggested by Chong Yidong.
3d8daefe
MR
233 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
234 (window-max-delta-1, window-resize, window--resize-siblings)
235 (window--resize-this-window, adjust-window-trailing-edge)
236 (split-window, balance-windows-1)
237 (shrink-window-if-larger-than-buffer):
238 * calendar/calendar.el (calendar-generate-window):
db22a3c2 239 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 240
1bc4c3ae
SM
2412011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
242
243 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
244 in place (bug#9907).
245 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
246 (eshell-rewrite-if-command, eshell-rewrite-for-command)
247 (eshell-structure-basic-command, eshell-rewrite-while-command)
248 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
249 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
250 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
251 (eshell-do-pipelines-synchronously, eshell-eval-command):
252 Use backquotes and prefer setq to set.
253 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
254 (eshell-macrop): Use functionp.
c1e2f5fa 255 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 256
30b65d9c
CY
2572011-10-30 Chong Yidong <cyd@gnu.org>
258
259 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
260 instead of set-mark (Bug#9810).
261
2d197ffb
CY
2622011-10-30 Chong Yidong <cyd@gnu.org>
263
264 * window.el (split-window-below, split-window-right): Rename from
265 split-window-above-each-other and split-window-side-by-side
266 respectively. All callers changed.
267 (split-window-sensibly, split-window-sensibly): Use them.
268 (split-window-keep-point): Doc fix.
269
270 * isearch.el: Add isearch-scroll property to split-window-below
271 and split-window-right.
272
273 * follow.el (follow-mode):
274 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
275 * progmodes/ada-xref.el (ada-gdb-application):
276 * emulation/vip.el (vip-buffer-in-two-windows):
277 * image-dired.el (image-dired-dired-with-window-configuration):
278 * dired-x.el (dired-do-find-marked-files):
279 * dired.el (dired-pop-to-buffer):
280 * bs.el (bs--show-with-configuration):
281 * vc/emerge.el (emerge-setup-windows):
282 * textmodes/two-column.el (2C-two-columns):
283 * textmodes/reftex-toc.el (reftex-toc):
284 * progmodes/gdb-mi.el (gdb-setup-windows):
285 * progmodes/fortran.el (fortran-window-create):
286 * net/newst-treeview.el (newsticker--treeview-window-init):
287 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
288 * emulation/tpu-edt.el (tpu-gold-map):
289 * emulation/crisp.el (crisp-mode-map):
290 * calendar/calendar.el (calendar-basic-setup): Callers changed.
291
38bb2ca8
CY
2922011-10-29 Chong Yidong <cyd@gnu.org>
293
aa4de341
CY
294 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
295
e1eb5385
CY
296 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
297
5d2ece3c
CY
298 * textmodes/flyspell.el (flyspell-word): Fix char offset for
299 forged Ispell output (Bug#7904).
300
38bb2ca8
CY
301 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
302
d0af9f77
SM
3032011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
304
305 * doc-view.el: Avoid ugly errors about not finding nil.
306 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
307 (doc-view-dvipdf-program, doc-view-unoconv-program)
308 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
309 Avoid nil or absolute file name as default value.
310 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
311
52bedd34
AM
3122011-10-28 Alan Mackenzie <acm@muc.de>
313
db22a3c2 314 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 315
7e43cfa5
AM
3162011-10-28 Alan Mackenzie <acm@muc.de>
317
318 Amend the handling of c-beginning/end-of-defun in nested declaration
319 scopes.
320
52bedd34
AM
321 * progmodes/cc-vars.el (c-defun-tactic): Move here from
322 cc-langs.el. Change it to a defcustom.
7e43cfa5 323
52bedd34
AM
324 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
325 cc-vars.el.
7e43cfa5 326
d0af9f77
SM
327 * progmodes/cc-engine.el (c-beginning-of-statement-1):
328 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 329
52bedd34 330 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 331 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
332 (c-widen-to-enclosing-decl-scope): New function.
333 (c-while-widening-to-decl-block): New macro.
334 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
335 outward for defun boundaries, and correspondingly change symbol
336 `respect-enclosure' to `go-outward'.
337 (c-declaration-limits): Change algorithm to report only the "innermost"
338 defun's boundaries.
339
1a2ce9ee
DD
3402011-10-28 Deniz Dogan <deniz@dogan.se>
341
342 * net/rcirc.el (rcirc-mode): Use hard newlines.
343
bc97a826
AM
3442011-10-28 Alan Mackenzie <acm@muc.de>
345
346 Amend to indent and fontify macros "which include their own semicolon"
347 correctly, using the "virtual semicolon" mechanism.
348
52bedd34 349 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 350
d0af9f77 351 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
acc825c5 352 Recode to scan one line at at time rather than having \n and \r
52bedd34 353 explicitly in c-stmt-delim-chars
bc97a826
AM
354 (for some modes, e.g. AWK).
355 (c-forward-label): Amend for virtual semicolons.
356 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions
357
52bedd34
AM
358 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
359 of the new C macros.
bc97a826 360
52bedd34 361 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
362 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
363 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
364 (c-opt-cpp-macro-define): Make into a full language variable.
365 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
366 AWK Mode (including \n, \r) removed, no longer needed.
367
d0af9f77
SM
368 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
369 Invoke c-make-macro-with-semi-re.
bc97a826 370
52bedd34
AM
371 * progmodes/cc-vars.el (c-macro-with-semi-re):
372 (c-macro-names-with-semicolon): New variables.
bc97a826
AM
373 (c-make-macro-with-semi-re): New function
374
7a6c0941
SM
3752011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
376
377 * vc/log-edit.el: Fill empty field rather than adding new one.
378 (log-edit-add-field): New function.
379 (log-edit-insert-changelog): Use it.
380
b0c4cdcf
ML
3812011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
382
383 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
384
ee1f1da9
SM
3852011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
386
387 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
388 (gdb--check-interpreter): New function.
389 (gdb): Use it.
390
51bc5f8b
GM
3912011-10-27 Glenn Morris <rgm@gnu.org>
392
416a2c45
GM
393 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
394 (least-positive-float, least-negative-float)
395 (least-positive-normalized-float, least-negative-normalized-float)
396 (float-epsilon, float-negative-epsilon):
397 Remove unnecessary declarations.
398
399 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
400 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
401 (least-positive-float, least-negative-float)
402 (least-positive-normalized-float, least-negative-normalized-float)
403 (float-epsilon, float-negative-epsilon): Add doc-strings,
404 based on those in cl.texi.
405
51bc5f8b
GM
406 * files.el (set-visited-file-name): If the major-mode changed,
407 reload the local variables. (Bug#9796)
408
15de15c6
CY
4092011-10-27 Chong Yidong <cyd@gnu.org>
410
411 * subr.el (change-major-mode-after-body-hook): New hook.
412 (run-mode-hooks): Run it.
413
ee1f1da9
SM
414 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
415 Use change-major-mode-before-body-hook.
15de15c6
CY
416
417 * simple.el (fundamental-mode):
418 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
419 change introducing fundamental-mode-hook.
420
5430d399
JB
4212011-10-26 Juanma Barranquero <lekktu@gmail.com>
422
acc825c5 423 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 424
ad74a69e
MA
4252011-10-26 Michael Albinus <michael.albinus@gmx.de>
426
427 * ido.el (ido-file-name-all-completions-1): Do not require
428 tramp.el explicitely. (Bug#7583)
429
71d4c2a5
SM
4302011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
431
432 * progmodes/octave-mod.el:
433 * progmodes/octave-inf.el: Update maintainer.
434
b1f6fa26
CY
4352011-10-26 Chong Yidong <cyd@gnu.org>
436
437 * subr.el (with-wrapper-hook): Rewrite doc.
438
3f04efd6
MA
4392011-10-25 Michael Albinus <michael.albinus@gmx.de>
440
441 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 442 filenames "/method:foo:". (Bug#9793)
3f04efd6 443
410488d3
SM
4442011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
445
446 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
447 (bug#9865).
448
c1ebb47e
GM
4492011-10-24 Glenn Morris <rgm@gnu.org>
450
451 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
452
7f5c46c7
MA
4532011-10-24 Michael Albinus <michael.albinus@gmx.de>
454
455 * notifications.el: Add the requirement of a running D-Bus session
456 bus to the Commentary.
457
db2440b6
JL
4582011-10-24 Juri Linkov <juri@jurta.org>
459
460 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
461 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
462 (Bug#9364)
463
feecf435
JL
4642011-10-24 Juri Linkov <juri@jurta.org>
465
466 * info.el (Info-following-node-name-re): Add newline to the list
467 of allowed characters for leading space. (Bug#9824)
468
a3839de2
SM
4692011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
470
acc825c5
SM
471 * progmodes/octave-inf.el (inferior-octave-mode-map):
472 Fix C-c C-h binding.
a3839de2
SM
473 * progmodes/octave-mod.el (octave-help): Remove.
474
09388e76
MA
4752011-10-23 Michael Albinus <michael.albinus@gmx.de>
476
477 Sync with Tramp 2.2.3.
478
479 * net/tramp-cache.el (top): Pacify byte-compiler using
480 `init-file-user' and `site-run-file'.
481
482 * net/trampver.el: Update release number.
483
86c60681
CY
4842011-10-23 Chong Yidong <cyd@gnu.org>
485
486 * files.el (toggle-read-only): Remove obsolete comment about
487 version control.
488
489 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
490 for toggle-read-only. Note that this hasn't called vc-next-action
491 since 2008-05-02, though it wasn't documented at the time.
492
a3839de2
SM
493 * vc/ediff-init.el (ediff-toggle-read-only-function):
494 Use toggle-read-only.
86c60681 495
cd5495ff
AM
4962011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
497
498 Fix bug #9560, sporadic wrong indentation; improve instrumentation
499 of c-parse-state.
500
00b77525 501 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 502 correct faulty logical expression.
cd5495ff
AM
503 (c-parse-state-state, c-record-parse-state-state):
504 (c-replay-parse-state-state): New defvar/defuns.
505 (c-debug-parse-state): Use new functions.
506
42ee24ed
MR
5072011-10-22 Martin Rudalics <rudalics@gmx.at>
508
509 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 510 last fix. Use window-in-direction correctly.
42ee24ed 511
a7dee7e7
CY
5122011-10-21 Chong Yidong <cyd@gnu.org>
513
514 * progmodes/idlwave.el (idlwave-mode):
515 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
516 require-final-newline; that's done in prog-mode.
517 Suggested by Stefan Monnier.
a7dee7e7 518
e07b9a6d
MR
5192011-10-21 Martin Rudalics <rudalics@gmx.at>
520
521 * mouse.el (mouse-drag-window-above)
522 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
523 (mouse-drag-mode-line-1, mouse-drag-header-line)
524 (mouse-drag-vertical-line-rightward-window): Remove.
525 (mouse-drag-line): New function.
526 (mouse-drag-mode-line, mouse-drag-header-line)
527 (mouse-drag-vertical-line): Call mouse-drag-line.
528 * window.el (window-at-side-p, windows-at-side): New functions.
529
7e1361d9
UM
5302011-10-21 Ulrich Mueller <ulm@gentoo.org>
531
532 * tar-mode.el (tar-grind-file-mode):
533 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
534
30fcaf3a
CY
5352011-10-21 Chong Yidong <cyd@gnu.org>
536
537 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
538 * progmodes/vera-mode.el (vera-mode):
539 Use mode-require-final-newline.
30fcaf3a 540
516eddb0
GM
5412011-10-20 Glenn Morris <rgm@gnu.org>
542
db22a3c2 543 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 544
10d5f513
CS
5452011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
546
547 * emulation/cua-base.el (cua-set-mark): Fix case of string.
548
ac6c8639
CY
5492011-10-20 Chong Yidong <cyd@gnu.org>
550
551 * emulation/cua-base.el (cua-mode):
552 * mail/footnote.el (footnote-mode):
553 * mail/mailabbrev.el (mail-abbrevs-mode):
554 * net/xesam.el (xesam-minor-mode):
555 * progmodes/bug-reference.el (bug-reference-mode):
556 * progmodes/cap-words.el (capitalized-words-mode):
557 * progmodes/compile.el (compilation-minor-mode)
558 (compilation-shell-minor-mode):
559 * progmodes/gud.el (gud-tooltip-mode):
560 * progmodes/hideif.el (hide-ifdef-mode):
561 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
562 * progmodes/subword.el (subword-mode):
563 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
564 * progmodes/which-func.el (which-function-mode):
565 * term/tvi970.el (tvi970-set-keypad-mode):
566 * term/vt100.el (vt100-wide-mode):
567 * textmodes/flyspell.el (flyspell-mode):
568 * textmodes/ispell.el (ispell-minor-mode):
569 * textmodes/nroff-mode.el (nroff-electric-mode):
570 * textmodes/paragraphs.el (use-hard-newlines):
571 * textmodes/refill.el (refill-mode):
572 * textmodes/reftex.el (reftex-mode):
573 * textmodes/rst.el (rst-minor-mode):
574 * textmodes/sgml-mode.el (html-autoview-mode)
575 (sgml-electric-tag-pair-mode):
576 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
577 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
578 * emulation/crisp.el (crisp-mode):
579 * emacs-lisp/eldoc.el (eldoc-mode):
580 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
581 minor mode behavior.
582
aa42ab43
JL
5832011-10-19 Juri Linkov <juri@jurta.org>
584
585 * descr-text.el (describe-char): Add #x2010 and #x2011 to
586 the list of hard-coded chars with escape-glyph face.
587
89400f1d
SM
5882011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
589
590 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
591
305c07f6
MA
5922011-10-19 Michael Albinus <michael.albinus@gmx.de>
593
594 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
595 running process.
596
13754b54
GM
5972011-10-19 Glenn Morris <rgm@gnu.org>
598
599 * vc/vc-bzr.el (vc-bzr-after-dir-status):
600 Ignore ignored files. (Bug#9726)
601
06e21633
CY
6022011-10-19 Chong Yidong <cyd@gnu.org>
603
604 Doc fix for minor modes, stating that an omitted argument enables
605 the mode unconditionally when called from Lisp.
606
607 * abbrev.el (abbrev-mode):
608 * allout.el (allout-mode):
609 * autoinsert.el (auto-insert-mode):
610 * autoarg.el (autoarg-mode, autoarg-kp-mode):
611 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
612 (global-auto-revert-mode):
613 * battery.el (display-battery-mode):
614 * composite.el (global-auto-composition-mode)
615 (auto-composition-mode):
616 * delsel.el (delete-selection-mode):
617 * desktop.el (desktop-save-mode):
618 * dired-x.el (dired-omit-mode):
619 * dirtrack.el (dirtrack-mode):
620 * doc-view.el (doc-view-minor-mode):
621 * double.el (double-mode):
622 * electric.el (electric-indent-mode, electric-pair-mode):
623 * emacs-lock.el (emacs-lock-mode):
624 * epa-hook.el (auto-encryption-mode):
625 * follow.el (follow-mode):
626 * font-core.el (font-lock-mode):
627 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
628 * help.el (temp-buffer-resize-mode):
629 * hilit-chg.el (highlight-changes-mode)
630 (highlight-changes-visible-mode):
631 * hi-lock.el (hi-lock-mode):
632 * hl-line.el (hl-line-mode, global-hl-line-mode):
633 * icomplete.el (icomplete-mode):
634 * ido.el (ido-everywhere):
635 * image-file.el (auto-image-file-mode):
636 * image-mode.el (image-minor-mode):
637 * iswitchb.el (iswitchb-mode):
638 * jka-cmpr-hook.el (auto-compression-mode):
639 * linum.el (linum-mode):
640 * longlines.el (longlines-mode):
641 * master.el (master-mode):
642 * mb-depth.el (minibuffer-depth-indicate-mode):
643 * menu-bar.el (menu-bar-mode):
644 * minibuf-eldef.el (minibuffer-electric-default-mode):
645 * mouse-sel.el (mouse-sel-mode):
646 * msb.el (msb-mode):
647 * mwheel.el (mouse-wheel-mode):
648 * outline.el (outline-minor-mode):
649 * paren.el (show-paren-mode):
650 * recentf.el (recentf-mode):
651 * reveal.el (reveal-mode, global-reveal-mode):
652 * rfn-eshadow.el (file-name-shadow-mode):
653 * ruler-mode.el (ruler-mode):
654 * savehist.el (savehist-mode):
655 * scroll-all.el (scroll-all-mode):
656 * scroll-bar.el (scroll-bar-mode):
657 * server.el (server-mode):
658 * shell.el (shell-dirtrack-mode):
659 * simple.el (auto-fill-mode, transient-mark-mode)
660 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
661 (line-number-mode, column-number-mode, size-indication-mode)
662 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
663 * strokes.el (strokes-mode):
664 * time.el (display-time-mode):
665 * t-mouse.el (gpm-mouse-mode):
666 * tool-bar.el (tool-bar-mode):
667 * tooltip.el (tooltip-mode):
668 * type-break.el (type-break-mode-line-message-mode)
669 (type-break-query-mode):
670 * view.el (view-mode):
671 * whitespace.el (whitespace-mode, whitespace-newline-mode)
672 (global-whitespace-mode, global-whitespace-newline-mode):
673 * xt-mouse.el (xterm-mouse-mode): Doc fix.
674
a3839de2
SM
675 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
676 Fix autogenerated docstring.
06e21633 677
5214e501
JL
6782011-10-19 Juri Linkov <juri@jurta.org>
679
680 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
681 by checking environment variables "DESKTOP_SESSION" and
682 "XDG_CURRENT_DESKTOP". (Bug#9779)
683
195f8db9
JL
6842011-10-19 Juri Linkov <juri@jurta.org>
685
686 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
687 (browse-url-chromium-program, browse-url-chromium-arguments):
688 New defcustoms.
689 (browse-url-default-browser): Check for `browse-url-chromium' and
690 call `browse-url-chromium-program'.
691 (browse-url-chromium): New command. (Bug#9779)
692
343a34ff
JB
6932011-10-18 Juanma Barranquero <lekktu@gmail.com>
694
695 * facemenu.el (list-colors-duplicates): On Windows, detect more
696 duplicates by assuming that only colors matching "^System" are
697 special "system colors". (Bug#9722)
698
6978a151
SM
6992011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
700
701 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
702 to distinguish the author from the committer.
703
6a80b297
MA
7042011-10-18 Michael Albinus <michael.albinus@gmx.de>
705
706 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
707
b31a5677
JK
7082011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
709
710 * international/mule.el (sgml-html-meta-auto-coding-function):
711 Add support for detecting encoding in HTML5 specified only as
712 <meta charset="UTF-8">. Implementation just makes http-equiv and
713 content-type parts from HTML4 encoding string optional. (Bug#9716)
714
80c6d77f
GM
7152011-10-18 Glenn Morris <rgm@gnu.org>
716
717 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
718
08b0fee8
CY
7192011-10-18 Chong Yidong <cyd@gnu.org>
720
721 * faces.el (cursor): Doc fix.
722
67e729a5
CY
7232011-10-17 Chong Yidong <cyd@gnu.org>
724
725 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
726
343a34ff 7272011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
728
729 * dirtrack.el (dirtrack): Support shell buffers with path
730 prefixes, e.g. tramp-based remote shells. (Bug#9647)
731
0bc06380
TZ
7322011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
733
734 * json.el: Bump version to 1.3 and note change in History.
735 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
736
8b79f3e0
SM
7372011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
738
5a7c536b
SM
739 * comint.el (comint-insert-input, comint-send-input)
740 (comint-get-old-input-default, comint-backward-matching-input)
741 (comint-next-prompt): Use nil instead of `input' for field property of
742 past user input (bug#114).
743
96a8a0df
SM
744 * minibuffer.el (completion--replace): Inherit surrounding properties
745 (bug#114).
746 (minibuffer-complete-and-exit): Use it.
747
8b79f3e0
SM
748 * comint.el (comint--table-subvert): Quote the all-completions output
749 (bug#9160).
750
b8f7ff0d
MR
7512011-10-17 Martin Rudalics <rudalics@gmx.at>
752
8b79f3e0 753 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 754
b8f7ff0d 755 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 756 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
757 entries and separate them from frame entries.
758
c235b555
GM
7592011-10-15 Glenn Morris <rgm@gnu.org>
760
761 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
762 Doc fixes.
763
6bbfa6e1
CY
7642011-10-15 Chong Yidong <cyd@stupidchicken.com>
765
8b79f3e0
SM
766 * net/network-stream.el (network-stream-open-starttls):
767 Improve detection of failure due to lack of TLS support.
ec5c990d 768
6bbfa6e1
CY
769 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
770 putting the input text in front and in bold.
771
98488977
SM
7722011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
773
3d1337be
SM
774 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
775
ee0b45e4
SM
776 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
777 empty buffer.
778
98488977
SM
779 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
780 unread-command-events rather than pushing yet-another event.
781
186f4720
EZ
7822011-10-14 Eli Zaretskii <eliz@gnu.org>
783
784 * mail/sendmail.el (sendmail-query-once): Improve the wording of
785 the explanation of the possible choices. Make the options passed
786 to completing-read shorter.
787
8b7a997c
AM
7882011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
789
790 * textmodes/flyspell.el (flyspell-large-region): Make sure
791 extended character mode is used if defined (Bug#1339).
792
12587bbb
EZ
7932011-10-13 Eli Zaretskii <eliz@gnu.org>
794
795 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
796 character info for LRE, LRO, RLE, and RLO characters by appending
797 an invisible PDF.
12587bbb 798
bad41229
SM
7992011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
800
801 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
802 even in case of error; add debug spec; simplify data flow.
803 (with-timeout-handler): Remove.
804
28dbc92f
MA
8052011-10-12 Michael Albinus <michael.albinus@gmx.de>
806
807 Fix Bug#6019, Bug#9315.
808
809 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
810 complete `buffer-file-name', the local file name part could look
811 remotely (for example on VMS).
812
813 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
814 `tramp-run-real-handler'.
815 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
816 already quoted by '"'.
817
818 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
819 Let `file-name-handler-alist' be nil, the local file name part
820 could look remotely (for example on VMS).
821
e1b0b23a
SM
8222011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
823
824 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
825 from here...
826 (flyspell-post-command-hook): ...to here.
827
a120bde9
SM
8282011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
829
830 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
831 if not needed.
832 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
833 using completion. Protect against "slow" callers.
834 Remove the "message hack".
835
7ce7717b
JL
8362011-10-11 Juri Linkov <juri@jurta.org>
837
838 * isearch.el (isearch-lazy-highlight-word): New variable.
839 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
840 Use it. (Bug#9727)
841
c02ee9d6
GM
8422011-10-11 Glenn Morris <rgm@gnu.org>
843
844 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
845 like f90-previous-statement does.
846
93e616fd 8472011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
848
1f190e73 849 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
850 only in interactive use, to avoid error.
851
af7b6078
SM
8522011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
853
854 * minibuffer.el (completion-file-name-table): Fix last change,
855 i.e. ignore normal errors but not the other ones.
856
0563dae9
MR
8572011-10-10 Martin Rudalics <rudalics@gmx.at>
858
859 * window.el (special-display-buffer-names)
860 (special-display-regexps): Remove some remnants of earlier
861 changes from doc-strings.
366ca7f3
MR
862 (quit-windows-on): New function.
863
864 * vc/vc.el (vc-revert, vc-rollback):
865 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
866 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 867 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 868
49677495
MR
8692011-10-09 Martin Rudalics <rudalics@gmx.at>
870
871 * window.el (frame-auto-hide-function): Add version tag.
872 (Bug#9699)
873
56f2d1e1
MA
8742011-10-09 Michael Albinus <michael.albinus@gmx.de>
875
876 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
877 condition.
878
112a6592
LL
8792011-10-09 Leo Liu <sdl.web@gmail.com>
880
881 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
882 (Bug#9701)
883
0812589b
GM
8842011-10-08 Glenn Morris <rgm@gnu.org>
885
886 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
887 before the first code statement zero indent. (Bug#9690)
888
b2b0776e
CY
8892011-10-08 Chong Yidong <cyd@stupidchicken.com>
890
891 * simple.el (count-words-region): Always count in the region.
892 Report the number of lines and characters too.
893 (count-words): New command, which counts in the buffer if the
894 region is inactive, as count-words-region used to.
895 (count-words--message): New function. Handle plurals.
896 (count-lines-region): Make it an alias for count-words-region.
897
898 * bindings.el (esc-map): Replace count-lines-region with
899 count-words-region.
900
c557cd6b
MR
9012011-10-08 Martin Rudalics <rudalics@gmx.at>
902
903 * window.el (window--delete): Delete dedicated frame
904 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 905 (switch-to-buffer): Fix doc-string typo.
c557cd6b 906
61a57ef4 9072011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
908
909 * lisp/eshell/eshell.el (eshell-command): Avoid using hooks.
910
c3833279
CY
9112011-10-07 Chong Yidong <cyd@stupidchicken.com>
912
913 * bindings.el ([M-left],[M-right]): Bind to left-word and
914 right-word respectively.
915
21ce8245
GM
9162011-10-07 Glenn Morris <rgm@gnu.org>
917
918 * cus-start.el (debug-on-quit): Fix custom type.
919
6d823bb2
LMI
9202011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
921
0181e193
LMI
922 * subr.el (define-key-after): Clarify that the function is not
923 useful for non-menu keymaps.
924
6d823bb2
LMI
925 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
926
8e3459ce 9272011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
928
21ce8245 929 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 930 in current minibuffer (Fix bug with recursive minibuffers).
931
a1c2d21e
CY
9322011-10-06 Chong Yidong <cyd@stupidchicken.com>
933
934 * progmodes/gdb-mi.el (gdb): Doc fix.
935
5a4cf282
MR
9362011-10-05 Martin Rudalics <rudalics@gmx.at>
937
938 * window.el (frame-auto-hide-function): New option replacing
939 frame-auto-delete. Suggested by Stefan Monnier.
940 (window--delete): Call frame-auto-hide-function instead of
941 investigating frame-auto-delete.
c96111ea
MR
942 (window-point-1, set-window-point-1): New functions.
943 (window-in-direction, record-window-buffer, window-state-get-1)
944 (display-buffer-record-window): Use window-point-1 instead of
945 window-point.
946 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 947
9854542e
SM
9482011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
949
950 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
951
8943cfb0
GM
9522011-10-05 Glenn Morris <rgm@gnu.org>
953
954 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
955 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
956
647ab967
LL
9572011-10-05 Leo Liu <sdl.web@gmail.com>
958
959 * subr.el (read-char-choice): Fix argument to buffer-live-p which
960 works with buffer object.
961
3ddfbced
SM
9622011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
963
964 * mpc.el (mpc-tool-bar-map): Add labels.
965
bdfa5dd2
GM
9662011-10-04 Glenn Morris <rgm@gnu.org>
967
968 * calendar/holidays.el (calendar-check-holidays): Doc fix.
969
0e2070b5
MR
9702011-10-04 Martin Rudalics <rudalics@gmx.at>
971
972 * window.el (window--delete): New function.
973 (frame-auto-delete): Resuscitate option.
974 (bury-buffer, replace-buffer-in-windows)
975 (quit-window): Rewrite using window--delete.
976 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
977 Pass display-buffer-mark-dedicated to window--display-buffer-2
978 (Bug#9639).
979
3dc61a09
SM
9802011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
981
915a9b64
SM
982 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
983 returns a list (bug#9554). Add remote file name completion.
984 * comint.el (comint--table-subvert): Curry and get quote&unquote
985 functions as arguments.
986 (comint--complete-file-name-data): Adjust call accordingly.
987 * pcomplete.el (pcomplete--table-subvert): Remove.
988 (pcomplete-completions-at-point): Use comint--table-subvert instead.
989
3dc61a09
SM
990 * minibuffer.el (completion-table-case-fold): Use currying.
991 (completion--styles-type, completion--cycling-threshold-type):
992 New constants.
993 (completion-styles, completion-category-overrides)
994 (completion-cycle-threshold): Use them.
995 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
996 completion-table-case-fold.
997
8ea0a993
SB
9982011-10-03 Stephen Berman <stephen.berman@gmx.net>
999
1000 * minibuffer.el (completion-category-overrides): Fix type of styles
1001 and add more user friendly tags (bug#9660).
1002
8c24b7f6
SM
10032011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1004
1005 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
1006 (mule-input-method-string): New widget.
1007 (default-input-method, language-info-custom-alist): Use it.
1008
428fe61a
SM
10092011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1010
32c1fffd
SM
1011 * pcomplete.el: Require comint.
1012 (pcomplete--common-suffix): Remove.
1013 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
1014 (pcomplete--table-subvert): Sync with comint--table-subvert.
1015 (pcomplete--entries): Use comint-completion-file-name-table.
1016 * comint.el (comint-unquote-filename): Simplify.
1017 (comint-completion-file-name-table): New function (bug#9616).
1018 (comint--complete-file-name-data): Use it.
1019
428fe61a
SM
1020 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
1021 (pcmpl-gnu-tar-buffer): Remove.
1022 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
1023 around. Make sure pcomplete-suffix-list is only changed temporarily.
1024 Don't look inside the tar's file if it's too large.
428fe61a 1025
04c52e2f
CY
10262011-10-01 Chong Yidong <cyd@stupidchicken.com>
1027
ce3cefcc
CY
1028 * cus-edit.el (custom-mode-map):
1029 * epa.el (epa-key-list-mode-map):
1030 * man.el (Man-mode-map):
1031 * startup.el (splash-screen-keymap):
1032 * simple.el (special-mode-map): Use scroll-up-command and
1033 scroll-down-command.
1034
1035 * progmodes/idlw-help.el (idlwave-help-mode-map):
1036 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
1037 * net/newst-plainview.el (newsticker-mode-map):
1038 * emulation/ws-mode.el (wordstar-mode-map):
1039 * emulation/vi.el (vi-com-map):
1040 * calc/calc-graph.el (calc-graph-show-dumb):
1041 * term/sun.el (terminal-init-sun):
1042 * term/ns-win.el (global-map):
1043 * progmodes/grep.el (grep-mode-map):
1044 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
1045 * mail/rmail.el (rmail-mode-map):
1046 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
1047
04c52e2f
CY
1048 * custom.el (custom-safe-themes, load-theme): Treat value of t for
1049 custom-safe-themes as special.
1050
79adf8c8
JD
10512011-10-01 Julien Danjou <julien@danjou.info>
1052
1053 * notifications.el (notifications-notify): Fix docstring.
1054
63bd50d3
PS
10552011-10-01 Per Starbäck <per@starback.se>
1056
1057 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
1058
199e4c7e
MR
10592011-09-30 Martin Rudalics <rudalics@gmx.at>
1060
1061 * startup.el (command-line-1): Fix last fix by inserting
1062 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 1063 (Bug#9605) and (Bug#9636)
199e4c7e 1064
fe5f08dd
EZ
10652011-09-29 Eli Zaretskii <eliz@gnu.org>
1066
1067 * simple.el (line-move): If auto-hscroll-mode is disabled and the
1068 window is hscrolled, move by logical lines. (Bug#9607)
1069 (line-move-visual): Update the doc string to the above effect.
1070
b5516bbd
MR
10712011-09-29 Martin Rudalics <rudalics@gmx.at>
1072
ccee00c0
MR
1073 * window.el (display-buffer-record-window): When WINDOW is the
1074 selected window use `point' instead of `window-point'. (Bug#9626)
1075
b5516bbd
MR
1076 * startup.el (command-line-1): Use insert-before-markers when
1077 inserting initial-scratch-message. (Bug#9605)
ccee00c0 1078
b5516bbd
MR
1079 * help.el (help-window): Remove variable.
1080
52aa0014
GM
10812011-09-29 Glenn Morris <rgm@gnu.org>
1082
1083 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
1084
df9a7357
JB
10852011-09-29 Juanma Barranquero <lekktu@gmail.com>
1086
1087 * descr-text.el (describe-char-categories): Accept category
1088 descriptions more than one line long.
1089
a8406c20
SM
10902011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1091
88d9610c
SM
1092 * simple.el (delete-trailing-whitespace): Fix last change.
1093
a5daf810
SM
1094 * progmodes/perl-mode.el (perl-syntax-propertize-function):
1095 Don't confuse "y => 3" as the beginning of a `y' operation.
1096
a8406c20
SM
1097 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
1098 object has more than 4 slots (bug#9613).
1099
a239d4e9
JB
11002011-09-28 Juanma Barranquero <lekktu@gmail.com>
1101
1102 * subr.el (with-output-to-temp-buffer):
1103 * net/quickurl.el (quickurl, quickurl-browse-url):
1104 Fix typos in docstrings.
1105
693fbdb6
EZ
11062011-09-27 Eli Zaretskii <eliz@gnu.org>
1107
1108 * minibuffer.el (completion-styles)
1109 (completion-category-overrides): Cross reference each other in doc
1110 strings.
1111
8b457e28
GM
11122011-09-27 Glenn Morris <rgm@gnu.org>
1113
1114 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
1115 to split-string. (Bug#9606)
1116
85a16208
LMI
11172011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
1118
1119 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
1120 (bug#9615).
1121
502f9ebd
CY
11222011-09-27 Chong Yidong <cyd@stupidchicken.com>
1123
1124 * emacs-lisp/package.el (list-packages): Fix echo area message.
1125
7690bdea
LL
11262011-09-27 Leo Liu <sdl.web@gmail.com>
1127
1128 * ido.el (ido-read-internal): Accept cons cell HIST arg.
1129
e2ee6f30
MA
11302011-09-25 Michael Albinus <michael.albinus@gmx.de>
1131
1132 * net/dbus.el (dbus-unregister-object): Don't release services for
1133 registered signals. (Bug#9581)
1134
f3f98342
TZ
11352011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
1136
1137 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
1138 function that picks between cfengine 2 and 3 support
1139 automatically. Update docs accordingly.
1140
dd7aa8dd
KH
11412011-09-22 Kenichi Handa <handa@m17n.org>
1142
1143 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
1144 ZERO.
1145 (indian-itrans-v5-table-for-tamil): New variable.
1146 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
1147
3f2b07f8
KM
11482011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
1149
1150 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
1151 that's true if the current command involved collapsing of text.
1152 It's reset to false at the beginning of the next command.
1153 (allout-post-command-business): Move the cursor to the beginning
1154 of entry if the cursor is hidden and collapsing activity just
1155 happened.
1156
371d6a61
CY
11572011-09-24 Chong Yidong <cyd@stupidchicken.com>
1158
1159 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
1160 tracking (Bug#9541).
1161
2ac2721a
UJ
11622011-09-24 Ulf Jasper <ulf.jasper@web.de>
1163
1164 * net/newst-reader.el (newsticker-html-renderer)
1165 (newsticker-show-news): Automatically
343a34ff
JB
1166 load html rendering package if newsticker-html-renderer is set.
1167 Fixes "Warning: defvar ignored because w3m-fill-column is
2ac2721a
UJ
1168 let-bound" and the error "Symbol's value as variable is void:
1169 w3m-fill-column".
1170
fac7ae53
MA
11712011-09-24 Michael Albinus <michael.albinus@gmx.de>
1172
1173 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
1174 Release services only if they are defined. (Bug#9581)
1175
e08b633b
RS
11762011-09-23 Richard Stallman <rms@gnu.org>
1177
e488d29c
RS
1178 * textmodes/paragraphs.el (forward-sentence): For backwards case,
1179 distinguish start of paragraph from start of its text.
1180
19c38752
RS
1181 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
1182
e08b633b
RS
1183 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
1184 (rmail-generate-viewer-buffer): Put that hook on view buffer.
1185 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
1186
0a39f27e
AS
11872011-09-23 Andreas Schwab <schwab@linux-m68k.org>
1188
1189 * international/mule-diag.el (mule-diag): Insert a newline after
1190 each fontset description.
1191
db4e950d
SM
11922011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1193
1194 * simple.el (delete-trailing-whitespace):
1195 Document last change; simplify.
1196
eca3f3ea
PW
11972011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
1198
d68e189a
PW
1199 * simple.el (delete-trailing-whitespace): Also delete
1200 extra newlines at the end of the buffer.
1201
eca3f3ea
PW
1202 * textmodes/picture.el: Make motion commands obey shift-select-mode.
1203 (picture-newline): Use forward-line so as to ignore fields.
1204
01c157cc
SM
12052011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1206
1207 * subr.el (with-wrapper-hook): Fix edebug spec.
1208
022de23e
LMI
12092011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
1210
1211 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
1212 (bug#4538).
1213
91683089
MA
12142011-09-23 Michael Albinus <michael.albinus@gmx.de>
1215
eca3f3ea
PW
1216 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1217 Fix nasty bug using wrong cached values.
91683089 1218
5bdd6fa4
AM
12192011-09-23 Alan Mackenzie <acm@muc.de>
1220
1221 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
1222
97adfb97
CY
12232011-09-23 Chong Yidong <cyd@stupidchicken.com>
1224
1225 * window.el (pop-to-buffer): Ensure right window is selected if we
1226 chose another frame.
1227
d4ef2b50
EZ
12282011-09-22 Eli Zaretskii <eliz@gnu.org>
1229
1230 * simple.el (what-cursor-position): Use get-char-property-change
1231 and next-single-char-property-change, to be able to show display
1232 properties that come from overlays as well as text properties.
1233
72258fe5
CY
12342011-09-22 Chong Yidong <cyd@stupidchicken.com>
1235
1236 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
1237
1238 * cmuscheme.el (run-scheme, switch-to-scheme):
1239 * cus-edit.el (customize-group, custom-buffer-create)
1240 (customize-browse):
1241 * info.el (info):
1242 * shell.el (shell):
1243 * mail/sendmail.el (mail):
1244 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
1245
8f098516
RS
12462011-09-22 Richard Stallman <rms@gnu.org>
1247
1248 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
1249 move back only to line beg, don't move back over blank lines.
1250
e74f1bb6
MA
12512011-09-22 Michael Albinus <michael.albinus@gmx.de>
1252
1253 * files.el (copy-directory): Set directory attributes only in case
1254 they could be retrieved from the source directory. (Bug#9565)
1255
bfeef8b6
DK
12562011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
1257
1258 * progmodes/hideshow.el (hs-looking-at-block-start-p)
1259 (hs-find-block-beginning, hs-hide-level-recursive):
1260 Ignore strings as well as comments. (Bug#9502)
1261
7e423bb8
AS
12622011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
1263
1264 * progmodes/sql.el (sql-comint-postgres):
1265 Convert port number to a string. (Bug#9566)
1266
b4d72fcf
MR
12672011-09-22 Martin Rudalics <rudalics@gmx.at>
1268
1269 * window.el (quit-window): Undedicate window when switching to
1270 previous buffer. Reported by Thierry Volpiatto
1271 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
1272 (special-display-popup-frame): When popping up a new frame reset
1273 its previous buffers to nil. Simplify code.
b4d72fcf 1274
a7b88dc6
MA
12752011-09-21 Michael Albinus <michael.albinus@gmx.de>
1276
1277 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
1278 and process filter, as done also in `shell-command'.
1279
cf4eacfd
MR
12802011-09-21 Martin Rudalics <rudalics@gmx.at>
1281
eca3f3ea
PW
1282 * window.el (set-window-buffer-start-and-point):
1283 Call set-window-start with NOFORCE argument t. Suggested by Thierry
cf4eacfd
MR
1284 Volpiatto <thierry.volpiatto@gmail.com>.
1285 (quit-window): Reword doc-string. Handle new format of
1286 quit-restore parameter. Don't delete window if it has a
1287 previous buffer we can show instead of the present one.
1288 (display-buffer-record-window): Rewrite using a new format for
1289 the quit-restore window parameter
1290 (special-display-popup-frame, display-buffer-same-window)
1291 (display-buffer-reuse-window, display-buffer-pop-up-frame)
1292 (display-buffer-pop-up-window, display-buffer-use-some-window):
1293 Adapt symbol passed to display-buffer-record-window.
1294 * help.el (help-window-setup): Handle new format of quit-restore
1295 parameter.
1296
8d28cb95
SM
12972011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
1298
94ab793f
SM
1299 * faces.el (face-list): Fix docstring (bug#9564).
1300
8d28cb95
SM
1301 * window.el (display-buffer--action-function-custom-type):
1302 Don't include internal functions in the Custom interface.
1303
3820edeb
JL
13042011-09-20 Juri Linkov <juri@jurta.org>
1305
1306 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
1307 (Info-forward-node, Info-backward-node, Info-next-preorder)
1308 (Info-last-preorder): Use it. (Bug#9528)
1309
5147931d
JL
13102011-09-20 Juri Linkov <juri@jurta.org>
1311
1312 * info.el (Info-last-preorder): Visit last menu item only when
1313 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
1314
cf499a1a
JD
13152011-09-20 Julien Danjou <julien@danjou.info>
1316
1317 * password-cache.el (password-cache-remove): Remove entries even if the
1318 value is nil, so that password with a nil value (negative caching) is
1319 possible to invalidate.
1320
f84e2fe2
LM
13212011-09-20 Lawrence Mitchell <wence@gmx.li>
1322
1323 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
1324 all whitespace around breakpoint. (Bug#9553)
1325 (f90-find-breakpoint): Only break at whitespace inside a comment.
1326
78054a46
SM
13272011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1328
1329 * minibuffer.el (completion-file-name-table): Keep track of errors.
1330 (completion-table-with-predicate): Handle the case where pred1 is nil.
1331 * pcomplete.el (pcomplete-completions-at-point): Simplify.
1332
345083b2
SM
13332011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1334
e24e27be
SM
1335 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
1336 (debugger-return-value): Signal an error if the debugging context does
1337 not await any return value.
1338
345083b2
SM
1339 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
1340 * image-mode.el (image-toggle-display-text)
1341 (image-toggle-display-image): Stay away from evil `intangible'.
1342
08d355e3
LL
13432011-09-19 Leo Liu <sdl.web@gmail.com>
1344
1345 * replace.el (occur-revert-arguments): Make it permanent-local.
1346 (occur-mode): Don't call font-lock-defontify.
1347
f01da43f
CY
13482011-09-19 Chong Yidong <cyd@stupidchicken.com>
1349
1350 * net/ldap.el (ldap-search-internal): Don't push empty search
1351 result (Bug#9508).
1352
b6072fa6
SM
13532011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1354
1355 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
1356
443d6696
MA
13572011-09-19 Michael Albinus <michael.albinus@gmx.de>
1358
1359 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
1360 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
1361
7cc6e154
JL
13622011-09-18 Juri Linkov <juri@jurta.org>
1363
1364 * buff-menu.el (Buffer-menu-mode-map):
1365 * dired.el (dired-mode-map):
1366 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
1367 (lisp-interaction-mode-map):
1368 * emacs-lisp/package.el (package-menu-mode-map):
1369 * epa.el (epa-key-list-mode-map):
1370 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
1371 (menu-bar-options-menu):
1372 * outline.el (outline-mode-menu-bar-map):
1373 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
1374 * vc/vc-dir.el (vc-dir-menu-map):
1375 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
1376 Capitalize non-function content words in menu item strings.
1377
1378 * dired.el (dired-mode-map): Add menu item for
1379 `image-dired-dired-toggle-marked-thumbs'.
1380
80302a81
JL
13812011-09-18 Juri Linkov <juri@jurta.org>
1382
1383 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
1384 to `isearch-case-fold-search' and restore its original value
1385 after the `isearch-mode' call.
1386
46c5cf66
JL
13872011-09-18 Juri Linkov <juri@jurta.org>
1388
1389 * progmodes/grep.el (grep-process-setup): Don't check code for 1
1390 because `zgrep' returns 1 for successful matches (bug#9226).
1391
d18b513b
JL
13922011-09-18 Juri Linkov <juri@jurta.org>
1393
1394 * info.el (Info-extract-menu-node-name): Check the second match
1395 for empty string (second test-case of bug#9528).
1396 (Info-last-preorder): Let-bind `Info-history' to nil to not add
1397 intermediate nodes to the history (first test-case of bug#9528).
1398
72753f87
JL
13992011-09-18 Juri Linkov <juri@jurta.org>
1400
1401 * info.el (Info-mode-syntax-table): New variable.
1402 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table'. (Bug#3312)
1403
c9384295
JL
14042011-09-18 Juri Linkov <juri@jurta.org>
1405
1406 * info.el (Info-file-supports-index-cookies): Increment
1407 line-beginning-position's arg from 3 to 4 because makeinfo outputs
1408 one more line for long file names (bug#4142).
1409
d473dce8
CY
14102011-09-18 Chong Yidong <cyd@stupidchicken.com>
1411
1412 * newcomment.el (comment-normalize-vars): If prompting for
1413 comment-start, set comment-start-skip too (Bug#8424).
1414
2176854d
JB
14152011-09-18 Johan Bockgård <bojohan@gnu.org>
1416
1417 * icomplete.el: Fix previous fix of Bug#5849.
1418 (icomplete-mode): Don't set completion-show-inline-help.
1419 (icomplete-minibuffer-setup): Set completion-show-inline-help
1420 locally during icompletion.
1421
3aace4e4
CY
14222011-09-18 Chong Yidong <cyd@stupidchicken.com>
1423
c940224f
CY
1424 * woman.el (woman2-process-escapes): Don't delete unrecognized
1425 escapes (Bug#7843).
1426
3aace4e4
CY
1427 * files.el (inhibit-first-line-modes-regexps): Add image files.
1428 (hack-local-variables-prop-line): Return nil for malformed
1429 prop-lines (Bug#9044).
1430
710dec63
MA
14312011-09-18 Michael Albinus <michael.albinus@gmx.de>
1432
1433 * net/tramp.el (top): Don't require 'shell.
1434 (tramp-methods): Fix docstring.
1435 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
1436 Return complete remote file name. Handle "smb" case.
1437 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
1438 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
1439
1440 * net/tramp-compat.el (top): Require 'shell.
1441
1442 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
1443 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
1444 `tramp-current-host'.
1445 (tramp-get-remote-tmpdir): Remove.
1446
1447 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
1448 `tramp-tmpdir' entries.
1449 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
1450 (tramp-smb-handle-file-attributes): Ignore errors.
1451 (tramp-smb-wait-for-output): Check also for process end.
1452
5d5ac8ec
LMI
14532011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
1454
1455 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
1456 when sending QUIT (bug#9312).
1457
8c0f49f0
CY
14582011-09-17 Chong Yidong <cyd@stupidchicken.com>
1459
1460 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
1461 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
1462 occur-mode-display-occurrence.
1463 (occur-edit-mode): Add usage message.
1464 (occur-cease-edit): New command.
1465 (occur-after-change-function): Use text properties to find the
1466 position of the prefix text.
1467 (occur-engine): Set stickiness of prefix text properties.
1468
8f1383f7
GM
14692011-09-17 Glenn Morris <rgm@gnu.org>
1470
1471 * progmodes/etags.el (complete-tag):
1472 Fix call to completion-in-region. (Bug#9526)
1473
744ba0e3
JL
14742011-09-17 Juri Linkov <juri@jurta.org>
1475
1476 * textmodes/ispell.el (ispell-word): Add to the error message
1477 the word, ispell program name and current dictionary (bug#9121).
1478 (ispell-tex-arg-end): Capitalize "error" in the error message.
1479
d9bbf400
AS
14802011-09-17 Andreas Schwab <schwab@linux-m68k.org>
1481
1482 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
1483 check. (Bug#4251)
1484
8da11505
JL
14852011-09-17 Juri Linkov <juri@jurta.org>
1486
1487 * window.el (window-safe-min-height, window-safe-min-width):
1488 Fix typos (followup to bug#9522).
1489
a91adc7e
SJ
14902011-09-17 Sven Joachim <svenjoac@gmx.de>
1491
1492 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
1493
064f328a
EZ
14942011-09-16 Eli Zaretskii <eliz@gnu.org>
1495
1496 * simple.el (line-move): If goal-column is set, move by logical
1497 lines, not by display lines. (Bug#971)
1498 (next-line, previous-line, goal-column, line-move-visual): Doc fix
1499 to reflect the above change.
1500
e69df516
SM
15012011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
1502
1503 * image.el (imagemagick-register-types): Use regexp-opt.
1504
cbb0f9ab
CY
15052011-09-15 Chong Yidong <cyd@stupidchicken.com>
1506
1507 * window.el (display-buffer-base-action): Rename from
1508 display-buffer-default-action. Make default value empty.
1509 (display-buffer-overriding-action): Convert to defvar.
1510 (display-buffer-fallback-action): New var.
1511
25322144
CY
15122011-09-15 Chong Yidong <cyd@stupidchicken.com>
1513
1514 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
1515 declaration.
1516 (package--add-to-archive-contents): If there is a duplicate entry
1517 with an older version, remove it.
1518 (package-menu-mark-delete, package-menu-mark-install)
1519 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
1520 (package-menu-mark-obsolete-for-deletion):
1521 Use package-menu-get-status instead of a regexp search.
25322144
CY
1522 (package-menu-get-status): Use tabulated-list-entry.
1523 (package-menu-mark-upgrades): New command.
d770725a 1524 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
1525 (package-menu-execute): Do installation before deletion.
1526 (package-menu-refresh, package-menu-execute): Use derived-mode-p
1527 instead of checking major-mode.
1528 (package-menu--find-upgrades): New function.
1529
7520339c
LMI
15302011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
1531
1532 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
1533 passwords in the log buffer.
65a046c4
LMI
1534 (smtpmail-process-filter): Update the process marker so that the
1535 "broken by peer" status message is inserted in the right place.
7520339c 1536
d3c30954
SM
15372011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1538
3fe48822
SM
1539 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
1540 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
1541 bibtex-completion-at-point-function.
1542 (bibtex-completion-at-point-function): Use them.
1543
1b8b3954
SM
1544 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
1545
d3c30954
SM
1546 * mpc.el (mpc-constraints-tag-lookup): New function.
1547 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
1548 also to browser "album|playlist".
1549
72779976
JL
15502011-09-14 Juri Linkov <juri@jurta.org>
1551
1552 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
1553 (isearch-edit-string): Use length of `isearch-string' when
1554 `isearch-fail-pos' returns nil.
1555 (isearch-message): Remove duplicate code and call
1556 `isearch-fail-pos' with arg `t'.
1557
a0bf2bcd
CY
15582011-09-14 Chong Yidong <cyd@stupidchicken.com>
1559
17bb0a2d
CY
1560 * replace.el (occur-mode-goto-occurrence): Don't force using other
1561 window (Bug#9499).
1562
a0bf2bcd
CY
1563 * dired-aux.el (dired-do-chmod): Don't provide initial input.
1564
f678e0b6
MR
15652011-09-14 Martin Rudalics <rudalics@gmx.at>
1566
1567 * window.el (display-buffer-window): Remove.
1568 (display-buffer-record-window): Use help-setup window parameter
1569 instead of variable display-buffer-window.
1570 (display-buffer-function, special-display-buffer-names)
1571 (special-display-function): Mention help-setup parameter instead
1572 of display-buffer-window in doc-string.
d3c30954
SM
1573 * help.el (help-window-setup): New argument help-window.
1574 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
1575 Reword some messages.
1576 (with-help-window): Pass window used for displaying the buffer
1577 to help-window-setup. Don't set display-buffer-window.
1578
8e39b2e8
GM
15792011-09-13 Glenn Morris <rgm@gnu.org>
1580
1581 * emacs-lisp/debug.el (debugger-make-xrefs):
1582 Preserve point. (Bug#9462)
1583
85e9c04b
CY
15842011-09-13 Chong Yidong <cyd@stupidchicken.com>
1585
1586 * window.el (window-deletable-p): Use next-frame.
1587
1b36ed6a
MR
15882011-09-13 Martin Rudalics <rudalics@gmx.at>
1589
1590 * window.el (window-auto-delete): Remove.
1591 (window-deletable-p): Remove argument FORCE. Don't deal with
1592 dedicatedness and previous buffers.
1593 (switch-to-prev-buffer): Don't delete window.
1594 (delete-windows-on): Delete a window's frame if and only if the
1595 window is dedicated.
1596 (replace-buffer-in-windows): Delete buffer's window or frame if
1597 and only if window is dedicated.
1598 (quit-window): Handle quit-restore as before last change.
4d61f28d 1599 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 1600
ef8ef9fb
CY
16012011-09-13 Chong Yidong <cyd@stupidchicken.com>
1602
1603 * window.el (window-deletable-p): Never delete the last frame on a
1604 given terminal.
1605
b2cba41e
GM
16062011-09-13 Glenn Morris <rgm@gnu.org>
1607
1608 * help.el (describe-key-briefly): Copy previous standard-output change.
1609
51553db6 16102011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
1611
1612 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
1613
b7556719
GM
16142011-09-13 Glenn Morris <rgm@gnu.org>
1615
1616 * emacs-lisp/lisp-mode.el (lisp-indent-function):
1617 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
1618
64b51947
CY
16192011-09-12 Chong Yidong <cyd@stupidchicken.com>
1620
1621 * dired-aux.el (dired-mark-read-string): Don't return default
1622 value on empty input (Bug#9361).
1623 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
1624 Omit initial minibuffer contents.
1625 (dired-do-chmod): Signal an error on empty input.
1626 (dired-mark-read-string): Don't return default on empty input.
1627
1628 * files.el (file-modes-symbolic-to-number): Doc fix.
1629
393a301e
SM
16302011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1631
1632 * international/mule-cmds.el (ucs-completions): Remove.
1633 (read-char-by-name): Use complete-with-action instead; add metadata.
1634
fa5660f9
CY
16352011-09-11 Chong Yidong <cyd@stupidchicken.com>
1636
1637 * window.el (display-buffer--action-function-custom-type)
1638 (display-buffer--action-custom-type): New vars.
1639 (display-buffer-alist, display-buffer-default-action)
1640 (display-buffer-overriding-action): Add defcustom types.
1641
4a592f66
CY
1642 * frame.el (delete-other-frames): Doc fix (Bug#276).
1643
73d56dbd
LMI
16442011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
1645
1646 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
1647
37ac18a3
CY
16482011-09-11 Chong Yidong <cyd@stupidchicken.com>
1649
1650 Change modes that used same-window-* vars to use switch-to-buffer.
1651
1652 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
1653 Use switch-to-buffer.
1654
1655 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
1656 (customize-browse, custom-buffer-create-other-window):
1657 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
1658
1659 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
1660 (Info-prev, Info-up, Info-speedbar-goto-node)
1661 (info-display-manual): Use switch-to-buffer.
1662 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
1663
1664 * mail/sendmail.el (mail): Use switch-to-buffer.
1665 (mail-recover): Use switch-to-buffer-other-window.
1666
1667 * cmuscheme.el (run-scheme, switch-to-scheme):
1668 * ielm.el (ielm):
1669 * shell.el (shell):
1670 * net/rlogin.el (rlogin):
1671 * net/telnet.el (telnet, rsh):
1672 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
1673
10195bd6
AS
16742011-09-11 Andreas Schwab <schwab@linux-m68k.org>
1675
1676 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
1677
b322f63a
LMI
16782011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
1679
39d7fed6
LMI
1680 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
1681 so don't mention it (bug#9301).
ba5a81f1 1682 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 1683
ee0e9f11
LMI
1684 * faces.el (face-spec-set-match-display): Make `(type graphic)'
1685 match `x', `w32' and `ns', like the manual says (bug#9029).
1686
0b1c89c1 1687 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
1688 (process-kill-buffer-query-function): Mention the buffer name in
1689 the query.
0b1c89c1 1690
77549ea8
LMI
1691 * image-mode.el (image-next-line): The line parameter is mandatory
1692 (bug#9258).
1693
803ef892
LMI
1694 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
1695 which can be useful (bug#9301).
1696
12980837
LMI
1697 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
1698
91054f8f
LMI
1699 * subr.el (match-string): Mention that the current buffer should
1700 be the same as the search was done in (bug#9282).
1701
b322f63a
LMI
1702 * facemenu.el: Disable the remove-* commands if the mark isn't
1703 active (bug#9162).
1704
3199b96f
CY
17052011-09-10 Chong Yidong <cyd@stupidchicken.com>
1706
1707 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
1708 of display-buffer.
1709 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
1710
1711 * replace.el (occur-mode-goto-occurrence)
1712 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
1713 and display-buffer.
1714
1715 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
1716 display-buffer.
1717
1718 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
1719 special-display and same-window variables.
1720 (mail-other-window): Use switch-to-buffer-other-window.
1721 (mail-other-frame): USe switch-to-buffer-other-frame.
1722
393a301e
SM
1723 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
1724 Use display-buffer-other-frame.
3199b96f
CY
1725 (gdb-display-gdb-buffer): Use pop-to-buffer.
1726
1727 * progmodes/gud.el (gud-goto-info): Use info-other-window.
1728
1729 * progmodes/python.el: Don't set same-window-buffer-names.
1730
1731 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
1732
1733 * window.el (display-buffer-alist): Add *Python*.
1734
8319e0bf
CY
17352011-09-10 Chong Yidong <cyd@stupidchicken.com>
1736
1737 * window.el (display-buffer-alist): Add entry for buffers
1738 previously handled same-window-*.
1739 (display-buffer-alist, display-buffer-default-action)
1740 (display-buffer-overriding-action): Mark as risky.
1741 (display-buffer-alist): Document action function changes.
1742 (display-buffer--same-window-action)
1743 (display-buffer--other-frame-action): New variables.
1744 (switch-to-buffer, display-buffer-other-frame): Use them.
1745 (display-buffer): Rename reuse-frame entry to reusable-frames.
1746 (display-buffer-reuse-selected-window): Function deleted.
1747 (display-buffer-reuse-window): Handle reusable-frames alist entry.
1748 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
1749 (display-buffer-special): New function.
1750 (display-buffer--maybe-pop-up-frame-or-window): Rename from
1751 display-buffer-reuse-or-pop-window. Split off special-display
1752 part into display-buffer-special.
1753 (display-buffer-use-some-window): Don't perform any special
1754 pop-up-frames handling.
1755 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 1756 (display-buffer--maybe-same-window): Rename from
0d3ff375 1757 display-buffer-maybe-same-window.
8319e0bf 1758
919a69aa
CY
1759 * info.el: Don't set same-window-regexps.
1760 (info-setup): New function.
1761 (info-other-window, info): Call it.
1762
1763 * cus-edit.el: Don't set same-window-regexps.
1764 (customize-group): New argument.
1765 (customize-group-other-window): Use it.
1766 (customize-face, customize-face-other-window): Likewise.
1767 (custom-buffer-create-other-window): Use pop-to-buffer directly.
1768
8319e0bf
CY
1769 * net/rlogin.el:
1770 * net/telnet.el:
1771 * progmodes/gud.el: Don't set same-window-regexps.
1772
1773 * cmuscheme.el:
1774 * ielm.el:
1775 * shell.el:
1776 * mail/sendmail.el:
1777 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
1778
25173000
JL
17792011-09-10 Juri Linkov <juri@jurta.org>
1780
1781 * isearch.el (isearch-edit-string): Remove obsolete mention of
1782 `C-w' (`isearch-yank-word-or-char') from docstring.
1783 (isearch-query-replace): Fix typo in docstring (bug#9466).
1784
056e44ef
JL
17852011-09-10 Juri Linkov <juri@jurta.org>
1786
1787 * paren.el (show-paren-function): Don't show escaped parens.
1788 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
1789
c3760c17
EZ
17902011-09-10 Eli Zaretskii <eliz@gnu.org>
1791
1792 * mail/sendmail.el (mml-to-mime, mml-attach-file)
1793 (mm-default-file-encoding): Remove autoload forms, they are
1794 replaced with autoload cookies in mml.el and mm-encode.el.
1795 (mail-add-attachment): New command.
1796 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
1797 (mail-mode): Mention mail-insert-file and mail-add-attachment in
1798 the doc string.
1799 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
1800
fece895e
RT
18012011-09-10 Reuben Thomas <rrt@sc3d.org>
1802
e69df516
SM
1803 * simple.el (count-words-region): Use buffer if there's no region
1804 (bug#9429).
fece895e 1805
5e68ce4a
JL
18062011-09-09 Juri Linkov <juri@jurta.org>
1807
1808 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
1809 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
1810 (wdired-isearch-filter-read-only): New function. (Bug#6362)
1811
0a6b9622
AM
18122011-09-09 Alan Mackenzie <acm@muc.de>
1813
1814 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
1815 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
1816
14a29deb
EZ
18172011-09-09 Eli Zaretskii <eliz@gnu.org>
1818
1819 Fix for Savannah bug#9392.
1820 * simple.el (mail-encode-mml): New defvar.
1821
1822 * mail/rmail.el (mail-encode-mml): Add a defvar.
1823 (rmail-enable-mime-composing): Default to t.
1824 (rmail-forward): Use MIME method of forwarding only if both
1825 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
1826 Set mail-encode-mml non-nil if the MIME method was used.
1827
1828 * mail/sendmail.el (mml-to-mime): Add autoload form.
1829 (mail-encode-mml): Add a defvar.
1830 (mail-mode): Make mail-encode-mml buffer-local and initialize it
1831 to nil.
1832 (mail-send): If mail-encode-mml is non-nil, run the outgoing
1833 message through mml-to-mime, and reset mail-encode-mml to nil.
1834
28c45130
GM
18352011-09-09 Glenn Morris <rgm@gnu.org>
1836
1837 * woman.el (woman-if-body): When processing an .el block,
1838 do not delete the next .el block as well. (Bug#9447)
69f4b618 1839 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 1840
9b1c252e
MR
18412011-09-08 Martin Rudalics <rudalics@gmx.at>
1842
1843 * window.el (window-deletable-p): Make sure window is live before
1844 invoking window-prev-buffers.
1845
567457e3
LL
18462011-09-08 Leo Liu <sdl.web@gmail.com>
1847
1848 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
1849
97f05794
JL
18502011-09-08 Juri Linkov <juri@jurta.org>
1851
1852 * progmodes/compile.el (compilation-environment): Make it
1853 a defcustom (bug#8340).
1854
8b0874b5
MR
18552011-09-08 Martin Rudalics <rudalics@gmx.at>
1856
1857 * window.el (frame-auto-delete): Rename to window-auto-delete.
1858 Make it control auto-deletion of windows and/or frames.
1859 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 1860 for deleting window/frame. (Bug#9419)
8b0874b5
MR
1861 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
1862 Rewrite handling of case when window/frame can be deleted.
1863 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 1864 argument t. (Bug#9456)
8b0874b5 1865
4feb6e73
CY
18662011-09-07 Chong Yidong <cyd@stupidchicken.com>
1867
1868 * help-mode.el (help-mode): Restore autoload.
1869
91ab9c13
JL
18702011-09-07 Juri Linkov <juri@jurta.org>
1871
1872 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
1873 `compilation-environment'. Set buffer-local
1874 `compilation-environment' to `thisenv' later after (funcall mode).
1875 (Bug#8340)
1876
1877 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
1878 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
1879 instead of replacing its value. (Bug#8340)
1880
0527e251
JL
18812011-09-07 Juri Linkov <juri@jurta.org>
1882
1883 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
1884 based on text properties put by `grep-filter' instead of matching
1885 escape sequences.
1886 (grep-mode): Set buffer-local `compilation-error-screen-columns'
1887 to the value of `grep-error-screen-columns' (bug#9438).
1888
249f792c
JL
18892011-09-07 Juri Linkov <juri@jurta.org>
1890
1891 * simple.el (next-error-highlight, next-error-highlight-no-select):
1892 Doc fix (bug#9432).
1893
ff7271b9
OT
18942011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
1895
1896 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
1897 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
1898
183fc730
LL
18992011-09-07 Leo Liu <sdl.web@gmail.com>
1900
1901 * net/rcirc.el (rcirc-mode): Conditionally initialize
1902 rcirc-input-ring.
1903
77694924
SM
19042011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
1905
1906 * emacs-lisp/find-func.el (find-function-C-source): Only set
1907 find-function-C-source-directory after checking that we found a source
1908 file there (bug#9440).
1909
d809b8eb
AM
19102011-09-06 Alan Mackenzie <acm@muc.de>
1911
1912 * isearch.el (isearch-other-meta-char): Wherever a key list is
1913 unread, "unread" the prefix arg, too. This fixes bug #8901.
1914
453de99f
OG
19152011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
1916
1917 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
1918
90439906
JL
19192011-09-05 Juri Linkov <juri@jurta.org>
1920
1921 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
1922
f62bd846
JL
19232011-09-05 Juri Linkov <juri@jurta.org>
1924
1925 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
1926 keeping point where processing of grep matches begins, and
1927 continue to delete remaining escape sequences from the same point.
1928 (grep-filter): Make leading zero optional in "0?1;31m" because
1929 git-grep emits "\033[1;31m" escape sequences unlike expected
1930 "\033[01;31m" as GNU Grep does (bug#9408).
1931 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
1932
045820ec
JL
19332011-09-05 Juri Linkov <juri@jurta.org>
1934
1935 * subr.el (y-or-n-p): Capitalize "yes".
1936
f5e29b9b
MA
19372011-09-04 Michael Albinus <michael.albinus@gmx.de>
1938
1939 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
1940 `tramp-cache-unload-hook' where appropriate.
1941 (tramp-methods): Rename `tramp-remote-sh' to
1942 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
1943 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
1944
1945 * net/tramp-sh.el (top): Don't require 'shell.
1946 (tramp-methods): Add `tramp-remote-shell' and
1947 `tramp-remote-shell-args' entries.
1948 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
1949 (tramp-sh-handle-shell-command): Remove.
1950 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
1951 Use `tramp-remote-shell'.
1952
2784c434
CY
19532011-09-03 Chong Yidong <cyd@stupidchicken.com>
1954
393a301e 1955 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
1956 (sendmail-query-once): Save directly to send-mail-function.
1957 Update message-send-mail-function too.
1958
1959 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
1960
464cdf56
CS
19612011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
1962
1963 * progmodes/python.el (python-mode-map): Use correct function to
1964 start python interpreter from menu-bar (as reported by Geert
1965 Kloosterman).
1966 (inferior-python-mode-map): Fix typo.
393a301e 1967 (python-shell-map): Remove.
464cdf56 1968
d37e5c87
DD
19692011-09-03 Deniz Dogan <deniz@dogan.se>
1970
1971 * net/rcirc.el (rcirc-print): Simplify code for
1972 rcirc-scroll-show-maximum-output. There is no need to walk
1973 through all windows to find the right one.
1974
f3ada0ee
CS
19752011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
1976
1977 * help.el (help-return-method): Doc fix.
1978
1f3c99ca
MR
19792011-09-03 Martin Rudalics <rudalics@gmx.at>
1980
1981 * window.el (window-deletable-p): Don't return a non-nil value
1982 when there's a buffer that was shown in the window before.
1983 (Bug#9419)
393a301e
SM
1984 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1985 Set window's previous buffers to nil.
1f3c99ca 1986
a3cf097f
EZ
19872011-09-03 Eli Zaretskii <eliz@gnu.org>
1988
1989 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
1990 newline before and after the tag line, so it doesn't interfere
1991 with determining the paragraph direction of bidirectional text.
1992
3d03de90
LL
19932011-09-03 Leo Liu <sdl.web@gmail.com>
1994
1995 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
1996
c3313451
CY
19972011-09-02 Chong Yidong <cyd@stupidchicken.com>
1998
393a301e 1999 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
2000 (pop-to-buffer): Change interactive spec. Pass second argument
2001 directly to display-buffer.
2002 (display-buffer): Fix interactive spec. Use functionp to
2003 distinguish between a function and a list of functions.
2004
2005 * abbrev.el (edit-abbrevs):
2006 * arc-mode.el (archive-extract):
2007 * autoinsert.el (auto-insert):
2008 * bookmark.el (bookmark-bmenu-list):
2009 * files.el (find-file):
2010 * view.el (view-buffer):
2011 * progmodes/compile.el (compilation-goto-locus):
2012 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
2013
89894cd8
CY
20142011-09-02 Chong Yidong <cyd@stupidchicken.com>
2015
2016 * window.el (display-buffer-alist): Doc fix.
2017 (display-buffer): Add docstring. Don't treat
2018 display-buffer-default specially.
2019 (display-buffer-reuse-selected-window)
2020 (display-buffer-same-window, display-buffer-maybe-same-window)
2021 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2022 (display-buffer-pop-up-window)
2023 (display-buffer-reuse-or-pop-window)
2024 (display-buffer-use-some-window): New functions.
2025 (display-buffer-default-action): Use them.
393a301e 2026 (display-buffer-default): Delete.
89894cd8
CY
2027 (pop-to-buffer-1): Fix choice of actions.
2028
ae0bc9fb
SM
20292011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
2030
2031 * minibuffer.el (completion--insert-strings): Don't get confused by
2032 completion entries that end with an LF char.
2033
e9d90883
EZ
20342011-09-01 Eli Zaretskii <eliz@gnu.org>
2035
2036 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
2037
437014c8
CY
20382011-09-01 Chong Yidong <cyd@stupidchicken.com>
2039
2040 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
2041 (display-buffer-same-window, display-buffer-other-window):
2042 New functions.
437014c8
CY
2043 (pop-to-buffer-1): New function. Use the above.
2044 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 2045 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
2046
2047 * view.el (view-buffer-other-window, view-buffer-other-frame):
2048 Just use pop-to-buffer.
2049
a5e063d5
TV
20502011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2051
2052 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
2053
793d32bb
WH
20542011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
2055
2056 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
2057
d65e4c15
RS
20582011-08-31 Richard Stallman <rms@gnu.org>
2059
2060 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
2061 of the separation of rmail-view-buffer from rmail-buffer.
2062 If you say no to "replace original", the decrypt is in the
2063 view buffer. If you say yes, the decrypt goes into the
2064 rmail buffer also.
2065
f818cd2a
MR
20662011-08-31 Martin Rudalics <rudalics@gmx.at>
2067
2068 * window.el (display-buffer-window): Rewrite doc-string.
2069 (display-buffer-record-window): New function.
2070 (display-buffer-macro-specifiers)
2071 (display-buffer-even-window-sizes, display-buffer-set-height)
2072 (display-buffer-set-width, display-buffer-in-window)
2073 (display-buffer-reuse-window, display-buffer-split-specifiers)
2074 (display-buffer-side-specifiers, display-buffer-split-window-1)
2075 (display-buffer-split-window, display-buffer-split-atom-window)
2076 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
2077 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
2078 (display-buffer-other-window-means-other-frame)
2079 (display-buffer-normalize-special)
2080 (display-buffer-normalize-default)
2081 (display-buffer-normalize-argument)
2082 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
2083 (display-buffer-normalize-specifiers, display-buffer-frame)
2084 (display-buffer-same-window, display-buffer-same-frame)
2085 (display-buffer-other-window)
2086 (display-buffer-same-frame-other-window)
2087 (display-buffer-other-frame, pop-to-buffer-same-window)
2088 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
2089 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
2090 (switch-to-buffer-same-frame)
2091 (switch-to-buffer-other-window-same-frame)
2092 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
2093 (display-buffer-alist-set-1, display-buffer-alist-set-2)
2094 (display-buffer-alist-set): Remove.
2095 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
2096 (special-display-regexps, special-display-function):
2097 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
2098 parameter.
2099 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
2100 (special-display-frame-alist, special-display-popup-frame)
2101 (same-window-buffer-names, same-window-regexps, same-window-p)
2102 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
2103 (split-window-preferred-function, split-height-threshold)
2104 (split-width-threshold, window-splittable-p)
2105 (split-window-sensibly, window--try-to-split-window)
2106 (window--frame-usable-p, even-window-heights)
2107 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
2108 (window--display-buffer-2, display-buffer-other-frame):
2109 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
2110 (display-buffer-default, display-buffer-assq-regexp): New functions.
2111 (display-buffer-alist): Rewrite doc-string.
2112 (display-buffer-default-action)
2113 (display-buffer-overriding-action): New variables.
2114 (display-buffer, switch-to-buffer): Rewrite.
2115 (pop-to-buffer): Restore Emacs 23 behavior but use
2116 window-normalize-buffer-to-display.
2117 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
2118 Restore Emacs 23 behavior but use
2119 window-normalize-buffer-to-switch-to.
2120 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
2121 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
2122 Rewrite using Emacs 23 options.
f818cd2a 2123
5bc3b51d
MA
21242011-08-31 Michael Albinus <michael.albinus@gmx.de>
2125
2126 * net/tramp.el (tramp-root-regexp): Remove.
2127 (tramp-completion-file-name-regexp-unified)
2128 (tramp-completion-file-name-regexp-separate)
2129 (tramp-completion-file-name-regexp-url): Don't use leading volume
2130 letter on win32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
2131 (tramp-drop-volume-letter): Simplify definition.
2132 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 2133
b1a4f8e1
SM
21342011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2135
2136 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
2137 (bug#9356).
2138
5664fa7b
RT
21392011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
2140
b1a4f8e1 2141 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 2142
9a45d6c3
JL
21432011-08-29 Juri Linkov <juri@jurta.org>
2144
2145 * isearch.el (isearch-done): Don't display message "Mark saved"
2146 when arg `edit' is non-nil to prevent its flicker in the echo area.
2147
fb87e0fb
CY
21482011-08-28 Chong Yidong <cyd@stupidchicken.com>
2149
2150 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
2151 obsolete packages for deletion.
2152
09ac1c2a
CS
21532011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
2154
2155 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 2156 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
2157 view-mode from help-mode.
2158 (help-xref-override-view-map): Remove.
2159 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
2160 view-mode is not used anymore.
2161
7a1ff57f
CY
21622011-08-28 Chong Yidong <cyd@stupidchicken.com>
2163
2164 * server.el (server-port): Doc fix.
2165
b9696605
CY
2166 * cus-theme.el (custom-theme-choose-mode): Inherit from
2167 special-mode (Bug#9124).
2168 (custom-theme-choose-mode-map): Add special-mode to parent.
2169
ef8cdf8c
AM
21702011-08-28 Alan Mackenzie <acm@muc.de>
2171
2172 * progmodes/cc-fonts.el
2173 (c-make-font-lock-BO-decl-search-function): New function.
2174 (c-basic-matchers-after - "Fontify the clauses after various
2175 keywords"): Extract the three keyword lists for the 3 erroneous
2176 constructs from the list of four, and use the new function above
2177 in place of an old one.
2178
27de4e20
DD
21792011-08-28 Deniz Dogan <deniz@dogan.se>
2180
2181 * net/rcirc.el (rcirc-insert-prev-input)
2182 (rcirc-insert-next-input): Remove unused argument.
2183
356a3681
SM
21842011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2185
2186 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
2187
3fc9b218
AM
21882011-08-27 Alan Mackenzie <acm@muc.de>
2189
2190 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
2191 handle function pointer parameters properly.
2192
538a061c
MR
21932011-08-27 Martin Rudalics <rudalics@gmx.at>
2194
2195 * window.el (display-buffer-reuse-window): Fix case where
2196 selected window was reused with non-nil OTHER-WINDOW argument.
2197 (Bug#9381)
2198
35b1c40c
DD
21992011-08-27 Deniz Dogan <deniz@dogan.se>
2200
2201 * net/rcirc.el (rcirc-check-auth-status): Adding support for
2202 oftc's NickServ messages.
2203
2f6a3e79
GM
22042011-08-27 Glenn Morris <rgm@gnu.org>
2205
2206 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
2207
7254299e
CY
22082011-08-26 Chong Yidong <cyd@stupidchicken.com>
2209
2210 * emacs-lisp/package.el (package-install): Call package-initialize
2211 if called interactively.
2212
f8ccf167
LL
22132011-08-26 Leo Liu <sdl.web@gmail.com>
2214
2215 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
2216
3e8cd5ce
JL
22172011-08-25 Juri Linkov <juri@jurta.org>
2218
2219 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
2220 `search-whitespace-regexp' (bug#9364).
2221
93eb7113
JL
22222011-08-25 Juri Linkov <juri@jurta.org>
2223
2224 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
2225 `regexp-search-ring' to their global values to protect from
2226 updating by `read-from-minibuffer' (bug#9185).
2227
f65d1611
JL
22282011-08-25 Juri Linkov <juri@jurta.org>
2229
2230 * textmodes/ispell.el (ispell-command-loop): Add newline
2231 at the end of the "Use option `i'..." line.
2232
f1cf7a31
JL
22332011-08-25 Juri Linkov <juri@jurta.org>
2234
2235 * battery.el (display-battery-mode): If `battery-status-function'
2236 or `battery-mode-line-format' is nil, display the message and set
2237 `display-battery-mode' to nil (bug#9363).
2238
0c95fcf7
EZ
22392011-08-25 Eli Zaretskii <eliz@gnu.org>
2240
2241 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
2242 bidi-string-mark-left-to-right; they are unnecessary now.
2243
a2ebe600
DD
22442011-08-25 Deniz Dogan <deniz@dogan.se>
2245
2246 * net/quickurl.el: Documentation typo fixes.
2247
e4ed06f1
CY
22482011-08-25 Chong Yidong <cyd@stupidchicken.com>
2249
2250 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
2251
e5f1c99e
GM
22522011-08-25 Glenn Morris <rgm@gnu.org>
2253
b2948976
GM
2254 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
2255
e5f1c99e
GM
2256 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
2257 (smtpmail-via-smtp): Handle nil response from smtp.
2258
f22f4808
JL
22592011-08-24 Juri Linkov <juri@jurta.org>
2260
2261 * proced.el (proced-marked): Inherit from `error' instead of
2262 `font-lock-warning-face'.
2263
2264 * ibuffer.el (ibuffer-marked-face): Change default face from
2265 `font-lock-warning-face' to `warning'.
2266 (ibuffer-deletion-face): Change default face from
2267 `font-lock-type-face' to `error'.
2268
2269 * battery.el (battery-update): Use the face `error' instead of
2270 `font-lock-warning-face' (bug#6117).
2271
6a93965e
JL
22722011-08-24 Juri Linkov <juri@jurta.org>
2273
2274 * faces.el (success): Change face color from "Green3" to
2275 "ForestGreen" on light background (bug#9353).
2276
1ed43b09
CY
22772011-08-24 Chong Yidong <cyd@stupidchicken.com>
2278
5664fa7b
RT
2279 * window.el (quit-window): Rename from quit-restore-window.
2280 Use same arglist as old quit-window.
1ed43b09
CY
2281 (frame-auto-delete): Doc fix.
2282
2283 * view.el (view-mode-exit): Use quit-window.
2284
11dcdbb2
JL
22852011-08-24 Juri Linkov <juri@jurta.org>
2286
2287 * isearch.el (isearch-ring-adjust1): Start visiting previous
2288 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
2289 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
2290 for empty search string (when the last search string is reused
2291 automatically) to adjust the isearch ring to the last element and
2292 prepare the correct index for further M-p commands (bug#9185).
2293
de62b4df
KH
22942011-08-24 Kenichi Handa <handa@m17n.org>
2295
2296 * international/ucs-normalize.el: If decomposition property of
2297 CHAR is the default one (i.e. a list of CHAR itself), treat it as
2298 nil.
2299 (nfd, nfkd): Likewise.
2300
963b492b
SM
23012011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
2302
2303 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
2304 from process filters aren't reliably transmitted to the surrounding
2305 accept-process-output.
2306 (mpc-proc-check): New function.
2307 (mpc-proc-sync): Use it (bug#8293)
2308
93b6b5e1
SM
23092011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2310
2311 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
2312 Add compatibility functions (bug#9313).
2313
bca633fb
EZ
23142011-08-23 Eli Zaretskii <eliz@gnu.org>
2315
b177498a
EZ
2316 * cus-start.el (all): Add entry for bidi-paragraph-direction.
2317
bca633fb
EZ
2318 * international/uni-bidi.el: Regenerated.
2319
0902a04e
KH
23202011-08-23 Kenichi Handa <handa@m17n.org>
2321
2322 * international/charprop.el:
2323 * international/uni-bidi.el:
2324 * international/uni-category.el:
2325 * international/uni-combining.el:
2326 * international/uni-comment.el:
2327 * international/uni-decimal.el:
2328 * international/uni-decomposition.el:
2329 * international/uni-digit.el:
2330 * international/uni-lowercase.el:
2331 * international/uni-mirrored.el:
2332 * international/uni-name.el:
2333 * international/uni-numeric.el:
2334 * international/uni-old-name.el:
2335 * international/uni-titlecase.el:
2336 * international/uni-uppercase.el: Regenerate.
2337
3bbf23bc
MR
23382011-08-23 Martin Rudalics <rudalics@gmx.at>
2339
2340 * help.el (help-window-setup): Fix message displayed when other
2341 window is reused. (Bug#9341)
2342
b3fd59bd
SM
23432011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2344
1802e444
SM
2345 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
2346 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
2347
b3fd59bd
SM
2348 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
2349 Mark obsolete.
2350 * shell.el (shell-parse-pcomplete-arguments): New function.
2351 (shell-completion-vars): Use it instead (bug#9160).
2352
4eb61348
SM
23532011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
2354
867cab74
SM
2355 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
2356 strings and comments (bug#9333).
2357
4eb61348
SM
2358 * emacs-lisp/debug.el (debug-arglist): New function.
2359 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
2360 (debug-on-entry-1): Handle interpreted closures (bug#9120).
2361
262a1439
JL
23622011-08-22 Juri Linkov <juri@jurta.org>
2363
56ee679c
JL
2364 * progmodes/compile.el (compilation-mode-font-lock-keywords):
2365 Revert regexp that highlights output switches to its old
2366 pre-2010-10-28 value and remove one `?' from it (bug#9319).
2367
262a1439
JL
2368 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
2369 to check for empty output (bug#9226).
2370
f13f86fb
CY
23712011-08-22 Chong Yidong <cyd@stupidchicken.com>
2372
2373 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
2374 symbol-constituent as the default, as that stops font-lock from
2375 working properly (Bug#8843).
2376
c65c9622
LMI
23772011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
2378
2379 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
2380 `coding-system-for-*' around the process open call to avoid
2381 auth-source side effects.
e7f2c178 2382 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
2383 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
2384 probe hangs.
c65c9622 2385
23a8a5ab
CY
23862011-08-21 Chong Yidong <cyd@stupidchicken.com>
2387
ff98b2dd
CY
2388 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
2389
23a8a5ab
CY
2390 * emacs-lisp/find-func.el (find-function-noselect): New arg
2391 lisp-only.
2392
2393 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
2394 signal an error for built-in functions (Bug#6664).
2395
f5e3c598
LMI
23962011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
2397
2398 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
2399 (smtpmail-try-auth-methods): Use it.
2400
a3f2468a
CY
24012011-08-21 Chong Yidong <cyd@stupidchicken.com>
2402
2c34e8da
CY
2403 * font-lock.el (font-lock-fontify-region)
2404 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
2405 (font-lock-default-unfontify-buffer)
2406 (font-lock-default-fontify-region)
2407 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
2408
b3fd59bd
SM
2409 * progmodes/compile.el (compilation-error-properties):
2410 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
2411 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
2412 `ant' regexp.
ee31aabc 2413
a3f2468a
CY
2414 * net/browse-url.el (browse-url-firefox): Don't call
2415 browse-url-firefox-sentinel unless using -remote (Bug#9328).
2416
8e999f70
GM
24172011-08-20 Glenn Morris <rgm@gnu.org>
2418
c21a496a
GM
2419 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
2420
59ee0542
GM
2421 * tutorial.el (tutorial--default-keys): Update some default bindings.
2422
8e999f70
GM
2423 * files.el (hack-local-variables): Fully ignore case for "mode:".
2424
e3715033
AM
24252011-08-20 Alan Mackenzie <acm@muc.de>
2426
2427 Resolve invalid use of a regexp in regexp-opt.
2428
4d61f28d
JB
2429 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
2430 detection for a java annotation.
e3715033 2431
4d61f28d 2432 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
2433 detection for a java annotation.
2434
4d61f28d
JB
2435 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
2436 handling for java.
e3715033
AM
2437 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
2438
04ed2e9c
CY
24392011-08-20 Chong Yidong <cyd@stupidchicken.com>
2440
2441 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
2442 (Bug#9274).
2443
826cee64
AM
24442011-08-20 Alan Mackenzie <acm@muc.de>
2445
2446 * Fontify CPP expressions correctly when starting in the middle of
2447 such a construct. Mainly for when jit-lock etc. starts a chunk
2448 here.
2449
2450 * progmodes/cc-fonts.el (c-font-lock-context): new buffer local
2451 variable.
2452 (c-make-font-lock-search-form): new function, extracted from
2453 c-make-font-lock-search-function.
2454 (c-make-font-lock-search-function): Use the above function.
2455 (c-make-font-lock-context-search-function): New function.
2456 (c-cpp-matchers): Enhance the preprocessor expression case with
2457 the above function
2458 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
2459 which takes an expression.
2460
2461 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
2462
13009bd8
MR
24632011-08-20 Martin Rudalics <rudalics@gmx.at>
2464
2465 * window.el (display-buffer-reuse-window)
2466 (display-buffer-pop-up-window): Don't reuse or split a side
2467 window.
2468
9234ff7f
GM
24692011-08-19 Glenn Morris <rgm@gnu.org>
2470
2471 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 2472 Downcase "Mode:". (Bug#9331)
9234ff7f 2473
f635daa1
CY
24742011-08-18 Chong Yidong <cyd@stupidchicken.com>
2475
2476 * international/characters.el: Add L and R categories.
2477
2478 * subr.el (bidi-string-mark-left-to-right): Rename from
2479 string-mark-left-to-right. Use category search.
2480
2481 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
2482
bc987f8b
JL
24832011-08-18 Juri Linkov <juri@jurta.org>
2484
2485 * faces.el (error, warning, success): New faces with definitions
2486 copied from old default values of `font-lock-warning-face',
2487 `compilation-warning', `compilation-info' (bug#6117).
2488
2489 * font-lock.el (font-lock-warning-face): Inherit from `error'.
2490
2491 * progmodes/compile.el (compilation-error): Inherit from `error'.
2492 (compilation-warning): Inherit from `warning'.
2493 (compilation-info): Inherit from `success'.
2494
2495 * dired.el (dired-marked): Inherit from `warning'.
2496 (dired-flagged): Inherit from `error'.
2497
57173b96
LMI
24982011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
2499
3e79eb87
LMI
2500 * mail/smtpmail.el (auth-source): Require to avoid problems with
2501 binding variables (bug#9298). Also clean up some unused
2502 autoloads.
2503
b3fd59bd
SM
2504 * net/network-stream.el (network-stream-open-starttls):
2505 Support using starttls.el without using gnutls-cli.
57173b96 2506
02b404de
JL
25072011-08-17 Juri Linkov <juri@jurta.org>
2508
2509 * progmodes/grep.el (rgrep): Handle the case when
2510 `grep-find-command' is a cons cell (bug#9278).
2511
8c9177f2
MR
25122011-08-17 Martin Rudalics <rudalics@gmx.at>
2513
2514 * window.el (display-buffer-pop-up-frame): Run frame creation
2515 function with BUFFER current (as special-display-popup-frame
2516 does). Reported by Drew Adams.
2517
3644a0ab
DU
25182011-08-17 Daiki Ueno <ueno@unixuser.org>
2519
2520 * epa-mail.el: Simplify GnuPG group expansion using
2521 epg-expand-group.
2522 (epa-mail-group-alist, epa-mail-group-modtime)
2523 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
2524 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
2525 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
2526 Remove.
2527
5e617bc2 25282011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
2529
2530 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
2531
9c4aeabf
AM
25322011-08-16 Alan Mackenzie <acm@muc.de>
2533
2534 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
2535 Correct, to avoid the inside of macros.
2536
3a99bf64
RS
25372011-08-16 Richard Stallman <rms@gnu.org>
2538
04963aa8
RS
2539 * epa-mail.el: Handle GnuPG group definitions.
2540 (epa-mail-group-alist, epa-mail-group-modtime)
2541 (epa-mail-gnupg-conf-file): New variables.
2542 (epa-mail-parse-groups, epa-mail-sync-groups)
2543 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
2544 (epa-mail-expand-recipients): New functions.
2545 (epa-mail-encrypt): Call epa-mail-expand-recipients.
2546
177549d0
RS
2547 * mail/rmail.el (rmail-epa-decrypt): New command.
2548
fe38beef
RS
2549 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
2550 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
2551 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
2552 (epa-decrypt-armor-in-region): Make error message clearer.
2553
934eacb9
SM
25542011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
2555
2556 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
2557 and "a2b" to "ab" for `prefix'.
2558
d024fb4e
CY
25592011-08-14 Chong Yidong <cyd@stupidchicken.com>
2560
2561 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
2562 filter groups.
de148fee
CY
2563 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
2564 Fourquet (Bug#8804).
d024fb4e 2565
62f1ca49
JB
25662011-08-12 Juanma Barranquero <lekktu@gmail.com>
2567
2568 * startup.el (argi): Declare as global variable (bug#9275).
2569
9ccaaa4b
CY
25702011-08-12 Chong Yidong <cyd@stupidchicken.com>
2571
2572 * subr.el (string-mark-left-to-right): Search the entire string
2573 for RTL script, not just the terminating character. Doc fix.
2574
a3dae87a
SM
25752011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
2576
6cd18349
SM
2577 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
2578 New function.
2579 (js--regexp-literal, js-syntax-propertize-function): Remove.
2580 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
2581 (js-mode-map): Don't rebind electric keys.
2582 (js-insert-and-indent): Remove.
2583 (js-mode): Setup electric-layout and electric-indent instead.
2584
a3dae87a
SM
2585 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
2586
9d5cb631
DU
25872011-08-12 Daiki Ueno <ueno@unixuser.org>
2588
2589 * epa.el (epa-progress-callback-function): Fix the logic of
2590 displaying progress.
2591 * epa-file.el (epa-file-insert-file-contents): Make progress
2592 display more user-friendly.
2593 (epa-file-write-region): Ditto.
2594
3e26a4a2
CY
25952011-08-10 Chong Yidong <cyd@stupidchicken.com>
2596
2597 * subr.el (string-mark-left-to-right): New function.
2598
2599 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
2600 Use string-mark-left-to-right.
2601 (list-buffers-noselect): Caller changed.
2602
a3dae87a
SM
2603 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
2604 Use string-mark-left-to-right.
3e26a4a2
CY
2605 (tabulated-list-print): Recenter after moving point.
2606
ac8cf6e6
JL
26072011-08-10 Juri Linkov <juri@jurta.org>
2608
2609 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
2610 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
2611 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
2612
8d96c9a4
CY
26132011-08-09 Chong Yidong <cyd@stupidchicken.com>
2614
2615 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
2616 (Bug#7554).
2617
7be1c708 26182011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
2619
2620 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
2621 character. (Bug#6594)
2622
37e11a63
CY
26232011-08-08 Chong Yidong <cyd@stupidchicken.com>
2624
839dde57
CY
2625 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
2626 (image-dired--with-db-file): New macro.
2627 (image-dired-write-tags, image-dired-remove-tag)
2628 (image-dired-create-gallery-lists, image-dired-write-comments)
2629 (image-dired-get-comment, image-dired-mark-tagged-files)
2630 (image-dired-list-tags, image-dired-gallery-generate): Use it.
2631 (image-dired-gallery-generate): Use insert-file-contents.
2632
37e11a63
CY
2633 * time.el (display-time-world-list, display-time-world-display):
2634 * time-stamp.el (time-stamp-string):
2635 * vc/add-log.el (add-change-log-entry): Use setenv instead of
2636 set-time-zone-rule (Bug#7337).
2637
0b4946c4
DU
26382011-08-08 Daiki Ueno <ueno@unixuser.org>
2639
2640 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
2641 (epg-error-to-string, epg-errors-to-string): New function.
2642 (epg-wait-for-completion): Reverse errors list.
2643 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
2644 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
2645 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
2646 (epg-sign-keys, epg-generate-key-from-file)
2647 (epg-generate-key-from-string): Format errors by using
2648 epg-errors-to-string (bug#9255).
2649 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
2650
75bfc667
JL
26512011-08-07 Juri Linkov <juri@jurta.org>
2652
2653 * faces.el (list-faces-display): Remove extra angle bracket
2654 from `help-mode-map'.
2655
2656 * info.el (Info-history-toc-nodes): Doc fix.
2657
2658 * longlines.el (longlines-mode): Doc fix.
2659
673e08bb
SM
26602011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
2661
4640dd88
SM
2662 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
2663 of statements and in a few more cases (bug#9183).
2664
673e08bb
SM
2665 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
2666 New functions.
2667 (cl-transform-lambda): Use them (bug#9239).
2668
89b3f019
MR
26692011-08-05 Martin Rudalics <rudalics@gmx.at>
2670
2671 * window.el (display-buffer-same-window)
2672 (display-buffer-same-frame, display-buffer-other-window)
2673 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
2674 (pop-to-buffer-other-window)
2675 (pop-to-buffer-same-frame-other-window)
2676 (pop-to-buffer-other-frame): Make them defuns.
2677 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
2678
640c8776
SM
26792011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
2680
2681 * subr.el (make-composed-keymap): Move from C. Change calling
2682 convention, and improve docstring to bring attention to a subtle point.
2683 * minibuffer.el (completing-read-default): Adjust accordingly.
2684
63648a95
MA
26852011-08-03 Michael Albinus <michael.albinus@gmx.de>
2686
2687 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
2688 (tramp-open-shell): Use `tramp-shell-quote-argument'.
2689
2690 * net/trampver.el: Update release number.
2691
b796c9b7
SM
26922011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
2693
2694 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
2695 "in" (bug#9190).
2696
2239d7d5
LMI
26972011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
2698
e07dd7c3
LMI
2699 * mail/sendmail.el (sendmail-query-once): Restore the current
2700 buffer after querying (bug#9074).
2701
0e6a2bd7
LMI
2702 * dired.el (dired-flagged): Use different faces for marked and
2703 flagged files (bug#6117).
2704
ce887515
LMI
2705 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
2706 (bug#4433).
2707
92f2affc
LMI
2708 * ido.el (ido-mode): Switch off the message if called
2709 non-interactively.
2710
57d5aff0
LMI
2711 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
2712 before 587, since it appears that that's more likely to work for
2713 more people.
2714
98cd6c18
LMI
2715 * cus-edit.el (custom-file): When running under emacs -q, always
2716 refuse to save the customisations, even if the .emacs file doesn't
2717 exist.
2718
b96dec83
LMI
2719 * info.el: Remove the `Info-beginning-of-buffer' function
2720 (bug#8325).
2721
b796c9b7
SM
2722 * net/network-stream.el (network-stream-open-starttls):
2723 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 2724
d90e2ea0
MR
27252011-08-01 Martin Rudalics <rudalics@gmx.at>
2726
2727 * window.el (display-buffer-in-window): Don't set dedicated status
2728 of window here (Bug#9215).
2729 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
2730 (display-buffer-pop-up-side-window)
b796c9b7 2731 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 2732
cca09170
SM
27332011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
2734
2735 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
2736 before binding generated-autoload-file.
2737
027b979c
DD
27382011-08-01 Deniz Dogan <deniz@dogan.se>
2739
2740 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
2741
3c7ee4f3
MA
27422011-07-30 Michael Albinus <michael.albinus@gmx.de>
2743
2744 Sync with Tramp 2.2.2.
2745
2746 * net/trampver.el: Update release number.
2747
2cc8e51a
JL
27482011-07-30 Juri Linkov <juri@jurta.org>
2749
2750 * dired-aux.el (dired-touch-initial): Remove function.
2751 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
2752 current time, and `default' to the last modification time of the
2753 current marked file (bug#6887).
2754
a514d856
JM
27552011-07-28 Jose E. Marchesi <jemarch@gnu.org>
2756
2757 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 2758 numeric argument to read-number (bug#9163).
a514d856 2759
8a7eddd7
MA
27602011-07-27 Michael Albinus <michael.albinus@gmx.de>
2761
2762 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
2763 connection process, it could be nil.
2764
1ddd96f5
LL
27652011-07-27 Leo Liu <sdl.web@gmail.com>
2766
2767 Simplify url handling in rcirc-mode.
2768
2769 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
2770 (rcirc-browse-url-at-mouse): Remove.
2771 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
2772
b248a85d
AM
27732011-07-26 Alan Mackenzie <acm@muc.de>
2774
2775 Fontify bitfield declarations properly.
2776
2777 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
2778 (c-symbol-chars): Now exported as a lang variable.
2779 (c-not-primitive-type-keywords): New lang variable.
2780
2781 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
2782 QT keyword "more" to prevent "more slots: ...." being spuriously
2783 parsed as a bitfield declaraion.
2784
b796c9b7
SM
2785 * progmodes/cc-engine.el (c-beginning-of-statement-1):
2786 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
2787 (c-punctuation-in): New function.
2788 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
2789 declarations properly.
2790
68575ab0
UJ
27912011-07-26 Ulf Jasper <ulf.jasper@web.de>
2792
2793 * calendar/icalendar.el (icalendar--all-events): Take care of
2794 multiple vcalendars in a single file.
b796c9b7 2795 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 2796
0f0a88b9
DD
27972011-07-25 Deniz Dogan <deniz@dogan.se>
2798
2799 * image.el (insert-image): Clarifying docstring.
2800
0b3f36df
MA
28012011-07-24 Michael Albinus <michael.albinus@gmx.de>
2802
2803 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
2804 `tramp-send-command-and-check' if there is no error.
2805 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
2806
a9901f61
AM
28072011-07-22 Alan Mackenzie <acm@muc.de>
2808
2809 Prevent cc-langs.elc being loaded at run time.
2810
2811 * progmodes/cc-mode.el: Remove two autoload forms which loaded
2812 cc-langs.
2813
4d61f28d 2814 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
2815 "(require 'cc-langs)". Quote a form so it will evaluate at
2816 (cc-mode's) compilation time.
2817
11d074b2
MA
28182011-07-22 Michael Albinus <michael.albinus@gmx.de>
2819
2820 * net/tramp.el (tramp-file-name-handler): Avoid recursive
2821 loading. (Bug#9114)
2822
938b94c8
MR
28232011-07-21 Martin Rudalics <rudalics@gmx.at>
2824
2825 * window.el (display-buffer-pop-up-window)
2826 (display-buffer-pop-up-side-window)
2827 (display-buffer-in-side-window): Call display-buffer-set-height
2828 and display-buffer-set-width after setting the new window's
b796c9b7 2829 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 2830
bfa4f190
SS
28312011-07-20 Sam Steingold <sds@gnu.org>
2832
2833 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
2834 (etags-tags-included-tables): Call `convert-standard-filename' on
2835 the file names contained in TAGS so that windows Emacs can handle
2836 TAGS files created by cygwin ctags.
2837
8ca42262
LMI
28382011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
2839
2840 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
2841 which apparently didn't work.
2842
5db2afd2 28432011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 2844
5db2afd2
RW
2845 * proced.el (proced-send-signal): For *Marked Processes* buffer
2846 put point at beginning of buffer.
2847
92e15d10
SB
28482011-07-19 Stephen Berman <stephen.berman@gmx.net>
2849
2850 * proced.el (proced-format): Make header lines align with the text
2851 (bug#1779).
2852
1bfd59e5
LMI
28532011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
2854
2855 * view.el (view-buffer): Allow running in `special' modes if we're
2856 visiting a file (bug#8615).
2857
f5aae37c
MR
28582011-07-19 Martin Rudalics <rudalics@gmx.at>
2859
2860 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
2861 (display-buffer-alist-set-1, display-buffer-alist-set-2):
2862 New functions.
f5aae37c
MR
2863 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
2864 more accurately.
2865
bf2c1571
AM
28662011-07-18 Alan Mackenzie <acm@muc.de>
2867
2868 Fontify declarators properly when, e.g., a jit-lock chunk begins
2869 inside a declaration.
2870
2871 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
2872
b796c9b7
SM
2873 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
2874 New function.
bf2c1571
AM
2875 (c-complex-decl-matchers): Insert reference to
2876 c-font-lock-enclosing-decls.
2877
2878 * progmodes/cc-engine.el (c-backward-single-comment):
2879 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
2880 to nil around calls to (forward-comment -1).
2881
4e190b80
LMI
28822011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
2883
12dc863d
LMI
2884 * image.el (put-image): Doc typo fix.
2885
a762e966
LMI
2886 * progmodes/etags.el (tags-search): Doc typo fix.
2887
4e190b80
LMI
2888 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
2889 password if we get errors 550 to 554.
2890
f019fb21
LMI
28912011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
2892
b796c9b7 2893 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 2894
81746738
LMI
2895 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
2896 indentation character (bug#6380).
2897
3ee3a1b5
LMI
2898 * files.el (buffer-offer-save): Made permanently local (bug#6241).
2899
c82f64de
LMI
2900 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
2901 to clarify what the problem is (bug#4291).
2902
f019fb21
LMI
2903 * simple.el (current-kill): Clarify what
2904 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
2905 (auto-fill-mode): Document `auto-fill-function' in relation to
2906 `auto-fill-mode' (bug#2470).
f019fb21 2907
0794775d
LM
29082011-07-16 Lawrence Mitchell <wence@gmx.li>
2909
2910 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
2911 method if slot is read-only (bug#9035).
2912
be39b8cc
MR
29132011-07-16 Martin Rudalics <rudalics@gmx.at>
2914
b796c9b7 2915 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 2916 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
2917 selected before, see discussion of (Bug#8615), (Bug#6954).
2918 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 2919
6ccf7859
GM
29202011-07-15 Glenn Morris <rgm@gnu.org>
2921
2922 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 2923 Respect help-form.
6ccf7859 2924
87e86684
LM
29252011-07-09 Lawrence Mitchell <wence@gmx.li>
2926
2927 * net/gnutls.el (gnutls-min-prime-bits): New variable.
2928 (gnutls-negotiate): Use it.
2929
d6066239
LMI
29302011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
2931
b796c9b7
SM
2932 * net/gnutls.el (gnutls-negotiate):
2933 Upcase `gnutls-algorithm-priority'.
d6066239 2934
bd23ebc0
GM
29352011-07-15 Glenn Morris <rgm@gnu.org>
2936
c65bca65
GM
2937 * jka-compr.el (jka-compr-verbose): Move from here...
2938 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
2939 Add missing :version tag.
2940 * info.el: No need to require jka-compr when compiling.
bd23ebc0 2941
478615cc
LMI
29422011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
2943
7b41decb
LMI
2944 * net/gnutls.el (gnutls-algorithm-priority): New variable.
2945 (gnutls-negotiate): Use it.
2946
dbc44fcd
LMI
2947 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
2948
06789f97
LMI
2949 * info.el (Info-beginning-of-buffer): New command.
2950 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
2951 announcing `b' as the key (bug#8325).
ab896c37 2952 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 2953
c39da690
LMI
2954 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
2955
3aa5f34b
LMI
2956 * international/mule-cmds.el
2957 (describe-specified-language-support): Make the error message
2958 clearer (bug#8905).
2959
4bf0979f
LMI
2960 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
2961
478615cc
LMI
2962 * isearch.el (isearch-barrier): Add a doc string, since it's
2963 mentioned in a function doc string (bug#8678).
2964
75c68aa1
MR
29652011-07-15 Martin Rudalics <rudalics@gmx.at>
2966
2967 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
2968 buffer argument (Bug#9083) and self-identifying label argument.
2969
a7c33da2
GM
29702011-07-15 Glenn Morris <rgm@gnu.org>
2971
2972 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
2973
2f5c6024
LMI
29742011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2975
2976 * man.el (Man-fontify-manpage): Fix message when formatting the
2977 man page (bug#7929).
2978
0bb23927 29792011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
2980
2981 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
2982 argument LRM; if non-nil, append an invisible LRM character to the
2983 buffer name.
2984 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
2985 last argument non-nil, when formatting buffer names.
0bb23927
EZ
2986 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
2987 paragraph direction.
cce4b0a7 2988
621ef9ab
LMI
29892011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2990
d1583c48
LMI
2991 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
2992 the man page name (bug#7929).
2993
6a57fb5f
LMI
2994 * image.el (put-image): Mention the `put-image' overlay property
2995 (bug#7834).
2996
d7956b14
LMI
2997 * scroll-bar.el (set-scroll-bar-mode): Mention that
2998 `scroll-bar-mode' lists the values (bug#7772).
2999
5b2d4a66
LMI
3000 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
3001 command (bug#7729).
3002
7509a874
LMI
3003 * rect.el (apply-on-rectangle): Return the point after the last
3004 operation.
3005 (string-rectangle): Go to the point after the last operation
3006 (bug#7522).
3007
4fe74b19
LMI
3008 * printing.el (pr-toggle-region): Clarify the documentation
3009 slightly (bug#7493).
3010
b796c9b7
SM
3011 * time.el (display-time-update):
3012 Allow `display-time-mail-function' to return nil (bug#7158).
3013 Fix suggested by Detlev Zundel.
ab283561 3014
fc233c9d
LMI
3015 * vc/diff.el (diff): Clarify the order the file names are read
3016 (bug#7111).
3017
43f5740b
LMI
3018 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
3019 the doc string (bug#7015).
3020
f2182a76
LMI
3021 * font-lock.el (font-lock-maximum-decoration): Mention what
3022 numeric levels mean (bug#6935).
3023
621ef9ab
LMI
3024 * startup.el (initial-buffer-choice): Don't mention the `none'
3025 selection, which is against policy.
3026
adc47434
MR
30272011-07-14 Martin Rudalics <rudalics@gmx.at>
3028
b796c9b7
SM
3029 * window.el (display-buffer-normalize-special):
3030 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 3031
7e5bfb8f
EZ
30322011-07-14 Eli Zaretskii <eliz@gnu.org>
3033
3034 * subr.el (version<, version<=, version=): Mention "-CVS" and
3035 "-12345" alpha version numbers.
3036
27fa387a
CY
30372011-07-14 Chong Yidong <cyd@stupidchicken.com>
3038
3039 * bindings.el: Add advertised binding for set-mark-command
3040 (Bug#5772).
3041
8bdfa064
CY
30422011-07-14 Chong Yidong <cyd@stupidchicken.com>
3043
3044 * bindings.el (mode-line-other-buffer):
3045 * bookmark.el (bookmark-bmenu-2-window):
3046 * bs.el (bs-cycle-next, bs-cycle-previous):
3047 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
3048 switch-to-buffer.
3049
3050 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 3051 Delete.
8bdfa064 3052
5eba16a3
JB
30532011-07-14 Juanma Barranquero <lekktu@gmail.com>
3054
3055 * follow.el (follow-debug-message, follow-redisplay):
3056 * jka-cmpr-hook.el (with-auto-compression-mode):
3057 Fix typos in docstrings.
3058
15853710
LMI
30592011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3060
a28e4607
LMI
3061 * subr.el (with-silent-modifications): Clarify somewhat what the
3062 macro inhibits (bug#6525).
3063
15853710
LMI
3064 * simple.el (eval-expression): Note what it does if called
3065 interactively (bug#6495).
3066
bee0fcef
CY
30672011-07-13 Chong Yidong <cyd@stupidchicken.com>
3068
b796c9b7
SM
3069 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
3070 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
3071
3072 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
3073 Remove switch-to-buffer.
3074
58274504
LMI
30752011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3076
bd2fcc8d
LMI
3077 * files.el (make-directory): Clarify that an error will be raised
3078 if there's an error (bug#6397).
3079
0f04b32c
LMI
3080 * startup.el (initial-buffer-choice): Add `none' as a choice
3081 (bug#6234).
3082
465c5fc8
LMI
3083 * subr.el (add-hook): Clarify section about buffer-local hooks
3084 (bug#6218).
3085
58274504
LMI
3086 * dired.el (dired-flagged): Clarify doc string (bug#6117).
3087
bead9a43
JB
30882011-07-13 Juanma Barranquero <lekktu@gmail.com>
3089
3090 * tabify.el (untabify): Preserve the current column so that point
3091 doesn't move (bug#6032).
3092
3af98a7b
LMI
30932011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3094
b796c9b7
SM
3095 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
3096 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 3097
6240145a
GM
30982011-07-13 Glenn Morris <rgm@gnu.org>
3099
3100 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
3101 (dired-insert-directory): Give a message the first time
3102 if ls is found not to support --dired.
3103
1d8c2ccc
LMI
31042011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3105
3106 * simple.el (toggle-truncate-lines): Clarify what is toggled
3107 (bug#5580). Text by Drew Adams.
3108
5fc4038e
CY
31092011-07-13 Chong Yidong <cyd@stupidchicken.com>
3110
3111 * simple.el (blink-matching-open): Make the error message from the
3112 last change less verbose.
3113
bf6012e5
DN
31142011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
3115
3116 * font-lock.el (font-lock-comment-face): Use the high contrast
3117 "yellow" color for font-lock-comment-face on low color terminals
3118 using a dark background color (bug#4221).
3119
343c3b5a
LMI
31202011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3121
7e9505c5
LMI
3122 * dired.el (dired-insert-set-properties): Make the doc string
3123 reflect what it does now (bug#5325).
3124
c26fdcf5
LMI
3125 * simple.el (blink-matching-open): Say that we were unable to find
3126 the match within the limit, if we're limited (bug#5122).
3127
bb388cc5
LMI
3128 * international/mule-cmds.el (prefer-coding-system): Add an
3129 example (bug#4869).
3130
343c3b5a
LMI
3131 * progmodes/etags.el (tags-search): Document `file-list-form'
3132 (bug#4731).
3133
2a517d45
LM
31342011-07-13 Lawrence Mitchell <wence@gmx.li>
3135
3136 * net/browse-url.el (browse-url-default-browser)
3137 (browse-url-browser-function): Make the default browser choice a
3138 bit more logical (bug#4300). Also clean up the doc string.
3139
b6c78ef2
JB
31402011-07-13 Juanma Barranquero <lekktu@gmail.com>
3141
3142 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
3143 binary endings (bug#4440).
3144
1c4dd947
LMI
31452011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3146
a2014063
LMI
3147 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
3148 which can be pretty annoying (bug#8971).
3149
9c9c2d88
LMI
3150 * jka-compr.el (jka-compr-verbose): New variable, and use
3151 throughout (bug#8971).
3152
1c4dd947
LMI
3153 * info.el (Info-find-file): Fall back on the installation
3154 directory if we can't find the info node anywhere else.
3155
a1c9f41b
SO
31562011-07-13 Sergei Organov <osv@javad.com> (tiny change)
3157
3158 * vc/vc.el (vc-revert-file):
3159 Don't set file time-stamp in the past. (Bug#5181)
3160
536f3d36
LMI
31612011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3162
7152b011
LMI
3163 * files.el (after-find-file): Give a better error message when
3164 trying to find a symlink that points to a file that doesn't exist
3165 (bug#4398).
3166
536f3d36
LMI
3167 * progmodes/cc-vars.el: Remove (probably) misleading comment
3168 (bug#4396).
3169
460c0fba
JB
31702011-07-12 Johan Bockgård <bojohan@gnu.org>
3171
3172 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
3173
7a6bda45
CY
31742011-07-12 Chong Yidong <cyd@stupidchicken.com>
3175
3176 * mouse-sel.el: Hack restoring functionality, while keeping
3177 compatibility with 2010-07-03 changes to mouse selection.
3178 (mouse-sel-primary-overlay): New var.
3179 (mouse-sel-selection-alist): Use it.
3180 (mouse-sel-mode): Doc fix; remove points that are default features
3181 of mouse.el.
3182
c79598ef
JB
31832011-07-12 Johan Bockgård <bojohan@gnu.org>
3184
3185 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3186 Fix previous fix (bug#2490).
3187
ff8be6ef
RW
31882011-07-12 Roland Winkler <winkler@gnu.org>
3189
b796c9b7
SM
3190 * textmodes/bibtex.el (bibtex-initialize):
3191 Use pop-to-buffer-same-window.
ff8be6ef
RW
3192 (bibtex-search-entries): Fix interactive call.
3193
296ba3ee
LMI
31942011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3195
f5242a02 3196 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
3197 Fontise bytecomp Error lines more correctly (bug#2490).
3198 Fix suggested by Johan Bockgård.
f5242a02 3199
296ba3ee
LMI
3200 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
3201
3202 * dired-x.el (dired-guess-default): Use `delete-dups'.
3203
f69fd0d2
CY
32042011-07-12 Chong Yidong <cyd@stupidchicken.com>
3205
3206 * dired.el (dired-mark-prompt):
3207 * dired-aux.el (dired-read-shell-command): Doc fix.
3208
eab5dc07
LMI
32092011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3210
b796c9b7
SM
3211 * mail/sendmail.el (sendmail-query-once):
3212 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
3213 emacs -Q.
3214
3215 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
3216
eab5dc07
LMI
3217 * cus-edit.el (custom-file): Take an optional no-error variable.
3218 (customize-save-variable): Set the variable, and give a warning if
3219 running under "emacs -q".
3220
a1e65d42
JB
32212011-07-11 Juanma Barranquero <lekktu@gmail.com>
3222
3223 * loadhist.el (unload-feature-special-hooks):
3224 Add `auto-coding-functions', `fill-nobreak-predicate' and
3225 `find-directory-functions' (bug#5327).
3226
1d52da10
LMI
32272011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3228
be958f1d
LMI
3229 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
3230
5bedb26c
LMI
3231 * cus-edit.el (custom-guess-name-alist): -alist variables should
3232 use the `alist' type (bug#3120). Suggested by Drew Adams.
3233
1d52da10
LMI
3234 * printing.el: Add documentation to all the `pr-toggle-' commands.
3235
481a51b6
LL
32362011-07-11 Leo <sdl.web@gmail.com> (tiny change)
3237
3238 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
3239 backends where it makes sense (bug#2623).
3240
dcc88d8a
LMI
32412011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3242
c3de9feb
LMI
3243 * dired-x.el (dired-guess-default): Remove duplicate shell command
3244 entries (bug#2028).
8a93078b 3245 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 3246 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 3247
dcc88d8a
LMI
3248 * subr.el (remove-duplicates): New conveniency function.
3249
505e3645
LMI
32502011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3251
3252 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
3253 (bug#1526).
3254
32552011-07-10 Martin Rudalics <rudalics@gmx.at>
3256
3257 * window.el (display-buffer-normalize-default): Don't invert
3258 meaning of even-window-heights. Reported by Eli Zaretskii
3259 <eliz@gnu.org>.
3260
455e4fa1
BR
32612011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
3262
3263 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
3264
8e0bc3e9
CY
32652011-07-10 Chong Yidong <cyd@stupidchicken.com>
3266
3267 * window.el (display-buffer): Fix arguments to
3268 display-buffer-reuse-window in last change.
3269
fa7c3228
CY
3270 * faces.el (link): Use a less saturated blue on light backgrounds.
3271
3272 * startup.el (fancy-startup-text, fancy-about-text)
3273 (fancy-startup-tail): Use font-lock faces, for background safety.
3274
c0a7f300
BN
32752011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
3276
b796c9b7
SM
3277 * emulation/viper-cmd.el (viper-change-state-to-vi):
3278 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 3279
4dc2a129
MR
32802011-07-09 Martin Rudalics <rudalics@gmx.at>
3281
3282 * window.el (display-buffer-default-specifiers): Remove.
3283 (display-buffer-macro-specifiers): Remove default specifiers.
3284 (display-buffer-alist): Default to nil.
b796c9b7 3285 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
3286 (display-buffer-pop-up-window): Allow splitting internal
3287 windows. Check whether a live window was created.
3288 (display-buffer-other-window-means-other-frame)
3289 (display-buffer-normalize-arguments): Rename to
3290 display-buffer-normalize-argument and rewrite. Set the
3291 other-window specifier.
3292 (display-buffer-normalize-special): New function.
3293 (display-buffer-normalize-options): Rename to
3294 display-buffer-normalize-default and rewrite.
3295 (display-buffer-normalize-options-inhibit): Remove.
3296 (display-buffer-normalize-specifiers): Rewrite.
3297 (display-buffer): Process other-window specifier and call
3298 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
3299 more faithfully.
b796c9b7 3300 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 3301 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
3302 (display-buffer-in-window, display-buffer-alist-set):
3303 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
3304 <tassilo@member.fsf.org>.
3305
2d43b8c9
LL
33062011-07-09 Leo Liu <sdl.web@gmail.com>
3307
3308 * register.el (insert-register): Restore accidental change on
3309 2011-06-26. (Bug#9028)
3310
7f9b7c53
GM
33112011-07-09 Glenn Morris <rgm@gnu.org>
3312
3313 * subr.el (remq): Handle the empty list. (Bug#9024)
3314
f042cfd8
AS
33152011-07-08 Andreas Schwab <schwab@linux-m68k.org>
3316
3317 * mail/sendmail.el (send-mail-function): No longer delay custom
3318 initialization.
3319 * custom.el (custom-initialize-delay): Doc fix.
3320
856b2f11
SM
33212011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
3322
3323 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
3324
afae1d68
MA
33252011-07-08 Michael Albinus <michael.albinus@gmx.de>
3326
3327 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
3328 human-friendly prompt.
3329
0757af94
SM
33302011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
3331
3332 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
3333 provided by a particular plugin.
3334
d760b731
LMI
33352011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
3336
3337 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
3338 save customizations (with "emacs -Q"), just set the variable
3339 instead of erroring out.
3340
3341 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
3342
cd79ce90
JL
33432011-07-08 Juri Linkov <juri@jurta.org>
3344
3345 * arc-mode.el (archive-zip-expunge, archive-zip-update)
3346 (archive-zip-update-case): Use 7z if found by `executable-find'.
3347 The order of searching the available programs is the same as in
3348 `archive-zip-extract' (bug#8968).
3349
14cc04aa
CY
33502011-07-07 Chong Yidong <cyd@stupidchicken.com>
3351
3352 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
3353 (menu-bar-options-menu): Tweak descriptions.
3354
0a1848ec
LMI
33552011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
3356
3357 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
3358 menu items into verb phrases (bug#1421). Also refill to fit under
3359 80 columns.
3360
f5bd0689
CY
33612011-07-07 Chong Yidong <cyd@stupidchicken.com>
3362
538e85c6
CY
3363 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
3364 (Info-read-node-name): Doc fix (Bug#1084).
3365
f5bd0689
CY
3366 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
3367 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
3368 (end-of-sexp, beginning-of-sexp)
3369 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
3370 (forward-symbol, forward-same-syntax, word-at-point)
3371 (sentence-at-point): Doc fix (Bug#1144).
3372
56ec5115
LMI
33732011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
3374
f3f8e37f
LMI
3375 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
3376 should cover it (bug#1281).
3377
0757af94 3378 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 3379
12b9eb35
LMI
3380 * net/network-stream.el (network-stream-open-starttls): If gnutls
3381 negotiation fails, then possibly try again with a non-encrypted
3382 connection (bug#9017).
3383
56ec5115
LMI
3384 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
3385 be used.
3386
c2f9aec8
RS
33872011-07-07 Richard Stallman <rms@gnu.org>
3388
3389 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
3390 property, and handle its changed format.
3391 Look for the correct line number.
3392 Use file's line contents (but not past first =) to find
3393 correct line in message.
3394
ef7b981d 33952011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
3396
3397 * international/characters.el (build-unicode-category-table):
3398 Delete it.
0757af94 3399 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 3400
0757af94 3401 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
3402 to src/chartab.c.
3403 (get-char-code-property): Call unicode-property-table-internal to
3404 load a file. Call get-unicode-property-internal where necessary.
3405 (put-char-code-property): Call unicode-property-table-internal to
3406 load a file. Call put-unicode-property-internal where necessary.
3407 put-unicode-property-internal where necessary.
0757af94
SM
3408 (char-code-property-description):
3409 Call unicode-property-table-internal to load a file.
c805dec0
KH
3410
3411 * international/charprop.el:
3412 * international/uni-bidi.el:
3413 * international/uni-category.el:
3414 * international/uni-combining.el:
3415 * international/uni-comment.el:
3416 * international/uni-decimal.el:
3417 * international/uni-decomposition.el:
3418 * international/uni-digit.el:
3419 * international/uni-lowercase.el:
3420 * international/uni-mirrored.el:
3421 * international/uni-name.el:
3422 * international/uni-numeric.el:
3423 * international/uni-old-name.el:
3424 * international/uni-titlecase.el:
3425 * international/uni-uppercase.el: Regenerate.
3426
3427 * loadup.el: Load international/charprop.el before
3428 international/characters.
3429
e14b388a
CY
34302011-07-07 Chong Yidong <cyd@stupidchicken.com>
3431
3432 * window.el (next-buffer, previous-buffer): Signal an error if
3433 called from a minibuffer window.
3434
3435 * bindings.el: Revert 2011-07-04 change.
3436
354cf0ba
RS
34372011-07-06 Richard Stallman <rms@gnu.org>
3438
3439 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
3440 (rmail-mime-insert-bulk, rmail-mime-insert-text):
3441 Treat markers like ints.
3442 (rmail-mime-entity): Doc fix.
3443
a48868a7
LMI
34442011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3445
4906cd3d
LMI
3446 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
3447 defcustom again for backwards compatibility.
3448
e0457abe
LMI
3449 * simple.el (shell-command-on-region): Fill.
3450
d67f7e1f
LMI
3451 * dired-aux.el (dired-kill-line): Add a doc string.
3452
fe204702
LMI
3453 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
3454 to "\\sw\\|\\s_" (bug#358).
3455
a48868a7
LMI
3456 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
3457 (dired-unmark-backward): Ditto.
3458 (dired-flag-backup-files): Ditto.
3459
3460 * dired-x.el (dired-mark-sexp): Ditto.
3461
aa8a705c
RS
34622011-07-06 Richard Stallman <rms@gnu.org>
3463
3464 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
3465 (rmail-mime-entity): New arg TRUNCATED.
3466 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
3467 New functions.
3468 (rmail-mime-save): Warn if entity is truncated.
3469 (rmail-mime-toggle-hidden): Likewise, for showing.
3470 (rmail-mime-process-multipart): Record when an entity is truncated.
3471
a9a936b9
RS
3472 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
3473 if ENTITY is a string.
3474
1f2b92cb
LMI
34752011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3476
f4f73198 3477 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
3478 of faces when `M-C-x'-ing their definitions (bug#8378).
3479 Also clean up the code slightly.
f4f73198 3480
12b16734
LMI
3481 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
3482 because that makes the colours go away.
3483
f0691d22
LMI
3484 * mail/sendmail.el (send-mail-function): Change the default to
3485 `sendmail-query-once'.
9e87df06 3486 (sendmail-query-once): Add an autoload cookie.
f0691d22 3487
1f2b92cb
LMI
3488 * net/network-stream.el (network-stream-open-starttls): Try using
3489 a plain connection even if the server offered STARTTLS, and we
3490 kinda wanted to use it, if Emacs doesn't have any STARTTLS
3491 capability. This should make smtpmail.el work in slightly more
3492 configurations.
3493
1cdd2a1b
MA
34942011-07-06 Michael Albinus <michael.albinus@gmx.de>
3495
3496 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
3497 New defun.
3498 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
3499
fbcc67e2
MM
35002011-07-06 Michael R. Mauger <mmaug@yahoo.com>
3501
3502 * progmodes/sql.el: Version 3.0
0757af94 3503 (sql-product-alist): Add product :completion-object,
fbcc67e2 3504 :completion-column, and :statement attributes.
0757af94 3505 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 3506 (sql-mode-syntax-table): Mark all punctuation.
0757af94 3507 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
3508 ansi keywords.
3509 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 3510 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
3511 (sql-oracle-show-reserved-words): New function for development.
3512 (sql-product-font-lock): Simplify for source code buffers.
3513 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
3514 New functions.
3515 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
3516 (sql-mode-map): Add statement movement functions.
3517 (sql-ansi-statement-starters, sql-oracle-statement-starters):
3518 New variable.
fbcc67e2
MM
3519 (sql-statement-regexp, sql-beginning-of-statement)
3520 (sql-end-of-statement, sql-signum): New functions.
0757af94 3521 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
3522 (sql-show-sqli-buffer): Bug fix.
3523 (sql-interactive-mode): Store connection data as buffer local.
0757af94 3524 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
3525 with sql-interactive-mode.
3526 (sql-save-connection): Save buffer local settings.
0757af94 3527 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
3528 (sql-product-interactive): Bug fix.
3529 (sql-preoutput-hold): New variable.
3530 (sql-interactive-remove-continuation-prompt): Bug fixes.
3531 (sql-debug-redirect): New variable.
3532 (sql-str-literal): New function.
3533 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 3534 Redesign.
fbcc67e2
MM
3535 (sql-oracle-save-settings, sql-oracle-restore-settings)
3536 (sql-oracle-list-all, sql-oracle-list-table): New functions.
3537 (sql-completion-object, sql-completion-column)
3538 (sql-completion-sqlbuf): New variables.
3539 (sql-build-completions-1, sql-build-completions)
3540 (sql-try-completion): New functions.
3541 (sql-read-table-name): Use them.
3542 (sql-contains-names): New buffer local variable.
3543 (sql-list-all, sql-list-table): Use it.
3544 (sql-oracle-completion-types): New variable.
3545 (sql-oracle-completion-object, sql-sqlite-completion-object)
3546 (sql-postgres-completion-object): New functions.
3547
d4eaeab1
GM
35482011-07-06 Glenn Morris <rgm@gnu.org>
3549
3550 * window.el (pop-to-buffer): Doc fix.
3551
322b7dab 35522011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
3553
3554 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
3555
322b7dab 35562011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 3557
322b7dab 3558 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 3559
322b7dab 3560 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 3561
605dd5bf
CY
35622011-07-05 Chong Yidong <cyd@stupidchicken.com>
3563
3564 * button.el (button): Inherit from link face. Suggested by Dan
3565 Nicolaescu.
3566
7dbfa719
SM
35672011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
3568
3db614b0
SM
3569 * progmodes/gdb-mi.el: Fit in 80 columns.
3570 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
3571 switch-to-buffer.
3572
7dbfa719
SM
3573 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
3574 if imenu is simply not configured (bug#8941).
3575
919d884a
KM
35762011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
3577
3578 * allout.el (allout-post-undo-hook): New allout outline-change
3579 event hook to signal undo activity.
3580 (allout-post-command-business): Run allout-post-undo-hook if an
3581 undo just occurred.
7dbfa719
SM
3582 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
3583 * allout-widgets.el (allout-widgets-after-undo-function):
3584 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
3585 in the vicinity of an undo.
3586 (allout-widgets-mode): Include allout-widgets-after-undo-function
3587 on the new allout-post-undo-hook.
3588
450a0f09
SM
35892011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
3590
3591 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
3592 Let define-derived-mode define it.
3593 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
3594 cycles of abbrev-table inheritance (bug#8998).
3595
2de69e00
RW
35962011-07-05 Roland Winkler <winkler@gnu.org>
3597
3598 * textmodes/bibtex.el: Add support for biblatex.
3599 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
3600 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
3601 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
3602 (bibtex-entry-alist, bibtex-field-alist): New variables.
3603 (bibtex-entry-field-alist): Obsolete alias for
3604 bibtex-BibTeX-entry-alist.
3605 (bibtex-entry-alist, bibtex-field-alist): New widgets.
3606 (bibtex-set-dialect): New command.
3607 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
3608 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
3609 Bind via bibtex-set-dialect.
2de69e00
RW
3610 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
3611 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
3612 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
3613 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
3614 Define via bibtex-set-dialect.
450a0f09
SM
3615 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
3616 Obey bibtex-no-opt-remove-re.
2de69e00
RW
3617 (bibtex-vec-push, bibtex-vec-incr): New functions.
3618 (bibtex-format-entry, bibtex-field-list)
3619 (bibtex-print-help-message, bibtex-validate)
3620 (bibtex-search-entries): Use new format of bibtex-entry-alist.
3621
2dcdbdd9
SM
36222011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
3623
3624 * progmodes/compile.el (compilation-goto-locus):
3625 * net/tramp-cmds.el (tramp-append-tramp-buffers):
3626 * bs.el (bs-cycle-next, bs-cycle-previous):
3627 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
3628 * bindings.el (mode-line-other-buffer):
3629 * autoinsert.el (auto-insert):
3630 * arc-mode.el (archive-extract):
3631 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
3632
b27640fe
JB
36332011-07-05 Juanma Barranquero <lekktu@gmail.com>
3634
3635 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
3636 Fix check of `emacs-lock-unlockable-modes'.
3637 Coerce true values of `emacs-lock--try-unlocking' to t.
3638
53bbe3ad
JB
36392011-07-05 Juanma Barranquero <lekktu@gmail.com>
3640
3641 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
3642 * emacs-lock.el: New file.
3643
1d3cdbc7
JD
36442011-07-05 Julien Danjou <julien@danjou.info>
3645
3646 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
3647 than `boundp' to check if face is set.
3648
9173deec
JB
36492011-07-05 Juanma Barranquero <lekktu@gmail.com>
3650
3651 * register.el (registerv-make):
3652 * window.el (window-min-height): Fix typos in docstrings.
3653
869795d6
JD
36542011-07-05 Jan Djärv <jan.h.d@swipnet.se>
3655
9173deec 3656 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
3657 Update doc string.
3658
b768cdcd
JB
36592011-07-04 Juanma Barranquero <lekktu@gmail.com>
3660
3661 * server.el (server-execute): Catch quit and call
3662 `server-return-error' to pass the error back to emacsclient and
3663 close the connection (bug#8942).
3664
13aa217b
KM
36652011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
3666
3667 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
3668 insecure exception for current topic. Also note that auto-saves
3669 are handled differently.
3670
3671 (allout-auto-save-temporarily-disabled), (allout-just-did-undo):
3672 State variables for tracking auto-save inhibition situation.
3673
3674 (allout-write-contents-hook-handler): Rename from
3675 'allout-write-file-hook-handler', and describe how it depends on
3676 write-contents-functions sensitivity to non-nil value to prevent
3677 file write.
3678
3679 (allout-auto-save-hook-handler): Remove. auto-save does not check
3680 this in individual buffers, only in the starting buffer, so this
3681 is not the right way for us to inhibit auto-save in a buffer
3682 according to its condition.
3683
3684 (allout-mode): Use new allout-write-contents-hook-handler, and
3685 only with write-contents-functions. Remove auto-save provisions -
3686 they're implemented elsewhere.
3687
3688 (allout-before-change-handler): If undo is in progress, note that
3689 for attention of allout-post-command-business.
3690
3691 (allout-post-command-business): If the command we're following was
3692 an undo, check for change in the status of encrypted items and
3693 adjust auto-save inhibitions accordingly.
3694
3695 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
3696 according to whether there are or aren't any plain-text topics
3697 pending encryption.
3698
2dcdbdd9
SM
3699 (allout-inhibit-auto-save-info-for-decryption):
3700 Adjust buffer-saved-size and some allout state to inhibit auto-saves if
13aa217b
KM
3701 there are plain-text topics pending encryption.
3702
3703 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
3704 buffer-saved-size and some allout state to not inhibit auto-saves
3705 if there are no longer any plain-text topics pending encryption.
3706
0757af94
SM
3707 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
3708 No longer provide for exemption of the current topic.
13aa217b 3709
ac89b32c
JL
37102011-07-04 Juri Linkov <juri@jurta.org>
3711
3712 Add 7z operations to delete and save changed members (bug#8968).
3713 * arc-mode.el (archive-7z-expunge, archive-7z-update):
3714 New defcustoms.
3715 (archive-7z-write-file-member): New function.
3716 (archive-7z-summarize): Fix the number of dashes in the
3717 listing output.
3718
8fa39615
SM
37192011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
3720
3721 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
3722 (bug#8958).
3723
2f11b3f1
CY
37242011-07-04 Chong Yidong <cyd@stupidchicken.com>
3725
d66fef2b
CY
3726 * bindings.el: Ignore next-buffer and previous-buffer in
3727 minibuffer-local-map.
3728
2f11b3f1
CY
3729 * font-lock.el (font-lock-builtin-face): Change light background
3730 color to dark slate blue (Bug#6693).
3731
f932a347
WD
37322011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
3733
3734 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
3735
c8af70e1
SM
37362011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
3737
3738 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
3739 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
3740 Add switch-to-buffer.
3741
f158badc
LMI
37422011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
3743
3744 * isearch.el (isearch-search-fun-function): Clarify further the
3745 meaning of the function returned.
3746
6d95bd46
MA
37472011-07-04 Michael Albinus <michael.albinus@gmx.de>
3748
3749 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
3750
3751 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
3752 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
3753 Use it.
3754 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
3755 `tramp-default-remote-path' does not exist.
3756 (tramp-send-command-and-read): New optional argument NOERROR.
3757 (tramp-open-connection-setup-interactive-shell)
3758 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
3759 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
3760 (tramp-process-sentinel): Flush also process' connection property.
3761 (tramp-sh-handle-start-file-process): Do not set process
3762 sentinel. It is done now ...
3763 (tramp-maybe-open-connection): ... here. (Bug#8929)
3764
909e6b67
MK
37652011-07-04 MON KEY <monkey@sandpframing.com>
3766
3767 * play/animate.el (animate-string): Doc fixes and allow changing
3768 the buffer name (bug#5417).
3769
37702011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
3771
c8af70e1 3772 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 3773
f34755dc
PE
37742011-07-04 Paul Eggert <eggert@cs.ucla.edu>
3775
396cec72
PE
3776 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
3777 This is simpler and helps future-proof the code.
3778 (timer-until): Use time-subtract and float-time.
08235028 3779 (timer--time-less-p): Use time-less-p.
f34755dc 3780
56e6cc31
JB
37812011-07-04 Juanma Barranquero <lekktu@gmail.com>
3782
3abb79e5
JB
3783 * type-break.el (timep): Use the value of `float-time' to avoid a
3784 byte-compiler warning.
3785
56e6cc31
JB
3786 * server.el (server-eval-and-print): Return any result, even nil.
3787
7b9430b4
PE
37882011-07-03 Paul Eggert <eggert@cs.ucla.edu>
3789
3790 * type-break.el: Accept time formats that the builtins accept.
3791 (timep, type-break-time-difference): Accept any format that
3792 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
3793 This is simpler and helps future-proof the code.
3794 (type-break-time-difference): Round rather than ignoring
3795 subseconds components.
3796
3034e9e7
LMI
37972011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3798
3799 * info.el (Info-apropos-matches): Make non-interactive, since it
3800 doesn't seem to do anything useful as a command (bug#8829).
3801
1485f4c0
CY
38022011-07-03 Chong Yidong <cyd@stupidchicken.com>
3803
3804 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 3805 Move from faces.el.
1485f4c0
CY
3806 (frame-default-terminal-background): New function.
3807
3808 * custom.el (custom-push-theme): Don't record faces in `changed'
3809 theme; this doesn't work correctly for per-frame face settings.
3810 (disable-theme): Use face-set-after-frame-default to reset faces.
3811 (custom--frame-color-default): New function.
3812
9fa3dd45
LMI
38132011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3814
c8af70e1 3815 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
3816 (bug#8769).
3817
6cbbc20c
KR
38182011-03-29 Kevin Ryde <user42@zip.com.au>
3819
3820 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3821 `perl-Test2' extend to match possible "fail #N" rep count
3822 (bug#8377).
3823
c7f98048
LMI
38242011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3825
65676592
LMI
3826 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
3827 `smtpmail-via-smtp' now returns the error instead of nil.
3828
c7f98048
LMI
3829 * isearch.el (isearch-search-fun-function): Clarify the doc string
3830 (bug#8101).
3831
56e6cc31 38322011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
3833
3834 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
3835 unnecessary spaces (bug#8987).
3836
2b216704
LMI
38372011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3838
3839 * net/network-stream.el (open-network-stream): Use the
3840 :end-of-capability command thoughout.
3841
38422011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
3843
3844 * net/network-stream.el (open-network-stream): Add the
3845 :end-of-capability command parameter, used by pop3.el.
3846
36adf6ce
LMI
38472011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3848
1ca0da0e
LMI
3849 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
3850
fc00f69c
LMI
3851 * fringe.el (fringe-query-style): Remove redundant text " (type ?
3852 for list)" (bug#6475).
3853
28fd8759
LMI
3854 * files.el (file-expand-wildcards): Ignore non-readable
3855 sub-directories while trying to find matches instead of signalling
3856 an error (bug#6297).
3857
0dd8b6da
LMI
3858 * man.el (Man-reference-regexp): Allow matching possible
3859 word-wrapped references (bug#6289).
3860
ce1438d6
LMI
3861 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
3862 for consistency with the other vc buffers (bug#6197).
3863 (vc-checkin): Ditto.
3864
3865 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
3866
36adf6ce
LMI
3867 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
3868
e83cc1f7
LMI
38692011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
3870
8a20ca4c
LMI
3871 * custom.el (defcustom): Clarify that :set is only used in the
3872 Customize user interface (bug#6089).
3873
83319045
LMI
3874 * progmodes/flymake.el (flymake-mode): If the buffer isn't
3875 associated with a file, refuse to run instead of erroring out
3876 (bug#6084).
3877
a8392169
LMI
3878 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
3879 the doc string, since it appears that using `fill-column' always
3880 controls the width (bug#7845).
3881
e83cc1f7
LMI
3882 * simple.el (shell-command-on-region): Say where the error output
3883 went if `shell-command-default-error-buffer' is set (bug#6857).
3884
e47ca23b
KM
38852011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
3886
3887 * allout.el (allout-yank-processing): Adjust cursor position for
3888 backwards-deleted space.
3889
3890 (allout-rebullet-heading): Register changes with
3891 allout-exposure-changed-hook, so the modified topic is properly
3892 decorated.
3893
5cf56143
LMI
38942011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
3895
08549772
LMI
3896 * minibuffer.el (completion-in-region): Document PREDICATE
3897 (bug#7136).
3898
48e96771
LMI
3899 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
3900 of keyword/argument pairs (bug#6904).
3901
c8af70e1
SM
3902 * replace.el (multi-occur):
3903 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 3904
e17d05e2
LMI
39052011-07-02 Drew Adams <drew.adams@oracle.com>
3906
3907 * dired.el (dired-mark-if): Make the message about whether it's
3908 marking or unmarking clearer (bug#8523).
3909
063b0e45
LMI
39102011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
3911
3912 * disp-table.el (display-table-print-array): New function.
3913 (describe-display-table): Use it to print the vectors more pretty
3914 (Bug#8859).
3915
28545e04
MR
39162011-07-02 Martin Rudalics <rudalics@gmx.at>
3917
3918 * window.el (window-state-get-1): Don't assign clone numbers.
3919 Add clone-of item to list of window parameters.
3920 (window-state-put-2): Don't process clone numbers.
3921 (display-buffer-alist): Fix doc-string.
3922
3349e122
SM
39232011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
3924
3925 * subr.el (remq): Don't allocate if it's not needed.
3926 (keymap--menu-item-binding, keymap--menu-item-with-binding)
3927 (keymap--merge-bindings): New functions.
3928 (keymap-canonicalize): Use them to refine the canonicalization.
3929 * minibuffer.el (minibuffer-local-completion-map)
3930 (minibuffer-local-must-match-map): Move initialization from C.
3931 (minibuffer-local-filename-completion-map): Move initialization from C;
3932 don't inherit from anything here.
3933 (minibuffer-local-filename-must-match-map): Make obsolete.
3934 (completing-read-default): Use make-composed-keymap to combine
3935 minibuffer-local-filename-completion-map with either
3936 minibuffer-local-must-match-map or
3937 minibuffer-local-filename-completion-map.
3938
d224ac83
GM
39392011-07-01 Glenn Morris <rgm@gnu.org>
3940
3de63bf8
GM
3941 * type-break.el (type-break-time-sum): Use dolist.
3942
d224ac83
GM
3943 * textmodes/flyspell.el (flyspell-word-search-backward):
3944 Replace CL function.
3945
1a1e3f32
SM
39462011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
3947
fe3f64d5
SM
3948 * mouse.el (mouse--strip-first-event): New function.
3949 (function-key-map): Use it to map fringe clicks to normal clicks
3950 by default.
3951
eb604e34
SM
3952 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
3953 (vc-bzr-revision-completion-table): Add support for annotate and date.
3954
1a1e3f32
SM
3955 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
3956 inherit from parent.
3957
5bd35902
LMI
39582011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
3959
ace6c69c 3960 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 3961 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 3962
191e2bed
LMI
3963 * dired.el (dired-mode): Fix up the doc string as suggested by
3964 Drew Adams (bug#8817).
3965
5bd35902
LMI
3966 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
3967 cookie, since the manual says that it should be possible to add
3968 this function to `find-file-hook' (bug#8709).
3969
eee8207a
TZ
39702011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
3971
3972 * progmodes/cfengine.el: Moved all cfengine3.el functionality
3973 here. Noted Ted Zlatanov as the maintainer.
3974 (cfengine-common-settings, cfengine-common-syntax): New functions
3975 to set up common things between `cfengine-mode' and
3976 `cfengine3-mode'.
3977 (cfengine3-mode): New mode.
3978 (cfengine3-defuns cfengine3-defuns-regex
3979 (cfengine3-class-selector-regex cfengine3-category-regex)
3980 (cfengine3-vartypes cfengine3-font-lock-keywords)
3981 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 3982 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 3983
36b148cf
MA
39842011-07-01 Michael Albinus <michael.albinus@gmx.de>
3985
3986 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
3987
3988 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
3989
0bf4ba9a
MR
39902011-07-01 Martin Rudalics <rudalics@gmx.at>
3991
3992 * window.el (same-window-buffer-names, same-window-regexps)
3993 (same-window-p, special-display-frame-alist)
3994 (special-display-popup-frame, special-display-function)
3995 (special-display-buffer-names, special-display-regexps)
3996 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
3997 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
3998 (split-window-preferred-function, split-height-threshold)
3999 (split-width-threshold, even-window-heights)
4000 (display-buffer-mark-dedicated, window-splittable-p)
4001 (split-window-sensibly, window-safely-shrinkable-p):
4002 Un-obsolete.
4003 (display-buffer): Don't spread args with function specifier
4004 because special-display-popup-frame won't like it.
4005
35837f51
PE
40062011-07-01 Paul Eggert <eggert@cs.ucla.edu>
4007
d0672f86
PE
4008 Time-stamp simplifications and fixes.
4009 These improve accuracy slightly, and future-proof the code
4010 against some potential changes to current-time format.
4011
b9444d97
PE
4012 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
4013 by using time-since and float-time.
4014
0ef923dc
PE
4015 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
4016 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
4017 + NNN microseconds".
4018
2f81380d
PE
4019 * type-break.el (type-break-time-sum): Rewrite using time-add.
4020
845b5c3e
PE
4021 * play/hanoi.el (hanoi-current-time-float): Remove.
4022 All uses replaced by float-time.
4023
ee6f1be0
PE
4024 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
4025 This yields a more-accurate answer.
4026 (rng-time-to-float): Remove; no longer needed.
4027
fe955043
PE
4028 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
4029
5777162a
PE
4030 * calendar/timeclock.el (timeclock-seconds-to-time):
4031 Defalias to seconds-to-time, since they're the same thing.
4032
3103f8b6 4033 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 4034 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
4035 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
4036
0e61a35f
SM
40372011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4038
4039 * window.el (bury-buffer): Don't iconify the only frame.
4040 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
4041 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
4042
ddd63a1e
CY
40432011-07-01 Chong Yidong <cyd@stupidchicken.com>
4044
0e61a35f
SM
4045 * eshell/em-smart.el (eshell-smart-display-navigate-list):
4046 Add mouse-yank-primary.
ddd63a1e 4047
055f4923
TZ
40482011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
4049
4050 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
4051
6a2fb145
SM
40522011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4053
4054 * emacs-lisp/find-func.el (find-library--load-name): New fun.
4055 (find-library-name): Use it to find relative load names when provided
4056 absolute file name (bug#8803).
4057
fd4983f2
LMI
40582011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4059
887d14ad
LMI
4060 * textmodes/flyspell.el (flyspell-word): Consider words that
4061 differ only in case as potential doublons (bug#5687).
4062
c53dc7fc
LMI
4063 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
4064 Remove two rather uninteresting debugging-like messages to make
4065 debbugs.el more silent.
4066
fd4983f2
LMI
4067 * comint.el (comint-password-prompt-regexp): Accept "Response" as
4068 a password-like phrase.
4069
b14c0c55
AM
40702011-06-30 Mastake YAMATO <yamato@redhat.com>
4071
4072 * progmodes/cc-guess.el: New file.
4073
6a2fb145 4074 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
4075
4076 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
4077 derived from `c-basic-common-init'.
4078
4079 * progmodes/cc-mode.el (top-level): Require cc-guess.
4080 (c-basic-common-init): Use `cc-choose-style-for-mode'.
4081
1fa280a3
LM
40822011-06-30 Lawrence Mitchell <wence@gmx.li>
4083
4084 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
4085
e6597158
AM
40862011-06-30 Alan Mackenzie <acm@muc.de>
4087
1fa280a3
LM
4088 * progmodes/cc-engine.el (c-guess-continued-construct):
4089 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
4090 lock is disabled. Name this case as "CASE G".
4091
68ba37fb
KM
40922011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
4093
4094 * allout.el (allout-yank-processing): Fix injection of extra space
4095 between bullet and non-whitespace character in first topic when
4096 pasting, ensuring that the actual spacing in the pasted topic
4097 following the bullet char is preserved. This extra space was
4098 causing pasted encrypted topics to get a decrypted status even
4099 when the content was actually still encrypted. Now the decryption
4100 status from before the paste is preserved.
4101
4102 (allout-flag-region): Set all allout overlays so they evaporate
4103 when reduced to zero length (evanescent), to prevent overlay
4104 leakage.
4105
887a0b34
GM
41062011-06-30 Glenn Morris <rgm@gnu.org>
4107
94b9acce
GM
4108 * w32-fns.el (w32-charset-info-alist): Declare.
4109
1d9b46d4
GM
4110 * find-dired.el (find-grep-options): Simplify.
4111
cc232200
GM
4112 * term/ns-win.el (ns-set-resource): Declare.
4113
28e77c46
GM
4114 * ses.el (row, col): Declare dynamic variables honestly.
4115
887a0b34
GM
4116 * textmodes/reftex-parse.el (index-tags): Declare.
4117
658d8eb8
CY
41182011-06-30 Chong Yidong <cyd@stupidchicken.com>
4119
4120 * cus-edit.el (customize-push-and-save): New function.
4121
4122 * files.el (hack-local-variables-confirm): Use it.
4123
1fa280a3
LM
4124 * custom.el (load-theme): New arg NO-CONFIRM.
4125 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
4126 (custom-enabled-themes): Doc fix.
4127
4128 * cus-theme.el (customize-create-theme)
4129 (custom-theme-merge-theme): Callers to load-theme changed.
4130
bb617717
LMI
41312011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4132
d61bdd5d
LMI
4133 * thingatpt.el (thing-at-point-short-url-regexp): Require that
4134 short URLs have at least one dot in them (bug #7614).
4135
bb617717
LMI
4136 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
4137 nil, because using a pty is apparently too slow (bug #895).
4138
2f31f37a
LMI
41392011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4140
4141 * mail/sendmail.el (sendmail-query-once): New function.
4142 (sendmail-query-once-function): New variable.
4143
3076b24e
GM
41442011-06-29 Glenn Morris <rgm@gnu.org>
4145
faf2a174
GM
4146 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
4147
3076b24e
GM
4148 * ses.el (top-level): Require cl when compiling.
4149 (ses-set-localvars): Fix error statement.
4150 Call it at compile time to silence a storm of warnings.
4151
5386012d
MR
41522011-06-29 Martin Rudalics <rudalics@gmx.at>
4153
4154 * window.el (normalize-live-buffer): Rename to
4155 window-normalize-buffer.
4156 (normalize-live-frame): Rename to window-normalize-frame.
4157 (normalize-any-window): Rename to window-normalize-any-window.
4158 (normalize-live-window): Rename to window-normalize-live-window.
4159 (make-window-atom): Rename to window-make-atom.
4160 (window-resize-reset): Rename to window--resize-reset.
4161 (window-resize-reset-1): Rename to window--resize-reset-1.
4162 (resize-mini-window): Rename to window--resize-mini-window.
4163 (resize-subwindows-skip-p): Rename to
4164 window--resize-subwindows-skip-p.
4165 (resize-subwindows-normal): Rename to
4166 window--resize-subwindows-normal.
4167 (resize-subwindows): Rename to window--resize-subwindows.
4168 (resize-other-windows): Rename to window--resize-siblings.
4169 (resize-this-window): Rename to window--resize-this-window.
4170 (resize-root-window): Rename to window--resize-root-window.
4171 (resize-root-window-vertically): Rename to
4172 window--resize-root-window-vertically.
4173 (normalize-buffer-to-display): Rename to
4174 window-normalize-buffer-to-display.
4175 (normalize-buffer-to-switch-to): Rename to
4176 window-normalize-buffer-to-switch-to.
4177 Correspondingly update all callers of the functions listed
4178 above.
4179 (display-buffer-alist, display-buffer-normalize-arguments)
4180 (display-buffer-normalize-options, display-buffer)
4181 (display-buffer-alist-set): Use "function" instead of
4182 "fun-with-args".
4183
1176868d
CY
41842011-06-28 Chong Yidong <cyd@stupidchicken.com>
4185
4186 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
4187 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
4188 debbugs.gnu.org. Mention acknowledgment email.
4189
20a7a65f
LMI
41902011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
4191
4192 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
4193 buffer multibyteness, since it shouldn't matter.
4194
5f45cca5
MR
41952011-06-28 Martin Rudalics <rudalics@gmx.at>
4196
4197 * window.el (display-buffer-in-side-window): Handle dedicated
4198 windows as in display-buffer-reuse-window.
4199 (display-buffer-normalize-alist): Use value of override
4200 specifier.
4201 (display-buffer-normalize-specifiers): Use value of
4202 other-window-means-other-frame specifier.
4203 (display-buffer-alist): Rewrite some texts in widgets.
4204 (display-buffer): Spread arguments when calling function
4205 specified by fun-with-args.
4206
ad85fe1f
DD
42072011-06-28 Deniz Dogan <deniz@dogan.se>
4208
1fa280a3
LM
4209 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
4210 Unnest `let'.
da68c4c8 4211
ad85fe1f
DD
4212 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
4213 selectors (Bug#5732).
ec49bd31 4214 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 4215
a08cc025
JA
42162011-06-27 Jari Aalto <jari.aalto@cante.net>
4217
4218 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
4219 (eshell-ls-date-format): New defcustom.
4220 (eshell-ls-file): Use it.
4221
e2b551c5
SM
42222011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
4223
4224 * help-fns.el (describe-variable): Fix message for terminal-local vars.
4225
8982b231
KY
42262011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
4227
4228 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
4229 (ange-ftp-make-tmp-name): New arg.
4230 (ange-ftp-file-local-copy): Use it.
4231
36c9fa27
J
42322011-06-27 Jambunathan K <kjambunathan@gmail.com>
4233
4234 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
4235 no-conversion (Bug#8870).
4236
d68443dc
MR
42372011-06-27 Martin Rudalics <rudalics@gmx.at>
4238
4239 * window.el (window-right, window-left, window-child)
4240 (window-child-count, window-last-child)
4241 (window-iso-combination-p, walk-window-tree-1)
4242 (window-atom-check-1, window-tree-1, delete-window)
4243 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
4244 new naming conventions - window-vchild, window-hchild,
4245 window-next and window-prev are now called window-top-child,
4246 window-left-child, window-next-sibling and window-prev-sibling
4247 respectively.
d615d6d2
MR
4248 (resize-window-reset): Rename to window-resize-reset.
4249 (resize-window-reset-1): Rename to window-resize-reset-1.
4250 (resize-window): Rename to window-resize.
4251 (window-min-height, window-min-width)
4252 (resize-mini-window, resize-this-window, resize-root-window)
4253 (resize-root-window-vertically, adjust-window-trailing-edge)
4254 (enlarge-window, shrink-window, maximize-window)
4255 (minimize-window, delete-window, quit-restore-window)
4256 (split-window, balance-windows, balance-windows-area-adjust)
4257 (balance-windows-area, window-state-put-2)
4258 (display-buffer-even-window-sizes, display-buffer-set-height)
4259 (display-buffer-set-width, set-window-text-height)
4260 (fit-window-to-buffer): Rename all "resize-window" prefixed
4261 calls to use the "window-resize" prefix convention.
4262 (display-buffer-alist): Fix symbol for label specifier.
4263 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
4264 corresponding specifier.
4265 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 4266
b6458526
VB
42672011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
4268
4269 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
4270 convention.
4271 (ses-call-printer): Does not pass an empty string to formatter when the
4272 cell is empty to keep from barking printer Calc math-format-value.
4273
d31fd9ac
RS
42742011-06-27 Richard Stallman <rms@gnu.org>
4275
43d5bf84
RS
4276 * battery.el (battery-mode-line-limit): New variable.
4277 (battery-update): Handle it.
4278
d31fd9ac
RS
4279 * mail/rmailmm.el (rmail-mime-process-multipart):
4280 Handle truncated messages.
4281
819a6054
GM
42822011-06-27 Glenn Morris <rgm@gnu.org>
4283
4284 * progmodes/flymake.el (flymake-err-line-patterns):
4285 Allow for column numbers in the ant/javac pattern. (Bug#8866)
4286
cedc73f2
VB
42872011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
4288
819a6054 4289 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
4290 (ses--clean-!, ses--clean-_): New functions.
4291 (ses-range): Add configurability of readout order, and conversion
4292 to Calc vector.
4293
5e5d49b6
VB
4294 * ses.el (ses-repair-cell-reference-all): New function.
4295 (ses-cell-symbol): Set macro as safe, so that it can be used in
4296 formulas.
4297
56e6cc31 4298 * ses.el: Update cycle detection algorithm.
90ca8b49 4299 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 4300 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
4301 (ses-set-localvars): New function.
4302 (ses-make-cell): Add property-list as a cell element.
4303 (ses-cell-property-get-fun, ses-cell-property-get)
4304 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
4305 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
4306 New functions.
90ca8b49
VB
4307 (ses-cell-property-set, ses-cell-property-pop)
4308 (ses-cell-property-get-handle): New macro.
4309 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
4310 New aliases, used for code readability.
4311 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
4312 cycle detection.
4313 (ses-self-reference-early-detection): New defcustom.
4314 (ses-formula-references): Robustify against self-refering cells.
4315 (ses-mode): Use ses-set-localvars.
4316 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
4317 before lauching the update processing.
4318 (ses-initialize-Dijkstra-attempt): New function.
4319 (ses-recalculate-cell): Update for cycle detection based on
4320 Dijkstra algorithm.
4321
2bb63e81
VB
4322 * ses.el: Fix commenting and indenting convention.
4323
c9d29fb8
SM
43242011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
4325
4326 * bs.el (bs-cycle-next): Complete last change.
4327
d8e4b68b
JB
43282011-06-27 Drew Adams <drew.adams@oracle.com>
4329
4330 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
4331
40098786
LMI
43322011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4333
c9d29fb8
SM
4334 * net/network-stream.el (network-stream-open-starttls):
4335 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
4336 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
4337
40098786
LMI
4338 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
4339 to binary to possibly avoid line encoding issues on Windows (among
4340 other things).
4341
468d09d4
LMI
43422011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4343
4344 * net/network-stream.el (open-network-stream): Return an :error
4345 saying what the problem was, if possible.
4346
4347 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
4348 server.
4349
4350 * net/network-stream.el (network-stream-open-starttls): If we
4351 wanted to use STARTTLS, and the server offered it, but we weren't
4352 able to because we had no STARTTLS support, then close the connection.
4353 (open-network-stream): Return an :error element, if present.
4354
16f07dd7
CY
43552011-06-26 Chong Yidong <cyd@stupidchicken.com>
4356
88821ca0
CY
4357 * hl-line.el (hl-line-sticky-flag): Doc fix.
4358 (global-hl-line-sticky-flag): New option (Bug#8323).
4359 (global-hl-line-highlight): Obey it.
4360
16f07dd7
CY
4361 * vc/vc.el (vc-revert-show-diff): Default to t.
4362
6b5ccddf
KM
43632011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
4364
c9d29fb8
SM
4365 * allout-widgets.el (allout-widgets-post-command-business):
4366 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
4367 undecorated when an isearch is continued past, and isearch
4368 automatically collapses them. This leads to "widget leaks", where
4369 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
4370 hidden widgets can slow down cursor travel, substantially.
4371 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
4372 so we're doing without this nicety.
4373
4374 (allout-widgets-tally-string): Don't try to do a hash-table-count
4375 of allout-widgets-tally when it's nil. This eliminates spurious "Error
4376 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
4377 *Messages* when allout-widgets-maintain-tally is t.
4378
355f2e07
MR
43792011-06-26 Martin Rudalics <rudalics@gmx.at>
4380
4381 * window.el (display-buffer-normalize-argument): Rename to
4382 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
4383 LABEL argument. Respect special-display-function when popping up
4384 a new frame. Fix code searching for a window showing the buffer
4385 on another frame.
c9d29fb8
SM
4386 (display-buffer-normalize-specifiers):
4387 Call display-buffer-normalize-arguments.
355f2e07
MR
4388 (display-buffer-in-window): Don't undedicate the window if its
4389 buffer remains the same.
4390 Reported by Drew Adams <drew.adams@oracle.com>.
4391 (display-buffer-alist): Add choice for same-window macro
4392 specfier.
4393 (display-buffer): Mention special meaning of LABEL argument in
4394 doc-string. Fix quoting. Don't pop up a new frame even as
4395 fallback.
4396
7ca8fc42
JB
43972011-06-26 Juanma Barranquero <lekktu@gmail.com>
4398
4399 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
4400 avoid deleting the current window in some cases (bug#8911).
4401
bc312254
AS
44022011-06-26 Andreas Schwab <schwab@linux-m68k.org>
4403
4404 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
4405 (Bug#8934)
4406
2db18f3f
LMI
44072011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4408
c9d29fb8
SM
4409 * net/network-stream.el (network-stream-open-starttls):
4410 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
4411 (network-stream-open-tls): Ditto.
4412
6302e0d3
LL
44132011-06-26 Leo Liu <sdl.web@gmail.com>
4414
4415 * register.el (registerv): New struct.
4416 (registerv-make): New function.
c9d29fb8
SM
4417 (jump-to-register, describe-register-1, insert-register):
4418 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
4419 struct. (Bug#8415)
4420
5fdd4046
CY
44212011-06-26 Chong Yidong <cyd@stupidchicken.com>
4422
2afef60a
CY
4423 * vc/vc.el (vc-revert-show-diff): New defcustom.
4424 (vc-diff-internal): New arg specifying diff buffer.
4425 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
4426 reuse an existing *vc-diff* buffer (Bug#8927).
4427
5fdd4046
CY
4428 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
4429
e93db24a
GM
44302011-06-26 Glenn Morris <rgm@gnu.org>
4431
4432 * progmodes/f90.el (f90-critical-indent): New option.
4433 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
4434 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
4435 (f90-mode): Doc fix.
4436 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
4437 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
4438 (f90-beginning-of-block, f90-next-block, f90-indent-region)
4439 (f90-match-end): Handle block, critical.
4440
eefff499
GM
44412011-06-25 Glenn Morris <rgm@gnu.org>
4442
f6ba4cc9
GM
4443 * calendar/diary-lib.el (diary-included-files): Doc fix.
4444 (diary-include-files): New function, extracted from
4445 diary-include-other-diary-files and diary-mark-included-diary-files.
4446 (diary-include-other-diary-files, diary-mark-included-diary-files):
4447 Just call diary-include-files.
4448 (diary-mark-entries): Reset diary-included-files on first call.
4449
16712304
GM
4450 * calendar/diary-lib.el (diary-mark-entries)
4451 (diary-mark-included-diary-files):
4452 Visit included diary-files in temp buffers.
4453
5d8e0d43
GM
4454 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
4455 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
4456 (f90-start-block-re, f90-imenu-generic-expression)
4457 (f90-looking-at-program-block-start, f90-no-block-limit):
4458 Add support for submodules.
4459
ccf7a5d5
GM
4460 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
4461 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 4462
11fdef7d 44632011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
4464
4465 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
4466 buffer-file-type before setting its value, to avoid disastrous
eefff499 4467 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 4468
74f53697
JB
44692011-06-25 Juanma Barranquero <lekktu@gmail.com>
4470
4471 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
4472
4473 * ses.el (ses-unload-function):
4474 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
4475
4476 * proced.el (proced-unload-function):
4477 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
4478
18a4ce5e
AR
44792011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
4480
4481 * server.el (server-create-window-system-frame): Add parameters arg.
4482 (server-process-filter): Doc fix. Handle frame-parameters.
4483
519d22cc
JB
44842011-06-25 Juanma Barranquero <lekktu@gmail.com>
4485
4486 Fix bug#8730, bug#8781.
4487
4488 * loadhist.el (unload--set-major-mode): New function.
4489 (unload-feature): Use it.
4490
4491 * progmodes/python.el (python-after-info-look): Add autoload cookie.
4492 (python-unload-function): New function.
4493
c206f5b0
SM
44942011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4495
4496 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
4497
f9ad64f3
GS
44982011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
4499
4500 * net/browse-url.el (browse-url-firefox-program): Add icecat to
4501 the candidates list.
4502
7d0da90e
JB
45032011-06-24 Juanma Barranquero <lekktu@gmail.com>
4504
4505 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
4506
14b4e83d
RS
45072011-06-23 Richard Stallman <rms@gnu.org>
4508
4509 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
4510 (rmail-variables): Set next-error-move-function.
4511 (rmail-what-message): Take argument POS.
4512 (rmail-next-error-move): New function.
4513
273d2baf
SM
45142011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
4515
4516 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
4517 messages for adjacent non-terminals.
4518
56c2cc9a
RS
45192011-06-23 Richard Stallman <rms@gnu.org>
4520
4521 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 4522 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
4523 (rmail-start-mail): Don't specify use of rmail-mail-return;
4524 that's done by mail-bury now.
4525 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 4526
d59eb518
MA
45272011-06-23 Michael Albinus <michael.albinus@gmx.de>
4528
4529 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
4530 SIZE is a number.
4531
02cfc6d6
MR
45322011-06-23 Martin Rudalics <rudalics@gmx.at>
4533
4534 * window.el (get-lru-window, get-mru-window)
4535 (get-largest-window): Never return a minibuffer window.
4536 (display-buffer-pop-up-window): Fix a bug that could lead to
4537 reusing the minibuffer window.
4538 (display-buffer): Pass original specifier argument to
4539 display-buffer-function instead of the normalized one.
4540 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
4541
4e323265
LL
45422011-06-22 Leo Liu <sdl.web@gmail.com>
4543
4544 * minibuffer.el (completing-read-function)
4545 (completing-read-default): Move from minibuf.c
4546
7a70468f
RS
45472011-06-22 Richard Stallman <rms@gnu.org>
4548
50718fc2
RS
4549 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
4550 to Rmail even if not started by a special Rmail command.
4551
7a70468f
RS
4552 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
4553 Copy the buffer currently showing just one message.
4554
297dde5a
RW
45552011-06-22 Roland Winkler <winkler@gnu.org>
4556
4557 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
4558 (bibtex-clean-entry): First delete the old key so that a
4559 customized algorithm for generating the new key does not get
4560 confused by the old key.
4561 (bibtex-url): Obey regexp of first step.
4562 (bibtex-search-entries): Do not use add-to-list with local
4563 list-var.
4564
97bb1093
LMI
45652011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4566
4567 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
4568 stored a user name, then query for the password first, instead of
4569 waiting for SMTP to give an error message and the trying again.
4570
1c0f1a19
JD
45712011-06-22 Lawrence Mitchell <wence@gmx.li>
4572
4573 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
4574 BUFFER in call-process.
4575
396f7c9d
LMI
45762011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4577
4578 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
4579 QUIT twice.
ddb7ffee
LMI
4580 (smtpmail-try-auth-methods): Require user name and password from
4581 auth-source.
396f7c9d 4582
8998d1b3
MR
45832011-06-22 Martin Rudalics <rudalics@gmx.at>
4584
4585 * window.el (display-buffer-default-specifiers)
4586 (display-buffer-alist): Remove entries for pop-up-frame-alist.
4587 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 4588 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
4589
4590 * frame.el (pop-up-frame-alist, pop-up-frame-function)
4591 (special-display-frame-alist, special-display-popup-frame):
4592 Remove duplicate declarations. These are now in window.el.
4593
4ea31e07
LMI
45942011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
4595
c9d29fb8
SM
4596 * mail/smtpmail.el (smtpmail-via-smtp):
4597 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
4598 server supports it. SMTP servers that support STARTTLS commonly
4599 require it.
4600
4601 * net/network-stream.el (network-stream-open-starttls): Support
4602 upgrading to STARTTLS always, even if we don't have built-in support.
4603 (open-network-stream): Add the :always-query-capabilies keyword.
4604
95f41d9a
LMI
4605 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
4606 upgrades with `open-network-stream', and rely solely on
4607 auth-source for all credentials. Big changes throughout the file,
4608 but in particular:
c9d29fb8
SM
4609 (smtpmail-auth-credentials): Remove.
4610 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
4611 (smtpmail-via-smtp): Check for servers saying they want AUTH after
4612 MAIL FROM, too.
95f41d9a 4613
c9d29fb8
SM
4614 * net/network-stream.el (network-stream-open-starttls):
4615 Provide support for client certificates both for external and built-in
4ea31e07
LMI
4616 STARTTLS.
4617 (auth-source): Require.
4618 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
4619 (network-stream-certificate): Change cert-cert to cert and
4620 cert-key to key.
4ea31e07 4621
065ec2c7
MA
46222011-06-21 Michael Albinus <michael.albinus@gmx.de>
4623
4624 * net/tramp-cache.el (top): Don't load the persistency file when
4625 "emacs -Q" has been called.
4626
cd93b359
DR
46272011-06-21 Tim Harper <timcharper@gmail.com>
4628
d8e4b68b
JB
4629 * term/ns-win.el (ns-initialize-window-system):
4630 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
4631 resource to NO as it is not yet supported by the NS port.
4632
ae9c0411
JB
46332011-06-21 Juanma Barranquero <lekktu@gmail.com>
4634
4635 * misc.el (list-dynamic-libraries--refresh): Compute header here...
4636 (list-dynamic-libraries): ...not here.
4637
7f3f739f
LL
46382011-06-21 Leo Liu <sdl.web@gmail.com>
4639
4640 * subr.el (sha1): Implement sha1 using secure-hash.
4641
327c8fb1
MR
46422011-06-21 Martin Rudalics <rudalics@gmx.at>
4643
4644 * window.el (display-buffer-alist): In default value do not
4645 enforce searching a window on any but the selected frame.
4646 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
4647 (display-buffer-select-window): Remove function.
4648 (display-buffer-in-window): When a window on another frame gets
4649 reused, do not select it any more but just raise its frame if
4650 necessary (Bug#8851) and (Bug#8856).
4651 (display-buffer-normalize-options): Handle pop-up-frames related
4652 options more faithfully.
4653 (pop-to-buffer): Don't rely on `display-buffer' selecting the
4654 window if it is on another frame.
c9d29fb8
SM
4655 (display-buffer-alist, display-buffer-default-specifiers):
4656 Don't make new frame unsplittable by default.
9e9de014
MR
4657 (display-buffer-normalize-argument): Fix doc-string typo and use
4658 'same-frame-other-window instead of 'other-window when associating
4659 with display-buffer-macro-specifiers.
327c8fb1 4660
7cf3f556
VB
46612011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
4662
4663 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
4664 New functions.
4665 (5x5-mode-map, 5x5-mode-menu): Bind them.
4666 (5x5-draw-grid): Tweak the solver's rendering.
4667
60a406cf
SM
46682011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4669
4670 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
4671 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
4672
d8e4b68b 46732011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
4674
4675 * menu-bar.el: Use function variable instead of switch-to-buffer.
4676 (menu-bar-select-buffer-function): New variable.
60a406cf 4677 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 4678
478d6f95
SM
46792011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4680
4681 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
4682 variable's status.
4683
ca530739
JD
46842011-06-20 Jan Djärv <jan.h.d@swipnet.se>
4685
4686 * x-dnd.el (x-dnd-version-from-flags)
4687 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
4688 and long as number (Bug#8899).
4689 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
4690
bcd70d97
SM
46912011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
4692
60a406cf 4693 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
4694 (completion-try-completion, completion-all-completions): Compute the
4695 metadata argument if it's missing; make it optional (bug#8795).
4696
60a406cf 4697 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
4698 (widget-complete): Use new :completion-function property.
4699 (widget-completions-at-point): New function.
4700 (default): Use :completion-function instead of :complete.
60a406cf
SM
4701 (widget-default-completions): Rename from widget-default-complete;
4702 Rewrite.
bcd70d97
SM
4703 (widget-string-complete, widget-file-complete, widget-color-complete):
4704 Remove functions.
4705 (file, symbol, function, variable, coding-system, color):
4706 * international/mule-cmds.el (default-input-method, charset)
4707 (language-info-custom-alist):
4708 * cus-edit.el (face): Use new property :completions.
4709
4710 * progmodes/pascal.el (pascal-completions-at-point): New function.
4711 (pascal-mode): Use it.
4712 (pascal-mode-map): Use completion-at-point.
4713 (pascal-toggle-completions): Make obsolete.
4714 (pascal-complete-word, pascal-show-completions):
4715 * progmodes/octave-mod.el (octave-complete-symbol):
4716 Redefine as obsolete alias.
4717 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
4718 Signal absence of completion info for old Octave,
4719 (inferior-octave-complete): Redefine as obsolete alias.
4720 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
4721 (meta-completions-at-point): Rename from meta-complete-symbol and
4722 adapt it for use on completion-at-point-functions.
4723 (meta-common-mode): Use it.
4724 (meta-looking-at-backward, meta-match-buffer): Remove.
4725 (meta-complete-symbol): Redefine as obsolete alias.
4726 (meta-common-mode-map): Use completion-at-point.
4727 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
4728 (makefile-mode-map): Use completion-at-point.
4729 (makefile-completions-at-point): Rename from makefile-complete and
4730 adapt it for use on completion-at-point-functions.
4731 (makefile-mode): Use it.
4732 (makefile-complete): Redefine as obsolete alias.
4733
aebf69c8
DD
47342011-06-20 Deniz Dogan <deniz@dogan.se>
4735
4736 * net/rcirc.el: Delete trailing whitespaces once and for all.
4737
bfbbb27d
DC
47382011-06-20 Daniel Colascione <dan.colascione@gmail.com>
4739
4740 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
4741
d264a46b
CY
47422011-06-19 Chong Yidong <cyd@stupidchicken.com>
4743
4ca009e5
CY
4744 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
4745
d264a46b
CY
4746 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
4747
fbf5b3ce
MR
47482011-06-19 Martin Rudalics <rudalics@gmx.at>
4749
4750 * window.el (display-buffer-other-window-means-other-frame):
4751 Call display-buffer-normalize-alist.
4752 (display-buffer-normalize-specifiers-1): Rename to
4753 display-buffer-normalize-argument. New argument other-frame.
4754 Rewrite.
4755 (display-buffer-normalize-specifiers-2): Rename to
4756 display-buffer-normalize-options.
4757 (display-buffer-normalize-alist-1): New function.
4758 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
4759 display-buffer-normalize-alist.
4760 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
4761 (display-buffer-normalize-options-inhibit): New variable.
4762 (display-buffer-normalize-specifiers): Rewrite calling
4763 display-buffer-normalize-alist,
4764 display-buffer-normalize-argument, and
4765 display-buffer-normalize-options. Don't call the latter if
4766 display-buffer-normalize-options-inhibit is non-nil.
4767 (frame-auto-delete): New option.
4768 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
4769 (window-list-no-nils, window-state-ignored-parameters)
4770 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
4771 (window-state-put-1, window-state-put-2, window-state-put):
4772 New functions.
9a028c23
MR
4773 (display-buffer-normalize-options): Move special-display-p group
4774 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 4775
6d10d800
CY
47762011-06-18 Chong Yidong <cyd@stupidchicken.com>
4777
6420d28b
CY
4778 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
4779 groups (Bug#8776).
4780 (rx-submatch-n): New function.
4781 (rx): Document it.
4782
ddb8b596
CY
4783 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
4784 (Bug#8768).
4785
4786 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
4787
77080289
CY
4788 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
4789
61dfb316
CY
4790 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
4791 anytime existing face settings are present (Bug#8889).
4792
6d10d800
CY
4793 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
4794 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
4795 Remove unused argument.
4796
be3fb2b8
MR
47972011-06-18 Martin Rudalics <rudalics@gmx.at>
4798
bcd70d97
SM
4799 * window.el (display-buffer-default-specifiers):
4800 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
4801 pop-up-window-min-width, and another reuse-window specifier
4802 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
4803 (display-buffer-normalize-specifiers-2):
4804 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
4805 pop-up-windows is unset. Add a reuse-window specifier for the
4806 case popping up a new window fails.
4807 (special-display-popup-frame): Remove double quoting.
28dec25a 4808 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 4809
1c6d8c76
SM
48102011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
4811
4812 * shell.el (shell-completion-vars): Set pcomplete-termination-string
4813 according to comint-completion-addsuffix.
4814
4815 * pcomplete.el: Convert to lexical binding and fix bug#8819.
4816 (pcomplete-suffix-list): Mark as obsolete.
4817 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
4818 pcomplete-seen in the closure.
4819 (pcomplete-comint-setup): Setup completion-at-point as well.
4820 (pcomplete--entries): New function.
4821 (pcomplete--env-regexp): New var.
4822 (pcomplete-entries): Rewrite to work with partial-completion and
4823 without relying on pcomplete-suffix-list.
4824 (pcomplete-pare-list): Remove, unused.
4825
25aef8b8
MR
48262011-06-17 Martin Rudalics <rudalics@gmx.at>
4827
4828 * window.el (display-buffer-alist): Set pop-up-window-min-height
4829 and pop-up-window-min-width in default value. Reported by
4830 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
4831 other-window-means-other-frame.
4832 (display-buffer-macro-specifiers): Comment out entry for
4833 other-window specifier.
4834 (display-buffer-other-window-means-other-frame): New function.
4835 (display-buffer-normalize-specifiers-1): New arguments
4836 buffer-name and label. Treat other-window case specially.
4837 (display-buffer-normalize-specifiers-2): Treat other-window case
4838 specially.
4839 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
4840 (display-buffer-normalize-specifiers):
4841 Call display-buffer-normalize-specifiers-3.
25aef8b8 4842
dbad4f69
MR
48432011-06-17 Martin Rudalics <rudalics@gmx.at>
4844
4845 * window.el (same-window-p): Fix two typos introduced when
4846 adding with-no-warnings.
d1067961
MR
4847 (display-buffer-normalize-specifiers-1): Don't check
4848 pop-up-frames for 'unset initialization.
4849 (display-buffer-normalize-specifiers-2): Major rewrite using
4850 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
4851 (pop-up-frames, display-buffer-reuse-frames)
4852 (display-buffer-mark-dedicated): Don't initialize to 'unset.
4853 Suggested by David Engster <deng@randomsample.de>.
4854 (even-window-heights): Initialize to 'unset.
4855 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
4856 (display-buffer-macro-specifiers): Don't pop up a new frame in the
4857 other window case.
dbad4f69 4858
9b9c9e3a
MR
48592011-06-16 Martin Rudalics <rudalics@gmx.at>
4860
bcd70d97
SM
4861 * window.el (display-buffer-normalize-specifiers-1):
4862 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 4863 second argument of display-buffer (Bug#8865).
981d5c09
MR
4864 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
4865 (switch-to-buffer-other-window-same-frame)
4866 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
4867 Adams (Bug#8875).
9c2755e9
MR
4868 (display-buffer): Don't check noninteractive when calling
4869 display-buffer-pop-up-frame.
4870 (display-buffer-pop-up-frame): Never pop up a frame in
4871 noninteractive mode (Bug#8857).
67222e1d
MR
4872 (enlarge-window, shrink-window): Don't report an error when the
4873 window can't be resized as requested (Bug#8862).
9b9c9e3a 4874
2b75be67
SM
48752011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
4876
9ffdd3ba
SM
4877 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
4878
cb581a67
SM
4879 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
4880
2b75be67
SM
4881 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
4882
8c0e3589
AM
48832011-06-15 Alan Mackenzie <acm@muc.de>
4884
cb581a67
SM
4885 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
4886 for declarators, disable knr checking to speed up for normal files.
4887 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 4888
b96e6cde
LMI
48892011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
4890
4bba86e6
LMI
4891 * net/network-stream.el (open-network-stream): Add the keyword
4892 :always-query-capabilities for the case where you want to force a
4893 `plain' network connection, but the protocol still requires the
4894 capabilitiy command (i.e., SMTP and EHLO).
4895
2b75be67 4896 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
4897 consistency with other `-live-p' functions.
4898
efdcdbf8
SM
48992011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
4900
4901 * window.el (same-window-buffer-names, same-window-regexps)
4902 (special-display-frame-alist, special-display-popup-frame)
4903 (special-display-function, special-display-buffer-names)
4904 (special-display-regexps, pop-up-frame-alist)
4905 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
4906 (pop-up-windows, split-window-preferred-function)
4907 (split-height-threshold, split-width-threshold, even-window-heights)
4908 (display-buffer-mark-dedicated): Don't encourage the use of
4909 display-buffer-alist from Elisp code.
4910
c5cde042
DN
49112011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
4912
4913 * progmodes/python.el (python-mode): Derive from prog-mode.
4914 * progmodes/ps-mode.el (ps-mode):
4915 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 4916 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
4917 * progmodes/ld-script.el (ld-script-mode): Likewise.
4918
baa1c9ab
MR
49192011-06-15 Martin Rudalics <rudalics@gmx.at>
4920
4921 * window.el (display-buffer-alist): Trim default value to avoid
4922 popping up a new frame (Bug#8857) or reusing an arbitrary window
4923 on another frame.
4924 (display-buffer): Do not fall back on popping up a new frame in
4925 batch mode (Bug#8857).
4926
c5dd5a51
CY
49272011-06-14 Chong Yidong <cyd@stupidchicken.com>
4928
4929 * cus-theme.el (describe-theme-1): Use custom-theme-p.
4930 (custom-theme-summary): New function.
4931 (customize-themes): Use it.
4932
d647b7c4
GM
49332011-06-13 Glenn Morris <rgm@gnu.org>
4934
4935 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
4936
9481c002
MR
49372011-06-13 Martin Rudalics <rudalics@gmx.at>
4938
357f93d2
MR
4939 * help.el (help-window): Remove variable.
4940 (help-window-point-marker, temp-buffer-max-height)
4941 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
4942 (help-print-return-message): Don't set help-window.
4943 (resize-temp-buffer-window): Rewrite cod eand doc-string.
4944 (help-window-setup-finish): Remove.
4945 (help-window-display-message, help-window-setup)
4946 (with-help-window): Major rewrite based on new
4947 display-buffer-window variable.
4948
4949 * help-mode.el (help-mode-finish): Remove help-window related
4950 code.
4951
4952 * view.el (view-exits-all-viewing-windows): Remove reference to
4953 view-return-to-alist in doc-string.
4954 (view-return-to-alist): Make obsolete.
4955 (view-buffer): Call pop-to-buffer-same-window and remove
4956 undo-window code.
4957 (view-buffer-other-window): Call pop-to-buffer-other-window and
4958 simplify code. Ignore second argument.
4959 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
4960 simplify code. Ignore second argument.
4961 (view-return-to-alist-update): Make obsolete.
4962 (view-mode-enter): Rename second argument to QUIT-RESTORE.
4963 Rewrite using quit-restore window parameters.
2b75be67
SM
4964 (view-mode-exit): Rename second argument to EXIT-ONLY.
4965 Rewrite using quit-restore-window.
357f93d2
MR
4966 (View-exit, View-exit-and-edit, View-leave, View-quit)
4967 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
4968 appropriate arguments.
4969 (view-end-message): Use quit-restore window parameter.
4970
9481c002
MR
4971 * window.el (display-buffer-function): Rewrite doc-string.
4972 (display-buffer-window, display-buffer-alist): New variables.
4973 (display-buffer-split-specifiers)
4974 (display-buffer-side-specifiers)
4975 (display-buffer-macro-specifiers): New constants.
4976 (display-buffer-even-window-sizes, display-buffer-set-height)
4977 (display-buffer-set-width, display-buffer-select-window)
4978 (display-buffer-in-window, display-buffer-reuse-window)
4979 (display-buffer-split-window-1, display-buffer-split-window)
4980 (display-buffer-split-atom-window, display-buffer-pop-up-window)
4981 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
4982 (display-buffer-in-side-window, normalize-buffer-to-display)
4983 (display-buffer-normalize-specifiers-1)
4984 (display-buffer-normalize-specifiers-2)
2b75be67
SM
4985 (display-buffer-normalize-specifiers, display-buffer-frame):
4986 New functions.
9481c002
MR
4987 (display-buffer): Major rewrite.
4988 (display-buffer-other-window, display-buffer-other-frame)
4989 (pop-to-buffer, switch-to-buffer-other-window)
4990 (switch-to-buffer-other-frame): Rewrite.
4991 (display-buffer-same-window, display-buffer-same-frame)
4992 (display-buffer-same-frame-other-window)
4993 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
4994 (pop-to-buffer-other-window)
4995 (pop-to-buffer-same-frame-other-window)
4996 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
4997 (switch-to-buffer-other-window-same-frame): New functions.
4998 (same-window-p, special-display-p): Rewrite disabling warnings.
4999 Make obsolete.
5000 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
5001 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
5002 Make obsolete
5003 (same-window-buffer-names, same-window-regexps)
5004 (special-display-frame-alist, special-display-popup-frame)
5005 (special-display-function, special-display-buffer-names)
5006 (special-display-regexps, pop-up-frame-alist)
5007 (pop-up-frame-function, split-window-preferred-function)
5008 (split-height-threshold, split-width-threshold)
5009 (even-window-heights): Make obsolete.
5010
9db51aca
GM
50112011-06-12 Glenn Morris <rgm@gnu.org>
5012
5013 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 5014 Misc simplifications.
9db51aca 5015
39cffb44
MR
50162011-06-12 Martin Rudalics <rudalics@gmx.at>
5017
5018 * window.el (window-safely-shrinkable-p): Restore function which
5019 was inadvertently removed in change from 2011-06-11. Declare as
5020 obsolete.
5021
2b75be67
SM
5022 * calendar/calendar.el (calendar-generate-window):
5023 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
5024 window-safely-shrinkable-p.
5025
a8955be7
GM
50262011-06-12 Glenn Morris <rgm@gnu.org>
5027
5028 * progmodes/fortran.el (fortran-mode-syntax-table):
5029 * progmodes/f90.el (f90-mode-syntax-table):
5030 Set % to punctuation. (Bug#8820)
5031 (f90-find-tag-default): Remove, no longer needed.
5032
f0d4059d
DC
50332011-06-12 Daniel Colascione <dan.colascione@gmail.com>
5034
5035 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
5036
1100a63c
CY
50372011-06-11 Chong Yidong <cyd@stupidchicken.com>
5038
5039 * image.el (image-animated-p): Return animation delay in seconds.
5040 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
5041 (image-animate-timeout): Remove DELAY argument. Don't assume
5042 every subimage has the same delay; get it from image-animated-p.
5043 (image-animate): Caller changed.
5044
def722bf
MA
50452011-06-11 Michael Albinus <michael.albinus@gmx.de>
5046
5047 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
5048 to ignored backtrace functions.
5049
0a2bb1a9
GM
50502011-06-11 Glenn Morris <rgm@gnu.org>
5051
5052 * calendar/appt.el (appt-disp-window-function): Doc fix.
5053 (appt-check): Handle overlapping appointments. (Bug#8337)
5054
6198ccd0
MR
50552011-06-11 Martin Rudalics <rudalics@gmx.at>
5056
5057 * window.el (window-tree-1, window-tree): New functions, moving
5058 the latter to window.el.
5059 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
5060 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
5061 (bw-refresh-edges): Remove.
5062 (balance-windows-1, balance-windows-2): New functions.
5063 (balance-windows): Rewrite in terms of window tree functions,
5064 balance-windows-1 and balance-windows-2.
5065 (bw-adjust-window): Remove.
5066 (balance-windows-area-adjust): New function with functionality of
5067 bw-adjust-window but using resize-window.
2b75be67
SM
5068 (set-window-text-height): Rewrite doc-string.
5069 Use normalize-live-window and resize-window.
5070 (enlarge-window-horizontally, shrink-window-horizontally):
5071 Rename argument to DELTA.
6198ccd0
MR
5072 (window-buffer-height): New function.
5073 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
5074 Rewrite using new window resize routines.
2b75be67
SM
5075 (kill-buffer-and-window, mouse-autoselect-window-select):
5076 Use ignore-errors instead of condition-case.
6198ccd0
MR
5077 (quit-window): Call delete-frame instead of delete-windows-on
5078 for the only buffer on frame.
5079
9397e56f
MR
50802011-06-10 Martin Rudalics <rudalics@gmx.at>
5081
5082 * loadup.el (top-level): Load window before files for the sake
5083 of replace-buffer-in-windows.
5084
5085 * files.el (read-buffer-to-switch)
5086 (switch-to-buffer-other-window)
2b75be67
SM
5087 (switch-to-buffer-other-frame, display-buffer-other-frame):
5088 Move to window.el.
9397e56f
MR
5089
5090 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
5091 (previous-buffer): Move to window.el.
5092
5093 * bindings.el (unbury-buffer): Move to window.el.
5094
5095 * window.el (delete-other-windows-vertically): Move after
5096 definition of delete-other-windows.
5097 (other-window, delete-windows-on, replace-buffer-in-windows):
5098 Move here from window.c.
5099 (record-window-buffer, unrecord-window-buffer)
5100 (set-window-buffer-start-and-point, switch-to-prev-buffer)
5101 (switch-to-next-buffer): New functions.
5102 (get-next-valid-buffer, last-buffer, next-buffer): Move here
5103 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
5104 (previous-buffer): Move here from simple.el.
5105 Call switch-to-prev-buffer.
9397e56f
MR
5106 (bury-buffer): Move here from buffer.c. Switch to previous
5107 buffer when window cannot be deleted.
5108 (unbury-buffer): Move here from bindings.el.
5109 (ctl-x-map): Move binding for other-window from window.c to
5110 here.
5111 (read-buffer-to-switch, switch-to-buffer-other-window)
5112 (switch-to-buffer-other-frame): Move here from files.el.
5113 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
5114 (switch-to-buffer): Move here from buffer.c.
5115 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 5116
562dd5e9
MR
51172011-06-10 Martin Rudalics <rudalics@gmx.at>
5118
5119 * window.el (window-min-height, window-min-width): Move here
5120 from window.c. Add defcustoms and rewrite doc-strings.
5121 (resize-mini-window, resize-window): New functions.
5122 (adjust-window-trailing-edge, enlarge-window, shrink-window):
5123 Move here from window.c.
5124 (maximize-window, minimize-window): New functions.
5125 (delete-window, delete-other-windows, split-window): Move here
5126 from window.c.
5127 (window-split-min-size): New function.
5128 (split-window-keep-point): Mention split-window-above-each-other
5129 instead of split-window-vertically.
2b75be67
SM
5130 (split-window-above-each-other, split-window-vertically):
5131 Rename split-window-vertically to split-window-above-each-other and
562dd5e9
MR
5132 provide defalias for old definition.
5133 (split-window-side-by-side, split-window-horizontally): Rename
5134 split-window-horizontally to split-window-side-by-side and provide
5135 defalias for the old definition.
5136 (ctl-x-map): Move bindings for delete-window,
5137 delete-other-windows and enlarge-window here from window.c.
5138 Replace bindings for split-window-vertically and
5139 split-window-horizontally by bindings for
5140 split-window-above-each-other and split-window-side-by-side.
5141
5142 * cus-start.el (all): Remove entries for window-min-height and
5143 window-min-width. Add entries for window-splits and
5144 window-nest.
5145
f0da764a
GM
51462011-06-09 Glenn Morris <rgm@gnu.org>
5147
80675c21
GM
5148 * calendar/appt.el (appt-mode-line): New function.
5149 (appt-check, appt-disp-window): Use it.
5150
f0da764a
GM
5151 * files.el (hack-one-local-variable-eval-safep):
5152 Allow minor-modes with explicit +/-1 arguments.
5153
59f623b7
TZ
51542011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
5155
5156 * term/xterm.el (xterm): Add defgroup.
5157 (xterm-extra-capabilities): Add defcustom to supply known xterm
5158 capabilities, skip querying them, or query them (default).
5159 (terminal-init-xterm): Use it.
5160 (terminal-init-xterm-modify-other-keys): New function to set up
5161 modifyOtherKeys support to simplify `terminal-init-xterm'.
5162
9aab8e0d
MR
51632011-06-09 Martin Rudalics <rudalics@gmx.at>
5164
5165 * window.el (resize-window-reset, resize-window-reset-1)
5166 (resize-subwindows-skip-p, resize-subwindows-normal)
5167 (resize-subwindows, resize-other-windows, resize-this-window)
5168 (resize-root-window, resize-root-window-vertically)
5169 (window-deletable-p, window-or-subwindow-p)
5170 (frame-root-window-p): New functions.
5171
e8b08aee
GM
51722011-06-09 Glenn Morris <rgm@gnu.org>
5173
5174 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
5175 (ange-ftp-get-files): Use it.
5176
254c37a5
AK
51772011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
5178
5179 * mail/sendmail.el (mail-recover-1, mail-recover):
5180 * files.el (recover-file, recover-session):
5181 Handle dired-listing-switches not being just a single short option.
5182
35d7dbd3
GM
51832011-06-09 Glenn Morris <rgm@gnu.org>
5184
5185 * calendar/appt.el (appt-display-message, appt-disp-window):
5186 Handle lists of appointments.
5187
387522b2
MR
51882011-06-08 Martin Rudalics <rudalics@gmx.at>
5189
2b75be67
SM
5190 * window.el (one-window-p): Move down in code.
5191 Rewrite doc-string.
5192 (window-current-scroll-bars): Rewrite doc-string.
5193 Normalize live window argument.
387522b2
MR
5194 (walk-windows, get-window-with-predicate, count-windows):
5195 Rewrite doc-string. Use window-list-1.
5196 (window-in-direction-2, window-in-direction, get-mru-window):
5197 New functions.
5198
d8e4b68b 51992011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
5200
5201 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
5202 Doc fix (Bug#8713).
5203
52042011-06-08 Chong Yidong <cyd@stupidchicken.com>
5205
5206 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
5207
52082011-06-08 Juanma Barranquero <lekktu@gmail.com>
5209
5210 * loadhist.el (unload-feature-special-hooks):
5211 Add `comint-output-filter-functions'.
5212
0de12c52
IK
52132011-06-08 Ivan Kanis <gnu@kanis.fr>
5214
5215 * calendar/appt.el (appt-check): Move some initializations into the let.
5216
f3d1777e
MR
52172011-06-08 Martin Rudalics <rudalics@gmx.at>
5218
5219 * window.el (window-height): Defalias to window-total-height.
5220 (window-width): Defalias to window-body-width.
5221
18af70d0
CY
52222011-06-07 Chong Yidong <cyd@stupidchicken.com>
5223
5224 * image-mode.el (image-toggle-animation): New command.
5225 (image-mode-map): Bind it to RET.
5226 (image-mode): Update message.
5227 (image-toggle-display-image): Avoid a spurious cache flush.
5228 (image-transform-rotation): Doc fix.
5229 (image-transform-properties): Return quickly in the normal case.
5230 (image-animate-loop): Rename from image-animate-max-time.
5231
2b75be67 5232 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
5233 (create-animated-image): Remove unnecessary function.
5234 (image-animate): Rename from image-animate-start. New arg.
2b75be67 5235 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
5236 (image-animate-timer): Use car-safe.
5237 (image-animate-timeout): Rename argument.
5238
190b47e6
MR
52392011-06-07 Martin Rudalics <rudalics@gmx.at>
5240
5241 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
5242 window.c. Rename first argument to ALL-FRAMES.
5243 Rephrase doc-strings.
5244 (get-buffer-window-list): Rewrite using window-list-1.
5245 Rephrase doc-string.
a1511caf
MR
5246 (window-safe-min-height, window-safe-min-width): New constants.
5247 (window-size-ignore, window-min-size, window-min-size-1)
5248 (window-sizable, window-sizable-p, window-size-fixed-1)
5249 (window-size-fixed-p, window-min-delta-1, window-min-delta)
5250 (window-max-delta-1, window-max-delta, window-resizable)
5251 (window-resizable-p, window-total-height, window-total-width)
5252 (window-body-width): New functions.
5253 (window-full-height-p, window-full-width-p): Rewrite using
5254 window-total-size.
5255 (window-body-height): Rewrite using window-body-size.
190b47e6 5256
85cc1f11
MR
52572011-06-06 Martin Rudalics <rudalics@gmx.at>
5258
5259 * window.el (window-right, window-left, window-child)
5260 (window-child-count, window-last-child, window-any-p)
5261 (normalize-live-buffer, normalize-live-frame)
5262 (normalize-any-window, normalize-live-window)
5263 (window-iso-combination-p, window-iso-combined-p)
5264 (window-iso-combinations)
5265 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
5266 (windows-with-parameter, window-with-parameter)
5267 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
5268 (window-atom-check, window-side-check, window-check):
5269 New functions.
85cc1f11
MR
5270 (ignore-window-parameters, window-sides, window-sides-vertical)
5271 (window-sides-slots): New variables.
5272 (window-size-fixed): Move down in code. Minor doc-string fix.
5273
e7156492
AS
52742011-06-05 Andreas Schwab <schwab@linux-m68k.org>
5275
5276 * comint.el (comint-dynamic-complete-as-filename)
5277 (comint-dynamic-complete-filename): Correctly call
5278 completion-in-region.
5279
7e821d0d
DD
52802011-06-05 Deniz Dogan <deniz@dogan.se>
5281
5282 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
5283 in last change.
5284
ac09b8a1
DD
52852011-06-05 Deniz Dogan <deniz@dogan.se>
5286
5287 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
5288 (rcirc): Use it to prompt for encryption.
5289
34699b85
RW
52902011-06-05 Roland Winkler <winkler@gnu.org>
5291
5292 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
5293 (bibtex-search-entries): New command bound to C-c C-a.
5294 (bibtex-display-entries): New function.
5295
004dedd3
RW
52962011-06-05 Roland Winkler <winkler@gnu.org>
5297
5298 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
5299 (bibtex-insert-kill): After yanking insert newline if necessary.
5300 (bibtex-initialize): Call bibtex-string-files-init only once.
5301 (bibtex-mode): Do not call easy-menu-add.
5302 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
5303 (bibtex-yank): Set arg properly if nil.
5304
022fe7ce
RW
53052011-06-05 Roland Winkler <winkler@gnu.org>
5306
2b75be67
SM
5307 * textmodes/bibtex.el (bibtex-search-entry-globally):
5308 New variable.
022fe7ce
RW
5309 (bibtex-search-entry): Use it.
5310
b7c3692a
RW
53112011-06-05 Roland Winkler <winkler@gnu.org>
5312
5313 * textmodes/bibtex.el (bibtex-entry-format): New option
5314 sort-fields.
5315 (bibtex-format-entry, bibtex-reformat): Honor this option.
5316 (bibtex-parse-entry): Return fields in proper order.
5317
8eda563d
JB
53182011-06-05 Juanma Barranquero <lekktu@gmail.com>
5319
5320 * doc-view.el (doc-view-remove-if): Move computation of result out
5321 of `dolist' to silence misleading lexical-binding warning.
5322
7dbe3dbc
CY
53232011-06-04 Chong Yidong <cyd@stupidchicken.com>
5324
5325 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
5326 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
5327
0c33dd17
MA
53282011-06-04 Michael Albinus <michael.albinus@gmx.de>
5329
5330 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
5331 "SunOS 5.10".
5332
f8f91c2b
MA
53332011-06-04 Michael Albinus <michael.albinus@gmx.de>
5334
5335 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
5336 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
5337 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
5338 (tramp-parse-putty):
5339 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
5340 (tramp-completion-function-alist-ssh)
5341 (tramp-completion-function-alist-telnet)
5342 (tramp-completion-function-alist-su)
5343 (tramp-completion-function-alist-putty): Set `tramp-autoload'
5344 cookie.
5345
5346 * net/tramp-ftp.el:
5347 * net/tramp-sh.el:
5348 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
5349 load "tramp.el" `tramp-set-completion-function'.
5350
e17d9003
SM
53512011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
5352
5353 * shell.el: Require and use pcomplete.
5354 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
5355 (shell-completion-vars): Set pcomplete-default-completion-function.
5356
6c4cab03
DD
53572011-06-04 Deniz Dogan <deniz@dogan.se>
5358
5359 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
5360 `memq' (Bug#8799).
5361
ea9fafe0
SM
53622011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
5363
5364 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
5365
b3e945d3
JB
53662011-06-02 Juanma Barranquero <lekktu@gmail.com>
5367
5368 * bs.el (bs--mark-unmark, bs--nth-wrapper):
5369 * mpc.el (mpc-select-extend, mpc-songpointer-context):
5370 * vc/log-view.el (log-view-beginning-of-defun):
5371 * vc/smerge-mode.el (smerge-apply-resolution-patch)
5372 (smerge-refine-forward, smerge-refine-chopup-region):
5373 Silence warning for unused `dotimes' counter variables.
5374
7d520089
SM
53752011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
5376
5377 * net/tramp.el (tramp-with-progress-reporter): Rename from
5378 with-progress-reporter. Use `declare'.
5379 * net/tramp-smb.el:
5380 * net/tramp-sh.el:
5381 * net/tramp-gvfs.el: Update all uses.
5382
a1c2400f
JB
53832011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
5384
5385 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
5386 buffer isn't killed before making it current.
5387
2403c841
SM
53882011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
5389
5390 Silence various byte-compiler warnings.
5391 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
5392 `access-type' and new obsolescence format.
5393 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
5394 new format.
5395 (byte-compile-check-variable): New `access-type' argument.
5396 Only warn if the access-type is obsolete.
5397 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
5398 (byte-compile-variable-set): Adjust callers.
5399 * help-fns.el (describe-variable): Adjust to new obsolescence format.
5400 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
5401 setting it as obsolete.
5402 * simple.el (minibuffer-completing-symbol):
5403 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
5404 access as obsolete.
5405 * minibuffer.el (minibuffer-completing-file-name): Don't make it
5406 obsolete yet.
5407 * international/quail.el (quail-mouse-choose-completion): Remove unused
5408 code referring to obsolete var.
5409 (quail-choose-completion-string): Remove.
5410 * server.el (server-clients-with, server-kill-buffer-query-function)
5411 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
5412 * proced.el (proced-send-signal):
5413 * emacs-lisp/lisp.el (lisp-complete-symbol):
5414 Replace completion-annotate-function with completion-extra-properties.
5415
2462470b
SM
54162011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
5417
fb5b2591
SM
5418 * simple.el (goto-line): Use read-number.
5419 (overriding-map-is-bound): Remove.
5420 (saved-overriding-map): Change default.
5421 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
5422 Take the map as argument.
5423 (universal-argument, negative-argument, digit-argument): Use it.
5424 (restore-overriding-map): Adjust.
5425 (do-auto-fill): Use fill-forward-paragraph.
5426 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
5427
fd6fa53f
SM
5428 * minibuffer.el (minibuffer-inactive-mode-map): New var.
5429 (minibuffer-inactive-mode): New major mode.
5430 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
5431 the *Messages* buffer" hack.
5432 (mouse-popup-menubar): Don't burp if the event is a normal key.
5433
2462470b
SM
5434 Miscellaneous tweaks.
5435 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
5436 lexical scoping as in subr.el's dolist and dotimes.
5437 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
5438 Silence compiler warning.
5439 * thingatpt.el (forward-whitespace): Trivial coding style fix.
5440 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
5441 * international/ccl.el (ccl-compile): Trivial simplification.
5442 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
5443 * emacs-lisp/testcover.el (testcover-end): Remove spurious
5444 `printflag' argument.
5445 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
5446 Purecopy the whole obsolescence data.
5447
108bf785
LL
54482011-06-01 Leo Liu <sdl.web@gmail.com>
5449
5450 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
5451 improve doc-string as suggested by Marco Pessotto
5452 <melmothx@gmail.com>.
5453 (rcirc-print): Fix last change.
5454
30a23501
SM
54552011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
5456
5457 * minibuffer.el (complete-with-action): Return nil for the metadata and
5458 boundaries of non-functional tables.
5459 (completion-table-dynamic): Return nil for the metadata.
5460 (completion-table-with-terminator): Add default case, using
5461 complete-with-action.
5462 (completion--metadata): New function.
5463 (completion-all-sorted-completions, minibuffer-completion-help): Use it
5464 to try and avoid pathological performance problems.
5465 (completion--embedded-envvar-table): Return `category' metadata.
5466
bcd54f83
LMI
54672011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
5468
5469 * subr.el (process-alive-p): New tiny convenience function.
5470
e227544d
SM
54712011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
5472
5473 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
5474 content but also its previous major mode.
5475
e8296fdc
HE
54762011-05-31 Helmut Eller <eller.helmut@gmail.com>
5477
4d61f28d 5478 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
5479 *Backtrace* buffer when we exit with C-M-c.
5480
620c53a6
SM
54812011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
5482
5483 * minibuffer.el: Add metadata method to completion tables.
5484 (completion-category-overrides): New defcustom.
5485 (completion-metadata, completion--field-metadata)
5486 (completion-metadata-get, completion--styles)
5487 (completion--cycle-threshold): New functions.
5488 (completion-try-completion, completion-all-completions):
5489 Add `metadata' argument to choose completion-styles.
5490 (completion--do-completion): Use metadata to choose cycling.
5491 (completion-all-sorted-completions): Use metadata for sorting.
5492 Remove :completion-cycle-penalty which is not needed any more.
5493 (completion--try-word-completion): Add `metadata' argument.
5494 (minibuffer-completion-help): Check metadata for annotation function
5495 and sorting.
5496 (completion-file-name-table): Return `category' metadata.
5497 (minibuffer-completing-file-name): Make obsolete.
5498 * simple.el (minibuffer-completing-symbol): Make obsolete.
5499 * icomplete.el (icomplete-completions): Pass new `metadata' param to
5500 completion-try-completion.
5501
1257e755
SM
55022011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
5503
5504 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
5505
3767e706
LL
55062011-05-30 Leo Liu <sdl.web@gmail.com>
5507
5508 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
5509 (rcirc-print): Decode all incoming messages (bug#8744).
5510 (rcirc-decode-coding-system): Allow value nil for automatic coding
5511 system detection.
3767e706 5512
d1a5d56a
GM
55132011-06-01 Glenn Morris <rgm@gnu.org>
5514
5515 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
5516
e8cbec34
CY
55172011-05-29 Chong Yidong <cyd@stupidchicken.com>
5518
5519 * image.el (image-animate-max-time): Allow nil and t values.
5520 Default to nil.
5521 (create-animated-image): Doc fix.
5522 (image-animate-start): Remove second arg; just use
5523 image-animate-max-time.
5524 (image-animate-timeout): Doc fix. Args changed.
5525
5526 * image-mode.el (image-toggle-display-image): Ensure that the
5527 image spec passed to the animate timer is the same object as in
5528 the the buffer's display property (Bug#6981).
5529 (image-transform-properties): Doc fix.
5530
5531 * image.el (image-animate-max-time): Default to nil.
5532
159daf87
MR
55332011-05-29 Martin Rudalics <rudalics@gmx.at>
5534
5535 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
5536 entire buffer list (Bug#8184).
5537
d66c4c7c
CY
55382011-05-29 Chong Yidong <cyd@stupidchicken.com>
5539
5540 * image.el (imagemagick-types-inhibit)
5541 (imagemagick-register-types): Doc fix.
5542
80aec780
DD
55432011-05-29 Deniz Dogan <deniz@dogan.se>
5544
5545 * net/rcirc.el (rcirc): Use the user's stored encryption method by
5546 default.
5547
1dd3c2d9
CY
55482011-05-29 Chong Yidong <cyd@stupidchicken.com>
5549
5550 * select.el: Don't perform clipboard-manager saving in hooks;
5551 leave the hooks empty.
5552
60e56523
LL
55532011-05-28 Leo Liu <sdl.web@gmail.com>
5554
5555 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
5556 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
5557 (occur-edit-mode): New major mode (Bug#8463).
5558 (occur-after-change-function): New function.
5559 (occur-engine): Give Occur tags a read-only property.
5560
2b1e1a22
KR
55612011-05-28 Kevin Ryde <user42@zip.com.au>
5562
5563 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
5564
5d344e88
CY
55652011-05-28 Chong Yidong <cyd@stupidchicken.com>
5566
8e6ca83d
CY
5567 * bindings.el (help-echo): Make the initial non-indicator dash
5568 empty on graphical terminals (Bug#7295).
5569
5d344e88
CY
5570 * files.el (auto-mode-alist): Move config rule after the
5571 in-stripping one (Bug#8547).
5572
bfbbace7
CY
5573 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
5574
fbeba6e2
CY
5575 * startup.el (normal-splash-screen): Remove gratuitous mode-line
5576 setting (Bug#8740).
5577
60ed8c72
AA
55782011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
5579
4ac619f0
AA
5580 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
5581 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
5582 (Bug#8539).
60ed8c72 5583
23db196e
CY
55842011-05-28 Chong Yidong <cyd@stupidchicken.com>
5585
5586 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
5587
5012f24c
DK
55882011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
5589
5590 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
5591 (hs-hide-block-at-point, hs-find-block-beginning)
5592 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
5593 (Bug#8279).
5594
6a639b16
GM
55952011-05-28 Glenn Morris <rgm@gnu.org>
5596
5597 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
5598
d43eaf2c
CY
55992011-05-28 Chong Yidong <cyd@stupidchicken.com>
5600
5199bde1
CY
5601 * help-fns.el (describe-function-1): If the function is a derived
5602 major mode, print the parent mode.
5603
d43eaf2c
CY
5604 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
5605 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
5606
423428a8
SM
56072011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
5608
0ff8e1ba
SM
5609 * minibuffer.el (completion--capf-wrapper): Check applicability before
5610 retuning non-nil for non-exclusive completion data.
5611 * progmodes/etags.el (tags-completion-at-point-function):
5612 * info-look.el (info-lookup-completions-at-point): Mark as
5613 non-exclusive.
5614 (info-complete): Adjust accordingly.
5615
423428a8
SM
5616 * info-look.el: Convert to lexical-binding and completion-at-point.
5617 (info-lookup-completions-at-point): New function.
5618 (info-complete): Use it and completion-in-region.
5619
b74aa22b
DA
56202011-05-28 Drew Adams <drew.adams@oracle.com>
5621
5622 * isearch.el: Let M-e start with point at the first mismatched char.
5623 (isearch-fail-pos): New function.
5624 (isearch-edit-string): Use it.
5625
66e2e71d
DK
56262011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
5627
5628 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
5629
eb95d01d
TC
56302009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
5631
5632 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
5633 traversal functions for avl-trees.
5634 (avl-tree--stack): New struct.
5635 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
5636 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
5637 (avl-tree--do-enter): Add optional `updatefun' arg.
5638 Change return value.
eb95d01d 5639 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
5640 (avl-tree--do-delete): Add `test' and `nilflag' args.
5641 Change return value.
eb95d01d
TC
5642 (avl-tree-member): Add optional `nilflag'
5643 (avl-tree-member-p): New function.
5644 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
5645 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
5646 (avl-tree-stack-empty-p): New functions.
5647
3769ddcf
TC
56482009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
5649
5650 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
5651 avl-tree--del-balance1 and make it work both ways.
5652 (avl-tree--del-balance2): Remove.
5653 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
5654 make it work both ways.
5655 (avl-tree--enter-balance2): Remove.
5656 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
5657 New macros.
5658 (avl-tree--mapc, avl-tree-map): Add direction argument.
5659
eb95d01d 56602011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
5661
5662 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
5663
a9f737ee
CY
56642011-05-27 Chong Yidong <cyd@stupidchicken.com>
5665
5666 * select.el: Support clipboard managers with built-in function
5667 x-clipboard-manager-save, via delete-frame-functions and
5668 kill-emacs-hook.
5669 (xselect-convert-to-targets): Add MULTIPLE target to list.
5670 (xselect-convert-to-save-targets): New function.
5671
c92a1e54
KH
56722011-05-27 Kenichi Handa <handa@m17n.org>
5673
5674 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
5675 let-binding rfc2047-encode-encoded-words to nil.
5676
e145f188
GM
56772011-05-27 Glenn Morris <rgm@gnu.org>
5678
5ec8a862
GM
5679 * mail/emacsbug.el: Don't require url-util.
5680
4b29d9fb
GM
5681 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
5682
e145f188
GM
5683 * files.el (set-auto-mode):
5684 Also respect mode: entries at the end of the file. (Bug#8586)
5685
7d15102b
GM
56862011-05-26 Glenn Morris <rgm@gnu.org>
5687
98f593b8
GM
5688 * files.el (hack-local-variables-prop-line, hack-local-variables):
5689 Downcase mode names, as seems to be traditional.
27b48e63 5690 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 5691
7d15102b
GM
5692 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
5693 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
5694
51d5b4ec
JD
56952011-05-25 Julien Danjou <julien@danjou.info>
5696
5697 * textmodes/rst.el (rst-define-level-faces): Do not define face
5698 symbol if it is already defined.
5699
91513f63
VB
57002011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
5701
5702 * play/5x5.el (5x5-new-game, 5x5-randomize):
5703 Reset 5x5-solver-output to nil when a new grid is cast.
5704 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
5705 these debugging traces, as defmacro breaks the compiled code.
5706
4d90d6d0
DK
57072011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
5708
5709 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
5710
e1b90ef6
LL
57112011-05-24 Leo Liu <sdl.web@gmail.com>
5712
5713 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
5714 (vc-bzr-sha1): Adapt.
5715
d8e4b68b 5716 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
5717
5718 * bindings.el: Provide sha1 feature.
5719
db0406bb 57202011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
5721
5722 * mail/sendmail.el: Require `rfc2047'.
5723 (mail-insert-from-field): Do not perform RFC2047 encoding.
5724 (mail-encode-header): New function.
5725 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
5726 buffer to the return value of select-message-coding-system.
5727 Call mail-encode-header.
b8d747b9
KH
5728
5729 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
5730
db0406bb 57312011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 5732
4d90d6d0
DK
5733 * mail/supercite.el (sc-default-cite-frame):
5734 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 5735
eb8a5e9b
GM
57362011-05-24 Glenn Morris <rgm@gnu.org>
5737
f8630703
GM
5738 * progmodes/python.el (brm-menu): Declare.
5739
8831bbed
GM
5740 * emulation/viper.el (viper-set-hooks): Declare.
5741
eb8a5e9b
GM
5742 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
5743 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
5744 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
5745 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
5746 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
5747 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
5748
a2a25d24
SM
57492011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
5750
5751 Add an :exit-function for completion-at-point.
5752
5753 * minibuffer.el (completion--done): New fun.
5754 (completion--do-completion): Use it. New arg `expect-exact'.
5755 (minibuffer-complete, minibuffer-complete-word): Don't output message,
5756 since completion--do-completion does it for us now.
5757 (minibuffer-force-complete): Use completion--done and
5758 completion--replace. Handle sole-completion case with more care.
5759 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
5760 (completion-extra-properties): New var.
5761 (completion-annotate-function): Make obsolete.
5762 (minibuffer-completion-help): Adjust accordingly.
5763 Use completion-list-insert-choice-function.
5764 (completion-at-point, completion-help-at-point):
5765 Bind completion-extra-properties.
5766 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
5767 * simple.el (completion-list-insert-choice-function): New var.
5768 (completion-setup-function): Preserve it.
5769 (choose-completion): Pay attention to it, shuffle the code a bit.
5770 (choose-completion-string): New arg `insert-function'.
5771
5772 * textmodes/bibtex.el: Convert to lexical binding.
5773 (bibtex-mode-map): Use completion-at-point.
5774 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
5775 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
5776 (bibtex-complete): Define as obsolete alias.
5777 (bibtex-complete-internal): Remove.
5778 (bibtex-format-entry): Remove unused sub-group in regexp.
5779 * shell.el (shell--command-completion-data)
5780 (shell-environment-variable-completion):
5781 * pcomplete.el (pcomplete-completions-at-point):
5782 * comint.el (comint--complete-file-name-data): Use :exit-function
5783 instead of completion-table-with-terminator so it also works for
5784 choose-completion.
5785
e44e373d
SM
57862011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
5787
4f91a816
SM
5788 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
5789
782fc819
SM
5790 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
5791 (bug#8710).
5792
e44e373d
SM
5793 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
5794
381987c3
KM
57952011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
5796
5797 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
5798 customization variable and implement: If non-nil, auto-fill will
5799 be inhibited while on topic's header line.
5800
b776bc70
VB
58012011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
5802
5803 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 5804 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
5805 always have a solution in grid size = 5 cases.
5806 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
5807 (5x5-solver-output, 5x5-log-buffer): New vars.
5808 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
5809 Make these variables buffer local to achieve 5x5 multi-session-ness.
5810 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
5811 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
5812 (5x5-solve-suggest): New funs.
5813 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
5814 randomize a grid so that we ensure that there is always a solution.
5815 (5x5-make-random-grid): Allow other movement than flipping.
5816
7de88b6e
KR
58172011-05-23 Kevin Ryde <user42@zip.com.au>
5818
5819 * emacs-lisp/advice.el (ad-read-advised-function):
5820 Use `function-called-at-point' as the default default, if it has
5821 advice and passes PREDICATE.
5822
b1ef1257
SM
58232011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
5824
bbca48fe
SM
5825 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
5826 byte-compile-lambda if it's actually a lambda.
5827
b1ef1257
SM
5828 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
5829 Fix function quoting. Use backquote better.
5830
92a9cc65
YS
58312011-05-22 Yuanle Song <sylecn@gmail.com>
5832
5833 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
5834 matching (Bug#8516).
5835
f0fb8059
JA
58362011-01-22 Jari Aalto <jari.aalto@cante.net>
5837
5838 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
5839 different face (Bug#8178).
5840
d5b44c93
CY
58412011-05-22 Chong Yidong <cyd@stupidchicken.com>
5842
5843 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
5844 defface (Bug#8144).
5845
79106a44
SM
58462011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
5847
9c848d8a
SM
5848 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
5849 funcall as well (bug#8712). Warn when performing those conversions.
5850 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
5851
79106a44
SM
5852 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
5853
88dfa756
GM
58542011-05-22 Glenn Morris <rgm@gnu.org>
5855
5856 * files.el (hack-local-variables-prop-line): Small simplifications.
5857 (hack-local-variables, hack-local-variables-prop-line):
5858 If MODE-ONLY, return the mode, rather than just `t'.
5859
b7cf2c79
SM
58602011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
5861
5862 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
5863
3f1a8558
GM
58642011-05-21 Glenn Morris <rgm@gnu.org>
5865
7e4ccca3
GM
5866 * files.el (hack-local-variables-prop-line, hack-local-variables):
5867 If only interested in the mode, don't bother doing the other stuff.
5868
637d46ca
GM
5869 * image-mode.el (image-after-revert-hook):
5870 Redraw all frames on which the image is visible. (Bug#8567)
5871
973d955b
GM
5872 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
5873
3f1a8558
GM
5874 * wid-edit.el (widget-checklist-match-inline):
5875 Fix 2011-04-19 change. (Bug#8649)
5876
96479927
SM
58772011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
5878
1dcf791f
SM
5879 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
5880 Also allow singlespace after single-letter capitals followed by a dot.
5881
96479927
SM
5882 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
5883 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
5884
35fd0881
N
58852011-05-20 Nix <nix@esperi.org.uk>
5886
5887 * files.el (basic-save-buffer-2):
5888 Fix handling of break-hardlink-on-save with non-existent files.
5889
82745640
DD
58902011-05-19 Deniz Dogan <deniz@dogan.se>
5891
5892 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 5893 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 5894
4a720484
GM
58952011-05-19 Glenn Morris <rgm@gnu.org>
5896
d1f21341
GM
5897 * progmodes/f90.el (f90-type-def-re):
5898 Handle "type, bind(c)". (Bug#8691)
5899
4a720484
GM
5900 * emacs-lisp/autoload.el (batch-update-autoloads):
5901 Set autoload-excludes by parsing loadup.el rather than Makefiles.
5902
2fb0a219
MA
59032011-05-18 Michael Albinus <michael.albinus@gmx.de>
5904
5905 * net/tramp.el (tramp-process-actions): Set "first-password-request"
5906 property for the correct connection in case of multihops.
5907
e565dd37
GM
59082011-05-18 Glenn Morris <rgm@gnu.org>
5909
c2571358 5910 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
5911 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
5912
e565dd37
GM
5913 Rationalize calendar handling of day and month abbrev-arrays.
5914 * calendar/calendar.el (calendar-customized-p): New function.
5915 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
5916 (calendar-day-name-array, calendar-month-name-array): Doc fix.
5917 Add :set function.
5918 (calendar-abbrev-length, calendar-day-abbrev-array)
5919 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
5920 (calendar-day-abbrev-array, calendar-month-abbrev-array):
5921 Elements may no longer be nil.
5922 (calendar-day-name, calendar-month-name):
5923 Update for changed nature of abbrev arrays.
5924 * calendar/diary-lib.el (diary-name-pattern):
5925 Update for changed nature of abbrev arrays.
5926 (diary-mark-entries-1): Update calendar-make-alist calls.
5927 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
5928 * calendar/cal-html.el (cal-html-day-abbrev-array):
5929 Simply inherit from calendar-day-abbrev-array.
5930
1d99a745
SM
59312011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
5932
5933 * progmodes/grep.el (grep-mode): Disable default
5934 compilation-directory-matcher setting (bug#8684).
5935
7c1d9aa0
MA
59362011-05-17 Michael Albinus <michael.albinus@gmx.de>
5937
5938 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
5939 instead of "head" and "tail". There were problems with SunOS 5.9,
5940 and it performs better.
5941
3952e9d8
GM
59422011-05-17 Glenn Morris <rgm@gnu.org>
5943
2dd12e7f
GM
5944 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
5945
e4157b9c
GM
5946 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
5947 Replace obsolete function.
5948
8e249bbd
GM
5949 * shell.el (pcomplete-parse-arguments-function): Declare.
5950
3952e9d8
GM
5951 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
5952 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
5953 (appt-check): Doc fixes.
5954 (appt-disp-window-function, appt-delete-window-function):
5955 Remove needless special case in custom :type.
5956 (appt-display-count): Default to 0, not nil.
5957 (appt-check): Reset appt-display-count to 0, not nil.
5958
c71a0d48 59592011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 5960
c71a0d48
GM
5961 * progmodes/python.el (python-font-lock-keywords):
5962 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 5963
31d55be9
SM
59642011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
5965
5966 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
5967
3bfacb2f
KR
59682011-05-16 Kevin Ryde <user42@zip.com.au>
5969
5970 * info-look.el (makefile-automake-mode): New setups, looking in
5971 automake manual, then makefile-mode.
5972 (makefile-mode): Remove automake manual, have it just in
5973 makefile-automake-mode since there's various things different or
5974 not relevant to plain make.
5975 (makefile-mode): Remove "other-modes" non-existent automake-mode,
5976 believe a hypothetical automake-mode would go to makefile-mode,
5977 not the other way around.
5978
c8e83751
CY
59792011-05-15 Chong Yidong <cyd@stupidchicken.com>
5980
5e9e35cd
CY
5981 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
5982 hunk-end tags (Bug#8672).
5983
c8e83751
CY
5984 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
5985 vc-annotate-show-diff-revision-at-line (Bug#8671).
5986
50b23e5a
GM
59872011-05-14 Glenn Morris <rgm@gnu.org>
5988
7210a739
GM
5989 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
5990 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
5991 (change-log-font-lock-keywords): Also handle multiple author lines
5992 with leading tabs. (Bug#8644)
7210a739 5993
4691905a
GM
5994 * calendar/appt.el (appt-check): Rename some local variables.
5995 Some simplification/reordering.
5996
50b23e5a
GM
5997 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
5998 (feedmail-sendmail-f-doesnt-sell-me-out)
5999 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
6000 (feedmail-debug-sit-for, feedmail-queue-express-hook)
6001 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
6002 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
6003 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
6004 (feedmail-binmail-gnulinuxish-template):
6005 Rename from feedmail-binmail-linuxish-template.
6006 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
6007 Use insert-buffer-substring.
6008
215cda7c
BC
60092011-05-14 Bill Carpenter <bill@carpenter.org>
6010
6011 * mail/feedmail.el (feedmail-patch-level): Increase.
6012 (feedmail-debug): New custom group.
6013 (feedmail-confirm-outgoing-timeout)
6014 (feedmail-sendmail-f-doesnt-sell-me-out)
6015 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
6016 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
6017 (feedmail-sender-line, feedmail-from-line)
6018 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 6019 (feedmail-spray-this-address)
215cda7c
BC
6020 (feedmail-spray-address-fiddle-plex-list)
6021 (feedmail-queue-use-send-time-for-date)
6022 (feedmail-queue-use-send-time-for-message-id)
6023 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
6024 (feedmail-buffer-eating-function):
6025 Doc fixes.
6026 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
6027 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
6028 (feedmail-message-action-scroll-down): New functions.
6029 (feedmail-queue-directory, feedmail-queue-draft-directory):
6030 Use expand-file-name.
6031 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
6032 Remove C-v help entry.
6033 (feedmail-queue-buffer-file-name): New variable.
6034 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
6035 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
6036 (feedmail-message-action-send-strong, feedmail-message-action-edit)
6037 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
6038 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
6039 (feedmail-message-action-toggle-spray)
6040 (feedmail-run-the-queue-no-prompts)
6041 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
6042 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
6043 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
6044 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
6045 (feedmail-envelope-deducer, feedmail-fiddle-from)
6046 (feedmail-fiddle-sender, feedmail-default-date-generator)
6047 (feedmail-fiddle-date, feedmail-fiddle-message-id)
6048 (feedmail-fiddle-spray-address)
6049 (feedmail-fiddle-list-of-spray-fiddle-plexes)
6050 (feedmail-fiddle-list-of-fiddle-plexes)
6051 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
6052 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
6053 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
6054 Change default. Doc fix.
6055 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
6056 (feedmail-binmail-linuxish-template): New constant.
6057 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
6058 Respect feedmail-sendmail-f-doesnt-sell-me-out.
6059 (feedmail-send-it): Add debug call.
6060 Use feedmail-queue-buffer-file-name, and
6061 feedmail-send-it-immediately-wrapper.
6062 (feedmail-message-action-send): Add debug call.
6063 Use feedmail-send-it-immediately-wrapper.
6064 (feedmail-queue-express-to-queue): Add debug call.
6065 Run feedmail-queue-express-hook.
6066 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
6067 (feedmail-message-action-help-blat):
6068 Rename from feedmail-queue-send-edit-prompt-help-first.
6069 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
6070 Check line-endings. Handle errors better.
6071 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
6072 Doc fix. Add debug call.
6073 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
6074 Use feedmail-queue-send-edit-prompt-inner.
6075 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
6076 (feedmail-queue-send-edit-prompt-inner): New function, extracted
6077 from feedmail-queue-send-edit-prompt.
6078 (feedmail-queue-send-edit-prompt-help)
6079 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
6080 (feedmail-tidy-up-slug): Add debug call.
6081 Respect feedmail-queue-slug-suspect-regexp.
6082 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
6083 (feedmail-dump-message-to-queue): Add debug call.
6084 Expand queue-directory.
6085 (feedmail-dump-message-to-queue): Change message slightly.
6086 Use feedmail-say-chatter.
6087 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
6088 (feedmail-send-it-immediately-wrapper): New function.
6089 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
6090 Insert empty string rather than newline. Handle full-frame case.
6091 Use catch/throw. Use feedmail-say-chatter.
6092 (feedmail-fiddle-from): Try mail-host-address.
6093 (feedmail-default-message-id-generator): Doc fix.
6094 Bind system-time-locale. Handle missing end.
6095 (feedmail-fiddle-x-mailer): Add debug call.
6096 Handle feedmail-x-mailer-line being nil.
6097 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
6098 Add debug call. Use buffer-substring-no-properties.
6099 (feedmail-say-debug, feedmail-say-chatter): New functions.
6100 (feedmail-find-eoh): Give an explicit error.
6101
42c7e61e
UJ
61022011-05-13 Ulf Jasper <ulf.jasper@web.de>
6103
c2571358 6104 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 6105 family from helvetica to sans.
c2571358 6106 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
6107 etc/images/newsticker.
6108
c2571358 6109 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
6110 family from helvetica to sans.
6111
6112 * net/newst-plainview.el (newsticker-new-item-face)
6113 (newsticker-old-item-face, newsticker-immortal-item-face)
6114 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 6115 (newsticker-statistics-face): Change default family from
42c7e61e 6116 helvetica to sans.
c2571358 6117 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
6118 etc/images/newsticker.
6119
6120 * net/newst-backend.el (newsticker--do-run-auto-mark-filter),
6121 (newsticker--process-auto-mark-filter-match): : Tell user about
6122 auto-marking.
6123
8497a297
DV
61242011-05-13 Didier Verna <didier@xemacs.org>
6125
6126 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
6127 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
6128 TODO entries.
8497a297
DV
6129 (lisp-lambda-list-keyword-parameter-indentation)
6130 (lisp-lambda-list-keyword-parameter-alignment)
6131 (lisp-lambda-list-keyword-alignment): New customizable user options.
6132 (lisp-indent-defun-method): Improve docstring.
6133 (extended-loop-p): Fix comment.
6134 (lisp-indent-lambda-list-keywords-regexp): New variable.
6135 (lisp-indent-lambda-list): New function.
6136 (lisp-indent-259): Use it.
6137 (lisp-indent-defmethod): Support for more than one
6138 method qualifier and properly indent methods lambda-lists.
6139 (defgeneric): Provide a missing common-lisp-indent-function property.
6140
f278f87f
SM
61412011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
6142
6143 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
6144 bounds for the empty string (bug#8667).
6145
5233edd7
GM
61462011-05-13 Glenn Morris <rgm@gnu.org>
6147
5237a44f
GM
6148 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
6149
8340026c 6150 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 6151 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 6152
5233edd7 6153 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 6154 (appt-time-msg-list): Doc fix.
a5464014 6155 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 6156
92d10796
AS
61572011-05-12 Andreas Schwab <schwab@linux-m68k.org>
6158
6159 * progmodes/ld-script.el (ld-script-keywords)
6160 (ld-script-builtins): Update keywords list.
6161
914a0ae1
SM
61622011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6163
c89be45f
SM
6164 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
6165
914a0ae1
SM
6166 * shell.el (shell-completion-vars): New function.
6167 (shell-mode):
6168 * simple.el (read-shell-command): Use it.
6169 (blink-matching-open): No need for " [...]" in minibuffer-message.
6170
98dc3df3
GM
61712011-05-12 Glenn Morris <rgm@gnu.org>
6172
6173 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
6174 (appt-check): Simplify.
6175
d2fc7e3d 61762011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 6177
4d61f28d 6178 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
6179 literal "/dev/null".
6180
d2fc7e3d 61812011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
6182
6183 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
6184 Fix typo.
6185
d2fc7e3d 61862011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 6187
3f254caa
SM
6188 * progmodes/which-func.el (which-function):
6189 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
6190 which might not be defined (Bug#8260).
6191
d45885f7
GM
61922011-05-12 Glenn Morris <rgm@gnu.org>
6193
6194 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
6195 Let byte-compile-initial-macro-environment always take precedence.
6196
488086f4
SM
61972011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6198
6199 * net/rcirc.el: Add support for SSL/TLS connections.
6200 (rcirc-server-alist): New field `encryption'.
6201 (rcirc): Check `encryption' settings.
6202 (rcirc-connect): New arg `encryption'. Use open-network-stream.
6203 Merge make-local-variable into `set'.
6204 (rcirc--connection-open-p): New function.
6205 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
6206 the process is not a network process (e.g. running gnutls-cli).
6207 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
6208 Make rcirc-(en|de)code-coding-system local here.
6209 (rcirc-mode): Merge make-local-variable into `set'.
6210 (rcirc-parent-buffer): Make permanent buffer-local.
6211 (rcirc-multiline-minor-mode): Don't do it here.
6212 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
6213 there's no server buffer.
6214
7d3b9d44
GM
62152011-05-11 Glenn Morris <rgm@gnu.org>
6216
f64049c6
GM
6217 * newcomment.el (comment-kill): Prefix "unused" local.
6218
93c9df73
GM
6219 * term/w32console.el (get-screen-color): Declare.
6220
7d3b9d44
GM
6221 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
6222 Handle symbol elements of byte-compile-initial-macro-environment.
6223
9e2dd53f
LL
62242011-05-10 Leo Liu <sdl.web@gmail.com>
6225
488086f4
SM
6226 * bookmark.el (bookmark-bmenu-mode-map):
6227 Bind bookmark-bmenu-search to `/'.
8b340240 6228
9e2dd53f 6229 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
6230 (footnote-unicode-string, footnote-unicode-regexp): New variable.
6231 (Footnote-unicode): New function.
6232 (footnote-style-alist): Add unicode style to the list.
6233 (footnote-style): Doc fix.
9e2dd53f 6234
79b70037
GM
62352011-05-10 Jim Meyering <meyering@redhat.com>
6236
6237 Fix doubled-word typos.
6238 * international/quail.el (quail-insert-kbd-layout): and and -> and
6239 * kermit.el: and and -> and
6240 * net/ldap.el (ldap-search-internal): to to -> to
6241 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
6242 * progmodes/js.el (js-mode): and and -> and
6243 * textmodes/artist.el (artist-move-to-xy): at at -> at
6244 (artist-draw-region-trim-line-endings): if if -> if
6245 And Safetyc -> Safety.
6246 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
6247
b8f82dc1 62482011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 6249 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
6250
6251 * files.el (hack-one-local-variable-eval-safep):
6252 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
6253
4f99f44b
GM
62542011-05-10 Glenn Morris <rgm@gnu.org>
6255
6256 * calendar/diary-lib.el (diary-list-entries-hook)
6257 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
6258 (diary-nongregorian-marking-hook, diary-list-entries)
6259 (diary-include-other-diary-files, diary-mark-entries)
6260 (diary-mark-included-diary-files): Doc fixes.
6261
84f29e6b
JB
62622011-05-09 Juanma Barranquero <lekktu@gmail.com>
6263
6264 * misc.el: Require tabulated-list.el during compilation.
6265
9bedd73a
CY
62662011-05-09 Chong Yidong <cyd@stupidchicken.com>
6267
488086f4
SM
6268 * progmodes/compile.el (compilation-start):
6269 Run compilation-filter-hook for the async case too.
9bedd73a
CY
6270 (compilation-filter-hook): Doc fix.
6271
797c735c
DD
62722011-05-09 Deniz Dogan <deniz@dogan.se>
6273
6274 * wdired.el: Remove outdated installation comment. Fix usage
6275 comment.
6276
5f4b1dfe
JB
62772011-05-09 Juanma Barranquero <lekktu@gmail.com>
6278
6279 * misc.el: Implement new command `list-dynamic-libraries'.
6280 (list-dynamic-libraries--loaded-only-p): New variable.
6281 (list-dynamic-libraries--refresh): New function.
6282 (list-dynamic-libraries): New command.
6283
4c44026c
CY
62842011-05-09 Chong Yidong <cyd@stupidchicken.com>
6285
488086f4
SM
6286 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6287 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
6288 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
6289 higher priority to avoid clobbering by gnu.
6290
027f966d
CY
62912011-05-08 Chong Yidong <cyd@stupidchicken.com>
6292
6293 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
6294 if the face has existing theme settings (Bug#8454).
6295
085f5d7d
CY
62962011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
6297
488086f4
SM
6298 * progmodes/perl-mode.el (perl-imenu-generic-expression):
6299 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 6300
2a86a00c
RS
6301 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
6302 special file names `.' and `..' (Bug#8259).
6303
d9c54a06
CY
63042011-05-08 Chong Yidong <cyd@stupidchicken.com>
6305
488086f4
SM
6306 * progmodes/grep.el (grep-mode-font-lock-keywords):
6307 Remove buffer-changing entries.
d9c54a06
CY
6308 (grep-filter): New function.
6309 (grep-mode): Add it to compilation-filter-hook.
6310
6311 * progmodes/compile.el (compilation-filter-hook)
6312 (compilation-filter-start): New defvars.
6313 (compilation-filter): Call compilation-filter-hook prior to
6314 updating the process mark.
6315
c4662635
SM
63162011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
6317
6318 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
6319
b0512a1d
EZ
63202011-05-07 Eli Zaretskii <eliz@gnu.org>
6321
605c9376
EZ
6322 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
6323 mailclient-send-it even if window-system is nil. (Bug#8595)
6324
c4662635
SM
6325 * term/w32console.el (terminal-init-w32console):
6326 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
6327 background-mode. (Bug#8597)
6328
d1dc2cc2
SM
63292011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
6330
6331 Make bytecomp.el understand that defmethod defines funs (bug#8631).
6332 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
6333 New functions.
6334 (defgeneric, eieio--defmethod): Use them.
6335 (eieio-defgeneric): Remove.
6336 (defmethod): Call defgeneric in a way visible to the byte-compiler.
6337
915d1300
GM
63382011-05-07 Glenn Morris <rgm@gnu.org>
6339
a3961c3e
GM
6340 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
6341 Use let rather than let*.
6342 (timeclock-find-discrep): Remove unused local.
6343
314347b9
GM
6344 * calendar/diary-lib.el (diary-comment-start): Doc fix.
6345
915d1300
GM
6346 * calendar/appt.el (appt-time-msg-list): Doc fix.
6347
275b59b0
NF
63482011-05-06 Noah Friedman <friedman@splode.com>
6349
6350 * apropos.el (apropos-print-doc): Only use
6351 emacs-lisp-docstring-fill-column when it is bound to an integer,
6352 per that variable's documentation.
6353
6c19f744
SM
63542011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6355
6356 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 6357 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 6358
60f884b2
GM
63592011-05-06 Glenn Morris <rgm@gnu.org>
6360
5006e634
GM
6361 * calendar/appt.el (appt-message-warning-time): Doc fix.
6362 (appt-warning-time-regexp): New option.
6363 (appt-make-list): Respect appt-message-warning-time.
6364
548d0a63
GM
6365 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
6366 New options.
6367 (diary-add-to-list): Strip comments from the displayed string.
6368 (diary-mode): Set comment-start and comment-end.
6369
60f884b2
GM
6370 * vc/diff-mode.el (smerge-refine-subst): Declare.
6371 (diff-refine-hunk): Don't require smerge-mode when compiling.
6372
989681bb
JB
63732011-05-06 Juanma Barranquero <lekktu@gmail.com>
6374
6375 * simple.el (list-processes): Return nil as the docstring says.
6376
a6bc05e1
MA
63772011-05-05 Michael Albinus <michael.albinus@gmx.de>
6378
6379 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
6380 to "".
6381 (ange-ftp-write-region, ange-ftp-insert-file-contents)
6382 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
6383 determining of binary transfer. (Bug#7383)
6384
23c22e9a
MA
63852011-05-05 Michael Albinus <michael.albinus@gmx.de>
6386
c4662635
SM
6387 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
6388 Fix port computation bug. (Bug#8618)
23c22e9a 6389
0bff894f
GM
63902011-05-05 Glenn Morris <rgm@gnu.org>
6391
b8296902
GM
6392 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
6393
1f522ce8
GM
6394 * simple.el (shell-dynamic-complete-functions)
6395 (comint-dynamic-complete-functions): Declare.
6396
cf5bee67
GM
6397 * net/network-stream.el (gnutls-negotiate):
6398 * simple.el (tabulated-list-print): Fix declarations.
6399
6400 * progmodes/gud.el (syntax-symbol, syntax-point):
6401 Remove unnecessary and incorrect declarations.
6402
0bff894f
GM
6403 * emacs-lisp/check-declare.el (check-declare-scan):
6404 Handle byte-compile-initial-macro-environment in bytecomp.el
6405
9869b3ae
SM
64062011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
6407
6408 Fix earlier half-done eieio-defmethod change (bug#8338).
6409 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
6410 Streamline and change calling convention.
6411 (defmethod): Adjust accordingly and simplify.
6412 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
6413 new eieio--defmethod.
6414 (slot-boundp): Minor CSE simplification.
6415
9c1d5ac5
MZ
64162011-05-05 Milan Zamazal <pdm@zamazal.org>
6417
6418 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
6419 (glasses-make-readable): Use glasses-separate-capital-groups.
6420
455c834e
JB
64212011-05-05 Juanma Barranquero <lekktu@gmail.com>
6422
6423 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
6424 (warning-series): Doc fix.
6425 (display-warning): Don't try to create the buffer if we just found it.
6426
9ed7c8cb
CY
64272011-05-04 Chong Yidong <cyd@stupidchicken.com>
6428
6429 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
6430 (autoload-find-generated-file): New function.
6431 (generate-file-autoloads): Bind generated-autoload-file to
6432 buffer-file-name.
9869b3ae
SM
6433 (update-file-autoloads, update-directory-autoloads):
6434 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
6435 output file (Bug#7989).
6436 (batch-update-autoloads): Doc fix.
6437
0898ca10
JB
64382011-05-04 Juanma Barranquero <lekktu@gmail.com>
6439
6440 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
6441
31dfb76c
GM
64422011-05-04 Glenn Morris <rgm@gnu.org>
6443
f330b642
GM
6444 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
6445 function, so it follows changes in calendar-date-style.
6446 (diary-fancy-date-matcher): New function.
6447 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
6448 (diary-fancy-font-lock-fontify-region-function):
6449 Use diary-fancy-date-pattern as a function.
6450
31dfb76c
GM
6451 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
6452 non-numbers for `year' etc pseudo-variables. (Bug#8583)
6453
48e79d6a
TZ
64542011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
6455
6456 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
6457 instead of positional arguments. Allow :keylist and :crlfiles
6458 arguments.
6459 (open-gnutls-stream): Call it.
6460
6461 * net/network-stream.el (network-stream-open-starttls): Adjust to
6462 call `gnutls-negotiate' with :process and :hostname arguments.
6463
dd5a5ee0
SM
64642011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
6465
ef80fc09
SM
6466 * minibuffer.el (completion--message): New function.
6467 (completion--do-completion, minibuffer-complete)
6468 (minibuffer-force-complete, minibuffer-complete-word): Use it.
6469 (completion--do-completion): Don't ignore completion-auto-help when in
6470 icomplete-mode.
6471
dd5a5ee0
SM
6472 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
6473 internal encoding (e.g. tibetan zero is not whitespace).
6474 (global-whitespace-mode): Prefer save-current-buffer.
6475 (whitespace-trailing-regexp): Remove useless save-match-data.
6476 (whitespace-empty-at-bob-regexp): Minor simplification.
6477
b7d22a83
CY
64782011-05-03 Chong Yidong <cyd@stupidchicken.com>
6479
6480 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
6481
5192af46
AM
64822011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6483
6484 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 6485 Use `concat' to create string for insertion.
5192af46 6486
5767d190
SM
64872011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
6488
6489 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
6490 Avoid open-line which runs post-self-insert-hook.
6491 (bibtex-fill-entry): Remove unused `end' var.
6492
bf242939
AM
64932011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
6494
5767d190
SM
6495 * textmodes/ispell.el (ispell-add-per-file-word-list):
6496 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 6497
25666126
LL
64982011-05-03 Leo Liu <sdl.web@gmail.com>
6499
6500 * isearch.el (isearch-yank-pop): New command.
5767d190 6501 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
6502 (isearch-forward): Mention it.
6503
52d3c2d0
SM
65042011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
6505
1bcace58
SM
6506 * simple.el (minibuffer-complete-shell-command): Remove.
6507 (minibuffer-local-shell-command-map): Use completion-at-point.
6508 (read-shell-command): Setup completion vars here instead.
6509 (read-expression-map): Bind TAB to symbol completion.
6510
52d3c2d0
SM
6511 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
6512 error directly rather via storing it into `results'.
6513
35813471
LL
65142011-05-02 Leo Liu <sdl.web@gmail.com>
6515
6516 * vc/diff.el: Fix description.
6517
e793a940
LMI
65182011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
6519
6520 * server.el (server-eval-at): New function.
6521
8de66e05
LMI
65222011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6523
6524 * net/network-stream.el (open-network-stream): Take a :nowait
6525 parameter and pass it on to `make-network-process'.
6526 (network-stream-open-plain): Ditto.
6527
dcb79f20
AS
65282011-04-30 Andreas Schwab <schwab@linux-m68k.org>
6529
6530 * faces.el (face-spec-set-match-display): Don't match toolkit
6531 options on terminal frames.
6532
14a7fbd8
SM
65332011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
6534
7eabc1be
SM
6535 * progmodes/pascal.el: Use lexical binding.
6536 (pascal-mode-map): Remove author preferences.
6537
14a7fbd8
SM
6538 * pcomplete.el (pcomplete-std-complete): Don't abuse
6539 completion-at-point.
6540
50f84510
JB
65412011-04-28 Juanma Barranquero <lekktu@gmail.com>
6542
6e087a44
JB
6543 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
6544 removing code that has been dead since 1991 or so.
6545
50f84510
JB
6546 * startup.el (command-line): When warning about "_emacs", use a
6547 delayed warning to allow the user to filter it out.
6548
0ba690bd
DD
65492011-04-28 Deniz Dogan <deniz@dogan.se>
6550
6551 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
6552 user has not joined.
6553
08abfaad
SM
65542011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
6555
6556 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
6557 aren't any completions at point.
6558
638f053a
JB
65592011-04-28 Juanma Barranquero <lekktu@gmail.com>
6560
6561 * subr.el (display-delayed-warnings): New function.
6562 (delayed-warnings-hook): New variable.
6563
8fff8daa
SM
65642011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
6565
08abfaad
SM
6566 * minibuffer.el (completion-at-point, completion-help-at-point):
6567 Don't presume that a given completion-at-point-function will always
6568 use the same calling convention.
6569
8fff8daa
SM
6570 * pcomplete.el (pcomplete-completions-at-point):
6571 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
6572 pcomplete-seen is non-nil.
6573 (pcomplete-comint-setup): Also recognize the new comint/shell
6574 completion functions.
6575 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
6576 pcomplete-seen is non-nil.
6577
841a1577 65782011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 6579
841a1577 6580 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 6581 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 6582 the first character in the entry. This allows for code to add its
211ec907
UJ
6583 own uid to the entry.
6584 (icalendar--convert-float-to-ical): Add export of
6585 `diary-float'-entries save for those with the optional DAY
6586 argument.
6587
2a782793
DC
65882011-04-27 Daniel Colascione <dan.colascione@gmail.com>
6589
6590 * subr.el (shell-quote-argument): Use alternate escaping strategy
6591 when we spot a variable reference in a string.
6592
0438ce91
DC
65932011-04-26 Daniel Colascione <dan.colascione@gmail.com>
6594
6595 * cus-start.el (all): Define customization for debug-on-event.
6596
841a1577 65972011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
6598
6599 * subr.el (shell-quote-argument): Escape correctly under Windows.
6600
d090ed6c
SM
66012011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
6602
6603 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
6604
bfd31217
MA
66052011-04-25 Michael Albinus <michael.albinus@gmx.de>
6606
d090ed6c
SM
6607 * net/tramp.el (tramp-process-actions): Add POS argument.
6608 Delete region between POS and (pos).
bfd31217 6609
d090ed6c
SM
6610 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
6611 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
6612 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
6613
6614 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
6615 position in `tramp-process-actions' call.
6616
6617 * net/trampver.el: Update release number.
6618
e92f3bd3
SM
66192011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
6620
850256b5
SM
6621 * custom.el (defcustom): Obey lexical-binding.
6622
e92f3bd3
SM
6623 Fix octave-inf completion problems reported by Alexander Klimov.
6624 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
6625 Inherit from octave-mode-syntax-table.
6626 (inferior-octave-mode): Set info-lookup-mode.
6627 (inferior-octave-completion-at-point): New function.
6628 (inferior-octave-complete): Use it and completion-in-region.
6629 (inferior-octave-dynamic-complete-functions): Use it as well, and use
6630 comint-filename-completion.
6631 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
6632 symbol elements which shouldn't be word elements.
6633 (octave-font-lock-keywords, octave-beginning-of-defun)
6634 (octave-function-header-regexp): Adjust regexps accordingly.
6635 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
6636
cd22b309
JB
66372011-04-25 Juanma Barranquero <lekktu@gmail.com>
6638
6639 * net/gnutls.el (gnutls-errorp): Declare before first use.
6640
8b492194
TZ
66412011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
6642
6643 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
6644 verify-error, and verify-hostname-error parameters. Check whether
cd22b309
JB
6645 default trustfile exists before going to use it. Add missing
6646 argument to gnutls-message-maybe call. Return return value.
8b492194
TZ
6647 Reported by Claudio Bley <claudio.bley@gmail.com>.
6648 (open-gnutls-stream): Add usage example.
6649
6650 * net/network-stream.el (network-stream-open-starttls): Give host
6651 parameter to `gnutls-negotiate'.
6652 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 6653 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 6654
841a1577 66552011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 6656
cd22b309
JB
6657 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
6658 Use correct match group (bug#8438).
05842630 6659
3ba7869c
CY
66602011-04-24 Chong Yidong <cyd@stupidchicken.com>
6661
512e3ae1
CY
6662 * emacs-lisp/package.el (package-built-in-p): Fix typo.
6663 (package-menu--generate): New arg specifying packages to show.
6664 (package-menu-refresh, package-menu-execute, list-packages):
6665 Callers changed.
6666 (package-show-package-list): New function, replacing deleted
6667 package--list-packages (renamed because it is non-internal).
6668
6669 * finder.el (finder-list-matches): Use package-show-package-list
6670 instead of deleted package--list-packages.
6671
e92f3bd3
SM
6672 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
6673 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
6674 (vc-annotate-mode-map): Bind it to RET.
6675
7031be6d
UR
66762011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
6677
6678 * progmodes/etags.el (next-file): Don't use set-buffer to change
6679 buffers (Bug#8478).
6680
4ef177aa
CY
66812011-04-24 Chong Yidong <cyd@stupidchicken.com>
6682
c8d173eb
CY
6683 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
6684
4ef177aa
CY
6685 * apropos.el (apropos-label-face): Avoid variable-pitch face.
6686 (apropos-accumulator): Doc fix.
6687 (apropos-function, apropos-macro, apropos-command)
6688 (apropos-variable, apropos-face, apropos-group, apropos-widget)
6689 (apropos-plist): Add face property.
6690 (apropos-symbols-internal): Fix indentation.
6691 (apropos-print): Simplify help, and recognize apropos-multi-type.
6692 (apropos-print-doc): Use button-type-get to extract the button's
6693 face property. Fill docstring (Bug#8352).
6694
4ffd0d6b 66952011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
6696
6697 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
6698
c6c32125 6699 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 6700 (mpuz-mode-map): Use mapc.
c6c32125
JB
6701 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
6702 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
6703 Fix typos in docstrings.
6704
58d468b4
JB
6705 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
6706 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
6707
6470c3c6
JB
6708 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
6709
4ffd0d6b 67102011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
6711
6712 * minibuffer.el (completion--do-completion): Avoid the "Next char
6713 not unique" prompt if icomplete-mode is enabled (Bug#5849).
6714
3ad8bad0
CY
6715 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
6716 mouse-2 into unread-command-events, it is interpreted correctly.
6717
71d73c9c 6718 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 6719 (image-toggle-display): Doc fix.
71d73c9c 6720
841a1577 67212011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 6722
4ffd0d6b
GM
6723 * textmodes/page.el (what-page): Use line-number-at-pos to
6724 calculate line number (Bug#6825).
6e1dbaa9 6725
c2fb1b60
JB
67262011-04-22 Juanma Barranquero <lekktu@gmail.com>
6727
6728 * eshell/esh-mode.el (find-tag-interactive): Declare function.
6729 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
6730 Pass argument NO-DEFAULT to `find-tag-interactive'.
6731
e02f48d7
JB
67322011-04-22 Juanma Barranquero <lekktu@gmail.com>
6733
6734 Lexical-binding cleanup.
6735
6736 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
6737 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
6738 * progmodes/ada-prj.el (ada-prj-initialize-values)
6739 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
6740 (ada-prj-show-value):
6741 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
6742 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
6743 (antlr-invalidate-context-cache, antlr-options-menu-filter)
6744 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
6745 * progmodes/bug-reference.el (bug-reference-push-button):
6746 * progmodes/fortran.el (fortran-line-length):
6747 * progmodes/glasses.el (glasses-change):
6748 * progmodes/octave-mod.el (octave-fill-paragraph):
6749 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
6750 (python-pdbtrack-grub-for-buffer, python-sentinel):
6751 * progmodes/sql.el (sql-save-connection):
6752 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
6753 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
6754 Mark unused parameters.
6755
6756 * progmodes/compile.el (compilation--flush-directory-cache)
6757 (compilation--flush-parse, compile-internal): Mark unused parameters.
6758 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
6759 (compilation-next-error-function): Remove unused variable `timestamp'.
6760
6761 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
6762 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
6763
6764 * progmodes/dcl-mode.el (dcl-end-of-command):
6765 Remove unused variable `start'.
6766 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
6767 (dcl-option-value-basic, dcl-option-value-offset)
6768 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
6769 Mark unused parameters.
6770 (dcl-save-local-variable): Remove unused variable `val'.
6771 (mode): Declare.
6772
6773 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
6774 Mark unused parameters.
6775 (delphi-ignore-changes): Move before first use.
6776 (delphi-charset-token-at): Remove unused variable `start'.
6777 (delphi-else-start): Remove unused variable `if-count'.
6778 (delphi-comment-block-start, delphi-comment-block-end):
6779 Remove unused variable `kind'.
6780 (delphi-indent-line): Remove unused variable `new-point'.
6781
6782 * progmodes/ebrowse.el (ebrowse-files-list)
6783 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
6784 Mark unused parameters. Don't quote `lambda'.
6785 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
6786 Don't quote `lambda'.
6787 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
6788 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
6789 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
6790 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
6791 Use `ignore-errors'.
6792 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
6793 (ebrowse-view/find-file-and-search-pattern)
6794 (ebrowse-view/find-member-declaration/definition):
6795 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
6796 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
6797 Rename parameter PREFIX-ARG to PREFIX.
6798 (ebrowse-tags-read-name): Remove unused variables `start' and
6799 `member-info'.
6800 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
6801 to `tags-file'.
6802
6803 * progmodes/etags.el (local-find-tag-hook): Declare.
6804 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
6805 Mark unused parameters.
6806
6807 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
6808 (executable-interpret): Mark unused parameter.
6809
6810 * progmodes/flymake.el (flymake-process-sentinel)
6811 (flymake-after-change-function)
6812 (flymake-create-temp-with-folder-structure)
6813 (flymake-get-include-dirs-dot): Mark unused parameters.
6814 (flymake-safe-delete-directory): Remove unused variable `err'.
6815
6816 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
6817 (speedbar-timer-fn, speedbar-line-text)
6818 (speedbar-change-expand-button-char, speedbar-delete-subblock)
6819 (speedbar-center-buffer-smartly): Declare functions.
6820 (gdb-find-watch-expression): Remove unused variable `array'.
6821 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
6822 (gdb-starting): Mark unused parameters.
6823 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
6824 (gdb-table-string): Remove unused variable `res'.
6825 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
6826 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
6827 (gdb-display-buffer): Remove unused variable `cur-size'.
6828
6829 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
6830 allow lexical-binding compilation.
6831 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
6832 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
6833 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
6834 Mark unused parameters.
6835 (gud-gdb-marker-filter): Remove unused variable `match'.
6836 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
6837 lambda expressions and funcall them, instead of using `fset'.
6838
6839 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
6840 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
6841
6842 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
6843 variable `header-beg'; use `let'.
6844
6845 * progmodes/icon.el (indent-icon-exp): Remove unused variables
6846 `restart', `last-sexp' and `at-do'.
6847
6848 * progmodes/js.el (js--debug): Mark unused parameter.
6849 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
6850 (js--splice-into-items): Remove unused variable `item'.
6851 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
6852
6853 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
6854 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
6855 (makefile-complete): Remove unused variable `try'.
6856 (makefile-fill-paragraph, makefile-match-function-end):
6857 Mark unused parameters.
6858
6859 * progmodes/octave-inf.el (inferior-octave-complete):
6860 Remove unused variable `proc'.
6861 (inferior-octave-output-digest): Mark unused parameter.
6862
6863 * progmodes/perl-mode.el (perl-calculate-indent):
6864 Remove unused variable `err'.
6865
6866 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
6867 (prolog-indent-line): Mark unused parameters.
6868 (prolog-indent-line): Remove unused variable `beg'.
6869
6870 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
6871 (reporter-dont-compact-list): Declare.
6872
6873 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
6874 Remove unused variable `char'.
6875 (sh-debug): Mark unused parameter.
6876 (sh-get-indent-info): Remove unused variable `start'.
6877 (sh-calculate-indent): Remove unused variable `var'.
6878
6879 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
6880 (simula-electric-keyword): Remove unused variable `null'.
6881 (simula-search-backward, simula-search-forward): Remove unused
6882 variables `begin' and `end'.
6883
6884 * progmodes/vera-mode.el (vera-guess-basic-syntax):
6885 Remove unused variable `pos'.
6886 (vera-electric-tab, vera-comment-uncomment-region):
6887 Mark unused parameters.
6888 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
6889
7ede3b65
CY
68902011-04-22 Chong Yidong <cyd@stupidchicken.com>
6891
6892 * emacs-lisp/package.el (package--builtins, package-alist)
6893 (package-load-descriptor, package-built-in-p, package-activate)
6894 (define-package, package-installed-p)
6895 (package-compute-transaction, package-buffer-info)
6896 (package--push): Doc fix. Distinguish more clearly between
6897 version strings and version lists.
6898
121656e9
JB
68992011-04-21 Juanma Barranquero <lekktu@gmail.com>
6900
6901 Lexical-binding cleanup.
6902
6903 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
6904 (5x5-make-mutate-best):
6905 * play/fortune.el (fortune-in-buffer):
6906 * play/gomoku.el (gomoku-init-display):
6907 * play/solitaire.el (solitaire, solitaire-do-check):
6908 * play/tetris.el (tetris-default-update-speed-function):
6909 Mark unused parameters.
6910
6911 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
6912 (bubbles--shift): Remove unused variable `char-org'.
6913 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
6914 (bubbles--show-images): Remove unused variable `char'.
6915
6916 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
6917 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
6918 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
6919 (decipher-analyze-buffer): Use ?\s.
6920 (decipher-make-checkpoint): Remove unused variable `mapping'.
6921
6922 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
6923
6924 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
6925 Remove unused variable `result'; use `let'.
6926
6927 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
6928 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
6929 (gametree-children-shown-p, gametree-compute-reduced-score):
6930 Use `ignore-errors'.
6931
6932 * play/handwrite.el (ps-lpr-switches): Declare.
6933 (handwrite): Remove unused variables `pmin' and `lastp'.
6934
6935 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
6936
6937 * play/landmark.el (landmark-init-display)
6938 (landmark-update-naught-weights): Mark unused parameters.
6939 (landmark-y): Remove unused variable `noise'. Simplify.
6940 (landmark-human-plays): Remove unused variable `score'.
6941
6942 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
6943 (mpuz-try-proposal): Remove unused variable `game'.
6944
6945 * play/zone.el (life-patterns): Declare.
6946
80f499c7
JB
69472011-04-20 Juanma Barranquero <lekktu@gmail.com>
6948
6949 * vc/vc.el (ediff-vc-internal): Declare function.
6950
024ff170
SM
69512011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
6952
c0a193ea
SM
6953 * shell.el: Use lexical-binding and std completion UI.
6954 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
6955 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
6956 comint-preoutput-filter-functions rather than on
6957 comint-output-filter-functions.
6958 (shell-command-completion, shell--command-completion-data)
6959 (shell-filename-completion, shell-environment-variable-completion)
6960 (shell-c-a-p-replace-by-expanded-directory): New functions.
6961 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
6962 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
6963 (shell-dynamic-complete-environment-variable): Use them.
6964 (shell-dynamic-complete-as-environment-variable)
6965 (shell-dynamic-complete-as-command): Remove.
6966 (shell-match-partial-variable): Match past point.
6967 * comint.el: Clean up use of completion-at-point-functions.
6968 (comint-completion-at-point): New function.
6969 (comint-mode): Use it completion-at-point-functions.
6970 (comint-dynamic-complete): Make it obsolete.
6971 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
6972 (comint-c-a-p-replace-by-expanded-history): New function.
6973 (comint-dynamic-complete-functions)
6974 (comint-replace-by-expanded-history): Use it.
6975 * minibuffer.el (completion-table-with-terminator): Allow dynamic
6976 termination strings. Try harder to avoid second try-completion.
6977 (completion-in-region-mode-map): Disable bindings that don't work yet.
6978
2dbaa080
SM
6979 * comint.el: Use lexical-binding. Require CL.
6980 (comint-dynamic-complete-functions): Use comint-filename-completion.
6981 (comint-completion-addsuffix): Tweak custom type.
6982 (comint-filename-completion, comint--common-suffix)
6983 (comint--common-quoted-suffix, comint--table-subvert)
6984 (comint--complete-file-name-data): New functions.
6985 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
6986 (comint-dynamic-list-filename-completions): Use them.
6987 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 6988
2dbaa080
SM
6989 * minibuffer.el (completion-in-region-mode):
6990 Keep completion-in-region-mode--predicate global.
6991 (completion-in-region--postch):
6992 Assume completion-in-region-mode--predicate is not null.
6993
c79a6f38
SM
6994 * progmodes/flymake.el (flymake-start-syntax-check-process):
6995 Obey `dir'. Simplify.
6996
024ff170
SM
6997 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
6998 we're in VC after all.
6999
1c6c854e
CS
70002011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
7001
7002 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 7003 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
7004 (vc-version-diff): Use vc-diff-build-argument-list-internal.
7005
bed7f140
SM
70062011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7007
332e62ab
SM
7008 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
7009 add sanity check.
7010
bed7f140
SM
7011 * obsolete/erc-hecomplete.el: Make obsolete.
7012 * obsolete/: Standardize obsolescence info in the header.
7013
f195c582
GM
70142011-04-20 Glenn Morris <rgm@gnu.org>
7015
7016 * calendar/solar.el (solar-horizontal-coordinates):
7017 Use the longitude argument rather than `calendar-longitude'.
7018 (solar-date-next-longitude): Remove unused locals.
7019
cb79b8c0
VJL
70202011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7021
7022 * whitespace.el: New version 13.2.1.
7023
70242011-04-20 felix <EmacsWiki> (tiny change)
7025
d8e4b68b 7026 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
7027 switching between major modes on a file.
7028
602ea69d
SM
70292011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
7030
7031 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
7032 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
7033 multi-line comments as well.
7034
06b60517
JB
70352011-04-19 Juanma Barranquero <lekktu@gmail.com>
7036
7037 Lexical-binding cleanup.
7038
7039 * arc-mode.el (archive-mode-revert):
7040 * cmuscheme.el (scheme-interactively-start-process):
7041 * custom.el (custom-initialize-delay):
7042 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
7043 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
7044 * emacs-lock.el (emacs-lock-clear-sentinel):
7045 * ezimage.el (defezimage):
7046 * follow.el (follow-avoid-tail-recenter):
7047 * fringe.el (set-fringe-mode-1):
7048 * generic-x.el (bat-generic-mode-compile):
7049 * help-mode.el (help-info-variable, help-do-xref)
7050 (help-mode-revert-buffer):
7051 * help.el (view-emacs-todo):
7052 * iswitchb.el (iswitchb-completion-help):
7053 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
7054 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
7055 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
7056 * locate.el (locate-update):
7057 * longlines.el (longlines-encode-region)
7058 (longlines-after-change-function):
7059 * outline.el (outline-isearch-open-invisible):
7060 * ps-def.el (declare-function, charset-dimension, char-width)
7061 (encode-char):
7062 * ps-mule.el (ps-mule-plot-string):
7063 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
7064 (recentf-edit-list-select, recentf-edit-list-validate)
7065 (recentf-open-files-action):
7066 * rect.el (delete-whitespace-rectangle-line)
7067 (rectangle-number-line-callback):
7068 * register.el (window-configuration-to-register)
7069 (frame-configuration-to-register):
7070 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
7071 * select.el (xselect-convert-to-string, xselect-convert-to-length)
7072 (xselect-convert-to-targets, xselect-convert-to-delete)
7073 (xselect-convert-to-filename, xselect-convert-to-charpos)
7074 (xselect-convert-to-lineno, xselect-convert-to-colno)
7075 (xselect-convert-to-os, xselect-convert-to-host)
7076 (xselect-convert-to-user, xselect-convert-to-class)
7077 (xselect-convert-to-name, xselect-convert-to-integer)
7078 (xselect-convert-to-atom, xselect-convert-to-identity):
7079 * subr.el (declare, ignore, process-kill-without-query)
7080 (text-clone-maintain):
7081 * terminal.el (te-get-char, te-tic-sentinel):
7082 * tool-bar.el (tool-bar-make-keymap):
7083 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
7084 * type-break.el (type-break-mode, type-break-noninteractive-query):
7085 * view.el (View-back-to-mark):
7086 * wid-browse.el (widget-browse-action, widget-browse-widget)
7087 (widget-browse-widgets, widget-browse-sexp):
7088 * widget.el (define-widget-keywords):
7089 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
7090 Mark unused parameters.
7091
7092 * align.el (align-adjust-col-for-rule): Mark unused parameter.
7093 (align-areas): Remove unused variable `look'.
7094 (align-region): Remove unused variables `real-end' and `pos-list'.
7095
7096 * apropos.el (apropos-score-doc): Remove unused variable `i'.
7097
7098 * bindings.el (mode-line-modified, mode-line-remote):
7099 Mark unused parameters.
7100 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
7101
7102 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
7103 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
7104
7105 * comint.el (comint-history-isearch-pop-state)
7106 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
7107 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
7108 (comint-substitute-in-file-name): Doc fix.
7109
7110 * completion.el (cmpl-statistics-block): Mark unused parameter.
7111 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
7112 (save-completions-to-file, load-completions-from-file):
7113 Remove unused local variable `e'.
7114
7115 * composite.el (compose-chars): Remove unused variable `len'.
7116 (lgstring-insert-glyph): Remove unused variable `g'.
7117 (compose-glyph-string): Remove unused variables `ascent',
7118 `descent', `lbearing' and `rbearing'.
7119 (compose-glyph-string-relative): Remove unused variables
7120 `lbearing', `rbearing' and `wadjust'.
7121 (compose-gstring-for-graphic): Remove unused variables `header',
7122 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
7123 (compose-gstring-for-terminal): Remove unused variables `header'
7124 and `nchars'. Use `let', not `let*'.
7125
7126 * cus-edit.el (Custom-set, Custom-save, custom-reset)
7127 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
7128 (Custom-buffer-done, custom-buffer-create-internal)
7129 (custom-browse-visibility-action, custom-browse-group-tag-action)
7130 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
7131 (widget-magic-mouse-down-action, custom-toggle-parent)
7132 (custom-add-parent-links, custom-toggle-hide-variable)
7133 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
7134 (custom-toggle-hide-face, face, hook, custom-group-link-action)
7135 (custom-face-menu-create, custom-variable-menu-create, get)
7136 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
7137 (custom-reset-standard-save-and-update): Remove unused variable `value'.
7138 (customize-apropos): Remove unused variable `tests'.
7139 (custom-group-value-create): Remove unused variable `hidden-p'.
7140 (sort-fold-case): Declare.
7141
7142 * cus-theme.el (custom-reset-standard-faces-list)
7143 (custom-reset-standard-variables-list): Declare.
7144 (customize-create-theme, custom-theme-revert, custom-theme-write)
7145 (custom-theme-choose-mode, customize-themes, custom-theme-save):
7146 Mark unused parameters.
7147
7148 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
7149
7150 * delim-col.el (delimit-columns-max): Move defvar before first use.
7151
7152 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 7153 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
7154
7155 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
7156 (auto-insert): Declare.
7157 (desktop-restore-file-buffer): Rename desktop-* parameters;
7158 mark unused ones.
7159 (desktop-create-buffer): Rename desktop-* parameters and bind them.
7160 (desktop-buffer): Rename desktop-* parameters.
7161
7162 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
7163 (dframe-reposition-frame-xemacs, dframe-help-echo)
7164 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
7165 Mark unused parameters.
7166
7167 * dired-aux.el (backup-extract-version-start, overwrite-query)
7168 (overwrite-backup-query, rename-regexp-query)
7169 (rename-non-directory-query): Declare.
7170 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
7171 (dired-add-entry): Remove unused variable `orig-file-name'.
7172 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
7173 Use parameter PRESERVE-TIME instead of accessing dynamic variable
7174 `dired-copy-preserve-time' directly.
7175 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
7176 (dired-insert-subdir-newpos): Rename unused variable `pos'.
7177
7178 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
7179 (dired-virtual-revert, dired-make-relative-symlink):
7180 Mark unused parameters.
7181 (manual-program): Declare.
7182 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
7183 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
7184 wrapped in `with-no-warnings' to avoid replacing one warning by another.
7185
7186 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
7187
7188 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
7189
7190 * echistory.el (electric-history-in-progress, Helper-return-blurb):
7191 Declare.
7192
7193 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
7194
7195 * electric.el (Electric-command-loop): Rename parameter
7196 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
7197
7198 * expand.el (expand-in-literal): Remove unused variable `here'.
7199
7200 * facemenu.el (facemenu-add-new-color):
7201 Remove unused variable `docstring'.
7202
7203 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
7204 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
7205 (face-attr-construct): Mark unused parameter. Doc fix.
7206 (read-color): Remove unused variable `hex-string'.
7207
7208 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
7209 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
7210 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
7211 (display-buffer-other-frame): Remove unused variable `old-window'.
7212 (kill-buffer-hook): Declare.
7213 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
7214 Mark unused parameters.
7215 (after-find-file): Pass 1 to `auto-save-mode', not t.
7216
7217 * files-x.el (auto-insert): Declare.
7218 (modify-file-local-variable-prop-line): Remove unused variable `val'.
7219
7220 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 7221 variable `buf'. Mark unused parameter.
06b60517
JB
7222 (find-lisp-insert-directory): Mark unused parameter.
7223
7224 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
7225 (format-encode-region): Remove unused variables `cur-buf' and `result'.
7226 (format-common-tail): Remove, unused.
7227 (format-deannotate-region): Remove unused variable `loc'.
7228 (format-annotate-region): Remove unused variable `p'.
7229 (format-annotate-single-property-change): Remove unused variables
7230 `default' and `tail'.
7231
7232 * forms.el (read-file-filter): Declare.
7233 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
7234
7235 * frame.el (frame-creation-function-alist): Mark unused parameter.
7236 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
7237
7238 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
7239 Remove unused parameters.
7240 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
7241 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
7242
7243 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
7244 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
7245 (hfy-prepare-tag-map): Mark unused parameters.
7246 (htmlfontify-buffer): Use `called-interactively-p'.
7247
7248 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
7249 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
7250 (ibuffer-do-occur): Mark unused parameters.
7251 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
7252 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
7253
7254 * ibuffer.el: Don't quote `lambda'.
7255 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
7256 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
7257 Mark unused parameters.
7258
7259 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
7260 (ido-completing-read): Mark unused parameters.
7261 (ido-copy-current-word): Mark unused parameters;
7262 remove unused variable `name'.
7263 (ido-sort-merged-list): Remove unused parameter `dirs'.
7264
7265 * ielm.el (ielm-input-sender): Mark unused parameter.
7266 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
7267 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
7268 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
7269 `ielm-string' as a dynamic variable accessible from the IELM prompt.
7270 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
7271
7272 * image-dired.el (image-dired-display-thumbs): Remove unused
7273 variables `curr-file' and `count'.
7274 (image-dired-remove-tag): Remove unused variable `start'.
7275 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
7276 variable `curr-file'
7277 (image-dired-rotate-original): Remove unused variable `temp-file'.
7278 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
7279 Remove unused variable `file'.
7280 (image-dired-gallery-generate): Remove unused variable `curr'.
7281 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
7282
7283 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
7284
7285 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
7286
7287 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
7288
7289 * isearch.el (minibuffer-history-symbol): Declare.
7290 (isearch-edit-string): Remove unused variable `err'.
7291 (isearch-message-prefix, isearch-message-suffix):
7292 Mark unused parameters.
7293
7294 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
7295
7296 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
7297
7298 * makesum.el (double-column): Remove unused variable `cnt'.
7299
7300 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
7301 (ido-ignore-item-temp-list): Declare.
7302
7303 * mouse-drag.el (mouse-drag-throw): Remove unused variables
7304 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
7305 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
7306 (mouse-drag-drag): Remove unused variables `mouse-delta' and
7307 `mouse-col-delta'.
7308
7309 * mouse-sel.el (mouse-extend-internal):
7310 Remove unused variable `orig-window-frame'.
7311
7312 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
7313 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
7314 Move declarations before first use.
7315 (pcomplete-opt): Mark unused parameters; doc fix.
7316
7317 * proced.el (proced-revert): Mark unused parameter.
7318 (proced-send-signal): Remove unused variable `err'.
7319
7320 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
7321 Rename parameter PREFIX-ARG to ARG.
7322 (ps-basic-plot-string, ps-basic-plot-whitespace):
7323 Mark unused parameters.
7324
7325 * replace.el (replace-count): Define.
7326 (occur-revert-function): Mark unused parameters.
7327 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
7328 (isearch-case-fold-search, isearch-string): Declare.
7329 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
7330 bind `case-fold-search'. Remove unused variables `beg' and `end',
7331 and simplify.
7332 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
7333 COUNT and bind `replace-count'.
7334 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
7335 to COUNT.
7336
7337 * savehist.el (print-readably, print-string-length): Declare.
7338
7339 * shadowfile.el (shadow-expand-cluster-in-file-name):
7340 Remove unused variable `cluster'.
7341 (shadow-copy-file): Remove unused variable `i'.
7342 (shadow-noquery, shadow-clusters, shadow-site-cluster)
7343 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
7344 (shadow-define-literal-group, shadow-define-regexp-group)
7345 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
7346
7347 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
7348 (shell): Use `called-interactively-p'.
7349 (shell-directory-tracker): Remove unused variable `chdir-failure'.
7350
7351 * simple.el (compilation-context-lines, comint-file-name-quote-list)
7352 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
7353 (delete-backward-char): Remove unused variable `ocol'.
7354 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
7355 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
7356 (event-apply-hyper-modifier, event-apply-shift-modifier)
7357 (event-apply-control-modifier, event-apply-meta-modifier):
7358 Mark unused parameters.
7359 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
7360 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
7361
7362 * speedbar.el (speedbar-ignored-directory-expressions)
7363 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
7364 (speedbar-find-file, speedbar-dir-follow)
7365 (speedbar-directory-buttons-follow, speedbar-tag-find)
7366 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
7367 (speedbar-buffers-line-directory, speedbar-buffer-click):
7368 Mark unused parameters.
7369 (speedbar-tag-file): Remove unused variable `mode'.
7370 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
7371
7372 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
7373
7374 * talk.el (talk): Remove unused variable `display'.
7375
7376 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
7377 (tar-write-region-annotate): Mark unused parameter.
7378
7379 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
7380 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
7381 Declare them, wrapped in `with-no-warnings' to avoid replacing one
7382 warning by another.
7383
7384 * time-stamp.el (time-stamp-string-preprocess):
7385 Remove unused variable `require-padding'.
7386
7387 * tree-widget.el (widget-glyph-enable): Declare.
7388 (tree-widget-action): Mark unused parameter.
7389
7390 * w32-fns.el (x-get-selection): Mark unused parameter.
7391 (autoload-make-program, generated-autoload-file): Declare.
7392
7393 * wdired.el (wdired-revert): Mark unused parameters.
7394 (wdired-xcase-word): Remove unused variable `err'.
7395
7396 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
7397 (whitespace-help-scroll): Remove unused variable `data-help'.
7398
7399 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
7400 (widget-image-insert, widget-after-change, default)
7401 (widget-default-format-handler, widget-default-notify)
7402 (widget-default-prompt-value, widget-info-link-action)
7403 (widget-url-link-action, widget-function-link-action)
7404 (widget-variable-link-action, widget-file-link-action)
7405 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
7406 (widget-field-prompt-internal, widget-field-action, widget-field-match)
7407 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
7408 (widget-insert-button-action, widget-delete-button-action, visibility)
7409 (widget-documentation-link-action, widget-documentation-string-action)
7410 (widget-const-prompt-value, widget-regexp-match, symbol)
7411 (widget-coding-system-prompt-value)
7412 (widget-key-sequence-value-to-external, sexp)
7413 (widget-sexp-value-to-internal, character, vector, cons)
7414 (widget-choice-prompt-value, widget-boolean-prompt-value)
7415 (widget-color--choose-action): Mark unused parameters.
7416 (widget-item-match-inline, widget-choice-match-inline)
7417 (widget-checklist-match, widget-checklist-match-inline)
7418 (widget-group-match): Rename parameter VALUES to VALS.
7419 (widget-field-value-set): Remove unused variable `size'.
7420 (widget-color-action): Remove unused variables `value' and `start'.
7421
7422 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 7423 variable `dir'. Doc fix.
06b60517
JB
7424 (windmove-find-other-window): Don't pass it.
7425
7426 * window.el (count-windows): Mark unused parameter.
7427 (bw-adjust-window): Remove unused variable `err'.
7428
7429 * woman.el (woman-file-name): Remove unused variable `default'.
7430 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
7431 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
7432 (global-font-lock-mode): Declare.
7433 (woman-decode-region): Mark unused parameter.
7434 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
7435
7436 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
7437 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
7438 (x-dnd-handle-moz-url): Remove unused variable `title'.
7439 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
7440
7441 * xml.el (xml-parse-tag, xml-parse-attlist):
7442 Remove unused variable `pos'.
7443
bc4f7f3d
GM
74442011-04-19 Glenn Morris <rgm@gnu.org>
7445
7446 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
7447 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
7448 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
7449 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
7450 * calendar/cal-html.el (cal-html-insert-minical):
7451 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
7452 (calendar-mark-date-pattern):
7453 Prefix "unused" locals.
7454
7455 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
7456 optional argument `style'.
7457
7458 * calendar/appt.el (appt-make-list):
7459 * calendar/cal-china.el (calendar-chinese-date-string):
7460 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
7461 (diary-hebrew-yahrzeit):
7462 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
7463 * calendar/calendar.el (calendar-generate-window):
7464 * calendar/time-date.el (time-to-days):
7465 Remove unused local variables.
7466
16a43933
CY
74672011-04-18 Chong Yidong <cyd@stupidchicken.com>
7468
7469 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
7470 glyphless-char-display table.
7471 (tabulated-list-glyphless-char-display): New var.
7472
7eed1860
SS
74732011-04-18 Sam Steingold <sds@gnu.org>
7474
7475 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
7476 to acknowledgments.
7477
4d2d1ccd
GM
74782011-04-17 Glenn Morris <rgm@gnu.org>
7479
7480 * calendar/diary-lib.el (diary-sexp-entry):
7481 * calendar/holidays.el (holiday-sexp):
7482 Set debug-on-error rather than the removed stack-trace-on-error.
7483
239da61d
GM
74842011-04-16 Glenn Morris <rgm@gnu.org>
7485
7486 * progmodes/f90.el: Use lexical-binding.
7487 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
7488
8b05752a
SM
74892011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
7490
daca8ba5
SM
7491 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
7492 (mail-mode): Setup mailalias completion here instead.
7493 * mail/mailalias.el: Use lexical-binding.
7494 (pattern, mailalias-done): Declare dynamic.
7495 (mail-completion-at-point-function): New function, from mail-complete.
7496 (mail-complete): Use it.
7497 (mail-completion-expand): New function.
7498 (mail-get-names): Use it.
7499 (mail-directory, mail-directory-process, mail-directory-stream):
7500 Don't use `pattern' for lexically bound arg.
7501
6f542485
SM
7502 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
7503
037e7c3f
SM
7504 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
7505 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
7506 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
7507
8b05752a
SM
7508 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
7509 (byte-save-window-excursion, byte-temp-output-buffer-setup)
7510 (byte-interactive-p): Define them again, for use when inlining
7511 old code.
7512
49093f60
JB
75132011-04-15 Juanma Barranquero <lekktu@gmail.com>
7514
7515 * loadup.el: Use `string-to-number', not `string-to-int'.
7516
b5b8e7de
SM
75172011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
7518
7519 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
7520 gud-gdb-complete-command.
7521 (gud-gdb-completions): New function, from gud-gdb-complete-command.
7522 (gud-gdb-completion-at-point): New function.
7523 (gud-gdb-completions): Remove.
7524
f42efeb5
MA
75252011-04-14 Michael Albinus <michael.albinus@gmx.de>
7526
49093f60
JB
7527 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
7528 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
7529 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
7530 whether `executable-find' is bound.
f42efeb5
MA
7531
7532 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
7533
e240cc21
SM
75342011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
7535
7536 * minibuffer.el (completion-in-region-mode-predicate)
7537 (completion-in-region-mode--predicate): New vars.
7538 (completion-in-region, completion-in-region--postch)
7539 (completion-in-region-mode): Use them.
7540 (completion--capf-wrapper): Also return the hook function.
7541 (completion-at-point, completion-help-at-point):
7542 Adjust and provide a predicate.
c2bd2ab0
SM
7543
7544 Preserve arg names for advice of subr and lexical functions (bug#8457).
7545 * help-fns.el (help-function-arglist): Consolidate the subr and
7546 new-byte-code cases. Add argument `preserve-names' to extract names
7547 from the docstring when needed.
7548 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
7549 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
7550 (ad-arglist): Use help-function-arglist's new arg.
7551 (ad-definition-type): Use cond.
7552
c183f693
JB
75532011-04-13 Juanma Barranquero <lekktu@gmail.com>
7554
06641a47
JB
7555 * autorevert.el (auto-revert-handler):
7556 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
7557 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
7558 Don't quote lambda.
7559
c183f693
JB
7560 * image-mode.el (image-transform-set-scale):
7561 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
7562
1e3b6001
G
75632011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
7564
7565 * net/network-stream.el (network-stream-open-starttls): Only do
7566 opportunistic STARTTLS upgrades if we have built-in gnutls support.
7567 Upgrades via gnutls-cli are too slow to be done opportunistically.
7568
2d6af8dd
JB
75692011-04-12 Juanma Barranquero <lekktu@gmail.com>
7570
7571 * dframe.el (dframe-current-frame): Remove spurious quote.
7572
c0749a51
GM
75732011-04-12 Glenn Morris <rgm@gnu.org>
7574
088d0d61
GM
7575 * calendar/cal-tex.el (cal-tex-end-document):
7576 Try to automatically use latin1 input if needed.
7577
c0749a51
GM
7578 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
7579 Don't try to cons a mark onto an empty element.
7580
5c90fde0
LL
75812011-04-11 Leo Liu <sdl.web@gmail.com>
7582
7583 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
7584 buffers.
7585 (ido-kill-buffer-at-head): Support killing virtual buffers.
7586
369e974d
CY
75872011-04-10 Chong Yidong <cyd@stupidchicken.com>
7588
7589 * minibuffer.el (completion-show-inline-help): New var.
7590 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
7591 (minibuffer-force-complete, minibuffer-complete-word):
7592 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
7593
7594 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
7595 to avoid interference from inline help (Bug#5849).
7596
37f1c930
LL
75972011-04-10 Leo Liu <sdl.web@gmail.com>
7598
099c39a4
JB
7599 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
7600 Fix typo.
37f1c930 7601
a32d4040
CY
76022011-04-09 Chong Yidong <cyd@stupidchicken.com>
7603
7604 * image-mode.el (image-toggle-display-image): Signal an error if
7605 not in Image mode.
7606 (image-transform-mode, image-transform-resize)
7607 (image-transform-set-rotation): Doc fix.
daca8ba5 7608 (image-transform-set-resize): Delete.
a32d4040
CY
7609 (image-transform-set-scale, image-transform-fit-to-height)
7610 (image-transform-fit-to-width): Handle image-toggle-display-image
7611 and image-transform-resize directly.
7612
099c39a4 76132011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
7614
7615 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
7616 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
7617 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
7618 (doc-view-mode-map): Add bindings for the new functions.
7619
099c39a4 76202011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 7621
4d61f28d 7622 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
7623 Fix typo in docstring.
7624
3726838a
EZ
76252011-04-08 Eli Zaretskii <eliz@gnu.org>
7626
04f33f1e
EZ
7627 * files.el (file-size-human-readable): Produce one digit after
7628 decimal, like "ls -lh" does.
7629
7630 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
7631 the file size representation.
7632
3726838a
EZ
7633 * simple.el (list-processes): If async subprocesses are not
7634 available, error out with a clear error message.
7635
cbb59342
CY
76362011-04-08 Chong Yidong <cyd@stupidchicken.com>
7637
7638 * help.el (help-form-show): New function, to be called from C.
7639 Put help-form output in a buffer named differently than *Help*.
7640
e3971c44
EZ
76412011-04-08 Eli Zaretskii <eliz@gnu.org>
7642
7643 * files.el (file-size-human-readable): New function.
7644
7645 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
7646 computing the representation inline. Don't require `cl'.
7647
12544bbe
GM
76482011-04-08 Glenn Morris <rgm@gnu.org>
7649
a1de6c6a
GM
7650 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
7651
3c4671f4
GM
7652 * net/browse-url.el (browse-url-firefox):
7653 Test system-type, not system-configuration.
7654
b605679c
GM
7655 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
7656 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
7657 Use log-edit-empty-buffer-p. (Bug#7598)
7658
56442f0c
GM
7659 * net/rlogin.el (rlogin-process-connection-type): Simplify.
7660 (rlogin-mode-map): Initialize in the defvar.
7661 (rlogin): Use ignore-errors.
7662
12544bbe
GM
7663 * replace.el (occur-mode-map): Some fixes for menu items.
7664
eb237b0f
AH
76652011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7666
7667 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
7668
7d668f2c
CY
76692011-04-06 Chong Yidong <cyd@stupidchicken.com>
7670
e67a13ab
CY
7671 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
7672 issuing unused warnings.
7673
7674 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
7675 macro directly.
7676
7d668f2c
CY
7677 * simple.el: Lisp reimplement of list-processes. Based on an
7678 earlier reimplementation by Leo Liu, but using tabulated-list.el.
7679 (process-menu-mode): New major mode.
7680 (list-processes--refresh, list-processes):
7681 (process-menu-visit-buffer): New functions.
7682
7683 * files.el (save-buffers-kill-emacs): Don't assume any return
7684 value of list-processes, which is undocumented anyway.
7685
a83ec3c9
CY
76862011-04-06 Chong Yidong <cyd@stupidchicken.com>
7687
7688 * emacs-lisp/tabulated-list.el: New file.
7689
e91a96fe
CY
7690 * emacs-lisp/package.el: Use Tabulated List mode.
7691 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
7692 (package-menu-mode): Derive from tabulated-list-mode. Set up the
7693 table format using Tabulated List mode variables.
7694 (package--push): New macro, replacing package-list-maybe-add.
7695 (package-menu--generate): Use package--push. Renamed from
7696 package--generate-package-list.
7697 (package-menu-refresh, list-packages): Use it.
daca8ba5 7698 (package-menu--print-info): Rename from package-print-package.
e91a96fe 7699 Return insertion data instead of inserting it directly.
099c39a4
JB
7700 (package-menu-describe-package, package-menu-execute):
7701 Use tabulated-list-get-id.
e91a96fe
CY
7702 (package-menu-mark-delete, package-menu-mark-install)
7703 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
7704 (package-menu-mark-obsolete-for-deletion):
7705 Use tabulated-list-put-tag.
e91a96fe
CY
7706 (package--list-packages, package-menu-revert)
7707 (package-menu-get-package, package-menu-get-version)
7708 (package-menu-sort-by-column): Functions deleted.
7709 (package-menu-package-list, package-menu-sort-key): Vars deleted.
7710 (package-menu--status-predicate, package-menu--version-predicate)
7711 (package-menu--name-predicate)
7712 (package-menu--description-predicate): Handle arguments in the
7713 Tabulated List format.
7714 (package-list-packages-no-fetch): Call list-packages.
7715
3e214b50
JB
77162011-04-06 Juanma Barranquero <lekktu@gmail.com>
7717
7718 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 7719 (after-find-file): Don't bind it.
3e214b50
JB
7720 (revert-buffer-in-progress-p): New variable.
7721 (revert-buffer): Bind it.
7722 Pass nil for `after-find-file-from-revert-buffer'.
7723
7724 * saveplace.el (save-place-find-file-hook): Use new variable
7725 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
7726
3f0f1700
GM
77272011-04-06 Glenn Morris <rgm@gnu.org>
7728
c0274801
GM
7729 * Makefile.in (AUTOGEN_VCS): New variable.
7730 (autoloads): Use $AUTOGEN_VCS.
7731
3f0f1700
GM
7732 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
7733 * calendar/calendar.el (calendar-mode-map):
7734 Check for toolkit scroll bars. (Bug#8305)
7735
41ea9e48
CY
77362011-04-05 Chong Yidong <cyd@stupidchicken.com>
7737
7738 * minibuffer.el (completion-in-region--postch)
7739 (completion-in-region-mode): Remove unnecessary messages.
7740
6194c800
JB
77412011-04-05 Juanma Barranquero <lekktu@gmail.com>
7742
33256f14
JB
7743 * font-lock.el (font-lock-refresh-defaults):
7744 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
7745 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
7746
6194c800
JB
7747 * info.el (Info-directory-list, Info-read-node-name-2)
7748 (Info-split-parameter-string): Doc fixes.
7749 (Info-virtual-nodes): Reflow docstring.
7750 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
7751 (Info-apropos-toc-nodes, info-finder, Info-get-token)
7752 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
7753 Fix typos in docstrings.
7754 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
7755 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
7756 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
7757 (Info-restore-desktop-buffer): Mark unused parameters.
7758 (Info-directory-find-file, Info-directory-find-node)
7759 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
7760 (Info-virtual-index-find-node, Info-apropos-find-file)
7761 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 7762 Mark unused parameters; fix typos in docstrings.
6194c800
JB
7763 (Info-virtual-index): Remove unused local variable `nodename'.
7764
b87a8200 77652011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 7766
b87a8200
DD
7767 * net/rcirc.el: Update my e-mail address.
7768 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 7769
3b2ff876
CY
77702011-04-05 Chong Yidong <cyd@stupidchicken.com>
7771
7772 * startup.el (command-line): Save the cursor's theme-face
7773 directly, instead of using face-override-spec.
7774
7775 * custom.el (load-theme): Minor optimization in assigning faces.
7776
8d17e7ca
JB
77772011-04-04 Juanma Barranquero <lekktu@gmail.com>
7778
7779 * help-fns.el (describe-variable): Complete all variables having
7780 documentation, including keywords.
7781 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
7782
2fbc1934
JB
77832011-04-04 Juanma Barranquero <lekktu@gmail.com>
7784
7785 Convert to lexical-binding.
7786
7787 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
7788 (bs--get-marked-string, bs--get-modified-string)
7789 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
7790 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
7791 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
7792
7793 * ehelp.el (electric-help-execute-extended)
7794 (electric-help-ctrl-x-prefix):
7795 * hexl.el (hexl-revert-buffer-function):
7796 * linum.el (linum-after-change, linum-after-scroll):
7797 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
7798
7799 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
7800
74f50695
DU
78012011-04-04 Daiki Ueno <ueno@unixuser.org>
7802
7803 * epa-dired.el:
7804 * epa-mail.el:
7805 * epa-hook.el:
7806 * epa-file.el:
7807 * epa.el:
7808 * epg.el: Use lexical binding.
7809
c11325f7
CY
78102011-04-03 Chong Yidong <cyd@stupidchicken.com>
7811
0d9e9a12
CY
7812 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
7813
c11325f7 7814 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
7815 dictionary case for flyspell-mark-duplications-exceptions.
7816 Use regexp matching for languages.
c11325f7
CY
7817 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
7818 default dictionary (Bug#7926).
7819
da91b5f2
CY
78202011-04-02 Chong Yidong <cyd@stupidchicken.com>
7821
099c39a4
JB
7822 * emacs-lisp/package.el (package--with-work-buffer):
7823 Recognize https URLs.
da91b5f2 7824
099c39a4
JB
7825 * net/network-stream.el: Move from gnus/proto-stream.el.
7826 Change prefix to network-stream throughout.
da91b5f2
CY
7827 (open-protocol-stream): Merge into open-network-stream, leaving
7828 open-protocol-stream as an alias. Handle nil BUFFER args.
7829
7830 * subr.el (open-network-stream): Move to net/network-stream.el.
7831
afa8e9f6
GM
78322011-04-02 Glenn Morris <rgm@gnu.org>
7833
1d2e369d
GM
7834 * find-dired.el (find-exec-terminator): New option.
7835 (find-ls-option): Test for -ls support.
7836 (find-ls-subdir-switches): Test for -b in find-ls-option.
7837 (find-dired, find-grep-dired): Doc fixes.
7838 (find-dired): Use find-exec-terminator.
7839
8abb7da8 7840 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
7841 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
7842 (find-name-arg): Remove purecopy.
8abb7da8 7843
f3ca7378
GM
7844 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
7845 (grep-compute-defaults): Check for `-exec COMMAND +' support.
7846 Set grep-find-use-xargs, grep-find-command, and grep-find-template
7847 accordingly. Don't add the null-device if not needed.
7848
afa8e9f6
GM
7849 * files.el (save-some-buffers): Doc fix.
7850
35eae264
EZ
78512011-04-02 Eli Zaretskii <eliz@gnu.org>
7852
7853 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
7854
26b51db5
JB
78552011-04-01 Juanma Barranquero <lekktu@gmail.com>
7856
7857 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
7858 Use `dolist' rather than `mapcar'.
7859
7200d79c
SM
78602011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
7861
03408648 7862 Add lexical binding.
7200d79c 7863
03408648
SM
7864 * subr.el (apply-partially): Use new closures rather than CL.
7865 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
7866 (dolist, dotimes): Use slightly different expansion for lexical code.
7867 (functionp): Move to C.
7868 (letrec): New macro.
7869 (with-wrapper-hook): Use it and apply-partially instead of CL.
7870 (eval-after-load): Preserve lexical-binding.
7871 (save-window-excursion, with-output-to-temp-buffer): Turn them
7872 into macros.
7200d79c 7873
03408648
SM
7874 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
7875
7876 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
7877 than the arglist.
7878 (help-add-fundoc-usage): Don't add `Not documented'.
7879 (help-function-arglist): Handle closures, subroutines, and new
7880 byte-code-functions.
7881 (help-make-usage): Remove leading underscores.
7882 (describe-function-1): Handle closures.
7883 (describe-variable): Use special-variable-p for completion.
7884
7885 * files.el (lexical-binding): Declare safe.
f488fb65 7886
03408648
SM
7887 * emacs-lisp/pcase.el: Don't use destructuring-bind.
7888 (pcase--memoize): Rename from pcase-memoize. Change weakness.
7889 (pcase): Add `let' pattern.
7890 Change memoization so it actually works.
7891 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
7892 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
7893 <let>: New case.
f488fb65 7894
03408648
SM
7895 * emacs-lisp/macroexp.el: Use lexical binding.
7896 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
7897 Don't convert ' to #' without checking that it's indeed quoting
7898 a lambda.
7899
7900 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 7901 Use eval-sexp-add-defvars.
03408648
SM
7902 (eval-sexp-add-defvars): New fun.
7903
7904 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
7905
7906 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
7907 Don't autoload.
7908 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
7909 than the internal `byte-compile-lambda'.
7910 (defmethod): Don't hide code under quotes.
7911 (eieio-defmethod): New `code' argument.
7912
7913 * emacs-lisp/eieio-comp.el: Remove.
7914
7915 * emacs-lisp/edebug.el (edebug-eval-defun)
7916 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
7917 (edebug-toggle): Avoid `eval'.
7918
7919 * emacs-lisp/disass.el (disassemble-internal): Handle new
7920 `closure' objects.
7921 (disassemble-1): Handle new byte codes.
7922
7923 * emacs-lisp/cl.el (pushnew): Silence warning.
7924
7925 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
7926 (cl-byte-compile-throw): Remove.
7927 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
7928
7929 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
7930 closures.
7931
7932 * emacs-lisp/cconv.el: New file.
7933
7934 * emacs-lisp/bytecomp.el: Use lexical binding instead of
7935 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
7936 (byte-compile-initial-macro-environment):
7937 Handle declare-function here.
7938 (byte-compile--lexical-environment): New var.
7939 (byte-stack-ref, byte-stack-set, byte-discardN)
7940 (byte-discardN-preserve-tos): New lap codes.
7941 (byte-interactive-p): Don't use any more.
7942 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
7943 New macros.
7944 (byte-compile-lapcode): Use them and handle new lap codes.
7945 (byte-compile-obsolete): Remove.
7946 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
7947 (byte-compile-arglist-warn): Check late def of inlinable funs.
7948 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
7949 since they should have been expanded by now.
7950 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
7951 (byte-compile-from-buffer): Remove unused second arg.
7952 (byte-compile-preprocess): New function.
7953 (byte-compile-toplevel-file-form): New function to distinguish
7954 file-form calls from outside from file-form calls from hunk-handlers.
7955 (byte-compile-file-form): Simplify.
7956 (byte-compile-file-form-defsubst): Remove.
7957 (byte-compile-file-form-defmumble): Simplify now that
7958 byte-compile-lambda always returns a byte-code-function.
7959 (byte-compile): Preprocess.
7960 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
7961 Remove, not used any more.
7962 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
7963 (byte-compile-make-args-desc): New funs.
7964 (byte-compile-lambda): Handle lexical functions. Always return
7965 a byte-code-function.
7966 (byte-compile-reserved-constants): New var, to make up room for
7967 closed-over variables.
7968 (byte-compile-constants-vector): Obey it.
7969 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
7970 (byte-compile-macroexpand-declare-function): New function.
7971 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
7972 byte-code-functions.
7973 (byte-compile-form): Check obsolescence here.
7974 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
7975 (byte-compile-variable-ref): Remove.
7976 (byte-compile-dynamic-variable-op): New fun.
7977 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
7978 (byte-compile-variable-set): New funs.
7979 (byte-compile-discard): Add 2 args.
7980 (byte-compile-stack-ref, byte-compile-stack-set)
7981 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
7982 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
7983 macroexpand-all instead.
7984 (byte-compile-quote-form): Remove.
7985 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
7986 (byte-compile-bind, byte-compile-unbind): New funs.
7987 (byte-compile-let): Handle let* and lexical binding.
7988 (byte-compile-let*): Remove.
7989 (byte-compile-catch, byte-compile-unwind-protect)
7990 (byte-compile-track-mouse, byte-compile-condition-case):
7991 Handle a new :fun-body form, used for lexical scoping.
7992 (byte-compile-save-window-excursion)
7993 (byte-compile-with-output-to-temp-buffer): Remove.
7994 (byte-compile-defun): Simplify.
7995 (byte-compile-stack-adjustment): New fun.
7996 (byte-compile-out): Use it.
7997 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
7998
7999 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
8000 handler any more.
8001
8002 * emacs-lisp/byte-opt.el: Use lexical binding.
8003 (byte-inline-lapcode): Remove (to bytecomp).
8004 (byte-compile-inline-expand): Pay attention to inlining to/from
8005 lexically bound code.
8006 (byte-compile-unfold-lambda): Don't handle byte-code-functions
8007 any more.
8008 (byte-optimize-form-code-walker): Don't handle save-window-excursion
8009 any more and don't call compiler-macros.
8010 (byte-compile-splice-in-already-compiled-code): Remove.
8011 (byte-code): Don't inline any more.
8012 (disassemble-offset): Receive `bytes' as argument rather than via
8013 dynamic scoping.
8014 (byte-compile-tag-number): Declare before first use.
8015 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
8016 `return' even if make-spliceable.
8017 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
8018 obsolete interactive-p.
8019 (byte-optimize-lapcode): Optimize new lap-codes.
8020 Don't trip up on new form of `byte-constant' lap code.
8021
8022 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
8023
8024 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
8025
8026 * custom.el (custom-initialize-default, custom-declare-variable):
8027 Use `defvar'.
8028
8029 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
8030 New variables.
8031 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
8032 (COMPILE_FIRST): Add macroexp and cconv.
8033 * makefile.w32-in: Mirror changes in Makefile.in.
8034
8035 * vc/cvs-status.el:
8036 * vc/diff-mode.el:
8037 * vc/log-edit.el:
8038 * vc/log-view.el:
8039 * vc/smerge-mode.el:
8040 * textmodes/bibtex-style.el:
8041 * textmodes/css.el:
8042 * startup.el:
8043 * uniquify.el:
da91b5f2
CY
8044 * minibuffer.el:
8045 * newcomment.el:
8046 * reveal.el:
8047 * server.el:
8048 * mpc.el:
8049 * emacs-lisp/smie.el:
8050 * doc-view.el:
8051 * dired.el:
03408648
SM
8052 * abbrev.el: Use lexical binding.
8053
0f0c1f27
EZ
80542011-04-01 Eli Zaretskii <eliz@gnu.org>
8055
8056 * info.el (info-display-manual): New function.
8057
c82b2579
SM
80582011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8059
8060 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
8061
221ddf68
TH
80622011-03-31 Tassilo Horn <tassilo@member.fsf.org>
8063
8064 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 8065 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 8066
cba6e77e
GM
80672011-03-31 Glenn Morris <rgm@gnu.org>
8068
e040639f
GM
8069 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
8070
cba6e77e
GM
8071 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
8072
6d0f1c9e
CS
80732011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
8074
8075 * progmodes/python.el (python-default-interpreter)
8076 (python-python-command-args, python-jython-command-args)
8077 (python-which-shell, python-which-args, python-which-bufname)
8078 (python-file-queue, python-comint-output-filter-function)
8079 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
8080 variables and functions.
8081
3e2d70fd
SM
80822011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
8083
8084 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
8085 (completion-in-region-mode): New minor mode.
8086 (completion-in-region): Use it.
8087 (completion-in-region--data, completion-in-region-mode-map): New vars.
8088 (completion-in-region--postch): New function.
8089 (completion--capf-misbehave-funs, completion--capf-safe-funs):
8090 New vars.
8091 (completion--capf-wrapper): New function.
8092 (completion-at-point): Use it to track well-behavedness of
8093 hook functions.
8094 (completion-help-at-point): New command.
8095
f3e4086c
JM
80962011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
8097
8098 * vc/add-log.el (add-change-log-entry): Don't use whitespace
8099 syntax class to search for whitespace on a single line
8100 (Message-ID: <4D938140.4030905@redhat.com>).
8101
eb7ffc14
LL
81022011-03-30 Leo Liu <sdl.web@gmail.com>
8103
8104 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
8105 New commands.
8106 (edit-abbrevs-map): Bind them here.
8107 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
8108
d806ab68
KM
81092011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
8110
8111 * allout.el (allout-hide-by-annotation, allout-flag-region):
8112 Reduce possibility of overlay leakage by making them volatile.
8113
8114 * allout-widgets.el (allout-widgets-tally): Define as nil so the
8115 hash is not shared between buffers. Mode initialization is
8116 responsible for giving it a useful starting value.
8117 (allout-item-span): Reduce possibility of overlay leakage by
8118 making them volatile.
8119 (allout-widgets-count-buttons-in-region): Add diagnostic function
8120 for tracking down button overlay leaks.
8121
ea622834
LL
81222011-03-29 Leo Liu <sdl.web@gmail.com>
8123
8124 * ido.el (ido-read-internal): Use the default history var
8125 minibuffer-history if no HISTORY is specified.
8126
b62f8267
G
81272011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
8128
03408648
SM
8129 * net/imap.el (imap-shell-open, imap-process-connection-type):
8130 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
8131 Kerberos, SSL, other subprocesses.
8132
947b6566
LL
81332011-03-28 Leo Liu <sdl.web@gmail.com>
8134
8135 * abbrev.el (abbrev-table-empty-p): New function.
8136 (prepare-abbrev-list-buffer): Place empty abbrev tables after
8137 nonempty ones. (Bug#5937)
8138
5ffb62aa
JD
81392011-03-27 Jan Djärv <jan.h.d@swipnet.se>
8140
8141 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
8142
7a097943
LL
81432011-03-27 Leo Liu <sdl.web@gmail.com>
8144
8145 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
8146 for foreground and background colors.
8147 (ansi-color-make-color-map): Adapt.
8148
c5b40130
LL
81492011-03-25 Leo Liu <sdl.web@gmail.com>
8150
1f48f7d2
LL
8151 * midnight.el (midnight-time-float): Remove. Note it calculates
8152 the microsecond component incorrectly and seconds-to-time does the
8153 same job.
625897ec 8154 Remove redundant (require 'timer).
1f48f7d2 8155
c5b40130
LL
8156 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
8157 (ido-completions): Remove unused arguments. (Bug#8329)
8158
d86d2721
SM
81592011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
8160
8161 * minibuffer.el (completion--flush-all-sorted-completions):
8162 Remove itself from hook.
8163 (completion-at-point): Let the functions perform the completion
8164 immediately and return nil or t.
8165 * comint.el (comint-dynamic-complete-functions): Now identical to
8166 completion-at-point-functions.
8167 (comint-dynamic-list-input-ring): Remove unused var `index'.
8168 (comint--match-partial-filename, comint--unquote&expand-filename):
8169 New funs, split from comint-match-partial-filename.
8170 (comint-dynamic-complete): Use completion-at-point.
8171 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
8172
e8974c48
DA
81732011-03-24 Drew Adams <drew.adams@oracle.com>
8174
8175 * thingatpt.el: Support `defun'.
8176
def71b5e
LL
81772011-03-23 Leo Liu <sdl.web@gmail.com>
8178
cb5af48e
LL
8179 * abbrevlist.el: Move to obsolete/abbrevlist.el.
8180
def71b5e
LL
8181 * help-mode.el (help-mode-finish): Tweak regexp.
8182
927c53e7
GM
81832011-03-23 Glenn Morris <rgm@gnu.org>
8184
18d05bed
GM
8185 * eshell/esh-opt.el (eshell-eval-using-options):
8186 Do not bind unused local variable `eshell-option-stub'.
8187
927c53e7
GM
8188 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
8189
9d0da923
JB
81902011-03-22 Juanma Barranquero <lekktu@gmail.com>
8191
8192 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
8193 keymap variable in `with-no-warnings' to avoid a warning when the
8194 keymap has been already `defconst'ed.
8195
4b978a67
LL
81962011-03-22 Leo Liu <sdl.web@gmail.com>
8197
8198 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
8199 encode all chars in abbrevs; otherwise use emacs-mule or
8200 utf-8-emacs. (Bug#8308)
8201
5fd62452
JB
82022011-03-22 Juanma Barranquero <lekktu@gmail.com>
8203
0b1596c6
JB
8204 * simple.el (backward-delete-char-untabify):
8205 Avoid warning about using `delete-backward-char'.
8206
5fd62452
JB
8207 * image.el (image-type-file-name-regexps): Make it variable.
8208 `imagemagick-register-types' modifies it, and the user may want
8209 to add new extensions for known image types.
8210 (imagemagick-register-types): Throw error if not using ImageMagick.
8211
0b4e93f1
LL
82122011-03-22 Leo Liu <sdl.web@gmail.com>
8213
8214 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
8215 located before rcirc-prompt-end-marker.
8216 (rcirc-complete): Error if point is not after rcirc prompt.
8217 Handle the case when table is nil.
9882e214 8218 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 8219
fccee4ab
CY
82202011-03-22 Chong Yidong <cyd@stupidchicken.com>
8221
8222 * custom.el (custom--inhibit-theme-enable): Make it affect only
8223 custom-theme-set-variables and custom-theme-set-faces.
8224 (provide-theme): Ignore custom--inhibit-theme-enable.
8225 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
8226 (custom-enabling-themes): Delete variable.
d86d2721
SM
8227 (enable-theme): Accept only loaded themes as arguments.
8228 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
8229 (custom-enabled-themes): Forbid themes from setting this.
8230 Eliminate use of custom-enabling-themes.
8231 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 8232
af896da6
LL
82332011-03-21 Leo Liu <sdl.web@gmail.com>
8234
8235 * ido.el (ido-read-internal): Add ido-selected to history instead
8236 of user input.
8237
78f64af0
SM
82382011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
8239
8240 * subr.el (deferred-action-list, deferred-action-function):
8241 Mark obsolete.
8242
b16ac1ec
LL
82432011-03-21 Leo Liu <sdl.web@gmail.com>
8244
810f7698
LL
8245 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
8246 change on 2011-02-13 (bug#8309).
8247
b16ac1ec
LL
8248 * minibuffer.el (read-file-name-function): Change default value.
8249 (read-file-name--defaults): Rename from read-file-name-defaults.
8250 (read-file-name-default): Rename from read-file-name.
8251 (read-file-name): Call read-file-name-function.
8252
4e05e67e
GM
82532011-03-21 Glenn Morris <rgm@gnu.org>
8254
8255 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
8256 Doc fixes.
8257
4359915b
CY
82582011-03-21 Chong Yidong <cyd@stupidchicken.com>
8259
8260 * cus-theme.el: Add missing provide statement.
8261 (customize-create-theme): Extract theme value correctly.
8262 (custom-theme-visit-theme): Autoload.
8263 (customize-create-theme): Prompt before inserting default faces.
8264
1fe275ee
JB
82652011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
8266
8267 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
8268 units and musical notes.
8269
3ec03f7e
LL
82702011-03-20 Leo <sdl.web@gmail.com>
8271
8272 * ido.el (ido-read-internal): Use completing-read-default.
8273 (ido-completing-read): Fix compatibility with completing-read.
8274
7d476bde
CO
82752011-03-20 Christian Ohler <ohler@gnu.org>
8276
8277 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
8278 (ert-delete-all-tests): Use `called-interactively-p' rather than
8279 `interactive-p'.
8280 (ert--make-xrefs-region): Respect END.
8281
fe0fb33e
CY
82822011-03-19 Chong Yidong <cyd@stupidchicken.com>
8283
ff854b0b
CY
8284 * dired-aux.el (dired-create-directory): Signal an error if the
8285 directory already exists (Bug#8246).
8286
fe0fb33e
CY
8287 * facemenu.el (list-colors-display): Call list-faces-display
8288 inside with-help-window.
8289 (list-colors-print): Use display property to align the final
8290 column, instead of checking window-width.
8291
576bce32
EZ
82922011-03-19 Eli Zaretskii <eliz@gnu.org>
8293
4d61f28d 8294 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
8295 windows-nt systems.
8296 (emerge-protect-metachars): Quote correctly for ms-dos and
8297 windows-nt systems.
8298
89c41d68 82992011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
8300
8301 * info.el (info-initialize): Replace all uses of `:' with
8302 path-separator for compatibility with non-Unix systems.
8303 Cache quoting of path-separator. (Bug#8258)
8304
b14e3e21 83052011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
8306
8307 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
8308 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
8309 (mouse-avoidance-mode): Fix typos in docstrings.
8310
4525ce3e
CY
83112011-03-19 Chong Yidong <cyd@stupidchicken.com>
8312
8313 * startup.el (package-subdirectory-regexp): Move from package.el.
8314 Omit \\` and \\', and let callers add them.
8315
8316 * emacs-lisp/package.el (package-strip-version)
8317 (package-load-all-descriptors): Add \\` and \\' to
8318 package-subdirectory-regexp before using it.
8319 (package-untar-buffer): New arg DIR; ensure that file untars only
8320 into this expected directory. Remove superfluous delete-region.
8321 (package-unpack): Caller changed.
8322 (package-tar-file-info): Use package-subdirectory-regexp.
8323
a904a09a 83242011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 8325
a904a09a
SM
8326 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
8327 diff-mode-shared-map (bug#8284).
8328 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
8329
83302011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
8331
8332 * calendar/time-date.el (format-seconds): Use assoc instead of
8333 assoc-string, since assoc-string doesn't exist in XEmacs.
8334
171fc304
JB
83352011-03-17 Juanma Barranquero <lekktu@gmail.com>
8336
8337 * custom.el (custom-known-themes): Reflow docstring.
8338 (custom-theme-load-path): Fix typo in docstring.
8339 (load-theme): Fix typo in error message.
8340 (custom-available-themes, custom-variable-theme-value):
8341 Use `let', not `let*'.
8342
d71990a1
JB
83432011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
8344
8345 * calc/README: Mention inclusion of musical notes.
8346
8347 * calc/calc-units.el (calc-lu-quant): Rename from
8348 `calc-logunits-quantity'.
8349 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
8350 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
8351 (calc-db): Rename from `calc-dblevel'.
8352 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
8353 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
8354 (calc-np): Rename from `calc-nplevel'.
8355 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
8356 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
8357 (calc-lu-plus): Rename from `calc-logunits-add'.
8358 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
8359 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
8360 (calc-lu-minus): Rename from `calc-logunits-sub'.
8361 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
8362 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
8363 (calc-lu-times): Rename from `calc-logunits-mul'.
8364 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
8365 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
8366 (calc-lu-divide): Rename from `calc-logunits-div'.
8367 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
8368 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
8369
8370 * calc/calc-ext.el (calc-init-extensions): Update the names of the
8371 functions being autoloaded.
8372
8373 * calc/calc.el (calc-lu-power-reference): Rename from
8374 `calc-logunits-power-reference'.
8375 (calc-lu-field-reference): Rename from
8376 `calc-logunits-field-reference'.
8377
8378 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
8379
40c2934b
SM
83802011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
8381
8382 * minibuffer.el (completion-all-sorted-completions):
8383 Use :completion-cycle-penalty text property if present.
8384
b0911414
KM
83852011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
8386
8387 * allout.el (allout-yank-processing): Adjust for new rebulleting
8388 regime so bullet being yanked is used without prompting the user
8389 for a choice.
8390
8a05b668
JB
83912011-03-16 Juanma Barranquero <lekktu@gmail.com>
8392
8393 * startup.el (command-line): Warn the user that _emacs is deprecated.
8394
5ba5fb81
JB
83952011-03-16 Juanma Barranquero <lekktu@gmail.com>
8396
8397 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
8398 (delphi-verbose, delphi-comment-face, delphi-string-face)
8399 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
8400 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
8401 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
8402 (delphi-new-comment-line, delphi-font-lock-defaults)
8403 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
8404 Fix typos in docstrings.
8405
2dab465b
KM
84062011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
8407
5ba5fb81 8408 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
8409 Invert the roles of character and string values for INSTEAD, so a
8410 string is used for the more common case of a defaulting prompt.
8411
0adf5618
SM
84122011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
8413
8414 * progmodes/ruby-mode.el (ruby-backward-sexp):
8415 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
8416 * play/gamegrid.el (gamegrid-make-face):
8417 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
8418 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
8419 * notifications.el (notifications-notify):
8420 * net/xesam.el (xesam-search-engines):
8421 * net/quickurl.el (quickurl-list-insert):
8422 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
8423
d72700e5
CY
84242011-03-15 Chong Yidong <cyd@stupidchicken.com>
8425
8426 * startup.el (command-line): Update package subdirectory regexp.
8427
49c5410a
SM
84282011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
8429
c6eee9aa
SM
8430 * allout.el (allout-abbreviate-flattened-numbering)
8431 (allout-mode-deactivate-hook): Fix up obsolescence "date".
8432
49c5410a
SM
8433 * subr.el (read-char-choice): Only show the cursor after the prompt,
8434 not after the answer.
8435
047b2bb9
KR
84362011-03-15 Kevin Ryde <user42@zip.com.au>
8437
8438 * help-fns.el (variable-at-point): Skip leading quotes, if any
8439 (bug#8253).
8440
0a57d256
SM
84412011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
8442
8443 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
8444 warning message.
8445
77c992bc
MA
84462011-03-14 Michael Albinus <michael.albinus@gmx.de>
8447
8448 * shell.el (shell): When called interactively, offer to change the
8449 shell file name on remote hosts.
8450
eebc475d
TZ
84512011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
8452
8453 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
8454 integration for LDAP parameters. The host, base, user or binddn,
8455 and secret tokens can be specified in a netrc file, for instance.
8456 This is optional because an `auth-source' parameter must be
8457 specified in the search attributes.
8458
9d05d1ba
JB
84592011-03-13 Juanma Barranquero <lekktu@gmail.com>
8460
8461 * help.el (describe-mode): Link to the mode's definition (bug#8185).
8462
09d9db2c
GM
84632011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
8464
8465 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
8466 into declaration. Remove redundant and harmful binding.
8467
84682011-03-12 Eli Zaretskii <eliz@gnu.org>
8469
8470 * files.el (file-ownership-preserved-p): Pass `integer' as an
8471 explicit 2nd argument to `file-attributes'. If the file's owner
8472 is the Administrators group on Windows, and the current user is
8473 Administrator, consider that a match.
8474
8475 * server.el (server-ensure-safe-dir): Consider server directory
8476 safe on MS-Windows if its owner is the Administrators group while
8477 the current Emacs user is Administrator. Use `=' to compare
8478 numerical UIDs, since they could be integers or floats.
8479
219bd536
JB
84802011-03-12 Juanma Barranquero <lekktu@gmail.com>
8481
8482 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
8483
f3afd36b
MA
84842011-03-12 Michael Albinus <michael.albinus@gmx.de>
8485
8486 Sync with Tramp 2.2.1.
8487
8488 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
8489
8490 * net/trampver.el: Update release number.
8491
3aaaa6f1
SM
84922011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
8493
94642599
SM
8494 * progmodes/compile.el (compilation--previous-directory): Fix up
8495 various nil/dead-marker mismatches (bug#8014).
8496 (compilation-directory-properties, compilation-error-properties):
8497 Don't call it at a position past the one we're about to change.
8498
3aaaa6f1
SM
8499 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
8500 Disable obsolescence warnings in the file that declares it.
8501
14239447
KM
85022011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
8503
099c39a4
JB
8504 * allout-widgets.el (allout-widgets-tally):
8505 Initialize allout-widgets-tally as a hash table rather than nil to
8506 prevent mode-line redisplay warnings. Also, clarify the module
8507 description and fix a comment typo.
14239447 8508
135e287c
JB
85092011-03-11 Juanma Barranquero <lekktu@gmail.com>
8510
8511 * help-fns.el (describe-variable): Don't complete keywords.
8512 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
8513
ffbf300e
CY
85142011-03-10 Chong Yidong <cyd@stupidchicken.com>
8515
ba08b241
CY
8516 * emacs-lisp/package.el (package-version-join): Impose a standard
8517 string representation for pre/alpha/beta version lists.
8518 (package-unpack-single): Standardize the directory name by passing
8519 it through package-version-join.
8520 (package-strip-rcs-id): Accept any version string that does not
8521 signal an error in version-to-list.
ffbf300e 8522
f346fd6b
MA
85232011-03-10 Michael Albinus <michael.albinus@gmx.de>
8524
8525 * simple.el (delete-trailing-whitespace): Return nil for the
8526 benefit of `write-file-functions'.
8527
ccb55d27
GM
85282011-03-10 Glenn Morris <rgm@gnu.org>
8529
5ceaac0c
GM
8530 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
8531
02da65ff
GM
8532 * vc/vc-git.el (vc-git-program): New option.
8533 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
8534 (vc-git--call): Use it.
8535
b2f603cc
GM
8536 * eshell/esh-util.el (eshell-condition-case): Doc fix.
8537
5772caab
GM
8538 * cus-edit.el (Custom-newline): If no button at point, look
8539 for a subgroup button at start-of-line. (Bug#2298)
8540
ccb55d27
GM
8541 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
8542
ec6ecaed
JD
85432011-03-10 Julien Danjou <julien@danjou.info>
8544
8545 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
8546 `cursor-type' is nil.
8547
9d5aa01d
JB
85482011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
8549
8550 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
8551
b6a5875b
KM
85522011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
8553
8554 * allout.el Summary: Change so yank of distinctive-bullet items
8555 preserves the existing header prefix, rebulleting it if necessary,
8556 rather than replacing it. This is necessary for proper operation
8557 of cooperative addons like allout-widgets.
219bd536 8558 (allout-make-topic-prefix, allout-rebullet-heading): Change
b6a5875b
KM
8559 SOLICIT arg to INSTEAD, and interpret additionally a string value
8560 as alternate bullet to be used, instead of prompting the user for
8561 a bullet character.
8562
ee545c35
MA
85632011-03-09 Michael Albinus <michael.albinus@gmx.de>
8564
d86d2721
SM
8565 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
8566 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
8567 `tramp-default-port'.
8568
c47971d7
DD
85692011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
8570
8571 * net/rcirc.el (rcirc-handler-001): Remove useless
8572 with-rcirc-process-buffer.
8573 (rcirc-check-auth-status): Swap arguments to string-match.
8574
13522cb4
GM
85752011-03-09 Glenn Morris <rgm@gnu.org>
8576
0be6f4f1
GM
8577 * shell.el (shell-mode):
8578 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
8579
13522cb4
GM
8580 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
8581 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
8582
515de2e3
CY
85832011-03-08 Chong Yidong <cyd@stupidchicken.com>
8584
8585 * emacs-lisp/package.el (package-refresh-contents)
8586 (package-menu-execute): Use condition-case-no-debug.
8587
b511b994
MA
85882011-03-08 Michael Albinus <michael.albinus@gmx.de>
8589
8590 * simple.el (shell-command-to-string): Use `process-file'.
8591
8592 * emacs-lisp/package.el (package-tar-file-info): Handle also
8593 remote files.
8594
d86d2721
SM
8595 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8596 Use `equal' for upload base check.
b511b994 8597
25bbfb31
AM
85982011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
8599
8600 * textmodes/texinfo.el (texinfo-environments):
8601 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
8602
be996521
GM
86032011-03-08 Glenn Morris <rgm@gnu.org>
8604
e9c8529f
GM
8605 * cus-start.el (cursor-in-non-selected-windows):
8606 Fix :set quoting oddness. (Bug#8192)
8607
be996521
GM
8608 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
8609 in some setf expressions. (Bug#2159)
8610
2bb5649e
CY
86112011-03-08 Chong Yidong <cyd@stupidchicken.com>
8612
8613 * custom.el (custom-available-themes): Return themes in
8614 alphabetical order.
8615
33383987 8616See ChangeLog.15 for earlier changes.
e3d51b27
MR
8617
8618;; Local Variables:
8619;; coding: utf-8
e3d51b27
MR
8620;; End:
8621
33383987 8622 Copyright (C) 2011 Free Software Foundation, Inc.
e3d51b27
MR
8623
8624 This file is part of GNU Emacs.
8625
8626 GNU Emacs is free software: you can redistribute it and/or modify
8627 it under the terms of the GNU General Public License as published by
8628 the Free Software Foundation, either version 3 of the License, or
8629 (at your option) any later version.
8630
8631 GNU Emacs is distributed in the hope that it will be useful,
8632 but WITHOUT ANY WARRANTY; without even the implied warranty of
8633 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8634 GNU General Public License for more details.
8635
8636 You should have received a copy of the GNU General Public License
8637 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.