* progmodes/sql.el (sql-comint): Suppress the check for program on
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
2bb1ae55
MA
12012-07-13 Michael Albinus <michael.albinus@gmx.de>
2
3 * progmodes/sql.el (sql-comint): Suppress the check for program on
4 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
5 (Bug#11908)
6
dea31bd3
CY
72012-07-13 Chong Yidong <cyd@gnu.org>
8
9 * bindings.el: Assign a non-nil permanent-local property to
10 per-buffer variables which lack a default value (Bug#11930).
11
12 * help-fns.el (describe-variable): In the "automatically becomes
13 local" notice, take note of permanent-local variables.
14
b68b3337
CY
152012-07-13 Chong Yidong <cyd@gnu.org>
16
17 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
18 to allow printing the message when called from Lisp.
19
20 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
21 Remove toggle-read-only.
22
23 * bs.el (bs-toggle-readonly):
24 * buff-menu.el (Buffer-menu-toggle-read-only): Remove
25 with-no-warnings around toggle-read-only.
26
27 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
28 Remove with-no-warnings around toggle-read-only.
29 (ffap-read-only, ffap-read-only-other-window)
30 (ffap-read-only-other-frame): Callers changed.
31
32 * help-mode.el: Don't require view package.
33 (help-mode-finish): Set buffer-read-only instead of calling
34 toggle-read-only.
35
36 * bindings.el (mode-line-toggle-read-only):
37 * dired.el (dired-toggle-read-only):
38 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
39 with non-nil second arg.
40
41 * emacs-lisp/eieio-custom.el (eieio-customize-object):
42 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
43 directly.
44
56bc1586
EZ
452012-07-12 Eli Zaretskii <eliz@gnu.org>
46
47 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
48 not incf.
49
a464a6c7
SM
502012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
51
52 More CL cleanups and reduction of use of cl.el.
53 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
54 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
55 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
56 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
57 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
58 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
59 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
60 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
61 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
62 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
63 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
64 * eshell/em-cmpl.el, eshell/em-banner.el:
65 * calendar/parse-time.el: Use cl-lib.
66 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
67 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
68 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
69 * term/ns-win.el, term.el, shell.el, ps-samp.el:
70 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
71 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
72 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
73 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
74 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
75 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
76 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
77 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
78 `lambda' rather than with `quote'.
79 (eshell-do-opt): Adjust accordingly.
80 (eshell-process-option): Simplify.
81 * eshell/esh-var.el:
82 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
83 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
84 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
85 to `pcase--dontcare'.
86 * emacs-lisp/cl.el (labels): Mark obsolete.
87 (cl--letf, letf): Move to cl-lib.
88 (cl--letf*, letf*): Remove.
89 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
90 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
91 (cl-progv): Rewrite.
92 (cl--letf, cl-letf): Move from cl.el.
93 (cl-letf*): New macro.
94 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
95
7ad4afe1
MA
962012-07-11 Michael Albinus <michael.albinus@gmx.de>
97
98 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
99
9af57756
CY
1002012-07-11 Chong Yidong <cyd@gnu.org>
101
102 * vc/log-edit.el (log-edit-vc-backend): New variable.
103 (log-edit): Doc fix.
104
105 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
106 argument of log-edit to set up all local variables.
107 (vc-start-logentry): New optional arg specifying VC backend.
108
109 * vc/vc.el (vc-checkin): Use it.
110 (vc-deduce-fileset): Handle Log Edit buffers.
111 (vc-diff): Make first argument optional too.
112
113 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
114
8477cc7a
MA
1152012-07-10 Michael Albinus <michael.albinus@gmx.de>
116
117 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
118 command, just in case. The function is not needed anymore.
119 (eshell-external-command): Do not call `eshell-remote-command'.
120
19faa8e8
SM
1212012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
122
f58e0fd5
SM
123 Reduce use of (require 'cl).
124 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
125 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
126 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
127 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
128 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
129 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
130 * battery.el, avoid.el, abbrev.el: Use cl-lib.
131 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
132 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
133 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
134 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
135 * calculator.el, autorevert.el, apropos.el: Don't require CL.
136 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
137 (byte-compile-unfold-bcf, byte-compile-check-variable):
138 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
139 (byte-compile-nilconstp):
140 * emacs-lisp/autoload.el (make-autoload): Use pcase.
141 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
142
2519d43a
SM
143 * emacs-lisp/gv.el (cond): Make it a valid place.
144 (if): Simplify slightly.
145
19faa8e8
SM
146 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
147 (pcase--self-quoting-p): New function.
148 (pcase--u1): Use it.
149
c4907a5e
GM
1502012-07-10 Glenn Morris <rgm@gnu.org>
151
152 * emacs-lisp/authors.el (authors-fixed-entries):
153 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
154
c4444d16
PE
1552012-07-09 Paul Eggert <eggert@cs.ucla.edu>
156
157 Rename configure.in to configure.ac (Bug#11603).
158 * emacs-lisp/authors.el (authors-canonical-file-name):
159 * progmodes/autoconf.el (autoconf-mode):
160 Prefer configure.ac to configure.in.
161
d75be97d
CY
1622012-07-08 Chong Yidong <cyd@gnu.org>
163
01ac65bd
CY
164 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
165 Implement the mouse-1-click-follows-link handling properly.
166
167 * info.el (Info-link-keymap): Use follow-link mechanism for
168 header-line links (Bug#374).
169
d75be97d
CY
170 * simple.el (deactivate-mark): Do not set the primary selection
171 if another program has acquired it (Bug#11772).
172
87a92845 1732012-07-07 Kevin Ryde <user42@zip.com.au>
f0ecdfea
KR
174
175 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
176 (woman-decode-region): Replace escaped-escapes without destroying
177 bold or underline (Bug#11552).
87a92845 178 (woman2-process-escapes): Handle nofill regions (Bug#11591).
f0ecdfea 179
621b9d6c
CY
1802012-07-07 Chong Yidong <cyd@gnu.org>
181
182 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
19faa8e8
SM
183 (interprogram-cut-function, interprogram-paste-function):
184 Mention that we typically mean the clipboard.
621b9d6c 185
133a11fc
GM
1862012-07-06 Glenn Morris <rgm@gnu.org>
187
0d27a45e
GM
188 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
189
133a11fc
GM
190 * files.el (toggle-read-only): Restrict message to interactive use.
191
07b151f1
MA
1922012-07-06 Michael Albinus <michael.albinus@gmx.de>
193
194 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
195
196 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
197
211b896b
GM
1982012-07-06 Glenn Morris <rgm@gnu.org>
199
50394322
GM
200 * Makefile.in (compile-one-process): Rename from "recompile".
201
211b896b
GM
202 * Makefile.in (bzr-update): "compile" is the same as "recompile
203 autoloads", but parallelizable, so use that instead.
204
4737eec9
DG
2052012-07-06 Dmitry Gutov <dgutov@yandex.ru>
206
207 * window.el (quit-window): Always restore window height when
208 it's saved in quit-restore parameter.
209
226c3633 2102012-07-06 Glenn Morris <rgm@gnu.org>
cb442973
GM
211
212 * simple.el (kill-whole-line): Doc tweak.
213
226c3633 2142012-07-06 Eli Zaretskii <eliz@gnu.org>
93842198
EZ
215
216 * files.el (file-relative-name): Compare file names
217 case-insensitively if on MS-Windows or MS-DOS, or if
218 read-file-name-completion-ignore-case is non-nil. Don't use
219 case-fold-search for this purpose. (Bug#11827)
220
226c3633 2212012-07-06 Andreas Schwab <schwab@linux-m68k.org>
3d8b9024 222
19faa8e8
SM
223 * calendar/cal-dst.el (calendar-current-time-zone):
224 Return calendar-current-time-zone-cache if non-nil.
3d8b9024 225
60198fc9
GM
2262012-07-06 Glenn Morris <rgm@gnu.org>
227
228 * Makefile.in (cvs-update): Remove old alias.
229
957b3189
MA
2302012-07-05 Michael Albinus <michael.albinus@gmx.de>
231
232 Sync with Tramp 2.2.6-pre.
233
234 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
235 compatible declaration.
236
19faa8e8
SM
237 * net/tramp-cmds.el (tramp-append-tramp-buffers):
238 Protect `list-load-path-shadows' call.
957b3189
MA
239
240 * net/tramp-compat.el (top): Require packages, which aren't
241 autoloaded anymore for XEmacs. Protect call of
242 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
243 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
244 it hurts at least for SXEmacs.
245 (tramp-compat-temporary-file-directory): In XEmacs, there is no
246 standard-value for `temporary-file-directory'.
247
248 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
249 Redirect stderr to /dev/null.
250 (tramp-sh-handle-write-region): uid and gid can be floats.
251 Reported by Russell Sim <russell.sim@gmail.com>.
252 (tramp-sh-handle-vc-registered): Hide errors.
253 (tramp-vc-file-name-handler): Use dummy results for `process-file'
254 and `start-file-process'.
255 (tramp-maybe-open-connection): Check also whether `non-essential'
256 is bound.
257
566df3fc
CY
2582012-07-04 Chong Yidong <cyd@gnu.org>
259
260 * xml.el (xml--parse-buffer): Use xml-syntax-table.
261 (xml-parse-tag): Likewise, and avoid changing entity tables.
262 (xml-syntax-table): Define from scratch, making sure not to give
263 x2000 and other Unicode spaces whitespace syntax, since those are
264 not spaces in XML.
265 (xml-parse-fragment): Delete unused function.
266 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
267 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
268 (xml-entity-ref, xml-pe-reference-re)
269 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
270 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
271 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
272 (xml-entity-value-re): Use syntax references in regexps where
273 possible; no need to define inside a let-binding.
274 (xml-parse-dtd): Use xml-pe-reference-re.
275 (xml-entity-or-char-ref-re): New defconst.
276 (xml-parse-string, xml-substitute-special): Use it.
277
30eabd7a
SM
2782012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
279
0781098a
SM
280 * files.el (locate-dominating-file): Allow `name' to be a predicate.
281 (find-file--read-only): New function.
282 (find-file-read-only, find-file-read-only-other-window)
283 (find-file-read-only-other-frame): Use it.
284 (insert-file-contents-literally): Don't `fset'.
285 (get-free-disk-space): Use locate-dominating-file.
286
b5771c0d
SM
287 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
288 function is already compiled.
289
30eabd7a
SM
290 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
291
b4886f6e
MA
2922012-07-03 Michael Albinus <michael.albinus@gmx.de>
293
294 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
295 files on the same host.
296
b9d82339
AS
2972012-07-03 Andreas Schwab <schwab@linux-m68k.org>
298
299 * help-fns.el (describe-function-1): Only call
300 help-fns--autoloaded-p when we have a file name. (Bug#11848)
301
a76e6535
CY
3022012-07-03 Chong Yidong <cyd@gnu.org>
303
304 * xml.el: Protect parser against XML bombs.
305 (xml-entity-expansion-limit): New variable.
306 (xml-parse-string, xml-substitute-special): Use it.
307 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
308
b544fef2
GM
3092012-07-03 Glenn Morris <rgm@gnu.org>
310
311 * progmodes/bug-reference.el (bug-reference-bug-regexp):
312 Allow linking to specific messages in debbugs reports (eg 123#5).
313
a7aef6f5
CY
3142012-07-02 Chong Yidong <cyd@gnu.org>
315
316 * xml.el: Fix entity and character reference expansion, allowing
317 them to expand into markup as per XML spec.
318 (xml-default-ns): New variable.
319 (xml-entity-alist): Use XML spec definitions for lt and amp.
30eabd7a
SM
320 (xml-parse-region): Make first two arguments optional.
321 Discard text properties.
322 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
323 All callers changed.
a7aef6f5
CY
324 (xml-parse-tag): Call xml-parse-tag-1. For backward
325 compatibility, this function should not modify buffer contents.
326 (xml-parse-tag-1): Fix opening-tag regexp.
327 (xml-parse-string): Rewrite, handling entity and character
328 references properly.
329 (xml--entity-replacement-text): Signal an error if a parameter
330 entity is undefined.
331
3df31c9f
SM
3322012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
333
2b5208f1
SM
334 * comint.el (comint-output-filter): Filter out repeated prompts.
335
3df31c9f
SM
336 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
337 and file-name-absolute-p.
338 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
339 internal calls.
340
e3ac1281
PE
3412012-07-02 Paul Eggert <eggert@cs.ucla.edu>
342
343 Spelling fixes.
344 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
345 Rename from byte-compile--refiy-function. All uses changed.
346
fbf2e7ad
CY
3472012-07-01 Chong Yidong <cyd@gnu.org>
348
349 * xml.el (xml--parse-buffer): New function. Move most of
350 xml-parse-region here.
351 (xml-parse-region): Copy region into a temporary buffer, since
352 parameter entity substitution requires changing buffer contents.
353 Use xml--parse-buffer.
354 (xml-parse-file): Use xml--parse-buffer.
355 (xml-parse-dtd): Make parameter entity substitution work right.
6fe566a7 356 Use proper regexps for ELEMENT declarations (Bug#7172).
fbf2e7ad 357
9bf0aa15
GM
3582012-06-30 Glenn Morris <rgm@gnu.org>
359
bbce2853
GM
360 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
361
9bf0aa15
GM
362 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
363 Remove outdated and unnecessary dbus declarations.
364
0d23c240
EZ
3652012-06-30 Eli Zaretskii <eliz@gnu.org>
366
367 * emacs-lisp/timer.el (timer-until): Subtract results of
368 float-time, instead of taking float-time of the result of
369 time-subtract, since float-time signals an error for negative time
370 arguments.
371
b3218de1
CY
3722012-06-30 Chong Yidong <cyd@gnu.org>
373
374 * xml.el (xml-*-re): Convert defvars into defconsts, and
375 eval-and-compile them so eval-and-compile works on derivatives.
376 (xml--entity-replacement-text): Use eval-and-comple.
377
a40c87a0
MA
3782012-06-30 Michael Albinus <michael.albinus@gmx.de>
379
380 * vc/vc-git.el (vc-git-registered): Use cache property
381 `git-registered'.
382 (vc-git-mode-line-string): Call `vc-working-revision' instead of
383 `vc-git-working-revision' in order to benefit from the cache.
2bb1ae55 384 (vc-git-root): Use cache property `git-root'. (Bug#11757)
a40c87a0 385
ac87de97
DG
3862012-06-30 Dmitry Gutov <dgutov@yandex.ru>
387
388 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
2bb1ae55 389 removed (likely outside Emacs). (Bug#11757)
ac87de97 390
ac10fe06
SM
3912012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
392
3df31c9f 393 * emacs-lisp/cl-lib.el: Require macroexp.
ac10fe06 394
7f3fbd5d
CY
3952012-06-30 Chong Yidong <cyd@gnu.org>
396
397 * xml.el: Implement XML parameter entities.
398 (xml-parameter-entity-alist): New variable.
399 (xml-parse-region, xml-parse-fragment): Preserve previous values
400 of xml-entity-alist and xml-parameter-entity-alist, so that
401 repeated calls on different documents do not change them.
402 (xml-parse-tag): Fix doctype regexp.
403 (xml--entity-replacement-text): New function.
404 (xml-parse-dtd): Use it. Don't handle system entities; doing that
405 properly requires url retrieval which is unimplemented.
406 (xml-escape-string): Doc fix.
407
3cfbebba
SM
4082012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
409
410 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
411
2af3565e
DA
4122012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
413
414 * fringe.el (fringe-mode): Doc fix.
415
929df0e7
MA
4162012-06-29 Michael Albinus <michael.albinus@gmx.de>
417
418 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
419 is non-nil.
420 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
421 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
422
c8d3a25c 4232012-06-29 Andreas Schwab <schwab@linux-m68k.org>
3d8b9024 424
c8d3a25c
GM
425 * calendar/cal-dst.el (calendar-current-time-zone):
426 Return calendar-current-time-zone-cache if non-nil.
3d8b9024 427
c8d3a25c 4282012-06-29 Masatake YAMATO <yamato@redhat.com>
26e8548e
MY
429
430 * progmodes/which-func.el (which-func-format):
431 Add mouse-face. (Bug#11698)
432
c8d3a25c
GM
4332012-06-29 Leo Liu <sdl.web@gmail.com>
434
435 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
436
4372012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
438
439 * minibuffer.el (minibuffer-confirm-exit-commands):
440 Add completion-at-point (bug#11725).
441
4422012-06-29 Glenn Morris <rgm@gnu.org>
443
444 * progmodes/f90.el (f90-font-lock-keywords-2):
445 Add some preprocessor elements. (Bug#10499)
446
4472012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
448
449 * progmodes/cperl-mode.el (cperl-update-syntaxification):
450 Use syntax-propertize (bug#11739).
451
2badeec4
JB
4522012-06-28 Juanma Barranquero <lekktu@gmail.com>
453
454 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
455
ae4969c2
JD
4562012-06-28 Julien Danjou <julien@danjou.info>
457
458 * term.el (term-handle-colors-array): Use a set of new faces to
459 color the terminal. Also uses :inverse-video property.
460 (term-default-fg-color): Set to nil by default, deprecate in favor
461 of `term-face'.
462 (term-default-bg-color): Set to nil by default, deprecate in favor
463 of `term-face'.
464 (term-current-face): Use `term-face' by default.
465 (term-bold-attribute): Variable deleted.
466
1c9bd870
GM
4672012-06-28 Glenn Morris <rgm@gnu.org>
468
469 * simple.el (completion-list-mode-finish):
470 Don't use toggle-read-only. (Since completion-list-mode has
471 a special mode-class, it wasn't doing anything extra anyway.)
472
c207708c
SM
4732012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
474
475 Make inlining of other-mode interpreted functions work (bug#11799).
476 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
477 (byte-compile): Use it to fix compilation of lexical-binding closures.
478 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
479 function, if needed.
480
3fd56834
SM
4812012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
482
04901786
SM
483 * help-mode.el (help-make-xrefs): Don't just withstand
484 cyclic-variable-indirection but any error in documentation-property.
485
1ec4b7b2
SM
486 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
487 memory use.
488 * bindings.el (bindings--define-key): New function.
489 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
490 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
491 * bindings.el: Use it to purecopy define-key bindings.
492
e309e2a5
SM
493 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
494
d5c6faf9
SM
495 * emacs-lisp/cl.el (flet): Mark obsolete.
496 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
497 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
498 * progmodes/js.el (js-c-fill-paragraph):
499 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
500 (ebrowse-switch-member-buffer-to-derived-class):
501 * play/5x5.el (5x5-solver): Use cl-flet.
502
6e9590e2
SM
503 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
504 (cl--symbol-function): New macro.
505 (cl--letf, cl--letf*): Use it.
506
3fd56834
SM
507 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
508 Strip "toggle-" if any.
509
35ff222c
GM
5102012-06-27 Glenn Morris <rgm@gnu.org>
511
1ba6038a
GM
512 * info.el (Info-default-directory-list): Move here from paths.el.
513 * paths.el: Remove file, which is now empty.
514 * loadup.el: No longer load "paths".
515
0ea0e51b
GM
516 * custom.el (custom-initialize-delay): Doc fix.
517
35ff222c
GM
518 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
519 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
520 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
521 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
522 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
523 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
524 * eshell/eshell.el (eshell-defgroup): Remove alias.
525
c89926a5
CY
5262012-06-27 Chong Yidong <cyd@gnu.org>
527
528 * help.el (help-enable-auto-load): New variable.
529
530 * help-fns.el (help-fns--autoloaded-p): New function.
531 (describe-function-1): Refer to a function as "autoloaded" if it
532 was autoloaded at any time in the past. Perform autoloading if
533 help-enable-auto-load is non-nil.
534
cc06e7e7
EZ
5352012-06-26 Eli Zaretskii <eliz@gnu.org>
536
537 * makefile.w32-in (compile, compile-always): Depend on
538 update-subdirs, not on subdirs.el. Otherwise, several different
539 sub-targets of 'bootstrap' running in parallel could
540 simultaneously write to subdirs.el, producing a garbled file.
541
d2c32364
SS
5422012-06-26 Sam Steingold <sds@gnu.org>
543
544 * files.el (file-name-base): New convenience function.
0d14cc21
GM
545 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
546 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
547 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
548 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
549 * textmodes/ispell.el, textmodes/reftex-ref.el:
d2c32364
SS
550 * textmodes/tex-mode.el: Use it.
551 Did not touch cedet and org because they are maintained elsewhere.
552
5cf983b2
MR
5532012-06-26 Martin Rudalics <rudalics@gmx.at>
554
555 * calendar/calendar.el (calendar-exit): Don't try to delete or
556 iconify last frame. See:
557 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
558
8c4f2952
JD
5592012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
560
561 * server.el (server-process-filter): Remember dir in the
562 process's `server-client-directory' properties.
563
772b2e2c
CY
5642012-06-24 Chong Yidong <cyd@gnu.org>
565
566 * xml.el (xml-parse-tag): Correctly handle comment embedded in
567 non-tag text.
568
711b11e1
JB
5692012-06-23 Juanma Barranquero <lekktu@gmail.com>
570
571 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
572
dc5d230c
SM
5732012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
574
575 * help-fns.el (describe-variable): Don't croak when doc is not found.
576 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
577 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
578 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
579 * emacs-lisp/smie.el (smie-next-sexp): CSE.
580 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
581 ((lambda ..) ..).
582 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
583
136e1c1d
CY
5842012-06-23 Chong Yidong <cyd@gnu.org>
585
e8c1cabf
CY
586 * info.el (Info-mouse-follow-link): Accept symbol values of
587 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
136e1c1d
CY
588 (Info-fontify-node): Use Info-link-keymap for all navigation
589 buttons, with link-args property to perform the desired action.
590 (Info-link-keymap): Doc fix.
591 (Info-next-link-keymap, Info-prev-link-keymap)
592 (Info-up-link-keymap): Delete now-unused keymaps.
593
0e9e6c6a
CY
5942012-06-23 Chong Yidong <cyd@gnu.org>
595
05e89fea
CY
596 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
597
0e9e6c6a
CY
598 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
599 system abbrevs.
600
601 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
602
e33c6771
SM
6032012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
604
b68581e2
SM
605 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
606 (bug#11719).
607
e33c6771
SM
608 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
609 the requote function doesn't work properly (bug#11714).
610
7117e105
GM
6112012-06-23 Glenn Morris <rgm@gnu.org>
612
613 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
614
36cec983
SM
6152012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
616
617 Further GV/CL cleanups.
618 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
619 gv-expander.
620 (gv--defun-declaration): New function.
621 (defun-declarations-alist): Use it.
622 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
623 (gv-place): Autoload.
624 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
625 original definition of dotimes and dolist.
626 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
627 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
628 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
629 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
630 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
631 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
632 to the function's definition.
633 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
634 * window.el:
635 * files.el:
636 * faces.el:
637 * env.el: Don't use CL.
638
d35af63c
PE
6392012-06-22 Paul Eggert <eggert@cs.ucla.edu>
640
641 Support higher-resolution time stamps (Bug#9000).
642
643 * calendar/time-date.el (with-decoded-time-value): New arg
644 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
645 (encode-time-value): New optional arg PICO. New type 3.
646 (time-to-seconds) [!float-time]: Support the new picoseconds
647 component if it's used.
648 (seconds-to-time, time-subtract, time-add):
649 Support ps-resolution time stamps as well.
650
651 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
652 (timerp): Timer vectors now have length 9, not 8.
653 (timer--time): Support new-style (4-part) time stamps.
654 (timer-next-integral-multiple-of-time): Time stamps now have
655 picosecond resolution, so take a bit more care about rounding.
656 (timer-relative-time, timer-inc-time): New optional arg psecs.
657 (timer-set-time-with-usecs): Set psecs to 0.
658 (timer--activate): Check psecs component, too.
659
660 * proced.el (proced-time-lessp): Support ps-resolution stamps.
661
ac77b21a
SM
6622012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
663
f143bfe3
SM
664 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
665 Move the non-essential binding to the post/pre-command-hook where it is
666 more obviously correct.
667
ac77b21a
SM
668 * subr.el (read-passwd): Don't use a history at all.
669 * savehist.el (savehist-save): Remove password saved accidentally
670 because of the above bug.
671
76386c5a
BG
6722012-06-22 Bastien Guerry <bzg@gnu.org>
673
674 * files.el (toggle-read-only): Display a message telling whether
675 the buffer is read-only or not (bug#11726).
676
2ee3d7f0
SM
6772012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
678
679 * emacs-lisp/gv.el: New file.
680 * subr.el (push, pop): Extend to generalized variables.
681 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
682 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
683 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
684 gv-define-simple-setter, and gv-define-expander.
685 Remove setf-methods defined in gv. Rename cl-setf -> setf.
686 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
687 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
688 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
689 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
690 gv-letplace.
691 (cl-defstruct): Don't define setf-method any more.
692 * emacs-lisp/cl.el (flet): Don't autoload.
693 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
694 (define-setf-expander, defsetf, define-modify-macro)
695 (cl-struct-setf-expander): Move from cl-lib.el.
696 * emacs-lisp/syntax.el:
697 * emacs-lisp/ewoc.el:
698 * emacs-lisp/smie.el:
699 * emacs-lisp/cconv.el:
700 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
701 (timer--time): Use gv-define-simple-setter.
702 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
703 to avoid coding-system problems in subr.el. Adjust all users.
704 (macroexp--maxsize, macroexp-small-p): New functions.
705 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
706 * scroll-bar.el (scroll-bar-mode):
707 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
708 (normal-erase-is-backspace-mode): Don't use the `eq' place.
709 * winner.el (winner-configuration, winner-make-point-alist)
710 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
711 * files.el (locate-file-completion-table): Avoid list*.
712
c5695d1d
CY
7132012-06-22 Chong Yidong <cyd@gnu.org>
714
715 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
716 (dired-create-files): Doc fix (Bug#11329).
717 (dired-do-copy): Doc fix (Bug#11334).
718 (dired-mark-read-string): Doc fix (Bug#11553).
719
2ee3d7f0
SM
720 * dired.el (dired-recursive-copies, dired-recursive-deletes):
721 Doc fix (Bug#11326).
c5695d1d
CY
722 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
723 (dired-dwim-target): Doc fix.
724
725 * wdired.el (wdired-mode): Doc fix.
726
89b5595a
GM
7272012-06-22 Glenn Morris <rgm@gnu.org>
728
575db3f1
GM
729 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
730 (pcmpl-rpm-cache-stamp-file): New constant.
731 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
732 (pcmpl-rpm-packages): Optionally cache list of packages.
733
a4c8dd51
GM
734 * pcmpl-rpm.el (pcmpl-rpm): New group.
735 (pcmpl-rpm-query-options): New option.
736 (pcmpl-rpm-packages): No need to inline it.
737 Use pcmpl-rpm-query-options.
738
89b5595a
GM
739 * calendar/calendar.el (calendar-in-read-only-buffer):
740 Avoid some needless mode changes.
741
e76f0800
CY
7422012-06-21 Chong Yidong <cyd@gnu.org>
743
744 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
745 (desktop-path): Remove . from the default value (Bug#10977).
6b67c0d4 746 (desktop-read): Use user-emacs-directory if desktop-path is nil.
e76f0800 747
297a8f1d
CY
7482012-06-20 Chong Yidong <cyd@gnu.org>
749
750 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
751
d34c18b1
DR
7522012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
753
754 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
755 (bug#11201).
756
32f7f28e
CY
7572012-06-20 Chong Yidong <cyd@gnu.org>
758
759 * term.el (term-window-width): Handle the case of a missing right
760 fringe (Bug#8837).
761 (term-check-size): Use window-text-height (Bug#5445).
d34c18b1
DR
762 (term-mode): Use define-derived-mode. Minor cleanups.
763 Set font-lock-defaults (Bug#7692).
6ff7caa8
CY
764 (term-move-columns, term-insert-char, term-emulate-terminal)
765 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
32f7f28e 766
493c6688
MA
7672012-06-20 Michael Albinus <michael.albinus@gmx.de>
768
d34c18b1
DR
769 * net/ange-ftp.el (ange-ftp-get-passwd):
770 Bind `enable-recursive-minibuffers'.
493c6688
MA
771 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
772
3f06ecf4
DR
7732012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
774
775 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
776
68f12411
GM
7772012-06-19 Glenn Morris <rgm@gnu.org>
778
779 * progmodes/python.el (python-mode): Derive from prog-mode.
780
b3820318
KG
7812012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
782
783 * emulation/edt.el (edt-default-menu-bar-update-buffers)
784 (edt-user-menu-bar-update-buffers): New functions.
785 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
786
c6bf3022
CY
7872012-06-19 Chong Yidong <cyd@gnu.org>
788
789 * subr.el (with-selected-window): Preserve the selected window's
790 terminal's top-frame (Bug#4702).
791
792 * window.el (save-selected-window): Likewise.
793
25f09295
SM
7942012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
795
796 * progmodes/python.el (python-rx-constituents): Move backquote.
797 (python-skeleton-define, python-define-auxiliary-skeleton):
798 Use `declare'.
799
6b11952a
MA
8002012-06-18 Michael Albinus <michael.albinus@gmx.de>
801
802 * minibuffer.el (read-file-name-default): Revert the patch from
803 2012-06-17.
804
ee4b1330
SM
8052012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
806
807 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
808 (pcase--u1, pcase--q1): Don't use apply-partially.
809
35647f79
GM
8102012-06-18 Glenn Morris <rgm@gnu.org>
811
812 * progmodes/python.el (python-proc, python-buffer)
813 (python-send-receive, python-send-string): Fix obsolete versions.
814
24b0cff0
MR
8152012-06-18 Martin Rudalics <rudalics@gmx.at>
816
817 * window.el (special-display-p): Completely remove stringp
818 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
819
29855149
MA
8202012-06-17 Michael Albinus <michael.albinus@gmx.de>
821
822 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
823
824 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
825
826 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
827 * net/tramp-sh.el (tramp-maybe-open-connection):
828 Throw if `non-essential' is non-nil.
829
07463363
MR
8302012-06-17 Martin Rudalics <rudalics@gmx.at>
831
832 * window.el (special-display-p): Signal an error if BUFFER-NAME
833 is not a string (Bug#11713).
834
48d1354e
PE
8352012-06-17 Paul Eggert <eggert@cs.ucla.edu>
836
837 * progmodes/python.el (python-info-beginning-of-backslash):
838 Rename from python-info-beginning-of-backlash, as a spelling fix.
839
eb4a8a9a
CY
8402012-06-17 Chong Yidong <cyd@gnu.org>
841
842 * term.el (term-emulate-terminal): If term-check-size is called,
843 move point to the process mark without resetting point (Bug#4635).
844
ddfbf826 8452012-06-17 Glenn Morris <rgm@gnu.org>
9c758578
GM
846
847 * international/mule-cmds.el (mule-menu-keymap)
848 (set-language-environment, set-locale-environment): Doc tweaks.
849
9b0e3eba
AA
8502012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
851
852 * cus-face.el (custom-face-attributes): Add wave-style underline
853 attribute.
854 * faces.el (set-face-attribute): Update docstring to describe
855 wave-style underline attribute.
856
771e3eae
CY
8572012-06-16 Chong Yidong <cyd@gnu.org>
858
859 * term/xterm.el (terminal-init-xterm): Discard input before
860 querying background mode (Bug#10959).
861
7ae2ea10
SM
8622012-06-16 Stefan Merten <smerten@oekonux.de>
863
864 * textmodes/rst.el: Added and corrected some comments.
865 (rst-re-alist-def): Improve symbol syntax.
866 (rst-mode-syntax-table): Correct syntax entries.
6665a6fd
SM
867 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
868 (rst-official-version, rst-official-cvs-rev): Update version
869 information.
7ae2ea10 870
b6974efa
JB
8712012-06-15 Juanma Barranquero <lekktu@gmail.com>
872
873 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
874 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
875
8826d473
GM
8762012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
877
878 * progmodes/python.el: New python.el merge.
879 (python-guess-indent): Obsolete var.
880 (python-indent-guess-indent-offset): New defcustom.
881 (python-indent): Obsolete var.
882 (python-indent-offset): New defcustom.
883 (python-python-command, python-jython-command): Delete var.
884 (python-shell-interpreter): New defcustom.
885 (python-pdbtrack-do-tracking-p): Delete var.
886 (python-pdbtrack-activate): New defcustom.
887 (python-use-skeletons): Obsolete var.
888 (python-skeleton-autoinsert): New defcustom.
889 (inferior-python-filter-regexp, python-continuation-offset)
890 (python-honour-comment-indentation, python-indent-string-contents)
891 (python-jython-packages, python-mode-hook)
892 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
893 (python-shell-prompt-alist)
894 (python-source-modes): Delete defcustoms.
895 (python-check-buffer-name, python-eldoc-setup-code)
896 (python-eldoc-string-code, python-ffap-setup-code)
897 (python-ffap-string-code, python-fill-comment-function)
898 (python-fill-decorator-function, python-fill-paren-function)
899 (python-fill-string-function, python-imenu-include-defun-type)
900 (python-imenu-make-tree, python-imenu-subtree-root-label)
901 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
902 (python-shell-compilation-regexp-alist)
903 (python-shell-completion-module-string-code)
904 (python-shell-completion-pdb-string-code)
905 (python-shell-completion-setup-code)
906 (python-shell-completion-string-code)
907 (python-shell-enable-font-lock, python-shell-exec-path)
908 (python-shell-extra-pythonpaths)
909 (python-shell-internal-buffer-name, python-shell-interpreter-args)
910 (python-shell-process-environment)
911 (python-shell-prompt-block-regexp)
912 (python-shell-prompt-output-regexp)
913 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
914 (python-shell-send-setup-max-wait, python-shell-setup-codes)
915 (python-shell-virtualenv-path): New defcustoms.
916 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
917 (inferior-python-mode-syntax-table, python--prompt-regexp)
918 (python-buffer, python-command python-python-command)
919 (python-default-template, python-imports, python-indent-index)
920 (python-indent-list, python-indent-list-length)
921 (python-mode-running, python-pdbtrack-is-tracking-p)
922 (python-preoutput-continuation, python-preoutput-leftover)
923 (python-preoutput-result, python-preoutput-skip-next-prompt)
924 (python-prev-dir/file, python-recursing)
925 (python-saved-check-command, python-version-checked)
926 (python-which-func-length-limit)
927 (view-return-to-alist): Delete vars.
928 (python-check-custom-command, python-dotty-syntax-table)
929 (python-imenu-index-alist, python-indent-current-level)
930 (python-indent-dedenters, python-indent-levels)
931 (python-nav-beginning-of-defun-regexp)
932 (python-nav-list-defun-positions-cache)
933 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
934 (python-shell-internal-buffer)
935 (python-skeleton-available): New vars.
936 (def-python-skeleton): Delete macro.
937 (python-skeleton-define): New macro.
938 (python-define-auxiliary-skeleton, python-rx): New macros.
939 (python-insert-class): Delete command.
940 (python-skeleton-class): New command.
941 (python-insert-def): Delete command.
942 (python-skeleton-def): New command.
943 (python-insert-for): Delete command.
944 (python-skeleton-for): New command.
945 (python-insert-if): Delete command.
946 (python-skeleton-if): New command.
947 (python-insert-try/except, python-insert-try/finally): Delete commands.
948 (python-skeleton-try): New command.
949 (python-insert-while): Delete command.
950 (python-skeleton-while): New command.
951 (python-backspace): Delete command.
952 (python-indent-dedent-line-backspace): New command.
953 (python-electric-colon): Delete command.
954 (python-indent-electric-colon): New command.
955 (python-guess-indent): Delete command.
956 (python-indent-guess-indent-offset): New command.
957 (python-shift-left): Delete command.
958 (python-indent-shift-left): New command.
959 (python-shift-right): Delete command.
960 (python-indent-shift-right): New command.
961 (python-find-function): Delete command.
962 (python-nav-jump-to-defun): New command.
963 (python-next-statement): Delete command.
964 (python-nav-forward-sentence): New command.
965 (python-previous-statement): Delete command.
966 (python-nav-backward-sentence): New command.
967 (python-fill-paragraph): Delete command.
968 (python-fill-paragraph-function): New command.
969 (python-send-buffer): Delete command.
970 (python-shell-send-buffer): New command.
971 (python-send-defun): Delete command.
972 (python-shell-send-defun): New command.
973 (python-send-region, python-send-region-and-go): Delete commands.
974 (python-shell-send-region)
975 (python-shell-switch-to-shell): New commands.
976 (python-send-string): Delete command.
977 (python-shell-send-string): New command.
978 (python-switch-to-python): Delete command.
979 (python-shell-switch-to-shell): New command.
980 (python-describe-symbol): Delete command.
981 (python-eldoc-at-point): New command.
982 (python--set-prompt-regexp, python-args-to-list)
983 (python-after-info-look, python-check-version)
984 (python-check-comint-prompt, python-find-imports)
985 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
986 (python-unload-function, python-expand-template)
987 (python-maybe-jython, python-preoutput-filter)
988 (python-pdbtrack-get-source-buffer)
989 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
990 (python-pdbtrack-toggle-stack-tracking)
991 (python-pdbtrack-track-stack-file, python-initial-text)
992 (python-first-word, python-comment-line-p, python-send-command)
993 (python-setup-brm, python-sentinel, python-set-proc)
994 (python-skip-out, python-input-filter, python-outdent-p)
995 (python-outline-level, python-backslash-continuation-line-p)
996 (python-end-of-block, python-end-of-statement, python-mark-block)
997 (python-beginning-of-block, python-beginning-of-statement)
998 (python-blank-line-p, python-beginning-of-string)
999 (python-open-block-statement-p): Delete functions.
1000 (python-indent-line, python-indent-line-1): Delete functions.
1001 (python-indent-line): New function.
1002 (python-indentation-levels): Delete function.
1003 (python-indent-calculate-levels): New function.
1004 (python-proc): Delete function.
1005 (python-shell-get-process): New function.
1006 (python-send-receive): Delete function.
1007 (python-shell-send-string-no-output): New function.
1008 (python-module-path): Delete function.
1009 (python-ffap-module-path): New function.
1010 (python-completion-at-point)
1011 (python-symbol-completions): Delete functions.
1012 (python-completion-complete-at-point): New function.
1013 (python-load-file): Delete function.
1014 (python-shell-send-file): New function.
1015 (python-calculate-indentation): Delete function.
1016 (python-indent-calculate-indentation): New function.
1017 (python-skip-comments/blanks): Delete function.
1018 (python-util-forward-comment): New function.
1019 (python-continuation-line-p): Delete function.
1020 (python-info-continuation-line-p): New function.
1021 (python-which-func, python-current-defun): Delete function.
1022 (python-info-current-defun): New function.
1023 (python-beginning-of-defun): Delete function.
1024 (python-nav-beginning-of-defun): New function.
1025 (python-close-block-statement-p)
1026 (python-block-end-p): Delete function.
1027 (python-info-closing-block): New function.
1028 (python-comint-output-filter-function)
1029 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
1030 (python-fill-comment, python-fill-decorator, python-fill-paren)
1031 (python-fill-string, python-imenu-make-element-tree)
1032 (python-imenu-make-tree, python-imenu-tree-assoc)
1033 (python-indent-context, python-indent-dedent-line)
1034 (python-indent-line-function)
1035 (python-indent-post-self-insert-function)
1036 (python-indent-toggle-levels)
1037 (python-info-assignment-continuation-line-p)
1038 (python-info-beginning-of-backlash)
1039 (python-info-block-continuation-line-p)
1040 (python-info-closing-block-message)
1041 (python-info-line-ends-backslash-p)
1042 (python-info-looking-at-beginning-of-defun)
1043 (python-info-ppss-context, python-info-ppss-context-type)
1044 (python-nav-list-defun-positions, python-nav-read-defun)
1045 (python-nav-sentence-end, python-nav-sentence-start)
1046 (python-pdbtrack-comint-output-filter-function)
1047 (python-pdbtrack-set-tracked-buffer)
1048 (python-shell-calculate-exec-path)
1049 (python-shell-calculate-process-environment)
1050 (python-shell-completion--do-completion-at-point)
1051 (python-shell-completion--get-completions)
1052 (python-shell-completion-complete-at-point)
1053 (python-shell-completion-complete-or-indent)
1054 (python-shell-get-or-create-process)
1055 (python-shell-get-process-name)
1056 (python-shell-internal-get-or-create-process)
1057 (python-shell-internal-get-process-name)
1058 (python-shell-internal-send-string, python-shell-make-comint)
1059 (python-shell-parse-command, python-shell-send-setup-code)
1060 (python-skeleton-add-menu-items)
1061 (python-util-clone-local-variables, python-util-position)
1062 (run-python-internal, python-indentation-levels)
1063 (python-nav-beginning-of-defun)
1064 (python-completion-complete-at-point): New functions.
1065 (run-python): Change arguments. New API requirements.
1066
4302f5ba
SM
10672012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
1068
f38ea36d
SM
1069 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
1070 (bug#11649).
1071
1072 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
1073 (macroexp--expand-all): Use it.
1074
4302f5ba
SM
1075 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
1076 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
1077 Use `cl-function' instead.
1078
33377562
JB
10792012-06-14 Juanma Barranquero <lekktu@gmail.com>
1080
1081 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
1082 Suggested by Stefan Monnier while discussing bug#11657.
1083
54c5ba1a
SS
10842012-06-14 Sam Steingold <sds@gnu.org>
1085
1086 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
1087
f9f1b1fe
AS
10882012-06-14 Andreas Schwab <schwab@linux-m68k.org>
1089
1090 * play/doctor.el (doctor-doc): Remove parameter and use
1091 doctor-sent instead of sent.
1092 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
1093
a81068ba
SM
10942012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
1095
5a315f9c
SM
1096 * files.el: Require cl-lib.
1097 (file-name-non-special): Replace case -> cl-case.
1098
1099 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
1100
a81068ba
SM
1101 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
1102 mapping from #' to function*.
1103
8cca9703
CY
11042012-06-13 Chong Yidong <cyd@gnu.org>
1105
1106 * mouse.el (mouse-drag-track): Do not set the mark if the user
1107 releases the mouse without selecting anything (Bug#11588).
1108
a12ac9d7
SM
11092012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
1110
ccf1dc18
SM
1111 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
1112 as well (bug#11646).
1113
ef62b23d
SM
1114 * loadup.el: Count byte-code functions as well.
1115
c4c8444a
SM
1116 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
1117 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
1118
a12ac9d7
SM
1119 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
1120 (bug#11649). Add cl-defun and cl-defmacro.
1121
87e6e64f
DA
11222012-06-13 Drew Adams <drew.adams@oracle.com>
1123
1124 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
1125 Fix last change.
1126
682cefaf
MA
11272012-06-13 Michael Albinus <michael.albinus@gmx.de>
1128
1129 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
1130 Otherwise, it blocks in batch mode.
1131
773e1f08
JB
11322012-06-13 Juanma Barranquero <lekktu@gmail.com>
1133
1134 * help-mode.el (bookmark-make-record-default): Declare.
1135
60057926
CY
11362012-06-13 Chong Yidong <cyd@gnu.org>
1137
1138 * emacs-lisp/package.el (list-packages): Compute a list of
1139 packages that are newly-available since the last list-packages
1140 invocation.
1141 (package-menu--new-package-list): New var.
1142 (package-menu--generate, package-menu--print-info)
1143 (package-menu--status-predicate, package-menu-mark-install):
1144 Handle new status label "new".
1145
ad4d226c
SM
11462012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
1147
1148 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
1149 conversion to backquotes.
1150
f1a4e679
CY
11512012-06-12 Chong Yidong <cyd@gnu.org>
1152
1153 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
1154 Rename from gud-inhibit-global-bindings.
1155
1156 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
1157
1158 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
1159 hook from nxml-glyph-set-hook.
1160
1161 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
1162 declaration.
1163
1164 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
1165
1166 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
1167 Convert to defcustom.
1168
0c9e42b5
DA
11692012-06-12 Drew Adams <drew.adams@oracle.com>
1170
1171 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
1172 New functions.
1173 (help-mode): Use them.
1174
09e06855
GM
11752012-06-11 Glenn Morris <rgm@gnu.org>
1176
1177 * progmodes/fortran.el (fortran-font-lock-keywords-3):
1178 Use preprocessor face for directives.
1179 (fortran-directive-re): Doc fix.
1180
71adb94b
SM
11812012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1182
2eb87922
SM
1183 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
1184 conversion to backquotes (bug#11652).
1185
71adb94b
SM
1186 Fix compiler-expansion of CL's cXXr functions (bug#11673).
1187 * emacs-lisp/cl-lib.el (cl--defalias): New function.
1188 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
1189 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
1190 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
1191 (cl-ninth, cl-tenth): Mark them as inlinable.
1192 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
1193 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
1194 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
1195 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
1196 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
1197 (cl-list*, cl-adjoin): Don't put an autoload manually.
1198 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
1199 (cl--compiler-macro-list*): Add autoload cookie.
1200 (cl--compiler-macro-cXXr): New function.
2eb87922 1201
71adb94b
SM
1202 * help-fns.el (help-fns--compiler-macro): New function extracted from
1203 describe-function-1; follow aliases and use `compiler-macro' property.
1204 (describe-function-1): Use it.
1205
a6674402
CY
12062012-06-11 Chong Yidong <cyd@gnu.org>
1207
1208 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
1209 is uninstalled, if imagemagick is installed.
1210
bb3faf5b
SM
12112012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1212
1213 * emacs-lisp/cl-lib.el: Use lexical-binding.
1214 (cl-map-extents, cl-maclisp-member): Remove.
1215 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
1216 (cl--set-substring, cl--block-wrapper, cl--block-throw)
1217 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
1218 * emacs-lisp/cl-extra.el: Use lexical-binding.
1219 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
1220 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
1221 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
1222 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
1223 * emacs-lisp/cl-seq.el: Use lexical-binding.
1224 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
1225 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
1226 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
1227 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
1228 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
1229 CL's internals.
1230
2fe4b125
MA
12312012-06-11 Michael Albinus <michael.albinus@gmx.de>
1232
1233 Sync with Tramp 2.2.6-pre.
1234
1235 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
1236 `print-length' and `print-level' to nil, in order to avoid
1237 truncation. Reported by Christopher Schmidt
1238 <christopher@ristopher.com>.
1239
1240 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
1241
1242 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
1243 New defmacro.
1244 (tramp-compat-copy-directory): Add optional argument
1245 COPY-CONTENTS. It is not handled yet.
1246
1247 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
1248 (tramp-ftp-file-name-p): Simplify.
1249
1250 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
1251 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
1252 connection vector.
1253
1254 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
1255 (tramp-methods): Do not use `tramp-password-end-of-line'.
1256 (tramp-completion-function-alist-putty): Handle UNIX case.
1257 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
1258 (tramp-do-file-attributes-with-stat)
1259 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
1260 gid as real numbers. They could run out of integer range on cygwin.
1261 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
1262 (tramp-sh-handle-expand-file-name): Handle hops.
87e6e64f
DA
1263 (tramp-open-connection-setup-interactive-shell):
1264 Use `tramp-cleanup'. Move check for busyboxes ...
1265 (tramp-find-shell): ... here. Simplify implementation.
1266 Set "remote-shell" property also for alternative shells.
1267 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
1268 If failing, a regular file would be written otherwise.
1269 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
2fe4b125
MA
1270 (tramp-find-inline-encoding): Cache the coding commands in the
1271 process cache. Apply test command on the remote side, if defined.
1272 (tramp-find-inline-compress): Cache the compress commands in the
1273 process cache.
1274 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
1275 when requested. Handle hops.
1276 (tramp-current-connection): New defvar.
87e6e64f
DA
1277 (tramp-maybe-open-connection): Use `tramp-cleanup'.
1278 Throw `suppress', if there was a failed connection shortly before.
2fe4b125 1279 Handle user interrupt. (Bug#10187)
87e6e64f
DA
1280 (tramp-get-inline-compress, tramp-get-inline-coding):
1281 Read connection properties from the process cache.
2fe4b125
MA
1282
1283 * net/tramp-smb.el (tramp-smb-server-version)
87e6e64f
DA
1284 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
1285 New defconsts.
2fe4b125
MA
1286 (tramp-smb-prompt): Extend for powershell prompt.
1287 (tramp-smb-file-name-handler-alist): Add handlers for
1288 `process-file', `shell-command' and `start-file-process'.
1289 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
1290 (tramp-smb-winexe-shell-command-switch): New defcustoms.
1291 (tramp-smb-file-name-p): Simplify.
1292 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
1293 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
1294 (tramp-smb-shell-quote-argument): New defuns.
1295 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
1296 Implement using "tar". By this, time-stamps are preserved.
1297 (tramp-smb-handle-copy-file): Handle also the case of directories.
1298 (tramp-smb-do-file-attributes-with-stat)
87e6e64f
DA
1299 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
1300 Use `tramp-get-connection-buffer').
2fe4b125
MA
1301 (tramp-smb-handle-rename-file): Use "rename", when source and
1302 target are on the same share.
87e6e64f
DA
1303 (tramp-smb-maybe-open-connection): Handle wrong passwords.
1304 Use `tramp-smb-server-version'.
2fe4b125
MA
1305 (tramp-smb-wait-for-output): Remove prompt.
1306
1307 * net/tramp.el (top): Require 'cl.
87e6e64f
DA
1308 (tramp-methods, tramp-rsh-end-of-line):
1309 Remove `tramp-password-end-of-line' from docstring.
2fe4b125
MA
1310 (tramp-save-ad-hoc-proxies): New defcustom.
1311 (tramp-completion-function-alist): Adapt docstring.
1312 (tramp-default-password-end-of-line): Remove defcustom.
1313 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
1314 (tramp-user-regexp, tramp-file-name-regexp-unified)
1315 (tramp-file-name-regexp-url): Extend regexp by hop separator.
1316 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
1317 (tramp-remote-file-name-spec-regexp): New defconst.
1318 (tramp-file-name-structure): Extend structure for hops.
1319 (tramp-get-method-parameter): Move up.
1320 (tramp-file-name-p, tramp-dissect-file-name)
1321 (with-parsed-tramp-file-name): Handle hops.
1322 (tramp-file-name-hop): New defun.
1323 (tramp-make-tramp-file-name): New optional arg HOP.
1324 (tramp-message-show-progress-reporter-message): New defvar.
1325 (tramp-with-progress-reporter): Use it. We cannot use
1326 `tramp-message-show-message' here, because this suppresses also
1327 error buffers.
1328 (tramp-error-with-buffer): Suppress buffer view, if
87e6e64f
DA
1329 `tramp-message-show-message' is nil.
1330 Use `tramp-get-connection-buffer'.
2fe4b125
MA
1331 (tramp-cleanup): New defun.
1332 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
1333 (tramp-file-name-handler): If `debug-on-error' is set, propagate
1334 an error unchanged.
1335 (tramp-completion-handle-file-name-all-completions): Handle hops.
1336 Fix an error when called from ido.
1337 (tramp-completion-dissect-file-name): Use better local variable
1338 name. Add hop to the vector.
1339 (tramp-handle-insert-file-contents): Use progress-reporter for the
1340 whole scenario.
1341 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
1342 to `t'.
1343 (tramp-check-for-regexp): Simplify search.
1344 (tramp-enter-password): Remove it. Move implementation ...
1345 (tramp-action-password): ... here.
1346 (tramp-mode-string-to-int, tramp-local-host-p)
1347 (tramp-make-tramp-temp-file, tramp-read-passwd)
87e6e64f
DA
1348 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
1349 Set tramp-autoload cookie.
2fe4b125
MA
1350
1351 * net/trampver.el: Update release number.
1352
13532012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1354 Michael Albinus <michael.albinus@gmx.de>
1355
1356 * net/tramp.el (tramp-set-completion-function): Fix docstring.
1357 (tramp-parse-group, tramp-parse-file)
1358 (tramp-parse-shostkeys-sknownhosts): New defuns.
1359 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
1360 (tramp-parse-shosts-group, tramp-parse-sconfig)
1361 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
1362 (tramp-parse-sknownhosts, tramp-parse-hosts)
1363 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
1364 Use them.
1365 (tramp-parse-passwd-group, tramp-parse-netrc-group)
1366 (tramp-parse-putty-group): Don't narrow.
1367 (tramp-parse-putty): Make a loop.
1368 (tramp-file-name-handler): Catch the `suppress' signal.
1369
72834e10
CY
13702012-06-11 Chong Yidong <cyd@gnu.org>
1371
1372 * image.el (imagemagick-register-types): Put the ImageMagick entry
1373 at the end of image-type-file-name-regexps.
1374
a4712e11
JB
13752012-06-11 Johan Bockgård <bojohan@gnu.org>
1376
1377 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
1378 (pcase, pcase-let*, pcase-dolist): Use them.
1379
82ad98e3
SM
13802012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1381
1382 * emacs-lisp/pcase.el (pcase--let*): New function.
1383 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
1384 (pcase--expand): Use macroexp-let².
1385
f80efb86
SM
13862012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
1387
1388 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
1389 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
1390 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
1391 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
1392 * emacs-lisp/derived.el: Use pcase instead of `cl'.
1393 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
1394
31ca4639 13952012-06-10 Glenn Morris <rgm@gnu.org>
94f0aa34 1396
31ca4639
CY
1397 * mail/rmail.el (rmail-yank-current-message): Leave point at
1398 correct position. (Bug#11660)
94f0aa34 1399
31ca4639 14002012-06-10 Chong Yidong <cyd@gnu.org>
9e1b8ec4 1401
31ca4639 1402 * allout-widgets.el: Fix code header.
9e1b8ec4 1403
31ca4639 14042012-06-10 Chong Yidong <cyd@gnu.org>
00cd0305 1405
f80efb86
SM
1406 * cus-edit.el (customize-changed-options-previous-release):
1407 Bump to 24.1.
31ca4639 1408
642b6d30
AS
14092012-06-09 Andreas Schwab <schwab@linux-m68k.org>
1410
1411 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
1412
4f5d2ba1
CY
14132012-06-09 Chong Yidong <cyd@gnu.org>
1414
1415 * ebuff-menu.el (electric-buffer-list): Preserve header line.
1416
e75852fd
MR
14172012-06-09 Martin Rudalics <rudalics@gmx.at>
1418
1419 * window.el (special-display-popup-frame): Don't use
1420 window--display-buffer (Bug#11651).
1421
1e48e282
EZ
14222012-06-09 Eli Zaretskii <eliz@gnu.org>
1423
8a26b487
EZ
1424 Fix parallel builds: make sure loaddefs.el is not being written
1425 while Lisp files are compiled.
1426 (compile): Don't depend on 'mh-autoloads'.
1427 (compile-CMD, compile-SH): Depend on 'autoloads'.
1428 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
1429
1e48e282
EZ
1430 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
1431
6175e34b
CY
14322012-06-09 Chong Yidong <cyd@gnu.org>
1433
1434 * face-remap.el (face-remap-add-relative, face-remap-set-base)
1435 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
1436 Doc fixes (Bug#11225).
1437
d9857e53
SM
14382012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
1439
1440 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
1441 a function if there's a clear indication that it has a compiler-macro.
1442 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
1443 (macro-declarations-alist): Add arglist to declaration functions.
1444 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
1445 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
1446 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
1447 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
1448 Also add autoload to find the compiler macro.
1449 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
1450 (cl--compiler-macro-member, cl--compiler-macro-assoc)
1451 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
1452 (cl--compiler-macro-get): New functions, replacing calls to
1453 cl-define-compiler-macro.
1454 (cl-typep) [compiler-macro]: Use macroexp-let².
1455
f81298f8 14562012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
ee574791
UJ
1457
1458 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
1459 string properly, fixes Bug#11473.
1460
4b56d0fe
CY
14612012-06-08 Chong Yidong <cyd@gnu.org>
1462
1463 * faces.el (set-face-attribute): Doc fix.
1464 (modify-face): Don't use :bold and :italic.
1465 (error, warning, success): Tweak definitions.
1466
1467 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
1468 (custom-modified, custom-set, custom-changed, custom-themed)
1469 (custom-saved, custom-button, custom-button-mouse)
1470 (custom-button-pressed, custom-state, custom-comment-tag)
1471 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
1472 (custom-group-subtitle): Use new-style face specs.
1473 (custom-invalid-face, custom-rogue-face, custom-modified-face)
1474 (custom-set-face, custom-changed-face, custom-saved-face)
1475 (custom-button-face, custom-button-pressed-face)
1476 (custom-documentation-face, custom-state-face)
1477 (custom-comment-face, custom-comment-tag-face)
1478 (custom-variable-tag-face, custom-variable-button-face)
1479 (custom-face-tag-face, custom-group-tag-face-1)
1480 (custom-group-tag-face): Remove obsolete face alias.
1481
1482 * epa.el (epa-validity-high, epa-validity-medium)
1483 (epa-validity-low, epa-mark, epa-field-name, epa-string)
1484 (epa-field-name, epa-field-body):
1485 * font-lock.el (font-lock-comment-face, font-lock-string-face)
1486 (font-lock-keyword-face, font-lock-builtin-face)
1487 (font-lock-function-name-face, font-lock-variable-name-face)
1488 (font-lock-type-face, font-lock-constant-face):
1489 * ido.el (ido-first-match, ido-only-match, ido-subdir)
1490 (ido-virtual, ido-indicator, ido-incomplete-regexp):
1491 * speedbar.el (speedbar-button-face, speedbar-file-face)
1492 (speedbar-directory-face, speedbar-tag-face)
1493 (speedbar-selected-face, speedbar-highlight-face)
1494 (speedbar-separator-face):
1495 * whitespace.el (whitespace-newline, whitespace-space)
1496 (whitespace-hspace, whitespace-tab, whitespace-trailing)
1497 (whitespace-line, whitespace-space-before-tab)
1498 (whitespace-space-after-tab, whitespace-indentation)
1499 (whitespace-empty):
1500 * emulation/cua-base.el (cua-global-mark):
1501 * eshell/em-prompt.el (eshell-prompt):
1502 * net/newst-plainview.el (newsticker-new-item-face)
1503 (newsticker-old-item-face, newsticker-immortal-item-face)
1504 (newsticker-obsolete-item-face, newsticker-date-face)
1505 (newsticker-statistics-face, newsticker-default-face):
1506 * net/newst-reader.el (newsticker-feed-face)
1507 (newsticker-extra-face, newsticker-enclosure-face):
1508 * net/newst-treeview.el (newsticker-treeview-face)
1509 (newsticker-treeview-new-face, newsticker-treeview-old-face)
1510 (newsticker-treeview-immortal-face)
1511 (newsticker-treeview-obsolete-face)
1512 (newsticker-treeview-selection-face):
1513 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
1514 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
1515 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
1516 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
1517 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
1518 (nxml-outline-active-indicator, nxml-outline-ellipsis):
1519 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
1520 (mpuz-text):
1521 * progmodes/vera-mode.el (vera-font-lock-number)
1522 (vera-font-lock-function, vera-font-lock-interface):
1523 * textmodes/table.el (table-cell): Use new-style face specs, and
1524 don't use the old :bold and :italic attributes.
1525
1526 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
1527 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
1528 (ebrowse-member-class, ebrowse-progress): Likewise.
1529 (ebrowse-tree-mark-face, ebrowse-root-class-face)
1530 (ebrowse-file-name-face, ebrowse-default-face)
1531 (ebrowse-member-attribute-face, ebrowse-member-class-face)
1532 (ebrowse-progress-face): Remove obsolete faces.
1533
1534 * progmodes/flymake.el (flymake-errline, flymake-warnline):
1535 Inherit from error and warning faces respectively.
1536
1537 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
1538 Likewise.
f80efb86
SM
1539 (flyspell-incorrect-face, flyspell-duplicate-face):
1540 Remove obsolete aliases.
4b56d0fe 1541
03310646
MA
15422012-06-08 Michael Albinus <michael.albinus@gmx.de>
1543
1544 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1545 Avoid infloop.
1546
513749ee
SM
15472012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1548
1549 * startup.el (argv, argi): Make lexically scoped.
1550 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
1551 * emacs-lisp/cl-macs.el: Use lexical-binding.
1552 Rename cl-bind-* to cl--bind-*.
1553 * files.el: Don't require `cl' since it doesn't use it.
1554 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
1555
595ef4ad
JB
15562012-06-08 Juanma Barranquero <lekktu@gmail.com>
1557
1558 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
1559 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
1560 instead of calling external sort utility.
1561 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
1562
e9f66fcb
EZ
15632012-06-08 Eli Zaretskii <eliz@gnu.org>
1564
1565 * descr-text.el (describe-char): Mention how to insert the
1566 character, if the current input method doesn't support it.
1567 See the discussion in this thread for the details:
1568 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
1569
3d10db47
SS
15702012-06-08 Sam Steingold <sds@gnu.org>
1571
1572 * bindings.el (global-map): Bind XF86Forward to next-buffer and
1573 XF86Back to previous-buffer.
1574 (minibuffer-local-map): Bind them to next-history-element and
1575 previous-history-element respectively.
1576 * help-mode.el (help-mode-map): Bind them to help-go-forward and
1577 help-go-back respectively.
1578 * info.el (Info-mode-map): Bind them to Info-history-forward and
1579 Info-history-back respectively.
1580 These are the keys next to Up on the ThinkPad keyboard.
1581
de7e2b36
SM
15822012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1583
1584 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
1585 * emacs-lisp/cl-macs.el: Provide itself.
1586 (cl--labels-convert-cache): New var.
1587 (cl--labels-convert): New function.
1588 (cl-flet, cl-labels): New implementation with new semantics, relying on
1589 lexical-binding.
1590 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
1591 (cl-closure-vars, cl--function-convert-cache)
1592 (cl--function-convert): Move from cl-macs.el.
1593 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
1594 rename by removing the "cl-" prefix.
1595 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
1596
6fa6c4ae
SM
15972012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1598
1599 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
1600 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
1601 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
1602 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
1603 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
1604 (cl-hash-table-count): Add old compatibility aliases.
1605
1606 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
1607 Use macroexpand-all-environment instead.
1608 (cl--old-macroexpand): New var.
1609 (cl--sm-macroexpand): New function.
1610 (cl-symbol-macrolet): Use it during macro expansion.
1611 (cl--function-convert-cache): New var.
1612 (cl--function-convert): New function, extracted from
1613 cl-macroexpand-all.
1614 (cl-lexical-let): Use it.
1615
1616 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
1617 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
1618 (cl-member): Remove old alias.
1619
1620 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
1621 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
1622 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
1623 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
1624 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
1625 (cl-macroexpand-cmacs): Remove var.
1626 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
1627 Use macroexpand-all instead.
1628
4dd1c416
SM
16292012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1630
1631 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
1632 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
1633 (macroexp-copyable-p): New functions and macros.
1634 * emacs-lisp/edebug.el (edebug-unwrap):
1635 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
1636 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
1637 (pcase--let*): Remove.
1638 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
1639 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
1640 macroexp-const-p instead.
1641 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
1642
1643 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
1644 instead of "cl-" for internal definitions. Use macroexp-const-p.
1645 (cl-old-bc-file-form): Remove var.
1646 (cl-const-exprs-p): Remove fun.
1647 (cl-labels, cl-macrolet): Use backquote.
1648 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
1649 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
1650 (cl-define-setf-expander): Rename from cl-define-setf-method.
1651 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
1652
1653 * international/mule-cmds.el: Don't require CL.
1654 (view-hello-file): Don't use `letf'.
1655
ed8bd4d7
SM
16562012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1657
7287f2f3
SM
1658 * tmm.el (tmm-prompt): Use string-prefix-p.
1659 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
1660 (tmm-add-prompt): Use minibuffer-completion-help.
1661 (tmm-delete-map): Remove.
1662
ed8bd4d7
SM
1663 * subr.el (kbd): Make it its own function.
1664
7b4cdbf4
SM
16652012-06-07 Stefan Merten <smerten@oekonux.de>
1666
1667 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
1668 Silence compiler warnings. Fix versions.
ed8bd4d7 1669 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7b4cdbf4 1670 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
ed8bd4d7 1671 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7b4cdbf4
SM
1672 (rst-package-emacs-version-alist): Correct Emacs version to
1673 represent major merge with upstream.
ed8bd4d7 1674 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7b4cdbf4 1675
2b48d721
GM
16762012-06-06 Glenn Morris <rgm@gnu.org>
1677
1678 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
1679 Only print environment variables if set.
1680
fa779ab0
SM
16812012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1682
1683 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
1684 (macroexp--cons): Rename from maybe-cons.
1685 (macroexp--accumulate): Rename from macroexp-accumulate.
1686 (macroexp--all-forms): Rename from macroexpand-all-forms.
1687 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
1688 (macroexp--expand-all): Rename from macroexpand-all-1.
1689
628299e0
SS
16902012-06-06 Sam Steingold <sds@gnu.org>
1691
1692 * calendar/calendar.el (calendar-in-read-only-buffer):
1693 Call `special-mode' to enable the standard read-only keybindings.
1694
b7bb5838
SM
16952012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1696
1697 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
1698 with "loading" messages (bug#11635).
1699
dfb308ba
MA
17002012-06-06 Michael Albinus <michael.albinus@gmx.de>
1701
1702 * files.el (enable-remote-dir-locals): New option.
1703 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
1704
0372ee92
MA
1705 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1706 Ensure, that the temp directory is local.
1707
1708 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
1709 `temporary-file-directory'.
1710
eed0bb91
MA
1711 * progmodes/python.el (python-send-region): Ensure, that the
1712 temporary file is created also in the remote case.
1713
7a58f64d
GM
17142012-06-06 Glenn Morris <rgm@gnu.org>
1715
f7dd4e98
GM
1716 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
1717 (vc-rcs-update-changelog): Use it.
1718
090bd7cb 1719 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
276d5f5d 1720
7a58f64d
GM
1721 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
1722 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
1723 (vc-sccs-diff): Replace use of the external vcdiff script.
1724
daed4003
GM
17252012-06-05 Glenn Morris <rgm@gnu.org>
1726
1727 * ledit.el: Move to obsolete/.
1728
48c455c7
SS
17292012-06-05 Sam Steingold <sds@gnu.org>
1730
1731 * calendar/calendar.el (calendar-exit): reinstate the 2012-03-28
1732 patch (Bug#11140).
1733
57a7d507
SM
17342012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
1735
090bd7cb 1736 * emacs-lisp/cust-print.el: Move to obsolete.
d32926ff 1737
53aacf21
SM
1738 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
1739 compiler-macro expansion.
1740
57a7d507
SM
1741 Add native compiler-macro support.
1742 * emacs-lisp/macroexp.el (macroexpand-all-1):
1743 Support compiler-macros directly. Properly follow aliases and apply
1744 the compiler macros more thoroughly.
1745 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
1746 macroexpand now properly follows aliases.
1747 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
1748 (cl-compiler-macroexpand): Use new prop.
1749 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
1750
1751 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
1752
51a5f9d8
MR
17532012-06-05 Martin Rudalics <rudalics@gmx.at>
1754
1755 * window.el (get-lru-window, get-mru-window, get-largest-window):
1756 New argument NOT-SELECTED to avoid picking the selected window.
1757 (window--display-buffer-1, window--display-buffer-2): Replace by
1758 new function window--display-buffer
1759 (display-buffer-same-window, display-buffer-reuse-window)
57a7d507
SM
1760 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1761 Use window--display-buffer.
51a5f9d8
MR
1762 (display-buffer-use-some-window): Remove temporary dedication
1763 hack by calling get-lru-window and get-largest-window with
1764 NOT-SELECTED argument non-nil. Call window--display-buffer.
1765
08f9f738
GM
17662012-06-05 Glenn Morris <rgm@gnu.org>
1767
1768 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
1769 Replace external vcdiff script.
1770
e364a2b7
SM
17712012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1772
1773 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
1774
041df390
CY
17752012-06-04 Chong Yidong <cyd@gnu.org>
1776
e364a2b7
SM
1777 * image.el (imagemagick-types-inhibit): Revert last change.
1778 Add INFO and M.
47b36b94 1779 (imagemagick-enabled-types): Remove CIN and EPS*.
041df390 1780
7c1898a7
SM
17812012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1782
1783 * emacs-lisp/cl-lib.el: Rename from cl.el.
1784 * emacs-lisp/cl.el: New compatibility file.
1785 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
1786 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
1787 to obey the "cl-" prefix.
1788 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
1789
0c3461de
GM
17902012-06-03 Glenn Morris <rgm@gnu.org>
1791
1e266c88
GM
1792 * emacs-lisp/authors.el (authors-aliases): Addition.
1793
0c3461de
GM
1794 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
1795 Fix :version.
1796
d8a52e15
SM
17972012-06-03 Stefan Merten <smerten@oekonux.de>
1798
1799 * textmodes/rst.el: Add comments.
1800 (rst-transition, rst-adornment): New faces.
1801 (rst-adornment-faces-alist): Make default safe to reevaluate.
1802 Fixes
1803 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
1804 Improve customization tags.
1805 (rst-define-level-faces): Clarify meaning.
1806
5205d6f6
CY
18072012-06-03 Chong Yidong <cyd@gnu.org>
1808
1809 * progmodes/compile.el (compilation-mode-line-fail)
7c1898a7
SM
1810 (compilation-mode-line-run, compilation-mode-line-exit):
1811 New faces.
5205d6f6
CY
1812 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
1813
757ee657
JD
18142012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
1815
7c1898a7
SM
1816 * progmodes/which-func.el (which-func-update-ediff-windows):
1817 New function. Use it in ediff-select-hook (Bug#11478).
757ee657 1818
5f2c76c6
CY
18192012-06-03 Chong Yidong <cyd@gnu.org>
1820
1821 * bindings.el: Remove explicit help text from format-mode-line.
1822 It is now supplied by mode-line-default-help-echo.
1823 (mode-line-front-space, mode-line-end-spaces)
1824 (mode-line-misc-info): New variables.
1825 (mode-line-modes, mode-line-position): Move the default value to
1826 the variable definition.
1827 (mode-line-default-help-echo): New defcustom.
383f7350
CY
1828 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
1829 (mode-line-modified-help-echo): New functions.
1830 (mode-line-mule-info, mode-line-modified): Use them.
1831 (mode-line-eol-desc, propertized-buffer-identification):
1832 Consistency fixes for help text.
cbe46e5f
CY
1833 (mode-line-coding-system-map): Allow using mouse-3 to invoke
1834 set-buffer-file-coding-system (Bug#289).
1835 (mode-line-mule-info-help-echo): Update help text.
5f2c76c6 1836
f2d6a3df
SM
18372012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
1838
1839 * simple.el (execute-extended-command): Set real-this-command
1840 (bug#11506).
1841
37269466
CY
18422012-06-02 Chong Yidong <cyd@gnu.org>
1843
1844 Remove incorrect uses of "modeline" in comments, docstrings, and
1845 function/variable names (Bug#10329).
1846
1847 * cus-edit.el (mode-line):
1848 * dframe.el (dframe-mouse-hscroll):
1849 * emacs-lisp/re-builder.el:
1850 * emacs-lisp/easy-mmode.el (define-minor-mode):
1851 * frame.el (set-frame-name):
1852 * help.el (lookup-minor-mode-from-indicator):
1853 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
1854 * progmodes/cc-cmds.el (c-toggle-auto-newline)
1855 (c-toggle-hungry-state):
1856 * progmodes/antlr-mode.el (antlr-language-alist):
1857 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
1858 * progmodes/vhdl-mode.el (vhdl-mode):
1859 * progmodes/which-func.el (which-func, which-func-cleanup-function):
1860 * term/ns-win.el (ns-face-at-pos):
1861 * term/sup-mouse.el (sup-mouse-report):
1862 * textmodes/flyspell.el (flyspell-mode-line-string):
1863 * textmodes/ispell.el (ispell-highlight-face):
1864 * textmodes/reftex-global.el:
1865 * vc/vc-arch.el (vc-arch-mode-line-string):
1866 * vc/vc-cvs.el (vc-cvs-mode-line-string):
1867 * vc/vc-git.el (vc-git-mode-line-string):
1868 * vc/vc-hooks.el (vc-display-status)
1869 (vc-default-mode-line-string):
1870 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
1871
1872 * ansi-color.el (ansi-color-faces-vector): Change default faces.
1873
1874 * dired.el (dired-sort-set-mode-line): Rename from
1875 dired-sort-set-modeline. All callers changed.
1876
1877 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
1878 eshell-status-in-modeline.
1879
1880 * foldout.el (foldout-mode-line-string): Rename from
1881 foldout-modeline-string. All callers changed.
1882 (foldout-update-mode-line): Rename from foldout-update-modeline.
1883
1884 * subr.el (redraw-modeline): Make into obsolete alias.
1885
1886 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
1887 timeclock-modeline-display. Make old name an alias.
1888 (timeclock-update-mode-line): Likewise. All callers changed.
1889 (timeclock-mode-line-display): No need to check before using
1890 add-hook.
1891 (timeclock-relative, timeclock-day-over-hook)
1892 (timeclock-use-elapsed, timeclock-mode-string)
1893 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
1894
1895 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
1896 crisp-mode-modeline-string.
1897
1898 * play/solitaire.el (solitaire-build-mode-line): Rename from
1899 solitaire-build-modeline. All callers changed.
1900
1901 * play/zone.el (zone-hiding-mode-line): Rename from
1902 zone-hiding-modeline. All callers changed.
1903 (zone): Remove unusued `modeline-hidden-level' property.
1904
1905 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
1906 xscheme-modeline-initialize. All callers changed.
1907
1908 * strokes.el (strokes-lighter): Rename from
1909 strokes-modeline-string.
1910
1911 * textmodes/sgml-mode.el (html-face-tag-alist)
1912 (html-tag-face-alist): Use mode-line face instead of obsolete
1913 alias modeline.
1914
42152ee4
SM
19152012-06-02 Stefan Merten <smerten@oekonux.de>
1916
1917 * textmodes/rst.el: Always require `cl'.
4cf9b38d 1918 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
42152ee4 1919
95f520b5
CY
19202012-06-02 Chong Yidong <cyd@gnu.org>
1921
1922 * image.el (imagemagick-enabled-types): Rename from
1923 imagemagick-types-enable. Add many more types.
1924 (imagemagick-types-inhibit): Change default to nil.
1925 (imagemagick-filter-types): Caller changed.
1926
4a5f187a
SM
19272012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1928
03fef3e6
SM
1929 * emacs-lisp/cl-macs.el: Use backquotes.
1930 (cl-transform-function-property): Use eval-and-compile rather than
1931 abusing `require'.
1932 (defstruct): Use declare-function instead of with-no-warnings.
1933
4a5f187a
SM
1934 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
1935 (byte-compile-output-docform): Re-add the print-circle bindings.
1936 (byte-compile-fix-header): Use #$ just because it's shorter.
1937 (byte-compile-output-file-form): Remove defun/defmacro.
1938
bd56924f
MR
19392012-06-01 Martin Rudalics <rudalics@gmx.at>
1940
1941 * simple.el (choose-completion): Remove now obsolete binding for
1942 owindow.
1943
046e38ce
MA
19442012-06-01 Michael Albinus <michael.albinus@gmx.de>
1945
1946 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
1947 in order to avoid "Stack overflow in regexp matcher".
1948
32d72c2f
GM
19492012-05-31 Glenn Morris <rgm@gnu.org>
1950
1951 * image.el: For clarity, call imagemagick-register-types at
1952 top-level, rather than relying on a custom :initialize.
1953 (imagemagick-types-enable): New option. (Bug#11557)
60b5f187
GM
1954 (imagemagick-filter-types): New function. (Bug#7406)
1955 (imagemagick-register-types): Use imagemagick-filter-types.
32d72c2f
GM
1956 If disabling support, remove elements altogether rather
1957 than using an impossible regexp.
1958 (imagemagick-types-inhibit): Give it the default init function.
1959
dd41169b
SM
19602012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1961
4a5f187a
SM
1962 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
1963 Handle arbitrary file name lengths (Bug#11585).
dd41169b 1964
efc00ab1 19652012-05-31 Martin Rudalics <rudalics@gmx.at>
5221ccb9
MR
1966
1967 * desktop.el (desktop-read): Clear previous and next buffers for
1968 all windows and bury *Messages* buffer (bug#11556).
1969
500fcedc
SM
19702012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1971
1972 Add `declare' for `defun'. Align `defmacro's with it.
1973 * emacs-lisp/easy-mmode.el (define-minor-mode)
1974 (define-globalized-minor-mode): Don't autoload the var definitions.
1975 * emacs-lisp/byte-run.el: Use lexical-binding.
1976 (defun-declarations-alist, macro-declarations-alist): New vars.
1977 (defmacro, defun): Use them.
1978 (make-obsolete, define-obsolete-function-alias)
1979 (make-obsolete-variable, define-obsolete-variable-alias):
1980 Use `declare'.
1981 (macro-declaration-function): Mark obsolete.
1982 * emacs-lisp/autoload.el: Use lexical-binding.
1983 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
1984
6e8a1786
AM
19852012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1986
1987 * textmodes/ispell.el (ispell-with-no-warnings):
1988 Define as a macro.
500fcedc
SM
1989 (ispell-kill-ispell, ispell-change-dictionary):
1990 Use `called-interactively-p' for Emacs instead of obsolete
6e8a1786
AM
1991 `interactive-p'.
1992
61b108cc
SM
19932012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
1994
1995 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
1996 (macro-declaration-function): Move var from C code.
1997 (macro-declaration-function): Define function with defalias.
1998 * emacs-lisp/macroexp.el (macroexpand-all-1):
1999 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
2000 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
2001 defun/defmacro any more.
2002 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
2003 Provide fallback for unknown arglist.
2004 (byte-compile-arglist-warn): Change calling convention.
2005 (byte-compile-output-file-form): Move print-vars binding.
2006 (byte-compile-output-docform): Simplify accordingly.
2007 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
2008 (byte-compile-defmacro-declaration): Remove.
2009 (byte-compile-file-form-defmumble): Generalize to defalias.
2010 (byte-compile-output-as-comment): Return byte-positions.
2011 Simplify callers accordingly.
2012 (byte-compile-lambda): Use `assert'.
2013 (byte-compile-defun, byte-compile-defmacro): Remove.
2014 (byte-compile-file-form-defalias):
2015 Use byte-compile-file-form-defmumble.
2016 (byte-compile-defalias-warn): Remove.
2017
6d3f7c2f
SM
20182012-05-29 Stefan Merten <smerten@oekonux.de>
2019
2020 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
61b108cc 2021 possible. Fix authors. Improve comments. Improve loading of `cl'.
6d3f7c2f
SM
2022
2023 (rst-mode-abbrev-table): Merge definition.
2024 (rst-mode): Make sure `font-lock-defaults' is buffer local.
2025 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
2026
6dbaa1c7
UJ
20272012-05-29 Ulf Jasper <ulf.jasper@web.de>
2028
2029 * calendar/icalendar.el
2030 (icalendar-export-region): Export UID properly.
2031
d209e2fb 20322012-05-29 Leo Liu <sdl.web@gmail.com>
61b108cc
SM
2033 * calendar/icalendar.el (icalendar-import-format):
2034 Add `icalendar-import-format-uid' (Bug#11525).
6dbaa1c7
UJ
2035 (icalendar-import-format-uid): New.
2036 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
2037 Export UID.
2038
6876a58d
SM
20392012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
2040
2041 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
2042 different alternative patterns.
2043 (pcase-codegen): Be more careful to preserve identity.
2044 (pcase--u1): Don't forget to mark vars as used.
2045
2046 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
2047 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
2048 (byte-compile-from-buffer): ...rather than here.
2049
2050 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
2051 functions from byte-compile-function-environment.
2052
46b7967e
TN
20532012-05-29 Troels Nielsen <bn.troels@gmail.com>
2054
2055 * window.el (window-deletable-p): Avoid deleting the root window
2056 of a frame with an active minibuffer.
2057
69d565e2
MR
20582012-05-29 Martin Rudalics <rudalics@gmx.at>
2059
2060 * simple.el (choose-completion): Use quit-window (Bug#11567).
2061
a149fa51
CY
20622012-05-29 Chong Yidong <cyd@gnu.org>
2063
2064 * whitespace.el (whitespace-cleanup): Fix usage of
2065 whitespace-empty-at-bob-regexp (Bug#11492).
2066
2b311310
AH
20672012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2068
2069 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
2070 revert (Bug#11488).
2071
b9cb2387
JL
20722012-05-29 Juri Linkov <juri@jurta.org>
2073
2074 * isearch.el (isearch-mode-map): Bind `M-s _' to
2075 `isearch-toggle-symbol'. Bind `M-s c' to
2076 `isearch-toggle-case-fold'.
2077 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
2078 (isearch-forward): Add `M-s _' to the docstring.
2079 (isearch-forward-symbol, isearch-toggle-case-fold)
2080 (isearch-symbol-regexp): New functions. (Bug#11381)
2081
d5e61c1c
JL
20822012-05-29 Juri Linkov <juri@jurta.org>
2083
2084 * isearch.el (isearch-word): Add docstring. (Bug#11381)
2085 (isearch-occur, isearch-search-and-update): If `isearch-word' is
2086 a function, call it to get the regexp.
2087 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
2088 property `isearch-message-prefix' instead of the string "word ".
2089 (isearch-search-fun-default): For the case of `isearch-word',
2090 return a lambda that calls re-search-forward/re-search-backward
2091 with a regexp returned by `word-search-regexp' or by the function
2092 in `isearch-word'.
2093
8cbd80f7
JL
20942012-05-29 Juri Linkov <juri@jurta.org>
2095
2096 * isearch.el (isearch-search-fun-default): New function.
2097 (isearch-search-fun): Move default part to the new function
2098 `isearch-search-fun-default'.
2099 (isearch-search-fun-function): Set the default value to
2100 `isearch-search-fun-default'. (Bug#11381)
2101
2102 * comint.el (comint-history-isearch-end):
2103 Use `isearch-search-fun-default'.
2104 (comint-history-isearch-search): Use `isearch-search-fun-default'
2105 and remove spacial case for `isearch-word'.
2106 (comint-history-isearch-wrap): Remove spacial case for
2107 `isearch-word'.
2108
2109 * hexl.el (hexl-isearch-search-function):
2110 Use `isearch-search-fun-default'.
2111
2112 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
2113 Use `word-search-regexp' for `isearch-word'.
2114
2115 * misearch.el (multi-isearch-search-fun):
2116 Use `isearch-search-fun-default'.
2117
2118 * simple.el (minibuffer-history-isearch-search):
2119 Use `isearch-search-fun-default' and remove spacial case for
2120 `isearch-word'.
2121 (minibuffer-history-isearch-wrap): Remove spacial case for
2122 `isearch-word'.
2123
2124 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
2125 Remove spacial case for `isearch-word'.
2126 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
2127
85c8c5b6
AM
21282012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2129
2130 Decrease XEmacs incompatibilities.
2131 * textmodes/flyspell.el (flyspell-check-pre-word-p):
2132 Use `string-match'.
2133 (flyspell-delete-region-overlays): Use alternative definition for
2134 XEmacs.
2135 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
2136 (flyspell-word): Use `process-kill-without-query' if XEmacs.
2137 (flyspell-mode-on): Use `interactive-p' if XEmacs.
2138 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
2139 `define-obsolete-face-alias' under XEmacs, but old method.
2140
2141 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
2142 `with-no-warnings' definition or Emacs alias.
2143 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
2144 (ispell-word): Do not use `region-p' if XEmacs.
2145
8cab9efc
AM
21462012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2147
2148 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
2149 Check for `ispell-dictionary-base-alist' instead of full
2150 `ispell-dictionary-alist'.
2151 (ispell-init-process): Show spellchecker when starting new Ispell
2152 process.
2153
fda91268
RZ
21542012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2155
2156 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
2157 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
2158
694ea8e3
JB
21592012-05-27 Juanma Barranquero <lekktu@gmail.com>
2160
2161 * version.el (motif-version-string, gtk-version-string)
2162 (ns-version-string): Declare.
2163
e4d4f539
JL
21642012-05-27 Juri Linkov <juri@jurta.org>
2165
2166 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
2167 after the `eval-defun-1' specialcaseing
2168 like in `edebug-eval-defun' (bug#10181).
2169
2170 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
2171 like in `eval-defun-1'.
2172
33017faf 21732012-05-27 Eli Zaretskii <eliz@gnu.org>
b30b64b9 2174
fda91268
RZ
2175 * mail/sendmail.el (mail-yank-region):
2176 Recognize rmail-yank-current-message in addition to insert-buffer.
2177 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
b30b64b9
EZ
2178 a *mail* buffer created through rmail-start-mail with sendmail as
2179 mail-user-agent.
2180
33017faf
GM
21812012-05-27 Chong Yidong <cyd@gnu.org>
2182
2183 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
2184 Default to 256 (Bug#11267).
2185
2186 * help.el (describe-mode): Doc fix.
2187
04188bb9
GM
21882012-05-26 Glenn Morris <rgm@gnu.org>
2189
38264cc9
GM
2190 * w32-fns.el (w32-init-info): Remove.
2191 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
2192
eb7afdad
GM
2193 * info.el (info-initialize): For self-contained NS builds, put the
2194 included info/ directory at the front. (Bug#2791)
2195
04188bb9
GM
2196 * paths.el (Info-default-directory-list): Make it a defcustom,
2197 mainly so that we can use custom-initialize-delay.
2198
a179e3f7
SM
21992012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
2200
43416392
SM
2201 * subr.el (buffer-has-markers-at): Mark obsolete.
2202
a179e3f7 2203 * subr.el (lambda): Use declare.
43416392 2204
a179e3f7
SM
2205 * emacs-lisp/lisp-mode.el (lambda):
2206 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
2207
34a008d9
AH
22082012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2209
2210 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
2211
0a3b289f
GM
22122012-05-26 Glenn Morris <rgm@gnu.org>
2213
2214 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
2215
758c81e8
GM
22162012-05-25 Glenn Morris <rgm@gnu.org>
2217
f9f334f0
GM
2218 * paths.el: Remove no-byte-compile.
2219 * loadup.el: No need to load paths.el uncompiled.
2220
87eb79c2
GM
2221 * image.el (imagemagick-types-inhibit): Doc fix.
2222
758c81e8
GM
2223 * version.el: Remove no-byte-compile and associated formatting.
2224 * loadup.el: No need to load version.el uncompiled. AFAICS, this
2225 is ancient code from when there was an "inc-vers.el".
2226
e7e85dc0
SM
22272012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
2228
2229 * progmodes/gdb-mi.el: Minor style changes.
2230 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
2231 Turn into minor modes.
2232 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
2233 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
2234 (gdb-shell): Remove unneeded let-binding.
2235 (gdb-get-many-fields): Eliminate O(n²) behavior.
2236
f31237a4
EZ
22372012-05-25 Eli Zaretskii <eliz@gnu.org>
2238
2239 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
2240 platforms that don't link in fontset.c.
2241
bc1b21bb
JL
22422012-05-25 Juri Linkov <juri@jurta.org>
2243
2244 Use the same diff color scheme as in modern VCSes (bug#10181).
2245
2246 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
2247 to avoid confusion with `diff-added' that now uses green colors.
2248 (diff-removed): Use shades of red.
2249 (diff-added): Use shades of green.
2250 (diff-changed): Leave just the yellow color.
2251 (diff-use-changed-face): New variable.
2252 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
2253 how to highlight context diff changes.
2254 (diff-refine-change): Use shades of yellow.
2255 (diff-refine-removed): New face that uses shades of red.
2256 (diff-refine-added): New face that uses shades of green.
2257 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
2258 `diff-refine-removed' in the call to `smerge-refine-subst'
2259 depending on the value of `diff-use-changed-face'.
2260
2261 * vc/smerge-mode.el (smerge-mine): Use shades of red.
2262 (smerge-other): Use shades of green.
2263 (smerge-base): Use shades of yellow.
2264 (smerge-refined-change): Empty face.
2265 (smerge-refined-removed): New face that uses shades of red.
2266 (smerge-refined-added): New face that uses shades of green.
2267 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
2268 args `props-r' and `props-a', and use them. Doc fix.
2269 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
2270 on its value use different faces `smerge-refined-change',
2271 `smerge-refined-removed', `smerge-refined-added' in the call to
2272 `smerge-refine-subst'.
2273
2274 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
2275 Add face condition `min-colors 88' with shades of red.
2276 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
2277 `min-colors 88' with shades of green.
2278 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
2279 `min-colors 88' with shades of yellow.
2280
6df9112c
GM
22812012-05-24 Glenn Morris <rgm@gnu.org>
2282
ead5edc0
GM
2283 * paths.el (prune-directory-list, remote-shell-program): Move to...
2284 * files.el (prune-directory-list, remote-shell-program): ...here.
2285 For the latter, delay initialization, prefer ssh, just search PATH.
2286
f18b81e6
GM
2287 * paths.el (term-file-prefix): Move to faces.el (the only user).
2288 * faces.el (term-file-prefix): Move here, make it a defcustom.
2289
ee2f89a6
GM
2290 * paths.el (news-directory, news-path, news-inews-program):
2291 Move to gnus/nnspool.el.
61a583ca 2292
f8815e4c
GM
2293 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
2294
c8f3b42c
GM
2295 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
2296 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
2297 Make the latter a defcustom, with a delayed initialization.
2298
6df9112c
GM
2299 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
2300 These were deleted from Gnus itself late 2010.
2301
5dadff36
JB
23022012-05-22 Juanma Barranquero <lekktu@gmail.com>
2303
9e1701c6
JB
2304 * progmodes/which-func.el (which-func-ff-hook):
2305 Check against user-error, not error.
2306
bd7239f5 2307 * emacs-lisp/edebug.el (top): Do not load or set up loading of
5dadff36
JB
2308 cl-specs.el, which no longer exists.
2309
3290526d
GM
23102012-05-22 Glenn Morris <rgm@gnu.org>
2311
2312 * info.el (info-emacs-bug): New command.
2313 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
2314 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
2315
ff0c3cfb
GM
23162012-05-21 Glenn Morris <rgm@gnu.org>
2317
2318 * makefile.w32-in (update-subdirs-SH):
2319 * Makefile.in (update-subdirs): Update for moved update-subdirs.
2320
5814f126
SM
23212012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
2322
a52c0aa0
SM
2323 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
2324
5814f126
SM
2325 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2326 Simplify Maven regexp, and make sure the file can't start with a space
2327 (bug#11517).
2328
b847032c
GM
23292012-05-21 Glenn Morris <rgm@gnu.org>
2330
2331 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2332 Scrap superfluous subshells.
2333
3858bfe7
SM
23342012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
2335
2336 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
2337 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
2338
d14b0029
JB
23392012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
2340
2341 * calc/calc.el (calc-ensure-consistent-units): New variable.
2342
a52c0aa0
SM
2343 * calc/calc-units.el (math-consistent-units-p)
2344 (math-check-unit-consistency): New functions.
2345 (calc-quick-units, calc-convert-units):
2346 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
2347 is non-nil.
d14b0029
JB
2348 (calc-extract-units): Fix typo.
2349
60c4db3a
SM
23502012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2351
77f3b62e
SM
2352 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
2353
60c4db3a
SM
2354 * textmodes/flyspell.el: Commenting style, plus code simplifications.
2355 (flyspell-default-deplacement-commands): Don't spell check after
2356 repeated window/frame switches (e.g. triggered by mouse-movement).
2357 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
2358 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
2359 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
2360 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
2361 Remove unused vars.
2362 (flyspell-get-casechars, flyspell-get-not-casechars):
2363 Simplify; Don't bother removing a ] just to add it back.
2364 * textmodes/ispell.el (ispell-program-name): Use executable-find.
2365
d209e2fb 23662012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
b1a10716
RS
2367
2368 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
2369 New functions.
bd7239f5 2370 (math-function-table): Add support for more C functions.
b1a10716 2371
3f1b25b5
AM
23722012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2373
090bd7cb
JB
2374 * textmodes/flyspell.el (flyspell-check-pre-word-p)
2375 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
2376 Protect delay handling for otherchars against empty otherchars.
3f1b25b5 2377
b581bb5c
SM
23782012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2379
2380 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
2381 their respective macro declarations.
2382 * skeleton.el (define-skeleton):
2383 * progmodes/compile.el (define-compilation-mode):
2384 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
2385 (define-ibuffer-filter):
2386 * emacs-lisp/generic.el (define-generic-mode):
2387 * emacs-lisp/easy-mmode.el (define-minor-mode)
2388 (define-globalized-minor-mode):
2389 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
2390 * emacs-lisp/byte-run.el (defsubst):
2391 * custom.el (deftheme): Add doc-string metadata.
2392
70b8ef8f
SM
23932012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2394
2395 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
2396
b1198e17
SM
23972012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2398
9abdc45d
SM
2399 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
2400
b1198e17
SM
2401 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
2402 * emacs-lisp/cl-macs.el: Idem.
2403 * emacs-lisp/cl-specs.el: Remove.
2404
4735906a
SM
24052012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2406
2407 Minor renaming of internal CL functions and variables.
2408 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
2409 (cl--position): Rename from cl-position.
2410 (cl--delete-duplicates): Rename from cl-delete-duplicates.
2411 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
2412 (cl--random-state): Rename from *random-state*.
2413
ac348012
SM
24142012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2415
2416 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
2417 parens around the arg list (bug#11499).
2418
a0a79cde
JL
24192012-05-17 Juri Linkov <juri@jurta.org>
2420
2421 * isearch.el (word-search-regexp, word-search-backward)
2422 (word-search-forward, word-search-backward-lax)
2423 (word-search-forward-lax): Move functions from search.c
2424 (bug#10145, bug#11381).
2425
65034a51
AM
24262012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2427
090bd7cb
JB
2428 * textmodes/flyspell.el (flyspell-check-pre-word-p)
2429 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
2430 Delay for otherchars as for normal word components.
65034a51 2431
1a72a195
SM
24322012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
2433
2434 * minibuffer.el (completion--sifn-requote): Fix last change.
2435 (minibuffer-local-must-match-filename-map):
2436 Move define-obsolete-variable-alias before its var.
2437
fdb058c2
SM
24382012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
2439
c41045e6
SM
2440 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
2441
036dfb8b
SM
2442 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
2443 behavior.
2444 (completion--string-equal-p): New function.
2445 (completion--twq-all): Use it to get better assertion failure data.
2446
2473256d
SM
2447 Only handle ".." and '..' quoting in shell-mode (bug#11466).
2448 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
2449 (shell--requote-argument): New functions.
2450 (shell-completion-vars): Use them.
2451 (shell--parse-pcomplete-arguments): Rename from
2452 shell-parse-pcomplete-arguments.
2453 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
2454 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
2455 Obey comint-file-name-quote-list.
2456
fdb058c2
SM
2457 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
2458 (smie-indent-keyword): Use it.
2459
51fa99f1
SM
24602012-05-14 Stefan Merten <smerten@oekonux.de>
2461
2462 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
2463
e18afed7 24642012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
d9d1dfef
SM
2465
2466 * net/rlogin.el (rlogin-mode-map): Fix last change.
2467
e18afed7 24682012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
8633b1f4
JW
2469
2470 * mail/smtpmail.el (smtpmail-send-command): Send the command and
2471 the following \r\n using a single `process-send-string', since the
2472 Lotus SMTP server refuses to accept any commands if they are sent
e18afed7 2473 with two `process-send-string's (Bug#11444).
8633b1f4 2474
e18afed7 24752012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
fe263b8f 2476
fdb058c2
SM
2477 * shell.el (shell-parse-pcomplete-arguments):
2478 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
e18afed7 2479
2d21d7f6
WJ
24802012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
2481
e18afed7 2482 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
2d21d7f6
WJ
2483 (image-transform-scale, image-transform-right-angle-fudge): New vars.
2484 (image-transform-width, image-transform-fit-width): New functions.
2485 (image-transform-properties): Use them.
2486 (image-transform-check-size): New function.
2487 (image-toggle-display-image): Use it (for testing).
2488 (image-transform-set-rotation): Reduce angle mod 360.
2489 Delete obsolete comment.
2490
7102e6d0
WJ
24912012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
2492
2493 * image-mode.el: Fix scaling (bug#11399).
2494 (image-transform-resize): Doc fix.
2495 (image-transform-properties): Default scale is 1 and height should
2496 be an integer.
2497
06bc5e6e
SM
24982012-05-13 Johan Bockgård <bojohan@gnu.org>
2499
2500 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
2501 than hard-coding `car', to fix misbehavior when moving forward.
2502
0ae03b6a
CY
25032012-05-13 Chong Yidong <cyd@gnu.org>
2504
2505 * emacs-lisp/tabulated-list.el (tabulated-list-format)
2506 (tabulated-list-entries, tabulated-list-padding)
2507 (tabulated-list-sort-key): Make permanent-local.
2508
2509 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
2510 (electric-buffer-list): Put electric buffer menu
2511 command descriptions in this docstring, instead of the docstring
2512 of electric-buffer-menu-mode. Code cleanups.
2513 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
2514 Electric-buffer-menu-mode.
2515 (electric-buffer-update-highlight): Minor code cleanup.
2516
205a7391
MA
25172012-05-13 Michael Albinus <michael.albinus@gmx.de>
2518
2519 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
2520 (Bug#11447)
2521
e5bd0a28
SM
25222012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2523
2524 Move define-obsolete-variable-alias before the var's definition.
2525 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
2526 * tooltip.el (tooltip-hook):
2527 * textmodes/reftex-toc.el (reftex-toc-map):
2528 * textmodes/reftex-sel.el (reftex-select-label-map)
2529 (reftex-select-bib-map):
2530 * textmodes/reftex-index.el (reftex-index-map)
2531 (reftex-index-phrases-map):
2532 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
2533 * progmodes/meta-mode.el (meta-mode-map):
2534 * novice.el (disabled-command-hook):
2535 * loadhist.el (unload-hook-features-list):
2536 * frame.el (blink-cursor):
2537 * files.el (find-file-not-found-hooks, write-file-hooks)
2538 (write-contents-hooks):
2539 * emulation/tpu-edt.el (GOLD-map):
2540 * emacs-lock.el (emacs-lock-from-exiting):
2541 * emacs-lisp/generic.el (generic-font-lock-defaults):
2542 * emacs-lisp/chart.el (chart-map):
2543 * dos-fns.el (register-name-alist):
2544 * dired-x.el (dired-omit-files-p):
2545 * desktop.el (desktop-enable):
2546 * cus-edit.el (custom-mode-hook):
2547 * buff-menu.el (buffer-menu-mode-hook):
2548 * bookmark.el (bookmark-read-annotation-text-func)
2549 (bookmark-exit-hooks):
2550 * allout.el (allout-mode-deactivate-hook)
2551 (allout-exposure-change-hook, allout-structure-added-hook)
2552 (allout-structure-deleted-hook, allout-structure-shifted-hook):
2553 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
2554 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
2555 comes before the corresponding variable's definition.
2556
ac59c2f6
CY
25572012-05-12 Chong Yidong <cyd@gnu.org>
2558
2559 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
0d909786
CY
2560 (Buffer-menu-mouse-select): Restore function (Bug#11459).
2561 (Buffer-menu-mode-map): Bind it.
2562 (Buffer-menu--pretty-name): Add a mouse-face property.
ac59c2f6 2563
dee6c9a3
SM
25642012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
2565
2171cea5
SM
2566 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
2567 (prolog-upper-case-string, prolog-lower-case-string)
2568 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
2569 (prolog-use-smie, prolog-smie-grammar): New vars.
2570 (prolog-smie-forward-token, prolog-smie-backward-token)
2571 (prolog-smie-rules): New funs.
2572 (prolog-comment-indent): Remove.
2573 (prolog-mode-variables): Use default comment indentation instead.
2574 Setup SMIE.
2575 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
2576 (prolog-mode): Don't call them any more.
2577 (prolog-electric-colon, prolog-electric-dash)
2578 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
2579
aa0382bd
SM
2580 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
2581
dbacb4bd
SM
2582 * minibuffer.el (completion--twq-all): Again, allow case differences.
2583
13bdd94c
SM
2584 * term.el: Move keymap initialization code to be more idiomatic.
2585 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
2586 (term-terminal-menu): Move initialization into declaration.
2587 (term-escape-char): Let the user set it in her .emacs.
2588
ff46c759
SM
2589 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
2590 Provide SMIE-based indentation (not enabled by default yet).
2591 (sh-mode-map): Don't bind electric keys.
2592 Use electric-pair-mode instead of skeleton-pair.
2593 (sh-assignment-regexp): Fit within 80 columns.
2594 (sh-indent-supported): Specify actual shell name instead of boolean.
2595 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
2596 (sh-maybe-here-document): Use it. Make obsolete.
2597 (sh-electric-here-document-mode) New minor mode.
2598 (sh-mode): Use it. Don't set sh-indent-supported-here here.
2599 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
2600 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
2601 (sh-smie-rc-grammar, sh-use-smie): New vars.
2602 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
2603 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
2604 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
2605 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
2606 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
2607 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
2608 (sh-set-shell): Use smie-setup if requested.
2609
dee6c9a3
SM
2610 * term.el (term-set-escape-char): Properly set term-escape-char.
2611 See http://stackoverflow.com/questions/10524656.
2612
9f9aa044
CY
26132012-05-10 Chong Yidong <cyd@gnu.org>
2614
2615 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
2616 Use url-generic-parse-url, and handle host names and Windows
2617 filenames properly.
2618 (ffap-url-unwrap-remote): Use url-generic-parse-url.
2619 (ffap-url-unwrap-remote): Accept list values, specifying a list of
2620 URL schemes to work on.
2621 (ffap--toggle-read-only): New function.
2622 (ffap-read-only, ffap-read-only-other-window)
2623 (ffap-read-only-other-frame): Use it.
2624 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
2625 necessary for ffap-url-unwrap-remote.
2626
836d29b3
DA
26272012-05-10 Dave Abrahams <dave@boostpro.com>
2628
2629 * cus-start.el (create-lockfiles): Add it.
2630
00fd78ed
CY
26312012-05-09 Chong Yidong <cyd@gnu.org>
2632
2633 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
2634 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
2635
666b903b 26362012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1cb51c12
SM
2637
2638 * shell.el (shell-completion-vars): Fix last change (bug#11348).
2639
666b903b 26402012-05-09 Chong Yidong <cyd@gnu.org>
18f00515
CY
2641
2642 * ansi-color.el (ansi-color-process-output): Check for validity of
2643 comint-last-output-start before using it. This avoids a bad
2644 interaction with gdb-mi's input/output buffer.
2645
666b903b 26462012-05-09 Glenn Morris <rgm@gnu.org>
fd075e7b
GM
2647
2648 * files.el (dir-locals-read-from-file):
2649 Mention dir-locals in any error message.
2650
666b903b 26512012-05-09 Chong Yidong <cyd@gnu.org>
25f292cd
CY
2652
2653 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
2654 package (Bug#11410).
2655
f677562b
CY
2656 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
2657 variables into description.
2658
666b903b 26592012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3d53ee1b
SM
2660
2661 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
2662 shell-delimiter-argument-list (bug#11348).
2663 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
2664
b499d8d0
JB
26652012-05-09 Juanma Barranquero <lekktu@gmail.com>
2666
8f6b6da8
JB
2667 * textmodes/rst.el: Silence byte-compiler warnings.
2668 (rst-re-alist, rst-reset-section-caches): Move around.
2669 (rst-re): Use `characterp', not `char-valid-p'.
2670 (font-lock-beg, font-lock-end): Declare.
2671
4824146a
JB
2672 * progmodes/idlw-shell.el (specs): Remove reference to deleted
2673 variable `idlwave-shell-activate-alt-keybindings' and simplify.
2674
b499d8d0
JB
2675 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
2676
ad89bb83
GM
26772012-05-08 Glenn Morris <rgm@gnu.org>
2678
2679 * files.el (auto-mode-alist): Treat ".make" like ".mk".
2680
8bba5a75
SM
26812012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2682
49ed9c8e
SM
2683 * vc/log-edit.el: Add GNU coding standards highlighting.
2684 (log-edit-font-lock-gnu-style)
2685 (log-edit-font-lock-gnu-keywords): New vars.
2686 (log-edit-font-lock-keywords): New fun.
2687 (log-edit-mode): Don't fold case in font-lock.
2688 (log-edit-font-lock-keywords): Do not assume case-folding.
2689
07d00b56
SM
2690 * imenu.el: Misc cleanup. Make docstrings out of comments.
2691 Use lexical-binding.
2692 (imenu--index-alist, imenu--last-menubar-index-alist)
2693 (imenu-menubar-modified-tick): Use defvar-local.
2694 (imenu--split-menu): Remove unused var.
2695 (imenu--cleanup-seen): Declare as global.
2696 (imenu--cleanup): Use dolist.
2697
8bba5a75
SM
2698 * subr.el (defvar-local): Add debug spec and doc-string position.
2699
5075bdb5
GM
27002012-05-08 Glenn Morris <rgm@gnu.org>
2701
090bd7cb 2702 * language/burmese.el, language/cham.el, language/czech.el:
c052c904
GM
2703 * language/english.el, language/georgian.el, language/greek.el:
2704 * language/japanese.el, language/khmer.el, language/korean.el:
2705 * language/lao.el, language/misc-lang.el, language/romanian.el:
2706 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
2707 * language/thai.el, language/utf-8-lang.el:
2708 Remove no-byte-compile setting.
2709
5075bdb5
GM
2710 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
2711
06f679a7
AH
27122012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2713
2714 * progmodes/make-mode.el (makefile-browse):
2715 Remove unnecessary interactive. (Bug#11324)
2716
03794570
GM
27172012-05-07 Glenn Morris <rgm@gnu.org>
2718
af8630f4
GM
2719 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
2720
03794570
GM
2721 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
2722
f0809a9d
SM
27232012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2724
28be5ce7
SM
2725 * loadup.el: Preload newcomment.el.
2726 * newcomment.el: Move autoload-only code to toplevel.
2727
f0809a9d
SM
2728 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
2729 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
2730 Handle new :right-align column property.
2731 (tabulated-list-print-col): Idem, plus use `display' text-property to
2732 try and preserve alignment for variable pitch fonts.
2733
1241b724
CY
27342012-05-07 Chong Yidong <cyd@gnu.org>
2735
2736 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
2737 (tabulated-list-use-header-line): New var.
2738 (tabulated-list-init-header): Use it.
2739 (tabulated-list-print-fake-header): New function.
2740 (tabulated-list-print): Use it.
2741 (tabulated-list-sort-button-map): Add non-header-line commands.
2742 (tabulated-list-init-header): Add column name property to basic
2743 labels as well.
2744 (tabulated-list-col-sort): Handle non-header-line button case.
2745 (tabulated-list--sort-by-column-name): Fix a corner case.
2746
f0809a9d
SM
2747 * buff-menu.el (list-buffers--refresh):
2748 Handle Buffer-menu-use-header-line.
1241b724 2749
e5f9458f
CY
27502012-05-06 Chong Yidong <cyd@gnu.org>
2751
2752 * buff-menu.el: Convert to Tabulated List mode.
2753 (Buffer-menu-buffer+size-width): Make obsolete.
2754 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
2755 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
2756 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
2757 documentation into docstring of buffer-menu.
2758 (Buffer-menu-toggle-files-only): Add an informative message.
2759 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
2760 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
2761 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
2762 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
2763 (Buffer-menu-execute, Buffer-menu-select)
2764 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
2765 (Buffer-menu-bury): Use Tabulated List machinery.
2766 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
2767 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
f0809a9d 2768 Delete.
e5f9458f
CY
2769 (list-buffers--refresh): New function.
2770 (list-buffers-noselect): Use it.
2771 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
2772 (Buffer-menu--pretty-file-name): New helper functions.
2773
2774 * loadup.el: Preload tabulated-list.
2775
2776 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
2777 tabulated-list-sort-column.
2778 (tabulated-list-init-header): Add the initial aligning space even
2779 if tabulated-list-padding is zero.
2780
e129292c
CS
27812012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
2782
2783 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
2784 whose cdr is not a cons cell correctly (bug#11038).
2785
6632d361
CY
27862012-05-06 Chong Yidong <cyd@gnu.org>
2787
e129292c
CS
2788 * emacs-lisp/tabulated-list.el (tabulated-list-format):
2789 Accept additional plist in column descriptors.
6632d361
CY
2790 (tabulated-list-init-header): Obey it.
2791 (tabulated-list-get-entry): New function.
2792 (tabulated-list-put-tag): Use it. Use string-width instead of
2793 length.
2794 (tabulated-list--column-number): New function.
2795 (tabulated-list-print): Use it.
e129292c
CS
2796 (tabulated-list-print-col): New function.
2797 Set `tabulated-list-column-name' property on each column's text.
6632d361 2798 (tabulated-list-print-entry): Use it.
e129292c
CS
2799 (tabulated-list-delete-entry, tabulated-list-set-col):
2800 New functions.
6632d361
CY
2801 (tabulated-list-sort-column): New command (Bug#11337).
2802
3cc99f68
CY
2803 * buff-menu.el (list-buffers): Move C-x C-b binding from
2804 buff-menu.el to bindings.el.
2805
2806 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
2807 :advertised-binding feature.
2808
52b61776
TN
28092012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
2810
2811 * progmodes/compile.el (compilation-internal-error-properties):
2812 Calculate start position correctly when end-col is set but
2813 end-line is not (Bug#11382).
2814
ebfe2597
WJ
28152012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
2816
2817 * man.el (Man-unindent): Use text-property-default-nonsticky to
2818 prevent untabify from inheriting face properties (Bug#11408).
2819
6d3f7c2f
SM
28202012-05-05 Stefan Merten <smerten@oekonux.de>
2821
2822 * textmodes/rst.el: Major merge with upstream development up to
2823 Docutils SVN r7399 / rst.el V1.2.1.
2824
2825 Clarify maintainership and authors.
2826
2827 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
2828 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
2829 (rst-official-version, rst-official-cvs-rev, rst-version)
2830 (rst-package-emacs-version-alist): New functions and variables
2831 for version information.
2832
2833 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
2834 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
2835 (rst-mode-syntax-table, rst-mode): New and corrected functions
2836 and variables representing reStructuredText features.
2837
2838 (rst-re): New function for reStructuredText regexes. Use in
2839 many places.
2840
2841 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
2842 (rst-mode-map): Rebind keys.
2843
2844 (rst-mode-lazy, rst-font-lock-keywords)
2845 (rst-font-lock-extend-region)
2846 (rst-font-lock-extend-region-internal)
2847 (rst-font-lock-extend-region-extend)
2848 (rst-font-lock-find-unindented-line-limit)
2849 (rst-font-lock-find-unindented-line-match)
2850 (rst-adornment-level, rst-font-lock-adornment-level)
2851 (rst-font-lock-adornment-match)
2852 (rst-font-lock-handle-adornment-pre-match-form)
2853 (rst-font-lock-handle-adornment-matcher): Major revision of
2854 font-locking. Integrate with other code. Use `jit-lock-mode'.
2855
2856 (rst-preferred-adornments, rst-adjust-hook)
2857 (rst-new-adornment-down, rst-preferred-bullets)
2858 (rst-preferred-bullets, rst-indent, rst-indent-width)
2859 (rst-indent-field, rst-indent-literal-normal)
2860 (rst-indent-literal-minimized, rst-indent-comment): Change,
2861 extend and improve customization.
2862
2863 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
2864 (rst-normalize-cursor-position, rst-get-decoration)
2865 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
2866 (rst-rstrip, rst-toc-insert-find-delete-contents)
2867 (rst-shift-fill-region, rst-compute-bullet-tabs)
2868 (rst-debug-print-tabs, rst-debug-mark-found)
2869 (rst-shift-region-guts, rst-shift-region-right)
2870 (rst-shift-region-left, rst-use-char-classes)
2871 (rst-font-lock-keywords-function)
2872 (rst-font-lock-indentation-point)
2873 (rst-font-lock-find-unindented-line-begin)
2874 (rst-font-lock-find-unindented-line-end)
2875 (rst-font-lock-find-unindented-line)
2876 (rst-font-lock-adornment-point, rst-font-lock-level)
2877 (rst-adornment-level-alist): Remove functions and variables.
2878
2879 (rst-compare-adornments, rst-get-adornment-match)
2880 (rst-suggest-new-adornment, rst-get-adornments-around)
2881 (rst-adornment-complete-p, rst-get-next-adornment)
2882 (rst-adjust-adornment, rst-display-adornments-hierarchy)
2883 (rst-straighten-adornments): Standardize function names to
2884 use "adornment" instead of "decoration". Correct callers.
2885 Similar standardizing in many places.
2886
2887 (rst-update-section, rst-adjust, rst-promote-region)
2888 (rst-enumerate-region, rst-bullet-list-region)
2889 (rst-repeat-last-character): Correct use of `interactive'.
2890
2891 (rst-classify-adornment, rst-find-all-adornments)
2892 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
2893 (rst-find-leftmost-column, rst-repeat-last-character):
2894 Refactor functions.
2895
2896 (rst-find-title-line, rst-reset-section-caches)
2897 (rst-get-adornments-around, rst-adjust-adornment-work)
2898 (rst-arabic-to-roman, rst-roman-to-arabic)
2899 (rst-insert-list-pos, rst-insert-list-new-item)
2900 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
2901 New functions.
2902
2903 (rst-all-sections, rst-section-hierarchy)
2904 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
2905 New variables.
2906
2907 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
2908 configuration instead of only buffer. Change where necessary.
2909
2910 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
2911 (rst-shift-region, rst-adaptive-fill): New functions for
2912 indentation and filling.
2913
2914 (rst-comment-line-break, rst-comment-indent)
2915 (rst-comment-insert-comment, rst-comment-region)
2916 (rst-uncomment-region): New functions for handling comments.
2917
2918 (rst-compile): Quote shell arguments.
2919
2920 (rst-compile-pdf-preview, rst-compile-slides-preview):
2921 Delete temporary files after use.
2922
a43f98b3
GM
29232012-05-05 Glenn Morris <rgm@gnu.org>
2924
48176e8b
GM
2925 * calendar/cal-html.el: Optionally include holidays in the output.
2926 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
2927 (cal-html-holidays): New option.
2928 (cal-html-css-default): Add holiday entry.
2929 (holiday-in-range): Autoload it.
2930 (cal-html-htmlify-entry): Add optional class argument.
2931 (cal-html-htmlify-list): Add optional holidays argument.
2932 (cal-html-insert-agenda-days): Include holidays in the output.
2933 (cal-html-one-month): Maybe include holidays.
2934
a43f98b3
GM
2935 * calendar/holidays.el (holiday-in-range):
2936 Move here from cal-tex-list-holidays.
2937 * calendar/cal-tex.el (cal-tex-list-holidays):
2938 Make it an obsolete alias for holiday-in-range. Update all callers.
2939
fef9d149 29402012-05-05 Chong Yidong <cyd@gnu.org>
eceeb5fc
CY
2941
2942 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
2943 Nextstep.
2944
248da2f4
RW
29452012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
2946
2947 * files.el (file-auto-mode-skip): New var.
2948 (set-auto-mode-1): Use it.
2949
f95e9344
SM
29502012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2951
df96ab1e
SM
2952 * repeat.el: Use lexical-binding.
2953 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
2954 (repeat-undo-count): Remove.
2955 (repeat):
2956 * progmodes/octave-mod.el (octave-abbrev-start):
2957 * progmodes/f90.el (f90-abbrev-start):
2958 * face-remap.el (text-scale-adjust):
2959 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
2960
5342bb06
SM
2961 * emacs-lisp/pcase.el (pcase--let*): New function.
2962 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
2963 a bit more.
2964 (pcase--split-pred): Be more clever about ruling out overlap between
2965 a predicate and some constant pattern.
2966 (pcase--q1): Use `null' instead of (eq foo nil).
2967
f95e9344
SM
2968 * subr.el (setq-local, defvar-local): New macros.
2969 (kbd): Redefine as an alias.
2970 (with-selected-window): Leave unrelated frames alone.
2971 (set-temporary-overlay-map): New function.
2972
71873e2b
SM
29732012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2974
2975 * subr.el (user-error): New function.
2976 * window.el (switch-to-buffer):
2977 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
2978 (smerge-match-conflict):
2979 * simple.el (previous-matching-history-element)
2980 (next-matching-history-element, goto-history-element, undo-more)
2981 (undo-start):
2982 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
2983 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
2984 (next-file, tags-loop-scan, list-tags, complete-tag):
2985 * progmodes/compile.el (compilation-loop):
2986 * mouse.el (mouse-minibuffer-check):
2987 * man.el (Man-bgproc-sentinel, Man-goto-page):
2988 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
2989 (Info-history-forward, Info-follow-reference, Info-menu)
2990 (Info-extract-menu-item, Info-extract-menu-counting)
2991 (Info-forward-node, Info-backward-node, Info-next-menu-item)
2992 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
2993 (Info-next-reference, Info-prev-reference, Info-index)
2994 (Info-index-next, Info-follow-nearest-node)
2995 (Info-copy-current-node-name):
2996 * imenu.el (imenu--make-index-alist)
2997 (imenu-default-create-index-function, imenu-add-to-menubar):
2998 * files.el (basic-save-buffer, recover-file):
2999 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3000 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
3001 (checkdoc-message-text, checkdoc-defun):
3002 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
3003 * cus-edit.el (customize-changed-options, customize-rogue)
3004 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
3005 (custom-variable-mark-to-reset-standard)
3006 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
3007 (custom-file):
3008 * completion.el (check-completion-length):
3009 * comint.el (comint-search-arg)
3010 (comint-previous-matching-input-string-position)
3011 (comint-previous-matching-input)
3012 (comint-replace-by-expanded-history-before-point, comint-send-input)
3013 (comint-copy-old-input, comint-backward-matching-input)
3014 (comint-goto-process-mark, comint-set-process-mark):
3015 * calendar/calendar.el (calendar-cursor-to-date): Use it.
3016 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
3017
8a61ee22
SM
30182012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3019
66408d1e
SM
3020 * dabbrev.el (dabbrev--ignore-case-p): New function.
3021 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
3022 Use it.
3023
8a61ee22
SM
3024 * files.el (automount-dir-prefix): Mark as obsolete.
3025
3c74813a
GM
30262012-05-04 Glenn Morris <rgm@gnu.org>
3027
3028 * patcomp.el, play/bruce.el: Move to obsolete/.
3029
0bfcf5c5
PE
30302012-05-04 Paul Eggert <eggert@cs.ucla.edu>
3031
3032 Fix minor Y10k bugs.
3033 * arc-mode.el (archive-unixdate):
3034 * autoinsert.el (auto-insert-alist):
3035 * calc/calc-forms.el (math-this-year):
3036 * emacs-lisp/copyright.el (copyright-current-year)
3037 (copyright-update-year, copyright):
3038 * tar-mode.el (tar-clip-time-string):
3039 * time.el (display-time-update):
3040 Don't assume years have 4 digits.
3041
78f3273a
CY
30422012-05-04 Chong Yidong <cyd@gnu.org>
3043
3044 * dos-w32.el (file-name-buffer-file-type-alist)
3045 (direct-print-region-use-command-dot-com):
3046 * ffap.el (ffap-menu-regexp):
3047 * find-file.el (ff-special-constructs):
3048 * follow.el (follow-debug):
3049 * forms.el (forms--debug):
3050 * iswitchb.el (iswitchb-all-frames):
3051 * ido.el (ido-all-frames):
3052 * emacs-lisp/timer.el (timer-max-repeats):
3053 * mail/feedmail.el (feedmail-mail-send-hook)
3054 (feedmail-mail-send-hook-queued):
3055 * mail/footnote.el (footnote-signature-separator):
3056 * mail/mailabbrev.el (mail-alias-separator-string)
3057 (mail-abbrev-mode-regexp):
3058 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
3059 * progmodes/idlwave.el (idlwave-libinfo-file)
3060 (idlwave-default-completion-case-is-down)
3061 (idlwave-library-routines): Convert defvars to defcustoms.
3062
3063 * mail/rmail.el (rmail-decode-mime-charset):
3064 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
3065 (idlwave-shell-fix-inserted-breaks)
3066 (idlwave-shell-activate-alt-keybindings)
3067 (idlwave-shell-use-breakpoint-glyph):
3068 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
3069
f7ae6719
SM
30702012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
3071
3072 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
3073
47086495
WS
30742012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
3075
3076 * progmodes/verilog-mode.el (font-lock-keywords):
3077 Fix mis-highligting auto. Reported by Craig Barner.
3078 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
3079 defines from global name space. Reported by Dan Dever.
3080 (verilog-auto-reset, verilog-auto-reset-widths)
3081 (verilog-auto-tieoff): Support using unbased numbers for
3082 AUTORESET and AUTOTIEOFF.
3083 (verilog-submit-bug-report): Update variable list.
3084 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
3085 parenthesis from not matching. Reported by Michael Rytting.
3086 (verilog-auto-template-lint): Fix hash error when linting modules
3087 with no used templates.
3088 (verilog-warn, verilog-warn-error)
3089 (verilog-warn-fatal): When non-interactive report multiple
3090 warnings before exiting. Suggested by Brad Dobbie.
3091 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
3092 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
3093 to report unused template errors. Reported by Brad Dobbie.
3094 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
3095 nets, bug438. Reported by Vns Blore.
3096 (verilog-auto-inout-module, verilog-auto-reg)
3097 (verilog-read-decls, verilog-read-sub-decls-sig)
3098 (verilog-signals-edit-wire-reg, verilog-signals-with):
3099 Fix passing of Verilog data types in ANSI input/output ports
3100 such as "output logic" into the AUTOs. Special case "wire" and
3101 "reg" for backwards compatibility presuming Verilog 2001.
3102 (verilog-auto-ascii-enum): Add "auto enum" as alias.
3103 (verilog-preprocess): Fix replication of preprocess output.
3104 Reported by Brad Dobbie.
3105 (verilog-auto-inst-interfaced-ports):
3106 Create verilog-auto-inst-interfaced-ports, bug429.
3107 Reported by Julian Gorfajn.
3108 (verilog-after-save-font-hook)
3109 (verilog-before-save-font-hook): New variable.
3110 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
3111 (verilog-save-font-mods): Wrap disabling fontification, reported
3112 by David Rogoff.
3113 (verilog-do-indent, verilog-pretty-declarations-auto)
3114 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
3115 Reported by Pierre-David Pfister.
3116 (verilog-set-auto-endcomments): Fix endtask auto comments outside
3117 of class declarations, bug292. Reported by Kevin Heilman.
3118 (verilog-read-decls): Fix 'parameter type' not appearing in
3119 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
3120 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
3121 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
3122 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
3123 Reported by David Kravitz.
3124
31252012-05-03 Michael McNamara <mac@mail.brushroad.com>
3126
3127 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
3128 assignment with tests in ifs and for loops.
3129 (verilog-extended-complete-re, verilog-complete-reg): Change so
3130 that DPI inport functions don't look like fuction declarations.
3131 (verilog-pretty-expr): Don't line up assignment
3132 operations to the test and increment in if and for loops
3133 (verilog-extended-complete-re, verilog-complete-reg): Change so
090bd7cb 3134 that DPI inport functions don't look like fuction declarations.
47086495 3135
2e51d4b5
KH
31362012-05-03 Kenichi Handa <handa@m17n.org>
3137
3138 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
c846da43 3139 decoding, and show a warning message without signaling an error
2e51d4b5
KH
3140 (Bug#11282).
3141
2bd785a2
SM
31422012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
3143
3144 * emacs-lisp/bytecomp.el
3145 (byte-compile-file-form-custom-declare-variable): Compile all elements,
3146 since cconv.el might have introduced :fun-body, internal-make-closure,
3147 and friends for bytecomp to handle (bug#11391).
3148 * custom.el (defcustom): Avoid ((λ ..) ..).
3149
99d27583
SM
31502012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
3151
3152 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
3153
55a71479
JB
31542012-05-02 Juanma Barranquero <lekktu@gmail.com>
3155
3156 * notifications.el (dbus-debug):
3157 * term/linux.el (gpm-mouse-enable):
3158 * term/screen.el (xterm-register-default-colors): Declare.
3159
7b97c764
CY
31602012-05-02 Chong Yidong <cyd@gnu.org>
3161
2bc356d7
CY
3162 * cus-start.el (gc-cons-percentage, exec-suffixes)
3163 (dos-display-scancodes, dos-hyper-key, dos-super-key)
3164 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
3165 (make-cursor-line-fully-visible, void-text-area-pointer)
3166 (font-list-limit): Add customization data.
3167
7b97c764
CY
3168 * allout.el (allout-exposure-change-functions)
3169 (allout-structure-added-functions)
3170 (allout-structure-deleted-functions)
3171 (allout-structure-shifted-functions): Rename abnormal hooks from
3172 *-hook, and convert to defcustoms.
5d3385a0
JB
3173 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
3174 Convert to defcustoms.
7b97c764
CY
3175 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
3176
3177 * allout-widgets.el: Hook callers changed.
3178
90207a15 31792012-05-02 Eli Zaretskii <eliz@gnu.org>
91af76bf
EZ
3180
3181 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
3182 the yanked message in preference to the default value of
3183 buffer-file-coding-system.
3184
90207a15 31852012-05-02 Martin Rudalics <rudalics@gmx.at>
d9558cad 3186
5d3385a0
JB
3187 * window.el (display-buffer--action-function-custom-type):
3188 Fix entry.
d9558cad 3189
90207a15 31902012-05-02 Alan Mackenzie <acm@muc.de>
09affde0
AM
3191
3192 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
3193
d80ac57b
GM
31942012-05-01 Glenn Morris <rgm@gnu.org>
3195
976f7668
GM
3196 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
3197
beb83b5a
GM
3198 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
3199
d80ac57b
GM
3200 * cus-edit.el (custom-variable-documentation): Simplify with format.
3201
b593d6a9
AH
32022012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3203 Stefan Monnier <monnier@iro.umontreal.ca>
3204
3205 * simple.el (suggest-key-bindings, execute-extended-command):
3206 Move from keyboard.c.
3207
782fbf2a
CY
32082012-05-01 Chong Yidong <cyd@gnu.org>
3209
3210 * follow.el: Eliminate advice.
3211 (set-process-filter, process-filter, sit-for): Advice deleted.
3212 (follow-mode-off-hook): Obsolete hook removed.
b593d6a9
AH
3213 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
3214 Vars deleted.
782fbf2a
CY
3215 (follow-auto): Use a :set function.
3216 (follow-mode): Rewritten. Don't advise process filters.
3217 (follow-switch-to-current-buffer-all, follow-scroll-up)
3218 (follow-scroll-down): Assume follow-mode is bound.
3219 (follow-comint-scroll-to-bottom)
3220 (follow-align-compilation-windows): New functions.
3221 (follow--window-sorter): New function.
3222 (follow-all-followers): Use it to explicitly sort windows by their
3223 positions; don't make assumptions about next-window order.
3224 (follow-windows-start-end, follow-delete-other-windows-and-split)
3225 (follow-calc-win-start): Doc fix.
3226 (follow-windows-aligned-p, follow-select-if-visible): Don't call
3227 vertical-motion unnecessarily.
3228 (follow-adjust-window): New function.
3229 (follow-post-command-hook): Use it.
3230 (follow-call-set-process-filter, follow-call-process-filter)
3231 (follow-intercept-process-output, follow-tidy-process-filter-alist)
3232 (follow-stop-intercept-process-output, follow-generic-filter):
3233 Functions deleted.
3234 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
b593d6a9
AH
3235 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
3236 New functions, replacing advice on scroll-bar-* commands.
87233a14 3237 (follow-mwheel-scroll): New function (Bug#4112).
782fbf2a
CY
3238
3239 * comint.el (comint-adjust-point): New function.
b593d6a9
AH
3240 (comint-postoutput-scroll-to-bottom): Use it.
3241 Call follow-comint-scroll-to-bottom for Follow mode buffers.
782fbf2a 3242
290af740
GM
32432012-05-01 Glenn Morris <rgm@gnu.org>
3244
3245 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
3246 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
3247 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
3248 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
3249 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
3250 Remove no-byte-compile setting.
3251
6eac8dc9
SM
32522012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
3253
3254 * minibuffer.el (completion-table-with-quoting): Fix compatibility
3255 all-completions code to not return a number in the last cdr.
3256
9cc7819c
LL
32572012-04-30 Leo Liu <sdl.web@gmail.com>
3258
3259 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
3260 read-only error.
3261
c93b886f
CY
32622012-04-29 Chong Yidong <cyd@gnu.org>
3263
3264 * follow.el (follow-calc-win-end): Rewrite to handle partial
3265 screen lines correctly (Bug#8390).
3266 (follow-avoid-tail-recenter): Minor cleanup.
3267
8b6c19f4
SM
32682012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
3269
3270 Avoid the obsolete `assoc' package.
3271 * speedbar.el (speedbar-refresh): Avoid adelete.
3272 (speedbar-file-lists): Simplify and avoid aput.
3273 * man.el (Man--sections, Man--refpages): New vars, replacing
3274 Man-sections-alist and Man-refpages-alist.
3275 (Man-build-section-alist, Man-build-references-alist):
3276 Use them; avoid aput.
3277 (Man--last-section, Man--last-refpage): New vars.
3278 (Man-follow-manual-reference): Use them.
3279 Use the `default' arg of completing-read.
3280 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
3281
c5bb7569
CY
32822012-04-27 Chong Yidong <cyd@gnu.org>
3283
d1d2e2e8
CY
3284 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
3285
15cd8efd
CY
3286 * startup.el (x-apply-session-resources): New function.
3287
3288 * term/ns-win.el (ns-initialize-window-system):
3289 * term/w32-win.el (w32-initialize-window-system):
3290 * term/x-win.el (x-initialize-window-system): Use it to properly
3291 set menu-bar-mode and other vars from X resources, even if the
3292 initial frame is not a window-system frame (Bug#2299).
3293
c5bb7569
CY
3294 * subr.el (read-key): Avoid running filter function when setting
3295 up temporary tool bar entries (Bug#9922).
3296
a8e7d6d7 32972012-04-27 Andreas Schwab <schwab@linux-m68k.org>
c4347ab9
AS
3298
3299 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
3300 (Bug#11344)
3301
a8e7d6d7 33022012-04-27 Chong Yidong <cyd@gnu.org>
acb71f1d
CY
3303
3304 * select.el (xselect--encode-string): New function, split from
3305 xselect-convert-to-string.
3306 (xselect-convert-to-string): Use it.
3307 (xselect-convert-to-filename, xselect-convert-to-os)
3308 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
3309 returned strings are properly encoded (Bug#11315).
3310
a8e7d6d7 33112012-04-27 Chong Yidong <cyd@gnu.org>
d55486c7
CY
3312
3313 * simple.el (delete-active-region): Move to killing custom group.
3314
a8e7d6d7 33152012-04-27 Andreas Schwab <schwab@linux-m68k.org>
581b6788
AS
3316
3317 * progmodes/which-func.el (which-func-current): Quote %
3318 characters for mode-line processing.
3319
578c1d4b 33202012-04-27 Chong Yidong <cyd@gnu.org>
18edb22d
CY
3321
3322 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
3323 reaching eob (Bug#11286).
3324
a8e7d6d7 33252012-04-27 Eli Zaretskii <eliz@gnu.org>
9ee9f470
EZ
3326
3327 * progmodes/gdb-mi.el (gdb-control-level): New variable.
3328 (gdb): Make it buffer-local and init to zero.
3329 (gdb-control-commands-regexp): New variable.
3330 (gdb-send): Don't wrap in "-interpreter-exec console" if
3331 gdb-control-level is positive. Increment gdb-control-level
3332 whenever the command matches gdb-control-commands-regexp, and
3333 decrement it each time the command is "end". (Bug#11279)
3334
a8e7d6d7 33352012-04-27 Martin Rudalics <rudalics@gmx.at>
41cfe0cb
MR
3336
3337 * window.el (adjust-window-trailing-edge, enlarge-window)
3338 (shrink-window, window-resize):
3339 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
3340 windows (Bug#11276).
3341
b3608390
CY
33422012-04-27 Chong Yidong <cyd@gnu.org>
3343
3344 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
a8e7d6d7 3345 fix "missing prefix" warning. All callers changed.
b3608390 3346
797e6e88
SM
33472012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
3348
3349 * emacs-lisp/assoc.el: Move to obsolete/.
3350
e95a67dc
SM
33512012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3352
657c21e4 3353 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
e95a67dc
SM
3354
3355 * term/ns-win.el (ns-define-service):
3356 * progmodes/pascal.el (pascal-goto-defun):
3357 * progmodes/js.el (js--read-tab):
3358 * progmodes/etags.el (tags-lazy-completion-table):
3359 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
3360 * emacs-lisp/ewoc.el (ewoc--wrap):
3361 * emacs-lisp/assoc.el (aput, adelete, amake):
3362 * doc-view.el (doc-view-convert-current-doc):
3363 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
3364
cb3e7ae0
CY
33652012-04-26 Chong Yidong <cyd@gnu.org>
3366
dce04f7f
CY
3367 * image.el (image-type-from-buffer): Only return supported image
3368 type (Bug#9045).
3369
cb3e7ae0
CY
3370 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
3371 value, for symmetry with diff-end-of-hunk.
3372 (diff-split-hunk, diff-find-source-location)
3373 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
3374 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
3375 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
3376 compute the relevant hunk or file properly (Bug#6005).
3377 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
3378
0d42eb3e
SM
33792012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3380
3381 * vc/vc-mtn.el:
3382 * vc/vc-hg.el:
3383 * vc/vc-git.el:
3384 * vc/vc-dir.el:
3385 * vc/vc-cvs.el:
3386 * vc/vc-bzr.el:
3387 * vc/vc-arch.el:
3388 * vc/vc.el: Replace lexical-let by lexical-binding.
3389 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
3390 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
3391 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
3392
f08ae1c9
CY
33932012-04-26 Chong Yidong <cyd@gnu.org>
3394
8b71081d
CY
3395 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
3396 (diff-mode-shared-map): Bind it to / and [remap undo].
3397
f08ae1c9
CY
3398 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
3399 (ediff-window-setup-function): Use it as the default, to set up
3400 windows based on whether the current frame is graphical (Bug#2138).
3401 (ediff-choose-window-setup-function-automatically): Make obsolete.
3402
3403 * vc/ediff-init.el: Always define ediff-pixel-width/height.
3404
ef24141c
SM
34052012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
3406
cc356a5d
SM
3407 * ffap.el: Remove old code for obsolete package.
3408 (ffap-complete-as-file-p): Remove.
3409
b4ff4f1f
SM
3410 Use completion-table-with-quoting for comint and pcomplete.
3411 * comint.el (comint--unquote&requote-argument)
3412 (comint--unquote-argument, comint--requote-argument): New functions.
3413 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
3414 (comint-quote-filename): Use regexp-opt-charset.
3415 (comint--common-suffix, comint--common-quoted-suffix)
3416 (comint--table-subvert): Remove.
3417 (comint-unquote-function, comint-requote-function): New vars.
3418 (comint--complete-file-name-data): Use them with
3419 completion-table-with-quoting.
3420 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
3421 * pcomplete.el (pcomplete-arg-quote-list)
3422 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
3423 (pcomplete-unquote-argument-function): Default to non-nil.
3424 (pcomplete-unquote-argument): Simplify.
3425 (pcomplete--common-quoted-suffix): Remove.
3426 (pcomplete-requote-argument-function): New var.
3427 (pcomplete--common-suffix): New function.
3428 (pcomplete-completions-at-point): Use completion-table-with-quoting
3429 and completion-table-subvert.
3430
79c4eeb4
SM
3431 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
3432 (minibuffer--double-dollars): Preserve properties.
3433 (completion--sifn-requote): New function.
3434 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
3435
ef24141c
SM
3436 * minibuffer.el: Add support for completion of quoted/escaped data.
3437 (completion-table-with-quoting, completion-table-subvert): New funs.
3438 (completion--twq-try, completion--twq-all): New functions.
3439 (completion--nth-completion): New function.
3440 (completion-try-completion, completion-all-completions): Use it.
3441
784e7d6e
LL
34422012-04-25 Leo Liu <sdl.web@gmail.com>
3443
dd2ac746
SM
3444 * progmodes/python.el (python-pdbtrack-get-source-buffer):
3445 Use compilation-message if available to find real filename.
784e7d6e 3446
07875ee7
CY
34472012-04-25 Chong Yidong <cyd@gnu.org>
3448
3449 * vc/diff-mode.el (diff-setup-whitespace): New function.
3450 (diff-mode): Use it.
3451
3452 * vc/diff.el (diff-sentinel):
3453 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
3454 Whitespace mode variables based on diff style (Bug#8612).
3455
5055880d
LL
34562012-04-25 Leo Liu <sdl.web@gmail.com>
3457
daf75653
LL
3458 * progmodes/python.el (python-send-region): Add suffix .py to the
3459 temp file.
3460
5055880d
LL
3461 * files.el (auto-mode-alist): Use javascript-mode instead.
3462
db9b177b
AH
34632012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
3464
ef24141c 3465 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
db9b177b 3466
090bd7cb 3467 * net/soap-client.el (soap-resolve-references-for-sequence-type)
ef24141c 3468 (soap-resolve-references-for-array-type): Hack to prevent self
db9b177b 3469 references, see Bug#9.
ef24141c 3470 (soap-parse-envelope): Report the contents of the 'detail' node
db9b177b 3471 when receiving a fault reply.
ef24141c 3472 (soap-parse-envelope): Report the contents of the entire 'detail' node.
db9b177b 3473
090bd7cb 3474 * net/soap-inspect.el (soap-sample-value-for-simple-type)
ef24141c 3475 (soap-inspect-simple-type): New function.
db9b177b 3476
090bd7cb 3477 * net/soap-client.el (soap-simple-type): New struct.
db9b177b 3478 (soap-default-xsd-types, soap-default-soapenc-types)
ef24141c
SM
3479 (soap-decode-basic-type, soap-encode-basic-type):
3480 support unsignedInt and double basic types.
db9b177b 3481 (soap-resolve-references-for-simple-type)
ef24141c
SM
3482 (soap-parse-simple-type, soap-encode-simple-type): New function.
3483 (soap-parse-schema): Parse xsd:simpleType declarations.
db9b177b 3484
090bd7cb 3485 * net/soap-client.el (soap-default-xsd-types)
ef24141c
SM
3486 (soap-default-soapenc-types): Add integer, byte and anyURI types.
3487 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
3488 the local name of "soapenc:Array".
3489 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
db9b177b
AH
3490 decoding integer, byte and anyURI xsd types.
3491
1fc6097b
CY
34922012-04-25 Chong Yidong <cyd@gnu.org>
3493
3494 * cus-edit.el (custom-buffer-create-internal): Update header text.
3495
afc6df87
EZ
34962012-04-25 Eli Zaretskii <eliz@gnu.org>
3497
3498 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
3499 settings on 'system-type', not on 'window-system'. On MS-Windows,
3500 set interactive-mode on in GDB.
3501
dfbd787f
SM
35022012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3503
3504 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
3505 (ruby-syntax-propertize-regexp): Remove.
3506 (ruby-syntax-propertize-function): Split regexp into chunks.
3507 Match following code directly.
3508
85222d44
DG
35092012-04-24 Dmitry Gutov <dgutov@yandex.ru>
3510
51a8ea2a
DG
3511 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
3512 (ruby-syntax-propertize-regexp): New function.
3513 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
3514 by a special keyword.
3515
85222d44
DG
3516 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
3517 (ruby-syntax-general-delimiters-goto-beg)
3518 (ruby-syntax-propertize-general-delimiters): New functions.
3519 (ruby-syntax-propertize-function): Use them to handle GDL.
3520 (ruby-font-lock-keywords): Move old handling of GDL...
3521 (ruby-font-lock-syntactic-keywords): .. to here.
3522 (ruby-calculate-indent): Adjust indentation for GDL.
3523
b613912b
MA
35242012-04-24 Michael Albinus <michael.albinus@gmx.de>
3525
b5380639
MA
3526 * notifications.el (top): Remove unneeded declarations.
3527 (notifications-specification-version): Change to "1.2".
e43042fe 3528 (notifications-interface, notifications-notify-method)
b613912b
MA
3529 (notifications-close-notification-method): Fix docstring.
3530 (notifications-get-capabilities-method): New defconst.
e43042fe
MA
3531 (notifications-notify): Add :action-items, :resident and
3532 :transient hints. Change "image_data" to "image-data" and
3533 "image_path" to "image-path".
b613912b
MA
3534 (notifications-get-capabilities): New defun.
3535
257440aa
LL
35362012-04-24 Leo Liu <sdl.web@gmail.com>
3537
3538 * progmodes/python.el: Move hideshow setup to the end.
3539
b1bac16e
MR
35402012-04-24 Martin Rudalics <rudalics@gmx.at>
3541
3542 * window.el (handle-select-window): Clear echo area since this is
3543 no more done by read_char (Bug#11304).
3544
d81bd059
SM
35452012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3546
3547 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
3548 and `/ M' to filter-derived-mode.
3549 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
3550 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
3551 (ibuffer-mark-by-mode): Use default rather than initial-input.
3552 (ibuffer-filter-by-derived-mode): Autoload and require-match.
3553
c4cf6d91
IA
35542012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
3555
3556 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
3557 (ibuffer-filter-by-derived-mode): New filter.
3558 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
3559
7511ded8
CY
35602012-04-23 Andreas Politz <politza@fh-trier.de>
3561
3562 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
3563
775c916b
CY
35642012-04-23 Chong Yidong <cyd@gnu.org>
3565
3566 * cus-edit.el (customize-apropos, customize-apropos-options):
3567 Disable matching of non-option variables (Bug#11176).
3568 (customize-option, customize-option-other-window)
3569 (customize-changed-options): Doc fix.
3570 (customize-apropos-options, customize-apropos-faces)
3571 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
3572
3573 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
922d37d3 3574 Fix word list splitting (Bug#11132).
46c71e23
CY
3575 (apropos-symbol, apropos-keybinding, apropos-label)
3576 (apropos-property, apropos-function-button)
3577 (apropos-variable-button, apropos-misc-button): New faces.
3578 (apropos-symbol-face, apropos-keybinding-face)
3579 (apropos-label-face, apropos-property-face, apropos-match-face):
3580 Variables removed (Bug#8396).
3581 (apropos-library-button, apropos-format-plist, apropos-print)
3582 (apropos-print-doc, apropos-describe-plist): Callers changed.
775c916b 3583
2df41f9c
MA
35842012-04-23 Michael Albinus <michael.albinus@gmx.de>
3585
3586 * net/xesam.el (xesam-mode-map): Use let-bound map in
3587 initialization. (Bug#11292)
3588
da00640a
AM
35892012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3590
3591 Preserve ispell session localwords when switching back to
3592 original buffer.
3593
090bd7cb
JB
3594 * textmodes/ispell.el (ispell-buffer-session-localwords):
3595 New buffer-local variable to hold buffer session localwords.
da00640a
AM
3596 (ispell-kill-ispell): add option 'clear to delete session
3597 localwords.
3598 (ispell-command-loop, ispell-change-dictionary)
3599 (ispell-buffer-local-words): Preserve session localwords when
3600 needed.
3601
090bd7cb
JB
3602 * textmodes/flyspell.el (flyspell-process-localwords)
3603 (flyspell-do-correct): Preserve session localwords when needed.
da00640a 3604
f621ccf5
AM
36052012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3606
090bd7cb
JB
3607 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
3608 using obsolete `translation-table-for-input'.
ef24141c
SM
3609 (ispell-word, ispell-process-line, ispell-complete-word):
3610 Use plain `insert' instead of removed `ispell-insert-word'.
f621ccf5 3611
c2d1019e
CY
36122012-04-22 Chong Yidong <cyd@gnu.org>
3613
3614 * cus-edit.el (custom-variable-menu)
3615 (custom-variable-reset-saved, custom-face-menu)
3616 (custom-face-reset-saved): If there is no saved value, make the
3617 "reset-saved" operation bring back the default (Bug#9509).
3618 (custom-face-state): Properly detect themed faces.
3619
eeddc531
CY
3620 * faces.el (face-spec-set): Stop supporting deprecated form of
3621 third arg.
3622
dcbf5805
MA
36232012-04-22 Michael Albinus <michael.albinus@gmx.de>
3624
3625 Move functions from C to Lisp. Make non-blocking method calls
3626 the default. Implement further D-Bus standard interfaces.
3627
ef24141c
SM
3628 * net/dbus.el (dbus-message-internal): Declare function.
3629 Remove unneeded function declarations.
dcbf5805
MA
3630 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
3631 (dbus-message-type-method-return, dbus-message-type-error)
3632 (dbus-message-type-signal): Declare variables. Remove local
3633 definitions.
3634 (dbus-interface-dbus, dbus-interface-peer)
3635 (dbus-interface-introspectable, dbus-interface-properties)
3636 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
3637 Adapt docstring.
3638 (dbus-interface-objectmanager): New defconst.
3639 (dbus-call-method, dbus-call-method-asynchronously)
3640 (dbus-send-signal, dbus-method-return-internal)
3641 (dbus-method-error-internal, dbus-register-service)
3642 (dbus-register-signal, dbus-register-method): New defuns, moved
3643 from dbusbind.c
3644 (dbus-call-method-handler, dbus-setenv)
ef24141c
SM
3645 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
3646 New defuns.
dcbf5805
MA
3647 (dbus-call-method-non-blocking): Make it an obsolete function.
3648 (dbus-unregister-object, dbus-unregister-service)
3649 (dbus-handle-event, dbus-register-property)
3650 (dbus-property-handler): Obey the new structure of
3651 `bus-registered-objects'.
3652 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
3653 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
3654 Use `dbus-call-method'.
3655
cf20dee0
CY
36562012-04-22 Chong Yidong <cyd@gnu.org>
3657
3658 * cus-edit.el (custom-commands, custom-reset-menu)
3659 (Custom-reset-standard): Tweak labels.
3660 (custom-reset-button-menu): Change default to t.
3661 (custom-buffer-create-internal): For the custom-reset-button-menu
3662 case, put the revert button first.
3663 (custom-group-subtitle): New face.
3664 (custom-group-value-create): Align docstring to a specific column.
3665
3666 * wid-edit.el (widget-documentation-link-add): Don't handle
3667 indentation in this function.
3668 (widget-documentation-string-indent-to): New function.
3669 (widget-documentation-string-value-create): Use it.
3670
3671 * autorevert.el (auto-revert):
3672 * epg-config.el (epg):
3673 * ibuffer.el (ibuffer):
3674 * mpc.el (mpc):
3675 * ses.el (ses):
3676 * eshell/eshell.el (eshell):
3677 * net/ange-ftp.el (ange-ftp):
3678 * progmodes/ebnf2ps.el (postscript):
3679 * progmodes/flymake.el (flymake):
3680 * progmodes/prolog.el (prolog):
3681 * progmodes/verilog-mode.el (verilog-mode):
3682 * progmodes/which-func.el (which-func):
3683 * term/xterm.el (xterm):
3684 * textmodes/picture.el (picture):
3685 * textmodes/tildify.el (tildify):
3686 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
3687 customization buffers.
3688
583e23bd
AM
36892012-04-22 Alan Mackenzie <acm@muc.de>
3690
3691 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
3692 Adding a ) can hide the resulting (..) from searches. Fix it.
3693 Bound the backward search to the position of the existing (.
3694
7dd51bf1
JB
36952012-04-21 Juanma Barranquero <lekktu@gmail.com>
3696
3697 * progmodes/verilog-mode.el (verilog-mode): Check whether
3698 which-func-modes is t before adding verilog-mode.
3699 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
3700
d64a438f
LL
37012012-04-21 Leo Liu <sdl.web@gmail.com>
3702
7dd51bf1 3703 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
d64a438f 3704
081e8d65
MV
37052012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
3706
3707 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
3708 filling of the last column of a table (Bug#5635).
3709 (woman-find-next-control-line): New arg, specifying an additional
3710 regexp component for the control line.
3711 (woman2-roff-buffer): Use it.
3712 (woman-break-table): New function.
3713 (woman2-TS): Use it.
3714
37152012-04-21 Chong Yidong <cyd@gnu.org>
3716
3717 * woman.el (woman-set-buffer-display-table, woman-decode-region)
3718 (woman-horizontal-escapes, woman-negative-vertical-space)
3719 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
3720 (WoMan-warn-ignored): Use ?\s instead of ?\ .
3721
ed571ccb
SM
37222012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3723
3724 * minibuffer.el (completion-file-name-table): Complete user names.
3725
39773899
LL
37262012-04-20 Leo Liu <sdl.web@gmail.com>
3727
3728 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
3729 and pcase-let*.
3730
de6ff46d
CY
37312012-04-20 Chong Yidong <cyd@gnu.org>
3732
3733 * server.el (server-execute): Respect initial-buffer-choice if it
3734 is a string and there are no files to open (Bug#2825).
3735 (server-create-window-system-frame, server-create-tty-frame):
3736 Don't switch buffers here.
2d0e8e61
CY
3737 (server-process-filter): Only try to open a window system frame if
3738 compiled with graphical support (Bug#8314).
de6ff46d 3739
54071013
DN
37402012-04-20 Dan Nicolaescu <dann@gnu.org>
3741
3742 * battery.el (battery-echo-area-format): Display remaining time
3743 for sysfs backend too (Bug#11269).
3744 (battery-linux-sysfs): Fix conditional for the charge.
3745
f30d612a
CY
37462012-04-20 Chong Yidong <cyd@gnu.org>
3747
c07a4c0b 3748 * progmodes/gdb-mi.el (gdb): Revert previous change.
f30d612a
CY
3749 (gdb-inferior-io--init-proc): New function.
3750 (gdb-init-1): Use it.
3751 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
3752 responsible for allocating a new pty and hooking it to gdb when
3753 the old pty gets an EIO due to process exit.
3754 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
3755 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
3756 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
3757
2116e93c
EZ
37582012-04-20 Eli Zaretskii <eliz@gnu.org>
3759
3760 * window.el (window-min-size, window-sizable, window-min-delta)
3761 (window-max-delta, window--resizable, window-resizable)
3762 (window-total-size, window-full-height-p, window-full-width-p)
3763 (window-in-direction, window--resize-mini-window, window-resize)
3764 (window--resize-child-windows-normal)
3765 (window--resize-child-windows, window--resize-siblings)
3766 (window--resize-this-window, adjust-window-trailing-edge)
cd0f830c 3767 (enlarge-window, shrink-window): Doc fixes.
2116e93c 3768
c07a4c0b 37692012-04-20 Chong Yidong <cyd@gnu.org>
b668fa6e 3770
ef24141c
SM
3771 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
3772 New function to call delete-process on the gdb-inferior buffer's pty.
b668fa6e
CY
3773 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
3774 pty process (Bug#11273).
3775 (gdb-update): New arg to suppress talking to the gdb process.
3776 (gdb-done-or-error): Use it.
3777 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
3778 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
3779 sentinel not being called.
3780
3781 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
3782
d02766ab
CY
3783 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
3784
c07a4c0b 37852012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
3786
3787 * net/network-stream.el (open-network-stream): Doc fix.
3788
c07a4c0b 37892012-04-20 Chong Yidong <cyd@gnu.org>
2c070447
CY
3790
3791 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
3792
c07a4c0b 37932012-04-20 Alan Mackenzie <acm@muc.de>
f0f6bc35
AM
3794
3795 Ensure searching for keywords is case sensitive.
3796
3797 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
3798 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
3799 (c-defun-name, c-mark-function, c-cpp-define-name)
3800 (c-comment-indent, c-scan-conditionals, c-indent-defun)
c07a4c0b 3801 (c-context-line-break): Bind case-fold-search to nil.
f0f6bc35 3802
ef24141c
SM
3803 * progmodes/cc-mode.el (c-font-lock-fontify-region):
3804 Bind case-fold-search to nil.
f0f6bc35 3805
c07a4c0b 38062012-04-20 Chong Yidong <cyd@gnu.org>
4fc2c72a
CY
3807
3808 * mail/sendmail.el (mail-bury): Call return action with the right
3809 Rmail buffer (Bug#11242).
3810
9a864fa2
CY
3811 * server.el (server-process-filter): Handle corner case where both
3812 tty and nowait options are present (Bug#11102).
3813
539aa513
EZ
38142012-04-20 Eli Zaretskii <eliz@gnu.org>
3815
3816 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
6cf2a23e
EZ
3817 (top level): Put into the executable the ident-style '$Id:' tag on
3818 windows-nt as well.
539aa513 3819
cfc7d5da
SM
38202012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
3821
3822 * electric.el (electric-indent-post-self-insert-function): Check that
3823 electric-indent-mode is enabled in current buffer.
3824
5b01685c
JB
38252012-04-19 Juanma Barranquero <lekktu@gmail.com>
3826
3827 * imenu.el (imenu-progress-message): Restore; it is "used" in
3828 erc/erc-imenu.el and net/snmp-mode.el.
3829
4d6769e1
JB
38302012-04-19 Juanma Barranquero <lekktu@gmail.com>
3831
3832 * avoid.el (mouse-avoidance-mode): Mark unused arg.
3833 (mouse-avoidance-nudge-mouse): Remove unused binding.
3834
3835 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
3836
3837 * descr-text.el (describe-char):
3838 * progmodes/python.el (python-describe-symbol):
3839 Don't call `toggle-read-only', set `buffer-read-only'.
3840
3841 * imenu.el (imenu-default-goto-function): Mark unused args.
3842 (imenu-progress-message): Remove obsolete macro; all callers changed.
3843
3844 * subr.el (keymap-canonicalize): Remove unused binding.
3845 (read-passwd): Mark unused arg.
3846
3847 * tutorial.el (tutorial--display-changes): Remove unused binding.
3848 (tutorial--save-tutorial-to): Remove unused variable.
3849
3850 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
3851 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
3852 (package-generate-autoloads, package-menu--generate)
3853 (package-menu--find-upgrades): Remove unused bindings.
3854
3855 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
3856 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
3857 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
3858 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
3859 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
3860 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
3861 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
3862 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
3863 (cua-delete-char-rectangle): Mark unused args.
3864 (cua-align-rectangle): Remove unused binding.
3865
3866 * mail/rmail.el (compilation--message->loc)
3867 (epa--find-coding-system-for-mime-charset): Declare.
3868
3869 * net/dbus.el (dbus-register-service): Declare.
3870 (dbus-name-owner-changed-handler): Remove unused binding.
3871
3872 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
3873 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
3874 (nxml-scan-backward-within): Mark unused arg.
3875 (nxml-dynamic-markup-word): Remove unused binding.
3876
3877 * mouse.el (mouse-menu-major-mode-map):
3878 * emacs-lisp/authors.el (authors-scan-change-log)
3879 (authors-add-to-author-list):
3880 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
3881 * emacs-lisp/smie.el (smie-auto-fill):
3882 * mail/sendmail.el (mail-bury):
3883 * mail/unrmail.el (unrmail):
3884 * net/tls.el (open-tls-stream):
3885 * textmodes/picture.el (picture-mouse-set-point):
3886 Remove unused bindings.
3887
8c8fc5df
MA
38882012-04-19 Michael Albinus <michael.albinus@gmx.de>
3889
3890 * net/tramp.el (tramp-action-password): Let-bind
3891 `enable-recursive-minibuffers' to t.
3892
a77b0ac9
SS
38932012-04-18 Sam Steingold <sds@gnu.org>
3894
3895 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
3896 instead of 'string to accommodate values like [f11].
3897 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
3898 * progmodes/gdb-mi.el: Likewise.
3899
12a106a9
LL
39002012-04-18 Leo Liu <sdl.web@gmail.com>
3901
3902 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
3903 current buffer.
3904 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
3905 LOCAL is nil.
3906
bc6494ef
CY
39072012-04-18 Chong Yidong <cyd@gnu.org>
3908
3909 * simple.el (line-move): Use forward-line if in batch mode
3910 (Bug#11053).
3911
c09c46b2
CS
39122012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
3913
3914 * files.el (after-find-file): Do not try to add a final newline if
3915 the buffer is read-only (Bug#11156).
3916
5f6530ea
RS
39172012-04-17 Richard Stallman <rms@gnu.org>
3918
3919 * mail/rmail.el (rmail-start-mail):
3920 Pass (rmail-mail-return...) for the return-action.
3921 Pass (rmail-yank-current-message...) for the yank-action.
3922 (rmail-yank-current-message): New function.
3923 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
3924 (rmail-reply): Likewise.
3925 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
3926
3927 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
c09c46b2 3928 buffer, not the last. Reject temp buffers. Use the rmail-mode
5f6530ea
RS
3929 buffer, not newbuf.
3930
197b6f3c
JB
39312012-04-17 Juanma Barranquero <lekktu@gmail.com>
3932
3933 * server.el (server-ensure-safe-dir): Simplify.
3934
2311d8e5 39352012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
98fb480e 3936
2311d8e5
GM
3937 * emacs-lisp/smie.el: Provide smarter auto-filling.
3938 (smie-auto-fill): New function.
3939 (smie-setup): Use it.
98fb480e 3940
2311d8e5
GM
3941 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
3942
39432012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8eb5d48f
PH
3944
3945 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
3946 (comment-indent): Use it.
3947
2311d8e5 39482012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4bdf2ad2
VB
3949
3950 * ses.el: The overall change is to add cell renaming, that is
3951 setting fancy names for cell symbols other than name matching
3952 "\\`[A-Z]+[0-9]+\\'" regexp .
2311d8e5 3953 (ses-localvars): Add ses--renamed-cell-symb-list.
4bdf2ad2 3954 (ses-create-cell-variable): New defun.
2311d8e5 3955 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4bdf2ad2
VB
3956 (ses-relocate-formula): Relocate formulas only for cells the
3957 symbols of which are not renamed, i.e. symbols whose names do not
3958 match regexp "\\`[A-Z]+[0-9]+\\'".
3959 (ses-relocate-all): Relocate values only for cells the symbols of
3960 which are not renamed.
3961 (ses-load): Create cells variables as the (ses-cell ...) are read,
3962 in order to check row col consistency with cell symbol name only
3963 for cells that are not renamed.
3964 (ses-replace-name-in-formula): New defun.
3965 (ses-rename-cell): New defun.
4bdf2ad2 3966
fc72b15c
PO
39672012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
3968
3969 * progmodes/perl-mode.el (perl-indent-parens-as-block):
3970 New option (bug#11118).
3971 (perl-calculate-indent): Respect it.
3972
12e10e61
GM
39732012-04-17 Glenn Morris <rgm@gnu.org>
3974
3975 * dired-aux.el (dired-mark-read-string): Doc fix.
3976
30009afd
DA
39772012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
3978
3979 * dired-aux.el (dired-mark-read-string): Offer optional completion.
3980 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
3981
41f03f4d
GM
39822012-04-17 Glenn Morris <rgm@gnu.org>
3983
3984 * mouse.el (mouse-drag-track):
3985 * speedbar.el (speedbar-frame-mode):
3986 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
3987
f45f90f3
LL
39882012-04-16 Leo Liu <sdl.web@gmail.com>
3989
3990 * progmodes/python.el: Trivial cleanup.
3991
94ee8db5
GM
39922012-04-16 Glenn Morris <rgm@gnu.org>
3993
121b8917
GM
3994 * vc/vc.el (vc-string-prefix-p):
3995 * vc/pcvs-util.el (cvs-string-prefix-p):
3996 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
3997 * mpc.el (mpc-string-prefix-p):
3998 Make all of these into obsolete aliases for string-prefix-p.
3999 Update callers.
4000 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
4001
1197ecfa
GM
4002 * textmodes/two-column.el: Move custom options to the start.
4003 (frame-width): Remove compat definition.
4004 (2C-associate-buffer, 2C-dissociate):
4005 Use with-current-buffer rather than save-excursion.
4006 (2C-dissociate): Force a mode-line update.
4007 (2C-autoscroll): Use ignore-errors.
4008
099e7202
GM
4009 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
4010 Autoload trivia.
4011
bf350d6a
GM
4012 * emacs-lisp/cl-extra.el (*random-state*):
4013 Remove unnecessary declaration.
4014
0e829eab
GM
4015 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
4016
e3ad7552
GM
4017 * play/cookie1.el (cookie-snarf):
4018 Give an explicit error if input file cannot be read.
4019
68892d27
GM
4020 * play/yow.el (yow-file): Use expand-file-name rather than concat.
4021
20f0c46d
GM
4022 * progmodes/perl-mode.el (c-macro-expand):
4023 Remove unnecessary autoload (it is in loaddefs.el).
4024
5a0978ce
GM
4025 * textmodes/picture.el (picture-desired-column)
4026 (picture-update-desired-column): Convert comments to doc-strings.
4027 (picture-substitute): Remove function.
4028 (picture-mode-map): Initialize in the defvar.
4029
6b955486
GM
4030 * woman.el: Remove eval-after-load for tar-mode.
4031 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
4032 (woman-tar-extract-file): Autoload it.
4033
94ee8db5
GM
4034 * frame.el (automatic-hscrolling): Make this alias obsolete.
4035
177eca34
AM
40362012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4037
090bd7cb 4038 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
4be3075e 4039 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3851314b
AM
4040 (ispell-dictionary-base-alist): Revert to original XEmacs
4041 friendly version for default. [:alpha:] will be added in
090bd7cb 4042 `ispell-set-spellchecker-params' if needed.
177eca34 4043
c505aaeb
CY
40442012-04-16 Chong Yidong <cyd@gnu.org>
4045
4046 * image.el (imagemagick--extension-regexp): New variable.
4047 (imagemagick-register-types): Use it.
4048 (imagemagick-types-inhibit): Add :set function. Allow new value
4049 of t to inhibit all types.
4050
4051 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
4052 so we can preload it.
4053
4054 * loadup.el (fboundp): Preload regexp-opt, needed by
4055 imagemagick-register-types.
4056
60efac0f
CY
40572012-04-15 Chong Yidong <cyd@gnu.org>
4058
4059 * frame.el (scrolling): Remove nearly unused customization group.
4060
4061 * scroll-all.el (scroll-all-mode): Move to windows group.
4062
5dd1713e
CY
40632012-04-15 Chong Yidong <cyd@gnu.org>
4064
4065 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
4066
e6fd457e
CY
40672012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
4068
4069 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4d6769e1 4070 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
e6fd457e 4071
e153c136
GM
40722012-04-15 Glenn Morris <rgm@gnu.org>
4073
4074 * simple.el (process-file-side-effects): Doc fix.
4075
e6fd457e 40762012-04-15 Glenn Morris <rgm@gnu.org>
ca7d96c8
GM
4077
4078 * international/mule-cmds.el (set-language-environment): Doc fix.
4079
3603c3b1
JB
40802012-04-14 Juanma Barranquero <lekktu@gmail.com>
4081
4082 * server.el (server-auth-key, server-generate-key): Doc fixes.
4083 (server-get-auth-key): Doc fix. Use `string-match-p'.
4084 (server-start): Reflow docstring.
4085
e6de100c
LI
40862012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
4087
4088 * server.el (server-generate-key): `called-interactively-p'
4089 requires a parameter.
4090
29734c21
MN
40912012-04-14 Michal Nazarewicz <mina86@mina86.com>
4092
4093 * server.el (server-auth-key): New variable.
75f1671a 4094 (server-generate-key, server-get-auth-key): New function.
29734c21
MN
4095 (server-start): Use the new variable and functions to allow
4096 setting a permanent server key (bug#9423).
4097
d65c9521
LL
40982012-04-14 Leo Liu <sdl.web@gmail.com>
4099
4100 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
4101
5ae255c7
PE
41022012-04-14 Paul Eggert <eggert@cs.ucla.edu>
4103
4104 Spelling fixes.
4105 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
4106 Emacs uses American spelling.
4107
d5e6342e
JB
41082012-04-14 Juanma Barranquero <lekktu@gmail.com>
4109
4110 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
4111 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
4112 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
4113 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
4114
ab036cd7
SM
41152012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4116
4117 * progmodes/which-func.el (which-func-modes): Change default.
4118
35dc09a1 41192012-04-14 Kim F. Storm <storm@cua.dk>
9557e2be
CY
4120
4121 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
4122 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
4123
35dc09a1 41242012-04-14 Chong Yidong <cyd@gnu.org>
81927dd2
CY
4125
4126 * custom.el (custom-theme-set-variables): Doc fix.
4127
35dc09a1 41282012-04-14 Glenn Morris <rgm@gnu.org>
8edb942b
GM
4129
4130 * international/mule.el (set-auto-coding-for-load): Doc fix.
4131
35dc09a1 41322012-04-14 Alan Mackenzie <acm@muc.de>
0de3da9f 4133
35dc09a1
GM
4134 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
4135 imenu work again for Objective C Mode. Correct the *-index values,
4136 these having been disturbed by a previous change in 2011-08.
57f845ee 4137
0de3da9f
AM
4138 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
4139 Correct two search limits.
4140
35dc09a1 41412012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
ede141ac
SM
4142
4143 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
4144
35dc09a1 41452012-04-14 Andreas Schwab <schwab@linux-m68k.org>
d0203d61
AS
4146
4147 * international/characters.el: Fix sorting.
4148
35dc09a1 41492012-04-14 Eli Zaretskii <eliz@gnu.org>
cb80bcd1
EZ
4150
4151 * international/characters.el: Add more missing Latin case pairs.
4152
35dc09a1 41532012-04-14 Glenn Morris <rgm@gnu.org>
4a427f58
GM
4154
4155 * files.el (dir-locals-set-class-variables): Doc fix.
4156
35dc09a1 41572012-04-14 Eli Zaretskii <eliz@gnu.org>
9f847f41 4158
3f1b5bf8
EZ
4159 * international/characters.el: Add set-case-syntax-pair call for
4160 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
4161 counterpart. (Bug#11209)
4162
9f847f41
EZ
4163 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
4164
35dc09a1 41652012-04-14 Glenn Morris <rgm@gnu.org>
0c2014a3
GM
4166
4167 * calendar/holidays.el (calendar-check-holidays): Doc fix.
4168
35dc09a1 41692012-04-14 Eli Zaretskii <eliz@gnu.org>
e2627d21 4170
35dc09a1
GM
4171 * textmodes/ispell.el (ispell-dictionary-base-alist):
4172 Add data for Hebrew.
e2627d21 4173
35dc09a1 41742012-04-14 Chong Yidong <cyd@gnu.org>
5c14e333 4175
35dc09a1
GM
4176 * net/rcirc.el (rcirc-cmd-quit):
4177 Revert 2012-03-18 change (Bug#11192).
5c14e333 4178
35dc09a1 41792012-04-14 Glenn Morris <rgm@gnu.org>
bf6fa423
GM
4180
4181 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
4182
35dc09a1 41832012-04-14 Eli Zaretskii <eliz@gnu.org>
82b24fb2 4184
4517fe3a
SM
4185 * minibuffer.el (completion-in-region-mode-map):
4186 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
82b24fb2 4187
b472a594
VD
41882012-04-13 Vivek Dasmohapatra <vivek@etla.org>
4189
4190 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
4191
09b95ce3
MY
41922012-04-13 Masatake YAMATO <yamato@redhat.com>
4193
4194 * minibuffer.el (minibuffer-local-filename-syntax): New variable
4195 to allow `C-M-f' and `C-M-b' to move to the nearest path
4196 separator (bug#9511).
4197
4b63a9ca
LI
41982012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
4199
4200 * avoid.el: Require cl when compiling. And also move the
4201 `provide' to the end.
4202
7b55b8bf
TV
42032012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4204
4205 * avoid.el (mouse-avoidance-banish-position): New variable.
4206 (mouse-avoidance-banish-destination): Use it (bug#10165).
4207
adedaa1f
LL
42082012-04-13 Leo Liu <sdl.web@gmail.com>
4209
4210 * progmodes/which-func.el (which-func-modes): Add objc-mode.
4211
70e74021
KB
42122012-04-13 Ken Brown <kbrown@cornell.edu>
4213
4214 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
ab036cd7 4215 this is no longer needed now that cygstart understands file:// URLs.
70e74021
KB
4216 (browse-url-filename-alist): For the same reason, don't modify
4217 file:// URLs on Cygwin.
4218
e75e89ba
SM
42192012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4220
4221 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
4222 the region on shift if the binding is already shifted (bug#11221).
4223
82f289a4
GM
42242012-04-12 Glenn Morris <rgm@gnu.org>
4225
4226 * mail/mailpost.el: Move to obsolete/.
4227
d333dc4c
DA
42282012-04-12 Drew Adams <drew.adams@oracle.com>
4229
4230 * imenu.el (imenu--generic-function): Ignore invisible definitions
4231 (bug#10123).
4232
0d15b5ba
VD
42332012-04-12 Vivek Dasmohapatra <vivek@etla.org>
4234
4235 * hexl.el (hexl-bits): New variable.
4236 (hexl-options): Mention the variable in the doc string.
75f1671a 4237 (hexl-rulerise, hexl-line-displen): New functions.
0d15b5ba 4238 (hexl-mode): Mention the new variable.
75f1671a
JB
4239 (hexl-mode, hexl-current-address, hexl-current-address):
4240 Use the displen.
0d15b5ba
VD
4241 (hexl-ascii-start-column): New function.
4242 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
4243 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
4244
64a440db
AM
42452012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4246
4247 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
4248 '("-i" ENCODING), in 2 separate command-line arguments, to specify
4249 the encoding, as expected by hunspell.
4250
6decb6c2
SM
42512012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4252
4253 * battery.el (battery--linux-sysfs-regexp): New const.
4254 (battery-status-function): Use it. Remove yeeloong special case.
4255 (battery-yeeloong-sysfs): Remove.
4256 (battery-echo-area-format): Remove yeeloong special case.
4257
088be6fb
SM
42582012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4259
6622e416
SM
4260 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
4261 Reported by Noah Friedman.
4262
088be6fb
SM
4263 * subr.el (read-passwd): Use read-string.
4264
b49f886e
LMI
42652012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4266
4267 * vcursor.el (vcursor-move): Increase the priority of the overlay
4268 (bug#9663).
4269
a63067fc
DD
42702012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4271
4272 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
4273 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
4274
ac3cf14a
WS
42752012-04-11 William Stevenson <yhvh2000@gmail.com>
4276
4277 * textmodes/artist.el (artist-mode): Convert artist-mode to use
4278 define-minor-mode (bug#10760).
4279
c4fc691b 42802012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
49a2697c 4281
4d6769e1 4282 * progmodes/grep.el (rgrep): Tweak the find command line so
49a2697c
WJ
4283 that directories matching `grep-find-ignored-files' won't be
4284 pruned (bug#10351).
4285
af23e2e5
CY
42862012-04-11 Chong Yidong <cyd@gnu.org>
4287
4288 * startup.el (command-line): Remove support for long-obsolete
4289 variable font-lock-face-attributes.
4290
ab7ce8c1
GM
42912012-04-11 Glenn Morris <rgm@gnu.org>
4292
4293 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
4294
de8c03dc
SM
42952012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4296
4297 * window.el (window--state-get-1): Obey window-point-insertion-type.
4298
050cc68b
LB
42992012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
4300
4301 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
4302 to previous function when point is on the first character of a
75f1671a 4303 function. Take care of that in `narrow-to-defun' (bug#6157).
050cc68b 4304
a38c310c
GM
43052012-04-11 Glenn Morris <rgm@gnu.org>
4306
effed0c2
GM
4307 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
4308 not just file-errors.
4309
a38c310c
GM
4310 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
4311 (vc-bzr-sha1): Use internal sha1.
4312
0221e323
SM
43132012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4314
4315 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
4316
43956923
SG
43172012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
4318
4319 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
4320 that start in the middle of the line (bug#10496).
4321
6a8c9eaf
DN
43222012-04-10 Dan Nicolaescu <dann@gnu.org>
4323
4324 * battery.el (battery-linux-proc-acpi): Only one battery is
4325 discharged at a time, but that seems to confuse battery.el when
4326 computing `rate-type' for the battery not being discharged
4327 (bug#10332).
4328
1930bf5d
SM
43292012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
4330
2a718f6f
SM
4331 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
4332
599430d0
SM
4333 * international/quail.el: Use dolist and simplify.
4334 (quail-define-package, quail-update-keyboard-layout)
4335 (quail-define-rules): Use dolist.
4336 (quail-insert-kbd-layout, quail-get-translation): CSE.
4337
a2754b6c
SM
4338 * tmm.el: Use dolist, remove left over hook.
4339 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
4340 Use dolist.
4341 (calendar-load-hook): Don't mess with it.
4342
1930bf5d
SM
4343 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
4344 Use derived-mode-p. Run the diff asynchronously.
4345
9f67961c
LMI
43462012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4347
4348 * obsolete/mouse-sel.el: Add an Obsolete-since header.
4349
2a8ce227
JB
43502012-04-10 Juanma Barranquero <lekktu@gmail.com>
4351
4352 * misc.el: Display absolute path of loaded DLLs (bug#10424).
4353 (list-dynamic-libraries--loaded): New function.
4354 (list-dynamic-libraries--refresh): Use it.
4355
8f33b5f8
NW
43562012-04-10 Nathan Weizenbaum <nweiz@google.com>
4357
1930bf5d
SM
4358 * progmodes/python.el (python-fill-paragraph):
4359 Make python-fill-region in a multiline string work when font-lock is
8f33b5f8
NW
4360 disabled (bug#7018).
4361
b12f0439
L
43622012-04-10 Laimonas VÄ—bra <laimonas.vebra@gmail.com> (tiny change)
4363
1930bf5d 4364 * language/european.el (cp775): Add oem/legacy (en)coding on
75f1671a
JB
4365 DOS/MS Windows for the Baltic languages. There are still plenty
4366 of texts written in this encoding/codepage (bug#6519).
b12f0439 4367
57c3bd01
GM
43682012-04-10 Glenn Morris <rgm@gnu.org>
4369
4370 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
4371 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
4372
6c3eab30
FA
43732012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
4374
1930bf5d 4375 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6c3eab30
FA
4376 next-line "n" and previous-line "p" in order to make recentf more
4377 consistent with ibuffer, dired or org-mode (bug#9387).
4378
24d78a88
LMI
43792012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4380
bc72b5d9
LMI
4381 * image.el (put-image): Return the overlay created instead of the
4382 optional input string (bug#7834). Note that this may break code
4383 that is (for some reason or other) depending on `put-image'
4384 returning the string.
4385
bd2dba5a
LMI
4386 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
4387
74beb59f
LMI
4388 * simple.el (zap-to-char): Allow zapping using input methods
4389 (bug#1580).
4390
24d78a88
LMI
4391 * textmodes/fill.el (fill-region): Leave point and mark where they
4392 were before filling (bug#5399).
4393
263f20cd
GM
43942012-04-09 Glenn Morris <rgm@gnu.org>
4395
4396 * version.el (emacs-bzr-get-version):
4397 Handle lightweight checkouts of local branches.
4398
58d1f797
AS
43992012-04-09 Andreas Schwab <schwab@linux-m68k.org>
4400
263f20cd 4401 * international/characters.el: Recover lost case pairs. (Bug#11209)
58d1f797 4402
b4d3bc10
CY
44032012-04-09 Chong Yidong <cyd@gnu.org>
4404
4405 * custom.el (custom-variable-p): Return nil for non-symbol
4406 arguments instead of signaling an error.
4407 (user-variable-p): Obsolete alias for custom-variable-p.
4408
4409 * apropos.el (apropos-variable):
4410 * files-x.el (read-file-local-variable):
4411 * simple.el (set-variable):
4412 * woman.el (woman-mini-help):
4413 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
4414
fd06db5d
GM
44152012-04-09 Glenn Morris <rgm@gnu.org>
4416
e5fcdb5e
GM
4417 * startup.el (normal-top-level): Don't look for leim-list.el
4418 in places where it will not be found. (Bug#910)
4419
fd06db5d
GM
4420 * international/mule-cmds.el (set-default-coding-systems):
4421 * files.el (normal-mode):
4422 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
4423 This function was removed with ucs-tables.el in 2008.
4424
b39bb7e1
EZ
44252012-04-08 Eli Zaretskii <eliz@gnu.org>
4426
4427 * textmodes/ispell.el (ispell-check-version): For hunspell, set
4428 ispell-encoding8-command to "-i", without a trailing space.
4429 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
4430 separate command-line arguments, to specify the encoding, since
4431 that's how hunspell expects it.
4432
5c5b8e23
GM
44332012-04-08 Glenn Morris <rgm@gnu.org>
4434
4435 * loadup.el: Load bindings before cus-start.
4436 This reduces somewhat the number of "rogue" settings in emacs -Q.
4437
a1ed8b05
GM
44382012-04-07 Glenn Morris <rgm@gnu.org>
4439
4440 * version.el (emacs-bzr-get-version): New function.
dfae128a 4441 (emacs-bzr-version): New variable.
a1ed8b05
GM
4442 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
4443 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
4444
b142f158
EZ
44452012-04-07 Eli Zaretskii <eliz@gnu.org>
4446
dfae128a
GM
4447 * international/uni-bidi.el, international/uni-category.el:
4448 * international/uni-combining.el, international/uni-decimal.el:
4449 * international/uni-decomposition.el, international/uni-digit.el:
4450 * international/uni-lowercase.el, international/uni-mirrored.el:
4451 * international/uni-name.el, international/uni-numeric.el:
4452 * international/uni-titlecase.el, international/uni-uppercase.el:
4453 Update for Unicode 6.1.
b142f158 4454
9078ead6
EZ
44552012-04-07 Eli Zaretskii <eliz@gnu.org>
4456
4457 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
4458
f23d2c7d
LMI
44592012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
4460
4461 * window.el (shrink-window): Mention the `window-min-height'
4462 variable in the doc string.
4463
0a0a3573
BG
44642012-04-05 Bastien Guerry <bzg@altern.org>
4465
4466 * color.el (color-lighten-name): Fix typo.
4467
e5248ac9
SM
44682012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4469
4470 * server.el (server--on-display-p): New function.
4471 (server--on-display-p): Use it.
4472
b4243e22
GV
44732012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
4474
4475 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
4476 (bug#11145).
4477
305d9f44
SM
44782012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4479
4480 * comint.el (comint--common-quoted-suffix): Check string boundary
4481 before comparing (bug#11158).
4482 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
4483
3d439cd1
CY
44842012-04-04 Chong Yidong <cyd@gnu.org>
4485
321cc491
CY
4486 * minibuffer.el (completion-extra-properties): Doc fix.
4487
3d439cd1
CY
4488 * subr.el (delayed-warnings-hook): Doc fix.
4489
2d562c0f
DU
44902012-04-04 Daiki Ueno <ueno@unixuser.org>
4491
4492 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
4493 selection (Bug#11159).
4494 (epa-insert-keys): Inform that the default public key will be
4495 exported if no key is selected.
4496
4443f204
RS
44972012-04-04 Richard Stallman <rms@gnu.org>
4498
4499 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
4500
529c06b6
CY
45012012-04-03 Chong Yidong <cyd@gnu.org>
4502
4503 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
4504 mail-insert-file, not its obsolete alias mail-attach-file.
4505
66b907dc
MA
45062012-04-03 Michael Albinus <michael.albinus@gmx.de>
4507
4508 * notifications.el (notifications-notify): Fix docstring.
4509
c0ea195d
GM
45102012-04-02 Glenn Morris <rgm@gnu.org>
4511
4512 * emacs-lisp/authors.el (authors-aliases): Another addition.
4513
5ca64e00
MA
45142012-04-02 Michael Albinus <michael.albinus@gmx.de>
4515
4516 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
4517 `tramp-compat-call-process' instead of `tramp-local-call-process'.
4518 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
4519
42ee526b
CY
45202012-04-01 Chong Yidong <cyd@gnu.org>
4521
4522 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
4523 Handle root directory properly.
4524 (copy-directory): Caller changed.
4525
4526 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
4527 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
4528
0b021094
GM
45292012-03-31 Glenn Morris <rgm@gnu.org>
4530
40f86458
GM
4531 * term/xterm.el (xterm-extra-capabilities): Doc fix.
4532
7019c177
GM
4533 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
4534
a1daddd6
GM
4535 * calendar/calendar.el (calendar-window-list)
4536 (calendar-hide-window): Restore. (Bug#11140)
4537 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
4538
0b021094
GM
4539 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
4540
40311efc
TV
45412012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4542
4543 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
4544 Check if file is a symlink (Bug#10489).
4545
4546 * files.el (copy-directory): Likewise.
4547
5319014e
CY
45482012-03-30 Chong Yidong <cyd@gnu.org>
4549
4550 * image.el (imagemagick-types-inhibit)
4551 (imagemagick-register-types): Doc fix.
4552
935d1290
AM
45532012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4554
090bd7cb 4555 * textmodes/ispell.el (ispell-get-extended-character-mode):
ef24141c 4556 Disable extended-char-mode for hunspell. hunspell does not support it
75f1671a 4557 and treats ~word as ordinary words in pipe mode.
935d1290 4558
61c6e8fd
GM
45592012-03-30 Glenn Morris <rgm@gnu.org>
4560
4561 * tutorial.el (help-with-tutorial): Ensure local variables don't
4562 happen to make the buffer read-only. (Bug#11127)
4563
81fdff00
SM
45642012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
4565
4566 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
4567 (perl-calculate-indent): Return `noindent' in strings.
4568
6e7a6ec0
SS
45692012-03-28 Sam Steingold <sds@gnu.org>
4570
4571 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
4572 instead of the broken adhockery which does not prevent calendar
4573 buffers from being displayed at random after exit.
4574 (calendar-window-list, calendar-hide-window): Remove the broken
4575 adhockery.
4576
fee88ca0
GM
45772012-03-28 Glenn Morris <rgm@gnu.org>
4578
4579 * replace.el (query-replace-map): Doc fix.
4580
38de3354
AS
45812012-03-28 Andreas Schwab <schwab@linux-m68k.org>
4582
4583 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
4584 contents. (Bug#11109)
4585
b973155e
SM
45862012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
4587
4588 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
4589 (bug#11077).
4590 (avl-tree--check, avl-tree--check-node): New funs.
4591
dcb6e7b3
MR
45922012-03-27 Martin Rudalics <rudalics@gmx.at>
4593
4594 * window.el (switch-to-visible-buffer): New option.
b973155e
SM
4595 (switch-to-prev-buffer, switch-to-next-buffer):
4596 Observe switch-to-visible-buffer. Make sure that checking for a window
dcb6e7b3
MR
4597 showing a buffer already is done on the same frame.
4598
b4fa35fa
GM
45992012-03-27 Glenn Morris <rgm@gnu.org>
4600
4601 * startup.el (mail-host-address): Doc fix.
4602
f9210e18
SM
46032012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4604
4605 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
4606 than 197 variables.
4607
c0bf7753
AF
46082012-03-26 Ami Fischman <ami@fischman.org>
4609
4610 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
4611
33da7b16
GM
46122012-03-26 Glenn Morris <rgm@gnu.org>
4613
02243d9d
GM
4614 * files.el (save-buffers-kill-emacs): Doc fix.
4615
33da7b16
GM
4616 * startup.el (normal-top-level, command-line, command-line-1):
4617 Give them doc strings.
4618
e5a69fd0
EZ
46192012-03-25 Eli Zaretskii <eliz@gnu.org>
4620
4621 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
b973155e 4622 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
e5a69fd0 4623
9a69676a
CY
46242012-03-25 Chong Yidong <cyd@gnu.org>
4625
4125cb8b
CY
4626 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
4627 theme if it was previously enabled before (Bug#11031).
4628
dd470960
CY
4629 * cus-theme.el (custom-theme-write-faces): Retrieve current face
4630 spec with custom-face-get-current-spec if its :shown-value is not
4631 determined yet (Bug#9337).
4125cb8b 4632 (customize-create-theme, custom-theme-revert): Doc fixes.
dd470960 4633
9a69676a
CY
4634 * button.el (button-at): Minor addition to docstring.
4635
6e7e90fa
SL
46362012-03-24 Simon Leinen <simon.leinen@gmail.com>
4637
4638 * vc/vc.el (vc-merge): Fix a prompt.
4639
f06e2758
CY
46402012-03-24 Chong Yidong <cyd@gnu.org>
4641
4642 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
4643 point (Bug#9623).
4644
6e7e90fa
SL
4645 * button.el (button-at): Minor addition to docstring.
4646
b9d0879b
SM
46472012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4648
4649 * newcomment.el (comment-choose-indent): No space after BOL.
4650
e71cebb3
SS
46512012-03-22 Sam Steingold <sds@gnu.org>
4652
4653 * window.el (switch-to-prev-buffer): Revert last patch because the
4654 bug turned out to be an advertised feature (Elisp manual 28.14).
4655
335aff35
GM
46562012-03-22 Glenn Morris <rgm@gnu.org>
4657
4658 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
4659 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
4660
c676576a
LMI
46612012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4662
4663 * net/network-stream.el (network-stream-open-starttls): Make error
4664 message under Windows be less misleading.
4665
126f3d39
LW
46662012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
4667
4668 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
4669 understands (bug#9942).
4670
64fee311
CY
46712012-03-22 Chong Yidong <cyd@gnu.org>
4672
4673 * simple.el (end-of-visible-line): Handle return value of
4674 next-single-property-change properly (Bug#9371).
4675
a640d29a
KH
46762012-03-22 Kenichi Handa <handa@m17n.org>
4677
4678 * international/quail.el (quail-insert-kbd-layout): Fix previous
4679 change. To avoid unwanted bidi reordering, use
4680 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
4681
39675016
DG
46822012-03-21 Dmitry Gutov <dgutov@yandex.ru>
4683
4684 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
4685 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
4686 (ruby-beginning-of-indent): Be more careful with the difference
4687 between word-boundary and symbol boundary.
4688 (ruby-mode-syntax-table): Make : a symbol constituent.
4689
0a6934fc 46902012-03-21 Andreas Politz <politza@fh-trier.de>
1acad97c 4691
3d008e4f
SM
4692 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
4693
0a6934fc
SM
46942012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4695
af67c9d7
SM
4696 * progmodes/etags.el (tags-completion-at-point-function):
4697 Improve last fix.
4698
1acad97c
SM
4699 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
4700
e298b5da
SS
47012012-03-21 Sam Steingold <sds@gnu.org>
4702
4703 * progmodes/etags.el (tags-completion-at-point-function):
4704 Avoid the error when point is inside the pattern.
4705
91d82a70
JY
47062012-03-21 John Yates <john@yates-sheets.org> (tiny change)
4707
4708 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
4709 line (Bug#10855).
4710
69188b79
CY
47112012-03-21 Drew Adams <drew.adams@oracle.com>
4712
4713 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
4714
99fc91fe
AK
47152012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
4716
4717 * ido.el (ido-set-current-directory, ido-read-internal)
4718 (ido-choose-completion-string, ido-completion-help): Handle nil
4719 value of ido-completion-buffer (Bug#11008).
4720
087bbb4c
SS
47212012-03-21 Sam Steingold <sds@gnu.org>
4722
4723 * window.el (switch-to-prev-buffer): Do not switch to a visible
4724 window previous buffer, just like with the frame previous buffers.
4725
fb5b8aca
CY
47262012-03-21 Chong Yidong <cyd@gnu.org>
4727
4728 * faces.el (make-face, make-empty-face, copy-face):
4729 * face-remap.el (face-remap-add-relative, face-remap-set-base):
4730 Doc fixes.
4731
dc9924b8
SM
47322012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4733
4734 * wid-edit.el (widget-complete-field): Remove (bug#11051).
4735 (widget-complete): Remove broken use of it.
4736
f0bcceb9
CY
47372012-03-20 Chong Yidong <cyd@gnu.org>
4738
dc9924b8
SM
4739 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
4740 Use string-width and truncate-string-width to handle arbitrary
f0bcceb9
CY
4741 characters.
4742
ee52ebf3
TH
47432012-03-20 Tassilo Horn <tassilo@member.fsf.org>
4744
4745 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
4746 to draw rectangles, not squares. (Regression introduced by revno
4747 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
4748
4c5779ab
CY
47492012-03-18 Chong Yidong <cyd@gnu.org>
4750
4751 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
4752 it is not yet defined (for temacs).
4753
15360934
LL
47542012-03-18 Leo Liu <sdl.web@gmail.com>
4755
dc9924b8 4756 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
15360934 4757
d9a8eb66
EZ
47582012-03-17 Eli Zaretskii <eliz@gnu.org>
4759
4760 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
4761 (ispell-choices-win-default-height, ispell-silently-savep)
4762 (ispell-dictionary-alist, ispell-encoding8-command)
4763 (ispell-check-version, ispell-aspell-find-dictionary)
4764 (ispell-valid-dictionary-list, ispell-words-keyword)
4765 (ispell-get-word, ispell-internal-change-dictionary)
4766 (ispell-region, ispell-skip-region-list)
4767 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
4768 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
4769 (ispell-message-text-end, ispell-message)
4770 (ispell-buffer-local-parsing): Doc fix.
4771
f02ff80d
J
47722012-03-13 Jambunathan K <kjambunathan@gmail.com>
4773
4774 * htmlfontify.el: Add support for code block fontification for ODT
4775 export (Bug #9914).
4776 (hfy-optimisations): Define new option
4777 `body-text-only'
4778 (hfy-fontify-buffer): Honor above setting.
4779 (hfy-begin-span, hfy-end-span): New routines factored out form
4780 `hfy-fontify-buffer'.
4781 (hfy-begin-span-handler, hfy-end-span-handler): New variables
4782 that permit insertion of custom tags.
4783 (hfy-fontify-buffer): Use above handlers.
4784 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
4785 (hfy-face-to-css): Re-defined to be a variable.
dc9924b8 4786 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
75f1671a 4787 over multiple runs. This is made possible by having the caller let
f02ff80d
J
4788 bind a special variable `hfy-user-sheet-assoc'.
4789 (htmlfontify-string): New defun.
4790 (hfy-compile-face-map): Make sure that the last char in the
4791 buffer is correctly fontified.
4792 (hfy-face-resolve-face): Whitespace only change.
4793
9ac7a13f
EZ
47942012-03-17 Eli Zaretskii <eliz@gnu.org>
4795
4796 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
4797 message more clear.
4798
e2b5bdd7
LL
47992012-03-16 Leo Liu <sdl.web@gmail.com>
4800
4801 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
4802
2e492df3
AM
48032012-03-16 Alan Mackenzie <acm@muc.de>
4804
4805 Further optimise the handling of large macros.
4806
4807 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
4808 limit to a call of `c-literal-limits'.
4809 (c-determine-+ve-limit): New function.
dc9924b8
SM
4810 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
4811 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
2e492df3
AM
4812 In CASE 5B, restrict a search limit to 500.
4813 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
4814
4815 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
4816 Restrict macro bounds to +-500 from after-change's BEG END.
4817
50e94f0c
LL
48182012-03-16 Leo Liu <sdl.web@gmail.com>
4819
4820 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
4821
6f09f6ed
AH
48222012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
4823
4824 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
dc9924b8 4825 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6f09f6ed 4826
c7e73d51
GM
48272012-03-16 Glenn Morris <rgm@gnu.org>
4828
da986230
GM
4829 * view.el (view-buffer, view-buffer-other-window)
4830 (view-buffer-other-frame): Doc fixes re special mode-class.
4831
0835f01e
GM
4832 * subr.el (eval-after-load): If named feature is provided not from
4833 a file, run after-load forms. (Bug#10946)
4834
c7e73d51
GM
4835 * calendar/calendar.el (calendar-insert-at-column):
4836 Handle non-unit-width characters a bit better. (Bug#10978)
4837
3f2eafd1
CY
48382012-03-15 Chong Yidong <cyd@gnu.org>
4839
4840 * emacs-lisp/ring.el (ring-extend): New function.
4841 (ring-insert+extend): Extend the ring correctly (Bug#11019).
4842
4843 * comint.el (comint-read-input-ring)
4844 (comint-add-to-input-history): Grow comint-input-ring lazily.
4845
103af3fe
SM
48462012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
4847
663b1677
SM
4848 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
4849 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
4850
103af3fe
SM
4851 * imenu.el: Fix multiple inheritance breakage (bug#9199).
4852 (imenu-add-to-menubar): Don't add a redundant index.
4853 (imenu-update-menubar): Handle a dynamically composed keymap.
4854
899cb7cb
KY
48552012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
4856
4857 * mail/sendmail.el (mail-encode-header):
4858 Bind rfc2047-encode-encoded-words to nil.
4859
3809f91d
GM
48602012-03-13 Glenn Morris <rgm@gnu.org>
4861
4862 * calendar/calendar.el (calendar-string-spread):
4863 Handle non-unit-width characters a bit better. (Bug#10978)
4864
9e345a01
LL
48652012-03-13 Leo Liu <sdl.web@gmail.com>
4866
4867 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
4868 directory and file as argument (Bug#10822).
4869
4a07df36
KS
48702012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4871
4872 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
4873 For dynamically generated code, follow $PC.
4874 (gdb-disassembly-handler-custom): Handle no function name case.
4875
4aaa9356
TL
48762012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
4877
4878 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
4879 * emulation/ws-mode.el (ws-query-replace):
4880 * sort.el (sort-regexp-fields):
4881 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
4882
225979da
SM
48832012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4884
4885 * dabbrev.el: Fix cycle completion order (bug#10963).
4886 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
4887 (dabbrev-completion): Don't use an obarray; provide
4888 a cycle-sort-function.
4889
e2f1fdab
LL
48902012-03-12 Leo Liu <sdl.web@gmail.com>
4891
dc9924b8 4892 * simple.el (kill-new): Use equal-including-properties for comparison.
e2f1fdab
LL
4893 (kill-do-not-save-duplicates): Doc fix.
4894
b19490ed
SM
48952012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4896
4897 * dabbrev.el: Fix cycle completion (bug#10963).
4898 Use lexical binding and wrap to 80 columns.
4899 (dabbrev-completion): Delay computing the list of completions.
4900
4b05d722
KH
49012012-03-12 Kenichi Handa <handa@m17n.org>
4902
4903 * international/quail.el (quail-insert-kbd-layout): Surround each
4904 row by LRO and PDF instead of inserting many LRMs. Pad the left
4905 and right of each non-spacing marks. Insert invisible space
4906 between lower and upper characters to prevent composition.
4907
dbbc2e69
SM
49082012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4909
4910 * minibuffer.el (minibuffer-complete): Don't get confused when the
4911 function is run twice via different commands (bug#10958).
4912 (complete-with-action): Fix docstring.
4913
292112ed
CY
49142012-03-12 Chong Yidong <cyd@gnu.org>
4915
5d1ac394
CY
4916 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
4917 (nxml-completion-at-point-function): New function.
4918 (nxml-mode): Use it.
4919 (nxml-bind-meta-tab-to-complete-flag): Default to t.
4920
292112ed
CY
4921 * emacs-lisp/package.el (package-unpack, package-unpack-single):
4922 Load generated autoloads file before byte compiling (Bug#10970).
4923 (package--make-autoloads-and-compile): New helper fun.
4924
4098f8f7
CS
49252012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
4926
4927 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
4928
8f754691
MA
49292012-03-11 Michael Albinus <michael.albinus@gmx.de>
4930
4931 * autorevert.el (auto-revert-handler): Ensure, that
4932 file-readable-p is applied only for local files or in
4933 auto-revert-tail-mode.
4934
e29ab36b
AS
49352012-03-11 Andreas Schwab <schwab@linux-m68k.org>
4936
dbbc2e69
SM
4937 * server.el (server-eval-at): Handle non-tcp connections.
4938 Decode result string.
ad0bf5b6 4939
e29ab36b
AS
4940 * server.el (server-msg-size): New constant.
4941 (server-reply-print): New function.
4942 (server-eval-and-print): Use it.
4943 (server-eval-at): Use server-quote-arg and server-unquote-arg.
4944 Handle -print-nonl.
4945
de5939ba
CS
49462012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
4947
4948 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
4949 (Bug#10987).
4950
0c93eabf
CY
49512012-03-11 Chong Yidong <cyd@gnu.org>
4952
397a688f
CY
4953 * simple.el (goto-line): Doc fix (Bug#9938).
4954
2cc775f9
CY
4955 * subr.el (save-window-excursion): Doc fix (Bug#9979).
4956
0c93eabf
CY
4957 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
4958 when finished (Bug#10963).
4959
c491fa41
MR
49602012-03-11 Martin Rudalics <rudalics@gmx.at>
4961
4962 * window.el (split-window-below): Fix bug in case where
4963 split-window-keep-point is nil (Bug#10971).
4964
300e8fa5
JL
49652012-03-11 Juri Linkov <juri@jurta.org>
4966
4967 * replace.el (replace-highlight): Set isearch-word to nil
4968 unconditionally. (Bug#10887)
4969
dbf6c5a1
EZ
49702012-03-10 Eli Zaretskii <eliz@gnu.org>
4971
4972 * net/mairix.el (mairix-replace-invalid-chars): Rename from
4973 mairix-replace-illegal-chars; all callers changed. Don't remove
dc9924b8 4974 ^, ~, and = characters: they are meaningful in mairix search specs.
dbf6c5a1
EZ
4975 (mairix-widget-create-query): Add usage information about mairix
4976 search forms: negating words, searching for substrings, etc.
4977
b9e501de
JP
49782012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
4979
4980 * international/fontset.el (font-encoding-alist): Add an entry for
4981 ksx1001 (Bug#5667).
4982
92795c91
RS
49832012-03-10 Richard Stallman <rms@gnu.org>
4984
1694e6c1
RS
4985 * mail/sendmail.el (mail-encode-header):
4986 Set rfc2047-encode-encoded-words.
4987
607e8555
RS
4988 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
4989
de3bc99a
RS
4990 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
4991 view buffer means not swapped.
4992 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
4993 (rmail-write-region-annotate): Error if real text has disappeared.
4994
92795c91
RS
4995 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
4996
699bd04e
CY
49972012-03-10 Chong Yidong <cyd@gnu.org>
4998
4999 * emulation/cua-rect.el (cua--init-rectangles):
dbbc2e69
SM
5000 * emulation/cua-base.el (cua--init-keymaps):
5001 Add delete-forward-char to remappings (Bug#9666).
699bd04e 5002
570a1714
MR
50032012-03-10 Martin Rudalics <rudalics@gmx.at>
5004
dbbc2e69
SM
5005 * speedbar.el (speedbar-unhighlight-one-tag-line):
5006 Avoid unhighlighting due to frame switching (Bug#10275).
570a1714 5007
82dcf4e4
CY
50082012-03-10 Chong Yidong <cyd@gnu.org>
5009
7a2c7ca7
CY
5010 * minibuffer.el (completion-in-region, completion-help-at-point):
5011 Give the completion field overlay a high priority (Bug#6830).
5012
82dcf4e4
CY
5013 * dired.el (dired-goto-file): Recognize absolute file name
5014 listings (Bug#7126).
5015 (dired-goto-file-1): New helper function.
5016 (dired-toggle-read-only): Inhibit warnings.
5017
052e28ac
MA
50182012-03-09 Michael Albinus <michael.albinus@gmx.de>
5019
75f1671a 5020 * net/dbus.el (dbus-property-handler): Return empty array if
052e28ac
MA
5021 there are no properties.
5022
95d5e396
LL
50232012-03-09 Leo Liu <sdl.web@gmail.com>
5024
5025 * savehist.el (savehist-printable): Stricter check for string
5026 value (Bug#10937).
5027
3f018d6d
EZ
50282012-03-09 Eli Zaretskii <eliz@gnu.org>
5029
dbbc2e69
SM
5030 * mail/smtpmail.el (smtpmail-send-it):
5031 Bind coding-system-for-write to *-unix, so that FCC files are kept in
3f018d6d
EZ
5032 valid mbox format.
5033
f7fd3d79
GM
50342012-03-09 Glenn Morris <rgm@gnu.org>
5035
5036 * files.el (dir-locals-find-file):
5037 Don't check result is regular, readable.
5038 (dir-locals-read-from-file): Demote errors.
5039
6ff6e72f
EZ
50402012-03-08 Eli Zaretskii <eliz@gnu.org>
5041
dbbc2e69
SM
5042 * international/quail.el (quail-insert-kbd-layout):
5043 Insert invisible LRM characters before each character in a keyboard
6ff6e72f
EZ
5044 layout cell, to prevent their reordering by bidi display engine.
5045 For details, see the discussion in
5046 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
5047
9cec7834
AM
50482012-03-08 Alan Mackenzie <acm@muc.de>
5049
5050 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
5051 the starting position; make it extend the marked region when
5052 invoked repeatedly - all under appropriate circumstances.
5053 Fixes bugs #5525, #10906.
5054
9a40b8d4
GM
50552012-03-08 Glenn Morris <rgm@gnu.org>
5056
5057 * files.el (locate-dominating-file, dir-locals-find-file):
5058 Undo 2012-03-06 change.
5059
7a08ed35
EZ
50602012-03-07 Eli Zaretskii <eliz@gnu.org>
5061
dbbc2e69
SM
5062 * international/quail.el (quail-help):
5063 Force bidi-paragraph-direction be left-to-right. See discussion in
7a08ed35
EZ
5064 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
5065 for the reason.
5066
5aca4f71 50672012-03-07 Michael Albinus <michael.albinus@gmx.de>
6612a284
MA
5068
5069 Avoid superfluous registering of signals. (Bug#10807)
5070
5071 * notifications.el (notifications-on-action-object)
5072 (notifications-on-close-object): New defvars.
5073 (notifications-on-action-signal, notifications-on-closed-signal):
5074 Unregister the signal if not needed any longer.
5075 (notifications-notify): Register `notifications-action-signal' or
5076 `notifications-closed-signal', if :on-action or :on-close has been
5077 passed as argument.
5078
78e8b10a
CY
50792012-03-07 Chong Yidong <cyd@gnu.org>
5080
5081 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
5082 non-X platforms.
5083
69481eb8
GM
50842012-03-06 Glenn Morris <rgm@gnu.org>
5085
5086 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
5087 (x-disown-selection-internal, x-get-selection-internal):
5088 Doc fix (add arglist signatures). (Bug#10783)
5089
133b8e11
KS
50902012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
5091
5092 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
5093 Handle breakpoints with no "type".
5094
99a83064
GM
50952012-03-06 Glenn Morris <rgm@gnu.org>
5096
5097 * files.el (locate-dominating-file): Add optional predicate argument.
5098 (dir-locals-find-file): Make use of above change.
5099
17798e78
TTN
51002012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
5101
5102 * info.el (Info-insert-dir): Also try "dir.gz".
5103
eb182446
GM
51042012-03-06 Glenn Morris <rgm@gnu.org>
5105
8f2114ee
GM
5106 * files.el (dir-locals-find-file):
5107 Ignore non-readable or non-regular files. (Bug#10928)
5108
eb182446
GM
5109 * files.el (locate-dominating-file): Doc fix.
5110
24679323
AS
51112012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
5112
5113 * calendar/calendar.el (calendar-set-mode-line):
5114 `getenv' returns a string. (Bug#10951)
5115
01d972a9
LL
51162012-03-05 Leo Liu <sdl.web@gmail.com>
5117
109aa8a9
LL
5118 * simple.el (backward-delete-char-untabify): Constrain point to
5119 field (Bug#10939).
5120
01d972a9
LL
5121 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
5122
10607bea
CY
51232012-03-05 Chong Yidong <cyd@gnu.org>
5124
5125 * simple.el (count-words): If called from Lisp, return the word
5126 count, for symmetry with `count-lines'. Arglist changed.
5127 (count-words--message): Args changed. Consolidate counting code
5128 from count-words and count-words-region.
5129 (count-words-region): Caller changed.
5130 (count-lines-region): Make it an obsolete alias.
5131
5dd11cfe
TH
51322012-03-04 Tassilo Horn <tassilo@member.fsf.org>
5133
5134 * saveplace.el (save-place-to-alist)
5135 (save-place-ignore-files-regexp): Allow value nil to disable this
5136 feature.
5137
c349f4e6
CY
51382012-03-04 Chong Yidong <cyd@gnu.org>
5139
5140 * faces.el (face-spec-reset-face): For the default face, reset the
5141 attributes to default values (Bug#10748).
5142
e627be4c
LMI
51432012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
5144
5145 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
5146 previous patch: Check `message-send-mail-function', and not the
5147 default function (bug#10897).
5148
ebeabff4
MA
51492012-03-04 Michael Albinus <michael.albinus@gmx.de>
5150
a41a6cf4
MA
5151 * notifications.el (notifications-on-action-signal)
5152 (notifications-on-closed-signal): Check for unique service name of
5153 incoming event. Fix error in removing entry.
ebeabff4 5154 (top): Register for signals with wildcard service name.
a41a6cf4 5155 (notifications-notify): Use daemon unique service name for map entries.
ebeabff4 5156
c1ca42b4
CY
51572012-03-04 Chong Yidong <cyd@gnu.org>
5158
dc9924b8 5159 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
c1ca42b4 5160
ea16568d
GM
51612012-03-04 Glenn Morris <rgm@gnu.org>
5162
5163 * abbrev.el (copy-abbrev-table, abbrev-table-p)
5164 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
5165 (expand-abbrev, define-abbrev-table): Doc fixes.
5166
fbae4637
LMI
51672012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5168
5169 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
5170 `message-default-send-mail-function' and not `send-mail-function'
5171 when doing the prompting for `sendmail-query-once' before sending
5172 in Message buffers (bug#10897).
5173
a1e7225c
LMI
5174 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
5175 This is inconsistent with all the other stream functions, which leave
5176 the setting up to the higher levels (if so wanted) (bug#10931).
5177
56d093a9
AM
51782012-03-02 Alan Mackenzie <acm@muc.de>
5179
5180 Depessimize the handling of very large macros.
5181
5182 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
5183 (c-macro-cache-syntactic): New variables to implement a one
5184 element macro cache.
5185 (c-invalidate-macro-cache): New function.
5186 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
5187 Adapt to use the new cache.
5188 (c-state-safe-place): Use better the cache of safe positions.
5189 (c-state-semi-nonlit-pos-cache)
5190 (c-state-semi-nonlit-pos-cache-limit):
5191 New variables for...
5192 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
5193 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
dbbc2e69
SM
5194 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
5195 Use c-state-semi-safe-place.
56d093a9 5196
dbbc2e69
SM
5197 * progmodes/cc-langs.el (c-get-state-before-change-functions):
5198 Add c-invalidate-macro-cache to the C, C++, Obj entries.
56d093a9 5199
817e5c3d
MA
52002012-03-02 Michael Albinus <michael.albinus@gmx.de>
5201
dbbc2e69
SM
5202 * jka-compr.el (jka-compr-call-process):
5203 Apply `file-accessible-directory-p' only when the default directory is
817e5c3d
MA
5204 not remote.
5205
a032a702
MA
52062012-03-01 Michael Albinus <michael.albinus@gmx.de>
5207
5208 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
5209 access of FILE2, if FILE1 does not exist.
5210
99a54f21
MA
5211 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
5212 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
5213
5214 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
5215 Add "PAGER=" to `process-environment'.
5216
f6561e1f
MM
52172012-03-01 Michael R. Mauger <mmaug@yahoo.com>
5218
5219 * progmodes/sql.el: Bug fix
5220 (sql-get-login-ext): Save login values in globals.
5221 (sql-get-login): Use new version of `sql-get-login-ext'.
5222 (sql-interactive-mode): Set global `sql-connection' to nil.
5223 (sql-connect): Set global values for connection.
5224 (sql-product-interactive): Save global values as buffer local.
5225
2d44d9cc
LL
52262012-02-29 Leo Liu <sdl.web@gmail.com>
5227
5228 * abbrev.el (define-abbrevs): Reset sys to nil.
5229
96b49301 52302012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5231
bf7f9bc5
JB
5232 * files.el (file-equal-p): Rename from `files-equal-p'.
5233 Return nil when one or both files don't exist.
96b49301 5234 (file-subdir-of-p): Now only top directory must exists,
5235 return nil if it doesn't.
bf7f9bc5
JB
5236 (copy-directory): No need to test with `file-subdir-of-p' after
5237 creating dir.
5238 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
5239 to `file-equal-p'.
96b49301 5240
44e97401
GM
52412012-02-28 Glenn Morris <rgm@gnu.org>
5242
5243 * shell.el (shell-mode):
5244 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
5245 * play/landmark.el (landmark-font-lock-face-O):
5246 * play/handwrite.el (handwrite):
5247 * play/gomoku.el (gomoku-O):
5248 * net/browse-url.el (browse-url-browser-display):
5249 * international/mule.el (define-charset):
5250 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
5251 * filesets.el (filesets-find-file-delay):
5252 * eshell/em-xtra.el (eshell-xtra):
5253 * eshell/em-unix.el (eshell-grep):
5254 * emulation/viper.el (viper-mode):
5255 * emacs-lisp/regexp-opt.el (regexp-opt-group):
5256 * emacs-lisp/easymenu.el (easy-menu-define):
5257 * calendar/timeclock.el (timeclock-use-display-time):
5258 * bs.el (bs-mode):
5259 * bookmark.el (bookmark-save-flag):
5260 Doc fix (standardize possessive apostrophe usage).
5261
c98c6276
CY
52622012-02-27 Chong Yidong <cyd@gnu.org>
5263
bf7f9bc5
JB
5264 * emulation/viper-cmd.el (viper-intercept-ESC-key):
5265 Fix key-binding lookup for ESC key (Bug#9146).
ecf5f74e 5266
c98c6276
CY
5267 * font-lock.el (font-lock-specified-p): Rename from
5268 font-lock-spec-present. Callers changed.
5269
9c62cd04 52702012-02-27 Daniel Hackney <dan@haxney.org>
8ac9e529 5271
bf7f9bc5
JB
5272 * emacs-lisp/package.el (package-compute-transaction):
5273 Handle holding a package version to t in package-load-list.
8ac9e529 5274
530739c9
MA
52752012-02-26 Michael Albinus <michael.albinus@gmx.de>
5276
5277 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
5278 (tramp-get-inode, tramp-get-device): Use cached values.
5279
487915d7
AM
52802012-02-26 Alan Mackenzie <acm@muc.de>
5281
5282 Check there is a font-lock specification before doing initial
5283 fontification.
5284
5285 * font-core.el (font-lock-mode): Move the conditional from
5286 :after-hook to font-lock-initial-fontify.
5287 (font-lock-default-function): Move the check for a specification
5288 to font-lock-spec-present.
5289
dc9924b8 5290 * font-lock.el (font-lock-initial-fontify): Call ...
487915d7
AM
5291 (font-lock-spec-present): New function.
5292
4fd96557
JB
52932012-02-26 Jim Blandy <jimb@red-bean.com>
5294
5295 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
5296 (gdb-send): Apply it to the operand of the '-interpreter-exec
5297 console' command, so that we can pass arguments with (say) quotes
5298 in them. Store exact string sent in gdb-debug-log (Bug#10765).
5299
9a4888c0
CY
53002012-02-26 Chong Yidong <cyd@gnu.org>
5301
07498861
CY
5302 * help-fns.el (describe-function-1): Clarify description of
5303 remapping (Bug#10844).
5304
9a4888c0
CY
5305 * files.el (files-equal-p): Doc fix.
5306 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
5307 and quit the loop once a mismatch is found.
5308
ea8fb88d
JB
53092012-02-25 Juanma Barranquero <lekktu@gmail.com>
5310
5311 * bs.el (bs--show-with-configuration): Don't throw an error
5312 if the window cannot be split; otherwise, subsequent calls to
5313 bs-show fail, restoring a stale window config. (Bug#10882)
5314
525795c1
JD
53152012-02-25 Jan Djärv <jan.h.d@swipnet.se>
5316
5317 * term/ns-win.el (global-map): Bind ns-drag-file to
5318 ns-find-file (Bug#5855, Bug#10050).
5319
f008086f
AS
53202012-02-25 Andreas Schwab <schwab@linux-m68k.org>
5321
5322 * calendar/parse-time.el (parse-time-string): Allow extractor to
5323 return nil.
5324
a3fcfa99
MA
53252012-02-25 Michael Albinus <michael.albinus@gmx.de>
5326
91027d08
JB
5327 * net/tramp.el (tramp-file-name-for-operation):
5328 Add `files-equal-p' and `file-subdir-of-p'.
a3fcfa99
MA
5329
5330 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
91027d08
JB
5331 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
5332 Add COPY-CONTENTS argument.
a3fcfa99 5333
67b0de11
CY
53342012-02-25 Chong Yidong <cyd@gnu.org>
5335
5336 Add custom groups for VC backends, for consistency with vc-bzr.
5337
5338 * vc/vc-arch.el (vc-arch):
5339 * vc/vc-cvs.el (vc-cvs):
5340 * vc/vc-git.el (vc-git):
5341 * vc/vc-hg.el (vc-hg):
5342 * vc/vc-mtn.el (vc-mtn):
5343 * vc/vc-rcs.el (vc-rcs):
5344 * vc/vc-sccs.el (vc-sccs):
5345 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
5346 All relevant defcustoms reassigned.
5347
3c9dfce6
CY
53482012-02-25 Chong Yidong <cyd@gnu.org>
5349
1339bf43
CY
5350 * newcomment.el (comment-styles): Add autoload (Bug#10868).
5351
3c9dfce6
CY
5352 * term/x-win.el (x-initialize-window-system): Reduce default for
5353 x-selection-timeout to 5 seconds (Bug#8869).
5354
25b2e303 53552012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5356
ec70a47d
GM
5357 * files.el (files-equal-p, file-subdir-of-p): New functions.
5358 (copy-directory): Error when trying to copy a directory on itself.
25b2e303 5359 Add missing copy-contents arg to tramp handler.
ec70a47d
GM
5360 * dired-aux.el (dired-copy-file-recursive): Same.
5361 (dired-create-files): Modify destination when source is equal to
5362 dest when copying files.
53a46cd0 5363 Return also when dest is a subdir of source. (Bug#10489)
25b2e303 5364
914260cd
MA
53652012-02-24 Michael Albinus <michael.albinus@gmx.de>
5366
5367 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
5368 (Bug#10874)
5369
2cb228f7
AM
53702012-02-23 Alan Mackenzie <acm@muc.de>
5371
5372 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
5373 parameter "after-hook:" to allow the expansion to run code after
5374 the execution of the mode hooks.
5375
5376 * font-lock.el (font-lock-initial-fontify): New function extracted
91027d08 5377 from font-lock-mode-internal.
2cb228f7 5378
91027d08 5379 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
2cb228f7
AM
5380 :after-hook.
5381
8f0fde21
SM
53822012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
5383
3e88618b
SM
5384 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
5385 (completion--cache-all-sorted-completions): New function.
5386 (completion-all-sorted-completions): Use it.
5387 (completion--do-completion, minibuffer-force-complete):
5388 Use it to re-instate the flush hook.
5389
8f0fde21
SM
5390 * icomplete.el (icomplete-completions): Replace last fix with a better
5391 one (bug#10850).
5392
8e911f6f
DG
53932012-02-23 Dmitry Gutov <dgutov@yandex.ru>
5394
5395 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
5396 when it might call us back infinitely (bug#10797).
5397
49fe4321
GM
53982012-02-23 Glenn Morris <rgm@gnu.org>
5399
5400 * minibuffer.el (completion-category-overrides): Doc fix.
5401
b291b572
SM
54022012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
5403
5404 * minibuffer.el (completion-table-with-context): Fix inf-loop.
5405 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
5406
31a9ef2e
GM
54072012-02-23 Glenn Morris <rgm@gnu.org>
5408
5e6e6794 5409 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
31a9ef2e
GM
5410 (authors-obsolete-files-regexps, authors-ignored-files)
5411 (authors-ambiguous-files, authors-renamed-files-alist):
5412 Add more entries.
5413
0bd1e074
JL
54142012-02-23 Juri Linkov <juri@jurta.org>
5415
5416 * isearch.el (isearch-occur): Sync interactive spec with occur's
5417 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
5418
b617673c
JL
5419 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
5420
19e9789e
JL
54212012-02-22 Juri Linkov <juri@jurta.org>
5422
5423 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
5424 (ucs-insert): Doc fix. Check for hex digits in the string.
5425 Don't display `nil' in the error message. (Bug#10857)
5426
f41ce09d
AM
54272012-02-22 Alan Mackenzie <acm@muc.de>
5428
7a71b18d 5429 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
f41ce09d 5430
ac2eceee
GM
54312012-02-22 Glenn Morris <rgm@gnu.org>
5432
5433 * ffap.el (ffap-c-path):
5434 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
5435
abd1f678
CY
54362012-02-22 Chong Yidong <cyd@gnu.org>
5437
5438 * custom.el (load-theme): Doc fix.
5439
f25aef2e
GM
54402012-02-22 Glenn Morris <rgm@gnu.org>
5441
5442 * dired-x.el (dired-guess-shell-alist-default):
5443 Remove escape sequences from nroff output. (Bug#172)
5444
5f8dc2ca
GM
54452012-02-21 Glenn Morris <rgm@gnu.org>
5446
6ff86ec4
GM
5447 * vc/emerge.el (emerge-defvar-local):
5448 Set `permanent-local' property rather than unused `preserved'.
5449
be3223a3 5450 * textmodes/picture.el (picture-delete-char): New alias.
5f8dc2ca
GM
5451 (picture-mode-map): Use it. (Bug#10860)
5452 (picture-mode): Doc fix.
5453
3fe58f4f
JB
54542012-02-21 Juanma Barranquero <lekktu@gmail.com>
5455
5456 * newcomment.el (uncomment-region-default): Remove unused binding.
5457
f9a998c3
GM
54582012-02-21 Glenn Morris <rgm@gnu.org>
5459
5460 * textmodes/picture.el (picture-motion, picture-motion-reverse)
5461 (picture-self-insert, picture-tab-chars): Doc fix.
5462 (picture-mode-map): Fix C-a, C-e.
5463
c6029348
GM
54642012-02-20 Glenn Morris <rgm@gnu.org>
5465
5466 * emacs-lisp/authors.el (authors-aliases): Add another entry.
5467
ab1ce9d7
LL
54682012-02-20 Leo Liu <sdl.web@gmail.com>
5469
5470 * icomplete.el (icomplete-completions): Check FROM arg before
5471 passing to substring (Bug#10850).
5472
0fd40f89
CY
54732012-02-19 Chong Yidong <cyd@gnu.org>
5474
5475 * comint.el: Require ansi-color.
5476 (comint-output-filter-functions): Add ansi-color-process-output.
5477
5478 * ansi-color.el: Don't set comint-output-filter-functions; it is
5479 now in the initial value defined in comint.el.
5480 (ansi-color-apply-face-function): New variable.
5481 (ansi-color-apply-on-region): Use it.
5482 (ansi-color-apply-overlay-face): New function.
5483
5484 * shell.el (shell): No need to require ansi-color.
5485 (shell-mode): Use ansi-color-apply-face-function to highlight
5486 color escapes using font-lock-face property (Bug#10835).
5487
20af2394
CY
54882012-02-19 Chong Yidong <cyd@gnu.org>
5489
5490 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
5491 mode-line formats (Bug#10839).
5492
e23a3fbe
GM
54932012-02-18 Glenn Morris <rgm@gnu.org>
5494
b474519e
GM
5495 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
5496
5497 * mail/undigest.el (unforward-rmail-message): Doc fix.
5498
e23a3fbe
GM
5499 * saveplace.el (save-place-ignore-files-regexp): Add :version.
5500
57939ff4
EZ
55012012-02-18 Eli Zaretskii <eliz@gnu.org>
5502
5503 * international/characters.el (script-list): Sync with the latest
5504 Unicode Character Database.
5505
0c23686e
AS
55062012-02-18 Andreas Schwab <schwab@linux-m68k.org>
5507
5508 * international/titdic-cnv.el: Remove duplicate coding tag.
5509 * language/cham.el: Likewise.
5510 * language/tai-viet.el: Likewise.
5511
6818b449
GM
55122012-02-18 Glenn Morris <rgm@gnu.org>
5513
5514 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
5515 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
5516 (calendar-bahai-all-holidays-flag, calendar-other-dates):
5517 * calendar/diary-lib.el (diary-abbreviated-year-flag):
5518 * calendar/holidays.el (holiday-bahai-holidays)
5519 (calendar-holidays, list-holidays):
5520 Use utf-8 Bahá'í in doc-strings, menus, etc.
5521
0311a3fc
TH
55222012-02-17 Tassilo Horn <tassilo@member.fsf.org>
5523
5524 * saveplace.el (save-place-ignore-files-regexp): New variable
5525 allowing for excluding files from saving their location of point.
5526 The default value matches the temporary commit message editing
5527 files from Git, SVN, Bazaar, and Mercurial.
5528 (save-place-to-alist): Use it.
5529
d209e2fb 55302012-02-17 Lawrence Mitchell <wence@gmx.li>
eb864a71
LM
5531 Stefan Monnier <monnier@iro.umontreal.ca>
5532
5533 * newcomment.el (uncomment-region-default): Don't leave extra space
5534 when an arg is provided (bug#8150).
5535
ee0ce425
TZ
55362012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
5537
eb864a71 5538 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
ee0ce425 5539
95ddf442
GM
55402012-02-17 Glenn Morris <rgm@gnu.org>
5541
5542 * net/socks.el: Require network-stream. (Bug#10599)
5543
48dd1e39 55442012-02-17 Kenichi Handa <handa@m17n.org>
c406be43
KH
5545
5546 * international/charprop.el:
5547 * international/uni-name.el:
5548 * international/uni-old-name.el:
5549 * international/uni-comment.el: Regenerate.
5550
d68cd087
GM
55512012-02-16 Glenn Morris <rgm@gnu.org>
5552
5553 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
5554 Interactively in calendar buffer, give an error if not on a date.
5555
13932042
GM
55562012-02-15 Glenn Morris <rgm@gnu.org>
5557
5558 * shell.el (shell-delimiter-argument-list):
5559 Revert 2011-02-17 change. (Bug#8027)
5560
c3a70e2b
CY
55612012-02-15 Chong Yidong <cyd@gnu.org>
5562
60236b0d
CY
5563 * minibuffer.el (completion-at-point-functions): Doc fix.
5564
c3a70e2b
CY
5565 * custom.el (defcustom): Doc fix; note use of defvar.
5566
9f26dc24
GM
55672012-02-15 Glenn Morris <rgm@gnu.org>
5568
5569 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
5570 Doc fixes.
5571
6546b134
GM
55722012-02-14 Glenn Morris <rgm@gnu.org>
5573
5574 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
5575
d29b2b4c
LI
55762012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
5577
5578 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
5579 way the ports list is computed.
835bdcba
LI
5580 (smtpmail-query-smtp-server): Prompt the user for a port number if
5581 we can't connect to any of the standard ports (bug#10810).
d29b2b4c 5582
08dcdbc9
TZ
55832012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
5584
5585 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
5586
2605051a
GM
55872012-02-13 Glenn Morris <rgm@gnu.org>
5588
5589 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
5590
7ee99f32
TZ
55912012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
5592
5593 * net/gnutls.el (gnutls-trustfiles): New variable.
5594 (gnutls-negotiate): Use it.
5595
5f0af64f
LI
55962012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
5597
5598 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
5599 does its stuff if Gnus is running.
5600
c14fcc95
AM
56012012-02-13 Alan Mackenzie <acm@muc.de>
5602
5603 Fix a loop in c-set-fl-decl-start.
5604
7a71b18d 5605 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
c14fcc95
AM
5606 c-backward-syntactic-ws actually moves backwards.
5607
142b4d90
LL
56082012-02-13 Leo Liu <sdl.web@gmail.com>
5609
5610 * net/rcirc.el (rcirc-markup-attributes): Move point to the
5611 beginning so that all \C-o chars are removed.
5612
fa9958a6
TZ
56132012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
5614
dc9924b8 5615 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
fa9958a6 5616
0bc5886a
AM
56172012-02-12 Alan Mackenzie <acm@muc.de>
5618
5619 Fix infinite loop with long macros.
4d6769e1 5620 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
0bc5886a 5621
d4bd55e7
CY
56222012-02-12 Chong Yidong <cyd@gnu.org>
5623
5624 * window.el (display-buffer): Doc fix (Bug#10785).
5625
66f3fe22
GM
56262012-02-12 Glenn Morris <rgm@gnu.org>
5627
bd7da63e
GM
5628 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
5629 (x-disown-selection-internal, x-get-selection-internal):
5630 Sync docs with the xselect.c versions.
5631
66f3fe22
GM
5632 * allout-widgets.el: Add missing license notice.
5633
3e0d2fa7
GM
56342012-02-11 Glenn Morris <rgm@gnu.org>
5635
cfecdf09
GM
5636 * select.el (x-get-selection-internal, x-own-selection-internal)
5637 (x-disown-selection-internal):
5638 * x-dnd.el (x-get-selection-internal): Update declarations.
5639
6d216d7f
GM
5640 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
5641
2bed3f04
GM
5642 * window.el (window-sides-slots):
5643 * tool-bar.el (tool-bar-position):
5644 * term/xterm.el (xterm-extra-capabilities):
5645 * ses.el (ses-self-reference-early-detection):
5646 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
5647 (verilog-auto-wire-type)
5648 (verilog-auto-delete-trailing-whitespace)
5649 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
5650 (verilog-auto-tieoff-declaration):
5651 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
5652 (sql-oracle-statement-starters, sql-oracle-scan-on):
5653 * progmodes/prolog.el (prolog-align-comments-flag)
5654 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
5655 (prolog-left-indent-regexp, prolog-paren-indent-p)
5656 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
5657 (prolog-types, prolog-mode-specificators)
5658 (prolog-determinism-specificators, prolog-directives)
5659 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
5660 (prolog-electric-dot-flag)
5661 (prolog-electric-dot-full-predicate-template)
5662 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
5663 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
5664 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
5665 (prolog-program-switches, prolog-prompt-regexp)
5666 (prolog-debug-on-string, prolog-debug-off-string)
5667 (prolog-trace-on-string, prolog-trace-off-string)
5668 (prolog-zip-on-string, prolog-zip-off-string)
5669 (prolog-use-standard-consult-compile-method-flag)
5670 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
5671 (prolog-imenu-max-lines, prolog-info-predicate-index)
5672 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
5673 (prolog-char-quote-workaround):
5674 * progmodes/cc-vars.el (c-defun-tactic):
5675 * net/tramp.el (tramp-encoding-command-interactive)
5676 (tramp-local-end-of-line):
5677 * net/soap-client.el (soap-client):
5678 * net/netrc.el (netrc-file):
5679 * net/gnutls.el (gnutls):
5680 * minibuffer.el (completion-category-overrides)
5681 (completion-cycle-threshold)
5682 (completion-pcm-complete-word-inserts-delimiters):
5683 * man.el (Man-name-local-regexp):
5684 * mail/feedmail.el (feedmail-display-full-frame):
5685 * international/characters.el (glyphless-char-display-control):
5686 * eshell/em-ls.el (eshell-ls-date-format):
5687 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
5688 (lisp-lambda-list-keyword-parameter-indentation)
5689 (lisp-lambda-list-keyword-parameter-alignment):
5690 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
5691 * dired-x.el (dired-omit-verbose):
5692 * cus-theme.el (custom-theme-allow-multiple-selections):
5693 * calc/calc.el (calc-highlight-selections-with-faces)
5694 (calc-lu-field-reference, calc-lu-power-reference)
5695 (calc-note-threshold):
5696 * battery.el (battery-mode-line-limit):
5697 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
5698 (archive-7z-update):
5699 * allout.el (allout-prefixed-keybindings)
5700 (allout-unprefixed-keybindings)
5701 (allout-inhibit-auto-fill-on-headline)
5702 (allout-flattened-numbering-abbreviation):
5703 * allout-widgets.el (allout-widgets-auto-activation)
5704 (allout-widgets-icons-dark-subdir)
5705 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
5706 (allout-widgets-theme-dark-background)
5707 (allout-widgets-theme-light-background)
5708 (allout-widgets-item-image-properties-emacs)
5709 (allout-widgets-item-image-properties-xemacs)
5710 (allout-widgets-run-unit-tests-on-load)
5711 (allout-widgets-time-decoration-activity)
5712 (allout-widgets-hook-error-post-time)
5713 (allout-widgets-track-decoration):
5714 Add missing :version tags to new defcustoms and defgroups.
5715
5fec1b8e
GM
5716 * progmodes/sql.el (sql-ansi-statement-starters)
5717 (sql-oracle-statement-starters): Add custom type.
5718
3e0d2fa7
GM
5719 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
5720 (prolog-system-version): Give it a type.
5721
90b671e2
EZ
57222012-02-11 Eli Zaretskii <eliz@gnu.org>
5723
5724 * term/pc-win.el (x-select-text, x-selection-owner-p)
5725 (x-own-selection-internal, x-disown-selection-internal)
5726 (x-get-selection-internal): Sync doc strings and argument lists
5727 with xselect.c, common-win.el and x-win.el. (Bug#10783)
5728
5eac0c02
LL
57292012-02-11 Leo Liu <sdl.web@gmail.com>
5730
5731 * progmodes/python.el (python-end-of-statement): Fix infinite
5732 loop. (Bug#10788)
5733
f82cb659
GM
57342012-02-10 Glenn Morris <rgm@gnu.org>
5735
5736 * international/mule-cmds.el (unify-8859-on-encoding-mode)
5737 (unify-8859-on-decoding-mode): Properly mark as obsolete.
5738
cc26d239
LI
57392012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
5740
5741 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
5742 about SMTP before checking the From header.
5743
91027d08 5744 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
cc26d239
LI
5745 into own function for reuse by emacsbug.el.
5746
1be3ca5a
LL
57472012-02-10 Leo Liu <sdl.web@gmail.com>
5748
5749 * subr.el (condition-case-unless-debug): Rename from
5750 condition-case-no-debug. All callers changed.
5751 (with-demoted-errors): Fix caller.
5752
5753 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
5754 * nxml/rng-valid.el (rng-do-some-validation):
5755 * emacs-lisp/package.el (package-refresh-contents)
5756 (package-menu-execute):
5757 * desktop.el (desktop-create-buffer):
91027d08 5758 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
1be3ca5a 5759
b011fbfe
GM
57602012-02-10 Glenn Morris <rgm@gnu.org>
5761
b2096d72
GM
5762 * textmodes/bibtex.el:
5763 Add missing :version tags for new/changed defcustoms.
5764
b011fbfe
GM
5765 * files.el (remote-file-name-inhibit-cache): Doc fixes.
5766
4c7e65bf
LI
57672012-02-09 Lars Ingebrigtsen <larsi@rusty>
5768
5769 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
5770 (smtpmail-via-smtp): Use it, or fall back on the From address.
5771 (smtpmail-send-it): Ditto.
5772
f3934f6f
SM
57732012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
5774
5775 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
5776 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
5777 (byte-compile-tmp-var): New const.
5778 (byte-compile-defvar): Use it to minimize .elc size.
5779 Just use `defvar' rather than simulate it (bug#10761).
5780
a075a2c5
GM
57812012-02-09 Glenn Morris <rgm@gnu.org>
5782
cf3aa21b
GM
5783 * files.el (rename-uniquely): Doc fix. (Bug#3806)
5784
354998cd
GM
5785 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
5786 Add :version tags.
5787
dc9924b8
SM
5788 * progmodes/compile.el (compilation-error-screen-columns)
5789 (compilation-first-column, compilation-filter-start): Doc fixes.
83274125 5790
dab3703d
GM
5791 * vc/log-view.el (log-view-toggle-entry-display):
5792 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
5793
3f88cd72
GM
5794 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
5795 (report-emacs-bug-can-use-xdg-email):
5796 (report-emacs-bug-insert-to-mailer): Doc fixes.
5797 (report-emacs-bug): Message fix.
5798
d95b247d
GM
5799 * net/browse-url.el (browse-url-can-use-xdg-open)
5800 (browse-url-xdg-open): Doc fixes.
5801
a075a2c5
GM
5802 * electric.el (electric-indent-mode, electric-pair-mode)
5803 (electric-layout-rules, electric-layout-mode): Doc fixes.
5804 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
5805
ffb6157e
MR
58062012-02-08 Martin Rudalics <rudalics@gmx.at>
5807
5808 * server.el (server-unselect-display): Don't inadvertently kill
5809 the current buffer. (Bug#10729)
5810
e1ac4066
GM
58112012-02-08 Glenn Morris <rgm@gnu.org>
5812
34e8a2da
GM
5813 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
5814 (sql-list-table): Doc fixes.
5815
b4ac6e8c
GM
5816 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
5817 Comment out (does nothing).
5818
e1ac4066
GM
5819 * completion.el (dynamic-completion-mode):
5820 * dirtrack.el (dirtrack-debug-mode):
5821 * electric.el (electric-layout-mode):
5822 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
5823 * face-remap.el (text-scale-mode, buffer-face-mode):
5824 * iimage.el (iimage-mode):
5825 * image-mode.el (image-transform-mode):
5826 * minibuffer.el (completion-in-region-mode):
5827 * scroll-lock.el (scroll-lock-mode):
5828 * simple.el (next-error-follow-minor-mode):
5829 * tar-mode.el (tar-subfile-mode):
5830 * tooltip.el (tooltip-mode):
5831 * vcursor.el (vcursor-use-vcursor-map):
5832 * wid-browse.el (widget-minor-mode):
5833 * emulation/tpu-edt.el (tpu-edt-mode):
5834 * emulation/tpu-extras.el (tpu-cursor-free-mode):
5835 * international/iso-ascii.el (iso-ascii-mode):
5836 * language/thai-util.el (thai-word-mode):
5837 * mail/supercite.el (sc-minor-mode):
5838 * net/goto-addr.el (goto-address-mode):
5839 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
5840 * progmodes/cwarn.el (cwarn-mode):
5841 * progmodes/flymake.el (flymake-mode):
5842 * progmodes/glasses.el (glasses-mode):
5843 * progmodes/hideshow.el (hs-minor-mode):
5844 * progmodes/pascal.el (pascal-outline-mode):
5845 * textmodes/enriched.el (enriched-mode):
5846 * vc/smerge-mode.el (smerge-mode):
5847 Doc fixes (minor mode argument).
5848
5e0d957f
EZ
58492012-02-07 Eli Zaretskii <eliz@gnu.org>
5850
5851 * ls-lisp.el (ls-lisp-sanitize): New function.
5852 (ls-lisp-insert-directory): Use it to fix or remove any elements
5853 in file-alist with missing attributes. (Bug#4673)
5854
98d7371e
AM
58552012-02-07 Alan Mackenzie <acm@muc.de>
5856
5857 Fix spurious recognition of c-in-knr-argdecl.
5858
5859 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
5860 putative K&R region.
5861
667ced3a
AM
58622012-02-07 Alan Mackenzie <acm@muc.de>
5863
eb864a71
LM
5864 * progmodes/cc-engine.el (c-forward-objc-directive):
5865 Prevent looping in "#pragma mark @implementation".
667ced3a 5866
5b77774d
MA
58672012-02-07 Michael Albinus <michael.albinus@gmx.de>
5868
5869 * notifications.el (notifications-on-closed-signal): Make `reason'
5870 optional. (Bug#10744)
5871
af008560
GM
58722012-02-07 Glenn Morris <rgm@gnu.org>
5873
60d47423
GM
5874 * emacs-lisp/easy-mmode.el (define-minor-mode):
5875 Doc fixes for the macro and the mode it defines.
5876
dd605cc4
GM
5877 * image.el (imagemagick-types-inhibit): Doc fix.
5878
af008560
GM
5879 * cus-start.el (imagemagick-render-type): Add it.
5880
5cc59a37
LI
58812012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
5882
4d6769e1
JB
5883 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
5884 Set the default at load time, too, so that `font-lock-fontify-buffer'
5885 can be called without setting up the entire mode first. This fixes
5886 a bug in `mm-inline-text' with C MIME parts.
5cc59a37 5887
9a6dd747
CY
58882012-02-06 Chong Yidong <cyd@gnu.org>
5889
2d16b285
CY
5890 * simple.el (list-processes--refresh): Delete exited processes
5891 (Bug#8094).
5892
171e9b6e
CY
5893 * comint.el (comint-next-prompt): next-single-char-property-change
5894 and prev-single-char-property-change never return nil (Bug#8657).
5895
9a6dd747
CY
5896 * custom.el (defcustom): Doc fix (Bug#9711).
5897
aa4589a7
CY
58982012-02-05 Chong Yidong <cyd@gnu.org>
5899
5c2a252f
CY
5900 * cus-edit.el (custom-variable-reset-backup): Quote the value
5901 before storing it in the customized-value property (Bug#6712).
4aab9006 5902 (custom-display): Add a customization type tag.
983b9602 5903 (custom-buffer-create-internal): Improve tooltip message.
5c2a252f 5904
aa4589a7
CY
5905 * wid-edit.el (widget-field-value-get): New optional arg to
5906 suppress trailing whitespace truncation.
5907 (character): Use it (Bug#2689).
5908
1ff980ae
AS
59092012-02-05 Andreas Schwab <schwab@linux-m68k.org>
5910
5911 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
5912 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
5913
03988c98
CY
59142012-02-05 Chong Yidong <cyd@gnu.org>
5915
eeb6cc88
CY
5916 * cus-edit.el (custom-variable-value-create): For mismatched
5917 types, show the current value (Bug#7600).
5918
03988c98
CY
5919 * custom.el (defcustom): Doc fix.
5920
f8cdeef0
GM
59212012-02-05 Glenn Morris <rgm@gnu.org>
5922
5923 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
5924
0696d255
JB
59252012-02-05 Juanma Barranquero <lekktu@gmail.com>
5926
5927 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
5928 (pp-buffer): Use `ignore-errors', `looking-at-p'.
5929 (pp-last-sexp): Use `looking-at-p'.
5930
34c99998
GM
59312012-02-04 Glenn Morris <rgm@gnu.org>
5932
8f05da42
GM
5933 * files.el (revert-buffer):
5934 Doc fix (mention revert-buffer-in-progress-p).
5935
f160676e
GM
5936 * emacs-lisp/ert-x.el (ert-simulate-command):
5937 Check deferred-action-list (which is obsolete) is bound.
5938
c7291ad9
GM
5939 * subr.el (with-wrapper-hook): Doc fixes.
5940
34c99998
GM
5941 * simple.el (filter-buffer-substring-functions)
5942 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
5943
6283a7d3
LL
59442012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
5945
5946 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
5947 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
5948
e96e3013
LL
59492012-02-04 Leo Liu <sdl.web@gmail.com>
5950
5951 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
5952
8ded50f2
GM
59532012-02-04 Glenn Morris <rgm@gnu.org>
5954
82ff1d13
GM
5955 * image.el (image-extension-data): Add obsolete alias.
5956
987a0a16
GM
5957 * isearch.el (isearch-update): Doc fix.
5958
ea32ef46
GM
5959 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
5960
8ded50f2
GM
5961 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
5962
eea14f31
GM
59632012-02-03 Glenn Morris <rgm@gnu.org>
5964
5965 * image.el (image-animated-p): Doc fix. Use image-animated-types.
5966 (image-animate-timeout): Doc fix.
5967
5968 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
5969
12f381b7
GM
59702012-02-02 Glenn Morris <rgm@gnu.org>
5971
953cebf5
GM
5972 * server.el (server-auth-dir): Doc fix.
5973 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
5974
12f381b7
GM
5975 * subr.el (run-mode-hooks): Doc fix.
5976
953a8c3b
JL
59772012-02-02 Juri Linkov <juri@jurta.org>
5978
5979 * image-mode.el (image-toggle-display-image): Remove tautological
5980 `major-mode' from the `derived-mode-p' test.
5981
c5d3843c
KH
59822012-02-02 Kenichi Handa <handa@m17n.org>
5983
9f6e692e 5984 * composite.el (compose-region): Cancel previous change.
c5d3843c 5985
159462d4 59862012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
5987
5988 * composite.el (compose-region, compose-string): Signal error for
5989 a null string component (Bug#6988).
5990
9f562668
CY
59912012-02-01 Chong Yidong <cyd@gnu.org>
5992
e2cef717
CY
5993 * view.el (view-buffer-other-window, view-buffer-other-frame):
5994 Handle special modes like view-buffer (Bug#10650).
5995 (view-buffer): Simplify.
5996
9f562668
CY
5997 * frame.el (set-frame-font): Tweak meaning of third argument.
5998
9f6e692e
JB
5999 * dynamic-setting.el (font-setting-change-default-font):
6000 Use set-frame-font (Bug#9982).
9f562668 6001
781acb9f
GM
60022012-02-01 Glenn Morris <rgm@gnu.org>
6003
6035be52
GM
6004 * progmodes/compile.el (compilation-internal-error-properties):
6005 Respect compilation-first-column in the "*compilation*" buffer.
6006
781acb9f
GM
6007 * emacs-lisp/easy-mmode.el (define-minor-mode):
6008 Relax :variable's test for a named function.
6009
abbceb00
AM
60102012-01-31 Alan Mackenzie <acm@muc.de>
6011
6012 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
6013 off by one error.
6014
fce3fdeb
CY
60152012-01-31 Chong Yidong <cyd@gnu.org>
6016
6017 * frame.el (set-frame-font): New arg ALL-FRAMES.
6018
6019 * menu-bar.el (menu-set-font): Use set-frame-font.
6020
6021 * faces.el (face-spec-reset-face): Don't apply unspecified
6022 attribute values to the default face.
6023
47893581
JB
60242012-01-31 Juanma Barranquero <lekktu@gmail.com>
6025
6026 * progmodes/cwarn.el (cwarn): Remove dead link.
6027 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
6028 Remove * from defcustom docstrings.
6029 (turn-on-cwarn-mode): Make obsolete.
6030 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
6031 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
6032
e58e988a
GM
60332012-01-31 Glenn Morris <rgm@gnu.org>
6034
60dc2671 6035 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6c9b47ae 6036 Fix :variable handling of mode a symbol not equal to modefun.
60dc2671 6037 Allow named functions to be used as the cdr of :variable.
e58e988a 6038
7a3f511d
GM
60392012-01-30 Glenn Morris <rgm@gnu.org>
6040
6041 * emacs-lisp/authors.el (authors-fixed-entries):
6042 Remove reference to deleted file rnewspost.el.
6043
cb882333
JB
60442012-01-29 Juanma Barranquero <lekktu@gmail.com>
6045
6046 * window.el (window-with-parameter): Remove unused variable `windows'.
6047 (window--side-check): Remove unused variable `code'.
6048 (window--resize-siblings): Remove unused variable `first'.
6049 (adjust-window-trailing-edge): Remove unused variable `failed'.
6050 (window-deletable-p, window--delete): Remove unused variable `buffer'.
6051 Use `let', not `let*'.
6052 (balance-windows-2): Remove unused variable `found'.
6053 (window--state-put-2): Remove unused variable `splits'.
6054 (window-state-put): Remove unused variable `selected'.
6055 (same-window-p): Use `string-match-p'.
6056 (display-buffer-assq-regexp): Remove unused variable `value'.
6057 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
6058 Mark argument ALIST as ignored.
6059 (pop-to-buffer): Remove unused variable `old-window'.
6060
907201af
EZ
60612012-01-29 Eli Zaretskii <eliz@gnu.org>
6062
6063 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
6064 and .lzma compressed files.
6065
ea162670
CY
60662012-01-29 Chong Yidong <cyd@gnu.org>
6067
5b95ee8a
CY
6068 * frame.el (window-system-default-frame-alist): Doc fix.
6069
ea162670
CY
6070 * dynamic-setting.el (font-setting-change-default-font): Don't
6071 change the default face if SET-FONT argument is non-nil (Bug#9982).
6072
d6e6f4b1
SB
60732012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
6074
6075 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
6076
0f29fa41 60772012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6b25e4e2
SE
6078
6079 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
6080 breakpoints in files outside current directory (Bug#6098).
6081
db174434
CY
60822012-01-29 Chong Yidong <cyd@gnu.org>
6083
6b25e4e2
SE
6084 * progmodes/python.el: Require ansi-color at top-level.
6085
6df6ae42
JB
6086 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
6087 Define and use in Emacs Lisp mode (Bug#9360).
db174434
CY
6088 (lisp-mode-abbrev-table): Add doc.
6089 (lisp-mode-variables): Don't set local-abbrev-table.
6090 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
6091
e70ee681
RW
60922012-01-28 Roland Winkler <winkler@gnu.org>
6093
6094 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
6095
ace88aa2
RW
60962012-01-28 Roland Winkler <winkler@gnu.org>
6097
6098 * textmodes/bibtex.el (bibtex-entry-alist): New function.
6099 (bibtex-set-dialect): Use it. Either set global values of
6100 dialect-dependent variables or bind these variables buffer-locally
6101 (Bug#10254).
6102 (bibtex-mode): Call bibtex-set-dialect via
6103 hack-local-variables-hook.
eb864a71
LM
6104 (bibtex-dialect): Update docstring.
6105 Add safe-local-variable predicate.
ace88aa2
RW
6106 (bibtex-entry-alist, bibtex-field-alist): Initialize via
6107 bibtex-set-dialect.
6108 (bibtex-mode-map): Define menu for each dialect.
6109 (bibtex-entry): Fix docstring.
6110
93376c5b
CY
61112012-01-28 Chong Yidong <cyd@gnu.org>
6112
6113 * eshell/esh-arg.el (eshell-quote-argument): New function.
6114
6115 * eshell/esh-ext.el (eshell-invoke-batch-file):
6116 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
6117 first arg to eshell-parse-command (Bug#10523).
6118
4372494f
DA
61192012-01-28 Drew Adams <drew.adams@oracle.com>
6120
6121 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
6122 `default-directory' is non-nil.
6123
4d4ec1f8
EZ
61242012-01-28 Eli Zaretskii <eliz@gnu.org>
6125
6126 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
6127 line that displays system-configuration-options. (Bug#9924)
6128
7c188927
DA
61292012-01-28 Drew Adams <drew.adams@oracle.com>
6130
6131 * descr-text.el (describe-char): Show information about POS, in
6132 addition to information about the character at POS. Improve and
6133 update the doc string. Change "code point" to "code point in
6134 charset", to avoid confusion with the character's Unicode code
6135 point shown above that. (Bug#10129)
6136
e0da685a
EZ
61372012-01-28 Eli Zaretskii <eliz@gnu.org>
6138
6139 * descr-text.el (describe-char): Show the raw character, not only
6140 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
6141 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
6142 for the reasons.
6143
70550acf
PH
61442012-01-28 Phil Hagelberg <phil@hagelb.org>
6145
eb864a71
LM
6146 * emacs-lisp/package.el (package-install):
6147 Run package-refresh-contents if there is no archive yet (Bug#9798).
70550acf 6148
0ce8e868
CY
61492012-01-28 Chong Yidong <cyd@gnu.org>
6150
cb882333
JB
6151 * emacs-lisp/package.el (package-maybe-load-descriptor):
6152 New function, split from package-maybe-load-descriptor.
0ce8e868
CY
6153 (package-maybe-load-descriptor): Use it.
6154 (package-download-transaction): Fully load required packages
6155 inside the loop, so that `require' calls work (Bug#10593).
6156 (package-install): No need to call package-initialize now.
6157
2e7f3bea
CY
61582012-01-28 Chong Yidong <cyd@gnu.org>
6159
6e9bad14
CY
6160 * simple.el (deactivate-mark): Doc fix (Bug#8614).
6161
f823b8ca
CY
6162 * tooltip.el (tooltip-mode): Doc fix.
6163 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
6164
2680c309
CY
6165 * frame.el (set-cursor-color): Doc fix (Bug#352).
6166
d7a9e63b
CY
6167 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
6168 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
6169
2e7f3bea
CY
6170 * cus-edit.el (custom-buffer-create-internal): Fix search button
6171 action (Bug#10542).
2ae01800 6172 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
2e7f3bea 6173
fc4f7a23
EW
61742012-01-27 Eduard Wiebe <usenet@pusto.de>
6175
6176 * dired.el (dired-mark-files-regexp):
6177 Include any subdirectory components. (Bug#10445)
6178
7dd37071
ML
61792012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
6180
6181 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
6182 Handle [host]:port syntax. (Bug#10533)
6183
a268160b
AH
61842012-01-27 Alex Harsanyi <harsanyi@mac.com>
6185
6186 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
6187
e43273ef
GM
61882012-01-26 Glenn Morris <rgm@gnu.org>
6189
6190 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
6191 * term.el (term-raw-escape-map): Use Control-X-prefix.
6192 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
6193
1edf595d
MR
61942012-01-25 Martin Rudalics <rudalics@gmx.at>
6195
6196 * window.el (window-state-get, window--state-get-1): Don't deal
6197 with fixed-sizeness of windows. Simplify code.
6198
fa8eafef
JC
61992012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
6200
6df6ae42
JB
6201 * window.el (window--state-get-1, window--state-put-2):
6202 Don't save and restore the mark.
fa8eafef 6203
0b21c100
CY
62042012-01-25 Chong Yidong <cyd@gnu.org>
6205
6206 * custom.el (custom-variable-p): Doc fix.
6207
5ae1a6c8
GM
62082012-01-25 Glenn Morris <rgm@gnu.org>
6209
40047858
GM
6210 * dired.el (dired-goto-file): Handle some of the more common
6211 characters that `ls -b' escapes. (Bug#10596)
6212
5ddce96c
GM
6213 * progmodes/compile.el (compilation-next-error-function):
6214 Respect compilation-first-column in the "*compilation*" buffer.
6215 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
6216
5ae1a6c8
GM
6217 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
6218
b559f1a9
GM
62192012-01-24 Glenn Morris <rgm@gnu.org>
6220
6221 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
6222
6725d21a
JD
62232012-01-24 Julien Danjou <julien@danjou.info>
6224
6225 * color.el (color-rgb-to-hsl): Fix value computing.
6226 (color-hue-to-rgb): New function.
6227 (color-hsl-to-rgb): New function.
6228 (color-clamp, color-saturate-hsl, color-saturate-name)
6229 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
6230 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
6231
70df4bbe
GM
62322012-01-24 Glenn Morris <rgm@gnu.org>
6233
6234 * vc/vc-rcs.el (vc-rcs-create-tag):
6235 * vc/vc-sccs.el (vc-sccs-create-tag):
6236 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
6237
802a2ae2
ML
62382012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
6239
6240 * eshell/esh-util.el (eshell-read-hosts-file):
6241 Skip comment lines. (Bug#10549)
6242
d7128bb1
ML
6243 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
6244
d1a5c3b4
JB
62452012-01-23 Juanma Barranquero <lekktu@gmail.com>
6246
2724d9c7
JB
6247 * subr.el (display-delayed-warnings): Doc fix.
6248 (collapse-delayed-warnings): New function to collapse identical
6249 adjacent warnings.
6250 (delayed-warnings-hook): Add it.
d1a5c3b4 6251
a5509865
MA
62522012-01-22 Michael Albinus <michael.albinus@gmx.de>
6253
6254 * net/tramp.el (tramp-action-login): Set connection property "login-as".
6255
a5509865
MA
6256 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
6257 (tramp-default-user-alist): Don't add "pscp".
6258 (tramp-do-copy-or-rename-file-out-of-band): Use connection
6259 property "login-as", if set. (Bug#10530)
6260
cc6d5805
MA
62612012-01-21 Michael Albinus <michael.albinus@gmx.de>
6262
6263 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
6264 "plink1" and "psftp". (Bug#10530)
6265
62662012-01-21 Kenichi Handa <handa@m17n.org>
71784361
KH
6267
6268 * international/mule-cmds.el (prefer-coding-system): Show a
6269 warning message if the default value of file-name-coding-system
6270 was not changed.
6271
f0960428
JC
62722012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
6273
cb882333
JB
6274 * windmove.el (windmove-reference-loc):
6275 Fix windmove-reference-loc miscalculation.
f0960428 6276
dd6f2a63
JB
62772012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
6278
6279 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
6280 default unit.
6281
7b447e9b
GM
62822012-01-21 Glenn Morris <rgm@gnu.org>
6283
117a9ea1
GM
6284 * international/mule.el (auto-coding-alist): Add .tbz.
6285
7b447e9b
GM
6286 * files.el (local-enable-local-variables): Doc fix.
6287 (inhibit-local-variables-regexps): Rename from
6288 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
6289 Doc fix. Add some extensions from auto-coding-alist.
6290 (inhibit-local-variables-suffixes):
6291 Rename from inhibit-first-line-modes-suffixes. Doc fix.
6292 (inhibit-local-variables-p):
6293 New function, extracted from set-auto-mode-1.
6294 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
6295 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
6296 (hack-local-variables): Doc fix. Make the mode-only case
6297 respect enable-local-variables and friends.
6298 Respect inhibit-local-variables-regexps for file-locals, but
6299 not for directory-locals.
6300 (set-visited-file-name):
6301 Take account of inhibit-local-variables-regexps.
6302 Whether it applies may change as the file name is changed.
6303 * jka-cmpr-hook.el (jka-compr-install):
6304 * jka-compr.el (jka-compr-uninstall):
6305 Update for inhibit-first-line-modes-suffixes name change.
6306
dd6e3cdd
MR
63072012-01-20 Martin Rudalics <rudalics@gmx.at>
6308
6309 * help-macro.el (make-help-screen): Temporarily restore original
6310 binding for minor-mode-map-alist (Bug#10454).
6311
0d0deb38
JD
63122012-01-19 Julien Danjou <julien@danjou.info>
6313
6314 * color.el (color-name-to-rgb): Use the white color to find the max
6315 color component value and return correctly computed values.
6316 (color-name-to-rgb): Add missing float conversion for max value.
6317
34a02f46
MR
63182012-01-19 Martin Rudalics <rudalics@gmx.at>
6319
6320 * window.el (window--state-get-1, window-state-get): Do not use
eb864a71
LM
6321 special state value for window-persistent-parameters.
6322 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
34a02f46
MR
6323 (window--state-put-2): Reset all window parameters to nil before
6324 assigning values of persistent parameters.
6325
606c44c4
AM
63262012-01-18 Alan Mackenzie <acm@muc.de>
6327
6328 Eliminate sluggishness and hangs in fontification of "semicolon
6329 deserts".
6330
cb882333
JB
6331 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
6332 Change value 10000 -> 3000.
606c44c4
AM
6333 (c-state-safe-place): Reformulate so it doesn't stack up an
6334 infinite number of wrong entries in c-state-nonlit-pos-cache.
6335 (c-determine-limit-get-base, c-determine-limit): New functions to
6336 determine backward search limits disregarding literals.
6337 (c-find-decl-spots): Amend commenting.
6338 (c-cheap-inside-bracelist-p): New function which detects "={".
6339
6340 * progmodes/cc-fonts.el
6341 (c-make-font-lock-BO-decl-search-function): Give a limit to a
6342 backward search.
6343 (c-font-lock-declarations): Fix an occurrence of point being
6344 undefined. Check additionally for point being in a bracelist or
6345 near a macro invocation without a semicolon so as to avoid a
6346 fruitless time consuming search for a declarator. Give a more
6347 precise search limit for declarators using the new
6348 c-determine-limit.
6349
f3860cea
GM
63502012-01-18 Glenn Morris <rgm@gnu.org>
6351
6352 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
6353 (set-auto-mode): Doc fixes.
6354
1db03b16
GM
63552012-01-17 Glenn Morris <rgm@gnu.org>
6356
0e6038be
GM
6357 * isearch.el (search-nonincremental-instead): Fix doc typo.
6358
1db03b16
GM
6359 * dired.el (dired-insert-directory): Handle newlines in directory name.
6360 (dired-build-subdir-alist): Unescape newlines in directory name.
6361
4cb0aa75
MA
63622012-01-17 Michael Albinus <michael.albinus@gmx.de>
6363
6364 * net/tramp.el (tramp-local-end-of-line): New defcustom.
6365 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
6366 (tramp-action-terminal): Use it. (Bug#10530)
6367
1d00653d
SM
63682012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
6369
6370 * minibuffer.el (completion--replace): Strip properties (bug#10062).
6371
6a6ee00d
MR
63722012-01-16 Martin Rudalics <rudalics@gmx.at>
6373
6374 * window.el (window-state-ignored-parameters): Remove variable.
6375 (window--state-get-1): Rename argument MARKERS to IGNORE.
6376 Handle persistent window parameters. Make copy of clone-of
6377 parameter only if requested. (Bug#10348)
6378 (window--state-put-2): Install a window parameter only if it has
6379 a non-nil value or an existing parameter shall be overwritten.
6380
97912def
MA
63812012-01-15 Michael Albinus <michael.albinus@gmx.de>
6382
6383 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
6384
688070a5
EZ
63852012-01-14 Eli Zaretskii <eliz@gnu.org>
6386
6387 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
6388 don't pass the (nil) value of `upnode' to string-match.
6389
301afadc
CY
63902012-01-14 Chong Yidong <cyd@gnu.org>
6391
6392 * startup.el (command-line): Fix X resource class for cursorColor.
04877ddb 6393 Fix values recognized by the cursorBlink resource.
301afadc 6394
9e5788aa
PE
63952012-01-14 Paul Eggert <eggert@cs.ucla.edu>
6396
6397 * epg.el (epg--make-temp-file): Avoid permission race condition
6398 when running on old Emacs versions (bug#10403).
6399
3cdb7f5a
GM
64002012-01-14 Glenn Morris <rgm@gnu.org>
6401
6402 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
6403
8c82b1b4
AM
64042012-01-13 Alan Mackenzie <acm@muc.de>
6405
6406 Fix filling for when filladapt mode is enabled.
6407
6408 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
6409 c-mask-paragraph, pass in `fill-paragraph' rather than
6410 `fill-region-as-paragraph'. (This is a reversion of a previous
6411 change.)
eb864a71
LM
6412 * progmodes/cc-mode.el (c-basic-common-init):
6413 Make fill-paragraph-handle-comment buffer local and set it to nil.
8c82b1b4 6414
e517eda4
GM
64152012-01-13 Glenn Morris <rgm@gnu.org>
6416
1498536e
GM
6417 * dired.el (dired-switches-escape-p): New function.
6418 (dired-insert-directory): Use dired-switches-escape-p.
6419 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
6420
e517eda4
GM
6421 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
6422
328f984d
GM
64232012-01-12 Glenn Morris <rgm@gnu.org>
6424
6425 * mail/sendmail.el (mail-mode): Update paragraph-separate for
6426 changes in adaptive-fill-regexp. (Bug#10276)
6427
2cc769a8
AM
64282012-01-11 Alan Mackenzie <acm@muc.de>
6429
6430 Fix Emacs bug #10463 - put `widen's around the critical spots.
6431
1d00653d 6432 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
2cc769a8
AM
6433 widen around each invocation of c-state-pp-to-literal. Remove an
6434 unused let variable.
6435
e52c37fa
GM
64362012-01-11 Glenn Morris <rgm@gnu.org>
6437
6438 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
09044622 6439 Doc fix.
e52c37fa 6440
96f8741e
CY
64412012-01-10 Chong Yidong <cyd@gnu.org>
6442
1d00653d
SM
6443 * net/network-stream.el (network-stream-open-starttls):
6444 Avoid emitting a confusing error message when the server gives a bad
96f8741e
CY
6445 response to the capability command.
6446
b09a806e
GM
64472012-01-10 Glenn Morris <rgm@gnu.org>
6448
6449 * mail/unrmail.el (unrmail): Tweak previous change.
6450
7655cb66
CY
64512012-01-09 Chong Yidong <cyd@gnu.org>
6452
6453 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
6454
9d5a8f0b
AM
64552012-01-08 Alan Mackenzie <acm@muc.de>
6456
6457 Optimise font locking in long enum definitions.
6458
6459 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
6460 arm to a cond form to handle enums.
6461 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
6462 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
6463
9a0115ab 64642012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6bb72cbd
PE
6465
6466 * files.el (move-file-to-trash): Preserve default file modes on error.
a0562b3d 6467 (Bug#10401)
6bb72cbd 6468
f186bb95
LMI
64692012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
6470
29232a68
LMI
6471 * faces.el (set-face-attribute): Clarify the meaning of the nil
6472 frame (bug#10294).
6473
4e5d086d
LMI
6474 * subr.el (with-selected-frame): Mention that the selected frame
6475 is restored (bug#9980).
6476
8e66aebe
LMI
6477 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
6478 (bug#9759).
6479
cd394be1 6480 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
f186bb95
LMI
6481 (password-read): Don't autoload unused function.
6482
adf4e762
JB
64832012-01-07 Juanma Barranquero <lekktu@gmail.com>
6484
6485 * progmodes/which-func.el (which-func-mode): Turn into a
6486 non-interactive function and mark as obsolete (bug#10428).
6487
89bd9ccd
CY
64882012-01-06 Chong Yidong <cyd@gnu.org>
6489
6490 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
6491 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
6492 functions, along with 1 and -1.
6493
4afee9d5
EZ
64942012-01-06 Eli Zaretskii <eliz@gnu.org>
6495
6496 * time.el (display-time-load-average)
6497 (display-time-default-load-average): Doc fixes. See the thread
6498 starting at
6499 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
6500 for the details.
6501
536aea70
GM
65022012-01-06 Glenn Morris <rgm@gnu.org>
6503
665ae865
GM
6504 * mail/unrmail.el (unrmail): Give an explicit error if the input file
6505 has no messages. (Bug#10377)
6506
c869783d
GM
6507 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
6508 than Info-edit. (Bug#10385)
6509
2bb4227e
GM
6510 * time.el (display-time-load-average, display-time-next-load-average):
6511 Doc fixes.
6512
7d5944b9
GM
6513 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
6514 local setting of buffer-read-only to the input buffer. (Bug#10419)
6515
536aea70
GM
6516 * calendar/calendar.el (calendar-mode):
6517 Locally set scroll-margin to 0. (Bug#10379)
6518
7dccca16
UM
65192012-01-06 Ulrich Mueller <ulm@gentoo.org>
6520
6521 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
6522
afbb7930
GM
65232012-01-05 Glenn Morris <rgm@gnu.org>
6524
6525 * eshell/em-unix.el (diff-no-select): Autoload it.
6526 (eshell/diff): Use diff-no-select. (Bug#10420)
6527
04482335
CY
65282012-01-05 Chong Yidong <cyd@gnu.org>
6529
7baca3bc
CY
6530 * shell.el (shell-dynamic-complete-functions): Revert last change.
6531 (shell-command-completion-function): New function.
6532 (shell-completion-vars): Use it to implement
6533 shell-completion-execonly (Bug#10417).
6534
04482335
CY
6535 * custom.el (enable-theme): Don't set custom-safe-themes.
6536
1d00653d
SM
6537 * cus-theme.el (custom-theme-merge-theme):
6538 Ignore custom-enabled-themes and custom-safe-themes.
04482335 6539
bb5aa5d6
MM
65402012-01-05 Michael R. Mauger <mmaug@yahoo.com>
6541
6542 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
6543 first prompt in `sql-interacive-mode'.
6544 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
04482335 6545 keywords.
6df6ae42 6546 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
bb5aa5d6
MM
6547 (sql-product-interactive): Bug fix: Set `sql-buffer' in
6548 context of original buffer. Invoke `sql-login-hook'.
6549
a7183d7c
EZ
65502012-01-04 Eli Zaretskii <eliz@gnu.org>
6551
6552 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
6553 letters in cite-prefix.
6554
a1eacd1e
LMI
65552012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
6556
6557 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
6558
787cdb34
CY
65592012-01-03 Chong Yidong <cyd@gnu.org>
6560
1d00653d
SM
6561 * shell.el (shell-dynamic-complete-functions):
6562 Put pcomplete-completions-at-point, so as to try
787cdb34
CY
6563 comint-filename-completion first (Bug#10417).
6564
30710442
RS
65652012-01-02 Richard Stallman <rms@gnu.org>
6566
6567 * battery.el (battery-status-function):
6568 Detect when to use battery-yeeloong-sysfs.
6569 (battery-echo-area-format): Add string for Yeeloong.
6570 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
6571 (battery-yeeloong-sysfs): New function.
6572
f75bfc33
CY
65732012-01-02 Chong Yidong <cyd@gnu.org>
6574
6575 * dirtrack.el (dirtrack-list): Eliminate unused third element.
6576 (dirtrack): Merge code for handling relative filenames in prompt
6577 from shell-dir-cookie-watcher.
6578 (dirtrack-debug-message): New arg to avoid excess format calls.
6579
6580 * shell.el (shell-dir-cookie-re): Variable deleted.
6581 (shell-dir-cookie-watcher): Function deleted.
6582 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
6583 with dirtrack-mode.
6584
651e947e
EZ
65852012-01-01 Eli Zaretskii <eliz@gnu.org>
6586
1d00653d
SM
6587 * term/w32-win.el (dynamic-library-alist) <gnutls>:
6588 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
651e947e
EZ
6589 libgnutls-26.dll.
6590
94d4c7dc
AS
65912011-12-31 Andreas Schwab <schwab@linux-m68k.org>
6592
6593 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
6594
8d43f3cd
EZ
65952011-12-31 Eli Zaretskii <eliz@gnu.org>
6596
6597 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
6598 headers of non-MIME messages, when rmail-enable-mime is non-nil.
6599
98c8795a
MA
66002011-12-29 Michael Albinus <michael.albinus@gmx.de>
6601
6602 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
6603 also for alternative shells.
6604 (tramp-open-connection-setup-interactive-shell): Check, whether
6605 the shell is a busybox.
6606 (tramp-send-command): Don't suppress multiple prompts for
6607 busyboxes, it hurts.
6608
51281b32
CY
66092011-12-28 Chong Yidong <cyd@gnu.org>
6610
6611 * progmodes/gdb-mi.el (gdb-get-source-file-list)
6612 (gdb-get-source-file): Move mode line update to
6613 gdb-get-source-file (Bug#10087).
6614
2170cb53
CY
66152011-12-25 Chong Yidong <cyd@gnu.org>
6616
6617 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
6618 gud-gdb-marker-filter without taking it as an argument.
6619 (gud-gdb-run-command-fetch-lines): Caller changed.
6620 (gud-gdb-completion-function): New variable.
6621 (gud-gdb-completion-at-point): Use it.
6622 (gud-gdb-completions-1): Split from gud-gdb-completions.
6623
6624 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
6625 function as separate arguments.
6626 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
6627 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
6628 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
6629 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
6630 (gdb-stopped, def-gdb-auto-update-trigger)
6631 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
b81d40f0
JB
6632 (gdb-get-changed-registers, gdb-get-main-selected-frame):
6633 Callers changed.
2170cb53
CY
6634 (gud-gdbmi-completions): New function.
6635 (gdb): Use it for generating the completion table.
6636
be8b11bb
AM
66372011-12-24 Alan Mackenzie <acm@muc.de>
6638
6639 Introduce a mechanism to widen the region used in context font
1d00653d 6640 locking. Use this to protect declarations from losing their contexts.
be8b11bb 6641
1d00653d
SM
6642 * progmodes/cc-langs.el (c-before-font-lock-functions):
6643 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
b81d40f0 6644 (c-before-context-fontification-functions): New defvar, a list of
be8b11bb
AM
6645 functions to be run just before context (etc.) font locking.
6646
6647 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
b81d40f0 6648 New, functionality extracted from
be8b11bb 6649 c-neutralize-syntax-in-and-mark-CPP.
b81d40f0 6650 (c-in-after-change-fontification): New variable.
be8b11bb
AM
6651 (c-after-change): Set c-in-after-change-fontification.
6652 (c-set-fl-decl-start): Rejig its interface, so it can be called
6653 from both after-change and context fontifying.
b81d40f0
JB
6654 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
6655 New functions.
6656 (c-standard-font-lock-fontify-region-function): New variable.
6657 (c-font-lock-fontify-region): New function.
be8b11bb 6658
341cf6ac
JL
66592011-12-24 Juri Linkov <juri@jurta.org>
6660
6661 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
6662 (Bug#10348)
6663
bffcee0a
MA
66642011-12-23 Michael Albinus <michael.albinus@gmx.de>
6665
6666 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
6667 existence of source file. (Bug#10325)
6668
cb5e207c
AM
66692011-12-23 Alan Mackenzie <acm@muc.de>
6670
6671 Fix unstable fontification inside templates.
6672
b81d40f0
JB
6673 * progmodes/cc-langs.el (c-before-font-lock-functions):
6674 Newly created from the singular version. The (c c++ objc) entry now
cb5e207c
AM
6675 additionally has c-set-fl-decl-start. The other languages (apart
6676 from AWK) have that as a single entry.
6677
b81d40f0
JB
6678 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
6679 The functionality for "local" declarations has been extracted to
cb5e207c
AM
6680 c-set-fl-decl-start.
6681
b81d40f0
JB
6682 * progmodes/cc-mode.el (c-common-init, c-after-change):
6683 Changes due to pluralisation of c-before-font-lock-functions.
cb5e207c
AM
6684 (c-set-fl-decl-start): New function, extracted from
6685 c-font-lock-enclosing-decls and enhanced.
6686
60ff536c
JB
66872011-12-23 Juanma Barranquero <lekktu@gmail.com>
6688
6689 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
6690
1c4757d6
JL
66912011-12-22 Juri Linkov <juri@jurta.org>
6692
6693 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
6694
d031f2c7
CY
66952011-12-22 Chong Yidong <cyd@gnu.org>
6696
6697 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
6698
bace743a
DA
66992011-12-21 Drew Adams <drew.adams@oracle.com>
6700
6701 * files.el (file-remote-p): Fix docstring. (Bug#10319)
6702
728a1f2b
JC
67032011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
6704
6705 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
6706
0d373f73
TZ
67072011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
6708
fec0aaa4
TZ
6709 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
6710 highlighting and support. Fix up comments for capitalization.
6711 (cfengine-mode-debug): New var.
6712 (cfengine3-mode): Change the modeline indicator to "CFE3".
6713 (cfengine3-font-lock-keywords): Improve defun highlighting.
6714 (cfengine2-actions): Rename from `cfengine-actions'.
6715 (cfengine2-font-lock-keywords): Rename from
6716 `cfengine-font-lock-keywords'.
6717 (cfengine2-imenu-expression): Rename from
6718 `cfengine-imenu-expression'.
6719 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
6720 (cfengine2-beginning-of-defun): Rename from
6721 `cfengine-beginning-of-defun'.
6722 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
6723 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
6724 (cfengine2-mode): Rename from `cfengine-mode'. Change the
6725 modeline indicator to "CFE2".
6726 (cfengine-mode): Defalias to `cfengine-auto-mode'.
6727 (cfengine-mode-abbrevs): Mark obsolete.
0d373f73 6728
bc86f573
CY
67292011-12-21 Chong Yidong <cyd@gnu.org>
6730
6731 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
6732 filename argument.
6733
d45ba96b
MR
67342011-12-20 Martin Rudalics <rudalics@gmx.at>
6735
6736 * window.el (window-normalize-buffer-to-display): Remove.
6737 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
6738
a6198c90
CY
67392011-12-19 Chong Yidong <cyd@gnu.org>
6740
6741 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
6742 Don't signal an error in a predicate function; return non-nil.
6743 (vc-dir-mark-file): Move the error here.
6744 (vc-dir-mark-unmark): If acting on the region, keep going if one
6745 of the entries cannot be marked/unmarked.
6746 (vc-dir-mark-all-files): If current entry is a directory, mark
6747 only child files, as documented.
6748
34c5fb55
VB
67492011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
6750
6751 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
6752 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
6753 addition.
6754
c803b2b7
JD
67552011-12-18 Jan Djärv <jan.h.d@swipnet.se>
6756
6757 * term/ns-win.el (ns-get-selection-internal)
6758 (ns-store-selection-internal): Declare.
1154d12e
JB
6759 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
6760 Declare as obsolete.
6761 (ns-get-pasteboard, ns-paste-secondary):
6762 Use ns-get-selection-internal.
6763 (ns-set-pasteboard, ns-copy-including-secondary):
6764 Use ns-store-selection-internal.
c803b2b7 6765
9cff91f8 67662011-12-17 Chong Yidong <cyd@gnu.org>
99a289d9
CY
6767
6768 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9cff91f8 6769 (vc-deduce-fileset): Doc fix.
99a289d9 6770
f16c898a
AS
67712011-12-16 Andreas Schwab <schwab@linux-m68k.org>
6772
6773 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
6774
763237c4
SS
67752011-12-13 Sam Steingold <sds@gnu.org>
6776
6777 * man.el (Man-getpage-in-background): When running under a
6778 window-system, ignore $MANWIDTH and $COLUMNS.
6779
5fc1c122
KH
67802011-12-15 Kenichi Handa <handa@m17n.org>
6781
6782 * language/ethio-util.el: Change coding tag to utf-8-emacs.
6783 (setup-ethiopic-environment-internal): Comment out key-binding for
6784 ethio-toggle-punctuation.
6785
13d49cbb
AM
67862011-12-13 Alan Mackenzie <acm@muc.de>
6787
898169a2
AM
6788 Add the switch statement to AWK Mode.
6789
7a71b18d 6790 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
898169a2
AM
6791 "default" to the keywords regexp.
6792
7a71b18d 6793 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
898169a2 6794 expression as the rest.
1d00653d
SM
6795 (c-nonlabel-token-key): Allow string literals for AWK.
6796 Refactor for the other modes.
898169a2 6797
13d49cbb 6798 Large brace-block initialisation makes CC Mode slow: Fix.
1d00653d 6799 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
13d49cbb
AM
6800 routines. Limit backward searching in c-font-lock-enclosing.decl.
6801
6802 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
6803 pp-state and literal type in addition to the limits.
1d00653d 6804 (c-state-safe-place): New defun, extracted from c-state-literal-at.
13d49cbb 6805 (c-state-literal-at): Use the above new defun.
1d00653d
SM
6806 (c-slow-in-literal, c-fast-in-literal): Remove.
6807 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
13d49cbb
AM
6808
6809 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
6810 being in a literal. Add a limit for backward searching.
6811
6812 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
6813 c-slow-in-literal.
6814
15e0efc7
SM
68152011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
6816
6817 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
6818
454592a6
MR
68192011-12-13 Martin Rudalics <rudalics@gmx.at>
6820
6821 * window.el (delete-other-windows): Use correct frame in call to
6822 window-with-parameter.
6823
87393f26
DP
68242011-12-12 Daniel Pfeiffer <occitan@t-online.de>
6825
6826 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
6827 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
6828 (makefile-gmake-statements, makefile-makepp-statements):
6829 Use it and add new makepp keywords.
6830 (makefile-makepp-font-lock-keywords): Add new patterns.
6831 (makefile-match-function-end): Match new [...] and [[...]].
6832
11636b22
JB
68332011-12-11 Juanma Barranquero <lekktu@gmail.com>
6834
6835 * ses.el (ses-call-printer-return, ses-cell-property-get)
6836 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
6837 (ses-create-cell-variable, ses-reset-header-string)
6838 (ses-cell-set-formula, ses-repair-cell-reference-all)
6839 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
6840 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
6841 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
6842 (ses-aset-with-undo, ses-load, ses-truncate-cell)
6843 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
6844 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
6845 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
6846 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
6847 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
6848 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
6849 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
6850 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
6851
cf018193
VB
68522011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
6853
6854 * ses.el: The overall change is to add cell renaming, that is
6855 setting fancy names for cell symbols other than name matching
6856 "\\`[A-Z]+[0-9]+\\'" regexp .
6857 (ses-create-cell-variable): New defun.
6858 (ses-relocate-formula): Relocate formulas only for cells the
6859 symbols of which are not renamed, i.e. symbols whose names do not
6860 match regexp "\\`[A-Z]+[0-9]+\\'".
6861 (ses-relocate-all): Relocate values only for cells the symbols of
6862 which are not renamed.
6863 (ses-load): Create cells variables as the (ses-cell ...) are read,
6864 in order to check row col consistency with cell symbol name only
6865 for cells that are not renamed.
6866 (ses-replace-name-in-formula): New defun.
6867 (ses-rename-cell): New defun.
6868
ee957461
CY
68692011-12-11 Chong Yidong <cyd@gnu.org>
6870
6871 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
6872 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
6873
9a9e9ef0
MR
68742011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
6875
6876 * window.el (other-window): Fix docstring.
6877
92a8eba5
EZ
68782011-12-10 Eli Zaretskii <eliz@gnu.org>
6879
6880 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
1d00653d
SM
6881 `from' or `to' address before taking its substring.
6882 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
92a8eba5
EZ
6883 encoded name is chopped in the middle of the encoded string, and
6884 thus displayed encoded.
6885
e152e577
JB
68862011-12-10 Juanma Barranquero <lekktu@gmail.com>
6887
6888 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
6889
e5d84bfe
EZ
68902011-12-10 Eli Zaretskii <eliz@gnu.org>
6891
6892 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
6893 to use texinfo-update-node and commands that call it if the
6894 Texinfo file uses @node lines without next/prev/up pointers.
b8830d28 6895 Correct outdated description about texinfo-master-menu.
e5d84bfe
EZ
6896 (texinfo-all-menus-update, texinfo-master-menu)
6897 (texinfo-update-node, texinfo-every-node-update)
6898 (texinfo-multiple-files-update): Doc fix. Warn against updating
6899 all the @node lines.
6900 (texinfo-master-menu): Only call texinfo-update-node if the prefix
b8830d28
EZ
6901 argument is numeric. Explain better in the doc string what the
6902 function really does.
6903 (texinfo-insert-master-menu-list): Improve the error message
6904 displayed if there's no menu in the Top node.
6905 (Bug#2975) See also this thread:
e5d84bfe
EZ
6906 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
6907
1d84e9bb
MG
69082011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
6909
6910 * speedbar.el (speedbar-supported-extension-expressions):
6911 Add .adb and .ads, commonly used for Ada source code (bug#10256).
6912
382c953b
JB
69132011-12-09 Juanma Barranquero <lekktu@gmail.com>
6914
6915 * printing.el (pr-mode-alist):
6916 * simple.el (filter-buffer-substring-functions)
6917 (completion-list-insert-choice-function):
6918 * window.el (window-with-parameter, window-atom-root)
6919 (window-sides-slots, window-size-fixed, window-min-delta)
6920 (window-max-delta, window--resize-mini-window)
6921 (window--resize-child-windows-normal, window-tree)
6922 (delete-other-windows, quit-window, split-window)
6923 (display-buffer-record-window, special-display-buffer-names)
6924 (special-display-regexps, special-display-popup-frame)
6925 (same-window-p, split-window-sensibly)
6926 (display-buffer-overriding-action, display-buffer-alist)
6927 (display-buffer-base-action, display-buffer, switch-to-buffer)
6928 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
6929 (fit-window-to-buffer, recenter-positions)
6930 (mouse-autoselect-window-state, mouse-autoselect-window-select):
6931 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
6932 and remove unneeded backslashes in docstrings.
6933
39c9faef
SM
69342011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6935
98449af8
SM
6936 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
6937
39c9faef
SM
6938 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
6939 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
6940 end in ".mk".
6941 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
6942 when reading the makefile (bug#10116).
6943
86ed9fdc
SM
69442011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6945
6946 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
6947 (bug#10116).
6948
5580f89d
GM
69492011-12-06 Glenn Morris <rgm@gnu.org>
6950
6951 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
6952
28d3917c
CY
69532011-12-06 Chong Yidong <cyd@gnu.org>
6954
6955 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
6956
a98edce9
JB
69572011-12-06 Juanma Barranquero <lekktu@gmail.com>
6958
6959 * textmodes/table.el (table-shorten-cell): Fix typo.
6960
e65adfac
CG
69612011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
6962
6963 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
6964
71cc0b74
EZ
69652011-12-05 Eli Zaretskii <eliz@gnu.org>
6966
6967 * descr-text.el (describe-char): Fix display of strong
6968 right-to-left characters and directional embeddings and overrides.
6969
6970 * simple.el (what-cursor-position): Fix display of codepoints of
6971 strong right-to-left characters.
6972
315bc30d
CY
69732011-12-05 Chong Yidong <cyd@gnu.org>
6974
6975 * faces.el (read-color): Doc fix.
6976
58a70b94
GM
69772011-12-05 Glenn Morris <rgm@gnu.org>
6978
6979 * align.el (align--set-marker): Add doc-string.
6980 Don't try to move something that is not a marker. (Bug#10216)
6981
5158face
GM
69822011-12-04 Glenn Morris <rgm@gnu.org>
6983
6984 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
6985 overly zealous deletion of trailing whitespace.
6986
520fca41
JB
69872011-12-04 Juanma Barranquero <lekktu@gmail.com>
6988
6989 * server.el (server-delete-client): On Windows, do not try to delete
6990 the only terminal.
6991 (server-process-filter): On Windows, treat requests for a tty frame as
6992 if they were for a GUI frame if the running server is in GUI mode.
6993
5e605a2e
GM
69942011-12-03 Glenn Morris <rgm@gnu.org>
6995
6996 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
6997
5c3fe83f
SM
69982011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
6999
6f5e57e7
SM
7000 * electric.el: Streamline electric-indent's hook.
7001 (electric-indent-chars): Revert to simple list.
7002 (electric-indent-functions): New var.
7003 (electric-indent-post-self-insert-function): Use it.
7004
5c3fe83f
SM
7005 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
7006 there's no inferior buffer (bug#10196).
7007 (prolog-consult-compile): Don't use toggle-read-only.
7008
6bdac736
MA
70092011-12-02 Michael Albinus <michael.albinus@gmx.de>
7010
7011 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
7012 interrupt. (Bug#10187)
7013
6131ba7f
SM
70142011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
7015
99c79fee
SM
7016 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
7017 (bug#9160).
7018
6131ba7f
SM
7019 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
7020 (bug#10191).
7021
cb0a02ea
JL
70222011-12-02 Juri Linkov <juri@jurta.org>
7023
7024 * info.el (Info-search): Display "end of manual" when Isearch
7025 reaches the end of single-file Info manual. (Bug#9918)
7026
66e0570c
EZ
70272011-12-02 Eli Zaretskii <eliz@gnu.org>
7028
7029 * isearch.el (isearch-message-prefix): Run the input method part
7030 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
7031
02b16839
JL
70322011-12-02 Juri Linkov <juri@jurta.org>
7033
7034 * isearch.el (isearch-occur): Use `word-search-regexp' for
7035 `isearch-word'.
7036 (isearch-search-and-update): Add condition for `isearch-word' and
7037 call `word-search-regexp'. (Bug#10145)
7038
0b950688
GM
70392011-12-01 Glenn Morris <rgm@gnu.org>
7040
7041 * eshell/em-hist.el (eshell-hist-initialize):
7042 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 7043 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 7044
9505c3c7
SM
70452011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
7046
7047 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
7048
1bbe96b2 70492011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 7050
a1beca85
SM
7051 * progmodes/verilog-mode.el (verilog-pretty-expr):
7052 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
7053 verilog, such as += *= and the like.
7054 (verilog-assignment-operator-re): Regular expression to find the
7055 assigment operator in a verilog assignment.
7056 (verilog-assignment-operation-re): Regular expression to find an
7057 assignment statement for pretty-expr.
7058 (verilog-in-attribute-p): Query returns true if point is in an
7059 attribute context; used to skip these for expression line up from
7060 pretty-expr.
7061 (verilog-in-parameter-p): Query returns true if point is in an
7062 parameter definition context; used to skip these for expression
7063 line up from pretty-expr.
7064 (verilog-in-parenthesis-p): Query returns true if point is in a
7065 parenthetical expression, specifically ( ) but not [ ] or { };
7066 used by pretty-expr.
7067 (verilog-just-one-space): If there is no space, don't add one.
7068 (verilog-get-lineup-indent-2): Specifically skip just attribute
7069 contexts for expression lineup, rather than skipping all
7070 parenthetical expressions.
7071 (verilog-calculate-indent): Fix comment, and fix indent.
7072 (verilog-do-indent): Indent declarations in lists (suggested by
7073 Joachim Lechner).
7074 (verilog-mode-abbrev-table): Populate abbrev mode with the various
7075 skeleton items.
7076 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
7077 by Alain Mellan).
7078
1bbe96b2 70792011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
7080
7081 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
7082 parameters with embedded comments. Reported by Ray Stevens.
7083 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
7084 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
7085 Reported by Tim Holt.
7086 (verilog-auto): Fix AUTOing a upper module then AUTOing module
7087 instantiated by upper module causing wrong expansion until AUTOed a
7088 second time. Reported by K C Buckenmaier.
7089 (verilog-diff-auto): Fix showing .* as a difference when
7090 `verilog-auto-star-save' off. Reported by Dan Dever.
7091 (verilog-auto-reset, verilog-read-always-signals)
7092 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
7093 temporary signals in reset list if
7094 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
7095 style to each signal's assignment type, bug381.
7096 Reported by Thomas Esposito.
6288f0ca
WS
7097 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
7098 (verilog-uvm-statement-re): Support UVM indentation and
7099 highlighting, with old OVM keywords only.
a1beca85 7100 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
1d00653d
SM
7101 Support AUTOTIEOFF creating non-wire data types.
7102 Suggested by Jonathan Greenlaw.
6288f0ca
WS
7103 (verilog-auto-insert-lisp, verilog-delete-to-paren)
7104 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
7105 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
7106 (verilog-read-sub-decls, verilog-read-sub-decls-line):
7107 Fix mismatching parenthesis inside commented out code when deleting
382c953b 7108 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6288f0ca
WS
7109 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
7110 non-numeric vector width. Reported by Alex Reed.
7111 (verilog-auto-ascii-enum): Add "onehot" option to work around not
382c953b 7112 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
7113 (verilog-auto-delete-trailing-whitespace):
7114 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
7115 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
7116 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
7117 Fix verilog-scan-cache corruption when running user AUTO expansion
7118 hooks that call indentation routines.
7119 (verilog-simplify-range-expression): Fix typo ignoring lower case
7120 identifiers.
7121 (verilog-delete-auto): Fix delete-autos to also remove user created
7122 automatics, as long as they start with AUTO.
7123 (verilog-batch-diff-auto, verilog-diff-auto)
7124 (verilog-diff-function): Add `verilog-diff-auto' and bind to
7125 "C-c?" to report differences in AUTO expansion, ignoring spaces.
7126 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
7127 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
7128 (verilog-re-search-forward-quick, verilog-syntax-ppss):
7129 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
7130 is disabled and its cache will get corrupt, causing AUTOS not to
7131 expand. Instead use only -quick functions.
7132 (verilog-scan-region): Fix scanning over escaped quotes.
7133 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
7134 (verilog-re-search-backward-quick)
7135 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
7136 related functions now ignore strings, to fix misparsing of strings
7137 with magic comments embedded in them.
a1beca85
SM
7138 (verilog-read-auto-template):
7139 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
7140 Reported by Brad Dobbie.
7141 (verilog-read-auto-template):
7142 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 7143 Reported by Brad Dobbie.
6288f0ca
WS
7144 (verilog-auto-inst, verilog-auto-inst-param)
7145 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
7146 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
7147 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
7148 debugging templates without merge conflicts, bug357.
7149 Reported by Brad Dobbie.
7150 (verilog-read-auto-template):
7151 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
7152 Reported by Brad Dobbie.
7153 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
7154 abbrevs so user won't be asked to save.
7155 (verilog-read-auto-lisp-present): Fix to start at beginning of
7156 buffer in case called outside of verilog-auto.
7157 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
7158 to "X-2". Reported by Matthew Myers.
7159 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
7160 all inputs from module templates. Reported by Leith Johnson.
7161 (verilog-module-inside-filename-p): Fix locating programs as with
7162 modules.
7163 (verilog-auto-inst-port): Fix vl-width expressions when using
7164 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
7165 (verilog-decls-get-regs, verilog-decls-get-signals,
7166 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
7167 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
7168 verilog-read-decls): Combine reg and wire structures into one var
7169 structure to represent SystemVerilog concepts.
7170 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
7171 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
7172 (verilog-auto-wire-type, verilog-insert-definition):
7173 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
7174 SystemVerilog "logic" keyword instead of "wire"/"reg".
7175 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
7176 to declares outputs that also have assignments (presumably in an
a1beca85
SM
7177 ifdef or generate if so there's not a driver conflict).
7178 Reported by Matthew Myers.
7179 (verilog-auto-declare-nettype, verilog-insert-definition):
7180 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
7181 `default_nettype none. Reported by Julian Gorfajn.
7182 (verilog-read-always-signals-recurse, verilog-read-decls)
7183 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
7184 malformed end statement, bug325. Reported by Joshua Wise and
7185 Andrew Drake.
7186 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
7187 (verilog-inst-comment-re): Fix not deleting Interfaced comment
1d00653d
SM
7188 when expanding .* in interfaces, bug320.
7189 Reported by Pierre-David Pfister.
6288f0ca 7190 (verilog-read-module-name): Fix import statements between module
1d00653d
SM
7191 name and open parenthesis, bug317.
7192 Reported by Pierre-David Pfister.
6288f0ca
WS
7193 (verilog-simplify-range-expression): Fix simplification of
7194 multiplications inside AUTOWIRE connections, bug303.
7195 (verilog-auto-inst-port): Support parameter expansion in
7196 multidimensional arrays.
7197 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
7198 after "assert property". Reported by Julian Gorfajn.
7199 (verilog-simplify-range-expression): Fix "couldn't merge" errors
7200 with multiplication, bug303.
7201 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
7202 Reported by Jan Frode Lonnum.
7203
1bbe96b2
GM
72042011-11-30 Juanma Barranquero <lekktu@gmail.com>
7205
7206 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
7207 (hfy-shell-file-name, hfy-shell):
7208 * international/fontset.el (x-decompose-font-name): Fix typos.
7209
72102011-11-29 Ken Brown <kbrown@cornell.edu>
7211
7212 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
7213 (gdb-version): Remove defvar.
7214 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
7215 (gdb-gud-context-command, gdb-non-stop-handler)
7216 (gdb-current-context-command, gdb-stopped): Use it.
7217 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
7218 (gdb-non-stop-handler): Don't enable pretty-printing here.
7219 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
7220 non-stop mode. Use the following.
7221 (gdb-check-target-async): New defun.
7222 (gud-watch, gdb-stopped): Fix whitespace.
7223 (gdb-get-source-file): Don't try to display the source file if
7224 `gdb-main-file' is nil.
7225
72262011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
7227
7228 * align.el: Try to generate fewer markers (bug#10047).
7229 (align--set-marker): New macro.
7230 (align-region): Use it.
7231
c935221f
SM
72322011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
7233
7234 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
7235
e70b5064
CY
72362011-11-29 Chong Yidong <cyd@gnu.org>
7237
7238 * indent.el (indent-for-tab-command, indent-according-to-mode):
7239 Doc fix.
7240 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
7241
f3af92b7
MA
72422011-11-29 Michael Albinus <michael.albinus@gmx.de>
7243
7244 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
7245 aware of remote file names. (Bug#10124)
7246
ed472be9
CY
72472011-11-29 Chong Yidong <cyd@gnu.org>
7248
7249 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
7250
24510c22
SM
72512011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
7252
7253 * files.el (find-file): Don't use force-same-window (bug#10144).
7254 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
7255 use pop-to-buffer if the selected window can't be used.
7256 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
7257
c60c3703
EZ
72582011-11-28 Eli Zaretskii <eliz@gnu.org>
7259
7260 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
7261 special-mode-map.
7262
e95def75
CY
72632011-11-28 Chong Yidong <cyd@gnu.org>
7264
7265 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
7266
c3f1c606
NR
72672011-11-27 Nick Roberts <nickrob@snap.net.nz>
7268
7269 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
7270 gdb-get-source-file-list on gdb-create-source-file-list.
7271
00db469c
EZ
72722011-11-26 Eli Zaretskii <eliz@gnu.org>
7273
7274 * whitespace.el (whitespace-newline): Use a different foreground
7275 color for 16-color light-background displays.
7276
4ad3bc2a
CY
72772011-11-24 Chong Yidong <cyd@gnu.org>
7278
7279 * window.el (display-buffer--special-action): Doc fix.
7280
e9fce1ac
JB
72812011-11-25 Juanma Barranquero <lekktu@gmail.com>
7282
7283 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
7284 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
7285 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
7286 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
7287 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
7288 (avl-tree-stack-first):
7289 * emacs-lisp/cconv.el (cconv--analyse-use):
7290 * net/gnutls.el (gnutls-negotiate): Fix typos.
7291
cb825e5d
GM
72922011-11-24 Glenn Morris <rgm@gnu.org>
7293
3adbe224
GM
7294 * lpr.el (lpr-windows-system, lpr-lp-system):
7295 * mail/binhex.el (binhex-begin-line):
7296 * progmodes/grep.el (grep-history, grep-find-history):
7297 * textmodes/flyspell.el:
7298 * vc/pcvs-defs.el (cvs-global-menu):
7299 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
7300 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
7301 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
7302
321decc8
GM
7303 * net/tls.el: Fix case of "GnuTLS".
7304
420b63ad
GM
7305 * paths.el (rmail-file-name): Format doc-string for make-docfile.
7306
cb825e5d
GM
7307 * version.el (emacs-build-system): Give it a doc-string.
7308
a0649f08
JL
73092011-11-24 Juri Linkov <juri@jurta.org>
7310
7311 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
7312
c0bc0fd4
GM
73132011-11-24 Glenn Morris <rgm@gnu.org>
7314
7315 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
7316 if called on a non-mime message just toggle the headers. (Bug#8006)
7317
20db1522
JB
73182011-11-24 Juanma Barranquero <lekktu@gmail.com>
7319
7320 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
7321 (allout-lead-with-comment-string, allout-structure-deleted-hook)
7322 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
7323 (allout-rebullet-heading, allout-open-sibtopic)
7324 (allout-toggle-current-subtree-encryption)
7325 (allout-toggle-subtree-encryption, allout-encrypt-string)
7326 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
7327 (allout-distinctive-bullets-string, allout-auto-activation):
7328 * window.el (window-normalize-buffer-to-display):
7329 * progmodes/verilog-mode.el (verilog-batch-indent):
7330 * textmodes/bibtex.el (bibtex-field-braces-opt)
7331 (bibtex-field-strings-opt):
7332 * vc/cvs-status.el (cvs-tree-merge):
7333 Fix typos.
7334
7262a87c
MA
73352011-11-23 Michael Albinus <michael.albinus@gmx.de>
7336
7337 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
7338 `non-essential' to t, in order to avoid remote connections.
7339
283430a1
EZ
73402011-11-23 Eli Zaretskii <eliz@gnu.org>
7341
a1beca85
SM
7342 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7343 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
7344 case-insensitively.
7345
d2992a38
ML
73462011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7347
7348 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
7349
50419064
GM
73502011-11-23 Glenn Morris <rgm@gnu.org>
7351
da94eca1
GM
7352 * paths.el (rmail-file-name): Reformat the doc-string so that it
7353 is picked up.
7354
9aac4de2
GM
7355 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
7356 (rmail-auto-file): Ignore case in the "special" field names,
7357 as mail-fetch-field does for all others.
7358
8038d2d2
GM
7359 * mail/rmail.el (rmail-forward):
7360 * mail/rmailkwd.el (rmail-set-label):
7361 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
7362 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
7363
f3fe222a
GM
7364 * mail/rmail.el (rmail-current-message): Doc fix.
7365
50419064
GM
7366 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
7367
28109f49
SM
73682011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
7369
7370 * server.el (server-eval-and-print): Allow C-g (bug#6585).
7371
394c65f1
GM
73722011-11-22 Glenn Morris <rgm@gnu.org>
7373
7374 * mail/rmailmm.el (test-rmail-mime-handler)
7375 (test-rmail-mime-bulk-handler)
7376 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
7377
f2a0aa3a
JL
73782011-11-21 Juri Linkov <juri@jurta.org>
7379
1154d12e
JB
7380 * calc/calc.el (calc-read-key-sequence):
7381 Let-bind `input-method-function' to nil. (Bug#10018)
f2a0aa3a 7382
9c34a344
LMI
73832011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
7384
7385 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
7386 Tell the caller that the next line needs recomputation, even
7387 though it doesn't start a sexp (bug#10094).
7388
f04a3be9
SM
73892011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7390
7391 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
7392
7978747f
SM
73932011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7394
f04a3be9
SM
7395 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
7396 Use force-same-window.
7978747f 7397
fe7a3057
JB
73982011-11-20 Juanma Barranquero <lekktu@gmail.com>
7399
7400 * descr-text.el (describe-char-unicode-data):
7401 * json.el (json-string-escape):
7402 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
7403 (Footnote-unicode, Footnote-style-p):
7404 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
7405
24901d61
CY
74062011-11-20 Chong Yidong <cyd@gnu.org>
7407
7408 * window.el (replace-buffer-in-windows): Restore interactive spec.
7409
bac7ff22
SM
74102011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7411
24f3d7b9
SM
7412 * electric.el (electric-indent-mode): Fix last change (too optimistic).
7413
bac7ff22
SM
7414 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
7415 (byte-compile-global-not-obsolete-vars): New var.
7416 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
7417 Use it.
7418 (byte-compile-warn-obsolete): Align text with the one in *Help*.
7419
cd1181db
JB
74202011-11-20 Juanma Barranquero <lekktu@gmail.com>
7421
7422 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
7423 * progmodes/pascal.el (electric-pascal-equal):
7424 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
7425 * xml.el (xml-substitute-special): Fix typos.
7426
7fb18e9e
GM
74272011-11-20 Glenn Morris <rgm@gnu.org>
7428
7429 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
7430 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
7431 Doc fixes.
7432 (rmail-decode-mime-charset): Mark as obsolete.
7433
7434 * mail/rmailsum.el (rmail-message-regexp-p-1):
7435 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
7436 Before using mime functions, check they are set. (Bug#10077)
7437
d5a6b3ba
JL
74382011-11-19 Juri Linkov <juri@jurta.org>
7439
7440 * info.el (Info-finder-find-node): Use `package--builtins' instead
7441 of `package-alist'. Use node names formed by the pattern "Keyword "
7442 and the keyword name.
7443
e981b61f
AS
74442011-11-19 Andreas Schwab <schwab@linux-m68k.org>
7445
1d00653d 7446 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
e981b61f 7447
3ffbc301
JL
74482011-11-19 Juri Linkov <juri@jurta.org>
7449
7450 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
7451 that calls `revert-buffer' on all Info buffers. (Bug#9915)
7452 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
7453 `old-history', `old-history-forward'. Add let-binding
7454 `window-selected'. Remove calls to `kill-buffer',
7455 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
7456 before calling `Info-find-node', so `Info-find-node-2' will reread
7457 the Info file. Restore window positions only when `window-selected'
7458 is non-nil.
7459
30c62133
JL
74602011-11-19 Juri Linkov <juri@jurta.org>
7461
7462 * isearch.el (isearch-lazy-highlight-new-loop):
7463 Remove condition `(not isearch-error)'. (Bug#9918)
7464
7465 * misearch.el (multi-isearch-search-fun): Add condition
7466 `(not bound)' to ignore lazy-highlighting search.
7467 Add the search-failed message "end of multi" when the end of
7468 multi-sequence is reached. Uncapitalize the search-failed
7469 message "Repeat for next buffer".
7470
7471 * info.el (Info-search): Add the search-failed message
7472 "end of the manual" when the end of the manual is reached
7473 in Isearch mode.
7474
645ca9cf
JL
74752011-11-19 Juri Linkov <juri@jurta.org>
7476
7477 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
7478 Use non-destructive `remove' instead of `delete' because
7479 `Info-history-list' stored to `Info-isearch-initial-history-list' in
7480 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
7481
df754f66
JL
74822011-11-19 Juri Linkov <juri@jurta.org>
7483
7484 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
7485 to nil instead of binding `search-ring' and `regexp-search-ring'.
7486 (Bug#9185)
7487
0e23d96a
EZ
74882011-11-19 Eli Zaretskii <eliz@gnu.org>
7489
7490 * simple.el (line-move): Force movement by logical lines for any
7491 hscrolled window, not only when auto-hscroll-mode is on.
7492 (line-move-visual): Update doc string to that effect. (Bug#10076)
7493
8a6ccb66
AS
74942011-11-19 Andreas Schwab <schwab@linux-m68k.org>
7495
7496 * language/european.el (macintosh): Define as alias for mac-roman.
7497
49ae5b39
EZ
74982011-11-19 Eli Zaretskii <eliz@gnu.org>
7499
7500 * mail/rmailmm.el (rmail-mime-display-header)
7501 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
7502 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
7503 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
7504 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
7505 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
7506 of a raw aref.
7507 (rmail-mime-entity-segment): To get past the tagline, move forward
7508 2 more lines, to account for the 2 empty lines that precede and
7509 follow the line with the buttons.
7510 (rmail-mime-update-tagline): Move one more line, to get past the
7511 empty line that follows the buttons in the tagline. (Bug#9520)
7512
c56cad4a
MR
75132011-11-19 Martin Rudalics <rudalics@gmx.at>
7514
7515 * window.el (window-max-delta-1, window-min-delta-1)
7516 (window-min-size-1, window-state-get-1, window-state-put-1)
7517 (window-state-put-2): Use "window--" prefix.
7518
cbe71af3
SM
75192011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
7520
2ad52c60
SM
7521 * emacs-lisp/smie.el: Improve warnings and conflict detection.
7522 (smie-warning-count): New var.
7523 (smie-set-prec2tab): Use it.
7524 (smie-bnf->prec2): Improve warnings. Add docstring.
7525 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
7526 (smie-bnf--set-class): New function.
7527 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
7528 corner case.
7529
6944dbc1
SM
7530 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
7531 (compilation-error-properties, compilation-move-to-column):
7532 Handle compilation-first-column while in the target buffer.
7533
c400c4d7
SM
7534 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
7535 Don't hardcode point-min==1.
7536
6dbe3e96
SM
7537 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
7538 (eshell-rewrite-for-command): Remove workaround.
7539 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
7540 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
7541 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
7542
cbe71af3
SM
7543 * files-x.el (modify-file-local-variable): Obey commenting conventions.
7544
a8e1496d
GM
75452011-11-17 Glenn Morris <rgm@gnu.org>
7546
7547 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7548 Ignore buffer-local generated-autoload-file if it is the same
7549 as the global value. (Bug#10049)
7550
df85d315
JB
75512011-11-17 Juanma Barranquero <lekktu@gmail.com>
7552
7553 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
7554 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
7555 (reftex-toc-previous-heading, reftex-toc-max-level)
7556 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
7557 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
7558 (reftex-toc-do-promote, reftex-toc-promote-prepare)
7559 (reftex-toc-promote-action, reftex-toc-extract-section-number)
7560 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
7561 (reftex-toc-rename-label, reftex-toc-visit-location)
7562 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
7563 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
7564 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
7565 leaving "*toc*" only for references to the buffer.
7566
a0c2d0ae
MR
75672011-11-17 Martin Rudalics <rudalics@gmx.at>
7568
7569 * window.el (window-resize, delete-window, split-window):
7570 Replace window-splits by window-combination-resize.
1d00653d 7571 * cus-start.el (window-splits): Replace by window-combination-resize.
a0c2d0ae 7572
35c0bac8
GM
75732011-11-17 Glenn Morris <rgm@gnu.org>
7574
7575 * progmodes/sh-script.el (sh-font-lock-keywords-var):
7576 Make bash entry derive from sh entry, not shell entry.
7577
d0c8fc8a
MA
75782011-11-16 Michael Albinus <michael.albinus@gmx.de>
7579
7262a87c
MA
7580 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
7581 local file name.
7582
7877f373
JB
75832011-11-16 Juanma Barranquero <lekktu@gmail.com>
7584
7585 * menu-bar.el (menu-bar-file-menu):
7586 * printing.el (pr-ps-utility):
7587 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
7588 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
7589 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
7590 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
7591 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
7592 (icalendar--convert-cyclic-to-ical)
7593 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
7594 (icalendar--convert-ical-to-diary)
7595 (icalendar--convert-recurring-to-diary)
7596 (icalendar--convert-non-recurring-all-day-to-diary)
7597 (icalendar-import-format-sample):
7598 * progmodes/idlw-shell.el (idlwave-shell-mode):
7599 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
7600 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
7601 (vhdl-ps-print-init): Fix typos.
7602
10649b82
KM
76032011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
7604
9d0cfcd6
GM
7605 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
7606 FSF and collapse date sequence, obscure author/maintainer email address
7607 better, remove extra version line, track relocation of author's webpage.
10649b82 7608
9d0cfcd6
GM
7609 * progmodes/python.el (python-pdbtrack-input-prompt)
7610 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
7611 regular python pdb prompts. Adjustments shamelessly taken exactly as
7612 suggested in EmacsWiki page (tiny change):
7613 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 7614
58179cce
JB
76152011-11-16 Juanma Barranquero <lekktu@gmail.com>
7616
7617 * expand.el (expand-pos, expand-index, expand-point):
7618 Remove redundant info from docstring.
7619 (expand-add-abbrevs): Doc fix.
7620 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
7621 (expand-sample-perl-mode-expand-list): Fix typos.
7622
7623 * net/dbus.el (dbus-event-member-name):
7624 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
7625 * term/pc-win.el (msdos-create-frame-with-faces):
7626 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
7627
b6f67890
MR
76282011-11-16 Martin Rudalics <rudalics@gmx.at>
7629
7630 * window.el (split-window, window-state-get-1)
7631 (window-state-put-1, window-state-put-2): Rename occurrences of
7632 window-nest to window-combination-limit.
1d00653d 7633 * cus-start.el (window-nest): Rename to window-combination-limit.
b6f67890 7634
ce7ddba0
CY
76352011-11-16 Chong Yidong <cyd@gnu.org>
7636
7637 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
7638 regexp (Bug#10033).
7639
3ae704f4
SM
76402011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7641
7642 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
7643 `completing-read' will remove *Completions* and will preserve
7644 current-buffer for us.
7645 (tmm-add-prompt): Users of *Completions* will always (re)set its
7646 major mode.
7647 (tmm-old-comp-map): Remove.
7648
6ad1cdde
GM
76492011-11-16 Glenn Morris <rgm@gnu.org>
7650
7651 * mail/rmailedit.el: Require rmailmm when compiling.
7652 (rmail-old-mime-state): New declaration.
7653 (rmail-edit-current-message): If editing a mime message,
7654 edit the "raw" message from the mbox buffer.
7655 (rmail-cease-edit): Handle mime messages. (Bug#9840)
7656
d20faa20
GM
76572011-11-15 Glenn Morris <rgm@gnu.org>
7658
7659 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
7660 which wasn't being used. Add optional arg to force given state.
7661 (rmail-mime): Add optional arg to force given state.
7662
c7015153
JB
76632011-11-15 Juanma Barranquero <lekktu@gmail.com>
7664
7665 * allout.el (allout-encryption-plaintext-sanitization-regexps):
7666 * frame.el (display-mm-dimensions-alist):
7667 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
7668 (outline-move-subtree-down):
7669 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
7670 (newsticker--treeview-do-get-node):
7671 * net/quickurl.el (quickurl-list-buffer-name):
7672 * progmodes/dcl-mode.el (dcl-mode):
7673 * progmodes/gdb-mi.el (gdb-mapcar*):
7674 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
7675
45261b50
GM
76762011-11-15 Glenn Morris <rgm@gnu.org>
7677
7678 * mail/rmail.el (rmail-file-coding-system): It's only ever used
7679 in a boolean sense, so just make it a boolean, and fix the doc.
7680 (rmail-show-mime-function, rmail-mime-feature)
7681 (rmail-require-mime-maybe): Doc fixes.
7682 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
7683
7684 * mail/rmailmm.el (rmail-show-mime): Doc fix.
7685
0d26e0b6
JB
76862011-11-15 Juanma Barranquero <lekktu@gmail.com>
7687
7688 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
7689 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
7690 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
7691 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
7692
447f30f6
GM
76932011-11-15 Glenn Morris <rgm@gnu.org>
7694
672b871d
GM
7695 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
7696 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
7697 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
7698 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
7699 (rmail-mime, rmail-show-mime): Doc fixes.
7700
f6aa5bb1
GM
7701 * term/ns-win.el (mode-line-frame-identification):
7702 Leave it alone. (Bug#10051)
7703
947cd66b
GM
7704 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
7705
447f30f6
GM
7706 * mail/rmailout.el (rmail-output-to-rmail-buffer):
7707 Handle empty buffers. (Bug#9978)
7708
0b381c7e
JB
77092011-11-14 Juanma Barranquero <lekktu@gmail.com>
7710
7711 * international/mule.el (define-charset):
7712 * mail/rmailmm.el (rmail-mime-find-header-encoding):
7713 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
7714 * progmodes/verilog-mode.el (verilog-backward-token):
7715 * textmodes/ispell.el (lookup-words):
7716 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
7717
71e027ac
GM
77182011-11-14 Glenn Morris <rgm@gnu.org>
7719
56632ce4
GM
7720 * progmodes/executable.el
7721 (executable-make-buffer-file-executable-if-script-p):
7722 Handle file-modes returning nil.
7723
40500957
GM
7724 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
7725 message - not necessary, and causes problems. (Bug#9831)
7726
071c2340
GM
7727 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
7728
d3cfca60
GM
7729 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
7730
71e027ac
GM
7731 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
7732 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
7733 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
7734
89d61221
MR
77352011-11-12 Martin Rudalics <rudalics@gmx.at>
7736
7737 * window.el (window-resize, delete-window): Use window-splits
7738 variable instead of function.
7739 (window-state-get-1, window-state-put-2, window-state-put):
7740 Don't deal with windows' splits status.
7741
98282f6f
GM
77422011-11-12 Glenn Morris <rgm@gnu.org>
7743
7744 * apropos.el (apropos-do-all, apropos-library, apropos-value)
7745 (apropos-documentation): Doc fixes.
7746
40a8bdf6
JB
77472011-11-11 Juanma Barranquero <lekktu@gmail.com>
7748
7749 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
7750 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
7751
65bd19ff
SM
77522011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7753
7754 * electric.el (electric-indent-post-self-insert-function): Make it
7755 possible for a char to only indent in some circumstances.
7756 (electric-indent-mode): Simplify.
7757
54f9154c
MR
77582011-11-11 Martin Rudalics <rudalics@gmx.at>
7759
7760 * window.el (windows-with-parameter): Remove unused function.
7761 (windows-at-side): Rename to window-at-side-list.
7762 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
7763 (window-side-check, window-size-ignore, window-size-fixed-1)
7764 (window-in-direction-2): Prefix with "window--".
7765 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 7766
68cbc58b
GM
77672011-11-11 Glenn Morris <rgm@gnu.org>
7768
7769 * subr.el (eval-after-load): If FILE is already loaded,
7770 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
7771
b2621720
GM
77722011-11-10 Glenn Morris <rgm@gnu.org>
7773
9a4de110
GM
7774 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
7775 Call svn via vc-svn-command rather than vc-do-command.
7776 (vc-svn-command): Add --non-interactive. (Bug#9993)
7777 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
7778
b2621720
GM
7779 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7780 Add toggle-read-only. (Bug#7292)
7781 * files.el (toggle-read-only): Mention that it should only
7782 be used interactively. (Bug#10006)
7783
1dce7193
SM
77842011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7785
d9ac1a1e
SM
7786 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7787 Adjust regexp for OCaml warnings.
7788
0c325082
SM
7789 * electric.el (electric-pair-post-self-insert-function): Let user
7790 turn it off buffer-locally (bug#9932).
7791
90132c14
SM
7792 * progmodes/python.el (python-beginning-of-statement):
7793 Rewrite (bug#2703).
7794
1dce7193
SM
7795 * progmodes/compile.el: Better handle TABs (bug#9749).
7796 (compilation-internal-error-properties)
7797 (compilation-next-error-function): Obey the target buffer's
7798 compilation-error-screen-columns.
7799
c4e7c63a
JB
78002011-11-09 Juanma Barranquero <lekktu@gmail.com>
7801
7802 * progmodes/meta-mode.el: Remove obsolete comments.
7803 (meta-right-comment-regexp, meta-ignore-comment-regexp):
7804 Fix typos in docstrings.
7805
2cffd681
MR
78062011-11-09 Martin Rudalics <rudalics@gmx.at>
7807
7808 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 7809 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
7810 (window--resizable): New function. Make all callers of
7811 window-resizable call window--resizable instead.
7812 (window-resizable): Rewrite in terms of window--resizable.
7813
0edcba87
GM
78142011-11-08 Glenn Morris <rgm@gnu.org>
7815
7816 * progmodes/delphi.el (delphi-mode-syntax-table):
7817 Let define-derived-mode define a proper syntax table. (Bug#9994)
7818
4b0d61e3
SM
78192011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7820
7821 * window.el: Stay away from defsubst.
7822 (window-list-no-nils): Remove.
7823 (window-state-get-1, window-state-get): Use backquote instead.
7824
cd394be1 78252011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
fcbcac2e 7826
4b0d61e3 7827 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 7828 Fix incorrect use of default argument in `completing-read'.
7829
e1c2c6f2
MR
78302011-11-08 Martin Rudalics <rudalics@gmx.at>
7831
7832 * window.el (display-buffer-function, special-display-function):
7833 Mention display-buffer-record-window but do not mention
7834 help-setup parameter in doc-strings.
b3f4a882 7835 (window-min-delta): Fix doc-string typo.
e1c2c6f2 7836
105216ed
CY
78372011-11-08 Chong Yidong <cyd@gnu.org>
7838
7839 * window.el (window-total-height, window-total-width): Doc fix.
7840 (window-body-size): Move from C.
7841 (window-body-height, window-body-width): Move to C.
7842
0a9f9ab5
SM
78432011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7844
7845 * window.el: Make special-display like display-buffer-alist (bug#9532).
7846 (display-buffer--special-action): New function, morphed
7847 from display-buffer--special.
7848 (display-buffer): Use it to handle special-display-buffers at higher
7849 priority (just after display-buffer-alist).
7850 (display-buffer-fallback-action, display-buffer--other-frame-action)
7851 (pop-to-buffer-same-window): Remove display-buffer--special.
7852
a769dd15
GM
78532011-11-07 Glenn Morris <rgm@gnu.org>
7854
7855 * calendar/cal-menu.el (cal-menu-set-date-title):
7856 Do nothing if not in a calendar. (Bug#9976)
7857
05a61ee3
SM
78582011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
7859
7860 * files.el (find-file): Always use selected-window.
7861
be7f5545
MR
78622011-11-07 Martin Rudalics <rudalics@gmx.at>
7863
7864 * window.el (window-combinations): Make WINDOW argument
7865 mandatory. Rewrite doc-string.
7866 (walk-window-subtree, window-atom-check, window-min-delta)
7867 (window-max-delta, window--resize-this-window)
7868 (window--resize-root-window-vertically, window-tree)
7869 (balance-windows, window-state-put): Rewrite doc-strings as to
7870 not mention the term "subwindow".
7871 (window--resize-subwindows-skip-p): Rename to
7872 window--resize-child-windows-skip-p.
7873 (window--resize-subwindows-normal): Rename to
7874 window--resize-child-windows-normal.
7875 (window--resize-subwindows): Rename to
7876 window--resize-child-windows.
7877 (window-or-subwindow-p): Rename to window--in-subtree-p.
7878
3c6702ef
ML
78792011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7880
7881 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
7882 Ensure that mbox format messages end in two newlines (Bug#9974).
7883
49745b39
CY
78842011-11-06 Chong Yidong <cyd@gnu.org>
7885
7886 * window.el (window-combination-p): Function deleted; its
7887 side-effect is not used in any existing code.
7888 (window-combinations, window-combined-p): Call window-*-child
7889 directly.
7890
24300f5f
CY
78912011-11-05 Chong Yidong <cyd@gnu.org>
7892
7893 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
7894 (window-size-ignore, window-state-get): Callers changed.
7895 (window-normalize-window): Rename from window-normalize-any-window.
7896 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 7897 (window-normalize-live-window): Delete.
447f16b8
CY
7898 (window-combination-p, window-combined-p, window-combinations)
7899 (walk-window-subtree, window-atom-root, window-min-size)
7900 (window-sizable, window-sizable-p, window-size-fixed-p)
7901 (window-min-delta, window-max-delta, window-resizable)
7902 (window-resizable-p, window-full-height-p, window-full-width-p)
7903 (window-current-scroll-bars, window-point-1, set-window-point-1)
7904 (window-at-side-p, window-in-direction, window-resize)
7905 (adjust-window-trailing-edge, maximize-window, minimize-window)
7906 (window-deletable-p, delete-window, delete-other-windows)
7907 (record-window-buffer, unrecord-window-buffer)
7908 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
7909 (quit-window, split-window, window-state-put)
7910 (set-window-text-height, fit-window-to-buffer)
7911 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 7912
89bd5ee1
EZ
79132011-11-04 Eli Zaretskii <eliz@gnu.org>
7914
53479029
EZ
7915 * mail/rmail.el (rmail-simplified-subject): Decode subject with
7916 rfc2047-decode-string.
7917 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
7918 warnings.
7919
89bd5ee1
EZ
7920 * window.el (window-body-height, window-body-width): Mention in
7921 the doc string that the return values are in frame's canonical
7922 units. (Bug#9949)
7923
bd17fdee
AM
79242011-11-03 Alan Mackenzie <acm@muc.de>
7925
7926 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
7927 change in cc-engine.el.
7928
acc825c5
SM
79292011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
7930
7931 * window.el (switch-to-buffer): Use `force-same-window' interactively.
7932
1885e5b8
MR
79332011-11-02 Martin Rudalics <rudalics@gmx.at>
7934
7935 * window.el (quit-window): Call unrecord-window-buffer after
7936 showing another buffer in the window. (Bug#9937)
acc825c5 7937 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 7938
ebe06da9
JB
79392011-11-02 Juanma Barranquero <lekktu@gmail.com>
7940
7941 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
7942 Accept status with more than 9 shelves. (Bug#9935)
7943 Reported by Colin D Bennett <colin@gibibit.com>.
7944
4ee88440
MR
79452011-11-01 Martin Rudalics <rudalics@gmx.at>
7946
7947 * help.el (with-help-window): Don't reference
7948 temp-buffer-show-specifiers in doc-string.
7949
08e1d82c
AS
79502011-10-31 Andreas Schwab <schwab@linux-m68k.org>
7951
7952 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
7953 menu-item.
7954
84bd6e9e
VJL
79552011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7956
7957 * whitespace.el: New version 13.2.2.
7958 (whitespace-newline-mode): Disable properly. Reported by Sarah
7959 <EmacsWiki>.
7960
dba0634a
UJ
79612011-10-30 Ulf Jasper <ulf.jasper@web.de>
7962
7963 * net/newst-treeview.el: Remove "Time-stamp".
7964 (newsticker--group-manage-orphan-feeds): Do not call
7965 newsticker--treeview-tree-update.
db22a3c2
JB
7966 (newsticker-treeview-update, newsticker-treeview):
7967 Call newsticker--treeview-tree-update if necessary.
dba0634a 7968
3d8daefe
MR
79692011-10-30 Martin Rudalics <rudalics@gmx.at>
7970
7971 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
7972 (window-iso-combinations): Remove "iso-" infix.
7973 Suggested by Chong Yidong.
3d8daefe
MR
7974 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
7975 (window-max-delta-1, window-resize, window--resize-siblings)
7976 (window--resize-this-window, adjust-window-trailing-edge)
7977 (split-window, balance-windows-1)
7978 (shrink-window-if-larger-than-buffer):
7979 * calendar/calendar.el (calendar-generate-window):
db22a3c2 7980 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 7981
1bc4c3ae
SM
79822011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7983
7984 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
7985 in place (bug#9907).
7986 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
7987 (eshell-rewrite-if-command, eshell-rewrite-for-command)
7988 (eshell-structure-basic-command, eshell-rewrite-while-command)
7989 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
7990 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
7991 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
7992 (eshell-do-pipelines-synchronously, eshell-eval-command):
7993 Use backquotes and prefer setq to set.
7994 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
7995 (eshell-macrop): Use functionp.
c1e2f5fa 7996 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 7997
30b65d9c
CY
79982011-10-30 Chong Yidong <cyd@gnu.org>
7999
8000 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
8001 instead of set-mark (Bug#9810).
8002
2d197ffb
CY
80032011-10-30 Chong Yidong <cyd@gnu.org>
8004
8005 * window.el (split-window-below, split-window-right): Rename from
8006 split-window-above-each-other and split-window-side-by-side
8007 respectively. All callers changed.
8008 (split-window-sensibly, split-window-sensibly): Use them.
8009 (split-window-keep-point): Doc fix.
8010
8011 * isearch.el: Add isearch-scroll property to split-window-below
8012 and split-window-right.
8013
8014 * follow.el (follow-mode):
8015 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
8016 * progmodes/ada-xref.el (ada-gdb-application):
8017 * emulation/vip.el (vip-buffer-in-two-windows):
8018 * image-dired.el (image-dired-dired-with-window-configuration):
8019 * dired-x.el (dired-do-find-marked-files):
8020 * dired.el (dired-pop-to-buffer):
8021 * bs.el (bs--show-with-configuration):
8022 * vc/emerge.el (emerge-setup-windows):
8023 * textmodes/two-column.el (2C-two-columns):
8024 * textmodes/reftex-toc.el (reftex-toc):
8025 * progmodes/gdb-mi.el (gdb-setup-windows):
8026 * progmodes/fortran.el (fortran-window-create):
8027 * net/newst-treeview.el (newsticker--treeview-window-init):
8028 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
8029 * emulation/tpu-edt.el (tpu-gold-map):
8030 * emulation/crisp.el (crisp-mode-map):
8031 * calendar/calendar.el (calendar-basic-setup): Callers changed.
8032
38bb2ca8
CY
80332011-10-29 Chong Yidong <cyd@gnu.org>
8034
aa4de341
CY
8035 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
8036
e1eb5385
CY
8037 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
8038
5d2ece3c
CY
8039 * textmodes/flyspell.el (flyspell-word): Fix char offset for
8040 forged Ispell output (Bug#7904).
8041
38bb2ca8
CY
8042 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
8043
d0af9f77
SM
80442011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8045
8046 * doc-view.el: Avoid ugly errors about not finding nil.
8047 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
8048 (doc-view-dvipdf-program, doc-view-unoconv-program)
8049 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
8050 Avoid nil or absolute file name as default value.
8051 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
8052
52bedd34
AM
80532011-10-28 Alan Mackenzie <acm@muc.de>
8054
db22a3c2 8055 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 8056
7e43cfa5
AM
80572011-10-28 Alan Mackenzie <acm@muc.de>
8058
8059 Amend the handling of c-beginning/end-of-defun in nested declaration
8060 scopes.
8061
52bedd34
AM
8062 * progmodes/cc-vars.el (c-defun-tactic): Move here from
8063 cc-langs.el. Change it to a defcustom.
7e43cfa5 8064
52bedd34
AM
8065 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
8066 cc-vars.el.
7e43cfa5 8067
d0af9f77
SM
8068 * progmodes/cc-engine.el (c-beginning-of-statement-1):
8069 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 8070
52bedd34 8071 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 8072 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
8073 (c-widen-to-enclosing-decl-scope): New function.
8074 (c-while-widening-to-decl-block): New macro.
8075 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
8076 outward for defun boundaries, and correspondingly change symbol
8077 `respect-enclosure' to `go-outward'.
8078 (c-declaration-limits): Change algorithm to report only the "innermost"
8079 defun's boundaries.
8080
1a2ce9ee
DD
80812011-10-28 Deniz Dogan <deniz@dogan.se>
8082
8083 * net/rcirc.el (rcirc-mode): Use hard newlines.
8084
bc97a826
AM
80852011-10-28 Alan Mackenzie <acm@muc.de>
8086
8087 Amend to indent and fontify macros "which include their own semicolon"
8088 correctly, using the "virtual semicolon" mechanism.
8089
52bedd34 8090 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 8091
d0af9f77 8092 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 8093 Recode to scan one line at a time rather than having \n and \r
58179cce 8094 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 8095 (c-forward-label): Amend for virtual semicolons.
58179cce 8096 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 8097
52bedd34
AM
8098 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
8099 of the new C macros.
bc97a826 8100
52bedd34 8101 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
8102 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
8103 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
8104 (c-opt-cpp-macro-define): Make into a full language variable.
8105 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
8106 AWK Mode (including \n, \r) removed, no longer needed.
8107
d0af9f77
SM
8108 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
8109 Invoke c-make-macro-with-semi-re.
bc97a826 8110
52bedd34
AM
8111 * progmodes/cc-vars.el (c-macro-with-semi-re):
8112 (c-macro-names-with-semicolon): New variables.
58179cce 8113 (c-make-macro-with-semi-re): New function.
bc97a826 8114
7a6c0941
SM
81152011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8116
8117 * vc/log-edit.el: Fill empty field rather than adding new one.
8118 (log-edit-add-field): New function.
8119 (log-edit-insert-changelog): Use it.
8120
b0c4cdcf
ML
81212011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
8122
8123 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
8124
ee1f1da9
SM
81252011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8126
8127 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
8128 (gdb--check-interpreter): New function.
8129 (gdb): Use it.
8130
51bc5f8b
GM
81312011-10-27 Glenn Morris <rgm@gnu.org>
8132
416a2c45
GM
8133 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
8134 (least-positive-float, least-negative-float)
8135 (least-positive-normalized-float, least-negative-normalized-float)
8136 (float-epsilon, float-negative-epsilon):
8137 Remove unnecessary declarations.
8138
8139 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
8140 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
8141 (least-positive-float, least-negative-float)
8142 (least-positive-normalized-float, least-negative-normalized-float)
8143 (float-epsilon, float-negative-epsilon): Add doc-strings,
8144 based on those in cl.texi.
8145
51bc5f8b
GM
8146 * files.el (set-visited-file-name): If the major-mode changed,
8147 reload the local variables. (Bug#9796)
8148
15de15c6
CY
81492011-10-27 Chong Yidong <cyd@gnu.org>
8150
8151 * subr.el (change-major-mode-after-body-hook): New hook.
8152 (run-mode-hooks): Run it.
8153
ee1f1da9
SM
8154 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
8155 Use change-major-mode-before-body-hook.
15de15c6
CY
8156
8157 * simple.el (fundamental-mode):
8158 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
8159 change introducing fundamental-mode-hook.
8160
5430d399
JB
81612011-10-26 Juanma Barranquero <lekktu@gmail.com>
8162
acc825c5 8163 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 8164
ad74a69e
MA
81652011-10-26 Michael Albinus <michael.albinus@gmx.de>
8166
8167 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 8168 tramp.el explicitly. (Bug#7583)
ad74a69e 8169
71d4c2a5
SM
81702011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
8171
8172 * progmodes/octave-mod.el:
8173 * progmodes/octave-inf.el: Update maintainer.
8174
b1f6fa26
CY
81752011-10-26 Chong Yidong <cyd@gnu.org>
8176
8177 * subr.el (with-wrapper-hook): Rewrite doc.
8178
3f04efd6
MA
81792011-10-25 Michael Albinus <michael.albinus@gmx.de>
8180
8181 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 8182 filenames "/method:foo:". (Bug#9793)
3f04efd6 8183
410488d3
SM
81842011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8185
8186 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
8187 (bug#9865).
8188
c1ebb47e
GM
81892011-10-24 Glenn Morris <rgm@gnu.org>
8190
8191 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
8192
7f5c46c7
MA
81932011-10-24 Michael Albinus <michael.albinus@gmx.de>
8194
8195 * notifications.el: Add the requirement of a running D-Bus session
8196 bus to the Commentary.
8197
db2440b6
JL
81982011-10-24 Juri Linkov <juri@jurta.org>
8199
8200 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
8201 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
8202 (Bug#9364)
8203
feecf435
JL
82042011-10-24 Juri Linkov <juri@jurta.org>
8205
8206 * info.el (Info-following-node-name-re): Add newline to the list
8207 of allowed characters for leading space. (Bug#9824)
8208
a3839de2
SM
82092011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8210
acc825c5
SM
8211 * progmodes/octave-inf.el (inferior-octave-mode-map):
8212 Fix C-c C-h binding.
a3839de2
SM
8213 * progmodes/octave-mod.el (octave-help): Remove.
8214
09388e76
MA
82152011-10-23 Michael Albinus <michael.albinus@gmx.de>
8216
8217 Sync with Tramp 2.2.3.
8218
8219 * net/tramp-cache.el (top): Pacify byte-compiler using
8220 `init-file-user' and `site-run-file'.
8221
8222 * net/trampver.el: Update release number.
8223
86c60681
CY
82242011-10-23 Chong Yidong <cyd@gnu.org>
8225
8226 * files.el (toggle-read-only): Remove obsolete comment about
8227 version control.
8228
8229 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
8230 for toggle-read-only. Note that this hasn't called vc-next-action
8231 since 2008-05-02, though it wasn't documented at the time.
8232
a3839de2
SM
8233 * vc/ediff-init.el (ediff-toggle-read-only-function):
8234 Use toggle-read-only.
86c60681 8235
cd5495ff
AM
82362011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
8237
8238 Fix bug #9560, sporadic wrong indentation; improve instrumentation
8239 of c-parse-state.
8240
00b77525 8241 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 8242 correct faulty logical expression.
cd5495ff
AM
8243 (c-parse-state-state, c-record-parse-state-state):
8244 (c-replay-parse-state-state): New defvar/defuns.
8245 (c-debug-parse-state): Use new functions.
8246
42ee24ed
MR
82472011-10-22 Martin Rudalics <rudalics@gmx.at>
8248
8249 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 8250 last fix. Use window-in-direction correctly.
42ee24ed 8251
a7dee7e7
CY
82522011-10-21 Chong Yidong <cyd@gnu.org>
8253
8254 * progmodes/idlwave.el (idlwave-mode):
8255 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
8256 require-final-newline; that's done in prog-mode.
8257 Suggested by Stefan Monnier.
a7dee7e7 8258
e07b9a6d
MR
82592011-10-21 Martin Rudalics <rudalics@gmx.at>
8260
8261 * mouse.el (mouse-drag-window-above)
8262 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
8263 (mouse-drag-mode-line-1, mouse-drag-header-line)
8264 (mouse-drag-vertical-line-rightward-window): Remove.
8265 (mouse-drag-line): New function.
8266 (mouse-drag-mode-line, mouse-drag-header-line)
8267 (mouse-drag-vertical-line): Call mouse-drag-line.
8268 * window.el (window-at-side-p, windows-at-side): New functions.
8269
7e1361d9
UM
82702011-10-21 Ulrich Mueller <ulm@gentoo.org>
8271
8272 * tar-mode.el (tar-grind-file-mode):
8273 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
8274
30fcaf3a
CY
82752011-10-21 Chong Yidong <cyd@gnu.org>
8276
8277 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
8278 * progmodes/vera-mode.el (vera-mode):
8279 Use mode-require-final-newline.
30fcaf3a 8280
516eddb0
GM
82812011-10-20 Glenn Morris <rgm@gnu.org>
8282
db22a3c2 8283 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 8284
10d5f513
CS
82852011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
8286
8287 * emulation/cua-base.el (cua-set-mark): Fix case of string.
8288
ac6c8639
CY
82892011-10-20 Chong Yidong <cyd@gnu.org>
8290
8291 * emulation/cua-base.el (cua-mode):
8292 * mail/footnote.el (footnote-mode):
8293 * mail/mailabbrev.el (mail-abbrevs-mode):
8294 * net/xesam.el (xesam-minor-mode):
8295 * progmodes/bug-reference.el (bug-reference-mode):
8296 * progmodes/cap-words.el (capitalized-words-mode):
8297 * progmodes/compile.el (compilation-minor-mode)
8298 (compilation-shell-minor-mode):
8299 * progmodes/gud.el (gud-tooltip-mode):
8300 * progmodes/hideif.el (hide-ifdef-mode):
8301 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
8302 * progmodes/subword.el (subword-mode):
8303 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
8304 * progmodes/which-func.el (which-function-mode):
8305 * term/tvi970.el (tvi970-set-keypad-mode):
8306 * term/vt100.el (vt100-wide-mode):
8307 * textmodes/flyspell.el (flyspell-mode):
8308 * textmodes/ispell.el (ispell-minor-mode):
8309 * textmodes/nroff-mode.el (nroff-electric-mode):
8310 * textmodes/paragraphs.el (use-hard-newlines):
8311 * textmodes/refill.el (refill-mode):
8312 * textmodes/reftex.el (reftex-mode):
8313 * textmodes/rst.el (rst-minor-mode):
8314 * textmodes/sgml-mode.el (html-autoview-mode)
8315 (sgml-electric-tag-pair-mode):
8316 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
8317 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
8318 * emulation/crisp.el (crisp-mode):
8319 * emacs-lisp/eldoc.el (eldoc-mode):
8320 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
8321 minor mode behavior.
8322
aa42ab43
JL
83232011-10-19 Juri Linkov <juri@jurta.org>
8324
8325 * descr-text.el (describe-char): Add #x2010 and #x2011 to
8326 the list of hard-coded chars with escape-glyph face.
8327
89400f1d
SM
83282011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
8329
8330 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
8331
305c07f6
MA
83322011-10-19 Michael Albinus <michael.albinus@gmx.de>
8333
8334 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
8335 running process.
8336
13754b54
GM
83372011-10-19 Glenn Morris <rgm@gnu.org>
8338
8339 * vc/vc-bzr.el (vc-bzr-after-dir-status):
8340 Ignore ignored files. (Bug#9726)
8341
06e21633
CY
83422011-10-19 Chong Yidong <cyd@gnu.org>
8343
8344 Doc fix for minor modes, stating that an omitted argument enables
8345 the mode unconditionally when called from Lisp.
8346
8347 * abbrev.el (abbrev-mode):
8348 * allout.el (allout-mode):
8349 * autoinsert.el (auto-insert-mode):
8350 * autoarg.el (autoarg-mode, autoarg-kp-mode):
8351 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
8352 (global-auto-revert-mode):
8353 * battery.el (display-battery-mode):
8354 * composite.el (global-auto-composition-mode)
8355 (auto-composition-mode):
8356 * delsel.el (delete-selection-mode):
8357 * desktop.el (desktop-save-mode):
8358 * dired-x.el (dired-omit-mode):
8359 * dirtrack.el (dirtrack-mode):
8360 * doc-view.el (doc-view-minor-mode):
8361 * double.el (double-mode):
8362 * electric.el (electric-indent-mode, electric-pair-mode):
8363 * emacs-lock.el (emacs-lock-mode):
8364 * epa-hook.el (auto-encryption-mode):
8365 * follow.el (follow-mode):
8366 * font-core.el (font-lock-mode):
8367 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
8368 * help.el (temp-buffer-resize-mode):
8369 * hilit-chg.el (highlight-changes-mode)
8370 (highlight-changes-visible-mode):
8371 * hi-lock.el (hi-lock-mode):
8372 * hl-line.el (hl-line-mode, global-hl-line-mode):
8373 * icomplete.el (icomplete-mode):
8374 * ido.el (ido-everywhere):
8375 * image-file.el (auto-image-file-mode):
8376 * image-mode.el (image-minor-mode):
8377 * iswitchb.el (iswitchb-mode):
8378 * jka-cmpr-hook.el (auto-compression-mode):
8379 * linum.el (linum-mode):
8380 * longlines.el (longlines-mode):
8381 * master.el (master-mode):
8382 * mb-depth.el (minibuffer-depth-indicate-mode):
8383 * menu-bar.el (menu-bar-mode):
8384 * minibuf-eldef.el (minibuffer-electric-default-mode):
8385 * mouse-sel.el (mouse-sel-mode):
8386 * msb.el (msb-mode):
8387 * mwheel.el (mouse-wheel-mode):
8388 * outline.el (outline-minor-mode):
8389 * paren.el (show-paren-mode):
8390 * recentf.el (recentf-mode):
8391 * reveal.el (reveal-mode, global-reveal-mode):
8392 * rfn-eshadow.el (file-name-shadow-mode):
8393 * ruler-mode.el (ruler-mode):
8394 * savehist.el (savehist-mode):
8395 * scroll-all.el (scroll-all-mode):
8396 * scroll-bar.el (scroll-bar-mode):
8397 * server.el (server-mode):
8398 * shell.el (shell-dirtrack-mode):
8399 * simple.el (auto-fill-mode, transient-mark-mode)
8400 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
8401 (line-number-mode, column-number-mode, size-indication-mode)
8402 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
8403 * strokes.el (strokes-mode):
8404 * time.el (display-time-mode):
8405 * t-mouse.el (gpm-mouse-mode):
8406 * tool-bar.el (tool-bar-mode):
8407 * tooltip.el (tooltip-mode):
8408 * type-break.el (type-break-mode-line-message-mode)
8409 (type-break-query-mode):
8410 * view.el (view-mode):
8411 * whitespace.el (whitespace-mode, whitespace-newline-mode)
8412 (global-whitespace-mode, global-whitespace-newline-mode):
8413 * xt-mouse.el (xterm-mouse-mode): Doc fix.
8414
a3839de2
SM
8415 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
8416 Fix autogenerated docstring.
06e21633 8417
5214e501
JL
84182011-10-19 Juri Linkov <juri@jurta.org>
8419
8420 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
8421 by checking environment variables "DESKTOP_SESSION" and
8422 "XDG_CURRENT_DESKTOP". (Bug#9779)
8423
195f8db9
JL
84242011-10-19 Juri Linkov <juri@jurta.org>
8425
8426 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
8427 (browse-url-chromium-program, browse-url-chromium-arguments):
8428 New defcustoms.
8429 (browse-url-default-browser): Check for `browse-url-chromium' and
8430 call `browse-url-chromium-program'.
8431 (browse-url-chromium): New command. (Bug#9779)
8432
343a34ff
JB
84332011-10-18 Juanma Barranquero <lekktu@gmail.com>
8434
8435 * facemenu.el (list-colors-duplicates): On Windows, detect more
8436 duplicates by assuming that only colors matching "^System" are
8437 special "system colors". (Bug#9722)
8438
6978a151
SM
84392011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
8440
8441 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
8442 to distinguish the author from the committer.
8443
6a80b297
MA
84442011-10-18 Michael Albinus <michael.albinus@gmx.de>
8445
8446 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
8447
b31a5677
JK
84482011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
8449
8450 * international/mule.el (sgml-html-meta-auto-coding-function):
8451 Add support for detecting encoding in HTML5 specified only as
8452 <meta charset="UTF-8">. Implementation just makes http-equiv and
8453 content-type parts from HTML4 encoding string optional. (Bug#9716)
8454
80c6d77f
GM
84552011-10-18 Glenn Morris <rgm@gnu.org>
8456
8457 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
8458
08b0fee8
CY
84592011-10-18 Chong Yidong <cyd@gnu.org>
8460
8461 * faces.el (cursor): Doc fix.
8462
67e729a5
CY
84632011-10-17 Chong Yidong <cyd@gnu.org>
8464
8465 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
8466
343a34ff 84672011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
8468
8469 * dirtrack.el (dirtrack): Support shell buffers with path
8470 prefixes, e.g. tramp-based remote shells. (Bug#9647)
8471
0bc06380
TZ
84722011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
8473
8474 * json.el: Bump version to 1.3 and note change in History.
8475 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
8476
8b79f3e0
SM
84772011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8478
5a7c536b
SM
8479 * comint.el (comint-insert-input, comint-send-input)
8480 (comint-get-old-input-default, comint-backward-matching-input)
8481 (comint-next-prompt): Use nil instead of `input' for field property of
8482 past user input (bug#114).
8483
96a8a0df
SM
8484 * minibuffer.el (completion--replace): Inherit surrounding properties
8485 (bug#114).
8486 (minibuffer-complete-and-exit): Use it.
8487
8b79f3e0
SM
8488 * comint.el (comint--table-subvert): Quote the all-completions output
8489 (bug#9160).
8490
b8f7ff0d
MR
84912011-10-17 Martin Rudalics <rudalics@gmx.at>
8492
8b79f3e0 8493 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 8494
b8f7ff0d 8495 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 8496 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
8497 entries and separate them from frame entries.
8498
c235b555
GM
84992011-10-15 Glenn Morris <rgm@gnu.org>
8500
8501 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
8502 Doc fixes.
8503
6bbfa6e1
CY
85042011-10-15 Chong Yidong <cyd@stupidchicken.com>
8505
8b79f3e0
SM
8506 * net/network-stream.el (network-stream-open-starttls):
8507 Improve detection of failure due to lack of TLS support.
ec5c990d 8508
6bbfa6e1
CY
8509 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
8510 putting the input text in front and in bold.
8511
98488977
SM
85122011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
8513
3d1337be
SM
8514 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
8515
ee0b45e4
SM
8516 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
8517 empty buffer.
8518
98488977
SM
8519 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
8520 unread-command-events rather than pushing yet-another event.
8521
186f4720
EZ
85222011-10-14 Eli Zaretskii <eliz@gnu.org>
8523
8524 * mail/sendmail.el (sendmail-query-once): Improve the wording of
8525 the explanation of the possible choices. Make the options passed
8526 to completing-read shorter.
8527
8b7a997c
AM
85282011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8529
8530 * textmodes/flyspell.el (flyspell-large-region): Make sure
8531 extended character mode is used if defined (Bug#1339).
8532
12587bbb
EZ
85332011-10-13 Eli Zaretskii <eliz@gnu.org>
8534
8535 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
8536 character info for LRE, LRO, RLE, and RLO characters by appending
8537 an invisible PDF.
12587bbb 8538
bad41229
SM
85392011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
8540
8541 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
8542 even in case of error; add debug spec; simplify data flow.
8543 (with-timeout-handler): Remove.
8544
28dbc92f
MA
85452011-10-12 Michael Albinus <michael.albinus@gmx.de>
8546
8547 Fix Bug#6019, Bug#9315.
8548
8549 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
8550 complete `buffer-file-name', the local file name part could look
8551 remotely (for example on VMS).
8552
8553 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
8554 `tramp-run-real-handler'.
8555 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
8556 already quoted by '"'.
8557
8558 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
8559 Let `file-name-handler-alist' be nil, the local file name part
8560 could look remotely (for example on VMS).
8561
e1b0b23a
SM
85622011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8563
8564 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
8565 from here...
8566 (flyspell-post-command-hook): ...to here.
8567
a120bde9
SM
85682011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8569
8570 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
8571 if not needed.
8572 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
8573 using completion. Protect against "slow" callers.
8574 Remove the "message hack".
8575
7ce7717b
JL
85762011-10-11 Juri Linkov <juri@jurta.org>
8577
8578 * isearch.el (isearch-lazy-highlight-word): New variable.
8579 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
8580 Use it. (Bug#9727)
8581
c02ee9d6
GM
85822011-10-11 Glenn Morris <rgm@gnu.org>
8583
8584 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
8585 like f90-previous-statement does.
8586
93e616fd 85872011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8588
1f190e73 8589 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
8590 only in interactive use, to avoid error.
8591
af7b6078
SM
85922011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8593
8594 * minibuffer.el (completion-file-name-table): Fix last change,
8595 i.e. ignore normal errors but not the other ones.
8596
0563dae9
MR
85972011-10-10 Martin Rudalics <rudalics@gmx.at>
8598
8599 * window.el (special-display-buffer-names)
8600 (special-display-regexps): Remove some remnants of earlier
8601 changes from doc-strings.
366ca7f3
MR
8602 (quit-windows-on): New function.
8603
8604 * vc/vc.el (vc-revert, vc-rollback):
8605 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
8606 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 8607 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 8608
49677495
MR
86092011-10-09 Martin Rudalics <rudalics@gmx.at>
8610
8611 * window.el (frame-auto-hide-function): Add version tag.
8612 (Bug#9699)
8613
56f2d1e1
MA
86142011-10-09 Michael Albinus <michael.albinus@gmx.de>
8615
8616 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
8617 condition.
8618
112a6592
LL
86192011-10-09 Leo Liu <sdl.web@gmail.com>
8620
8621 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
8622 (Bug#9701)
8623
0812589b
GM
86242011-10-08 Glenn Morris <rgm@gnu.org>
8625
8626 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
8627 before the first code statement zero indent. (Bug#9690)
8628
b2b0776e
CY
86292011-10-08 Chong Yidong <cyd@stupidchicken.com>
8630
8631 * simple.el (count-words-region): Always count in the region.
8632 Report the number of lines and characters too.
8633 (count-words): New command, which counts in the buffer if the
8634 region is inactive, as count-words-region used to.
8635 (count-words--message): New function. Handle plurals.
8636 (count-lines-region): Make it an alias for count-words-region.
8637
8638 * bindings.el (esc-map): Replace count-lines-region with
8639 count-words-region.
8640
c557cd6b
MR
86412011-10-08 Martin Rudalics <rudalics@gmx.at>
8642
8643 * window.el (window--delete): Delete dedicated frame
8644 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 8645 (switch-to-buffer): Fix doc-string typo.
c557cd6b 8646
61a57ef4 86472011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8648
3a7d293b 8649 * eshell/eshell.el (eshell-command): Avoid using hooks.
61a57ef4 8650
c3833279
CY
86512011-10-07 Chong Yidong <cyd@stupidchicken.com>
8652
8653 * bindings.el ([M-left],[M-right]): Bind to left-word and
8654 right-word respectively.
8655
21ce8245
GM
86562011-10-07 Glenn Morris <rgm@gnu.org>
8657
8658 * cus-start.el (debug-on-quit): Fix custom type.
8659
6d823bb2
LMI
86602011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8661
0181e193
LMI
8662 * subr.el (define-key-after): Clarify that the function is not
8663 useful for non-menu keymaps.
8664
6d823bb2
LMI
8665 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
8666
8e3459ce 86672011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8668
21ce8245 8669 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 8670 in current minibuffer (Fix bug with recursive minibuffers).
8671
a1c2d21e
CY
86722011-10-06 Chong Yidong <cyd@stupidchicken.com>
8673
8674 * progmodes/gdb-mi.el (gdb): Doc fix.
8675
5a4cf282
MR
86762011-10-05 Martin Rudalics <rudalics@gmx.at>
8677
8678 * window.el (frame-auto-hide-function): New option replacing
8679 frame-auto-delete. Suggested by Stefan Monnier.
8680 (window--delete): Call frame-auto-hide-function instead of
8681 investigating frame-auto-delete.
c96111ea
MR
8682 (window-point-1, set-window-point-1): New functions.
8683 (window-in-direction, record-window-buffer, window-state-get-1)
8684 (display-buffer-record-window): Use window-point-1 instead of
8685 window-point.
8686 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 8687
9854542e
SM
86882011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8689
8690 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
8691
8943cfb0
GM
86922011-10-05 Glenn Morris <rgm@gnu.org>
8693
8694 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
8695 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
8696
647ab967
LL
86972011-10-05 Leo Liu <sdl.web@gmail.com>
8698
8699 * subr.el (read-char-choice): Fix argument to buffer-live-p which
8700 works with buffer object.
8701
3ddfbced
SM
87022011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8703
8704 * mpc.el (mpc-tool-bar-map): Add labels.
8705
bdfa5dd2
GM
87062011-10-04 Glenn Morris <rgm@gnu.org>
8707
8708 * calendar/holidays.el (calendar-check-holidays): Doc fix.
8709
0e2070b5
MR
87102011-10-04 Martin Rudalics <rudalics@gmx.at>
8711
8712 * window.el (window--delete): New function.
8713 (frame-auto-delete): Resuscitate option.
8714 (bury-buffer, replace-buffer-in-windows)
8715 (quit-window): Rewrite using window--delete.
8716 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8717 Pass display-buffer-mark-dedicated to window--display-buffer-2
8718 (Bug#9639).
8719
3dc61a09
SM
87202011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8721
915a9b64
SM
8722 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
8723 returns a list (bug#9554). Add remote file name completion.
8724 * comint.el (comint--table-subvert): Curry and get quote&unquote
8725 functions as arguments.
8726 (comint--complete-file-name-data): Adjust call accordingly.
8727 * pcomplete.el (pcomplete--table-subvert): Remove.
8728 (pcomplete-completions-at-point): Use comint--table-subvert instead.
8729
3dc61a09
SM
8730 * minibuffer.el (completion-table-case-fold): Use currying.
8731 (completion--styles-type, completion--cycling-threshold-type):
8732 New constants.
8733 (completion-styles, completion-category-overrides)
8734 (completion-cycle-threshold): Use them.
8735 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
8736 completion-table-case-fold.
8737
8ea0a993
SB
87382011-10-03 Stephen Berman <stephen.berman@gmx.net>
8739
8740 * minibuffer.el (completion-category-overrides): Fix type of styles
8741 and add more user friendly tags (bug#9660).
8742
8c24b7f6
SM
87432011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8744
8745 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
8746 (mule-input-method-string): New widget.
8747 (default-input-method, language-info-custom-alist): Use it.
8748
428fe61a
SM
87492011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8750
32c1fffd
SM
8751 * pcomplete.el: Require comint.
8752 (pcomplete--common-suffix): Remove.
8753 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
8754 (pcomplete--table-subvert): Sync with comint--table-subvert.
8755 (pcomplete--entries): Use comint-completion-file-name-table.
8756 * comint.el (comint-unquote-filename): Simplify.
8757 (comint-completion-file-name-table): New function (bug#9616).
8758 (comint--complete-file-name-data): Use it.
8759
428fe61a
SM
8760 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
8761 (pcmpl-gnu-tar-buffer): Remove.
8762 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
8763 around. Make sure pcomplete-suffix-list is only changed temporarily.
8764 Don't look inside the tar's file if it's too large.
428fe61a 8765
04c52e2f
CY
87662011-10-01 Chong Yidong <cyd@stupidchicken.com>
8767
ce3cefcc
CY
8768 * cus-edit.el (custom-mode-map):
8769 * epa.el (epa-key-list-mode-map):
8770 * man.el (Man-mode-map):
8771 * startup.el (splash-screen-keymap):
8772 * simple.el (special-mode-map): Use scroll-up-command and
8773 scroll-down-command.
8774
8775 * progmodes/idlw-help.el (idlwave-help-mode-map):
8776 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
8777 * net/newst-plainview.el (newsticker-mode-map):
8778 * emulation/ws-mode.el (wordstar-mode-map):
8779 * emulation/vi.el (vi-com-map):
8780 * calc/calc-graph.el (calc-graph-show-dumb):
8781 * term/sun.el (terminal-init-sun):
8782 * term/ns-win.el (global-map):
8783 * progmodes/grep.el (grep-mode-map):
8784 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
8785 * mail/rmail.el (rmail-mode-map):
8786 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
8787
04c52e2f
CY
8788 * custom.el (custom-safe-themes, load-theme): Treat value of t for
8789 custom-safe-themes as special.
8790
79adf8c8
JD
87912011-10-01 Julien Danjou <julien@danjou.info>
8792
8793 * notifications.el (notifications-notify): Fix docstring.
8794
63bd50d3
PS
87952011-10-01 Per Starbäck <per@starback.se>
8796
8797 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
8798
199e4c7e
MR
87992011-09-30 Martin Rudalics <rudalics@gmx.at>
8800
8801 * startup.el (command-line-1): Fix last fix by inserting
8802 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 8803 (Bug#9605) and (Bug#9636)
199e4c7e 8804
fe5f08dd
EZ
88052011-09-29 Eli Zaretskii <eliz@gnu.org>
8806
8807 * simple.el (line-move): If auto-hscroll-mode is disabled and the
8808 window is hscrolled, move by logical lines. (Bug#9607)
8809 (line-move-visual): Update the doc string to the above effect.
8810
b5516bbd
MR
88112011-09-29 Martin Rudalics <rudalics@gmx.at>
8812
ccee00c0
MR
8813 * window.el (display-buffer-record-window): When WINDOW is the
8814 selected window use `point' instead of `window-point'. (Bug#9626)
8815
b5516bbd
MR
8816 * startup.el (command-line-1): Use insert-before-markers when
8817 inserting initial-scratch-message. (Bug#9605)
ccee00c0 8818
b5516bbd
MR
8819 * help.el (help-window): Remove variable.
8820
52aa0014
GM
88212011-09-29 Glenn Morris <rgm@gnu.org>
8822
8823 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
8824
df9a7357
JB
88252011-09-29 Juanma Barranquero <lekktu@gmail.com>
8826
8827 * descr-text.el (describe-char-categories): Accept category
8828 descriptions more than one line long.
8829
a8406c20
SM
88302011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
8831
88d9610c
SM
8832 * simple.el (delete-trailing-whitespace): Fix last change.
8833
a5daf810
SM
8834 * progmodes/perl-mode.el (perl-syntax-propertize-function):
8835 Don't confuse "y => 3" as the beginning of a `y' operation.
8836
a8406c20
SM
8837 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
8838 object has more than 4 slots (bug#9613).
8839
a239d4e9
JB
88402011-09-28 Juanma Barranquero <lekktu@gmail.com>
8841
8842 * subr.el (with-output-to-temp-buffer):
8843 * net/quickurl.el (quickurl, quickurl-browse-url):
8844 Fix typos in docstrings.
8845
693fbdb6
EZ
88462011-09-27 Eli Zaretskii <eliz@gnu.org>
8847
8848 * minibuffer.el (completion-styles)
8849 (completion-category-overrides): Cross reference each other in doc
8850 strings.
8851
8b457e28
GM
88522011-09-27 Glenn Morris <rgm@gnu.org>
8853
8854 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
8855 to split-string. (Bug#9606)
8856
85a16208
LMI
88572011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
8858
8859 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
8860 (bug#9615).
8861
502f9ebd
CY
88622011-09-27 Chong Yidong <cyd@stupidchicken.com>
8863
8864 * emacs-lisp/package.el (list-packages): Fix echo area message.
8865
7690bdea
LL
88662011-09-27 Leo Liu <sdl.web@gmail.com>
8867
8868 * ido.el (ido-read-internal): Accept cons cell HIST arg.
8869
e2ee6f30
MA
88702011-09-25 Michael Albinus <michael.albinus@gmx.de>
8871
8872 * net/dbus.el (dbus-unregister-object): Don't release services for
8873 registered signals. (Bug#9581)
8874
f3f98342
TZ
88752011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
8876
8877 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
8878 function that picks between cfengine 2 and 3 support
8879 automatically. Update docs accordingly.
8880
dd7aa8dd
KH
88812011-09-22 Kenichi Handa <handa@m17n.org>
8882
8883 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
8884 ZERO.
8885 (indian-itrans-v5-table-for-tamil): New variable.
8886 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
8887
3f2b07f8
KM
88882011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
8889
8890 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
8891 that's true if the current command involved collapsing of text.
8892 It's reset to false at the beginning of the next command.
8893 (allout-post-command-business): Move the cursor to the beginning
8894 of entry if the cursor is hidden and collapsing activity just
8895 happened.
8896
371d6a61
CY
88972011-09-24 Chong Yidong <cyd@stupidchicken.com>
8898
8899 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
8900 tracking (Bug#9541).
8901
2ac2721a
UJ
89022011-09-24 Ulf Jasper <ulf.jasper@web.de>
8903
8904 * net/newst-reader.el (newsticker-html-renderer)
1154d12e
JB
8905 (newsticker-show-news): Automatically load html rendering package
8906 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
8907 because w3m-fill-column is let-bound" and the error "Symbol's value
8908 as variable is void: w3m-fill-column".
2ac2721a 8909
fac7ae53
MA
89102011-09-24 Michael Albinus <michael.albinus@gmx.de>
8911
8912 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
8913 Release services only if they are defined. (Bug#9581)
8914
e08b633b
RS
89152011-09-23 Richard Stallman <rms@gnu.org>
8916
e488d29c
RS
8917 * textmodes/paragraphs.el (forward-sentence): For backwards case,
8918 distinguish start of paragraph from start of its text.
8919
19c38752
RS
8920 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
8921
e08b633b
RS
8922 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
8923 (rmail-generate-viewer-buffer): Put that hook on view buffer.
8924 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
8925
0a39f27e
AS
89262011-09-23 Andreas Schwab <schwab@linux-m68k.org>
8927
8928 * international/mule-diag.el (mule-diag): Insert a newline after
8929 each fontset description.
8930
db4e950d
SM
89312011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8932
8933 * simple.el (delete-trailing-whitespace):
8934 Document last change; simplify.
8935
eca3f3ea
PW
89362011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
8937
d68e189a
PW
8938 * simple.el (delete-trailing-whitespace): Also delete
8939 extra newlines at the end of the buffer.
8940
eca3f3ea
PW
8941 * textmodes/picture.el: Make motion commands obey shift-select-mode.
8942 (picture-newline): Use forward-line so as to ignore fields.
8943
01c157cc
SM
89442011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8945
8946 * subr.el (with-wrapper-hook): Fix edebug spec.
8947
022de23e
LMI
89482011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
8949
8950 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
8951 (bug#4538).
8952
91683089
MA
89532011-09-23 Michael Albinus <michael.albinus@gmx.de>
8954
eca3f3ea
PW
8955 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
8956 Fix nasty bug using wrong cached values.
91683089 8957
5bdd6fa4
AM
89582011-09-23 Alan Mackenzie <acm@muc.de>
8959
8960 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
8961
97adfb97
CY
89622011-09-23 Chong Yidong <cyd@stupidchicken.com>
8963
8964 * window.el (pop-to-buffer): Ensure right window is selected if we
8965 chose another frame.
8966
d4ef2b50
EZ
89672011-09-22 Eli Zaretskii <eliz@gnu.org>
8968
8969 * simple.el (what-cursor-position): Use get-char-property-change
8970 and next-single-char-property-change, to be able to show display
8971 properties that come from overlays as well as text properties.
8972
72258fe5
CY
89732011-09-22 Chong Yidong <cyd@stupidchicken.com>
8974
8975 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
8976
8977 * cmuscheme.el (run-scheme, switch-to-scheme):
8978 * cus-edit.el (customize-group, custom-buffer-create)
8979 (customize-browse):
8980 * info.el (info):
8981 * shell.el (shell):
8982 * mail/sendmail.el (mail):
8983 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
8984
8f098516
RS
89852011-09-22 Richard Stallman <rms@gnu.org>
8986
8987 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
8988 move back only to line beg, don't move back over blank lines.
8989
e74f1bb6
MA
89902011-09-22 Michael Albinus <michael.albinus@gmx.de>
8991
8992 * files.el (copy-directory): Set directory attributes only in case
8993 they could be retrieved from the source directory. (Bug#9565)
8994
bfeef8b6
DK
89952011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
8996
8997 * progmodes/hideshow.el (hs-looking-at-block-start-p)
8998 (hs-find-block-beginning, hs-hide-level-recursive):
8999 Ignore strings as well as comments. (Bug#9502)
9000
7e423bb8
AS
90012011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
9002
9003 * progmodes/sql.el (sql-comint-postgres):
9004 Convert port number to a string. (Bug#9566)
9005
b4d72fcf
MR
90062011-09-22 Martin Rudalics <rudalics@gmx.at>
9007
9008 * window.el (quit-window): Undedicate window when switching to
9009 previous buffer. Reported by Thierry Volpiatto
9010 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
9011 (special-display-popup-frame): When popping up a new frame reset
9012 its previous buffers to nil. Simplify code.
b4d72fcf 9013
a7b88dc6
MA
90142011-09-21 Michael Albinus <michael.albinus@gmx.de>
9015
9016 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
9017 and process filter, as done also in `shell-command'.
9018
cf4eacfd
MR
90192011-09-21 Martin Rudalics <rudalics@gmx.at>
9020
eca3f3ea 9021 * window.el (set-window-buffer-start-and-point):
1154d12e
JB
9022 Call set-window-start with NOFORCE argument t.
9023 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
cf4eacfd
MR
9024 (quit-window): Reword doc-string. Handle new format of
9025 quit-restore parameter. Don't delete window if it has a
9026 previous buffer we can show instead of the present one.
9027 (display-buffer-record-window): Rewrite using a new format for
9028 the quit-restore window parameter
9029 (special-display-popup-frame, display-buffer-same-window)
9030 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9031 (display-buffer-pop-up-window, display-buffer-use-some-window):
9032 Adapt symbol passed to display-buffer-record-window.
9033 * help.el (help-window-setup): Handle new format of quit-restore
9034 parameter.
9035
8d28cb95
SM
90362011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
9037
94ab793f
SM
9038 * faces.el (face-list): Fix docstring (bug#9564).
9039
8d28cb95
SM
9040 * window.el (display-buffer--action-function-custom-type):
9041 Don't include internal functions in the Custom interface.
9042
3820edeb
JL
90432011-09-20 Juri Linkov <juri@jurta.org>
9044
9045 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
9046 (Info-forward-node, Info-backward-node, Info-next-preorder)
9047 (Info-last-preorder): Use it. (Bug#9528)
9048
5147931d
JL
90492011-09-20 Juri Linkov <juri@jurta.org>
9050
9051 * info.el (Info-last-preorder): Visit last menu item only when
9052 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
9053
cf499a1a
JD
90542011-09-20 Julien Danjou <julien@danjou.info>
9055
9056 * password-cache.el (password-cache-remove): Remove entries even if the
9057 value is nil, so that password with a nil value (negative caching) is
9058 possible to invalidate.
9059
f84e2fe2
LM
90602011-09-20 Lawrence Mitchell <wence@gmx.li>
9061
9062 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
9063 all whitespace around breakpoint. (Bug#9553)
9064 (f90-find-breakpoint): Only break at whitespace inside a comment.
9065
78054a46
SM
90662011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9067
9068 * minibuffer.el (completion-file-name-table): Keep track of errors.
9069 (completion-table-with-predicate): Handle the case where pred1 is nil.
9070 * pcomplete.el (pcomplete-completions-at-point): Simplify.
9071
345083b2
SM
90722011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9073
e24e27be
SM
9074 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
9075 (debugger-return-value): Signal an error if the debugging context does
9076 not await any return value.
9077
345083b2
SM
9078 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
9079 * image-mode.el (image-toggle-display-text)
9080 (image-toggle-display-image): Stay away from evil `intangible'.
9081
08d355e3
LL
90822011-09-19 Leo Liu <sdl.web@gmail.com>
9083
9084 * replace.el (occur-revert-arguments): Make it permanent-local.
9085 (occur-mode): Don't call font-lock-defontify.
9086
f01da43f
CY
90872011-09-19 Chong Yidong <cyd@stupidchicken.com>
9088
9089 * net/ldap.el (ldap-search-internal): Don't push empty search
9090 result (Bug#9508).
9091
b6072fa6
SM
90922011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9093
9094 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
9095
443d6696
MA
90962011-09-19 Michael Albinus <michael.albinus@gmx.de>
9097
9098 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
9099 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
9100
7cc6e154
JL
91012011-09-18 Juri Linkov <juri@jurta.org>
9102
9103 * buff-menu.el (Buffer-menu-mode-map):
9104 * dired.el (dired-mode-map):
9105 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
9106 (lisp-interaction-mode-map):
9107 * emacs-lisp/package.el (package-menu-mode-map):
9108 * epa.el (epa-key-list-mode-map):
9109 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
9110 (menu-bar-options-menu):
9111 * outline.el (outline-mode-menu-bar-map):
9112 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
9113 * vc/vc-dir.el (vc-dir-menu-map):
9114 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
9115 Capitalize non-function content words in menu item strings.
9116
9117 * dired.el (dired-mode-map): Add menu item for
9118 `image-dired-dired-toggle-marked-thumbs'.
9119
80302a81
JL
91202011-09-18 Juri Linkov <juri@jurta.org>
9121
9122 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
9123 to `isearch-case-fold-search' and restore its original value
9124 after the `isearch-mode' call.
9125
46c5cf66
JL
91262011-09-18 Juri Linkov <juri@jurta.org>
9127
9128 * progmodes/grep.el (grep-process-setup): Don't check code for 1
9129 because `zgrep' returns 1 for successful matches (bug#9226).
9130
d18b513b
JL
91312011-09-18 Juri Linkov <juri@jurta.org>
9132
9133 * info.el (Info-extract-menu-node-name): Check the second match
9134 for empty string (second test-case of bug#9528).
9135 (Info-last-preorder): Let-bind `Info-history' to nil to not add
9136 intermediate nodes to the history (first test-case of bug#9528).
9137
72753f87
JL
91382011-09-18 Juri Linkov <juri@jurta.org>
9139
9140 * info.el (Info-mode-syntax-table): New variable.
1154d12e 9141 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
72753f87 9142
c9384295
JL
91432011-09-18 Juri Linkov <juri@jurta.org>
9144
1154d12e
JB
9145 * info.el (Info-file-supports-index-cookies):
9146 Increment line-beginning-position's arg from 3 to 4 because makeinfo
9147 outputs one more line for long file names (bug#4142).
c9384295 9148
d473dce8
CY
91492011-09-18 Chong Yidong <cyd@stupidchicken.com>
9150
9151 * newcomment.el (comment-normalize-vars): If prompting for
9152 comment-start, set comment-start-skip too (Bug#8424).
9153
2176854d
JB
91542011-09-18 Johan Bockgård <bojohan@gnu.org>
9155
9156 * icomplete.el: Fix previous fix of Bug#5849.
9157 (icomplete-mode): Don't set completion-show-inline-help.
9158 (icomplete-minibuffer-setup): Set completion-show-inline-help
9159 locally during icompletion.
9160
3aace4e4
CY
91612011-09-18 Chong Yidong <cyd@stupidchicken.com>
9162
c940224f
CY
9163 * woman.el (woman2-process-escapes): Don't delete unrecognized
9164 escapes (Bug#7843).
9165
3aace4e4
CY
9166 * files.el (inhibit-first-line-modes-regexps): Add image files.
9167 (hack-local-variables-prop-line): Return nil for malformed
9168 prop-lines (Bug#9044).
9169
710dec63
MA
91702011-09-18 Michael Albinus <michael.albinus@gmx.de>
9171
9172 * net/tramp.el (top): Don't require 'shell.
9173 (tramp-methods): Fix docstring.
9174 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
9175 Return complete remote file name. Handle "smb" case.
9176 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
9177 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
9178
9179 * net/tramp-compat.el (top): Require 'shell.
9180
9181 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
9182 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
9183 `tramp-current-host'.
9184 (tramp-get-remote-tmpdir): Remove.
9185
9186 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
9187 `tramp-tmpdir' entries.
9188 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
9189 (tramp-smb-handle-file-attributes): Ignore errors.
9190 (tramp-smb-wait-for-output): Check also for process end.
9191
5d5ac8ec
LMI
91922011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
9193
9194 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
9195 when sending QUIT (bug#9312).
9196
8c0f49f0
CY
91972011-09-17 Chong Yidong <cyd@stupidchicken.com>
9198
9199 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
9200 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
9201 occur-mode-display-occurrence.
9202 (occur-edit-mode): Add usage message.
9203 (occur-cease-edit): New command.
9204 (occur-after-change-function): Use text properties to find the
9205 position of the prefix text.
9206 (occur-engine): Set stickiness of prefix text properties.
9207
8f1383f7
GM
92082011-09-17 Glenn Morris <rgm@gnu.org>
9209
9210 * progmodes/etags.el (complete-tag):
9211 Fix call to completion-in-region. (Bug#9526)
9212
744ba0e3
JL
92132011-09-17 Juri Linkov <juri@jurta.org>
9214
9215 * textmodes/ispell.el (ispell-word): Add to the error message
9216 the word, ispell program name and current dictionary (bug#9121).
9217 (ispell-tex-arg-end): Capitalize "error" in the error message.
9218
d9bbf400
AS
92192011-09-17 Andreas Schwab <schwab@linux-m68k.org>
9220
9221 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
9222 check. (Bug#4251)
9223
8da11505
JL
92242011-09-17 Juri Linkov <juri@jurta.org>
9225
9226 * window.el (window-safe-min-height, window-safe-min-width):
9227 Fix typos (followup to bug#9522).
9228
a91adc7e
SJ
92292011-09-17 Sven Joachim <svenjoac@gmx.de>
9230
9231 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
9232
064f328a
EZ
92332011-09-16 Eli Zaretskii <eliz@gnu.org>
9234
9235 * simple.el (line-move): If goal-column is set, move by logical
9236 lines, not by display lines. (Bug#971)
9237 (next-line, previous-line, goal-column, line-move-visual): Doc fix
9238 to reflect the above change.
9239
e69df516
SM
92402011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9241
9242 * image.el (imagemagick-register-types): Use regexp-opt.
9243
cbb0f9ab
CY
92442011-09-15 Chong Yidong <cyd@stupidchicken.com>
9245
9246 * window.el (display-buffer-base-action): Rename from
9247 display-buffer-default-action. Make default value empty.
9248 (display-buffer-overriding-action): Convert to defvar.
9249 (display-buffer-fallback-action): New var.
9250
25322144
CY
92512011-09-15 Chong Yidong <cyd@stupidchicken.com>
9252
9253 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
9254 declaration.
9255 (package--add-to-archive-contents): If there is a duplicate entry
9256 with an older version, remove it.
9257 (package-menu-mark-delete, package-menu-mark-install)
9258 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
9259 (package-menu-mark-obsolete-for-deletion):
9260 Use package-menu-get-status instead of a regexp search.
25322144
CY
9261 (package-menu-get-status): Use tabulated-list-entry.
9262 (package-menu-mark-upgrades): New command.
d770725a 9263 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
9264 (package-menu-execute): Do installation before deletion.
9265 (package-menu-refresh, package-menu-execute): Use derived-mode-p
9266 instead of checking major-mode.
9267 (package-menu--find-upgrades): New function.
9268
7520339c
LMI
92692011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
9270
9271 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
9272 passwords in the log buffer.
65a046c4
LMI
9273 (smtpmail-process-filter): Update the process marker so that the
9274 "broken by peer" status message is inserted in the right place.
7520339c 9275
d3c30954
SM
92762011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
9277
3fe48822
SM
9278 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
9279 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
9280 bibtex-completion-at-point-function.
9281 (bibtex-completion-at-point-function): Use them.
9282
1b8b3954
SM
9283 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
9284
d3c30954
SM
9285 * mpc.el (mpc-constraints-tag-lookup): New function.
9286 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
9287 also to browser "album|playlist".
9288
72779976
JL
92892011-09-14 Juri Linkov <juri@jurta.org>
9290
9291 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
9292 (isearch-edit-string): Use length of `isearch-string' when
9293 `isearch-fail-pos' returns nil.
9294 (isearch-message): Remove duplicate code and call
9295 `isearch-fail-pos' with arg `t'.
9296
a0bf2bcd
CY
92972011-09-14 Chong Yidong <cyd@stupidchicken.com>
9298
17bb0a2d
CY
9299 * replace.el (occur-mode-goto-occurrence): Don't force using other
9300 window (Bug#9499).
9301
a0bf2bcd
CY
9302 * dired-aux.el (dired-do-chmod): Don't provide initial input.
9303
f678e0b6
MR
93042011-09-14 Martin Rudalics <rudalics@gmx.at>
9305
9306 * window.el (display-buffer-window): Remove.
9307 (display-buffer-record-window): Use help-setup window parameter
9308 instead of variable display-buffer-window.
9309 (display-buffer-function, special-display-buffer-names)
9310 (special-display-function): Mention help-setup parameter instead
9311 of display-buffer-window in doc-string.
d3c30954
SM
9312 * help.el (help-window-setup): New argument help-window.
9313 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
9314 Reword some messages.
9315 (with-help-window): Pass window used for displaying the buffer
9316 to help-window-setup. Don't set display-buffer-window.
9317
8e39b2e8
GM
93182011-09-13 Glenn Morris <rgm@gnu.org>
9319
9320 * emacs-lisp/debug.el (debugger-make-xrefs):
9321 Preserve point. (Bug#9462)
9322
85e9c04b
CY
93232011-09-13 Chong Yidong <cyd@stupidchicken.com>
9324
9325 * window.el (window-deletable-p): Use next-frame.
9326
1b36ed6a
MR
93272011-09-13 Martin Rudalics <rudalics@gmx.at>
9328
9329 * window.el (window-auto-delete): Remove.
9330 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 9331 dedication and previous buffers.
1b36ed6a
MR
9332 (switch-to-prev-buffer): Don't delete window.
9333 (delete-windows-on): Delete a window's frame if and only if the
9334 window is dedicated.
9335 (replace-buffer-in-windows): Delete buffer's window or frame if
9336 and only if window is dedicated.
9337 (quit-window): Handle quit-restore as before last change.
4d61f28d 9338 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 9339
ef8ef9fb
CY
93402011-09-13 Chong Yidong <cyd@stupidchicken.com>
9341
9342 * window.el (window-deletable-p): Never delete the last frame on a
9343 given terminal.
9344
b2cba41e
GM
93452011-09-13 Glenn Morris <rgm@gnu.org>
9346
9347 * help.el (describe-key-briefly): Copy previous standard-output change.
9348
51553db6 93492011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
9350
9351 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
9352
b7556719
GM
93532011-09-13 Glenn Morris <rgm@gnu.org>
9354
9355 * emacs-lisp/lisp-mode.el (lisp-indent-function):
9356 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
9357
64b51947
CY
93582011-09-12 Chong Yidong <cyd@stupidchicken.com>
9359
9360 * dired-aux.el (dired-mark-read-string): Don't return default
9361 value on empty input (Bug#9361).
9362 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
9363 Omit initial minibuffer contents.
9364 (dired-do-chmod): Signal an error on empty input.
9365 (dired-mark-read-string): Don't return default on empty input.
9366
9367 * files.el (file-modes-symbolic-to-number): Doc fix.
9368
393a301e
SM
93692011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9370
9371 * international/mule-cmds.el (ucs-completions): Remove.
9372 (read-char-by-name): Use complete-with-action instead; add metadata.
9373
fa5660f9
CY
93742011-09-11 Chong Yidong <cyd@stupidchicken.com>
9375
9376 * window.el (display-buffer--action-function-custom-type)
9377 (display-buffer--action-custom-type): New vars.
9378 (display-buffer-alist, display-buffer-default-action)
9379 (display-buffer-overriding-action): Add defcustom types.
9380
4a592f66
CY
9381 * frame.el (delete-other-frames): Doc fix (Bug#276).
9382
73d56dbd
LMI
93832011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9384
9385 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
9386
37ac18a3
CY
93872011-09-11 Chong Yidong <cyd@stupidchicken.com>
9388
9389 Change modes that used same-window-* vars to use switch-to-buffer.
9390
9391 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
9392 Use switch-to-buffer.
9393
9394 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
9395 (customize-browse, custom-buffer-create-other-window):
9396 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
9397
9398 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
9399 (Info-prev, Info-up, Info-speedbar-goto-node)
9400 (info-display-manual): Use switch-to-buffer.
9401 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
9402
9403 * mail/sendmail.el (mail): Use switch-to-buffer.
9404 (mail-recover): Use switch-to-buffer-other-window.
9405
9406 * cmuscheme.el (run-scheme, switch-to-scheme):
9407 * ielm.el (ielm):
9408 * shell.el (shell):
9409 * net/rlogin.el (rlogin):
9410 * net/telnet.el (telnet, rsh):
9411 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
9412
10195bd6
AS
94132011-09-11 Andreas Schwab <schwab@linux-m68k.org>
9414
9415 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
9416
b322f63a
LMI
94172011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9418
39d7fed6
LMI
9419 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
9420 so don't mention it (bug#9301).
ba5a81f1 9421 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 9422
ee0e9f11
LMI
9423 * faces.el (face-spec-set-match-display): Make `(type graphic)'
9424 match `x', `w32' and `ns', like the manual says (bug#9029).
9425
0b1c89c1 9426 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
9427 (process-kill-buffer-query-function): Mention the buffer name in
9428 the query.
0b1c89c1 9429
77549ea8
LMI
9430 * image-mode.el (image-next-line): The line parameter is mandatory
9431 (bug#9258).
9432
803ef892
LMI
9433 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
9434 which can be useful (bug#9301).
9435
12980837
LMI
9436 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
9437
91054f8f
LMI
9438 * subr.el (match-string): Mention that the current buffer should
9439 be the same as the search was done in (bug#9282).
9440
b322f63a
LMI
9441 * facemenu.el: Disable the remove-* commands if the mark isn't
9442 active (bug#9162).
9443
3199b96f
CY
94442011-09-10 Chong Yidong <cyd@stupidchicken.com>
9445
9446 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
9447 of display-buffer.
9448 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
9449
9450 * replace.el (occur-mode-goto-occurrence)
9451 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
9452 and display-buffer.
9453
9454 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
9455 display-buffer.
9456
9457 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
9458 special-display and same-window variables.
9459 (mail-other-window): Use switch-to-buffer-other-window.
9460 (mail-other-frame): USe switch-to-buffer-other-frame.
9461
393a301e
SM
9462 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
9463 Use display-buffer-other-frame.
3199b96f
CY
9464 (gdb-display-gdb-buffer): Use pop-to-buffer.
9465
9466 * progmodes/gud.el (gud-goto-info): Use info-other-window.
9467
9468 * progmodes/python.el: Don't set same-window-buffer-names.
9469
9470 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
9471
9472 * window.el (display-buffer-alist): Add *Python*.
9473
8319e0bf
CY
94742011-09-10 Chong Yidong <cyd@stupidchicken.com>
9475
9476 * window.el (display-buffer-alist): Add entry for buffers
9477 previously handled same-window-*.
9478 (display-buffer-alist, display-buffer-default-action)
9479 (display-buffer-overriding-action): Mark as risky.
9480 (display-buffer-alist): Document action function changes.
9481 (display-buffer--same-window-action)
9482 (display-buffer--other-frame-action): New variables.
9483 (switch-to-buffer, display-buffer-other-frame): Use them.
9484 (display-buffer): Rename reuse-frame entry to reusable-frames.
9485 (display-buffer-reuse-selected-window): Function deleted.
9486 (display-buffer-reuse-window): Handle reusable-frames alist entry.
9487 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
9488 (display-buffer-special): New function.
9489 (display-buffer--maybe-pop-up-frame-or-window): Rename from
9490 display-buffer-reuse-or-pop-window. Split off special-display
9491 part into display-buffer-special.
9492 (display-buffer-use-some-window): Don't perform any special
9493 pop-up-frames handling.
9494 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 9495 (display-buffer--maybe-same-window): Rename from
0d3ff375 9496 display-buffer-maybe-same-window.
8319e0bf 9497
919a69aa
CY
9498 * info.el: Don't set same-window-regexps.
9499 (info-setup): New function.
9500 (info-other-window, info): Call it.
9501
9502 * cus-edit.el: Don't set same-window-regexps.
9503 (customize-group): New argument.
9504 (customize-group-other-window): Use it.
9505 (customize-face, customize-face-other-window): Likewise.
9506 (custom-buffer-create-other-window): Use pop-to-buffer directly.
9507
8319e0bf
CY
9508 * net/rlogin.el:
9509 * net/telnet.el:
9510 * progmodes/gud.el: Don't set same-window-regexps.
9511
9512 * cmuscheme.el:
9513 * ielm.el:
9514 * shell.el:
9515 * mail/sendmail.el:
9516 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
9517
25173000
JL
95182011-09-10 Juri Linkov <juri@jurta.org>
9519
9520 * isearch.el (isearch-edit-string): Remove obsolete mention of
9521 `C-w' (`isearch-yank-word-or-char') from docstring.
9522 (isearch-query-replace): Fix typo in docstring (bug#9466).
9523
056e44ef
JL
95242011-09-10 Juri Linkov <juri@jurta.org>
9525
9526 * paren.el (show-paren-function): Don't show escaped parens.
9527 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
9528
c3760c17
EZ
95292011-09-10 Eli Zaretskii <eliz@gnu.org>
9530
9531 * mail/sendmail.el (mml-to-mime, mml-attach-file)
9532 (mm-default-file-encoding): Remove autoload forms, they are
9533 replaced with autoload cookies in mml.el and mm-encode.el.
9534 (mail-add-attachment): New command.
9535 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
9536 (mail-mode): Mention mail-insert-file and mail-add-attachment in
9537 the doc string.
9538 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
9539
fece895e
RT
95402011-09-10 Reuben Thomas <rrt@sc3d.org>
9541
e69df516
SM
9542 * simple.el (count-words-region): Use buffer if there's no region
9543 (bug#9429).
fece895e 9544
5e68ce4a
JL
95452011-09-09 Juri Linkov <juri@jurta.org>
9546
9547 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
9548 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
9549 (wdired-isearch-filter-read-only): New function. (Bug#6362)
9550
0a6b9622
AM
95512011-09-09 Alan Mackenzie <acm@muc.de>
9552
9553 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
9554 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
9555
14a29deb
EZ
95562011-09-09 Eli Zaretskii <eliz@gnu.org>
9557
9558 Fix for Savannah bug#9392.
9559 * simple.el (mail-encode-mml): New defvar.
9560
9561 * mail/rmail.el (mail-encode-mml): Add a defvar.
9562 (rmail-enable-mime-composing): Default to t.
9563 (rmail-forward): Use MIME method of forwarding only if both
9564 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
9565 Set mail-encode-mml non-nil if the MIME method was used.
9566
9567 * mail/sendmail.el (mml-to-mime): Add autoload form.
9568 (mail-encode-mml): Add a defvar.
9569 (mail-mode): Make mail-encode-mml buffer-local and initialize it
9570 to nil.
9571 (mail-send): If mail-encode-mml is non-nil, run the outgoing
9572 message through mml-to-mime, and reset mail-encode-mml to nil.
9573
28c45130
GM
95742011-09-09 Glenn Morris <rgm@gnu.org>
9575
9576 * woman.el (woman-if-body): When processing an .el block,
9577 do not delete the next .el block as well. (Bug#9447)
69f4b618 9578 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 9579
9b1c252e
MR
95802011-09-08 Martin Rudalics <rudalics@gmx.at>
9581
9582 * window.el (window-deletable-p): Make sure window is live before
9583 invoking window-prev-buffers.
9584
567457e3
LL
95852011-09-08 Leo Liu <sdl.web@gmail.com>
9586
9587 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
9588
97f05794
JL
95892011-09-08 Juri Linkov <juri@jurta.org>
9590
9591 * progmodes/compile.el (compilation-environment): Make it
9592 a defcustom (bug#8340).
9593
8b0874b5
MR
95942011-09-08 Martin Rudalics <rudalics@gmx.at>
9595
9596 * window.el (frame-auto-delete): Rename to window-auto-delete.
9597 Make it control auto-deletion of windows and/or frames.
9598 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 9599 for deleting window/frame. (Bug#9419)
8b0874b5
MR
9600 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
9601 Rewrite handling of case when window/frame can be deleted.
9602 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 9603 argument t. (Bug#9456)
8b0874b5 9604
4feb6e73
CY
96052011-09-07 Chong Yidong <cyd@stupidchicken.com>
9606
9607 * help-mode.el (help-mode): Restore autoload.
9608
91ab9c13
JL
96092011-09-07 Juri Linkov <juri@jurta.org>
9610
9611 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
9612 `compilation-environment'. Set buffer-local
9613 `compilation-environment' to `thisenv' later after (funcall mode).
9614 (Bug#8340)
9615
9616 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
9617 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
9618 instead of replacing its value. (Bug#8340)
9619
0527e251
JL
96202011-09-07 Juri Linkov <juri@jurta.org>
9621
9622 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
9623 based on text properties put by `grep-filter' instead of matching
9624 escape sequences.
9625 (grep-mode): Set buffer-local `compilation-error-screen-columns'
9626 to the value of `grep-error-screen-columns' (bug#9438).
9627
249f792c
JL
96282011-09-07 Juri Linkov <juri@jurta.org>
9629
9630 * simple.el (next-error-highlight, next-error-highlight-no-select):
9631 Doc fix (bug#9432).
9632
ff7271b9
OT
96332011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
9634
9635 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
9636 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
9637
183fc730
LL
96382011-09-07 Leo Liu <sdl.web@gmail.com>
9639
9640 * net/rcirc.el (rcirc-mode): Conditionally initialize
9641 rcirc-input-ring.
9642
77694924
SM
96432011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9644
9645 * emacs-lisp/find-func.el (find-function-C-source): Only set
9646 find-function-C-source-directory after checking that we found a source
9647 file there (bug#9440).
9648
d809b8eb
AM
96492011-09-06 Alan Mackenzie <acm@muc.de>
9650
9651 * isearch.el (isearch-other-meta-char): Wherever a key list is
9652 unread, "unread" the prefix arg, too. This fixes bug #8901.
9653
453de99f
OG
96542011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
9655
9656 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
9657
90439906
JL
96582011-09-05 Juri Linkov <juri@jurta.org>
9659
9660 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
9661
f62bd846
JL
96622011-09-05 Juri Linkov <juri@jurta.org>
9663
9664 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
9665 keeping point where processing of grep matches begins, and
9666 continue to delete remaining escape sequences from the same point.
9667 (grep-filter): Make leading zero optional in "0?1;31m" because
9668 git-grep emits "\033[1;31m" escape sequences unlike expected
9669 "\033[01;31m" as GNU Grep does (bug#9408).
9670 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
9671
045820ec
JL
96722011-09-05 Juri Linkov <juri@jurta.org>
9673
9674 * subr.el (y-or-n-p): Capitalize "yes".
9675
f5e29b9b
MA
96762011-09-04 Michael Albinus <michael.albinus@gmx.de>
9677
9678 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
9679 `tramp-cache-unload-hook' where appropriate.
9680 (tramp-methods): Rename `tramp-remote-sh' to
9681 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
9682 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
9683
9684 * net/tramp-sh.el (top): Don't require 'shell.
9685 (tramp-methods): Add `tramp-remote-shell' and
9686 `tramp-remote-shell-args' entries.
9687 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
9688 (tramp-sh-handle-shell-command): Remove.
9689 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9690 Use `tramp-remote-shell'.
9691
2784c434
CY
96922011-09-03 Chong Yidong <cyd@stupidchicken.com>
9693
393a301e 9694 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
9695 (sendmail-query-once): Save directly to send-mail-function.
9696 Update message-send-mail-function too.
9697
9698 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
9699
464cdf56
CS
97002011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9701
9702 * progmodes/python.el (python-mode-map): Use correct function to
9703 start python interpreter from menu-bar (as reported by Geert
9704 Kloosterman).
9705 (inferior-python-mode-map): Fix typo.
393a301e 9706 (python-shell-map): Remove.
464cdf56 9707
d37e5c87
DD
97082011-09-03 Deniz Dogan <deniz@dogan.se>
9709
9710 * net/rcirc.el (rcirc-print): Simplify code for
9711 rcirc-scroll-show-maximum-output. There is no need to walk
9712 through all windows to find the right one.
9713
f3ada0ee
CS
97142011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9715
9716 * help.el (help-return-method): Doc fix.
9717
1f3c99ca
MR
97182011-09-03 Martin Rudalics <rudalics@gmx.at>
9719
9720 * window.el (window-deletable-p): Don't return a non-nil value
9721 when there's a buffer that was shown in the window before.
9722 (Bug#9419)
393a301e
SM
9723 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9724 Set window's previous buffers to nil.
1f3c99ca 9725
a3cf097f
EZ
97262011-09-03 Eli Zaretskii <eliz@gnu.org>
9727
9728 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
9729 newline before and after the tag line, so it doesn't interfere
9730 with determining the paragraph direction of bidirectional text.
9731
3d03de90
LL
97322011-09-03 Leo Liu <sdl.web@gmail.com>
9733
9734 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
9735
c3313451
CY
97362011-09-02 Chong Yidong <cyd@stupidchicken.com>
9737
393a301e 9738 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
9739 (pop-to-buffer): Change interactive spec. Pass second argument
9740 directly to display-buffer.
9741 (display-buffer): Fix interactive spec. Use functionp to
9742 distinguish between a function and a list of functions.
9743
9744 * abbrev.el (edit-abbrevs):
9745 * arc-mode.el (archive-extract):
9746 * autoinsert.el (auto-insert):
9747 * bookmark.el (bookmark-bmenu-list):
9748 * files.el (find-file):
9749 * view.el (view-buffer):
9750 * progmodes/compile.el (compilation-goto-locus):
9751 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
9752
89894cd8
CY
97532011-09-02 Chong Yidong <cyd@stupidchicken.com>
9754
9755 * window.el (display-buffer-alist): Doc fix.
9756 (display-buffer): Add docstring. Don't treat
9757 display-buffer-default specially.
9758 (display-buffer-reuse-selected-window)
9759 (display-buffer-same-window, display-buffer-maybe-same-window)
9760 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9761 (display-buffer-pop-up-window)
9762 (display-buffer-reuse-or-pop-window)
9763 (display-buffer-use-some-window): New functions.
9764 (display-buffer-default-action): Use them.
393a301e 9765 (display-buffer-default): Delete.
89894cd8
CY
9766 (pop-to-buffer-1): Fix choice of actions.
9767
ae0bc9fb
SM
97682011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
9769
9770 * minibuffer.el (completion--insert-strings): Don't get confused by
9771 completion entries that end with an LF char.
9772
e9d90883
EZ
97732011-09-01 Eli Zaretskii <eliz@gnu.org>
9774
9775 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
9776
437014c8
CY
97772011-09-01 Chong Yidong <cyd@stupidchicken.com>
9778
9779 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
9780 (display-buffer-same-window, display-buffer-other-window):
9781 New functions.
437014c8
CY
9782 (pop-to-buffer-1): New function. Use the above.
9783 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 9784 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
9785
9786 * view.el (view-buffer-other-window, view-buffer-other-frame):
9787 Just use pop-to-buffer.
9788
a5e063d5
TV
97892011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9790
9791 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
9792
793d32bb
WH
97932011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
9794
9795 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
9796
d65e4c15
RS
97972011-08-31 Richard Stallman <rms@gnu.org>
9798
9799 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
9800 of the separation of rmail-view-buffer from rmail-buffer.
9801 If you say no to "replace original", the decrypt is in the
9802 view buffer. If you say yes, the decrypt goes into the
9803 rmail buffer also.
9804
f818cd2a
MR
98052011-08-31 Martin Rudalics <rudalics@gmx.at>
9806
9807 * window.el (display-buffer-window): Rewrite doc-string.
9808 (display-buffer-record-window): New function.
9809 (display-buffer-macro-specifiers)
9810 (display-buffer-even-window-sizes, display-buffer-set-height)
9811 (display-buffer-set-width, display-buffer-in-window)
9812 (display-buffer-reuse-window, display-buffer-split-specifiers)
9813 (display-buffer-side-specifiers, display-buffer-split-window-1)
9814 (display-buffer-split-window, display-buffer-split-atom-window)
9815 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9816 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
9817 (display-buffer-other-window-means-other-frame)
9818 (display-buffer-normalize-special)
9819 (display-buffer-normalize-default)
9820 (display-buffer-normalize-argument)
9821 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
9822 (display-buffer-normalize-specifiers, display-buffer-frame)
9823 (display-buffer-same-window, display-buffer-same-frame)
9824 (display-buffer-other-window)
9825 (display-buffer-same-frame-other-window)
9826 (display-buffer-other-frame, pop-to-buffer-same-window)
9827 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
9828 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
9829 (switch-to-buffer-same-frame)
9830 (switch-to-buffer-other-window-same-frame)
9831 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
9832 (display-buffer-alist-set-1, display-buffer-alist-set-2)
9833 (display-buffer-alist-set): Remove.
9834 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
9835 (special-display-regexps, special-display-function):
9836 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
9837 parameter.
9838 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
9839 (special-display-frame-alist, special-display-popup-frame)
9840 (same-window-buffer-names, same-window-regexps, same-window-p)
9841 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
9842 (split-window-preferred-function, split-height-threshold)
9843 (split-width-threshold, window-splittable-p)
9844 (split-window-sensibly, window--try-to-split-window)
9845 (window--frame-usable-p, even-window-heights)
9846 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
9847 (window--display-buffer-2, display-buffer-other-frame):
9848 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
9849 (display-buffer-default, display-buffer-assq-regexp): New functions.
9850 (display-buffer-alist): Rewrite doc-string.
9851 (display-buffer-default-action)
9852 (display-buffer-overriding-action): New variables.
9853 (display-buffer, switch-to-buffer): Rewrite.
9854 (pop-to-buffer): Restore Emacs 23 behavior but use
9855 window-normalize-buffer-to-display.
9856 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
9857 Restore Emacs 23 behavior but use
9858 window-normalize-buffer-to-switch-to.
9859 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
9860 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
9861 Rewrite using Emacs 23 options.
f818cd2a 9862
5bc3b51d
MA
98632011-08-31 Michael Albinus <michael.albinus@gmx.de>
9864
9865 * net/tramp.el (tramp-root-regexp): Remove.
9866 (tramp-completion-file-name-regexp-unified)
9867 (tramp-completion-file-name-regexp-separate)
9868 (tramp-completion-file-name-regexp-url): Don't use leading volume
9869 letter on win32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
9870 (tramp-drop-volume-letter): Simplify definition.
9871 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 9872
b1a4f8e1
SM
98732011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9874
9875 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
9876 (bug#9356).
9877
5664fa7b
RT
98782011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
9879
b1a4f8e1 9880 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 9881
9a45d6c3
JL
98822011-08-29 Juri Linkov <juri@jurta.org>
9883
9884 * isearch.el (isearch-done): Don't display message "Mark saved"
9885 when arg `edit' is non-nil to prevent its flicker in the echo area.
9886
fb87e0fb
CY
98872011-08-28 Chong Yidong <cyd@stupidchicken.com>
9888
9889 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
9890 obsolete packages for deletion.
9891
09ac1c2a
CS
98922011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
9893
9894 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 9895 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
9896 view-mode from help-mode.
9897 (help-xref-override-view-map): Remove.
9898 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
9899 view-mode is not used anymore.
9900
7a1ff57f
CY
99012011-08-28 Chong Yidong <cyd@stupidchicken.com>
9902
9903 * server.el (server-port): Doc fix.
9904
b9696605
CY
9905 * cus-theme.el (custom-theme-choose-mode): Inherit from
9906 special-mode (Bug#9124).
9907 (custom-theme-choose-mode-map): Add special-mode to parent.
9908
ef8cdf8c
AM
99092011-08-28 Alan Mackenzie <acm@muc.de>
9910
9911 * progmodes/cc-fonts.el
9912 (c-make-font-lock-BO-decl-search-function): New function.
9913 (c-basic-matchers-after - "Fontify the clauses after various
9914 keywords"): Extract the three keyword lists for the 3 erroneous
9915 constructs from the list of four, and use the new function above
9916 in place of an old one.
9917
27de4e20
DD
99182011-08-28 Deniz Dogan <deniz@dogan.se>
9919
9920 * net/rcirc.el (rcirc-insert-prev-input)
9921 (rcirc-insert-next-input): Remove unused argument.
9922
356a3681
SM
99232011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9924
9925 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
9926
3fc9b218
AM
99272011-08-27 Alan Mackenzie <acm@muc.de>
9928
9929 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
9930 handle function pointer parameters properly.
9931
538a061c
MR
99322011-08-27 Martin Rudalics <rudalics@gmx.at>
9933
9934 * window.el (display-buffer-reuse-window): Fix case where
9935 selected window was reused with non-nil OTHER-WINDOW argument.
9936 (Bug#9381)
9937
35b1c40c
DD
99382011-08-27 Deniz Dogan <deniz@dogan.se>
9939
9940 * net/rcirc.el (rcirc-check-auth-status): Adding support for
9941 oftc's NickServ messages.
9942
2f6a3e79
GM
99432011-08-27 Glenn Morris <rgm@gnu.org>
9944
9945 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
9946
7254299e
CY
99472011-08-26 Chong Yidong <cyd@stupidchicken.com>
9948
9949 * emacs-lisp/package.el (package-install): Call package-initialize
9950 if called interactively.
9951
f8ccf167
LL
99522011-08-26 Leo Liu <sdl.web@gmail.com>
9953
9954 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
9955
3e8cd5ce
JL
99562011-08-25 Juri Linkov <juri@jurta.org>
9957
9958 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
9959 `search-whitespace-regexp' (bug#9364).
9960
93eb7113
JL
99612011-08-25 Juri Linkov <juri@jurta.org>
9962
9963 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
9964 `regexp-search-ring' to their global values to protect from
9965 updating by `read-from-minibuffer' (bug#9185).
9966
f65d1611
JL
99672011-08-25 Juri Linkov <juri@jurta.org>
9968
9969 * textmodes/ispell.el (ispell-command-loop): Add newline
9970 at the end of the "Use option `i'..." line.
9971
f1cf7a31
JL
99722011-08-25 Juri Linkov <juri@jurta.org>
9973
9974 * battery.el (display-battery-mode): If `battery-status-function'
9975 or `battery-mode-line-format' is nil, display the message and set
9976 `display-battery-mode' to nil (bug#9363).
9977
0c95fcf7
EZ
99782011-08-25 Eli Zaretskii <eliz@gnu.org>
9979
9980 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
9981 bidi-string-mark-left-to-right; they are unnecessary now.
9982
a2ebe600
DD
99832011-08-25 Deniz Dogan <deniz@dogan.se>
9984
9985 * net/quickurl.el: Documentation typo fixes.
9986
e4ed06f1
CY
99872011-08-25 Chong Yidong <cyd@stupidchicken.com>
9988
9989 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
9990
e5f1c99e
GM
99912011-08-25 Glenn Morris <rgm@gnu.org>
9992
b2948976
GM
9993 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
9994
e5f1c99e
GM
9995 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
9996 (smtpmail-via-smtp): Handle nil response from smtp.
9997
f22f4808
JL
99982011-08-24 Juri Linkov <juri@jurta.org>
9999
10000 * proced.el (proced-marked): Inherit from `error' instead of
10001 `font-lock-warning-face'.
10002
10003 * ibuffer.el (ibuffer-marked-face): Change default face from
10004 `font-lock-warning-face' to `warning'.
10005 (ibuffer-deletion-face): Change default face from
10006 `font-lock-type-face' to `error'.
10007
10008 * battery.el (battery-update): Use the face `error' instead of
10009 `font-lock-warning-face' (bug#6117).
10010
6a93965e
JL
100112011-08-24 Juri Linkov <juri@jurta.org>
10012
10013 * faces.el (success): Change face color from "Green3" to
10014 "ForestGreen" on light background (bug#9353).
10015
1ed43b09
CY
100162011-08-24 Chong Yidong <cyd@stupidchicken.com>
10017
5664fa7b
RT
10018 * window.el (quit-window): Rename from quit-restore-window.
10019 Use same arglist as old quit-window.
1ed43b09
CY
10020 (frame-auto-delete): Doc fix.
10021
10022 * view.el (view-mode-exit): Use quit-window.
10023
11dcdbb2
JL
100242011-08-24 Juri Linkov <juri@jurta.org>
10025
10026 * isearch.el (isearch-ring-adjust1): Start visiting previous
10027 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
10028 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
10029 for empty search string (when the last search string is reused
10030 automatically) to adjust the isearch ring to the last element and
10031 prepare the correct index for further M-p commands (bug#9185).
10032
de62b4df
KH
100332011-08-24 Kenichi Handa <handa@m17n.org>
10034
10035 * international/ucs-normalize.el: If decomposition property of
10036 CHAR is the default one (i.e. a list of CHAR itself), treat it as
10037 nil.
10038 (nfd, nfkd): Likewise.
10039
963b492b
SM
100402011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
10041
10042 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
10043 from process filters aren't reliably transmitted to the surrounding
10044 accept-process-output.
10045 (mpc-proc-check): New function.
10046 (mpc-proc-sync): Use it (bug#8293)
10047
93b6b5e1
SM
100482011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10049
10050 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
10051 Add compatibility functions (bug#9313).
10052
bca633fb
EZ
100532011-08-23 Eli Zaretskii <eliz@gnu.org>
10054
b177498a
EZ
10055 * cus-start.el (all): Add entry for bidi-paragraph-direction.
10056
6df6ae42 10057 * international/uni-bidi.el: Regenerate.
bca633fb 10058
0902a04e
KH
100592011-08-23 Kenichi Handa <handa@m17n.org>
10060
10061 * international/charprop.el:
10062 * international/uni-bidi.el:
10063 * international/uni-category.el:
10064 * international/uni-combining.el:
10065 * international/uni-comment.el:
10066 * international/uni-decimal.el:
10067 * international/uni-decomposition.el:
10068 * international/uni-digit.el:
10069 * international/uni-lowercase.el:
10070 * international/uni-mirrored.el:
10071 * international/uni-name.el:
10072 * international/uni-numeric.el:
10073 * international/uni-old-name.el:
10074 * international/uni-titlecase.el:
10075 * international/uni-uppercase.el: Regenerate.
10076
3bbf23bc
MR
100772011-08-23 Martin Rudalics <rudalics@gmx.at>
10078
10079 * help.el (help-window-setup): Fix message displayed when other
10080 window is reused. (Bug#9341)
10081
b3fd59bd
SM
100822011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10083
1802e444
SM
10084 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
10085 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
10086
b3fd59bd
SM
10087 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
10088 Mark obsolete.
10089 * shell.el (shell-parse-pcomplete-arguments): New function.
10090 (shell-completion-vars): Use it instead (bug#9160).
10091
4eb61348
SM
100922011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
10093
867cab74
SM
10094 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
10095 strings and comments (bug#9333).
10096
4eb61348
SM
10097 * emacs-lisp/debug.el (debug-arglist): New function.
10098 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
10099 (debug-on-entry-1): Handle interpreted closures (bug#9120).
10100
262a1439
JL
101012011-08-22 Juri Linkov <juri@jurta.org>
10102
56ee679c
JL
10103 * progmodes/compile.el (compilation-mode-font-lock-keywords):
10104 Revert regexp that highlights output switches to its old
10105 pre-2010-10-28 value and remove one `?' from it (bug#9319).
10106
262a1439
JL
10107 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
10108 to check for empty output (bug#9226).
10109
f13f86fb
CY
101102011-08-22 Chong Yidong <cyd@stupidchicken.com>
10111
10112 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
10113 symbol-constituent as the default, as that stops font-lock from
10114 working properly (Bug#8843).
10115
c65c9622
LMI
101162011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10117
10118 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
10119 `coding-system-for-*' around the process open call to avoid
10120 auth-source side effects.
e7f2c178 10121 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
10122 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
10123 probe hangs.
c65c9622 10124
23a8a5ab
CY
101252011-08-21 Chong Yidong <cyd@stupidchicken.com>
10126
ff98b2dd
CY
10127 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
10128
23a8a5ab
CY
10129 * emacs-lisp/find-func.el (find-function-noselect): New arg
10130 lisp-only.
10131
10132 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
10133 signal an error for built-in functions (Bug#6664).
10134
f5e3c598
LMI
101352011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10136
10137 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
10138 (smtpmail-try-auth-methods): Use it.
10139
a3f2468a
CY
101402011-08-21 Chong Yidong <cyd@stupidchicken.com>
10141
2c34e8da
CY
10142 * font-lock.el (font-lock-fontify-region)
10143 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
10144 (font-lock-default-unfontify-buffer)
10145 (font-lock-default-fontify-region)
10146 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
10147
b3fd59bd
SM
10148 * progmodes/compile.el (compilation-error-properties):
10149 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
10150 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
10151 `ant' regexp.
ee31aabc 10152
a3f2468a
CY
10153 * net/browse-url.el (browse-url-firefox): Don't call
10154 browse-url-firefox-sentinel unless using -remote (Bug#9328).
10155
8e999f70
GM
101562011-08-20 Glenn Morris <rgm@gnu.org>
10157
c21a496a
GM
10158 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
10159
59ee0542
GM
10160 * tutorial.el (tutorial--default-keys): Update some default bindings.
10161
8e999f70
GM
10162 * files.el (hack-local-variables): Fully ignore case for "mode:".
10163
e3715033
AM
101642011-08-20 Alan Mackenzie <acm@muc.de>
10165
10166 Resolve invalid use of a regexp in regexp-opt.
10167
4d61f28d
JB
10168 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
10169 detection for a java annotation.
e3715033 10170
4d61f28d 10171 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
10172 detection for a java annotation.
10173
4d61f28d
JB
10174 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
10175 handling for java.
e3715033
AM
10176 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
10177
04ed2e9c
CY
101782011-08-20 Chong Yidong <cyd@stupidchicken.com>
10179
10180 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
10181 (Bug#9274).
10182
826cee64
AM
101832011-08-20 Alan Mackenzie <acm@muc.de>
10184
58179cce 10185 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
10186 such a construct. Mainly for when jit-lock etc. starts a chunk
10187 here.
10188
58179cce 10189 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 10190 variable.
58179cce 10191 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
10192 c-make-font-lock-search-function.
10193 (c-make-font-lock-search-function): Use the above function.
10194 (c-make-font-lock-context-search-function): New function.
10195 (c-cpp-matchers): Enhance the preprocessor expression case with
10196 the above function
10197 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
10198 which takes an expression.
10199
10200 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
10201
13009bd8
MR
102022011-08-20 Martin Rudalics <rudalics@gmx.at>
10203
10204 * window.el (display-buffer-reuse-window)
10205 (display-buffer-pop-up-window): Don't reuse or split a side
10206 window.
10207
9234ff7f
GM
102082011-08-19 Glenn Morris <rgm@gnu.org>
10209
10210 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 10211 Downcase "Mode:". (Bug#9331)
9234ff7f 10212
f635daa1
CY
102132011-08-18 Chong Yidong <cyd@stupidchicken.com>
10214
10215 * international/characters.el: Add L and R categories.
10216
10217 * subr.el (bidi-string-mark-left-to-right): Rename from
10218 string-mark-left-to-right. Use category search.
10219
10220 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
10221
bc987f8b
JL
102222011-08-18 Juri Linkov <juri@jurta.org>
10223
10224 * faces.el (error, warning, success): New faces with definitions
10225 copied from old default values of `font-lock-warning-face',
10226 `compilation-warning', `compilation-info' (bug#6117).
10227
10228 * font-lock.el (font-lock-warning-face): Inherit from `error'.
10229
10230 * progmodes/compile.el (compilation-error): Inherit from `error'.
10231 (compilation-warning): Inherit from `warning'.
10232 (compilation-info): Inherit from `success'.
10233
10234 * dired.el (dired-marked): Inherit from `warning'.
10235 (dired-flagged): Inherit from `error'.
10236
57173b96
LMI
102372011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10238
3e79eb87
LMI
10239 * mail/smtpmail.el (auth-source): Require to avoid problems with
10240 binding variables (bug#9298). Also clean up some unused
10241 autoloads.
10242
b3fd59bd
SM
10243 * net/network-stream.el (network-stream-open-starttls):
10244 Support using starttls.el without using gnutls-cli.
57173b96 10245
02b404de
JL
102462011-08-17 Juri Linkov <juri@jurta.org>
10247
10248 * progmodes/grep.el (rgrep): Handle the case when
10249 `grep-find-command' is a cons cell (bug#9278).
10250
8c9177f2
MR
102512011-08-17 Martin Rudalics <rudalics@gmx.at>
10252
10253 * window.el (display-buffer-pop-up-frame): Run frame creation
10254 function with BUFFER current (as special-display-popup-frame
10255 does). Reported by Drew Adams.
10256
3644a0ab
DU
102572011-08-17 Daiki Ueno <ueno@unixuser.org>
10258
10259 * epa-mail.el: Simplify GnuPG group expansion using
10260 epg-expand-group.
10261 (epa-mail-group-alist, epa-mail-group-modtime)
10262 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
10263 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
10264 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
10265 Remove.
10266
5e617bc2 102672011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
10268
10269 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
10270
9c4aeabf
AM
102712011-08-16 Alan Mackenzie <acm@muc.de>
10272
10273 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
10274 Correct, to avoid the inside of macros.
10275
3a99bf64
RS
102762011-08-16 Richard Stallman <rms@gnu.org>
10277
04963aa8
RS
10278 * epa-mail.el: Handle GnuPG group definitions.
10279 (epa-mail-group-alist, epa-mail-group-modtime)
10280 (epa-mail-gnupg-conf-file): New variables.
10281 (epa-mail-parse-groups, epa-mail-sync-groups)
10282 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
10283 (epa-mail-expand-recipients): New functions.
10284 (epa-mail-encrypt): Call epa-mail-expand-recipients.
10285
177549d0
RS
10286 * mail/rmail.el (rmail-epa-decrypt): New command.
10287
fe38beef
RS
10288 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
10289 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
10290 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
10291 (epa-decrypt-armor-in-region): Make error message clearer.
10292
934eacb9
SM
102932011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
10294
10295 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
10296 and "a2b" to "ab" for `prefix'.
10297
d024fb4e
CY
102982011-08-14 Chong Yidong <cyd@stupidchicken.com>
10299
10300 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
10301 filter groups.
de148fee
CY
10302 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
10303 Fourquet (Bug#8804).
d024fb4e 10304
62f1ca49
JB
103052011-08-12 Juanma Barranquero <lekktu@gmail.com>
10306
10307 * startup.el (argi): Declare as global variable (bug#9275).
10308
9ccaaa4b
CY
103092011-08-12 Chong Yidong <cyd@stupidchicken.com>
10310
10311 * subr.el (string-mark-left-to-right): Search the entire string
10312 for RTL script, not just the terminating character. Doc fix.
10313
a3dae87a
SM
103142011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
10315
6cd18349
SM
10316 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
10317 New function.
10318 (js--regexp-literal, js-syntax-propertize-function): Remove.
10319 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
10320 (js-mode-map): Don't rebind electric keys.
10321 (js-insert-and-indent): Remove.
10322 (js-mode): Setup electric-layout and electric-indent instead.
10323
a3dae87a
SM
10324 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
10325
9d5cb631
DU
103262011-08-12 Daiki Ueno <ueno@unixuser.org>
10327
10328 * epa.el (epa-progress-callback-function): Fix the logic of
10329 displaying progress.
10330 * epa-file.el (epa-file-insert-file-contents): Make progress
10331 display more user-friendly.
10332 (epa-file-write-region): Ditto.
10333
3e26a4a2
CY
103342011-08-10 Chong Yidong <cyd@stupidchicken.com>
10335
10336 * subr.el (string-mark-left-to-right): New function.
10337
10338 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
10339 Use string-mark-left-to-right.
10340 (list-buffers-noselect): Caller changed.
10341
a3dae87a
SM
10342 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10343 Use string-mark-left-to-right.
3e26a4a2
CY
10344 (tabulated-list-print): Recenter after moving point.
10345
ac8cf6e6
JL
103462011-08-10 Juri Linkov <juri@jurta.org>
10347
10348 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
10349 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
10350 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
10351
8d96c9a4
CY
103522011-08-09 Chong Yidong <cyd@stupidchicken.com>
10353
10354 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
10355 (Bug#7554).
10356
7be1c708 103572011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
10358
10359 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
10360 character. (Bug#6594)
10361
37e11a63
CY
103622011-08-08 Chong Yidong <cyd@stupidchicken.com>
10363
839dde57
CY
10364 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
10365 (image-dired--with-db-file): New macro.
10366 (image-dired-write-tags, image-dired-remove-tag)
10367 (image-dired-create-gallery-lists, image-dired-write-comments)
10368 (image-dired-get-comment, image-dired-mark-tagged-files)
10369 (image-dired-list-tags, image-dired-gallery-generate): Use it.
10370 (image-dired-gallery-generate): Use insert-file-contents.
10371
37e11a63
CY
10372 * time.el (display-time-world-list, display-time-world-display):
10373 * time-stamp.el (time-stamp-string):
10374 * vc/add-log.el (add-change-log-entry): Use setenv instead of
10375 set-time-zone-rule (Bug#7337).
10376
0b4946c4
DU
103772011-08-08 Daiki Ueno <ueno@unixuser.org>
10378
10379 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
10380 (epg-error-to-string, epg-errors-to-string): New function.
10381 (epg-wait-for-completion): Reverse errors list.
10382 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
10383 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
10384 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
10385 (epg-sign-keys, epg-generate-key-from-file)
10386 (epg-generate-key-from-string): Format errors by using
10387 epg-errors-to-string (bug#9255).
10388 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
10389
75bfc667
JL
103902011-08-07 Juri Linkov <juri@jurta.org>
10391
10392 * faces.el (list-faces-display): Remove extra angle bracket
10393 from `help-mode-map'.
10394
10395 * info.el (Info-history-toc-nodes): Doc fix.
10396
10397 * longlines.el (longlines-mode): Doc fix.
10398
673e08bb
SM
103992011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
10400
4640dd88
SM
10401 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
10402 of statements and in a few more cases (bug#9183).
10403
673e08bb
SM
10404 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
10405 New functions.
10406 (cl-transform-lambda): Use them (bug#9239).
10407
89b3f019
MR
104082011-08-05 Martin Rudalics <rudalics@gmx.at>
10409
10410 * window.el (display-buffer-same-window)
10411 (display-buffer-same-frame, display-buffer-other-window)
10412 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
10413 (pop-to-buffer-other-window)
10414 (pop-to-buffer-same-frame-other-window)
10415 (pop-to-buffer-other-frame): Make them defuns.
10416 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
10417
640c8776
SM
104182011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10419
10420 * subr.el (make-composed-keymap): Move from C. Change calling
10421 convention, and improve docstring to bring attention to a subtle point.
10422 * minibuffer.el (completing-read-default): Adjust accordingly.
10423
63648a95
MA
104242011-08-03 Michael Albinus <michael.albinus@gmx.de>
10425
10426 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
10427 (tramp-open-shell): Use `tramp-shell-quote-argument'.
10428
10429 * net/trampver.el: Update release number.
10430
b796c9b7
SM
104312011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10432
10433 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
10434 "in" (bug#9190).
10435
2239d7d5
LMI
104362011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
10437
e07dd7c3
LMI
10438 * mail/sendmail.el (sendmail-query-once): Restore the current
10439 buffer after querying (bug#9074).
10440
0e6a2bd7
LMI
10441 * dired.el (dired-flagged): Use different faces for marked and
10442 flagged files (bug#6117).
10443
ce887515
LMI
10444 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
10445 (bug#4433).
10446
92f2affc
LMI
10447 * ido.el (ido-mode): Switch off the message if called
10448 non-interactively.
10449
57d5aff0
LMI
10450 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
10451 before 587, since it appears that that's more likely to work for
10452 more people.
10453
98cd6c18 10454 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 10455 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
10456 exist.
10457
b96dec83
LMI
10458 * info.el: Remove the `Info-beginning-of-buffer' function
10459 (bug#8325).
10460
b796c9b7
SM
10461 * net/network-stream.el (network-stream-open-starttls):
10462 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 10463
d90e2ea0
MR
104642011-08-01 Martin Rudalics <rudalics@gmx.at>
10465
10466 * window.el (display-buffer-in-window): Don't set dedicated status
10467 of window here (Bug#9215).
10468 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
10469 (display-buffer-pop-up-side-window)
b796c9b7 10470 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 10471
cca09170
SM
104722011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
10473
10474 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
10475 before binding generated-autoload-file.
10476
027b979c
DD
104772011-08-01 Deniz Dogan <deniz@dogan.se>
10478
10479 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
10480
3c7ee4f3
MA
104812011-07-30 Michael Albinus <michael.albinus@gmx.de>
10482
10483 Sync with Tramp 2.2.2.
10484
10485 * net/trampver.el: Update release number.
10486
2cc8e51a
JL
104872011-07-30 Juri Linkov <juri@jurta.org>
10488
10489 * dired-aux.el (dired-touch-initial): Remove function.
10490 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
10491 current time, and `default' to the last modification time of the
10492 current marked file (bug#6887).
10493
a514d856
JM
104942011-07-28 Jose E. Marchesi <jemarch@gnu.org>
10495
10496 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 10497 numeric argument to read-number (bug#9163).
a514d856 10498
8a7eddd7
MA
104992011-07-27 Michael Albinus <michael.albinus@gmx.de>
10500
10501 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
10502 connection process, it could be nil.
10503
1ddd96f5
LL
105042011-07-27 Leo Liu <sdl.web@gmail.com>
10505
10506 Simplify url handling in rcirc-mode.
10507
10508 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
10509 (rcirc-browse-url-at-mouse): Remove.
10510 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
10511
b248a85d
AM
105122011-07-26 Alan Mackenzie <acm@muc.de>
10513
10514 Fontify bitfield declarations properly.
10515
10516 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
10517 (c-symbol-chars): Now exported as a lang variable.
10518 (c-not-primitive-type-keywords): New lang variable.
10519
10520 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
10521 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 10522 parsed as a bitfield declaration.
b248a85d 10523
b796c9b7
SM
10524 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10525 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
10526 (c-punctuation-in): New function.
10527 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
10528 declarations properly.
10529
68575ab0
UJ
105302011-07-26 Ulf Jasper <ulf.jasper@web.de>
10531
10532 * calendar/icalendar.el (icalendar--all-events): Take care of
10533 multiple vcalendars in a single file.
b796c9b7 10534 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 10535
0f0a88b9
DD
105362011-07-25 Deniz Dogan <deniz@dogan.se>
10537
10538 * image.el (insert-image): Clarifying docstring.
10539
0b3f36df
MA
105402011-07-24 Michael Albinus <michael.albinus@gmx.de>
10541
10542 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
10543 `tramp-send-command-and-check' if there is no error.
10544 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
10545
a9901f61
AM
105462011-07-22 Alan Mackenzie <acm@muc.de>
10547
10548 Prevent cc-langs.elc being loaded at run time.
10549
10550 * progmodes/cc-mode.el: Remove two autoload forms which loaded
10551 cc-langs.
10552
4d61f28d 10553 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
10554 "(require 'cc-langs)". Quote a form so it will evaluate at
10555 (cc-mode's) compilation time.
10556
11d074b2
MA
105572011-07-22 Michael Albinus <michael.albinus@gmx.de>
10558
10559 * net/tramp.el (tramp-file-name-handler): Avoid recursive
10560 loading. (Bug#9114)
10561
938b94c8
MR
105622011-07-21 Martin Rudalics <rudalics@gmx.at>
10563
10564 * window.el (display-buffer-pop-up-window)
10565 (display-buffer-pop-up-side-window)
10566 (display-buffer-in-side-window): Call display-buffer-set-height
10567 and display-buffer-set-width after setting the new window's
b796c9b7 10568 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 10569
bfa4f190
SS
105702011-07-20 Sam Steingold <sds@gnu.org>
10571
10572 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
10573 (etags-tags-included-tables): Call `convert-standard-filename' on
10574 the file names contained in TAGS so that windows Emacs can handle
10575 TAGS files created by cygwin ctags.
10576
8ca42262
LMI
105772011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
10578
10579 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
10580 which apparently didn't work.
10581
5db2afd2 105822011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 10583
5db2afd2
RW
10584 * proced.el (proced-send-signal): For *Marked Processes* buffer
10585 put point at beginning of buffer.
10586
92e15d10
SB
105872011-07-19 Stephen Berman <stephen.berman@gmx.net>
10588
10589 * proced.el (proced-format): Make header lines align with the text
10590 (bug#1779).
10591
1bfd59e5
LMI
105922011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10593
10594 * view.el (view-buffer): Allow running in `special' modes if we're
10595 visiting a file (bug#8615).
10596
f5aae37c
MR
105972011-07-19 Martin Rudalics <rudalics@gmx.at>
10598
10599 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
10600 (display-buffer-alist-set-1, display-buffer-alist-set-2):
10601 New functions.
f5aae37c
MR
10602 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
10603 more accurately.
10604
bf2c1571
AM
106052011-07-18 Alan Mackenzie <acm@muc.de>
10606
10607 Fontify declarators properly when, e.g., a jit-lock chunk begins
10608 inside a declaration.
10609
10610 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
10611
b796c9b7
SM
10612 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10613 New function.
bf2c1571
AM
10614 (c-complex-decl-matchers): Insert reference to
10615 c-font-lock-enclosing-decls.
10616
10617 * progmodes/cc-engine.el (c-backward-single-comment):
10618 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
10619 to nil around calls to (forward-comment -1).
10620
4e190b80
LMI
106212011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10622
12dc863d
LMI
10623 * image.el (put-image): Doc typo fix.
10624
a762e966
LMI
10625 * progmodes/etags.el (tags-search): Doc typo fix.
10626
4e190b80
LMI
10627 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
10628 password if we get errors 550 to 554.
10629
f019fb21
LMI
106302011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10631
b796c9b7 10632 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 10633
81746738
LMI
10634 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
10635 indentation character (bug#6380).
10636
3ee3a1b5
LMI
10637 * files.el (buffer-offer-save): Made permanently local (bug#6241).
10638
c82f64de
LMI
10639 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
10640 to clarify what the problem is (bug#4291).
10641
f019fb21
LMI
10642 * simple.el (current-kill): Clarify what
10643 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
10644 (auto-fill-mode): Document `auto-fill-function' in relation to
10645 `auto-fill-mode' (bug#2470).
f019fb21 10646
0794775d
LM
106472011-07-16 Lawrence Mitchell <wence@gmx.li>
10648
10649 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
10650 method if slot is read-only (bug#9035).
10651
be39b8cc
MR
106522011-07-16 Martin Rudalics <rudalics@gmx.at>
10653
b796c9b7 10654 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 10655 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
10656 selected before, see discussion of (Bug#8615), (Bug#6954).
10657 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 10658
6ccf7859
GM
106592011-07-15 Glenn Morris <rgm@gnu.org>
10660
10661 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 10662 Respect help-form.
6ccf7859 10663
87e86684
LM
106642011-07-09 Lawrence Mitchell <wence@gmx.li>
10665
10666 * net/gnutls.el (gnutls-min-prime-bits): New variable.
10667 (gnutls-negotiate): Use it.
10668
d6066239
LMI
106692011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10670
b796c9b7
SM
10671 * net/gnutls.el (gnutls-negotiate):
10672 Upcase `gnutls-algorithm-priority'.
d6066239 10673
bd23ebc0
GM
106742011-07-15 Glenn Morris <rgm@gnu.org>
10675
c65bca65
GM
10676 * jka-compr.el (jka-compr-verbose): Move from here...
10677 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
10678 Add missing :version tag.
10679 * info.el: No need to require jka-compr when compiling.
bd23ebc0 10680
478615cc
LMI
106812011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10682
7b41decb
LMI
10683 * net/gnutls.el (gnutls-algorithm-priority): New variable.
10684 (gnutls-negotiate): Use it.
10685
dbc44fcd
LMI
10686 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
10687
06789f97
LMI
10688 * info.el (Info-beginning-of-buffer): New command.
10689 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
10690 announcing `b' as the key (bug#8325).
ab896c37 10691 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 10692
c39da690
LMI
10693 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
10694
3aa5f34b
LMI
10695 * international/mule-cmds.el
10696 (describe-specified-language-support): Make the error message
10697 clearer (bug#8905).
10698
4bf0979f
LMI
10699 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
10700
478615cc
LMI
10701 * isearch.el (isearch-barrier): Add a doc string, since it's
10702 mentioned in a function doc string (bug#8678).
10703
75c68aa1
MR
107042011-07-15 Martin Rudalics <rudalics@gmx.at>
10705
10706 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
10707 buffer argument (Bug#9083) and self-identifying label argument.
10708
a7c33da2
GM
107092011-07-15 Glenn Morris <rgm@gnu.org>
10710
10711 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
10712
2f5c6024
LMI
107132011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10714
10715 * man.el (Man-fontify-manpage): Fix message when formatting the
10716 man page (bug#7929).
10717
0bb23927 107182011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
10719
10720 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
10721 argument LRM; if non-nil, append an invisible LRM character to the
10722 buffer name.
10723 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
10724 last argument non-nil, when formatting buffer names.
0bb23927
EZ
10725 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
10726 paragraph direction.
cce4b0a7 10727
621ef9ab
LMI
107282011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10729
d1583c48
LMI
10730 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
10731 the man page name (bug#7929).
10732
6a57fb5f
LMI
10733 * image.el (put-image): Mention the `put-image' overlay property
10734 (bug#7834).
10735
d7956b14
LMI
10736 * scroll-bar.el (set-scroll-bar-mode): Mention that
10737 `scroll-bar-mode' lists the values (bug#7772).
10738
5b2d4a66
LMI
10739 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
10740 command (bug#7729).
10741
7509a874
LMI
10742 * rect.el (apply-on-rectangle): Return the point after the last
10743 operation.
10744 (string-rectangle): Go to the point after the last operation
10745 (bug#7522).
10746
4fe74b19
LMI
10747 * printing.el (pr-toggle-region): Clarify the documentation
10748 slightly (bug#7493).
10749
b796c9b7
SM
10750 * time.el (display-time-update):
10751 Allow `display-time-mail-function' to return nil (bug#7158).
10752 Fix suggested by Detlev Zundel.
ab283561 10753
fc233c9d
LMI
10754 * vc/diff.el (diff): Clarify the order the file names are read
10755 (bug#7111).
10756
43f5740b
LMI
10757 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
10758 the doc string (bug#7015).
10759
f2182a76
LMI
10760 * font-lock.el (font-lock-maximum-decoration): Mention what
10761 numeric levels mean (bug#6935).
10762
621ef9ab
LMI
10763 * startup.el (initial-buffer-choice): Don't mention the `none'
10764 selection, which is against policy.
10765
adc47434
MR
107662011-07-14 Martin Rudalics <rudalics@gmx.at>
10767
b796c9b7
SM
10768 * window.el (display-buffer-normalize-special):
10769 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 10770
7e5bfb8f
EZ
107712011-07-14 Eli Zaretskii <eliz@gnu.org>
10772
10773 * subr.el (version<, version<=, version=): Mention "-CVS" and
10774 "-12345" alpha version numbers.
10775
27fa387a
CY
107762011-07-14 Chong Yidong <cyd@stupidchicken.com>
10777
10778 * bindings.el: Add advertised binding for set-mark-command
10779 (Bug#5772).
10780
8bdfa064
CY
107812011-07-14 Chong Yidong <cyd@stupidchicken.com>
10782
10783 * bindings.el (mode-line-other-buffer):
10784 * bookmark.el (bookmark-bmenu-2-window):
10785 * bs.el (bs-cycle-next, bs-cycle-previous):
10786 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
10787 switch-to-buffer.
10788
10789 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 10790 Delete.
8bdfa064 10791
5eba16a3
JB
107922011-07-14 Juanma Barranquero <lekktu@gmail.com>
10793
10794 * follow.el (follow-debug-message, follow-redisplay):
10795 * jka-cmpr-hook.el (with-auto-compression-mode):
10796 Fix typos in docstrings.
10797
15853710
LMI
107982011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10799
a28e4607
LMI
10800 * subr.el (with-silent-modifications): Clarify somewhat what the
10801 macro inhibits (bug#6525).
10802
15853710
LMI
10803 * simple.el (eval-expression): Note what it does if called
10804 interactively (bug#6495).
10805
bee0fcef
CY
108062011-07-13 Chong Yidong <cyd@stupidchicken.com>
10807
b796c9b7
SM
10808 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
10809 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
10810
10811 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10812 Remove switch-to-buffer.
10813
58274504
LMI
108142011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10815
bd2fcc8d
LMI
10816 * files.el (make-directory): Clarify that an error will be raised
10817 if there's an error (bug#6397).
10818
0f04b32c
LMI
10819 * startup.el (initial-buffer-choice): Add `none' as a choice
10820 (bug#6234).
10821
465c5fc8
LMI
10822 * subr.el (add-hook): Clarify section about buffer-local hooks
10823 (bug#6218).
10824
58274504
LMI
10825 * dired.el (dired-flagged): Clarify doc string (bug#6117).
10826
bead9a43
JB
108272011-07-13 Juanma Barranquero <lekktu@gmail.com>
10828
10829 * tabify.el (untabify): Preserve the current column so that point
10830 doesn't move (bug#6032).
10831
3af98a7b
LMI
108322011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10833
b796c9b7
SM
10834 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
10835 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 10836
6240145a
GM
108372011-07-13 Glenn Morris <rgm@gnu.org>
10838
10839 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
10840 (dired-insert-directory): Give a message the first time
10841 if ls is found not to support --dired.
10842
1d8c2ccc
LMI
108432011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10844
10845 * simple.el (toggle-truncate-lines): Clarify what is toggled
10846 (bug#5580). Text by Drew Adams.
10847
5fc4038e
CY
108482011-07-13 Chong Yidong <cyd@stupidchicken.com>
10849
10850 * simple.el (blink-matching-open): Make the error message from the
10851 last change less verbose.
10852
bf6012e5
DN
108532011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
10854
10855 * font-lock.el (font-lock-comment-face): Use the high contrast
10856 "yellow" color for font-lock-comment-face on low color terminals
10857 using a dark background color (bug#4221).
10858
343c3b5a
LMI
108592011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10860
7e9505c5
LMI
10861 * dired.el (dired-insert-set-properties): Make the doc string
10862 reflect what it does now (bug#5325).
10863
c26fdcf5
LMI
10864 * simple.el (blink-matching-open): Say that we were unable to find
10865 the match within the limit, if we're limited (bug#5122).
10866
bb388cc5
LMI
10867 * international/mule-cmds.el (prefer-coding-system): Add an
10868 example (bug#4869).
10869
343c3b5a
LMI
10870 * progmodes/etags.el (tags-search): Document `file-list-form'
10871 (bug#4731).
10872
2a517d45
LM
108732011-07-13 Lawrence Mitchell <wence@gmx.li>
10874
10875 * net/browse-url.el (browse-url-default-browser)
10876 (browse-url-browser-function): Make the default browser choice a
10877 bit more logical (bug#4300). Also clean up the doc string.
10878
b6c78ef2
JB
108792011-07-13 Juanma Barranquero <lekktu@gmail.com>
10880
10881 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
10882 binary endings (bug#4440).
10883
1c4dd947
LMI
108842011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10885
a2014063
LMI
10886 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
10887 which can be pretty annoying (bug#8971).
10888
9c9c2d88
LMI
10889 * jka-compr.el (jka-compr-verbose): New variable, and use
10890 throughout (bug#8971).
10891
1c4dd947
LMI
10892 * info.el (Info-find-file): Fall back on the installation
10893 directory if we can't find the info node anywhere else.
10894
a1c9f41b
SO
108952011-07-13 Sergei Organov <osv@javad.com> (tiny change)
10896
10897 * vc/vc.el (vc-revert-file):
10898 Don't set file time-stamp in the past. (Bug#5181)
10899
536f3d36
LMI
109002011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10901
7152b011
LMI
10902 * files.el (after-find-file): Give a better error message when
10903 trying to find a symlink that points to a file that doesn't exist
10904 (bug#4398).
10905
536f3d36
LMI
10906 * progmodes/cc-vars.el: Remove (probably) misleading comment
10907 (bug#4396).
10908
460c0fba
JB
109092011-07-12 Johan Bockgård <bojohan@gnu.org>
10910
10911 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
10912
7a6bda45
CY
109132011-07-12 Chong Yidong <cyd@stupidchicken.com>
10914
10915 * mouse-sel.el: Hack restoring functionality, while keeping
10916 compatibility with 2010-07-03 changes to mouse selection.
10917 (mouse-sel-primary-overlay): New var.
10918 (mouse-sel-selection-alist): Use it.
10919 (mouse-sel-mode): Doc fix; remove points that are default features
10920 of mouse.el.
10921
c79598ef
JB
109222011-07-12 Johan Bockgård <bojohan@gnu.org>
10923
10924 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10925 Fix previous fix (bug#2490).
10926
ff8be6ef
RW
109272011-07-12 Roland Winkler <winkler@gnu.org>
10928
b796c9b7
SM
10929 * textmodes/bibtex.el (bibtex-initialize):
10930 Use pop-to-buffer-same-window.
ff8be6ef
RW
10931 (bibtex-search-entries): Fix interactive call.
10932
296ba3ee
LMI
109332011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10934
f5242a02 10935 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
10936 Fontise bytecomp Error lines more correctly (bug#2490).
10937 Fix suggested by Johan Bockgård.
f5242a02 10938
296ba3ee
LMI
10939 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
10940
10941 * dired-x.el (dired-guess-default): Use `delete-dups'.
10942
f69fd0d2
CY
109432011-07-12 Chong Yidong <cyd@stupidchicken.com>
10944
10945 * dired.el (dired-mark-prompt):
10946 * dired-aux.el (dired-read-shell-command): Doc fix.
10947
eab5dc07
LMI
109482011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10949
b796c9b7
SM
10950 * mail/sendmail.el (sendmail-query-once):
10951 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
10952 emacs -Q.
10953
10954 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10955
eab5dc07
LMI
10956 * cus-edit.el (custom-file): Take an optional no-error variable.
10957 (customize-save-variable): Set the variable, and give a warning if
10958 running under "emacs -q".
10959
a1e65d42
JB
109602011-07-11 Juanma Barranquero <lekktu@gmail.com>
10961
10962 * loadhist.el (unload-feature-special-hooks):
10963 Add `auto-coding-functions', `fill-nobreak-predicate' and
10964 `find-directory-functions' (bug#5327).
10965
1d52da10
LMI
109662011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10967
be958f1d
LMI
10968 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
10969
5bedb26c
LMI
10970 * cus-edit.el (custom-guess-name-alist): -alist variables should
10971 use the `alist' type (bug#3120). Suggested by Drew Adams.
10972
1d52da10
LMI
10973 * printing.el: Add documentation to all the `pr-toggle-' commands.
10974
cd394be1 109752011-07-11 Leo Liu <sdl.web@gmail.com>
481a51b6
LL
10976
10977 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
10978 backends where it makes sense (bug#2623).
10979
dcc88d8a
LMI
109802011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10981
c3de9feb
LMI
10982 * dired-x.el (dired-guess-default): Remove duplicate shell command
10983 entries (bug#2028).
8a93078b 10984 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 10985 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 10986
dcc88d8a
LMI
10987 * subr.el (remove-duplicates): New conveniency function.
10988
505e3645
LMI
109892011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
10990
10991 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
10992 (bug#1526).
10993
109942011-07-10 Martin Rudalics <rudalics@gmx.at>
10995
10996 * window.el (display-buffer-normalize-default): Don't invert
10997 meaning of even-window-heights. Reported by Eli Zaretskii
10998 <eliz@gnu.org>.
10999
455e4fa1
BR
110002011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
11001
11002 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
11003
8e0bc3e9
CY
110042011-07-10 Chong Yidong <cyd@stupidchicken.com>
11005
11006 * window.el (display-buffer): Fix arguments to
11007 display-buffer-reuse-window in last change.
11008
fa7c3228
CY
11009 * faces.el (link): Use a less saturated blue on light backgrounds.
11010
11011 * startup.el (fancy-startup-text, fancy-about-text)
11012 (fancy-startup-tail): Use font-lock faces, for background safety.
11013
c0a7f300
BN
110142011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
11015
b796c9b7
SM
11016 * emulation/viper-cmd.el (viper-change-state-to-vi):
11017 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 11018
4dc2a129
MR
110192011-07-09 Martin Rudalics <rudalics@gmx.at>
11020
11021 * window.el (display-buffer-default-specifiers): Remove.
11022 (display-buffer-macro-specifiers): Remove default specifiers.
11023 (display-buffer-alist): Default to nil.
b796c9b7 11024 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
11025 (display-buffer-pop-up-window): Allow splitting internal
11026 windows. Check whether a live window was created.
11027 (display-buffer-other-window-means-other-frame)
11028 (display-buffer-normalize-arguments): Rename to
11029 display-buffer-normalize-argument and rewrite. Set the
11030 other-window specifier.
11031 (display-buffer-normalize-special): New function.
11032 (display-buffer-normalize-options): Rename to
11033 display-buffer-normalize-default and rewrite.
11034 (display-buffer-normalize-options-inhibit): Remove.
11035 (display-buffer-normalize-specifiers): Rewrite.
11036 (display-buffer): Process other-window specifier and call
11037 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
11038 more faithfully.
b796c9b7 11039 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 11040 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
11041 (display-buffer-in-window, display-buffer-alist-set):
11042 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
11043 <tassilo@member.fsf.org>.
11044
2d43b8c9
LL
110452011-07-09 Leo Liu <sdl.web@gmail.com>
11046
11047 * register.el (insert-register): Restore accidental change on
11048 2011-06-26. (Bug#9028)
11049
7f9b7c53
GM
110502011-07-09 Glenn Morris <rgm@gnu.org>
11051
11052 * subr.el (remq): Handle the empty list. (Bug#9024)
11053
f042cfd8
AS
110542011-07-08 Andreas Schwab <schwab@linux-m68k.org>
11055
11056 * mail/sendmail.el (send-mail-function): No longer delay custom
11057 initialization.
11058 * custom.el (custom-initialize-delay): Doc fix.
11059
856b2f11
SM
110602011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11061
11062 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
11063
afae1d68
MA
110642011-07-08 Michael Albinus <michael.albinus@gmx.de>
11065
11066 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
11067 human-friendly prompt.
11068
0757af94
SM
110692011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11070
11071 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
11072 provided by a particular plugin.
11073
d760b731
LMI
110742011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
11075
11076 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
11077 save customizations (with "emacs -Q"), just set the variable
11078 instead of erroring out.
11079
11080 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
11081
cd79ce90
JL
110822011-07-08 Juri Linkov <juri@jurta.org>
11083
11084 * arc-mode.el (archive-zip-expunge, archive-zip-update)
11085 (archive-zip-update-case): Use 7z if found by `executable-find'.
11086 The order of searching the available programs is the same as in
11087 `archive-zip-extract' (bug#8968).
11088
14cc04aa
CY
110892011-07-07 Chong Yidong <cyd@stupidchicken.com>
11090
11091 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
11092 (menu-bar-options-menu): Tweak descriptions.
11093
0a1848ec
LMI
110942011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11095
11096 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
11097 menu items into verb phrases (bug#1421). Also refill to fit under
11098 80 columns.
11099
f5bd0689
CY
111002011-07-07 Chong Yidong <cyd@stupidchicken.com>
11101
538e85c6
CY
11102 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
11103 (Info-read-node-name): Doc fix (Bug#1084).
11104
f5bd0689
CY
11105 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
11106 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
11107 (end-of-sexp, beginning-of-sexp)
11108 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
11109 (forward-symbol, forward-same-syntax, word-at-point)
11110 (sentence-at-point): Doc fix (Bug#1144).
11111
56ec5115
LMI
111122011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11113
f3f8e37f
LMI
11114 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
11115 should cover it (bug#1281).
11116
0757af94 11117 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 11118
e9fce1ac 11119 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
11120 negotiation fails, then possibly try again with a non-encrypted
11121 connection (bug#9017).
11122
56ec5115
LMI
11123 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
11124 be used.
11125
c2f9aec8
RS
111262011-07-07 Richard Stallman <rms@gnu.org>
11127
11128 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
11129 property, and handle its changed format.
11130 Look for the correct line number.
11131 Use file's line contents (but not past first =) to find
11132 correct line in message.
11133
ef7b981d 111342011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
11135
11136 * international/characters.el (build-unicode-category-table):
11137 Delete it.
0757af94 11138 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 11139
0757af94 11140 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
11141 to src/chartab.c.
11142 (get-char-code-property): Call unicode-property-table-internal to
11143 load a file. Call get-unicode-property-internal where necessary.
11144 (put-char-code-property): Call unicode-property-table-internal to
11145 load a file. Call put-unicode-property-internal where necessary.
11146 put-unicode-property-internal where necessary.
0757af94
SM
11147 (char-code-property-description):
11148 Call unicode-property-table-internal to load a file.
c805dec0
KH
11149
11150 * international/charprop.el:
11151 * international/uni-bidi.el:
11152 * international/uni-category.el:
11153 * international/uni-combining.el:
11154 * international/uni-comment.el:
11155 * international/uni-decimal.el:
11156 * international/uni-decomposition.el:
11157 * international/uni-digit.el:
11158 * international/uni-lowercase.el:
11159 * international/uni-mirrored.el:
11160 * international/uni-name.el:
11161 * international/uni-numeric.el:
11162 * international/uni-old-name.el:
11163 * international/uni-titlecase.el:
11164 * international/uni-uppercase.el: Regenerate.
11165
11166 * loadup.el: Load international/charprop.el before
11167 international/characters.
11168
e14b388a
CY
111692011-07-07 Chong Yidong <cyd@stupidchicken.com>
11170
11171 * window.el (next-buffer, previous-buffer): Signal an error if
11172 called from a minibuffer window.
11173
11174 * bindings.el: Revert 2011-07-04 change.
11175
354cf0ba
RS
111762011-07-06 Richard Stallman <rms@gnu.org>
11177
11178 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
11179 (rmail-mime-insert-bulk, rmail-mime-insert-text):
11180 Treat markers like ints.
11181 (rmail-mime-entity): Doc fix.
11182
a48868a7
LMI
111832011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11184
4906cd3d
LMI
11185 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
11186 defcustom again for backwards compatibility.
11187
e0457abe
LMI
11188 * simple.el (shell-command-on-region): Fill.
11189
d67f7e1f
LMI
11190 * dired-aux.el (dired-kill-line): Add a doc string.
11191
fe204702
LMI
11192 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
11193 to "\\sw\\|\\s_" (bug#358).
11194
a48868a7
LMI
11195 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
11196 (dired-unmark-backward): Ditto.
11197 (dired-flag-backup-files): Ditto.
11198
11199 * dired-x.el (dired-mark-sexp): Ditto.
11200
aa8a705c
RS
112012011-07-06 Richard Stallman <rms@gnu.org>
11202
11203 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
11204 (rmail-mime-entity): New arg TRUNCATED.
11205 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
11206 New functions.
11207 (rmail-mime-save): Warn if entity is truncated.
11208 (rmail-mime-toggle-hidden): Likewise, for showing.
11209 (rmail-mime-process-multipart): Record when an entity is truncated.
11210
a9a936b9
RS
11211 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
11212 if ENTITY is a string.
11213
1f2b92cb
LMI
112142011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11215
f4f73198 11216 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
11217 of faces when `M-C-x'-ing their definitions (bug#8378).
11218 Also clean up the code slightly.
f4f73198 11219
12b16734 11220 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 11221 because that makes the colors go away.
12b16734 11222
f0691d22
LMI
11223 * mail/sendmail.el (send-mail-function): Change the default to
11224 `sendmail-query-once'.
9e87df06 11225 (sendmail-query-once): Add an autoload cookie.
f0691d22 11226
1f2b92cb
LMI
11227 * net/network-stream.el (network-stream-open-starttls): Try using
11228 a plain connection even if the server offered STARTTLS, and we
11229 kinda wanted to use it, if Emacs doesn't have any STARTTLS
11230 capability. This should make smtpmail.el work in slightly more
11231 configurations.
11232
1cdd2a1b
MA
112332011-07-06 Michael Albinus <michael.albinus@gmx.de>
11234
11235 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
11236 New defun.
11237 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
11238
fbcc67e2
MM
112392011-07-06 Michael R. Mauger <mmaug@yahoo.com>
11240
11241 * progmodes/sql.el: Version 3.0
0757af94 11242 (sql-product-alist): Add product :completion-object,
fbcc67e2 11243 :completion-column, and :statement attributes.
0757af94 11244 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 11245 (sql-mode-syntax-table): Mark all punctuation.
0757af94 11246 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
11247 ansi keywords.
11248 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 11249 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
11250 (sql-oracle-show-reserved-words): New function for development.
11251 (sql-product-font-lock): Simplify for source code buffers.
11252 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
11253 New functions.
11254 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
11255 (sql-mode-map): Add statement movement functions.
11256 (sql-ansi-statement-starters, sql-oracle-statement-starters):
11257 New variable.
fbcc67e2
MM
11258 (sql-statement-regexp, sql-beginning-of-statement)
11259 (sql-end-of-statement, sql-signum): New functions.
0757af94 11260 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
11261 (sql-show-sqli-buffer): Bug fix.
11262 (sql-interactive-mode): Store connection data as buffer local.
0757af94 11263 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
11264 with sql-interactive-mode.
11265 (sql-save-connection): Save buffer local settings.
0757af94 11266 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
11267 (sql-product-interactive): Bug fix.
11268 (sql-preoutput-hold): New variable.
11269 (sql-interactive-remove-continuation-prompt): Bug fixes.
11270 (sql-debug-redirect): New variable.
11271 (sql-str-literal): New function.
11272 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 11273 Redesign.
fbcc67e2
MM
11274 (sql-oracle-save-settings, sql-oracle-restore-settings)
11275 (sql-oracle-list-all, sql-oracle-list-table): New functions.
11276 (sql-completion-object, sql-completion-column)
11277 (sql-completion-sqlbuf): New variables.
11278 (sql-build-completions-1, sql-build-completions)
11279 (sql-try-completion): New functions.
11280 (sql-read-table-name): Use them.
11281 (sql-contains-names): New buffer local variable.
11282 (sql-list-all, sql-list-table): Use it.
11283 (sql-oracle-completion-types): New variable.
11284 (sql-oracle-completion-object, sql-sqlite-completion-object)
11285 (sql-postgres-completion-object): New functions.
11286
d4eaeab1
GM
112872011-07-06 Glenn Morris <rgm@gnu.org>
11288
11289 * window.el (pop-to-buffer): Doc fix.
11290
322b7dab 112912011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
11292
11293 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
11294
322b7dab 112952011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 11296
322b7dab 11297 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 11298
322b7dab 11299 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 11300
605dd5bf
CY
113012011-07-05 Chong Yidong <cyd@stupidchicken.com>
11302
11303 * button.el (button): Inherit from link face. Suggested by Dan
11304 Nicolaescu.
11305
7dbfa719
SM
113062011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11307
3db614b0
SM
11308 * progmodes/gdb-mi.el: Fit in 80 columns.
11309 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
11310 switch-to-buffer.
11311
7dbfa719
SM
11312 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
11313 if imenu is simply not configured (bug#8941).
11314
919d884a
KM
113152011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
11316
11317 * allout.el (allout-post-undo-hook): New allout outline-change
11318 event hook to signal undo activity.
11319 (allout-post-command-business): Run allout-post-undo-hook if an
11320 undo just occurred.
7dbfa719
SM
11321 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
11322 * allout-widgets.el (allout-widgets-after-undo-function):
11323 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
11324 in the vicinity of an undo.
11325 (allout-widgets-mode): Include allout-widgets-after-undo-function
11326 on the new allout-post-undo-hook.
11327
450a0f09
SM
113282011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11329
11330 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
11331 Let define-derived-mode define it.
11332 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
11333 cycles of abbrev-table inheritance (bug#8998).
11334
2de69e00
RW
113352011-07-05 Roland Winkler <winkler@gnu.org>
11336
11337 * textmodes/bibtex.el: Add support for biblatex.
11338 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
11339 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
11340 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
11341 (bibtex-entry-alist, bibtex-field-alist): New variables.
11342 (bibtex-entry-field-alist): Obsolete alias for
11343 bibtex-BibTeX-entry-alist.
11344 (bibtex-entry-alist, bibtex-field-alist): New widgets.
11345 (bibtex-set-dialect): New command.
11346 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
11347 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
11348 Bind via bibtex-set-dialect.
2de69e00
RW
11349 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
11350 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
11351 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
11352 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
11353 Define via bibtex-set-dialect.
450a0f09
SM
11354 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
11355 Obey bibtex-no-opt-remove-re.
2de69e00
RW
11356 (bibtex-vec-push, bibtex-vec-incr): New functions.
11357 (bibtex-format-entry, bibtex-field-list)
11358 (bibtex-print-help-message, bibtex-validate)
11359 (bibtex-search-entries): Use new format of bibtex-entry-alist.
11360
2dcdbdd9
SM
113612011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11362
11363 * progmodes/compile.el (compilation-goto-locus):
11364 * net/tramp-cmds.el (tramp-append-tramp-buffers):
11365 * bs.el (bs-cycle-next, bs-cycle-previous):
11366 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
11367 * bindings.el (mode-line-other-buffer):
11368 * autoinsert.el (auto-insert):
11369 * arc-mode.el (archive-extract):
11370 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
11371
b27640fe
JB
113722011-07-05 Juanma Barranquero <lekktu@gmail.com>
11373
11374 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
11375 Fix check of `emacs-lock-unlockable-modes'.
11376 Coerce true values of `emacs-lock--try-unlocking' to t.
11377
53bbe3ad
JB
113782011-07-05 Juanma Barranquero <lekktu@gmail.com>
11379
11380 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
11381 * emacs-lock.el: New file.
11382
1d3cdbc7
JD
113832011-07-05 Julien Danjou <julien@danjou.info>
11384
11385 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
11386 than `boundp' to check if face is set.
11387
9173deec
JB
113882011-07-05 Juanma Barranquero <lekktu@gmail.com>
11389
11390 * register.el (registerv-make):
11391 * window.el (window-min-height): Fix typos in docstrings.
11392
869795d6
JD
113932011-07-05 Jan Djärv <jan.h.d@swipnet.se>
11394
9173deec 11395 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
11396 Update doc string.
11397
b768cdcd
JB
113982011-07-04 Juanma Barranquero <lekktu@gmail.com>
11399
11400 * server.el (server-execute): Catch quit and call
11401 `server-return-error' to pass the error back to emacsclient and
11402 close the connection (bug#8942).
11403
13aa217b
KM
114042011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
11405
11406 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
11407 insecure exception for current topic. Also note that auto-saves
11408 are handled differently.
11409
5d3385a0 11410 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13aa217b
KM
11411 State variables for tracking auto-save inhibition situation.
11412
11413 (allout-write-contents-hook-handler): Rename from
11414 'allout-write-file-hook-handler', and describe how it depends on
11415 write-contents-functions sensitivity to non-nil value to prevent
11416 file write.
11417
11418 (allout-auto-save-hook-handler): Remove. auto-save does not check
11419 this in individual buffers, only in the starting buffer, so this
11420 is not the right way for us to inhibit auto-save in a buffer
11421 according to its condition.
11422
11423 (allout-mode): Use new allout-write-contents-hook-handler, and
11424 only with write-contents-functions. Remove auto-save provisions -
11425 they're implemented elsewhere.
11426
11427 (allout-before-change-handler): If undo is in progress, note that
11428 for attention of allout-post-command-business.
11429
11430 (allout-post-command-business): If the command we're following was
11431 an undo, check for change in the status of encrypted items and
11432 adjust auto-save inhibitions accordingly.
11433
11434 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
11435 according to whether there are or aren't any plain-text topics
11436 pending encryption.
11437
2dcdbdd9 11438 (allout-inhibit-auto-save-info-for-decryption):
1154d12e
JB
11439 Adjust buffer-saved-size and some allout state to inhibit auto-saves
11440 if there are plain-text topics pending encryption.
13aa217b
KM
11441
11442 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
11443 buffer-saved-size and some allout state to not inhibit auto-saves
11444 if there are no longer any plain-text topics pending encryption.
11445
0757af94
SM
11446 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
11447 No longer provide for exemption of the current topic.
13aa217b 11448
ac89b32c
JL
114492011-07-04 Juri Linkov <juri@jurta.org>
11450
11451 Add 7z operations to delete and save changed members (bug#8968).
11452 * arc-mode.el (archive-7z-expunge, archive-7z-update):
11453 New defcustoms.
11454 (archive-7z-write-file-member): New function.
11455 (archive-7z-summarize): Fix the number of dashes in the
11456 listing output.
11457
8fa39615
SM
114582011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11459
11460 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
11461 (bug#8958).
11462
2f11b3f1
CY
114632011-07-04 Chong Yidong <cyd@stupidchicken.com>
11464
d66fef2b
CY
11465 * bindings.el: Ignore next-buffer and previous-buffer in
11466 minibuffer-local-map.
11467
2f11b3f1
CY
11468 * font-lock.el (font-lock-builtin-face): Change light background
11469 color to dark slate blue (Bug#6693).
11470
f932a347
WD
114712011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
11472
11473 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
11474
c8af70e1
SM
114752011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11476
11477 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
11478 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11479 Add switch-to-buffer.
11480
f158badc
LMI
114812011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11482
11483 * isearch.el (isearch-search-fun-function): Clarify further the
11484 meaning of the function returned.
11485
6d95bd46
MA
114862011-07-04 Michael Albinus <michael.albinus@gmx.de>
11487
11488 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
11489
11490 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
11491 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
11492 Use it.
11493 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
11494 `tramp-default-remote-path' does not exist.
11495 (tramp-send-command-and-read): New optional argument NOERROR.
11496 (tramp-open-connection-setup-interactive-shell)
11497 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
11498 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
11499 (tramp-process-sentinel): Flush also process' connection property.
11500 (tramp-sh-handle-start-file-process): Do not set process
11501 sentinel. It is done now ...
11502 (tramp-maybe-open-connection): ... here. (Bug#8929)
11503
909e6b67
MK
115042011-07-04 MON KEY <monkey@sandpframing.com>
11505
11506 * play/animate.el (animate-string): Doc fixes and allow changing
11507 the buffer name (bug#5417).
11508
115092011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11510
c8af70e1 11511 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 11512
f34755dc
PE
115132011-07-04 Paul Eggert <eggert@cs.ucla.edu>
11514
396cec72
PE
11515 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
11516 This is simpler and helps future-proof the code.
11517 (timer-until): Use time-subtract and float-time.
08235028 11518 (timer--time-less-p): Use time-less-p.
f34755dc 11519
56e6cc31
JB
115202011-07-04 Juanma Barranquero <lekktu@gmail.com>
11521
3abb79e5
JB
11522 * type-break.el (timep): Use the value of `float-time' to avoid a
11523 byte-compiler warning.
11524
56e6cc31
JB
11525 * server.el (server-eval-and-print): Return any result, even nil.
11526
7b9430b4
PE
115272011-07-03 Paul Eggert <eggert@cs.ucla.edu>
11528
11529 * type-break.el: Accept time formats that the builtins accept.
11530 (timep, type-break-time-difference): Accept any format that
11531 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
11532 This is simpler and helps future-proof the code.
11533 (type-break-time-difference): Round rather than ignoring
11534 subseconds components.
11535
3034e9e7
LMI
115362011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11537
11538 * info.el (Info-apropos-matches): Make non-interactive, since it
11539 doesn't seem to do anything useful as a command (bug#8829).
11540
1485f4c0
CY
115412011-07-03 Chong Yidong <cyd@stupidchicken.com>
11542
11543 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 11544 Move from faces.el.
1485f4c0
CY
11545 (frame-default-terminal-background): New function.
11546
11547 * custom.el (custom-push-theme): Don't record faces in `changed'
11548 theme; this doesn't work correctly for per-frame face settings.
11549 (disable-theme): Use face-set-after-frame-default to reset faces.
11550 (custom--frame-color-default): New function.
11551
9fa3dd45
LMI
115522011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11553
c8af70e1 11554 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
11555 (bug#8769).
11556
6cbbc20c
KR
115572011-03-29 Kevin Ryde <user42@zip.com.au>
11558
11559 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11560 `perl-Test2' extend to match possible "fail #N" rep count
11561 (bug#8377).
11562
c7f98048
LMI
115632011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11564
65676592
LMI
11565 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
11566 `smtpmail-via-smtp' now returns the error instead of nil.
11567
c7f98048
LMI
11568 * isearch.el (isearch-search-fun-function): Clarify the doc string
11569 (bug#8101).
11570
56e6cc31 115712011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
11572
11573 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
11574 unnecessary spaces (bug#8987).
11575
2b216704
LMI
115762011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11577
11578 * net/network-stream.el (open-network-stream): Use the
11579 :end-of-capability command thoughout.
11580
115812011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
11582
11583 * net/network-stream.el (open-network-stream): Add the
11584 :end-of-capability command parameter, used by pop3.el.
11585
36adf6ce
LMI
115862011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11587
1ca0da0e
LMI
11588 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
11589
fc00f69c
LMI
11590 * fringe.el (fringe-query-style): Remove redundant text " (type ?
11591 for list)" (bug#6475).
11592
28fd8759 11593 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 11594 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
11595 an error (bug#6297).
11596
0dd8b6da
LMI
11597 * man.el (Man-reference-regexp): Allow matching possible
11598 word-wrapped references (bug#6289).
11599
ce1438d6
LMI
11600 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
11601 for consistency with the other vc buffers (bug#6197).
11602 (vc-checkin): Ditto.
11603
11604 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
11605
36adf6ce
LMI
11606 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
11607
e83cc1f7
LMI
116082011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11609
8a20ca4c
LMI
11610 * custom.el (defcustom): Clarify that :set is only used in the
11611 Customize user interface (bug#6089).
11612
83319045
LMI
11613 * progmodes/flymake.el (flymake-mode): If the buffer isn't
11614 associated with a file, refuse to run instead of erroring out
11615 (bug#6084).
11616
a8392169
LMI
11617 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
11618 the doc string, since it appears that using `fill-column' always
11619 controls the width (bug#7845).
11620
e83cc1f7
LMI
11621 * simple.el (shell-command-on-region): Say where the error output
11622 went if `shell-command-default-error-buffer' is set (bug#6857).
11623
e47ca23b
KM
116242011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
11625
11626 * allout.el (allout-yank-processing): Adjust cursor position for
11627 backwards-deleted space.
11628
11629 (allout-rebullet-heading): Register changes with
11630 allout-exposure-changed-hook, so the modified topic is properly
11631 decorated.
11632
5cf56143
LMI
116332011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11634
08549772
LMI
11635 * minibuffer.el (completion-in-region): Document PREDICATE
11636 (bug#7136).
11637
48e96771
LMI
11638 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
11639 of keyword/argument pairs (bug#6904).
11640
c8af70e1
SM
11641 * replace.el (multi-occur):
11642 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 11643
e17d05e2
LMI
116442011-07-02 Drew Adams <drew.adams@oracle.com>
11645
11646 * dired.el (dired-mark-if): Make the message about whether it's
11647 marking or unmarking clearer (bug#8523).
11648
063b0e45
LMI
116492011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11650
11651 * disp-table.el (display-table-print-array): New function.
11652 (describe-display-table): Use it to print the vectors more pretty
11653 (Bug#8859).
11654
28545e04
MR
116552011-07-02 Martin Rudalics <rudalics@gmx.at>
11656
11657 * window.el (window-state-get-1): Don't assign clone numbers.
11658 Add clone-of item to list of window parameters.
11659 (window-state-put-2): Don't process clone numbers.
11660 (display-buffer-alist): Fix doc-string.
11661
3349e122
SM
116622011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
11663
11664 * subr.el (remq): Don't allocate if it's not needed.
11665 (keymap--menu-item-binding, keymap--menu-item-with-binding)
11666 (keymap--merge-bindings): New functions.
11667 (keymap-canonicalize): Use them to refine the canonicalization.
11668 * minibuffer.el (minibuffer-local-completion-map)
11669 (minibuffer-local-must-match-map): Move initialization from C.
11670 (minibuffer-local-filename-completion-map): Move initialization from C;
11671 don't inherit from anything here.
11672 (minibuffer-local-filename-must-match-map): Make obsolete.
11673 (completing-read-default): Use make-composed-keymap to combine
11674 minibuffer-local-filename-completion-map with either
11675 minibuffer-local-must-match-map or
11676 minibuffer-local-filename-completion-map.
11677
d224ac83
GM
116782011-07-01 Glenn Morris <rgm@gnu.org>
11679
3de63bf8
GM
11680 * type-break.el (type-break-time-sum): Use dolist.
11681
d224ac83
GM
11682 * textmodes/flyspell.el (flyspell-word-search-backward):
11683 Replace CL function.
11684
1a1e3f32
SM
116852011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11686
fe3f64d5
SM
11687 * mouse.el (mouse--strip-first-event): New function.
11688 (function-key-map): Use it to map fringe clicks to normal clicks
11689 by default.
11690
eb604e34
SM
11691 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
11692 (vc-bzr-revision-completion-table): Add support for annotate and date.
11693
1a1e3f32
SM
11694 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
11695 inherit from parent.
11696
5bd35902
LMI
116972011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
11698
ace6c69c 11699 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 11700 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 11701
191e2bed
LMI
11702 * dired.el (dired-mode): Fix up the doc string as suggested by
11703 Drew Adams (bug#8817).
11704
5bd35902
LMI
11705 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
11706 cookie, since the manual says that it should be possible to add
11707 this function to `find-file-hook' (bug#8709).
11708
eee8207a
TZ
117092011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11710
11711 * progmodes/cfengine.el: Moved all cfengine3.el functionality
11712 here. Noted Ted Zlatanov as the maintainer.
11713 (cfengine-common-settings, cfengine-common-syntax): New functions
11714 to set up common things between `cfengine-mode' and
11715 `cfengine3-mode'.
11716 (cfengine3-mode): New mode.
11717 (cfengine3-defuns cfengine3-defuns-regex
11718 (cfengine3-class-selector-regex cfengine3-category-regex)
11719 (cfengine3-vartypes cfengine3-font-lock-keywords)
11720 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 11721 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 11722
36b148cf
MA
117232011-07-01 Michael Albinus <michael.albinus@gmx.de>
11724
11725 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
11726
11727 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
11728
0bf4ba9a
MR
117292011-07-01 Martin Rudalics <rudalics@gmx.at>
11730
11731 * window.el (same-window-buffer-names, same-window-regexps)
11732 (same-window-p, special-display-frame-alist)
11733 (special-display-popup-frame, special-display-function)
11734 (special-display-buffer-names, special-display-regexps)
11735 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
11736 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11737 (split-window-preferred-function, split-height-threshold)
11738 (split-width-threshold, even-window-heights)
11739 (display-buffer-mark-dedicated, window-splittable-p)
11740 (split-window-sensibly, window-safely-shrinkable-p):
11741 Un-obsolete.
11742 (display-buffer): Don't spread args with function specifier
11743 because special-display-popup-frame won't like it.
11744
35837f51
PE
117452011-07-01 Paul Eggert <eggert@cs.ucla.edu>
11746
d0672f86
PE
11747 Time-stamp simplifications and fixes.
11748 These improve accuracy slightly, and future-proof the code
11749 against some potential changes to current-time format.
11750
b9444d97
PE
11751 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
11752 by using time-since and float-time.
11753
0ef923dc
PE
11754 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
11755 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
11756 + NNN microseconds".
11757
2f81380d
PE
11758 * type-break.el (type-break-time-sum): Rewrite using time-add.
11759
845b5c3e
PE
11760 * play/hanoi.el (hanoi-current-time-float): Remove.
11761 All uses replaced by float-time.
11762
ee6f1be0
PE
11763 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
11764 This yields a more-accurate answer.
11765 (rng-time-to-float): Remove; no longer needed.
11766
fe955043
PE
11767 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
11768
5777162a
PE
11769 * calendar/timeclock.el (timeclock-seconds-to-time):
11770 Defalias to seconds-to-time, since they're the same thing.
11771
3103f8b6 11772 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 11773 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
11774 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
11775
0e61a35f
SM
117762011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11777
11778 * window.el (bury-buffer): Don't iconify the only frame.
11779 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
11780 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
11781
ddd63a1e
CY
117822011-07-01 Chong Yidong <cyd@stupidchicken.com>
11783
0e61a35f
SM
11784 * eshell/em-smart.el (eshell-smart-display-navigate-list):
11785 Add mouse-yank-primary.
ddd63a1e 11786
055f4923
TZ
117872011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11788
11789 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
11790
6a2fb145
SM
117912011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11792
11793 * emacs-lisp/find-func.el (find-library--load-name): New fun.
11794 (find-library-name): Use it to find relative load names when provided
11795 absolute file name (bug#8803).
11796
fd4983f2
LMI
117972011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11798
887d14ad
LMI
11799 * textmodes/flyspell.el (flyspell-word): Consider words that
11800 differ only in case as potential doublons (bug#5687).
11801
c53dc7fc
LMI
11802 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
11803 Remove two rather uninteresting debugging-like messages to make
11804 debbugs.el more silent.
11805
fd4983f2
LMI
11806 * comint.el (comint-password-prompt-regexp): Accept "Response" as
11807 a password-like phrase.
11808
7a71b18d 118092011-06-30 Masatake YAMATO <yamato@redhat.com>
b14c0c55
AM
11810
11811 * progmodes/cc-guess.el: New file.
11812
6a2fb145 11813 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
11814
11815 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
11816 derived from `c-basic-common-init'.
11817
11818 * progmodes/cc-mode.el (top-level): Require cc-guess.
11819 (c-basic-common-init): Use `cc-choose-style-for-mode'.
11820
1fa280a3
LM
118212011-06-30 Lawrence Mitchell <wence@gmx.li>
11822
11823 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
11824
e6597158
AM
118252011-06-30 Alan Mackenzie <acm@muc.de>
11826
1fa280a3
LM
11827 * progmodes/cc-engine.el (c-guess-continued-construct):
11828 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
11829 lock is disabled. Name this case as "CASE G".
11830
68ba37fb
KM
118312011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
11832
11833 * allout.el (allout-yank-processing): Fix injection of extra space
11834 between bullet and non-whitespace character in first topic when
11835 pasting, ensuring that the actual spacing in the pasted topic
11836 following the bullet char is preserved. This extra space was
11837 causing pasted encrypted topics to get a decrypted status even
11838 when the content was actually still encrypted. Now the decryption
11839 status from before the paste is preserved.
11840
11841 (allout-flag-region): Set all allout overlays so they evaporate
11842 when reduced to zero length (evanescent), to prevent overlay
11843 leakage.
11844
887a0b34
GM
118452011-06-30 Glenn Morris <rgm@gnu.org>
11846
94b9acce
GM
11847 * w32-fns.el (w32-charset-info-alist): Declare.
11848
1d9b46d4
GM
11849 * find-dired.el (find-grep-options): Simplify.
11850
cc232200
GM
11851 * term/ns-win.el (ns-set-resource): Declare.
11852
28e77c46
GM
11853 * ses.el (row, col): Declare dynamic variables honestly.
11854
887a0b34
GM
11855 * textmodes/reftex-parse.el (index-tags): Declare.
11856
658d8eb8
CY
118572011-06-30 Chong Yidong <cyd@stupidchicken.com>
11858
11859 * cus-edit.el (customize-push-and-save): New function.
11860
11861 * files.el (hack-local-variables-confirm): Use it.
11862
1fa280a3
LM
11863 * custom.el (load-theme): New arg NO-CONFIRM.
11864 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
11865 (custom-enabled-themes): Doc fix.
11866
11867 * cus-theme.el (customize-create-theme)
11868 (custom-theme-merge-theme): Callers to load-theme changed.
11869
bb617717
LMI
118702011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11871
d61bdd5d
LMI
11872 * thingatpt.el (thing-at-point-short-url-regexp): Require that
11873 short URLs have at least one dot in them (bug #7614).
11874
bb617717
LMI
11875 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
11876 nil, because using a pty is apparently too slow (bug #895).
11877
2f31f37a
LMI
118782011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
11879
11880 * mail/sendmail.el (sendmail-query-once): New function.
11881 (sendmail-query-once-function): New variable.
11882
3076b24e
GM
118832011-06-29 Glenn Morris <rgm@gnu.org>
11884
faf2a174
GM
11885 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
11886
3076b24e
GM
11887 * ses.el (top-level): Require cl when compiling.
11888 (ses-set-localvars): Fix error statement.
11889 Call it at compile time to silence a storm of warnings.
11890
5386012d
MR
118912011-06-29 Martin Rudalics <rudalics@gmx.at>
11892
11893 * window.el (normalize-live-buffer): Rename to
11894 window-normalize-buffer.
11895 (normalize-live-frame): Rename to window-normalize-frame.
11896 (normalize-any-window): Rename to window-normalize-any-window.
11897 (normalize-live-window): Rename to window-normalize-live-window.
11898 (make-window-atom): Rename to window-make-atom.
11899 (window-resize-reset): Rename to window--resize-reset.
11900 (window-resize-reset-1): Rename to window--resize-reset-1.
11901 (resize-mini-window): Rename to window--resize-mini-window.
11902 (resize-subwindows-skip-p): Rename to
11903 window--resize-subwindows-skip-p.
11904 (resize-subwindows-normal): Rename to
11905 window--resize-subwindows-normal.
11906 (resize-subwindows): Rename to window--resize-subwindows.
11907 (resize-other-windows): Rename to window--resize-siblings.
11908 (resize-this-window): Rename to window--resize-this-window.
11909 (resize-root-window): Rename to window--resize-root-window.
11910 (resize-root-window-vertically): Rename to
11911 window--resize-root-window-vertically.
11912 (normalize-buffer-to-display): Rename to
11913 window-normalize-buffer-to-display.
11914 (normalize-buffer-to-switch-to): Rename to
11915 window-normalize-buffer-to-switch-to.
11916 Correspondingly update all callers of the functions listed
11917 above.
11918 (display-buffer-alist, display-buffer-normalize-arguments)
11919 (display-buffer-normalize-options, display-buffer)
11920 (display-buffer-alist-set): Use "function" instead of
11921 "fun-with-args".
11922
1176868d
CY
119232011-06-28 Chong Yidong <cyd@stupidchicken.com>
11924
11925 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
11926 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
11927 debbugs.gnu.org. Mention acknowledgment email.
11928
20a7a65f
LMI
119292011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
11930
11931 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
11932 buffer multibyteness, since it shouldn't matter.
11933
5f45cca5
MR
119342011-06-28 Martin Rudalics <rudalics@gmx.at>
11935
11936 * window.el (display-buffer-in-side-window): Handle dedicated
11937 windows as in display-buffer-reuse-window.
11938 (display-buffer-normalize-alist): Use value of override
11939 specifier.
11940 (display-buffer-normalize-specifiers): Use value of
11941 other-window-means-other-frame specifier.
11942 (display-buffer-alist): Rewrite some texts in widgets.
11943 (display-buffer): Spread arguments when calling function
11944 specified by fun-with-args.
11945
ad85fe1f
DD
119462011-06-28 Deniz Dogan <deniz@dogan.se>
11947
1fa280a3
LM
11948 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
11949 Unnest `let'.
da68c4c8 11950
ad85fe1f
DD
11951 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
11952 selectors (Bug#5732).
ec49bd31 11953 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 11954
a08cc025
JA
119552011-06-27 Jari Aalto <jari.aalto@cante.net>
11956
11957 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
11958 (eshell-ls-date-format): New defcustom.
11959 (eshell-ls-file): Use it.
11960
e2b551c5
SM
119612011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11962
11963 * help-fns.el (describe-variable): Fix message for terminal-local vars.
11964
8982b231
KY
119652011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
11966
11967 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
11968 (ange-ftp-make-tmp-name): New arg.
11969 (ange-ftp-file-local-copy): Use it.
11970
36c9fa27
J
119712011-06-27 Jambunathan K <kjambunathan@gmail.com>
11972
11973 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
11974 no-conversion (Bug#8870).
11975
d68443dc
MR
119762011-06-27 Martin Rudalics <rudalics@gmx.at>
11977
11978 * window.el (window-right, window-left, window-child)
11979 (window-child-count, window-last-child)
11980 (window-iso-combination-p, walk-window-tree-1)
11981 (window-atom-check-1, window-tree-1, delete-window)
11982 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
11983 new naming conventions - window-vchild, window-hchild,
11984 window-next and window-prev are now called window-top-child,
11985 window-left-child, window-next-sibling and window-prev-sibling
11986 respectively.
d615d6d2
MR
11987 (resize-window-reset): Rename to window-resize-reset.
11988 (resize-window-reset-1): Rename to window-resize-reset-1.
11989 (resize-window): Rename to window-resize.
11990 (window-min-height, window-min-width)
11991 (resize-mini-window, resize-this-window, resize-root-window)
11992 (resize-root-window-vertically, adjust-window-trailing-edge)
11993 (enlarge-window, shrink-window, maximize-window)
11994 (minimize-window, delete-window, quit-restore-window)
11995 (split-window, balance-windows, balance-windows-area-adjust)
11996 (balance-windows-area, window-state-put-2)
11997 (display-buffer-even-window-sizes, display-buffer-set-height)
11998 (display-buffer-set-width, set-window-text-height)
11999 (fit-window-to-buffer): Rename all "resize-window" prefixed
12000 calls to use the "window-resize" prefix convention.
12001 (display-buffer-alist): Fix symbol for label specifier.
12002 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
12003 corresponding specifier.
12004 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 12005
b6458526
VB
120062011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
12007
12008 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
12009 convention.
12010 (ses-call-printer): Does not pass an empty string to formatter when the
12011 cell is empty to keep from barking printer Calc math-format-value.
12012
d31fd9ac
RS
120132011-06-27 Richard Stallman <rms@gnu.org>
12014
43d5bf84
RS
12015 * battery.el (battery-mode-line-limit): New variable.
12016 (battery-update): Handle it.
12017
d31fd9ac
RS
12018 * mail/rmailmm.el (rmail-mime-process-multipart):
12019 Handle truncated messages.
12020
819a6054
GM
120212011-06-27 Glenn Morris <rgm@gnu.org>
12022
12023 * progmodes/flymake.el (flymake-err-line-patterns):
12024 Allow for column numbers in the ant/javac pattern. (Bug#8866)
12025
cedc73f2
VB
120262011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
12027
819a6054 12028 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
12029 (ses--clean-!, ses--clean-_): New functions.
12030 (ses-range): Add configurability of readout order, and conversion
12031 to Calc vector.
12032
5e5d49b6
VB
12033 * ses.el (ses-repair-cell-reference-all): New function.
12034 (ses-cell-symbol): Set macro as safe, so that it can be used in
12035 formulas.
12036
56e6cc31 12037 * ses.el: Update cycle detection algorithm.
90ca8b49 12038 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 12039 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
12040 (ses-set-localvars): New function.
12041 (ses-make-cell): Add property-list as a cell element.
12042 (ses-cell-property-get-fun, ses-cell-property-get)
12043 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
12044 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
12045 New functions.
90ca8b49
VB
12046 (ses-cell-property-set, ses-cell-property-pop)
12047 (ses-cell-property-get-handle): New macro.
12048 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
12049 New aliases, used for code readability.
12050 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
12051 cycle detection.
12052 (ses-self-reference-early-detection): New defcustom.
fac916bf 12053 (ses-formula-references): Robustify against self-referring cells.
90ca8b49
VB
12054 (ses-mode): Use ses-set-localvars.
12055 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
12056 before lauching the update processing.
12057 (ses-initialize-Dijkstra-attempt): New function.
12058 (ses-recalculate-cell): Update for cycle detection based on
12059 Dijkstra algorithm.
12060
2bb63e81
VB
12061 * ses.el: Fix commenting and indenting convention.
12062
c9d29fb8
SM
120632011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
12064
12065 * bs.el (bs-cycle-next): Complete last change.
12066
d8e4b68b
JB
120672011-06-27 Drew Adams <drew.adams@oracle.com>
12068
12069 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
12070
40098786
LMI
120712011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
12072
c9d29fb8
SM
12073 * net/network-stream.el (network-stream-open-starttls):
12074 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
12075 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
12076
40098786
LMI
12077 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
12078 to binary to possibly avoid line encoding issues on Windows (among
12079 other things).
12080
468d09d4
LMI
120812011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12082
12083 * net/network-stream.el (open-network-stream): Return an :error
12084 saying what the problem was, if possible.
12085
12086 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
12087 server.
12088
12089 * net/network-stream.el (network-stream-open-starttls): If we
12090 wanted to use STARTTLS, and the server offered it, but we weren't
12091 able to because we had no STARTTLS support, then close the connection.
12092 (open-network-stream): Return an :error element, if present.
12093
16f07dd7
CY
120942011-06-26 Chong Yidong <cyd@stupidchicken.com>
12095
88821ca0
CY
12096 * hl-line.el (hl-line-sticky-flag): Doc fix.
12097 (global-hl-line-sticky-flag): New option (Bug#8323).
12098 (global-hl-line-highlight): Obey it.
12099
16f07dd7
CY
12100 * vc/vc.el (vc-revert-show-diff): Default to t.
12101
6b5ccddf
KM
121022011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
12103
c9d29fb8
SM
12104 * allout-widgets.el (allout-widgets-post-command-business):
12105 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
12106 undecorated when an isearch is continued past, and isearch
12107 automatically collapses them. This leads to "widget leaks", where
12108 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
12109 hidden widgets can slow down cursor travel, substantially.
12110 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
12111 so we're doing without this nicety.
12112
12113 (allout-widgets-tally-string): Don't try to do a hash-table-count
12114 of allout-widgets-tally when it's nil. This eliminates spurious "Error
12115 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
12116 *Messages* when allout-widgets-maintain-tally is t.
12117
355f2e07
MR
121182011-06-26 Martin Rudalics <rudalics@gmx.at>
12119
12120 * window.el (display-buffer-normalize-argument): Rename to
12121 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
12122 LABEL argument. Respect special-display-function when popping up
12123 a new frame. Fix code searching for a window showing the buffer
12124 on another frame.
c9d29fb8
SM
12125 (display-buffer-normalize-specifiers):
12126 Call display-buffer-normalize-arguments.
355f2e07
MR
12127 (display-buffer-in-window): Don't undedicate the window if its
12128 buffer remains the same.
12129 Reported by Drew Adams <drew.adams@oracle.com>.
12130 (display-buffer-alist): Add choice for same-window macro
12131 specfier.
12132 (display-buffer): Mention special meaning of LABEL argument in
12133 doc-string. Fix quoting. Don't pop up a new frame even as
12134 fallback.
12135
7ca8fc42
JB
121362011-06-26 Juanma Barranquero <lekktu@gmail.com>
12137
12138 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
12139 avoid deleting the current window in some cases (bug#8911).
12140
bc312254
AS
121412011-06-26 Andreas Schwab <schwab@linux-m68k.org>
12142
12143 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
12144 (Bug#8934)
12145
2db18f3f
LMI
121462011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12147
c9d29fb8
SM
12148 * net/network-stream.el (network-stream-open-starttls):
12149 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
12150 (network-stream-open-tls): Ditto.
12151
6302e0d3
LL
121522011-06-26 Leo Liu <sdl.web@gmail.com>
12153
12154 * register.el (registerv): New struct.
12155 (registerv-make): New function.
c9d29fb8
SM
12156 (jump-to-register, describe-register-1, insert-register):
12157 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
12158 struct. (Bug#8415)
12159
5fdd4046
CY
121602011-06-26 Chong Yidong <cyd@stupidchicken.com>
12161
2afef60a
CY
12162 * vc/vc.el (vc-revert-show-diff): New defcustom.
12163 (vc-diff-internal): New arg specifying diff buffer.
12164 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
12165 reuse an existing *vc-diff* buffer (Bug#8927).
12166
5fdd4046
CY
12167 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
12168
e93db24a
GM
121692011-06-26 Glenn Morris <rgm@gnu.org>
12170
12171 * progmodes/f90.el (f90-critical-indent): New option.
12172 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
12173 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
12174 (f90-mode): Doc fix.
12175 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
12176 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
12177 (f90-beginning-of-block, f90-next-block, f90-indent-region)
12178 (f90-match-end): Handle block, critical.
12179
eefff499
GM
121802011-06-25 Glenn Morris <rgm@gnu.org>
12181
f6ba4cc9
GM
12182 * calendar/diary-lib.el (diary-included-files): Doc fix.
12183 (diary-include-files): New function, extracted from
12184 diary-include-other-diary-files and diary-mark-included-diary-files.
12185 (diary-include-other-diary-files, diary-mark-included-diary-files):
12186 Just call diary-include-files.
12187 (diary-mark-entries): Reset diary-included-files on first call.
12188
16712304
GM
12189 * calendar/diary-lib.el (diary-mark-entries)
12190 (diary-mark-included-diary-files):
12191 Visit included diary-files in temp buffers.
12192
5d8e0d43
GM
12193 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
12194 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
12195 (f90-start-block-re, f90-imenu-generic-expression)
12196 (f90-looking-at-program-block-start, f90-no-block-limit):
12197 Add support for submodules.
12198
ccf7a5d5
GM
12199 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
12200 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 12201
11fdef7d 122022011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
12203
12204 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
12205 buffer-file-type before setting its value, to avoid disastrous
eefff499 12206 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 12207
74f53697
JB
122082011-06-25 Juanma Barranquero <lekktu@gmail.com>
12209
12210 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
12211
12212 * ses.el (ses-unload-function):
12213 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
12214
12215 * proced.el (proced-unload-function):
12216 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
12217
18a4ce5e
AR
122182011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
12219
12220 * server.el (server-create-window-system-frame): Add parameters arg.
12221 (server-process-filter): Doc fix. Handle frame-parameters.
12222
519d22cc
JB
122232011-06-25 Juanma Barranquero <lekktu@gmail.com>
12224
12225 Fix bug#8730, bug#8781.
12226
12227 * loadhist.el (unload--set-major-mode): New function.
12228 (unload-feature): Use it.
12229
12230 * progmodes/python.el (python-after-info-look): Add autoload cookie.
12231 (python-unload-function): New function.
12232
c206f5b0
SM
122332011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12234
12235 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
12236
f9ad64f3
GS
122372011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
12238
12239 * net/browse-url.el (browse-url-firefox-program): Add icecat to
12240 the candidates list.
12241
7d0da90e
JB
122422011-06-24 Juanma Barranquero <lekktu@gmail.com>
12243
12244 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
12245
14b4e83d
RS
122462011-06-23 Richard Stallman <rms@gnu.org>
12247
12248 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
12249 (rmail-variables): Set next-error-move-function.
12250 (rmail-what-message): Take argument POS.
12251 (rmail-next-error-move): New function.
12252
273d2baf
SM
122532011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
12254
12255 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
12256 messages for adjacent non-terminals.
12257
56c2cc9a
RS
122582011-06-23 Richard Stallman <rms@gnu.org>
12259
12260 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 12261 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
12262 (rmail-start-mail): Don't specify use of rmail-mail-return;
12263 that's done by mail-bury now.
12264 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 12265
d59eb518
MA
122662011-06-23 Michael Albinus <michael.albinus@gmx.de>
12267
12268 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
12269 SIZE is a number.
12270
02cfc6d6
MR
122712011-06-23 Martin Rudalics <rudalics@gmx.at>
12272
12273 * window.el (get-lru-window, get-mru-window)
12274 (get-largest-window): Never return a minibuffer window.
12275 (display-buffer-pop-up-window): Fix a bug that could lead to
12276 reusing the minibuffer window.
12277 (display-buffer): Pass original specifier argument to
12278 display-buffer-function instead of the normalized one.
12279 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
12280
4e323265
LL
122812011-06-22 Leo Liu <sdl.web@gmail.com>
12282
12283 * minibuffer.el (completing-read-function)
12284 (completing-read-default): Move from minibuf.c
12285
7a70468f
RS
122862011-06-22 Richard Stallman <rms@gnu.org>
12287
50718fc2
RS
12288 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
12289 to Rmail even if not started by a special Rmail command.
12290
7a70468f
RS
12291 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
12292 Copy the buffer currently showing just one message.
12293
297dde5a
RW
122942011-06-22 Roland Winkler <winkler@gnu.org>
12295
12296 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
12297 (bibtex-clean-entry): First delete the old key so that a
12298 customized algorithm for generating the new key does not get
12299 confused by the old key.
12300 (bibtex-url): Obey regexp of first step.
12301 (bibtex-search-entries): Do not use add-to-list with local
12302 list-var.
12303
97bb1093
LMI
123042011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12305
12306 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
12307 stored a user name, then query for the password first, instead of
12308 waiting for SMTP to give an error message and the trying again.
12309
1c0f1a19
JD
123102011-06-22 Lawrence Mitchell <wence@gmx.li>
12311
12312 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
12313 BUFFER in call-process.
12314
396f7c9d
LMI
123152011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12316
12317 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
12318 QUIT twice.
ddb7ffee
LMI
12319 (smtpmail-try-auth-methods): Require user name and password from
12320 auth-source.
396f7c9d 12321
8998d1b3
MR
123222011-06-22 Martin Rudalics <rudalics@gmx.at>
12323
12324 * window.el (display-buffer-default-specifiers)
12325 (display-buffer-alist): Remove entries for pop-up-frame-alist.
12326 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 12327 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
12328
12329 * frame.el (pop-up-frame-alist, pop-up-frame-function)
12330 (special-display-frame-alist, special-display-popup-frame):
12331 Remove duplicate declarations. These are now in window.el.
12332
4ea31e07
LMI
123332011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12334
c9d29fb8
SM
12335 * mail/smtpmail.el (smtpmail-via-smtp):
12336 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
12337 server supports it. SMTP servers that support STARTTLS commonly
12338 require it.
12339
12340 * net/network-stream.el (network-stream-open-starttls): Support
12341 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 12342 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 12343
95f41d9a
LMI
12344 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
12345 upgrades with `open-network-stream', and rely solely on
12346 auth-source for all credentials. Big changes throughout the file,
12347 but in particular:
c9d29fb8
SM
12348 (smtpmail-auth-credentials): Remove.
12349 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
12350 (smtpmail-via-smtp): Check for servers saying they want AUTH after
12351 MAIL FROM, too.
95f41d9a 12352
c9d29fb8
SM
12353 * net/network-stream.el (network-stream-open-starttls):
12354 Provide support for client certificates both for external and built-in
4ea31e07
LMI
12355 STARTTLS.
12356 (auth-source): Require.
12357 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
12358 (network-stream-certificate): Change cert-cert to cert and
12359 cert-key to key.
4ea31e07 12360
065ec2c7
MA
123612011-06-21 Michael Albinus <michael.albinus@gmx.de>
12362
12363 * net/tramp-cache.el (top): Don't load the persistency file when
12364 "emacs -Q" has been called.
12365
cd93b359
DR
123662011-06-21 Tim Harper <timcharper@gmail.com>
12367
d8e4b68b
JB
12368 * term/ns-win.el (ns-initialize-window-system):
12369 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
12370 resource to NO as it is not yet supported by the NS port.
12371
ae9c0411
JB
123722011-06-21 Juanma Barranquero <lekktu@gmail.com>
12373
12374 * misc.el (list-dynamic-libraries--refresh): Compute header here...
12375 (list-dynamic-libraries): ...not here.
12376
7f3f739f
LL
123772011-06-21 Leo Liu <sdl.web@gmail.com>
12378
12379 * subr.el (sha1): Implement sha1 using secure-hash.
12380
327c8fb1
MR
123812011-06-21 Martin Rudalics <rudalics@gmx.at>
12382
12383 * window.el (display-buffer-alist): In default value do not
12384 enforce searching a window on any but the selected frame.
12385 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
12386 (display-buffer-select-window): Remove function.
12387 (display-buffer-in-window): When a window on another frame gets
12388 reused, do not select it any more but just raise its frame if
12389 necessary (Bug#8851) and (Bug#8856).
12390 (display-buffer-normalize-options): Handle pop-up-frames related
12391 options more faithfully.
12392 (pop-to-buffer): Don't rely on `display-buffer' selecting the
12393 window if it is on another frame.
c9d29fb8
SM
12394 (display-buffer-alist, display-buffer-default-specifiers):
12395 Don't make new frame unsplittable by default.
9e9de014
MR
12396 (display-buffer-normalize-argument): Fix doc-string typo and use
12397 'same-frame-other-window instead of 'other-window when associating
12398 with display-buffer-macro-specifiers.
327c8fb1 12399
7cf3f556
VB
124002011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
12401
12402 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
12403 New functions.
12404 (5x5-mode-map, 5x5-mode-menu): Bind them.
12405 (5x5-draw-grid): Tweak the solver's rendering.
12406
60a406cf
SM
124072011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12408
12409 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
12410 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
12411
d8e4b68b 124122011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
12413
12414 * menu-bar.el: Use function variable instead of switch-to-buffer.
12415 (menu-bar-select-buffer-function): New variable.
60a406cf 12416 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 12417
478d6f95
SM
124182011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12419
12420 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
12421 variable's status.
12422
ca530739
JD
124232011-06-20 Jan Djärv <jan.h.d@swipnet.se>
12424
12425 * x-dnd.el (x-dnd-version-from-flags)
12426 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
12427 and long as number (Bug#8899).
12428 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
12429
bcd70d97
SM
124302011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12431
60a406cf 12432 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
12433 (completion-try-completion, completion-all-completions): Compute the
12434 metadata argument if it's missing; make it optional (bug#8795).
12435
60a406cf 12436 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
12437 (widget-complete): Use new :completion-function property.
12438 (widget-completions-at-point): New function.
12439 (default): Use :completion-function instead of :complete.
60a406cf
SM
12440 (widget-default-completions): Rename from widget-default-complete;
12441 Rewrite.
bcd70d97
SM
12442 (widget-string-complete, widget-file-complete, widget-color-complete):
12443 Remove functions.
12444 (file, symbol, function, variable, coding-system, color):
12445 * international/mule-cmds.el (default-input-method, charset)
12446 (language-info-custom-alist):
12447 * cus-edit.el (face): Use new property :completions.
12448
12449 * progmodes/pascal.el (pascal-completions-at-point): New function.
12450 (pascal-mode): Use it.
12451 (pascal-mode-map): Use completion-at-point.
12452 (pascal-toggle-completions): Make obsolete.
12453 (pascal-complete-word, pascal-show-completions):
12454 * progmodes/octave-mod.el (octave-complete-symbol):
12455 Redefine as obsolete alias.
12456 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
12457 Signal absence of completion info for old Octave,
12458 (inferior-octave-complete): Redefine as obsolete alias.
12459 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
12460 (meta-completions-at-point): Rename from meta-complete-symbol and
12461 adapt it for use on completion-at-point-functions.
12462 (meta-common-mode): Use it.
12463 (meta-looking-at-backward, meta-match-buffer): Remove.
12464 (meta-complete-symbol): Redefine as obsolete alias.
12465 (meta-common-mode-map): Use completion-at-point.
12466 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
12467 (makefile-mode-map): Use completion-at-point.
12468 (makefile-completions-at-point): Rename from makefile-complete and
12469 adapt it for use on completion-at-point-functions.
12470 (makefile-mode): Use it.
12471 (makefile-complete): Redefine as obsolete alias.
12472
aebf69c8
DD
124732011-06-20 Deniz Dogan <deniz@dogan.se>
12474
12475 * net/rcirc.el: Delete trailing whitespaces once and for all.
12476
bfbbb27d
DC
124772011-06-20 Daniel Colascione <dan.colascione@gmail.com>
12478
12479 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
12480
d264a46b
CY
124812011-06-19 Chong Yidong <cyd@stupidchicken.com>
12482
4ca009e5
CY
12483 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
12484
d264a46b
CY
12485 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
12486
fbf5b3ce
MR
124872011-06-19 Martin Rudalics <rudalics@gmx.at>
12488
12489 * window.el (display-buffer-other-window-means-other-frame):
12490 Call display-buffer-normalize-alist.
12491 (display-buffer-normalize-specifiers-1): Rename to
12492 display-buffer-normalize-argument. New argument other-frame.
12493 Rewrite.
12494 (display-buffer-normalize-specifiers-2): Rename to
12495 display-buffer-normalize-options.
12496 (display-buffer-normalize-alist-1): New function.
12497 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
12498 display-buffer-normalize-alist.
12499 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
12500 (display-buffer-normalize-options-inhibit): New variable.
12501 (display-buffer-normalize-specifiers): Rewrite calling
12502 display-buffer-normalize-alist,
12503 display-buffer-normalize-argument, and
12504 display-buffer-normalize-options. Don't call the latter if
12505 display-buffer-normalize-options-inhibit is non-nil.
12506 (frame-auto-delete): New option.
12507 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
12508 (window-list-no-nils, window-state-ignored-parameters)
12509 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
12510 (window-state-put-1, window-state-put-2, window-state-put):
12511 New functions.
9a028c23
MR
12512 (display-buffer-normalize-options): Move special-display-p group
12513 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 12514
6d10d800
CY
125152011-06-18 Chong Yidong <cyd@stupidchicken.com>
12516
6420d28b
CY
12517 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
12518 groups (Bug#8776).
12519 (rx-submatch-n): New function.
12520 (rx): Document it.
12521
ddb8b596
CY
12522 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
12523 (Bug#8768).
12524
12525 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
12526
77080289
CY
12527 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
12528
61dfb316
CY
12529 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
12530 anytime existing face settings are present (Bug#8889).
12531
6d10d800
CY
12532 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
12533 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
12534 Remove unused argument.
12535
be3fb2b8
MR
125362011-06-18 Martin Rudalics <rudalics@gmx.at>
12537
bcd70d97
SM
12538 * window.el (display-buffer-default-specifiers):
12539 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
12540 pop-up-window-min-width, and another reuse-window specifier
12541 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
12542 (display-buffer-normalize-specifiers-2):
12543 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
12544 pop-up-windows is unset. Add a reuse-window specifier for the
12545 case popping up a new window fails.
12546 (special-display-popup-frame): Remove double quoting.
28dec25a 12547 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 12548
1c6d8c76
SM
125492011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
12550
12551 * shell.el (shell-completion-vars): Set pcomplete-termination-string
12552 according to comint-completion-addsuffix.
12553
12554 * pcomplete.el: Convert to lexical binding and fix bug#8819.
12555 (pcomplete-suffix-list): Mark as obsolete.
12556 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
12557 pcomplete-seen in the closure.
12558 (pcomplete-comint-setup): Setup completion-at-point as well.
12559 (pcomplete--entries): New function.
12560 (pcomplete--env-regexp): New var.
12561 (pcomplete-entries): Rewrite to work with partial-completion and
12562 without relying on pcomplete-suffix-list.
12563 (pcomplete-pare-list): Remove, unused.
12564
25aef8b8
MR
125652011-06-17 Martin Rudalics <rudalics@gmx.at>
12566
12567 * window.el (display-buffer-alist): Set pop-up-window-min-height
12568 and pop-up-window-min-width in default value. Reported by
12569 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
12570 other-window-means-other-frame.
12571 (display-buffer-macro-specifiers): Comment out entry for
12572 other-window specifier.
12573 (display-buffer-other-window-means-other-frame): New function.
12574 (display-buffer-normalize-specifiers-1): New arguments
12575 buffer-name and label. Treat other-window case specially.
12576 (display-buffer-normalize-specifiers-2): Treat other-window case
12577 specially.
12578 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
12579 (display-buffer-normalize-specifiers):
12580 Call display-buffer-normalize-specifiers-3.
25aef8b8 12581
dbad4f69
MR
125822011-06-17 Martin Rudalics <rudalics@gmx.at>
12583
12584 * window.el (same-window-p): Fix two typos introduced when
12585 adding with-no-warnings.
d1067961
MR
12586 (display-buffer-normalize-specifiers-1): Don't check
12587 pop-up-frames for 'unset initialization.
12588 (display-buffer-normalize-specifiers-2): Major rewrite using
12589 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
12590 (pop-up-frames, display-buffer-reuse-frames)
12591 (display-buffer-mark-dedicated): Don't initialize to 'unset.
12592 Suggested by David Engster <deng@randomsample.de>.
12593 (even-window-heights): Initialize to 'unset.
12594 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
12595 (display-buffer-macro-specifiers): Don't pop up a new frame in the
12596 other window case.
dbad4f69 12597
9b9c9e3a
MR
125982011-06-16 Martin Rudalics <rudalics@gmx.at>
12599
bcd70d97
SM
12600 * window.el (display-buffer-normalize-specifiers-1):
12601 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 12602 second argument of display-buffer (Bug#8865).
981d5c09
MR
12603 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
12604 (switch-to-buffer-other-window-same-frame)
12605 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
12606 Adams (Bug#8875).
9c2755e9
MR
12607 (display-buffer): Don't check noninteractive when calling
12608 display-buffer-pop-up-frame.
12609 (display-buffer-pop-up-frame): Never pop up a frame in
12610 noninteractive mode (Bug#8857).
67222e1d
MR
12611 (enlarge-window, shrink-window): Don't report an error when the
12612 window can't be resized as requested (Bug#8862).
9b9c9e3a 12613
2b75be67
SM
126142011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12615
9ffdd3ba
SM
12616 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
12617
cb581a67
SM
12618 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
12619
2b75be67
SM
12620 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
12621
8c0e3589
AM
126222011-06-15 Alan Mackenzie <acm@muc.de>
12623
cb581a67
SM
12624 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
12625 for declarators, disable knr checking to speed up for normal files.
12626 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 12627
b96e6cde
LMI
126282011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12629
4bba86e6
LMI
12630 * net/network-stream.el (open-network-stream): Add the keyword
12631 :always-query-capabilities for the case where you want to force a
12632 `plain' network connection, but the protocol still requires the
12633 capabilitiy command (i.e., SMTP and EHLO).
12634
2b75be67 12635 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
12636 consistency with other `-live-p' functions.
12637
efdcdbf8
SM
126382011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12639
12640 * window.el (same-window-buffer-names, same-window-regexps)
12641 (special-display-frame-alist, special-display-popup-frame)
12642 (special-display-function, special-display-buffer-names)
12643 (special-display-regexps, pop-up-frame-alist)
12644 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
12645 (pop-up-windows, split-window-preferred-function)
12646 (split-height-threshold, split-width-threshold, even-window-heights)
12647 (display-buffer-mark-dedicated): Don't encourage the use of
12648 display-buffer-alist from Elisp code.
12649
c5cde042
DN
126502011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
12651
12652 * progmodes/python.el (python-mode): Derive from prog-mode.
12653 * progmodes/ps-mode.el (ps-mode):
12654 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 12655 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
12656 * progmodes/ld-script.el (ld-script-mode): Likewise.
12657
baa1c9ab
MR
126582011-06-15 Martin Rudalics <rudalics@gmx.at>
12659
12660 * window.el (display-buffer-alist): Trim default value to avoid
12661 popping up a new frame (Bug#8857) or reusing an arbitrary window
12662 on another frame.
12663 (display-buffer): Do not fall back on popping up a new frame in
12664 batch mode (Bug#8857).
12665
c5dd5a51
CY
126662011-06-14 Chong Yidong <cyd@stupidchicken.com>
12667
12668 * cus-theme.el (describe-theme-1): Use custom-theme-p.
12669 (custom-theme-summary): New function.
12670 (customize-themes): Use it.
12671
d647b7c4
GM
126722011-06-13 Glenn Morris <rgm@gnu.org>
12673
12674 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
12675
9481c002
MR
126762011-06-13 Martin Rudalics <rudalics@gmx.at>
12677
357f93d2
MR
12678 * help.el (help-window): Remove variable.
12679 (help-window-point-marker, temp-buffer-max-height)
12680 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
12681 (help-print-return-message): Don't set help-window.
12682 (resize-temp-buffer-window): Rewrite cod eand doc-string.
12683 (help-window-setup-finish): Remove.
12684 (help-window-display-message, help-window-setup)
12685 (with-help-window): Major rewrite based on new
12686 display-buffer-window variable.
12687
12688 * help-mode.el (help-mode-finish): Remove help-window related
12689 code.
12690
12691 * view.el (view-exits-all-viewing-windows): Remove reference to
12692 view-return-to-alist in doc-string.
12693 (view-return-to-alist): Make obsolete.
12694 (view-buffer): Call pop-to-buffer-same-window and remove
12695 undo-window code.
12696 (view-buffer-other-window): Call pop-to-buffer-other-window and
12697 simplify code. Ignore second argument.
12698 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
12699 simplify code. Ignore second argument.
12700 (view-return-to-alist-update): Make obsolete.
12701 (view-mode-enter): Rename second argument to QUIT-RESTORE.
12702 Rewrite using quit-restore window parameters.
2b75be67
SM
12703 (view-mode-exit): Rename second argument to EXIT-ONLY.
12704 Rewrite using quit-restore-window.
357f93d2
MR
12705 (View-exit, View-exit-and-edit, View-leave, View-quit)
12706 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
12707 appropriate arguments.
12708 (view-end-message): Use quit-restore window parameter.
12709
9481c002
MR
12710 * window.el (display-buffer-function): Rewrite doc-string.
12711 (display-buffer-window, display-buffer-alist): New variables.
12712 (display-buffer-split-specifiers)
12713 (display-buffer-side-specifiers)
12714 (display-buffer-macro-specifiers): New constants.
12715 (display-buffer-even-window-sizes, display-buffer-set-height)
12716 (display-buffer-set-width, display-buffer-select-window)
12717 (display-buffer-in-window, display-buffer-reuse-window)
12718 (display-buffer-split-window-1, display-buffer-split-window)
12719 (display-buffer-split-atom-window, display-buffer-pop-up-window)
12720 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
12721 (display-buffer-in-side-window, normalize-buffer-to-display)
12722 (display-buffer-normalize-specifiers-1)
12723 (display-buffer-normalize-specifiers-2)
2b75be67
SM
12724 (display-buffer-normalize-specifiers, display-buffer-frame):
12725 New functions.
9481c002
MR
12726 (display-buffer): Major rewrite.
12727 (display-buffer-other-window, display-buffer-other-frame)
12728 (pop-to-buffer, switch-to-buffer-other-window)
12729 (switch-to-buffer-other-frame): Rewrite.
12730 (display-buffer-same-window, display-buffer-same-frame)
12731 (display-buffer-same-frame-other-window)
12732 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
12733 (pop-to-buffer-other-window)
12734 (pop-to-buffer-same-frame-other-window)
12735 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
12736 (switch-to-buffer-other-window-same-frame): New functions.
12737 (same-window-p, special-display-p): Rewrite disabling warnings.
12738 Make obsolete.
12739 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12740 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
12741 Make obsolete
12742 (same-window-buffer-names, same-window-regexps)
12743 (special-display-frame-alist, special-display-popup-frame)
12744 (special-display-function, special-display-buffer-names)
12745 (special-display-regexps, pop-up-frame-alist)
12746 (pop-up-frame-function, split-window-preferred-function)
12747 (split-height-threshold, split-width-threshold)
12748 (even-window-heights): Make obsolete.
12749
9db51aca
GM
127502011-06-12 Glenn Morris <rgm@gnu.org>
12751
12752 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 12753 Misc simplifications.
9db51aca 12754
39cffb44
MR
127552011-06-12 Martin Rudalics <rudalics@gmx.at>
12756
12757 * window.el (window-safely-shrinkable-p): Restore function which
12758 was inadvertently removed in change from 2011-06-11. Declare as
12759 obsolete.
12760
2b75be67
SM
12761 * calendar/calendar.el (calendar-generate-window):
12762 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
12763 window-safely-shrinkable-p.
12764
a8955be7
GM
127652011-06-12 Glenn Morris <rgm@gnu.org>
12766
12767 * progmodes/fortran.el (fortran-mode-syntax-table):
12768 * progmodes/f90.el (f90-mode-syntax-table):
12769 Set % to punctuation. (Bug#8820)
12770 (f90-find-tag-default): Remove, no longer needed.
12771
f0d4059d
DC
127722011-06-12 Daniel Colascione <dan.colascione@gmail.com>
12773
12774 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
12775
1100a63c
CY
127762011-06-11 Chong Yidong <cyd@stupidchicken.com>
12777
12778 * image.el (image-animated-p): Return animation delay in seconds.
12779 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
12780 (image-animate-timeout): Remove DELAY argument. Don't assume
12781 every subimage has the same delay; get it from image-animated-p.
12782 (image-animate): Caller changed.
12783
def722bf
MA
127842011-06-11 Michael Albinus <michael.albinus@gmx.de>
12785
12786 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
12787 to ignored backtrace functions.
12788
0a2bb1a9
GM
127892011-06-11 Glenn Morris <rgm@gnu.org>
12790
12791 * calendar/appt.el (appt-disp-window-function): Doc fix.
12792 (appt-check): Handle overlapping appointments. (Bug#8337)
12793
6198ccd0
MR
127942011-06-11 Martin Rudalics <rudalics@gmx.at>
12795
12796 * window.el (window-tree-1, window-tree): New functions, moving
12797 the latter to window.el.
12798 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
12799 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
12800 (bw-refresh-edges): Remove.
12801 (balance-windows-1, balance-windows-2): New functions.
12802 (balance-windows): Rewrite in terms of window tree functions,
12803 balance-windows-1 and balance-windows-2.
12804 (bw-adjust-window): Remove.
12805 (balance-windows-area-adjust): New function with functionality of
12806 bw-adjust-window but using resize-window.
2b75be67
SM
12807 (set-window-text-height): Rewrite doc-string.
12808 Use normalize-live-window and resize-window.
12809 (enlarge-window-horizontally, shrink-window-horizontally):
12810 Rename argument to DELTA.
6198ccd0
MR
12811 (window-buffer-height): New function.
12812 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
12813 Rewrite using new window resize routines.
2b75be67
SM
12814 (kill-buffer-and-window, mouse-autoselect-window-select):
12815 Use ignore-errors instead of condition-case.
6198ccd0
MR
12816 (quit-window): Call delete-frame instead of delete-windows-on
12817 for the only buffer on frame.
12818
9397e56f
MR
128192011-06-10 Martin Rudalics <rudalics@gmx.at>
12820
12821 * loadup.el (top-level): Load window before files for the sake
12822 of replace-buffer-in-windows.
12823
12824 * files.el (read-buffer-to-switch)
12825 (switch-to-buffer-other-window)
2b75be67
SM
12826 (switch-to-buffer-other-frame, display-buffer-other-frame):
12827 Move to window.el.
9397e56f
MR
12828
12829 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
12830 (previous-buffer): Move to window.el.
12831
12832 * bindings.el (unbury-buffer): Move to window.el.
12833
12834 * window.el (delete-other-windows-vertically): Move after
12835 definition of delete-other-windows.
12836 (other-window, delete-windows-on, replace-buffer-in-windows):
12837 Move here from window.c.
12838 (record-window-buffer, unrecord-window-buffer)
12839 (set-window-buffer-start-and-point, switch-to-prev-buffer)
12840 (switch-to-next-buffer): New functions.
12841 (get-next-valid-buffer, last-buffer, next-buffer): Move here
12842 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
12843 (previous-buffer): Move here from simple.el.
12844 Call switch-to-prev-buffer.
9397e56f
MR
12845 (bury-buffer): Move here from buffer.c. Switch to previous
12846 buffer when window cannot be deleted.
12847 (unbury-buffer): Move here from bindings.el.
12848 (ctl-x-map): Move binding for other-window from window.c to
12849 here.
12850 (read-buffer-to-switch, switch-to-buffer-other-window)
12851 (switch-to-buffer-other-frame): Move here from files.el.
12852 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
12853 (switch-to-buffer): Move here from buffer.c.
12854 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 12855
562dd5e9
MR
128562011-06-10 Martin Rudalics <rudalics@gmx.at>
12857
12858 * window.el (window-min-height, window-min-width): Move here
12859 from window.c. Add defcustoms and rewrite doc-strings.
12860 (resize-mini-window, resize-window): New functions.
12861 (adjust-window-trailing-edge, enlarge-window, shrink-window):
12862 Move here from window.c.
12863 (maximize-window, minimize-window): New functions.
12864 (delete-window, delete-other-windows, split-window): Move here
12865 from window.c.
12866 (window-split-min-size): New function.
12867 (split-window-keep-point): Mention split-window-above-each-other
12868 instead of split-window-vertically.
2b75be67 12869 (split-window-above-each-other, split-window-vertically):
1154d12e
JB
12870 Rename split-window-vertically to split-window-above-each-other
12871 and provide defalias for old definition.
12872 (split-window-side-by-side, split-window-horizontally):
12873 Rename split-window-horizontally to split-window-side-by-side
12874 and provide defalias for the old definition.
562dd5e9
MR
12875 (ctl-x-map): Move bindings for delete-window,
12876 delete-other-windows and enlarge-window here from window.c.
12877 Replace bindings for split-window-vertically and
12878 split-window-horizontally by bindings for
12879 split-window-above-each-other and split-window-side-by-side.
12880
12881 * cus-start.el (all): Remove entries for window-min-height and
12882 window-min-width. Add entries for window-splits and
12883 window-nest.
12884
f0da764a
GM
128852011-06-09 Glenn Morris <rgm@gnu.org>
12886
80675c21
GM
12887 * calendar/appt.el (appt-mode-line): New function.
12888 (appt-check, appt-disp-window): Use it.
12889
f0da764a
GM
12890 * files.el (hack-one-local-variable-eval-safep):
12891 Allow minor-modes with explicit +/-1 arguments.
12892
59f623b7
TZ
128932011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
12894
12895 * term/xterm.el (xterm): Add defgroup.
12896 (xterm-extra-capabilities): Add defcustom to supply known xterm
12897 capabilities, skip querying them, or query them (default).
12898 (terminal-init-xterm): Use it.
12899 (terminal-init-xterm-modify-other-keys): New function to set up
12900 modifyOtherKeys support to simplify `terminal-init-xterm'.
12901
9aab8e0d
MR
129022011-06-09 Martin Rudalics <rudalics@gmx.at>
12903
12904 * window.el (resize-window-reset, resize-window-reset-1)
12905 (resize-subwindows-skip-p, resize-subwindows-normal)
12906 (resize-subwindows, resize-other-windows, resize-this-window)
12907 (resize-root-window, resize-root-window-vertically)
12908 (window-deletable-p, window-or-subwindow-p)
12909 (frame-root-window-p): New functions.
12910
e8b08aee
GM
129112011-06-09 Glenn Morris <rgm@gnu.org>
12912
12913 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
12914 (ange-ftp-get-files): Use it.
12915
254c37a5
AK
129162011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
12917
12918 * mail/sendmail.el (mail-recover-1, mail-recover):
12919 * files.el (recover-file, recover-session):
12920 Handle dired-listing-switches not being just a single short option.
12921
35d7dbd3
GM
129222011-06-09 Glenn Morris <rgm@gnu.org>
12923
12924 * calendar/appt.el (appt-display-message, appt-disp-window):
12925 Handle lists of appointments.
12926
387522b2
MR
129272011-06-08 Martin Rudalics <rudalics@gmx.at>
12928
2b75be67
SM
12929 * window.el (one-window-p): Move down in code.
12930 Rewrite doc-string.
12931 (window-current-scroll-bars): Rewrite doc-string.
12932 Normalize live window argument.
387522b2
MR
12933 (walk-windows, get-window-with-predicate, count-windows):
12934 Rewrite doc-string. Use window-list-1.
12935 (window-in-direction-2, window-in-direction, get-mru-window):
12936 New functions.
12937
d8e4b68b 129382011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
12939
12940 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
12941 Doc fix (Bug#8713).
12942
129432011-06-08 Chong Yidong <cyd@stupidchicken.com>
12944
12945 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
12946
129472011-06-08 Juanma Barranquero <lekktu@gmail.com>
12948
12949 * loadhist.el (unload-feature-special-hooks):
12950 Add `comint-output-filter-functions'.
12951
0de12c52
IK
129522011-06-08 Ivan Kanis <gnu@kanis.fr>
12953
12954 * calendar/appt.el (appt-check): Move some initializations into the let.
12955
f3d1777e
MR
129562011-06-08 Martin Rudalics <rudalics@gmx.at>
12957
12958 * window.el (window-height): Defalias to window-total-height.
12959 (window-width): Defalias to window-body-width.
12960
18af70d0
CY
129612011-06-07 Chong Yidong <cyd@stupidchicken.com>
12962
12963 * image-mode.el (image-toggle-animation): New command.
12964 (image-mode-map): Bind it to RET.
12965 (image-mode): Update message.
12966 (image-toggle-display-image): Avoid a spurious cache flush.
12967 (image-transform-rotation): Doc fix.
12968 (image-transform-properties): Return quickly in the normal case.
12969 (image-animate-loop): Rename from image-animate-max-time.
12970
2b75be67 12971 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
12972 (create-animated-image): Remove unnecessary function.
12973 (image-animate): Rename from image-animate-start. New arg.
2b75be67 12974 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
12975 (image-animate-timer): Use car-safe.
12976 (image-animate-timeout): Rename argument.
12977
190b47e6
MR
129782011-06-07 Martin Rudalics <rudalics@gmx.at>
12979
12980 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
12981 window.c. Rename first argument to ALL-FRAMES.
12982 Rephrase doc-strings.
12983 (get-buffer-window-list): Rewrite using window-list-1.
12984 Rephrase doc-string.
a1511caf
MR
12985 (window-safe-min-height, window-safe-min-width): New constants.
12986 (window-size-ignore, window-min-size, window-min-size-1)
12987 (window-sizable, window-sizable-p, window-size-fixed-1)
12988 (window-size-fixed-p, window-min-delta-1, window-min-delta)
12989 (window-max-delta-1, window-max-delta, window-resizable)
12990 (window-resizable-p, window-total-height, window-total-width)
12991 (window-body-width): New functions.
12992 (window-full-height-p, window-full-width-p): Rewrite using
12993 window-total-size.
12994 (window-body-height): Rewrite using window-body-size.
190b47e6 12995
85cc1f11
MR
129962011-06-06 Martin Rudalics <rudalics@gmx.at>
12997
12998 * window.el (window-right, window-left, window-child)
12999 (window-child-count, window-last-child, window-any-p)
13000 (normalize-live-buffer, normalize-live-frame)
13001 (normalize-any-window, normalize-live-window)
13002 (window-iso-combination-p, window-iso-combined-p)
13003 (window-iso-combinations)
13004 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
13005 (windows-with-parameter, window-with-parameter)
13006 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
13007 (window-atom-check, window-side-check, window-check):
13008 New functions.
85cc1f11
MR
13009 (ignore-window-parameters, window-sides, window-sides-vertical)
13010 (window-sides-slots): New variables.
13011 (window-size-fixed): Move down in code. Minor doc-string fix.
13012
e7156492
AS
130132011-06-05 Andreas Schwab <schwab@linux-m68k.org>
13014
13015 * comint.el (comint-dynamic-complete-as-filename)
13016 (comint-dynamic-complete-filename): Correctly call
13017 completion-in-region.
13018
7e821d0d
DD
130192011-06-05 Deniz Dogan <deniz@dogan.se>
13020
13021 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
13022 in last change.
13023
ac09b8a1
DD
130242011-06-05 Deniz Dogan <deniz@dogan.se>
13025
13026 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
13027 (rcirc): Use it to prompt for encryption.
13028
34699b85
RW
130292011-06-05 Roland Winkler <winkler@gnu.org>
13030
13031 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
13032 (bibtex-search-entries): New command bound to C-c C-a.
13033 (bibtex-display-entries): New function.
13034
004dedd3
RW
130352011-06-05 Roland Winkler <winkler@gnu.org>
13036
13037 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
13038 (bibtex-insert-kill): After yanking insert newline if necessary.
13039 (bibtex-initialize): Call bibtex-string-files-init only once.
13040 (bibtex-mode): Do not call easy-menu-add.
13041 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
13042 (bibtex-yank): Set arg properly if nil.
13043
022fe7ce
RW
130442011-06-05 Roland Winkler <winkler@gnu.org>
13045
2b75be67
SM
13046 * textmodes/bibtex.el (bibtex-search-entry-globally):
13047 New variable.
022fe7ce
RW
13048 (bibtex-search-entry): Use it.
13049
b7c3692a
RW
130502011-06-05 Roland Winkler <winkler@gnu.org>
13051
13052 * textmodes/bibtex.el (bibtex-entry-format): New option
13053 sort-fields.
13054 (bibtex-format-entry, bibtex-reformat): Honor this option.
13055 (bibtex-parse-entry): Return fields in proper order.
13056
8eda563d
JB
130572011-06-05 Juanma Barranquero <lekktu@gmail.com>
13058
13059 * doc-view.el (doc-view-remove-if): Move computation of result out
13060 of `dolist' to silence misleading lexical-binding warning.
13061
7dbe3dbc
CY
130622011-06-04 Chong Yidong <cyd@stupidchicken.com>
13063
13064 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
13065 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
13066
0c33dd17
MA
130672011-06-04 Michael Albinus <michael.albinus@gmx.de>
13068
13069 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
13070 "SunOS 5.10".
13071
f8f91c2b
MA
130722011-06-04 Michael Albinus <michael.albinus@gmx.de>
13073
13074 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
13075 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
13076 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
13077 (tramp-parse-putty):
13078 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
13079 (tramp-completion-function-alist-ssh)
13080 (tramp-completion-function-alist-telnet)
13081 (tramp-completion-function-alist-su)
13082 (tramp-completion-function-alist-putty): Set `tramp-autoload'
13083 cookie.
13084
13085 * net/tramp-ftp.el:
13086 * net/tramp-sh.el:
13087 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
13088 load "tramp.el" `tramp-set-completion-function'.
13089
e17d9003
SM
130902011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
13091
13092 * shell.el: Require and use pcomplete.
13093 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
13094 (shell-completion-vars): Set pcomplete-default-completion-function.
13095
6c4cab03
DD
130962011-06-04 Deniz Dogan <deniz@dogan.se>
13097
13098 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
13099 `memq' (Bug#8799).
13100
ea9fafe0
SM
131012011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
13102
13103 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
13104
b3e945d3
JB
131052011-06-02 Juanma Barranquero <lekktu@gmail.com>
13106
13107 * bs.el (bs--mark-unmark, bs--nth-wrapper):
13108 * mpc.el (mpc-select-extend, mpc-songpointer-context):
13109 * vc/log-view.el (log-view-beginning-of-defun):
13110 * vc/smerge-mode.el (smerge-apply-resolution-patch)
13111 (smerge-refine-forward, smerge-refine-chopup-region):
13112 Silence warning for unused `dotimes' counter variables.
13113
7d520089
SM
131142011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
13115
13116 * net/tramp.el (tramp-with-progress-reporter): Rename from
13117 with-progress-reporter. Use `declare'.
13118 * net/tramp-smb.el:
13119 * net/tramp-sh.el:
13120 * net/tramp-gvfs.el: Update all uses.
13121
a1c2400f
JB
131222011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
13123
13124 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
13125 buffer isn't killed before making it current.
13126
2403c841
SM
131272011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
13128
13129 Silence various byte-compiler warnings.
13130 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
13131 `access-type' and new obsolescence format.
13132 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
13133 new format.
13134 (byte-compile-check-variable): New `access-type' argument.
13135 Only warn if the access-type is obsolete.
13136 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
13137 (byte-compile-variable-set): Adjust callers.
13138 * help-fns.el (describe-variable): Adjust to new obsolescence format.
13139 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
13140 setting it as obsolete.
13141 * simple.el (minibuffer-completing-symbol):
13142 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
13143 access as obsolete.
13144 * minibuffer.el (minibuffer-completing-file-name): Don't make it
13145 obsolete yet.
13146 * international/quail.el (quail-mouse-choose-completion): Remove unused
13147 code referring to obsolete var.
13148 (quail-choose-completion-string): Remove.
13149 * server.el (server-clients-with, server-kill-buffer-query-function)
13150 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
13151 * proced.el (proced-send-signal):
13152 * emacs-lisp/lisp.el (lisp-complete-symbol):
13153 Replace completion-annotate-function with completion-extra-properties.
13154
2462470b
SM
131552011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
13156
fb5b2591
SM
13157 * simple.el (goto-line): Use read-number.
13158 (overriding-map-is-bound): Remove.
13159 (saved-overriding-map): Change default.
13160 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
13161 Take the map as argument.
13162 (universal-argument, negative-argument, digit-argument): Use it.
13163 (restore-overriding-map): Adjust.
13164 (do-auto-fill): Use fill-forward-paragraph.
13165 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
13166
fd6fa53f
SM
13167 * minibuffer.el (minibuffer-inactive-mode-map): New var.
13168 (minibuffer-inactive-mode): New major mode.
13169 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
13170 the *Messages* buffer" hack.
13171 (mouse-popup-menubar): Don't burp if the event is a normal key.
13172
2462470b
SM
13173 Miscellaneous tweaks.
13174 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
13175 lexical scoping as in subr.el's dolist and dotimes.
13176 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
13177 Silence compiler warning.
13178 * thingatpt.el (forward-whitespace): Trivial coding style fix.
13179 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
13180 * international/ccl.el (ccl-compile): Trivial simplification.
13181 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
13182 * emacs-lisp/testcover.el (testcover-end): Remove spurious
13183 `printflag' argument.
13184 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
13185 Purecopy the whole obsolescence data.
13186
108bf785
LL
131872011-06-01 Leo Liu <sdl.web@gmail.com>
13188
13189 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
13190 improve doc-string as suggested by Marco Pessotto
13191 <melmothx@gmail.com>.
13192 (rcirc-print): Fix last change.
13193
30a23501
SM
131942011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13195
13196 * minibuffer.el (complete-with-action): Return nil for the metadata and
13197 boundaries of non-functional tables.
13198 (completion-table-dynamic): Return nil for the metadata.
13199 (completion-table-with-terminator): Add default case, using
13200 complete-with-action.
13201 (completion--metadata): New function.
13202 (completion-all-sorted-completions, minibuffer-completion-help): Use it
13203 to try and avoid pathological performance problems.
13204 (completion--embedded-envvar-table): Return `category' metadata.
13205
bcd54f83
LMI
132062011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
13207
13208 * subr.el (process-alive-p): New tiny convenience function.
13209
e227544d
SM
132102011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13211
13212 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
13213 content but also its previous major mode.
13214
e8296fdc
HE
132152011-05-31 Helmut Eller <eller.helmut@gmail.com>
13216
4d61f28d 13217 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
13218 *Backtrace* buffer when we exit with C-M-c.
13219
620c53a6
SM
132202011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13221
13222 * minibuffer.el: Add metadata method to completion tables.
13223 (completion-category-overrides): New defcustom.
13224 (completion-metadata, completion--field-metadata)
13225 (completion-metadata-get, completion--styles)
13226 (completion--cycle-threshold): New functions.
13227 (completion-try-completion, completion-all-completions):
13228 Add `metadata' argument to choose completion-styles.
13229 (completion--do-completion): Use metadata to choose cycling.
13230 (completion-all-sorted-completions): Use metadata for sorting.
13231 Remove :completion-cycle-penalty which is not needed any more.
13232 (completion--try-word-completion): Add `metadata' argument.
13233 (minibuffer-completion-help): Check metadata for annotation function
13234 and sorting.
13235 (completion-file-name-table): Return `category' metadata.
13236 (minibuffer-completing-file-name): Make obsolete.
13237 * simple.el (minibuffer-completing-symbol): Make obsolete.
13238 * icomplete.el (icomplete-completions): Pass new `metadata' param to
13239 completion-try-completion.
13240
1257e755
SM
132412011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13242
13243 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
13244
3767e706
LL
132452011-05-30 Leo Liu <sdl.web@gmail.com>
13246
13247 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
13248 (rcirc-print): Decode all incoming messages (bug#8744).
13249 (rcirc-decode-coding-system): Allow value nil for automatic coding
13250 system detection.
3767e706 13251
d1a5d56a
GM
132522011-06-01 Glenn Morris <rgm@gnu.org>
13253
13254 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
13255
e8cbec34
CY
132562011-05-29 Chong Yidong <cyd@stupidchicken.com>
13257
13258 * image.el (image-animate-max-time): Allow nil and t values.
13259 Default to nil.
13260 (create-animated-image): Doc fix.
13261 (image-animate-start): Remove second arg; just use
13262 image-animate-max-time.
13263 (image-animate-timeout): Doc fix. Args changed.
13264
13265 * image-mode.el (image-toggle-display-image): Ensure that the
13266 image spec passed to the animate timer is the same object as in
58179cce 13267 the buffer's display property (Bug#6981).
e8cbec34
CY
13268 (image-transform-properties): Doc fix.
13269
13270 * image.el (image-animate-max-time): Default to nil.
13271
159daf87
MR
132722011-05-29 Martin Rudalics <rudalics@gmx.at>
13273
13274 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
13275 entire buffer list (Bug#8184).
13276
d66c4c7c
CY
132772011-05-29 Chong Yidong <cyd@stupidchicken.com>
13278
13279 * image.el (imagemagick-types-inhibit)
13280 (imagemagick-register-types): Doc fix.
13281
80aec780
DD
132822011-05-29 Deniz Dogan <deniz@dogan.se>
13283
13284 * net/rcirc.el (rcirc): Use the user's stored encryption method by
13285 default.
13286
1dd3c2d9
CY
132872011-05-29 Chong Yidong <cyd@stupidchicken.com>
13288
13289 * select.el: Don't perform clipboard-manager saving in hooks;
13290 leave the hooks empty.
13291
60e56523
LL
132922011-05-28 Leo Liu <sdl.web@gmail.com>
13293
13294 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
13295 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
13296 (occur-edit-mode): New major mode (Bug#8463).
13297 (occur-after-change-function): New function.
13298 (occur-engine): Give Occur tags a read-only property.
13299
2b1e1a22
KR
133002011-05-28 Kevin Ryde <user42@zip.com.au>
13301
13302 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
13303
5d344e88
CY
133042011-05-28 Chong Yidong <cyd@stupidchicken.com>
13305
8e6ca83d
CY
13306 * bindings.el (help-echo): Make the initial non-indicator dash
13307 empty on graphical terminals (Bug#7295).
13308
5d344e88
CY
13309 * files.el (auto-mode-alist): Move config rule after the
13310 in-stripping one (Bug#8547).
13311
bfbbace7
CY
13312 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
13313
fbeba6e2
CY
13314 * startup.el (normal-splash-screen): Remove gratuitous mode-line
13315 setting (Bug#8740).
13316
60ed8c72
AA
133172011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
13318
4ac619f0
AA
13319 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
13320 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
13321 (Bug#8539).
60ed8c72 13322
23db196e
CY
133232011-05-28 Chong Yidong <cyd@stupidchicken.com>
13324
13325 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
13326
5012f24c
DK
133272011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
13328
13329 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
13330 (hs-hide-block-at-point, hs-find-block-beginning)
13331 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
13332 (Bug#8279).
13333
6a639b16
GM
133342011-05-28 Glenn Morris <rgm@gnu.org>
13335
13336 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
13337
d43eaf2c
CY
133382011-05-28 Chong Yidong <cyd@stupidchicken.com>
13339
5199bde1
CY
13340 * help-fns.el (describe-function-1): If the function is a derived
13341 major mode, print the parent mode.
13342
d43eaf2c
CY
13343 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
13344 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
13345
423428a8
SM
133462011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
13347
0ff8e1ba 13348 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 13349 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
13350 * progmodes/etags.el (tags-completion-at-point-function):
13351 * info-look.el (info-lookup-completions-at-point): Mark as
13352 non-exclusive.
13353 (info-complete): Adjust accordingly.
13354
423428a8
SM
13355 * info-look.el: Convert to lexical-binding and completion-at-point.
13356 (info-lookup-completions-at-point): New function.
13357 (info-complete): Use it and completion-in-region.
13358
b74aa22b
DA
133592011-05-28 Drew Adams <drew.adams@oracle.com>
13360
13361 * isearch.el: Let M-e start with point at the first mismatched char.
13362 (isearch-fail-pos): New function.
13363 (isearch-edit-string): Use it.
13364
66e2e71d
DK
133652011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
13366
13367 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
13368
b1890b0f 133692011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
eb95d01d
TC
13370
13371 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
13372 traversal functions for avl-trees.
13373 (avl-tree--stack): New struct.
13374 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
13375 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
13376 (avl-tree--do-enter): Add optional `updatefun' arg.
13377 Change return value.
eb95d01d 13378 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
13379 (avl-tree--do-delete): Add `test' and `nilflag' args.
13380 Change return value.
eb95d01d
TC
13381 (avl-tree-member): Add optional `nilflag'
13382 (avl-tree-member-p): New function.
13383 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
13384 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
13385 (avl-tree-stack-empty-p): New functions.
13386
3769ddcf
TC
13387 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
13388 avl-tree--del-balance1 and make it work both ways.
13389 (avl-tree--del-balance2): Remove.
13390 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
13391 make it work both ways.
13392 (avl-tree--enter-balance2): Remove.
13393 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
13394 New macros.
13395 (avl-tree--mapc, avl-tree-map): Add direction argument.
13396
eb95d01d 133972011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
13398
13399 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
13400
a9f737ee
CY
134012011-05-27 Chong Yidong <cyd@stupidchicken.com>
13402
13403 * select.el: Support clipboard managers with built-in function
13404 x-clipboard-manager-save, via delete-frame-functions and
13405 kill-emacs-hook.
13406 (xselect-convert-to-targets): Add MULTIPLE target to list.
13407 (xselect-convert-to-save-targets): New function.
13408
c92a1e54
KH
134092011-05-27 Kenichi Handa <handa@m17n.org>
13410
13411 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
13412 let-binding rfc2047-encode-encoded-words to nil.
13413
e145f188
GM
134142011-05-27 Glenn Morris <rgm@gnu.org>
13415
5ec8a862
GM
13416 * mail/emacsbug.el: Don't require url-util.
13417
4b29d9fb
GM
13418 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
13419
e145f188
GM
13420 * files.el (set-auto-mode):
13421 Also respect mode: entries at the end of the file. (Bug#8586)
13422
7d15102b
GM
134232011-05-26 Glenn Morris <rgm@gnu.org>
13424
98f593b8
GM
13425 * files.el (hack-local-variables-prop-line, hack-local-variables):
13426 Downcase mode names, as seems to be traditional.
27b48e63 13427 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 13428
7d15102b
GM
13429 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
13430 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
13431
51d5b4ec
JD
134322011-05-25 Julien Danjou <julien@danjou.info>
13433
13434 * textmodes/rst.el (rst-define-level-faces): Do not define face
13435 symbol if it is already defined.
13436
91513f63
VB
134372011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
13438
13439 * play/5x5.el (5x5-new-game, 5x5-randomize):
13440 Reset 5x5-solver-output to nil when a new grid is cast.
13441 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
13442 these debugging traces, as defmacro breaks the compiled code.
13443
4d90d6d0
DK
134442011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
13445
13446 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
13447
e1b90ef6
LL
134482011-05-24 Leo Liu <sdl.web@gmail.com>
13449
13450 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
13451 (vc-bzr-sha1): Adapt.
13452
d8e4b68b 13453 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
13454
13455 * bindings.el: Provide sha1 feature.
13456
db0406bb 134572011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
13458
13459 * mail/sendmail.el: Require `rfc2047'.
13460 (mail-insert-from-field): Do not perform RFC2047 encoding.
13461 (mail-encode-header): New function.
13462 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
13463 buffer to the return value of select-message-coding-system.
13464 Call mail-encode-header.
b8d747b9
KH
13465
13466 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
13467
db0406bb 134682011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 13469
4d90d6d0
DK
13470 * mail/supercite.el (sc-default-cite-frame):
13471 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 13472
eb8a5e9b
GM
134732011-05-24 Glenn Morris <rgm@gnu.org>
13474
f8630703
GM
13475 * progmodes/python.el (brm-menu): Declare.
13476
8831bbed
GM
13477 * emulation/viper.el (viper-set-hooks): Declare.
13478
eb8a5e9b
GM
13479 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
13480 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
13481 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
13482 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
13483 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
13484 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
13485
a2a25d24
SM
134862011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13487
13488 Add an :exit-function for completion-at-point.
13489
13490 * minibuffer.el (completion--done): New fun.
13491 (completion--do-completion): Use it. New arg `expect-exact'.
13492 (minibuffer-complete, minibuffer-complete-word): Don't output message,
13493 since completion--do-completion does it for us now.
13494 (minibuffer-force-complete): Use completion--done and
13495 completion--replace. Handle sole-completion case with more care.
13496 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
13497 (completion-extra-properties): New var.
13498 (completion-annotate-function): Make obsolete.
13499 (minibuffer-completion-help): Adjust accordingly.
13500 Use completion-list-insert-choice-function.
13501 (completion-at-point, completion-help-at-point):
13502 Bind completion-extra-properties.
13503 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
13504 * simple.el (completion-list-insert-choice-function): New var.
13505 (completion-setup-function): Preserve it.
13506 (choose-completion): Pay attention to it, shuffle the code a bit.
13507 (choose-completion-string): New arg `insert-function'.
13508
13509 * textmodes/bibtex.el: Convert to lexical binding.
13510 (bibtex-mode-map): Use completion-at-point.
13511 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
13512 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
13513 (bibtex-complete): Define as obsolete alias.
13514 (bibtex-complete-internal): Remove.
13515 (bibtex-format-entry): Remove unused sub-group in regexp.
13516 * shell.el (shell--command-completion-data)
13517 (shell-environment-variable-completion):
13518 * pcomplete.el (pcomplete-completions-at-point):
13519 * comint.el (comint--complete-file-name-data): Use :exit-function
13520 instead of completion-table-with-terminator so it also works for
13521 choose-completion.
13522
e44e373d
SM
135232011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13524
4f91a816
SM
13525 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
13526
782fc819
SM
13527 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
13528 (bug#8710).
13529
e44e373d
SM
13530 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
13531
381987c3
KM
135322011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
13533
13534 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
13535 customization variable and implement: If non-nil, auto-fill will
13536 be inhibited while on topic's header line.
13537
b776bc70
VB
135382011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
13539
13540 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 13541 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
13542 always have a solution in grid size = 5 cases.
13543 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
13544 (5x5-solver-output, 5x5-log-buffer): New vars.
13545 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
13546 Make these variables buffer local to achieve 5x5 multi-session-ness.
13547 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
13548 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
13549 (5x5-solve-suggest): New funs.
13550 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
13551 randomize a grid so that we ensure that there is always a solution.
13552 (5x5-make-random-grid): Allow other movement than flipping.
13553
7de88b6e
KR
135542011-05-23 Kevin Ryde <user42@zip.com.au>
13555
13556 * emacs-lisp/advice.el (ad-read-advised-function):
5a5fa834 13557 Use `function-called-at-point' as the default, if it has
7de88b6e
KR
13558 advice and passes PREDICATE.
13559
b1ef1257
SM
135602011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13561
bbca48fe
SM
13562 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
13563 byte-compile-lambda if it's actually a lambda.
13564
b1ef1257
SM
13565 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
13566 Fix function quoting. Use backquote better.
13567
92a9cc65
YS
135682011-05-22 Yuanle Song <sylecn@gmail.com>
13569
13570 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
13571 matching (Bug#8516).
13572
f0fb8059
JA
135732011-01-22 Jari Aalto <jari.aalto@cante.net>
13574
13575 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
13576 different face (Bug#8178).
13577
d5b44c93
CY
135782011-05-22 Chong Yidong <cyd@stupidchicken.com>
13579
13580 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
13581 defface (Bug#8144).
13582
79106a44
SM
135832011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
13584
9c848d8a
SM
13585 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
13586 funcall as well (bug#8712). Warn when performing those conversions.
13587 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
13588
79106a44
SM
13589 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
13590
88dfa756
GM
135912011-05-22 Glenn Morris <rgm@gnu.org>
13592
13593 * files.el (hack-local-variables-prop-line): Small simplifications.
13594 (hack-local-variables, hack-local-variables-prop-line):
13595 If MODE-ONLY, return the mode, rather than just `t'.
13596
b7cf2c79
SM
135972011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13598
13599 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
13600
3f1a8558
GM
136012011-05-21 Glenn Morris <rgm@gnu.org>
13602
7e4ccca3
GM
13603 * files.el (hack-local-variables-prop-line, hack-local-variables):
13604 If only interested in the mode, don't bother doing the other stuff.
13605
637d46ca
GM
13606 * image-mode.el (image-after-revert-hook):
13607 Redraw all frames on which the image is visible. (Bug#8567)
13608
973d955b
GM
13609 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
13610
3f1a8558
GM
13611 * wid-edit.el (widget-checklist-match-inline):
13612 Fix 2011-04-19 change. (Bug#8649)
13613
96479927
SM
136142011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
13615
1dcf791f
SM
13616 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
13617 Also allow singlespace after single-letter capitals followed by a dot.
13618
96479927
SM
13619 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
13620 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
13621
35fd0881
N
136222011-05-20 Nix <nix@esperi.org.uk>
13623
13624 * files.el (basic-save-buffer-2):
13625 Fix handling of break-hardlink-on-save with non-existent files.
13626
82745640
DD
136272011-05-19 Deniz Dogan <deniz@dogan.se>
13628
13629 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 13630 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 13631
4a720484
GM
136322011-05-19 Glenn Morris <rgm@gnu.org>
13633
d1f21341
GM
13634 * progmodes/f90.el (f90-type-def-re):
13635 Handle "type, bind(c)". (Bug#8691)
13636
4a720484
GM
13637 * emacs-lisp/autoload.el (batch-update-autoloads):
13638 Set autoload-excludes by parsing loadup.el rather than Makefiles.
13639
2fb0a219
MA
136402011-05-18 Michael Albinus <michael.albinus@gmx.de>
13641
13642 * net/tramp.el (tramp-process-actions): Set "first-password-request"
13643 property for the correct connection in case of multihops.
13644
e565dd37
GM
136452011-05-18 Glenn Morris <rgm@gnu.org>
13646
c2571358 13647 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
13648 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
13649
e565dd37
GM
13650 Rationalize calendar handling of day and month abbrev-arrays.
13651 * calendar/calendar.el (calendar-customized-p): New function.
13652 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
13653 (calendar-day-name-array, calendar-month-name-array): Doc fix.
13654 Add :set function.
13655 (calendar-abbrev-length, calendar-day-abbrev-array)
13656 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
13657 (calendar-day-abbrev-array, calendar-month-abbrev-array):
13658 Elements may no longer be nil.
13659 (calendar-day-name, calendar-month-name):
13660 Update for changed nature of abbrev arrays.
13661 * calendar/diary-lib.el (diary-name-pattern):
13662 Update for changed nature of abbrev arrays.
13663 (diary-mark-entries-1): Update calendar-make-alist calls.
13664 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
13665 * calendar/cal-html.el (cal-html-day-abbrev-array):
13666 Simply inherit from calendar-day-abbrev-array.
13667
1d99a745
SM
136682011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
13669
13670 * progmodes/grep.el (grep-mode): Disable default
13671 compilation-directory-matcher setting (bug#8684).
13672
7c1d9aa0
MA
136732011-05-17 Michael Albinus <michael.albinus@gmx.de>
13674
13675 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
13676 instead of "head" and "tail". There were problems with SunOS 5.9,
13677 and it performs better.
13678
3952e9d8
GM
136792011-05-17 Glenn Morris <rgm@gnu.org>
13680
2dd12e7f
GM
13681 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
13682
e4157b9c
GM
13683 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
13684 Replace obsolete function.
13685
8e249bbd
GM
13686 * shell.el (pcomplete-parse-arguments-function): Declare.
13687
3952e9d8
GM
13688 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
13689 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
13690 (appt-check): Doc fixes.
13691 (appt-disp-window-function, appt-delete-window-function):
13692 Remove needless special case in custom :type.
13693 (appt-display-count): Default to 0, not nil.
13694 (appt-check): Reset appt-display-count to 0, not nil.
13695
c71a0d48 136962011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 13697
c71a0d48
GM
13698 * progmodes/python.el (python-font-lock-keywords):
13699 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 13700
31d55be9
SM
137012011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
13702
13703 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
13704
3bfacb2f
KR
137052011-05-16 Kevin Ryde <user42@zip.com.au>
13706
13707 * info-look.el (makefile-automake-mode): New setups, looking in
13708 automake manual, then makefile-mode.
13709 (makefile-mode): Remove automake manual, have it just in
13710 makefile-automake-mode since there's various things different or
13711 not relevant to plain make.
13712 (makefile-mode): Remove "other-modes" non-existent automake-mode,
13713 believe a hypothetical automake-mode would go to makefile-mode,
13714 not the other way around.
13715
c8e83751
CY
137162011-05-15 Chong Yidong <cyd@stupidchicken.com>
13717
5e9e35cd
CY
13718 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
13719 hunk-end tags (Bug#8672).
13720
c8e83751
CY
13721 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
13722 vc-annotate-show-diff-revision-at-line (Bug#8671).
13723
50b23e5a
GM
137242011-05-14 Glenn Morris <rgm@gnu.org>
13725
7210a739
GM
13726 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
13727 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
13728 (change-log-font-lock-keywords): Also handle multiple author lines
13729 with leading tabs. (Bug#8644)
7210a739 13730
4691905a
GM
13731 * calendar/appt.el (appt-check): Rename some local variables.
13732 Some simplification/reordering.
13733
50b23e5a
GM
13734 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
13735 (feedmail-sendmail-f-doesnt-sell-me-out)
13736 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13737 (feedmail-debug-sit-for, feedmail-queue-express-hook)
13738 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
13739 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
13740 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
13741 (feedmail-binmail-gnulinuxish-template):
13742 Rename from feedmail-binmail-linuxish-template.
13743 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
13744 Use insert-buffer-substring.
13745
215cda7c
BC
137462011-05-14 Bill Carpenter <bill@carpenter.org>
13747
13748 * mail/feedmail.el (feedmail-patch-level): Increase.
13749 (feedmail-debug): New custom group.
13750 (feedmail-confirm-outgoing-timeout)
13751 (feedmail-sendmail-f-doesnt-sell-me-out)
13752 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13753 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
13754 (feedmail-sender-line, feedmail-from-line)
13755 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 13756 (feedmail-spray-this-address)
215cda7c
BC
13757 (feedmail-spray-address-fiddle-plex-list)
13758 (feedmail-queue-use-send-time-for-date)
13759 (feedmail-queue-use-send-time-for-message-id)
13760 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
13761 (feedmail-buffer-eating-function):
13762 Doc fixes.
13763 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
13764 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
13765 (feedmail-message-action-scroll-down): New functions.
13766 (feedmail-queue-directory, feedmail-queue-draft-directory):
13767 Use expand-file-name.
13768 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
13769 Remove C-v help entry.
13770 (feedmail-queue-buffer-file-name): New variable.
13771 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
13772 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
13773 (feedmail-message-action-send-strong, feedmail-message-action-edit)
13774 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
13775 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
13776 (feedmail-message-action-toggle-spray)
13777 (feedmail-run-the-queue-no-prompts)
13778 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
13779 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
13780 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
13781 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
13782 (feedmail-envelope-deducer, feedmail-fiddle-from)
13783 (feedmail-fiddle-sender, feedmail-default-date-generator)
13784 (feedmail-fiddle-date, feedmail-fiddle-message-id)
13785 (feedmail-fiddle-spray-address)
13786 (feedmail-fiddle-list-of-spray-fiddle-plexes)
13787 (feedmail-fiddle-list-of-fiddle-plexes)
13788 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
13789 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
13790 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
13791 Change default. Doc fix.
13792 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
13793 (feedmail-binmail-linuxish-template): New constant.
13794 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
13795 Respect feedmail-sendmail-f-doesnt-sell-me-out.
13796 (feedmail-send-it): Add debug call.
13797 Use feedmail-queue-buffer-file-name, and
13798 feedmail-send-it-immediately-wrapper.
13799 (feedmail-message-action-send): Add debug call.
13800 Use feedmail-send-it-immediately-wrapper.
13801 (feedmail-queue-express-to-queue): Add debug call.
13802 Run feedmail-queue-express-hook.
13803 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
13804 (feedmail-message-action-help-blat):
13805 Rename from feedmail-queue-send-edit-prompt-help-first.
13806 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
13807 Check line-endings. Handle errors better.
13808 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
13809 Doc fix. Add debug call.
13810 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
13811 Use feedmail-queue-send-edit-prompt-inner.
13812 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
13813 (feedmail-queue-send-edit-prompt-inner): New function, extracted
13814 from feedmail-queue-send-edit-prompt.
13815 (feedmail-queue-send-edit-prompt-help)
13816 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
13817 (feedmail-tidy-up-slug): Add debug call.
13818 Respect feedmail-queue-slug-suspect-regexp.
13819 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
13820 (feedmail-dump-message-to-queue): Add debug call.
13821 Expand queue-directory.
13822 (feedmail-dump-message-to-queue): Change message slightly.
13823 Use feedmail-say-chatter.
13824 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
13825 (feedmail-send-it-immediately-wrapper): New function.
13826 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
13827 Insert empty string rather than newline. Handle full-frame case.
13828 Use catch/throw. Use feedmail-say-chatter.
13829 (feedmail-fiddle-from): Try mail-host-address.
13830 (feedmail-default-message-id-generator): Doc fix.
13831 Bind system-time-locale. Handle missing end.
13832 (feedmail-fiddle-x-mailer): Add debug call.
13833 Handle feedmail-x-mailer-line being nil.
13834 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
13835 Add debug call. Use buffer-substring-no-properties.
13836 (feedmail-say-debug, feedmail-say-chatter): New functions.
13837 (feedmail-find-eoh): Give an explicit error.
13838
42c7e61e
UJ
138392011-05-13 Ulf Jasper <ulf.jasper@web.de>
13840
c2571358 13841 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 13842 family from helvetica to sans.
c2571358 13843 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
13844 etc/images/newsticker.
13845
c2571358 13846 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
13847 family from helvetica to sans.
13848
13849 * net/newst-plainview.el (newsticker-new-item-face)
13850 (newsticker-old-item-face, newsticker-immortal-item-face)
13851 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 13852 (newsticker-statistics-face): Change default family from
42c7e61e 13853 helvetica to sans.
c2571358 13854 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
13855 etc/images/newsticker.
13856
5d3385a0
JB
13857 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
13858 (newsticker--process-auto-mark-filter-match): Tell user about
42c7e61e
UJ
13859 auto-marking.
13860
8497a297
DV
138612011-05-13 Didier Verna <didier@xemacs.org>
13862
13863 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
13864 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
13865 TODO entries.
8497a297
DV
13866 (lisp-lambda-list-keyword-parameter-indentation)
13867 (lisp-lambda-list-keyword-parameter-alignment)
13868 (lisp-lambda-list-keyword-alignment): New customizable user options.
13869 (lisp-indent-defun-method): Improve docstring.
13870 (extended-loop-p): Fix comment.
13871 (lisp-indent-lambda-list-keywords-regexp): New variable.
13872 (lisp-indent-lambda-list): New function.
13873 (lisp-indent-259): Use it.
13874 (lisp-indent-defmethod): Support for more than one
13875 method qualifier and properly indent methods lambda-lists.
13876 (defgeneric): Provide a missing common-lisp-indent-function property.
13877
f278f87f
SM
138782011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
13879
13880 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
13881 bounds for the empty string (bug#8667).
13882
5233edd7
GM
138832011-05-13 Glenn Morris <rgm@gnu.org>
13884
5237a44f
GM
13885 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
13886
8340026c 13887 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 13888 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 13889
5233edd7 13890 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 13891 (appt-time-msg-list): Doc fix.
a5464014 13892 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 13893
92d10796
AS
138942011-05-12 Andreas Schwab <schwab@linux-m68k.org>
13895
13896 * progmodes/ld-script.el (ld-script-keywords)
13897 (ld-script-builtins): Update keywords list.
13898
914a0ae1
SM
138992011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13900
c89be45f
SM
13901 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
13902
914a0ae1
SM
13903 * shell.el (shell-completion-vars): New function.
13904 (shell-mode):
13905 * simple.el (read-shell-command): Use it.
13906 (blink-matching-open): No need for " [...]" in minibuffer-message.
13907
98dc3df3
GM
139082011-05-12 Glenn Morris <rgm@gnu.org>
13909
13910 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
13911 (appt-check): Simplify.
13912
d2fc7e3d 139132011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 13914
4d61f28d 13915 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
13916 literal "/dev/null".
13917
d2fc7e3d 139182011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
13919
13920 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
13921 Fix typo.
13922
d2fc7e3d 139232011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 13924
3f254caa
SM
13925 * progmodes/which-func.el (which-function):
13926 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
13927 which might not be defined (Bug#8260).
13928
d45885f7
GM
139292011-05-12 Glenn Morris <rgm@gnu.org>
13930
13931 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
13932 Let byte-compile-initial-macro-environment always take precedence.
13933
488086f4
SM
139342011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13935
13936 * net/rcirc.el: Add support for SSL/TLS connections.
13937 (rcirc-server-alist): New field `encryption'.
13938 (rcirc): Check `encryption' settings.
13939 (rcirc-connect): New arg `encryption'. Use open-network-stream.
13940 Merge make-local-variable into `set'.
13941 (rcirc--connection-open-p): New function.
13942 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
13943 the process is not a network process (e.g. running gnutls-cli).
13944 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
13945 Make rcirc-(en|de)code-coding-system local here.
13946 (rcirc-mode): Merge make-local-variable into `set'.
13947 (rcirc-parent-buffer): Make permanent buffer-local.
13948 (rcirc-multiline-minor-mode): Don't do it here.
13949 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
13950 there's no server buffer.
13951
7d3b9d44
GM
139522011-05-11 Glenn Morris <rgm@gnu.org>
13953
f64049c6
GM
13954 * newcomment.el (comment-kill): Prefix "unused" local.
13955
93c9df73
GM
13956 * term/w32console.el (get-screen-color): Declare.
13957
7d3b9d44
GM
13958 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
13959 Handle symbol elements of byte-compile-initial-macro-environment.
13960
9e2dd53f
LL
139612011-05-10 Leo Liu <sdl.web@gmail.com>
13962
488086f4
SM
13963 * bookmark.el (bookmark-bmenu-mode-map):
13964 Bind bookmark-bmenu-search to `/'.
8b340240 13965
9e2dd53f 13966 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
13967 (footnote-unicode-string, footnote-unicode-regexp): New variable.
13968 (Footnote-unicode): New function.
13969 (footnote-style-alist): Add unicode style to the list.
13970 (footnote-style): Doc fix.
9e2dd53f 13971
79b70037
GM
139722011-05-10 Jim Meyering <meyering@redhat.com>
13973
13974 Fix doubled-word typos.
13975 * international/quail.el (quail-insert-kbd-layout): and and -> and
13976 * kermit.el: and and -> and
13977 * net/ldap.el (ldap-search-internal): to to -> to
13978 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
13979 * progmodes/js.el (js-mode): and and -> and
13980 * textmodes/artist.el (artist-move-to-xy): at at -> at
13981 (artist-draw-region-trim-line-endings): if if -> if
13982 And Safetyc -> Safety.
13983 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
13984
b8f82dc1 139852011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 13986 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
13987
13988 * files.el (hack-one-local-variable-eval-safep):
13989 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
13990
4f99f44b
GM
139912011-05-10 Glenn Morris <rgm@gnu.org>
13992
13993 * calendar/diary-lib.el (diary-list-entries-hook)
13994 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
13995 (diary-nongregorian-marking-hook, diary-list-entries)
13996 (diary-include-other-diary-files, diary-mark-entries)
13997 (diary-mark-included-diary-files): Doc fixes.
13998
84f29e6b
JB
139992011-05-09 Juanma Barranquero <lekktu@gmail.com>
14000
14001 * misc.el: Require tabulated-list.el during compilation.
14002
9bedd73a
CY
140032011-05-09 Chong Yidong <cyd@stupidchicken.com>
14004
488086f4
SM
14005 * progmodes/compile.el (compilation-start):
14006 Run compilation-filter-hook for the async case too.
9bedd73a
CY
14007 (compilation-filter-hook): Doc fix.
14008
797c735c
DD
140092011-05-09 Deniz Dogan <deniz@dogan.se>
14010
14011 * wdired.el: Remove outdated installation comment. Fix usage
14012 comment.
14013
5f4b1dfe
JB
140142011-05-09 Juanma Barranquero <lekktu@gmail.com>
14015
14016 * misc.el: Implement new command `list-dynamic-libraries'.
14017 (list-dynamic-libraries--loaded-only-p): New variable.
14018 (list-dynamic-libraries--refresh): New function.
14019 (list-dynamic-libraries): New command.
14020
4c44026c
CY
140212011-05-09 Chong Yidong <cyd@stupidchicken.com>
14022
488086f4
SM
14023 * progmodes/compile.el (compilation-error-regexp-alist-alist):
14024 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
14025 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
14026 higher priority to avoid clobbering by gnu.
14027
027f966d
CY
140282011-05-08 Chong Yidong <cyd@stupidchicken.com>
14029
14030 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
14031 if the face has existing theme settings (Bug#8454).
14032
085f5d7d
CY
140332011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
14034
488086f4
SM
14035 * progmodes/perl-mode.el (perl-imenu-generic-expression):
14036 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 14037
2a86a00c
RS
14038 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
14039 special file names `.' and `..' (Bug#8259).
14040
d9c54a06
CY
140412011-05-08 Chong Yidong <cyd@stupidchicken.com>
14042
488086f4
SM
14043 * progmodes/grep.el (grep-mode-font-lock-keywords):
14044 Remove buffer-changing entries.
d9c54a06
CY
14045 (grep-filter): New function.
14046 (grep-mode): Add it to compilation-filter-hook.
14047
14048 * progmodes/compile.el (compilation-filter-hook)
14049 (compilation-filter-start): New defvars.
14050 (compilation-filter): Call compilation-filter-hook prior to
14051 updating the process mark.
14052
c4662635
SM
140532011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
14054
14055 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
14056
b0512a1d
EZ
140572011-05-07 Eli Zaretskii <eliz@gnu.org>
14058
605c9376
EZ
14059 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
14060 mailclient-send-it even if window-system is nil. (Bug#8595)
14061
c4662635
SM
14062 * term/w32console.el (terminal-init-w32console):
14063 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
14064 background-mode. (Bug#8597)
14065
d1dc2cc2
SM
140662011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
14067
14068 Make bytecomp.el understand that defmethod defines funs (bug#8631).
14069 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
14070 New functions.
14071 (defgeneric, eieio--defmethod): Use them.
14072 (eieio-defgeneric): Remove.
14073 (defmethod): Call defgeneric in a way visible to the byte-compiler.
14074
915d1300
GM
140752011-05-07 Glenn Morris <rgm@gnu.org>
14076
a3961c3e
GM
14077 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
14078 Use let rather than let*.
14079 (timeclock-find-discrep): Remove unused local.
14080
314347b9
GM
14081 * calendar/diary-lib.el (diary-comment-start): Doc fix.
14082
915d1300
GM
14083 * calendar/appt.el (appt-time-msg-list): Doc fix.
14084
275b59b0
NF
140852011-05-06 Noah Friedman <friedman@splode.com>
14086
14087 * apropos.el (apropos-print-doc): Only use
14088 emacs-lisp-docstring-fill-column when it is bound to an integer,
14089 per that variable's documentation.
14090
6c19f744
SM
140912011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14092
14093 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 14094 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 14095
60f884b2
GM
140962011-05-06 Glenn Morris <rgm@gnu.org>
14097
5006e634
GM
14098 * calendar/appt.el (appt-message-warning-time): Doc fix.
14099 (appt-warning-time-regexp): New option.
14100 (appt-make-list): Respect appt-message-warning-time.
14101
548d0a63
GM
14102 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
14103 New options.
14104 (diary-add-to-list): Strip comments from the displayed string.
14105 (diary-mode): Set comment-start and comment-end.
14106
60f884b2
GM
14107 * vc/diff-mode.el (smerge-refine-subst): Declare.
14108 (diff-refine-hunk): Don't require smerge-mode when compiling.
14109
989681bb
JB
141102011-05-06 Juanma Barranquero <lekktu@gmail.com>
14111
14112 * simple.el (list-processes): Return nil as the docstring says.
14113
a6bc05e1
MA
141142011-05-05 Michael Albinus <michael.albinus@gmx.de>
14115
14116 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
14117 to "".
14118 (ange-ftp-write-region, ange-ftp-insert-file-contents)
14119 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
14120 determining of binary transfer. (Bug#7383)
14121
23c22e9a
MA
141222011-05-05 Michael Albinus <michael.albinus@gmx.de>
14123
c4662635
SM
14124 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
14125 Fix port computation bug. (Bug#8618)
23c22e9a 14126
0bff894f
GM
141272011-05-05 Glenn Morris <rgm@gnu.org>
14128
b8296902
GM
14129 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
14130
1f522ce8
GM
14131 * simple.el (shell-dynamic-complete-functions)
14132 (comint-dynamic-complete-functions): Declare.
14133
cf5bee67
GM
14134 * net/network-stream.el (gnutls-negotiate):
14135 * simple.el (tabulated-list-print): Fix declarations.
14136
14137 * progmodes/gud.el (syntax-symbol, syntax-point):
14138 Remove unnecessary and incorrect declarations.
14139
0bff894f
GM
14140 * emacs-lisp/check-declare.el (check-declare-scan):
14141 Handle byte-compile-initial-macro-environment in bytecomp.el
14142
9869b3ae
SM
141432011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
14144
14145 Fix earlier half-done eieio-defmethod change (bug#8338).
14146 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
14147 Streamline and change calling convention.
14148 (defmethod): Adjust accordingly and simplify.
14149 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
14150 new eieio--defmethod.
14151 (slot-boundp): Minor CSE simplification.
14152
9c1d5ac5
MZ
141532011-05-05 Milan Zamazal <pdm@zamazal.org>
14154
14155 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
14156 (glasses-make-readable): Use glasses-separate-capital-groups.
14157
455c834e
JB
141582011-05-05 Juanma Barranquero <lekktu@gmail.com>
14159
14160 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
14161 (warning-series): Doc fix.
14162 (display-warning): Don't try to create the buffer if we just found it.
14163
9ed7c8cb
CY
141642011-05-04 Chong Yidong <cyd@stupidchicken.com>
14165
14166 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
14167 (autoload-find-generated-file): New function.
14168 (generate-file-autoloads): Bind generated-autoload-file to
14169 buffer-file-name.
9869b3ae
SM
14170 (update-file-autoloads, update-directory-autoloads):
14171 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
14172 output file (Bug#7989).
14173 (batch-update-autoloads): Doc fix.
14174
0898ca10
JB
141752011-05-04 Juanma Barranquero <lekktu@gmail.com>
14176
14177 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
14178
31dfb76c
GM
141792011-05-04 Glenn Morris <rgm@gnu.org>
14180
f330b642
GM
14181 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
14182 function, so it follows changes in calendar-date-style.
14183 (diary-fancy-date-matcher): New function.
14184 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
14185 (diary-fancy-font-lock-fontify-region-function):
14186 Use diary-fancy-date-pattern as a function.
14187
31dfb76c
GM
14188 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
14189 non-numbers for `year' etc pseudo-variables. (Bug#8583)
14190
48e79d6a
TZ
141912011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
14192
14193 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
14194 instead of positional arguments. Allow :keylist and :crlfiles
14195 arguments.
14196 (open-gnutls-stream): Call it.
14197
14198 * net/network-stream.el (network-stream-open-starttls): Adjust to
14199 call `gnutls-negotiate' with :process and :hostname arguments.
14200
dd5a5ee0
SM
142012011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
14202
ef80fc09
SM
14203 * minibuffer.el (completion--message): New function.
14204 (completion--do-completion, minibuffer-complete)
14205 (minibuffer-force-complete, minibuffer-complete-word): Use it.
14206 (completion--do-completion): Don't ignore completion-auto-help when in
14207 icomplete-mode.
14208
dd5a5ee0
SM
14209 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
14210 internal encoding (e.g. tibetan zero is not whitespace).
14211 (global-whitespace-mode): Prefer save-current-buffer.
14212 (whitespace-trailing-regexp): Remove useless save-match-data.
14213 (whitespace-empty-at-bob-regexp): Minor simplification.
14214
b7d22a83
CY
142152011-05-03 Chong Yidong <cyd@stupidchicken.com>
14216
14217 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
14218
5192af46
AM
142192011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14220
14221 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 14222 Use `concat' to create string for insertion.
5192af46 14223
5767d190
SM
142242011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
14225
14226 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
14227 Avoid open-line which runs post-self-insert-hook.
14228 (bibtex-fill-entry): Remove unused `end' var.
14229
bf242939
AM
142302011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
14231
5767d190
SM
14232 * textmodes/ispell.el (ispell-add-per-file-word-list):
14233 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 14234
25666126
LL
142352011-05-03 Leo Liu <sdl.web@gmail.com>
14236
14237 * isearch.el (isearch-yank-pop): New command.
5767d190 14238 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
14239 (isearch-forward): Mention it.
14240
52d3c2d0
SM
142412011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
14242
1bcace58
SM
14243 * simple.el (minibuffer-complete-shell-command): Remove.
14244 (minibuffer-local-shell-command-map): Use completion-at-point.
14245 (read-shell-command): Setup completion vars here instead.
14246 (read-expression-map): Bind TAB to symbol completion.
14247
52d3c2d0
SM
14248 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
14249 error directly rather via storing it into `results'.
14250
35813471
LL
142512011-05-02 Leo Liu <sdl.web@gmail.com>
14252
14253 * vc/diff.el: Fix description.
14254
e793a940
LMI
142552011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
14256
14257 * server.el (server-eval-at): New function.
14258
8de66e05
LMI
142592011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
14260
14261 * net/network-stream.el (open-network-stream): Take a :nowait
14262 parameter and pass it on to `make-network-process'.
14263 (network-stream-open-plain): Ditto.
14264
dcb79f20
AS
142652011-04-30 Andreas Schwab <schwab@linux-m68k.org>
14266
14267 * faces.el (face-spec-set-match-display): Don't match toolkit
14268 options on terminal frames.
14269
14a7fbd8
SM
142702011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
14271
7eabc1be
SM
14272 * progmodes/pascal.el: Use lexical binding.
14273 (pascal-mode-map): Remove author preferences.
14274
14a7fbd8
SM
14275 * pcomplete.el (pcomplete-std-complete): Don't abuse
14276 completion-at-point.
14277
50f84510
JB
142782011-04-28 Juanma Barranquero <lekktu@gmail.com>
14279
6e087a44
JB
14280 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
14281 removing code that has been dead since 1991 or so.
14282
50f84510
JB
14283 * startup.el (command-line): When warning about "_emacs", use a
14284 delayed warning to allow the user to filter it out.
14285
0ba690bd
DD
142862011-04-28 Deniz Dogan <deniz@dogan.se>
14287
14288 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
14289 user has not joined.
14290
08abfaad
SM
142912011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
14292
14293 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
14294 aren't any completions at point.
14295
638f053a
JB
142962011-04-28 Juanma Barranquero <lekktu@gmail.com>
14297
14298 * subr.el (display-delayed-warnings): New function.
14299 (delayed-warnings-hook): New variable.
14300
8fff8daa
SM
143012011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
14302
08abfaad
SM
14303 * minibuffer.el (completion-at-point, completion-help-at-point):
14304 Don't presume that a given completion-at-point-function will always
14305 use the same calling convention.
14306
8fff8daa
SM
14307 * pcomplete.el (pcomplete-completions-at-point):
14308 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
14309 pcomplete-seen is non-nil.
14310 (pcomplete-comint-setup): Also recognize the new comint/shell
14311 completion functions.
14312 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
14313 pcomplete-seen is non-nil.
14314
841a1577 143152011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 14316
841a1577 14317 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 14318 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 14319 the first character in the entry. This allows for code to add its
211ec907
UJ
14320 own uid to the entry.
14321 (icalendar--convert-float-to-ical): Add export of
14322 `diary-float'-entries save for those with the optional DAY
14323 argument.
14324
2a782793
DC
143252011-04-27 Daniel Colascione <dan.colascione@gmail.com>
14326
14327 * subr.el (shell-quote-argument): Use alternate escaping strategy
14328 when we spot a variable reference in a string.
14329
0438ce91
DC
143302011-04-26 Daniel Colascione <dan.colascione@gmail.com>
14331
14332 * cus-start.el (all): Define customization for debug-on-event.
14333
841a1577 143342011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
14335
14336 * subr.el (shell-quote-argument): Escape correctly under Windows.
14337
d090ed6c
SM
143382011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
14339
14340 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
14341
bfd31217
MA
143422011-04-25 Michael Albinus <michael.albinus@gmx.de>
14343
d090ed6c
SM
14344 * net/tramp.el (tramp-process-actions): Add POS argument.
14345 Delete region between POS and (pos).
bfd31217 14346
d090ed6c
SM
14347 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
14348 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
14349 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
14350
14351 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
14352 position in `tramp-process-actions' call.
14353
14354 * net/trampver.el: Update release number.
14355
e92f3bd3
SM
143562011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
14357
850256b5
SM
14358 * custom.el (defcustom): Obey lexical-binding.
14359
e92f3bd3
SM
14360 Fix octave-inf completion problems reported by Alexander Klimov.
14361 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
14362 Inherit from octave-mode-syntax-table.
14363 (inferior-octave-mode): Set info-lookup-mode.
14364 (inferior-octave-completion-at-point): New function.
14365 (inferior-octave-complete): Use it and completion-in-region.
14366 (inferior-octave-dynamic-complete-functions): Use it as well, and use
14367 comint-filename-completion.
14368 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
14369 symbol elements which shouldn't be word elements.
14370 (octave-font-lock-keywords, octave-beginning-of-defun)
14371 (octave-function-header-regexp): Adjust regexps accordingly.
14372 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
14373
cd22b309
JB
143742011-04-25 Juanma Barranquero <lekktu@gmail.com>
14375
14376 * net/gnutls.el (gnutls-errorp): Declare before first use.
14377
8b492194
TZ
143782011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
14379
14380 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
14381 verify-error, and verify-hostname-error parameters. Check whether
cd22b309 14382 default trustfile exists before going to use it. Add missing
5a5fa834 14383 argument to gnutls-message-maybe call. Return value.
8b492194
TZ
14384 Reported by Claudio Bley <claudio.bley@gmail.com>.
14385 (open-gnutls-stream): Add usage example.
14386
14387 * net/network-stream.el (network-stream-open-starttls): Give host
14388 parameter to `gnutls-negotiate'.
14389 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 14390 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 14391
841a1577 143922011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 14393
cd22b309
JB
14394 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
14395 Use correct match group (bug#8438).
05842630 14396
3ba7869c
CY
143972011-04-24 Chong Yidong <cyd@stupidchicken.com>
14398
512e3ae1
CY
14399 * emacs-lisp/package.el (package-built-in-p): Fix typo.
14400 (package-menu--generate): New arg specifying packages to show.
14401 (package-menu-refresh, package-menu-execute, list-packages):
14402 Callers changed.
14403 (package-show-package-list): New function, replacing deleted
14404 package--list-packages (renamed because it is non-internal).
14405
14406 * finder.el (finder-list-matches): Use package-show-package-list
14407 instead of deleted package--list-packages.
14408
e92f3bd3
SM
14409 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
14410 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
14411 (vc-annotate-mode-map): Bind it to RET.
14412
7031be6d
UR
144132011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
14414
14415 * progmodes/etags.el (next-file): Don't use set-buffer to change
14416 buffers (Bug#8478).
14417
4ef177aa
CY
144182011-04-24 Chong Yidong <cyd@stupidchicken.com>
14419
c8d173eb
CY
14420 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
14421
4ef177aa
CY
14422 * apropos.el (apropos-label-face): Avoid variable-pitch face.
14423 (apropos-accumulator): Doc fix.
14424 (apropos-function, apropos-macro, apropos-command)
14425 (apropos-variable, apropos-face, apropos-group, apropos-widget)
14426 (apropos-plist): Add face property.
14427 (apropos-symbols-internal): Fix indentation.
14428 (apropos-print): Simplify help, and recognize apropos-multi-type.
14429 (apropos-print-doc): Use button-type-get to extract the button's
14430 face property. Fill docstring (Bug#8352).
14431
4ffd0d6b 144322011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
14433
14434 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
14435
c6c32125 14436 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 14437 (mpuz-mode-map): Use mapc.
c6c32125
JB
14438 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
14439 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
14440 Fix typos in docstrings.
14441
58d468b4
JB
14442 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
14443 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
14444
6470c3c6
JB
14445 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
14446
4ffd0d6b 144472011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
14448
14449 * minibuffer.el (completion--do-completion): Avoid the "Next char
14450 not unique" prompt if icomplete-mode is enabled (Bug#5849).
14451
3ad8bad0
CY
14452 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
14453 mouse-2 into unread-command-events, it is interpreted correctly.
14454
71d73c9c 14455 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 14456 (image-toggle-display): Doc fix.
71d73c9c 14457
841a1577 144582011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 14459
4ffd0d6b
GM
14460 * textmodes/page.el (what-page): Use line-number-at-pos to
14461 calculate line number (Bug#6825).
6e1dbaa9 14462
c2fb1b60
JB
144632011-04-22 Juanma Barranquero <lekktu@gmail.com>
14464
14465 * eshell/esh-mode.el (find-tag-interactive): Declare function.
14466 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
14467 Pass argument NO-DEFAULT to `find-tag-interactive'.
14468
e02f48d7
JB
144692011-04-22 Juanma Barranquero <lekktu@gmail.com>
14470
14471 Lexical-binding cleanup.
14472
14473 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
14474 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
14475 * progmodes/ada-prj.el (ada-prj-initialize-values)
14476 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
14477 (ada-prj-show-value):
14478 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
14479 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
14480 (antlr-invalidate-context-cache, antlr-options-menu-filter)
14481 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
14482 * progmodes/bug-reference.el (bug-reference-push-button):
14483 * progmodes/fortran.el (fortran-line-length):
14484 * progmodes/glasses.el (glasses-change):
14485 * progmodes/octave-mod.el (octave-fill-paragraph):
14486 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
14487 (python-pdbtrack-grub-for-buffer, python-sentinel):
14488 * progmodes/sql.el (sql-save-connection):
14489 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
14490 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
14491 Mark unused parameters.
14492
14493 * progmodes/compile.el (compilation--flush-directory-cache)
14494 (compilation--flush-parse, compile-internal): Mark unused parameters.
14495 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
14496 (compilation-next-error-function): Remove unused variable `timestamp'.
14497
14498 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
14499 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
14500
14501 * progmodes/dcl-mode.el (dcl-end-of-command):
14502 Remove unused variable `start'.
14503 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
14504 (dcl-option-value-basic, dcl-option-value-offset)
14505 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
14506 Mark unused parameters.
14507 (dcl-save-local-variable): Remove unused variable `val'.
14508 (mode): Declare.
14509
14510 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
14511 Mark unused parameters.
14512 (delphi-ignore-changes): Move before first use.
14513 (delphi-charset-token-at): Remove unused variable `start'.
14514 (delphi-else-start): Remove unused variable `if-count'.
14515 (delphi-comment-block-start, delphi-comment-block-end):
14516 Remove unused variable `kind'.
14517 (delphi-indent-line): Remove unused variable `new-point'.
14518
14519 * progmodes/ebrowse.el (ebrowse-files-list)
14520 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
14521 Mark unused parameters. Don't quote `lambda'.
14522 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
14523 Don't quote `lambda'.
14524 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
14525 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
14526 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
14527 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
14528 Use `ignore-errors'.
14529 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
14530 (ebrowse-view/find-file-and-search-pattern)
14531 (ebrowse-view/find-member-declaration/definition):
14532 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
14533 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
14534 Rename parameter PREFIX-ARG to PREFIX.
14535 (ebrowse-tags-read-name): Remove unused variables `start' and
14536 `member-info'.
14537 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
14538 to `tags-file'.
14539
14540 * progmodes/etags.el (local-find-tag-hook): Declare.
14541 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
14542 Mark unused parameters.
14543
14544 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
14545 (executable-interpret): Mark unused parameter.
14546
14547 * progmodes/flymake.el (flymake-process-sentinel)
14548 (flymake-after-change-function)
14549 (flymake-create-temp-with-folder-structure)
14550 (flymake-get-include-dirs-dot): Mark unused parameters.
14551 (flymake-safe-delete-directory): Remove unused variable `err'.
14552
14553 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
14554 (speedbar-timer-fn, speedbar-line-text)
14555 (speedbar-change-expand-button-char, speedbar-delete-subblock)
14556 (speedbar-center-buffer-smartly): Declare functions.
14557 (gdb-find-watch-expression): Remove unused variable `array'.
14558 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
14559 (gdb-starting): Mark unused parameters.
14560 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
14561 (gdb-table-string): Remove unused variable `res'.
14562 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
14563 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
14564 (gdb-display-buffer): Remove unused variable `cur-size'.
14565
14566 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
14567 allow lexical-binding compilation.
14568 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
14569 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
14570 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
14571 Mark unused parameters.
14572 (gud-gdb-marker-filter): Remove unused variable `match'.
14573 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
14574 lambda expressions and funcall them, instead of using `fset'.
14575
14576 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
14577 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
14578
14579 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
14580 variable `header-beg'; use `let'.
14581
14582 * progmodes/icon.el (indent-icon-exp): Remove unused variables
14583 `restart', `last-sexp' and `at-do'.
14584
14585 * progmodes/js.el (js--debug): Mark unused parameter.
14586 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
14587 (js--splice-into-items): Remove unused variable `item'.
14588 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
14589
14590 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
14591 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
14592 (makefile-complete): Remove unused variable `try'.
14593 (makefile-fill-paragraph, makefile-match-function-end):
14594 Mark unused parameters.
14595
14596 * progmodes/octave-inf.el (inferior-octave-complete):
14597 Remove unused variable `proc'.
14598 (inferior-octave-output-digest): Mark unused parameter.
14599
14600 * progmodes/perl-mode.el (perl-calculate-indent):
14601 Remove unused variable `err'.
14602
14603 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
14604 (prolog-indent-line): Mark unused parameters.
14605 (prolog-indent-line): Remove unused variable `beg'.
14606
14607 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
14608 (reporter-dont-compact-list): Declare.
14609
14610 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
14611 Remove unused variable `char'.
14612 (sh-debug): Mark unused parameter.
14613 (sh-get-indent-info): Remove unused variable `start'.
14614 (sh-calculate-indent): Remove unused variable `var'.
14615
14616 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
14617 (simula-electric-keyword): Remove unused variable `null'.
14618 (simula-search-backward, simula-search-forward): Remove unused
14619 variables `begin' and `end'.
14620
14621 * progmodes/vera-mode.el (vera-guess-basic-syntax):
14622 Remove unused variable `pos'.
14623 (vera-electric-tab, vera-comment-uncomment-region):
14624 Mark unused parameters.
14625 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
14626
7ede3b65
CY
146272011-04-22 Chong Yidong <cyd@stupidchicken.com>
14628
14629 * emacs-lisp/package.el (package--builtins, package-alist)
14630 (package-load-descriptor, package-built-in-p, package-activate)
14631 (define-package, package-installed-p)
14632 (package-compute-transaction, package-buffer-info)
14633 (package--push): Doc fix. Distinguish more clearly between
14634 version strings and version lists.
14635
121656e9
JB
146362011-04-21 Juanma Barranquero <lekktu@gmail.com>
14637
14638 Lexical-binding cleanup.
14639
14640 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
14641 (5x5-make-mutate-best):
14642 * play/fortune.el (fortune-in-buffer):
14643 * play/gomoku.el (gomoku-init-display):
14644 * play/solitaire.el (solitaire, solitaire-do-check):
14645 * play/tetris.el (tetris-default-update-speed-function):
14646 Mark unused parameters.
14647
14648 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
14649 (bubbles--shift): Remove unused variable `char-org'.
14650 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
14651 (bubbles--show-images): Remove unused variable `char'.
14652
14653 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
14654 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
14655 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
14656 (decipher-analyze-buffer): Use ?\s.
14657 (decipher-make-checkpoint): Remove unused variable `mapping'.
14658
14659 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
14660
14661 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
14662 Remove unused variable `result'; use `let'.
14663
14664 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
14665 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
14666 (gametree-children-shown-p, gametree-compute-reduced-score):
14667 Use `ignore-errors'.
14668
14669 * play/handwrite.el (ps-lpr-switches): Declare.
14670 (handwrite): Remove unused variables `pmin' and `lastp'.
14671
14672 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
14673
14674 * play/landmark.el (landmark-init-display)
14675 (landmark-update-naught-weights): Mark unused parameters.
14676 (landmark-y): Remove unused variable `noise'. Simplify.
14677 (landmark-human-plays): Remove unused variable `score'.
14678
14679 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
14680 (mpuz-try-proposal): Remove unused variable `game'.
14681
14682 * play/zone.el (life-patterns): Declare.
14683
80f499c7
JB
146842011-04-20 Juanma Barranquero <lekktu@gmail.com>
14685
14686 * vc/vc.el (ediff-vc-internal): Declare function.
14687
024ff170
SM
146882011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14689
c0a193ea
SM
14690 * shell.el: Use lexical-binding and std completion UI.
14691 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
14692 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
14693 comint-preoutput-filter-functions rather than on
14694 comint-output-filter-functions.
14695 (shell-command-completion, shell--command-completion-data)
14696 (shell-filename-completion, shell-environment-variable-completion)
14697 (shell-c-a-p-replace-by-expanded-directory): New functions.
14698 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
14699 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
14700 (shell-dynamic-complete-environment-variable): Use them.
14701 (shell-dynamic-complete-as-environment-variable)
14702 (shell-dynamic-complete-as-command): Remove.
14703 (shell-match-partial-variable): Match past point.
14704 * comint.el: Clean up use of completion-at-point-functions.
14705 (comint-completion-at-point): New function.
14706 (comint-mode): Use it completion-at-point-functions.
14707 (comint-dynamic-complete): Make it obsolete.
14708 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
14709 (comint-c-a-p-replace-by-expanded-history): New function.
14710 (comint-dynamic-complete-functions)
14711 (comint-replace-by-expanded-history): Use it.
14712 * minibuffer.el (completion-table-with-terminator): Allow dynamic
14713 termination strings. Try harder to avoid second try-completion.
14714 (completion-in-region-mode-map): Disable bindings that don't work yet.
14715
2dbaa080
SM
14716 * comint.el: Use lexical-binding. Require CL.
14717 (comint-dynamic-complete-functions): Use comint-filename-completion.
14718 (comint-completion-addsuffix): Tweak custom type.
14719 (comint-filename-completion, comint--common-suffix)
14720 (comint--common-quoted-suffix, comint--table-subvert)
14721 (comint--complete-file-name-data): New functions.
14722 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
14723 (comint-dynamic-list-filename-completions): Use them.
14724 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 14725
2dbaa080
SM
14726 * minibuffer.el (completion-in-region-mode):
14727 Keep completion-in-region-mode--predicate global.
14728 (completion-in-region--postch):
14729 Assume completion-in-region-mode--predicate is not null.
14730
c79a6f38
SM
14731 * progmodes/flymake.el (flymake-start-syntax-check-process):
14732 Obey `dir'. Simplify.
14733
024ff170
SM
14734 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
14735 we're in VC after all.
14736
1c6c854e
CS
147372011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
14738
14739 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 14740 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
14741 (vc-version-diff): Use vc-diff-build-argument-list-internal.
14742
bed7f140
SM
147432011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14744
332e62ab
SM
14745 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
14746 add sanity check.
14747
bed7f140
SM
14748 * obsolete/erc-hecomplete.el: Make obsolete.
14749 * obsolete/: Standardize obsolescence info in the header.
14750
f195c582
GM
147512011-04-20 Glenn Morris <rgm@gnu.org>
14752
14753 * calendar/solar.el (solar-horizontal-coordinates):
14754 Use the longitude argument rather than `calendar-longitude'.
14755 (solar-date-next-longitude): Remove unused locals.
14756
cb79b8c0
VJL
147572011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14758
14759 * whitespace.el: New version 13.2.1.
14760
147612011-04-20 felix <EmacsWiki> (tiny change)
14762
d8e4b68b 14763 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
14764 switching between major modes on a file.
14765
602ea69d
SM
147662011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
14767
14768 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
14769 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
14770 multi-line comments as well.
14771
06b60517
JB
147722011-04-19 Juanma Barranquero <lekktu@gmail.com>
14773
14774 Lexical-binding cleanup.
14775
14776 * arc-mode.el (archive-mode-revert):
14777 * cmuscheme.el (scheme-interactively-start-process):
14778 * custom.el (custom-initialize-delay):
14779 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
14780 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
14781 * emacs-lock.el (emacs-lock-clear-sentinel):
14782 * ezimage.el (defezimage):
14783 * follow.el (follow-avoid-tail-recenter):
14784 * fringe.el (set-fringe-mode-1):
14785 * generic-x.el (bat-generic-mode-compile):
14786 * help-mode.el (help-info-variable, help-do-xref)
14787 (help-mode-revert-buffer):
14788 * help.el (view-emacs-todo):
14789 * iswitchb.el (iswitchb-completion-help):
14790 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
14791 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
14792 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
14793 * locate.el (locate-update):
14794 * longlines.el (longlines-encode-region)
14795 (longlines-after-change-function):
14796 * outline.el (outline-isearch-open-invisible):
14797 * ps-def.el (declare-function, charset-dimension, char-width)
14798 (encode-char):
14799 * ps-mule.el (ps-mule-plot-string):
14800 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
14801 (recentf-edit-list-select, recentf-edit-list-validate)
14802 (recentf-open-files-action):
14803 * rect.el (delete-whitespace-rectangle-line)
14804 (rectangle-number-line-callback):
14805 * register.el (window-configuration-to-register)
14806 (frame-configuration-to-register):
14807 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
14808 * select.el (xselect-convert-to-string, xselect-convert-to-length)
14809 (xselect-convert-to-targets, xselect-convert-to-delete)
14810 (xselect-convert-to-filename, xselect-convert-to-charpos)
14811 (xselect-convert-to-lineno, xselect-convert-to-colno)
14812 (xselect-convert-to-os, xselect-convert-to-host)
14813 (xselect-convert-to-user, xselect-convert-to-class)
14814 (xselect-convert-to-name, xselect-convert-to-integer)
14815 (xselect-convert-to-atom, xselect-convert-to-identity):
14816 * subr.el (declare, ignore, process-kill-without-query)
14817 (text-clone-maintain):
14818 * terminal.el (te-get-char, te-tic-sentinel):
14819 * tool-bar.el (tool-bar-make-keymap):
14820 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
14821 * type-break.el (type-break-mode, type-break-noninteractive-query):
14822 * view.el (View-back-to-mark):
14823 * wid-browse.el (widget-browse-action, widget-browse-widget)
14824 (widget-browse-widgets, widget-browse-sexp):
14825 * widget.el (define-widget-keywords):
14826 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
14827 Mark unused parameters.
14828
14829 * align.el (align-adjust-col-for-rule): Mark unused parameter.
14830 (align-areas): Remove unused variable `look'.
14831 (align-region): Remove unused variables `real-end' and `pos-list'.
14832
14833 * apropos.el (apropos-score-doc): Remove unused variable `i'.
14834
14835 * bindings.el (mode-line-modified, mode-line-remote):
14836 Mark unused parameters.
14837 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
14838
14839 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
14840 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
14841
14842 * comint.el (comint-history-isearch-pop-state)
14843 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
14844 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
14845 (comint-substitute-in-file-name): Doc fix.
14846
14847 * completion.el (cmpl-statistics-block): Mark unused parameter.
14848 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
14849 (save-completions-to-file, load-completions-from-file):
14850 Remove unused local variable `e'.
14851
14852 * composite.el (compose-chars): Remove unused variable `len'.
14853 (lgstring-insert-glyph): Remove unused variable `g'.
14854 (compose-glyph-string): Remove unused variables `ascent',
14855 `descent', `lbearing' and `rbearing'.
14856 (compose-glyph-string-relative): Remove unused variables
14857 `lbearing', `rbearing' and `wadjust'.
14858 (compose-gstring-for-graphic): Remove unused variables `header',
14859 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
14860 (compose-gstring-for-terminal): Remove unused variables `header'
14861 and `nchars'. Use `let', not `let*'.
14862
14863 * cus-edit.el (Custom-set, Custom-save, custom-reset)
14864 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
14865 (Custom-buffer-done, custom-buffer-create-internal)
14866 (custom-browse-visibility-action, custom-browse-group-tag-action)
14867 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
14868 (widget-magic-mouse-down-action, custom-toggle-parent)
14869 (custom-add-parent-links, custom-toggle-hide-variable)
14870 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
14871 (custom-toggle-hide-face, face, hook, custom-group-link-action)
14872 (custom-face-menu-create, custom-variable-menu-create, get)
14873 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
14874 (custom-reset-standard-save-and-update): Remove unused variable `value'.
14875 (customize-apropos): Remove unused variable `tests'.
14876 (custom-group-value-create): Remove unused variable `hidden-p'.
14877 (sort-fold-case): Declare.
14878
14879 * cus-theme.el (custom-reset-standard-faces-list)
14880 (custom-reset-standard-variables-list): Declare.
14881 (customize-create-theme, custom-theme-revert, custom-theme-write)
14882 (custom-theme-choose-mode, customize-themes, custom-theme-save):
14883 Mark unused parameters.
14884
14885 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
14886
14887 * delim-col.el (delimit-columns-max): Move defvar before first use.
14888
14889 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 14890 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
14891
14892 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
14893 (auto-insert): Declare.
14894 (desktop-restore-file-buffer): Rename desktop-* parameters;
14895 mark unused ones.
14896 (desktop-create-buffer): Rename desktop-* parameters and bind them.
14897 (desktop-buffer): Rename desktop-* parameters.
14898
14899 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
14900 (dframe-reposition-frame-xemacs, dframe-help-echo)
14901 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
14902 Mark unused parameters.
14903
14904 * dired-aux.el (backup-extract-version-start, overwrite-query)
14905 (overwrite-backup-query, rename-regexp-query)
14906 (rename-non-directory-query): Declare.
14907 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
14908 (dired-add-entry): Remove unused variable `orig-file-name'.
14909 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
14910 Use parameter PRESERVE-TIME instead of accessing dynamic variable
14911 `dired-copy-preserve-time' directly.
14912 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
14913 (dired-insert-subdir-newpos): Rename unused variable `pos'.
14914
14915 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
14916 (dired-virtual-revert, dired-make-relative-symlink):
14917 Mark unused parameters.
14918 (manual-program): Declare.
14919 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
14920 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
14921 wrapped in `with-no-warnings' to avoid replacing one warning by another.
14922
14923 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
14924
14925 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
14926
14927 * echistory.el (electric-history-in-progress, Helper-return-blurb):
14928 Declare.
14929
14930 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
14931
14932 * electric.el (Electric-command-loop): Rename parameter
14933 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
14934
14935 * expand.el (expand-in-literal): Remove unused variable `here'.
14936
14937 * facemenu.el (facemenu-add-new-color):
14938 Remove unused variable `docstring'.
14939
14940 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
14941 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
14942 (face-attr-construct): Mark unused parameter. Doc fix.
14943 (read-color): Remove unused variable `hex-string'.
14944
14945 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
14946 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
14947 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
14948 (display-buffer-other-frame): Remove unused variable `old-window'.
14949 (kill-buffer-hook): Declare.
14950 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
14951 Mark unused parameters.
14952 (after-find-file): Pass 1 to `auto-save-mode', not t.
14953
14954 * files-x.el (auto-insert): Declare.
14955 (modify-file-local-variable-prop-line): Remove unused variable `val'.
14956
14957 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 14958 variable `buf'. Mark unused parameter.
06b60517
JB
14959 (find-lisp-insert-directory): Mark unused parameter.
14960
14961 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
14962 (format-encode-region): Remove unused variables `cur-buf' and `result'.
14963 (format-common-tail): Remove, unused.
14964 (format-deannotate-region): Remove unused variable `loc'.
14965 (format-annotate-region): Remove unused variable `p'.
14966 (format-annotate-single-property-change): Remove unused variables
14967 `default' and `tail'.
14968
14969 * forms.el (read-file-filter): Declare.
14970 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
14971
14972 * frame.el (frame-creation-function-alist): Mark unused parameter.
14973 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
14974
14975 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
14976 Remove unused parameters.
14977 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
14978 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
14979
14980 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
14981 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
14982 (hfy-prepare-tag-map): Mark unused parameters.
14983 (htmlfontify-buffer): Use `called-interactively-p'.
14984
14985 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
14986 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
14987 (ibuffer-do-occur): Mark unused parameters.
14988 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
14989 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
14990
14991 * ibuffer.el: Don't quote `lambda'.
14992 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
14993 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
14994 Mark unused parameters.
14995
14996 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
14997 (ido-completing-read): Mark unused parameters.
14998 (ido-copy-current-word): Mark unused parameters;
14999 remove unused variable `name'.
15000 (ido-sort-merged-list): Remove unused parameter `dirs'.
15001
15002 * ielm.el (ielm-input-sender): Mark unused parameter.
15003 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
15004 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
15005 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
15006 `ielm-string' as a dynamic variable accessible from the IELM prompt.
15007 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
15008
15009 * image-dired.el (image-dired-display-thumbs): Remove unused
15010 variables `curr-file' and `count'.
15011 (image-dired-remove-tag): Remove unused variable `start'.
15012 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
15013 variable `curr-file'
15014 (image-dired-rotate-original): Remove unused variable `temp-file'.
15015 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
15016 Remove unused variable `file'.
15017 (image-dired-gallery-generate): Remove unused variable `curr'.
15018 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
15019
15020 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
15021
15022 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
15023
15024 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
15025
15026 * isearch.el (minibuffer-history-symbol): Declare.
15027 (isearch-edit-string): Remove unused variable `err'.
15028 (isearch-message-prefix, isearch-message-suffix):
15029 Mark unused parameters.
15030
15031 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
15032
15033 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
15034
15035 * makesum.el (double-column): Remove unused variable `cnt'.
15036
15037 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
15038 (ido-ignore-item-temp-list): Declare.
15039
15040 * mouse-drag.el (mouse-drag-throw): Remove unused variables
15041 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
15042 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
15043 (mouse-drag-drag): Remove unused variables `mouse-delta' and
15044 `mouse-col-delta'.
15045
15046 * mouse-sel.el (mouse-extend-internal):
15047 Remove unused variable `orig-window-frame'.
15048
15049 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
15050 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
15051 Move declarations before first use.
15052 (pcomplete-opt): Mark unused parameters; doc fix.
15053
15054 * proced.el (proced-revert): Mark unused parameter.
15055 (proced-send-signal): Remove unused variable `err'.
15056
15057 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
15058 Rename parameter PREFIX-ARG to ARG.
15059 (ps-basic-plot-string, ps-basic-plot-whitespace):
15060 Mark unused parameters.
15061
15062 * replace.el (replace-count): Define.
15063 (occur-revert-function): Mark unused parameters.
15064 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
15065 (isearch-case-fold-search, isearch-string): Declare.
15066 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
15067 bind `case-fold-search'. Remove unused variables `beg' and `end',
15068 and simplify.
15069 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
15070 COUNT and bind `replace-count'.
15071 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
15072 to COUNT.
15073
15074 * savehist.el (print-readably, print-string-length): Declare.
15075
15076 * shadowfile.el (shadow-expand-cluster-in-file-name):
15077 Remove unused variable `cluster'.
15078 (shadow-copy-file): Remove unused variable `i'.
15079 (shadow-noquery, shadow-clusters, shadow-site-cluster)
15080 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
15081 (shadow-define-literal-group, shadow-define-regexp-group)
15082 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
15083
15084 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
15085 (shell): Use `called-interactively-p'.
15086 (shell-directory-tracker): Remove unused variable `chdir-failure'.
15087
15088 * simple.el (compilation-context-lines, comint-file-name-quote-list)
15089 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
15090 (delete-backward-char): Remove unused variable `ocol'.
15091 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
15092 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
15093 (event-apply-hyper-modifier, event-apply-shift-modifier)
15094 (event-apply-control-modifier, event-apply-meta-modifier):
15095 Mark unused parameters.
15096 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
15097 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
15098
15099 * speedbar.el (speedbar-ignored-directory-expressions)
15100 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
15101 (speedbar-find-file, speedbar-dir-follow)
15102 (speedbar-directory-buttons-follow, speedbar-tag-find)
15103 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
15104 (speedbar-buffers-line-directory, speedbar-buffer-click):
15105 Mark unused parameters.
15106 (speedbar-tag-file): Remove unused variable `mode'.
15107 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
15108
15109 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
15110
15111 * talk.el (talk): Remove unused variable `display'.
15112
15113 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
15114 (tar-write-region-annotate): Mark unused parameter.
15115
15116 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
15117 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
15118 Declare them, wrapped in `with-no-warnings' to avoid replacing one
15119 warning by another.
15120
15121 * time-stamp.el (time-stamp-string-preprocess):
15122 Remove unused variable `require-padding'.
15123
15124 * tree-widget.el (widget-glyph-enable): Declare.
15125 (tree-widget-action): Mark unused parameter.
15126
15127 * w32-fns.el (x-get-selection): Mark unused parameter.
15128 (autoload-make-program, generated-autoload-file): Declare.
15129
15130 * wdired.el (wdired-revert): Mark unused parameters.
15131 (wdired-xcase-word): Remove unused variable `err'.
15132
15133 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
15134 (whitespace-help-scroll): Remove unused variable `data-help'.
15135
15136 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
15137 (widget-image-insert, widget-after-change, default)
15138 (widget-default-format-handler, widget-default-notify)
15139 (widget-default-prompt-value, widget-info-link-action)
15140 (widget-url-link-action, widget-function-link-action)
15141 (widget-variable-link-action, widget-file-link-action)
15142 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
15143 (widget-field-prompt-internal, widget-field-action, widget-field-match)
15144 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
15145 (widget-insert-button-action, widget-delete-button-action, visibility)
15146 (widget-documentation-link-action, widget-documentation-string-action)
15147 (widget-const-prompt-value, widget-regexp-match, symbol)
15148 (widget-coding-system-prompt-value)
15149 (widget-key-sequence-value-to-external, sexp)
15150 (widget-sexp-value-to-internal, character, vector, cons)
15151 (widget-choice-prompt-value, widget-boolean-prompt-value)
15152 (widget-color--choose-action): Mark unused parameters.
15153 (widget-item-match-inline, widget-choice-match-inline)
15154 (widget-checklist-match, widget-checklist-match-inline)
15155 (widget-group-match): Rename parameter VALUES to VALS.
15156 (widget-field-value-set): Remove unused variable `size'.
15157 (widget-color-action): Remove unused variables `value' and `start'.
15158
15159 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 15160 variable `dir'. Doc fix.
06b60517
JB
15161 (windmove-find-other-window): Don't pass it.
15162
15163 * window.el (count-windows): Mark unused parameter.
15164 (bw-adjust-window): Remove unused variable `err'.
15165
15166 * woman.el (woman-file-name): Remove unused variable `default'.
15167 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
15168 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
15169 (global-font-lock-mode): Declare.
15170 (woman-decode-region): Mark unused parameter.
15171 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
15172
15173 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
15174 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
15175 (x-dnd-handle-moz-url): Remove unused variable `title'.
15176 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
15177
15178 * xml.el (xml-parse-tag, xml-parse-attlist):
15179 Remove unused variable `pos'.
15180
bc4f7f3d
GM
151812011-04-19 Glenn Morris <rgm@gnu.org>
15182
15183 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
15184 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
15185 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
15186 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
15187 * calendar/cal-html.el (cal-html-insert-minical):
15188 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
15189 (calendar-mark-date-pattern):
15190 Prefix "unused" locals.
15191
15192 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
15193 optional argument `style'.
15194
15195 * calendar/appt.el (appt-make-list):
15196 * calendar/cal-china.el (calendar-chinese-date-string):
15197 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
15198 (diary-hebrew-yahrzeit):
15199 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
15200 * calendar/calendar.el (calendar-generate-window):
15201 * calendar/time-date.el (time-to-days):
15202 Remove unused local variables.
15203
16a43933
CY
152042011-04-18 Chong Yidong <cyd@stupidchicken.com>
15205
15206 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
15207 glyphless-char-display table.
15208 (tabulated-list-glyphless-char-display): New var.
15209
7eed1860
SS
152102011-04-18 Sam Steingold <sds@gnu.org>
15211
15212 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
15213 to acknowledgments.
15214
4d2d1ccd
GM
152152011-04-17 Glenn Morris <rgm@gnu.org>
15216
15217 * calendar/diary-lib.el (diary-sexp-entry):
15218 * calendar/holidays.el (holiday-sexp):
15219 Set debug-on-error rather than the removed stack-trace-on-error.
15220
239da61d
GM
152212011-04-16 Glenn Morris <rgm@gnu.org>
15222
15223 * progmodes/f90.el: Use lexical-binding.
15224 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
15225
8b05752a
SM
152262011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15227
daca8ba5
SM
15228 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
15229 (mail-mode): Setup mailalias completion here instead.
15230 * mail/mailalias.el: Use lexical-binding.
15231 (pattern, mailalias-done): Declare dynamic.
15232 (mail-completion-at-point-function): New function, from mail-complete.
15233 (mail-complete): Use it.
15234 (mail-completion-expand): New function.
15235 (mail-get-names): Use it.
15236 (mail-directory, mail-directory-process, mail-directory-stream):
15237 Don't use `pattern' for lexically bound arg.
15238
6f542485
SM
15239 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
15240
037e7c3f
SM
15241 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
15242 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
15243 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
15244
8b05752a
SM
15245 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
15246 (byte-save-window-excursion, byte-temp-output-buffer-setup)
15247 (byte-interactive-p): Define them again, for use when inlining
15248 old code.
15249
49093f60
JB
152502011-04-15 Juanma Barranquero <lekktu@gmail.com>
15251
15252 * loadup.el: Use `string-to-number', not `string-to-int'.
15253
b5b8e7de
SM
152542011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15255
15256 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
15257 gud-gdb-complete-command.
15258 (gud-gdb-completions): New function, from gud-gdb-complete-command.
15259 (gud-gdb-completion-at-point): New function.
15260 (gud-gdb-completions): Remove.
15261
f42efeb5
MA
152622011-04-14 Michael Albinus <michael.albinus@gmx.de>
15263
49093f60
JB
15264 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
15265 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
15266 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
15267 whether `executable-find' is bound.
f42efeb5
MA
15268
15269 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
15270
e240cc21
SM
152712011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
15272
15273 * minibuffer.el (completion-in-region-mode-predicate)
15274 (completion-in-region-mode--predicate): New vars.
15275 (completion-in-region, completion-in-region--postch)
15276 (completion-in-region-mode): Use them.
15277 (completion--capf-wrapper): Also return the hook function.
15278 (completion-at-point, completion-help-at-point):
15279 Adjust and provide a predicate.
c2bd2ab0
SM
15280
15281 Preserve arg names for advice of subr and lexical functions (bug#8457).
15282 * help-fns.el (help-function-arglist): Consolidate the subr and
15283 new-byte-code cases. Add argument `preserve-names' to extract names
15284 from the docstring when needed.
15285 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
15286 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
15287 (ad-arglist): Use help-function-arglist's new arg.
15288 (ad-definition-type): Use cond.
15289
c183f693
JB
152902011-04-13 Juanma Barranquero <lekktu@gmail.com>
15291
06641a47
JB
15292 * autorevert.el (auto-revert-handler):
15293 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
15294 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
15295 Don't quote lambda.
15296
c183f693
JB
15297 * image-mode.el (image-transform-set-scale):
15298 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
15299
1e3b6001
G
153002011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15301
15302 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 15303 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
15304 Upgrades via gnutls-cli are too slow to be done opportunistically.
15305
2d6af8dd
JB
153062011-04-12 Juanma Barranquero <lekktu@gmail.com>
15307
15308 * dframe.el (dframe-current-frame): Remove spurious quote.
15309
c0749a51
GM
153102011-04-12 Glenn Morris <rgm@gnu.org>
15311
088d0d61
GM
15312 * calendar/cal-tex.el (cal-tex-end-document):
15313 Try to automatically use latin1 input if needed.
15314
c0749a51
GM
15315 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
15316 Don't try to cons a mark onto an empty element.
15317
5c90fde0
LL
153182011-04-11 Leo Liu <sdl.web@gmail.com>
15319
15320 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
15321 buffers.
15322 (ido-kill-buffer-at-head): Support killing virtual buffers.
15323
369e974d
CY
153242011-04-10 Chong Yidong <cyd@stupidchicken.com>
15325
15326 * minibuffer.el (completion-show-inline-help): New var.
15327 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
15328 (minibuffer-force-complete, minibuffer-complete-word):
15329 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
15330
15331 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
15332 to avoid interference from inline help (Bug#5849).
15333
37f1c930
LL
153342011-04-10 Leo Liu <sdl.web@gmail.com>
15335
099c39a4
JB
15336 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15337 Fix typo.
37f1c930 15338
a32d4040
CY
153392011-04-09 Chong Yidong <cyd@stupidchicken.com>
15340
15341 * image-mode.el (image-toggle-display-image): Signal an error if
15342 not in Image mode.
15343 (image-transform-mode, image-transform-resize)
15344 (image-transform-set-rotation): Doc fix.
daca8ba5 15345 (image-transform-set-resize): Delete.
a32d4040
CY
15346 (image-transform-set-scale, image-transform-fit-to-height)
15347 (image-transform-fit-to-width): Handle image-toggle-display-image
15348 and image-transform-resize directly.
15349
099c39a4 153502011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
15351
15352 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
15353 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
15354 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
15355 (doc-view-mode-map): Add bindings for the new functions.
15356
099c39a4 153572011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 15358
4d61f28d 15359 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
15360 Fix typo in docstring.
15361
3726838a
EZ
153622011-04-08 Eli Zaretskii <eliz@gnu.org>
15363
04f33f1e
EZ
15364 * files.el (file-size-human-readable): Produce one digit after
15365 decimal, like "ls -lh" does.
15366
15367 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
15368 the file size representation.
15369
3726838a
EZ
15370 * simple.el (list-processes): If async subprocesses are not
15371 available, error out with a clear error message.
15372
cbb59342
CY
153732011-04-08 Chong Yidong <cyd@stupidchicken.com>
15374
15375 * help.el (help-form-show): New function, to be called from C.
15376 Put help-form output in a buffer named differently than *Help*.
15377
e3971c44
EZ
153782011-04-08 Eli Zaretskii <eliz@gnu.org>
15379
15380 * files.el (file-size-human-readable): New function.
15381
15382 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
15383 computing the representation inline. Don't require `cl'.
15384
12544bbe
GM
153852011-04-08 Glenn Morris <rgm@gnu.org>
15386
a1de6c6a
GM
15387 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
15388
3c4671f4
GM
15389 * net/browse-url.el (browse-url-firefox):
15390 Test system-type, not system-configuration.
15391
b605679c
GM
15392 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
15393 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
15394 Use log-edit-empty-buffer-p. (Bug#7598)
15395
56442f0c
GM
15396 * net/rlogin.el (rlogin-process-connection-type): Simplify.
15397 (rlogin-mode-map): Initialize in the defvar.
15398 (rlogin): Use ignore-errors.
15399
12544bbe
GM
15400 * replace.el (occur-mode-map): Some fixes for menu items.
15401
eb237b0f
AH
154022011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
15403
15404 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
15405
7d668f2c
CY
154062011-04-06 Chong Yidong <cyd@stupidchicken.com>
15407
e67a13ab
CY
15408 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
15409 issuing unused warnings.
15410
15411 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
15412 macro directly.
15413
7d668f2c
CY
15414 * simple.el: Lisp reimplement of list-processes. Based on an
15415 earlier reimplementation by Leo Liu, but using tabulated-list.el.
15416 (process-menu-mode): New major mode.
15417 (list-processes--refresh, list-processes):
15418 (process-menu-visit-buffer): New functions.
15419
15420 * files.el (save-buffers-kill-emacs): Don't assume any return
15421 value of list-processes, which is undocumented anyway.
15422
a83ec3c9
CY
154232011-04-06 Chong Yidong <cyd@stupidchicken.com>
15424
15425 * emacs-lisp/tabulated-list.el: New file.
15426
e91a96fe
CY
15427 * emacs-lisp/package.el: Use Tabulated List mode.
15428 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
15429 (package-menu-mode): Derive from tabulated-list-mode. Set up the
15430 table format using Tabulated List mode variables.
15431 (package--push): New macro, replacing package-list-maybe-add.
15432 (package-menu--generate): Use package--push. Renamed from
15433 package--generate-package-list.
15434 (package-menu-refresh, list-packages): Use it.
daca8ba5 15435 (package-menu--print-info): Rename from package-print-package.
e91a96fe 15436 Return insertion data instead of inserting it directly.
099c39a4
JB
15437 (package-menu-describe-package, package-menu-execute):
15438 Use tabulated-list-get-id.
e91a96fe
CY
15439 (package-menu-mark-delete, package-menu-mark-install)
15440 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
15441 (package-menu-mark-obsolete-for-deletion):
15442 Use tabulated-list-put-tag.
e91a96fe
CY
15443 (package--list-packages, package-menu-revert)
15444 (package-menu-get-package, package-menu-get-version)
15445 (package-menu-sort-by-column): Functions deleted.
15446 (package-menu-package-list, package-menu-sort-key): Vars deleted.
15447 (package-menu--status-predicate, package-menu--version-predicate)
15448 (package-menu--name-predicate)
15449 (package-menu--description-predicate): Handle arguments in the
15450 Tabulated List format.
15451 (package-list-packages-no-fetch): Call list-packages.
15452
3e214b50
JB
154532011-04-06 Juanma Barranquero <lekktu@gmail.com>
15454
15455 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 15456 (after-find-file): Don't bind it.
3e214b50
JB
15457 (revert-buffer-in-progress-p): New variable.
15458 (revert-buffer): Bind it.
15459 Pass nil for `after-find-file-from-revert-buffer'.
15460
15461 * saveplace.el (save-place-find-file-hook): Use new variable
15462 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
15463
3f0f1700
GM
154642011-04-06 Glenn Morris <rgm@gnu.org>
15465
c0274801
GM
15466 * Makefile.in (AUTOGEN_VCS): New variable.
15467 (autoloads): Use $AUTOGEN_VCS.
15468
3f0f1700
GM
15469 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
15470 * calendar/calendar.el (calendar-mode-map):
15471 Check for toolkit scroll bars. (Bug#8305)
15472
41ea9e48
CY
154732011-04-05 Chong Yidong <cyd@stupidchicken.com>
15474
15475 * minibuffer.el (completion-in-region--postch)
15476 (completion-in-region-mode): Remove unnecessary messages.
15477
6194c800
JB
154782011-04-05 Juanma Barranquero <lekktu@gmail.com>
15479
33256f14
JB
15480 * font-lock.el (font-lock-refresh-defaults):
15481 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
15482 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
15483
6194c800
JB
15484 * info.el (Info-directory-list, Info-read-node-name-2)
15485 (Info-split-parameter-string): Doc fixes.
15486 (Info-virtual-nodes): Reflow docstring.
15487 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
15488 (Info-apropos-toc-nodes, info-finder, Info-get-token)
15489 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
15490 Fix typos in docstrings.
15491 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
15492 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
15493 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
15494 (Info-restore-desktop-buffer): Mark unused parameters.
15495 (Info-directory-find-file, Info-directory-find-node)
15496 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
15497 (Info-virtual-index-find-node, Info-apropos-find-file)
15498 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 15499 Mark unused parameters; fix typos in docstrings.
6194c800
JB
15500 (Info-virtual-index): Remove unused local variable `nodename'.
15501
b87a8200 155022011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 15503
b87a8200
DD
15504 * net/rcirc.el: Update my e-mail address.
15505 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 15506
3b2ff876
CY
155072011-04-05 Chong Yidong <cyd@stupidchicken.com>
15508
15509 * startup.el (command-line): Save the cursor's theme-face
15510 directly, instead of using face-override-spec.
15511
15512 * custom.el (load-theme): Minor optimization in assigning faces.
15513
8d17e7ca
JB
155142011-04-04 Juanma Barranquero <lekktu@gmail.com>
15515
15516 * help-fns.el (describe-variable): Complete all variables having
15517 documentation, including keywords.
15518 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
15519
2fbc1934
JB
155202011-04-04 Juanma Barranquero <lekktu@gmail.com>
15521
15522 Convert to lexical-binding.
15523
15524 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
15525 (bs--get-marked-string, bs--get-modified-string)
15526 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
15527 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
15528 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
15529
15530 * ehelp.el (electric-help-execute-extended)
15531 (electric-help-ctrl-x-prefix):
15532 * hexl.el (hexl-revert-buffer-function):
15533 * linum.el (linum-after-change, linum-after-scroll):
15534 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
15535
15536 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
15537
74f50695
DU
155382011-04-04 Daiki Ueno <ueno@unixuser.org>
15539
15540 * epa-dired.el:
15541 * epa-mail.el:
15542 * epa-hook.el:
15543 * epa-file.el:
15544 * epa.el:
15545 * epg.el: Use lexical binding.
15546
c11325f7
CY
155472011-04-03 Chong Yidong <cyd@stupidchicken.com>
15548
0d9e9a12
CY
15549 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
15550
c11325f7 15551 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
15552 dictionary case for flyspell-mark-duplications-exceptions.
15553 Use regexp matching for languages.
c11325f7
CY
15554 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
15555 default dictionary (Bug#7926).
15556
da91b5f2
CY
155572011-04-02 Chong Yidong <cyd@stupidchicken.com>
15558
099c39a4
JB
15559 * emacs-lisp/package.el (package--with-work-buffer):
15560 Recognize https URLs.
da91b5f2 15561
099c39a4
JB
15562 * net/network-stream.el: Move from gnus/proto-stream.el.
15563 Change prefix to network-stream throughout.
da91b5f2
CY
15564 (open-protocol-stream): Merge into open-network-stream, leaving
15565 open-protocol-stream as an alias. Handle nil BUFFER args.
15566
15567 * subr.el (open-network-stream): Move to net/network-stream.el.
15568
afa8e9f6
GM
155692011-04-02 Glenn Morris <rgm@gnu.org>
15570
1d2e369d
GM
15571 * find-dired.el (find-exec-terminator): New option.
15572 (find-ls-option): Test for -ls support.
15573 (find-ls-subdir-switches): Test for -b in find-ls-option.
15574 (find-dired, find-grep-dired): Doc fixes.
15575 (find-dired): Use find-exec-terminator.
15576
8abb7da8 15577 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
15578 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
15579 (find-name-arg): Remove purecopy.
8abb7da8 15580
f3ca7378
GM
15581 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
15582 (grep-compute-defaults): Check for `-exec COMMAND +' support.
15583 Set grep-find-use-xargs, grep-find-command, and grep-find-template
15584 accordingly. Don't add the null-device if not needed.
15585
afa8e9f6
GM
15586 * files.el (save-some-buffers): Doc fix.
15587
35eae264
EZ
155882011-04-02 Eli Zaretskii <eliz@gnu.org>
15589
15590 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
15591
26b51db5
JB
155922011-04-01 Juanma Barranquero <lekktu@gmail.com>
15593
15594 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
15595 Use `dolist' rather than `mapcar'.
15596
7200d79c
SM
155972011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15598
03408648 15599 Add lexical binding.
7200d79c 15600
03408648
SM
15601 * subr.el (apply-partially): Use new closures rather than CL.
15602 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
15603 (dolist, dotimes): Use slightly different expansion for lexical code.
15604 (functionp): Move to C.
15605 (letrec): New macro.
15606 (with-wrapper-hook): Use it and apply-partially instead of CL.
15607 (eval-after-load): Preserve lexical-binding.
15608 (save-window-excursion, with-output-to-temp-buffer): Turn them
15609 into macros.
7200d79c 15610
03408648
SM
15611 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
15612
15613 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
15614 than the arglist.
15615 (help-add-fundoc-usage): Don't add `Not documented'.
15616 (help-function-arglist): Handle closures, subroutines, and new
15617 byte-code-functions.
15618 (help-make-usage): Remove leading underscores.
15619 (describe-function-1): Handle closures.
15620 (describe-variable): Use special-variable-p for completion.
15621
15622 * files.el (lexical-binding): Declare safe.
f488fb65 15623
03408648
SM
15624 * emacs-lisp/pcase.el: Don't use destructuring-bind.
15625 (pcase--memoize): Rename from pcase-memoize. Change weakness.
15626 (pcase): Add `let' pattern.
15627 Change memoization so it actually works.
15628 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
15629 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
15630 <let>: New case.
f488fb65 15631
03408648
SM
15632 * emacs-lisp/macroexp.el: Use lexical binding.
15633 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
15634 Don't convert ' to #' without checking that it's indeed quoting
15635 a lambda.
15636
15637 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 15638 Use eval-sexp-add-defvars.
03408648
SM
15639 (eval-sexp-add-defvars): New fun.
15640
15641 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
15642
15643 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
15644 Don't autoload.
15645 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
15646 than the internal `byte-compile-lambda'.
15647 (defmethod): Don't hide code under quotes.
15648 (eieio-defmethod): New `code' argument.
15649
15650 * emacs-lisp/eieio-comp.el: Remove.
15651
15652 * emacs-lisp/edebug.el (edebug-eval-defun)
15653 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
15654 (edebug-toggle): Avoid `eval'.
15655
15656 * emacs-lisp/disass.el (disassemble-internal): Handle new
15657 `closure' objects.
15658 (disassemble-1): Handle new byte codes.
15659
15660 * emacs-lisp/cl.el (pushnew): Silence warning.
15661
15662 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
15663 (cl-byte-compile-throw): Remove.
15664 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
15665
15666 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
15667 closures.
15668
15669 * emacs-lisp/cconv.el: New file.
15670
15671 * emacs-lisp/bytecomp.el: Use lexical binding instead of
15672 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
15673 (byte-compile-initial-macro-environment):
15674 Handle declare-function here.
15675 (byte-compile--lexical-environment): New var.
15676 (byte-stack-ref, byte-stack-set, byte-discardN)
15677 (byte-discardN-preserve-tos): New lap codes.
15678 (byte-interactive-p): Don't use any more.
15679 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
15680 New macros.
15681 (byte-compile-lapcode): Use them and handle new lap codes.
15682 (byte-compile-obsolete): Remove.
15683 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
15684 (byte-compile-arglist-warn): Check late def of inlinable funs.
15685 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
15686 since they should have been expanded by now.
15687 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
15688 (byte-compile-from-buffer): Remove unused second arg.
15689 (byte-compile-preprocess): New function.
15690 (byte-compile-toplevel-file-form): New function to distinguish
15691 file-form calls from outside from file-form calls from hunk-handlers.
15692 (byte-compile-file-form): Simplify.
15693 (byte-compile-file-form-defsubst): Remove.
15694 (byte-compile-file-form-defmumble): Simplify now that
15695 byte-compile-lambda always returns a byte-code-function.
15696 (byte-compile): Preprocess.
15697 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
15698 Remove, not used any more.
15699 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
15700 (byte-compile-make-args-desc): New funs.
15701 (byte-compile-lambda): Handle lexical functions. Always return
15702 a byte-code-function.
15703 (byte-compile-reserved-constants): New var, to make up room for
15704 closed-over variables.
15705 (byte-compile-constants-vector): Obey it.
15706 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
15707 (byte-compile-macroexpand-declare-function): New function.
15708 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
15709 byte-code-functions.
15710 (byte-compile-form): Check obsolescence here.
15711 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
15712 (byte-compile-variable-ref): Remove.
15713 (byte-compile-dynamic-variable-op): New fun.
15714 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
15715 (byte-compile-variable-set): New funs.
15716 (byte-compile-discard): Add 2 args.
15717 (byte-compile-stack-ref, byte-compile-stack-set)
15718 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
15719 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
15720 macroexpand-all instead.
15721 (byte-compile-quote-form): Remove.
15722 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
15723 (byte-compile-bind, byte-compile-unbind): New funs.
15724 (byte-compile-let): Handle let* and lexical binding.
15725 (byte-compile-let*): Remove.
15726 (byte-compile-catch, byte-compile-unwind-protect)
15727 (byte-compile-track-mouse, byte-compile-condition-case):
15728 Handle a new :fun-body form, used for lexical scoping.
15729 (byte-compile-save-window-excursion)
15730 (byte-compile-with-output-to-temp-buffer): Remove.
15731 (byte-compile-defun): Simplify.
15732 (byte-compile-stack-adjustment): New fun.
15733 (byte-compile-out): Use it.
15734 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
15735
15736 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
15737 handler any more.
15738
15739 * emacs-lisp/byte-opt.el: Use lexical binding.
15740 (byte-inline-lapcode): Remove (to bytecomp).
15741 (byte-compile-inline-expand): Pay attention to inlining to/from
15742 lexically bound code.
15743 (byte-compile-unfold-lambda): Don't handle byte-code-functions
15744 any more.
15745 (byte-optimize-form-code-walker): Don't handle save-window-excursion
15746 any more and don't call compiler-macros.
15747 (byte-compile-splice-in-already-compiled-code): Remove.
15748 (byte-code): Don't inline any more.
15749 (disassemble-offset): Receive `bytes' as argument rather than via
15750 dynamic scoping.
15751 (byte-compile-tag-number): Declare before first use.
15752 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
15753 `return' even if make-spliceable.
15754 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
15755 obsolete interactive-p.
15756 (byte-optimize-lapcode): Optimize new lap-codes.
15757 Don't trip up on new form of `byte-constant' lap code.
15758
15759 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
15760
15761 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
15762
15763 * custom.el (custom-initialize-default, custom-declare-variable):
15764 Use `defvar'.
15765
15766 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
15767 New variables.
15768 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
15769 (COMPILE_FIRST): Add macroexp and cconv.
15770 * makefile.w32-in: Mirror changes in Makefile.in.
15771
15772 * vc/cvs-status.el:
15773 * vc/diff-mode.el:
15774 * vc/log-edit.el:
15775 * vc/log-view.el:
15776 * vc/smerge-mode.el:
15777 * textmodes/bibtex-style.el:
090bd7cb 15778 * textmodes/css-mode.el:
03408648
SM
15779 * startup.el:
15780 * uniquify.el:
da91b5f2
CY
15781 * minibuffer.el:
15782 * newcomment.el:
15783 * reveal.el:
15784 * server.el:
15785 * mpc.el:
15786 * emacs-lisp/smie.el:
15787 * doc-view.el:
15788 * dired.el:
03408648
SM
15789 * abbrev.el: Use lexical binding.
15790
0f0c1f27
EZ
157912011-04-01 Eli Zaretskii <eliz@gnu.org>
15792
15793 * info.el (info-display-manual): New function.
15794
c82b2579
SM
157952011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
15796
15797 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
15798
221ddf68
TH
157992011-03-31 Tassilo Horn <tassilo@member.fsf.org>
15800
15801 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 15802 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 15803
cba6e77e
GM
158042011-03-31 Glenn Morris <rgm@gnu.org>
15805
e040639f
GM
15806 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
15807
cba6e77e
GM
15808 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
15809
6d0f1c9e
CS
158102011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
15811
15812 * progmodes/python.el (python-default-interpreter)
15813 (python-python-command-args, python-jython-command-args)
15814 (python-which-shell, python-which-args, python-which-bufname)
15815 (python-file-queue, python-comint-output-filter-function)
15816 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
15817 variables and functions.
15818
3e2d70fd
SM
158192011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
15820
15821 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
15822 (completion-in-region-mode): New minor mode.
15823 (completion-in-region): Use it.
15824 (completion-in-region--data, completion-in-region-mode-map): New vars.
15825 (completion-in-region--postch): New function.
15826 (completion--capf-misbehave-funs, completion--capf-safe-funs):
15827 New vars.
15828 (completion--capf-wrapper): New function.
15829 (completion-at-point): Use it to track well-behavedness of
15830 hook functions.
15831 (completion-help-at-point): New command.
15832
f3e4086c
JM
158332011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
15834
15835 * vc/add-log.el (add-change-log-entry): Don't use whitespace
15836 syntax class to search for whitespace on a single line
15837 (Message-ID: <4D938140.4030905@redhat.com>).
15838
eb7ffc14
LL
158392011-03-30 Leo Liu <sdl.web@gmail.com>
15840
15841 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
15842 New commands.
15843 (edit-abbrevs-map): Bind them here.
15844 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
15845
d806ab68
KM
158462011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
15847
15848 * allout.el (allout-hide-by-annotation, allout-flag-region):
15849 Reduce possibility of overlay leakage by making them volatile.
15850
15851 * allout-widgets.el (allout-widgets-tally): Define as nil so the
15852 hash is not shared between buffers. Mode initialization is
15853 responsible for giving it a useful starting value.
15854 (allout-item-span): Reduce possibility of overlay leakage by
15855 making them volatile.
15856 (allout-widgets-count-buttons-in-region): Add diagnostic function
15857 for tracking down button overlay leaks.
15858
ea622834
LL
158592011-03-29 Leo Liu <sdl.web@gmail.com>
15860
15861 * ido.el (ido-read-internal): Use the default history var
15862 minibuffer-history if no HISTORY is specified.
15863
b62f8267
G
158642011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
15865
03408648
SM
15866 * net/imap.el (imap-shell-open, imap-process-connection-type):
15867 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
15868 Kerberos, SSL, other subprocesses.
15869
947b6566
LL
158702011-03-28 Leo Liu <sdl.web@gmail.com>
15871
15872 * abbrev.el (abbrev-table-empty-p): New function.
15873 (prepare-abbrev-list-buffer): Place empty abbrev tables after
15874 nonempty ones. (Bug#5937)
15875
5ffb62aa
JD
158762011-03-27 Jan Djärv <jan.h.d@swipnet.se>
15877
15878 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
15879
7a097943
LL
158802011-03-27 Leo Liu <sdl.web@gmail.com>
15881
15882 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
15883 for foreground and background colors.
15884 (ansi-color-make-color-map): Adapt.
15885
c5b40130
LL
158862011-03-25 Leo Liu <sdl.web@gmail.com>
15887
1f48f7d2
LL
15888 * midnight.el (midnight-time-float): Remove. Note it calculates
15889 the microsecond component incorrectly and seconds-to-time does the
15890 same job.
625897ec 15891 Remove redundant (require 'timer).
1f48f7d2 15892
c5b40130
LL
15893 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
15894 (ido-completions): Remove unused arguments. (Bug#8329)
15895
d86d2721
SM
158962011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
15897
15898 * minibuffer.el (completion--flush-all-sorted-completions):
15899 Remove itself from hook.
15900 (completion-at-point): Let the functions perform the completion
15901 immediately and return nil or t.
15902 * comint.el (comint-dynamic-complete-functions): Now identical to
15903 completion-at-point-functions.
15904 (comint-dynamic-list-input-ring): Remove unused var `index'.
15905 (comint--match-partial-filename, comint--unquote&expand-filename):
15906 New funs, split from comint-match-partial-filename.
15907 (comint-dynamic-complete): Use completion-at-point.
15908 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
15909
e8974c48
DA
159102011-03-24 Drew Adams <drew.adams@oracle.com>
15911
15912 * thingatpt.el: Support `defun'.
15913
def71b5e
LL
159142011-03-23 Leo Liu <sdl.web@gmail.com>
15915
cb5af48e
LL
15916 * abbrevlist.el: Move to obsolete/abbrevlist.el.
15917
def71b5e
LL
15918 * help-mode.el (help-mode-finish): Tweak regexp.
15919
927c53e7
GM
159202011-03-23 Glenn Morris <rgm@gnu.org>
15921
18d05bed
GM
15922 * eshell/esh-opt.el (eshell-eval-using-options):
15923 Do not bind unused local variable `eshell-option-stub'.
15924
927c53e7
GM
15925 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
15926
9d0da923
JB
159272011-03-22 Juanma Barranquero <lekktu@gmail.com>
15928
15929 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
15930 keymap variable in `with-no-warnings' to avoid a warning when the
15931 keymap has been already `defconst'ed.
15932
4b978a67
LL
159332011-03-22 Leo Liu <sdl.web@gmail.com>
15934
15935 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
15936 encode all chars in abbrevs; otherwise use emacs-mule or
15937 utf-8-emacs. (Bug#8308)
15938
5fd62452
JB
159392011-03-22 Juanma Barranquero <lekktu@gmail.com>
15940
0b1596c6
JB
15941 * simple.el (backward-delete-char-untabify):
15942 Avoid warning about using `delete-backward-char'.
15943
5fd62452
JB
15944 * image.el (image-type-file-name-regexps): Make it variable.
15945 `imagemagick-register-types' modifies it, and the user may want
15946 to add new extensions for known image types.
15947 (imagemagick-register-types): Throw error if not using ImageMagick.
15948
0b4e93f1
LL
159492011-03-22 Leo Liu <sdl.web@gmail.com>
15950
15951 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
15952 located before rcirc-prompt-end-marker.
15953 (rcirc-complete): Error if point is not after rcirc prompt.
15954 Handle the case when table is nil.
9882e214 15955 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 15956
fccee4ab
CY
159572011-03-22 Chong Yidong <cyd@stupidchicken.com>
15958
15959 * custom.el (custom--inhibit-theme-enable): Make it affect only
15960 custom-theme-set-variables and custom-theme-set-faces.
15961 (provide-theme): Ignore custom--inhibit-theme-enable.
15962 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
15963 (custom-enabling-themes): Delete variable.
d86d2721
SM
15964 (enable-theme): Accept only loaded themes as arguments.
15965 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
15966 (custom-enabled-themes): Forbid themes from setting this.
15967 Eliminate use of custom-enabling-themes.
15968 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 15969
af896da6
LL
159702011-03-21 Leo Liu <sdl.web@gmail.com>
15971
15972 * ido.el (ido-read-internal): Add ido-selected to history instead
15973 of user input.
15974
78f64af0
SM
159752011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
15976
15977 * subr.el (deferred-action-list, deferred-action-function):
15978 Mark obsolete.
15979
b16ac1ec
LL
159802011-03-21 Leo Liu <sdl.web@gmail.com>
15981
810f7698
LL
15982 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
15983 change on 2011-02-13 (bug#8309).
15984
b16ac1ec
LL
15985 * minibuffer.el (read-file-name-function): Change default value.
15986 (read-file-name--defaults): Rename from read-file-name-defaults.
15987 (read-file-name-default): Rename from read-file-name.
15988 (read-file-name): Call read-file-name-function.
15989
4e05e67e
GM
159902011-03-21 Glenn Morris <rgm@gnu.org>
15991
15992 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
15993 Doc fixes.
15994
4359915b
CY
159952011-03-21 Chong Yidong <cyd@stupidchicken.com>
15996
15997 * cus-theme.el: Add missing provide statement.
15998 (customize-create-theme): Extract theme value correctly.
15999 (custom-theme-visit-theme): Autoload.
16000 (customize-create-theme): Prompt before inserting default faces.
16001
1fe275ee
JB
160022011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
16003
16004 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
16005 units and musical notes.
16006
cd394be1 160072011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
16008
16009 * ido.el (ido-read-internal): Use completing-read-default.
16010 (ido-completing-read): Fix compatibility with completing-read.
16011
7d476bde
CO
160122011-03-20 Christian Ohler <ohler@gnu.org>
16013
16014 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
16015 (ert-delete-all-tests): Use `called-interactively-p' rather than
16016 `interactive-p'.
16017 (ert--make-xrefs-region): Respect END.
16018
fe0fb33e
CY
160192011-03-19 Chong Yidong <cyd@stupidchicken.com>
16020
ff854b0b
CY
16021 * dired-aux.el (dired-create-directory): Signal an error if the
16022 directory already exists (Bug#8246).
16023
fe0fb33e
CY
16024 * facemenu.el (list-colors-display): Call list-faces-display
16025 inside with-help-window.
16026 (list-colors-print): Use display property to align the final
16027 column, instead of checking window-width.
16028
576bce32
EZ
160292011-03-19 Eli Zaretskii <eliz@gnu.org>
16030
4d61f28d 16031 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
16032 windows-nt systems.
16033 (emerge-protect-metachars): Quote correctly for ms-dos and
16034 windows-nt systems.
16035
89c41d68 160362011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
16037
16038 * info.el (info-initialize): Replace all uses of `:' with
16039 path-separator for compatibility with non-Unix systems.
16040 Cache quoting of path-separator. (Bug#8258)
16041
b14e3e21 160422011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
16043
16044 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
16045 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
16046 (mouse-avoidance-mode): Fix typos in docstrings.
16047
4525ce3e
CY
160482011-03-19 Chong Yidong <cyd@stupidchicken.com>
16049
16050 * startup.el (package-subdirectory-regexp): Move from package.el.
16051 Omit \\` and \\', and let callers add them.
16052
16053 * emacs-lisp/package.el (package-strip-version)
16054 (package-load-all-descriptors): Add \\` and \\' to
16055 package-subdirectory-regexp before using it.
16056 (package-untar-buffer): New arg DIR; ensure that file untars only
16057 into this expected directory. Remove superfluous delete-region.
16058 (package-unpack): Caller changed.
16059 (package-tar-file-info): Use package-subdirectory-regexp.
16060
a904a09a 160612011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 16062
a904a09a
SM
16063 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
16064 diff-mode-shared-map (bug#8284).
16065 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
16066
160672011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
16068
16069 * calendar/time-date.el (format-seconds): Use assoc instead of
16070 assoc-string, since assoc-string doesn't exist in XEmacs.
16071
171fc304
JB
160722011-03-17 Juanma Barranquero <lekktu@gmail.com>
16073
16074 * custom.el (custom-known-themes): Reflow docstring.
16075 (custom-theme-load-path): Fix typo in docstring.
16076 (load-theme): Fix typo in error message.
16077 (custom-available-themes, custom-variable-theme-value):
16078 Use `let', not `let*'.
16079
d71990a1
JB
160802011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
16081
16082 * calc/README: Mention inclusion of musical notes.
16083
16084 * calc/calc-units.el (calc-lu-quant): Rename from
16085 `calc-logunits-quantity'.
16086 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
16087 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
16088 (calc-db): Rename from `calc-dblevel'.
16089 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
16090 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
16091 (calc-np): Rename from `calc-nplevel'.
16092 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
16093 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
16094 (calc-lu-plus): Rename from `calc-logunits-add'.
16095 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
16096 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
16097 (calc-lu-minus): Rename from `calc-logunits-sub'.
16098 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
16099 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
16100 (calc-lu-times): Rename from `calc-logunits-mul'.
16101 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
16102 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
16103 (calc-lu-divide): Rename from `calc-logunits-div'.
16104 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
16105 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
16106
16107 * calc/calc-ext.el (calc-init-extensions): Update the names of the
16108 functions being autoloaded.
16109
16110 * calc/calc.el (calc-lu-power-reference): Rename from
16111 `calc-logunits-power-reference'.
16112 (calc-lu-field-reference): Rename from
16113 `calc-logunits-field-reference'.
16114
7a71b18d
GM
16115 * calc/calc-help.el (calc-l-prefix-help):
16116 Mention musical note functions.
d71990a1 16117
40c2934b
SM
161182011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
16119
16120 * minibuffer.el (completion-all-sorted-completions):
16121 Use :completion-cycle-penalty text property if present.
16122
b0911414
KM
161232011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
16124
16125 * allout.el (allout-yank-processing): Adjust for new rebulleting
16126 regime so bullet being yanked is used without prompting the user
16127 for a choice.
16128
8a05b668
JB
161292011-03-16 Juanma Barranquero <lekktu@gmail.com>
16130
16131 * startup.el (command-line): Warn the user that _emacs is deprecated.
16132
5ba5fb81
JB
161332011-03-16 Juanma Barranquero <lekktu@gmail.com>
16134
16135 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
16136 (delphi-verbose, delphi-comment-face, delphi-string-face)
16137 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
16138 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
16139 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
16140 (delphi-new-comment-line, delphi-font-lock-defaults)
16141 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
16142 Fix typos in docstrings.
16143
2dab465b
KM
161442011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
16145
5ba5fb81 16146 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
16147 Invert the roles of character and string values for INSTEAD, so a
16148 string is used for the more common case of a defaulting prompt.
16149
0adf5618
SM
161502011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
16151
16152 * progmodes/ruby-mode.el (ruby-backward-sexp):
16153 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
16154 * play/gamegrid.el (gamegrid-make-face):
16155 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
16156 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
16157 * notifications.el (notifications-notify):
16158 * net/xesam.el (xesam-search-engines):
16159 * net/quickurl.el (quickurl-list-insert):
16160 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
16161
d72700e5
CY
161622011-03-15 Chong Yidong <cyd@stupidchicken.com>
16163
16164 * startup.el (command-line): Update package subdirectory regexp.
16165
49c5410a
SM
161662011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
16167
c6eee9aa
SM
16168 * allout.el (allout-abbreviate-flattened-numbering)
16169 (allout-mode-deactivate-hook): Fix up obsolescence "date".
16170
49c5410a
SM
16171 * subr.el (read-char-choice): Only show the cursor after the prompt,
16172 not after the answer.
16173
047b2bb9
KR
161742011-03-15 Kevin Ryde <user42@zip.com.au>
16175
16176 * help-fns.el (variable-at-point): Skip leading quotes, if any
16177 (bug#8253).
16178
0a57d256
SM
161792011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
16180
16181 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
16182 warning message.
16183
77c992bc
MA
161842011-03-14 Michael Albinus <michael.albinus@gmx.de>
16185
16186 * shell.el (shell): When called interactively, offer to change the
16187 shell file name on remote hosts.
16188
eebc475d
TZ
161892011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
16190
16191 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
16192 integration for LDAP parameters. The host, base, user or binddn,
16193 and secret tokens can be specified in a netrc file, for instance.
16194 This is optional because an `auth-source' parameter must be
16195 specified in the search attributes.
16196
9d05d1ba
JB
161972011-03-13 Juanma Barranquero <lekktu@gmail.com>
16198
16199 * help.el (describe-mode): Link to the mode's definition (bug#8185).
16200
09d9db2c
GM
162012011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16202
16203 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
16204 into declaration. Remove redundant and harmful binding.
16205
162062011-03-12 Eli Zaretskii <eliz@gnu.org>
16207
16208 * files.el (file-ownership-preserved-p): Pass `integer' as an
16209 explicit 2nd argument to `file-attributes'. If the file's owner
16210 is the Administrators group on Windows, and the current user is
16211 Administrator, consider that a match.
16212
16213 * server.el (server-ensure-safe-dir): Consider server directory
16214 safe on MS-Windows if its owner is the Administrators group while
16215 the current Emacs user is Administrator. Use `=' to compare
16216 numerical UIDs, since they could be integers or floats.
16217
219bd536
JB
162182011-03-12 Juanma Barranquero <lekktu@gmail.com>
16219
16220 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
16221
f3afd36b
MA
162222011-03-12 Michael Albinus <michael.albinus@gmx.de>
16223
16224 Sync with Tramp 2.2.1.
16225
16226 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
16227
16228 * net/trampver.el: Update release number.
16229
3aaaa6f1
SM
162302011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16231
94642599
SM
16232 * progmodes/compile.el (compilation--previous-directory): Fix up
16233 various nil/dead-marker mismatches (bug#8014).
16234 (compilation-directory-properties, compilation-error-properties):
16235 Don't call it at a position past the one we're about to change.
16236
3aaaa6f1
SM
16237 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
16238 Disable obsolescence warnings in the file that declares it.
16239
14239447
KM
162402011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
16241
099c39a4
JB
16242 * allout-widgets.el (allout-widgets-tally):
16243 Initialize allout-widgets-tally as a hash table rather than nil to
16244 prevent mode-line redisplay warnings. Also, clarify the module
16245 description and fix a comment typo.
14239447 16246
135e287c
JB
162472011-03-11 Juanma Barranquero <lekktu@gmail.com>
16248
16249 * help-fns.el (describe-variable): Don't complete keywords.
16250 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
16251
ffbf300e
CY
162522011-03-10 Chong Yidong <cyd@stupidchicken.com>
16253
ba08b241
CY
16254 * emacs-lisp/package.el (package-version-join): Impose a standard
16255 string representation for pre/alpha/beta version lists.
16256 (package-unpack-single): Standardize the directory name by passing
16257 it through package-version-join.
16258 (package-strip-rcs-id): Accept any version string that does not
16259 signal an error in version-to-list.
ffbf300e 16260
f346fd6b
MA
162612011-03-10 Michael Albinus <michael.albinus@gmx.de>
16262
16263 * simple.el (delete-trailing-whitespace): Return nil for the
16264 benefit of `write-file-functions'.
16265
ccb55d27
GM
162662011-03-10 Glenn Morris <rgm@gnu.org>
16267
5ceaac0c
GM
16268 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
16269
02da65ff
GM
16270 * vc/vc-git.el (vc-git-program): New option.
16271 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
16272 (vc-git--call): Use it.
16273
b2f603cc
GM
16274 * eshell/esh-util.el (eshell-condition-case): Doc fix.
16275
5772caab
GM
16276 * cus-edit.el (Custom-newline): If no button at point, look
16277 for a subgroup button at start-of-line. (Bug#2298)
16278
ccb55d27
GM
16279 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
16280
ec6ecaed
JD
162812011-03-10 Julien Danjou <julien@danjou.info>
16282
16283 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
16284 `cursor-type' is nil.
16285
9d5aa01d
JB
162862011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
16287
16288 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
16289
b6a5875b
KM
162902011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
16291
7a71b18d 16292 * allout.el: Change so yank of distinctive-bullet items
b6a5875b
KM
16293 preserves the existing header prefix, rebulleting it if necessary,
16294 rather than replacing it. This is necessary for proper operation
16295 of cooperative addons like allout-widgets.
1154d12e
JB
16296 (allout-make-topic-prefix, allout-rebullet-heading):
16297 Change SOLICIT arg to INSTEAD, and interpret additionally a string
16298 value as alternate bullet to be used, instead of prompting the user
16299 for a bullet character.
b6a5875b 16300
ee545c35
MA
163012011-03-09 Michael Albinus <michael.albinus@gmx.de>
16302
d86d2721
SM
16303 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
16304 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
16305 `tramp-default-port'.
16306
c47971d7
DD
163072011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
16308
16309 * net/rcirc.el (rcirc-handler-001): Remove useless
16310 with-rcirc-process-buffer.
16311 (rcirc-check-auth-status): Swap arguments to string-match.
16312
13522cb4
GM
163132011-03-09 Glenn Morris <rgm@gnu.org>
16314
0be6f4f1
GM
16315 * shell.el (shell-mode):
16316 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
16317
13522cb4
GM
16318 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
16319 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
16320
515de2e3
CY
163212011-03-08 Chong Yidong <cyd@stupidchicken.com>
16322
16323 * emacs-lisp/package.el (package-refresh-contents)
16324 (package-menu-execute): Use condition-case-no-debug.
16325
b511b994
MA
163262011-03-08 Michael Albinus <michael.albinus@gmx.de>
16327
16328 * simple.el (shell-command-to-string): Use `process-file'.
16329
16330 * emacs-lisp/package.el (package-tar-file-info): Handle also
16331 remote files.
16332
d86d2721
SM
16333 * emacs-lisp/package-x.el (package-upload-buffer-internal):
16334 Use `equal' for upload base check.
b511b994 16335
25bbfb31
AM
163362011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
16337
16338 * textmodes/texinfo.el (texinfo-environments):
16339 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
16340
be996521
GM
163412011-03-08 Glenn Morris <rgm@gnu.org>
16342
e9c8529f
GM
16343 * cus-start.el (cursor-in-non-selected-windows):
16344 Fix :set quoting oddness. (Bug#8192)
16345
be996521
GM
16346 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
16347 in some setf expressions. (Bug#2159)
16348
2bb5649e
CY
163492011-03-08 Chong Yidong <cyd@stupidchicken.com>
16350
16351 * custom.el (custom-available-themes): Return themes in
16352 alphabetical order.
16353
33383987 16354See ChangeLog.15 for earlier changes.
e3d51b27
MR
16355
16356;; Local Variables:
16357;; coding: utf-8
e3d51b27
MR
16358;; End:
16359
acaf905b 16360 Copyright (C) 2011-2012 Free Software Foundation, Inc.
e3d51b27
MR
16361
16362 This file is part of GNU Emacs.
16363
16364 GNU Emacs is free software: you can redistribute it and/or modify
16365 it under the terms of the GNU General Public License as published by
16366 the Free Software Foundation, either version 3 of the License, or
16367 (at your option) any later version.
16368
16369 GNU Emacs is distributed in the hope that it will be useful,
16370 but WITHOUT ANY WARRANTY; without even the implied warranty of
16371 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16372 GNU General Public License for more details.
16373
16374 You should have received a copy of the GNU General Public License
16375 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.