* lisp/cus-edit.el (custom-variable-documentation): Simplify with format.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
d80ac57b
GM
12012-05-01 Glenn Morris <rgm@gnu.org>
2
3 * cus-edit.el (custom-variable-documentation): Simplify with format.
4
b593d6a9
AH
52012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
6 Stefan Monnier <monnier@iro.umontreal.ca>
7
8 * simple.el (suggest-key-bindings, execute-extended-command):
9 Move from keyboard.c.
10
782fbf2a
CY
112012-05-01 Chong Yidong <cyd@gnu.org>
12
13 * follow.el: Eliminate advice.
14 (set-process-filter, process-filter, sit-for): Advice deleted.
15 (follow-mode-off-hook): Obsolete hook removed.
b593d6a9
AH
16 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
17 Vars deleted.
782fbf2a
CY
18 (follow-auto): Use a :set function.
19 (follow-mode): Rewritten. Don't advise process filters.
20 (follow-switch-to-current-buffer-all, follow-scroll-up)
21 (follow-scroll-down): Assume follow-mode is bound.
22 (follow-comint-scroll-to-bottom)
23 (follow-align-compilation-windows): New functions.
24 (follow--window-sorter): New function.
25 (follow-all-followers): Use it to explicitly sort windows by their
26 positions; don't make assumptions about next-window order.
27 (follow-windows-start-end, follow-delete-other-windows-and-split)
28 (follow-calc-win-start): Doc fix.
29 (follow-windows-aligned-p, follow-select-if-visible): Don't call
30 vertical-motion unnecessarily.
31 (follow-adjust-window): New function.
32 (follow-post-command-hook): Use it.
33 (follow-call-set-process-filter, follow-call-process-filter)
34 (follow-intercept-process-output, follow-tidy-process-filter-alist)
35 (follow-stop-intercept-process-output, follow-generic-filter):
36 Functions deleted.
37 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
b593d6a9
AH
38 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
39 New functions, replacing advice on scroll-bar-* commands.
87233a14 40 (follow-mwheel-scroll): New function (Bug#4112).
782fbf2a
CY
41
42 * comint.el (comint-adjust-point): New function.
b593d6a9
AH
43 (comint-postoutput-scroll-to-bottom): Use it.
44 Call follow-comint-scroll-to-bottom for Follow mode buffers.
782fbf2a 45
290af740
GM
462012-05-01 Glenn Morris <rgm@gnu.org>
47
48 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
49 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
50 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
51 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
52 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
53 Remove no-byte-compile setting.
54
6eac8dc9
SM
552012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
56
57 * minibuffer.el (completion-table-with-quoting): Fix compatibility
58 all-completions code to not return a number in the last cdr.
59
9cc7819c
LL
602012-04-30 Leo Liu <sdl.web@gmail.com>
61
62 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
63 read-only error.
64
c93b886f
CY
652012-04-29 Chong Yidong <cyd@gnu.org>
66
67 * follow.el (follow-calc-win-end): Rewrite to handle partial
68 screen lines correctly (Bug#8390).
69 (follow-avoid-tail-recenter): Minor cleanup.
70
8b6c19f4
SM
712012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
72
73 Avoid the obsolete `assoc' package.
74 * speedbar.el (speedbar-refresh): Avoid adelete.
75 (speedbar-file-lists): Simplify and avoid aput.
76 * man.el (Man--sections, Man--refpages): New vars, replacing
77 Man-sections-alist and Man-refpages-alist.
78 (Man-build-section-alist, Man-build-references-alist):
79 Use them; avoid aput.
80 (Man--last-section, Man--last-refpage): New vars.
81 (Man-follow-manual-reference): Use them.
82 Use the `default' arg of completing-read.
83 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
84
c5bb7569
CY
852012-04-27 Chong Yidong <cyd@gnu.org>
86
d1d2e2e8
CY
87 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
88
15cd8efd
CY
89 * startup.el (x-apply-session-resources): New function.
90
91 * term/ns-win.el (ns-initialize-window-system):
92 * term/w32-win.el (w32-initialize-window-system):
93 * term/x-win.el (x-initialize-window-system): Use it to properly
94 set menu-bar-mode and other vars from X resources, even if the
95 initial frame is not a window-system frame (Bug#2299).
96
c5bb7569
CY
97 * subr.el (read-key): Avoid running filter function when setting
98 up temporary tool bar entries (Bug#9922).
99
a8e7d6d7 1002012-04-27 Andreas Schwab <schwab@linux-m68k.org>
c4347ab9
AS
101
102 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
103 (Bug#11344)
104
a8e7d6d7 1052012-04-27 Chong Yidong <cyd@gnu.org>
acb71f1d
CY
106
107 * select.el (xselect--encode-string): New function, split from
108 xselect-convert-to-string.
109 (xselect-convert-to-string): Use it.
110 (xselect-convert-to-filename, xselect-convert-to-os)
111 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
112 returned strings are properly encoded (Bug#11315).
113
a8e7d6d7 1142012-04-27 Chong Yidong <cyd@gnu.org>
d55486c7
CY
115
116 * simple.el (delete-active-region): Move to killing custom group.
117
a8e7d6d7 1182012-04-27 Andreas Schwab <schwab@linux-m68k.org>
581b6788
AS
119
120 * progmodes/which-func.el (which-func-current): Quote %
121 characters for mode-line processing.
122
578c1d4b 1232012-04-27 Chong Yidong <cyd@gnu.org>
18edb22d
CY
124
125 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
126 reaching eob (Bug#11286).
127
a8e7d6d7 1282012-04-27 Eli Zaretskii <eliz@gnu.org>
9ee9f470
EZ
129
130 * progmodes/gdb-mi.el (gdb-control-level): New variable.
131 (gdb): Make it buffer-local and init to zero.
132 (gdb-control-commands-regexp): New variable.
133 (gdb-send): Don't wrap in "-interpreter-exec console" if
134 gdb-control-level is positive. Increment gdb-control-level
135 whenever the command matches gdb-control-commands-regexp, and
136 decrement it each time the command is "end". (Bug#11279)
137
a8e7d6d7 1382012-04-27 Martin Rudalics <rudalics@gmx.at>
41cfe0cb
MR
139
140 * window.el (adjust-window-trailing-edge, enlarge-window)
141 (shrink-window, window-resize):
142 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
143 windows (Bug#11276).
144
b3608390
CY
1452012-04-27 Chong Yidong <cyd@gnu.org>
146
147 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
a8e7d6d7 148 fix "missing prefix" warning. All callers changed.
b3608390 149
797e6e88
SM
1502012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
151
152 * emacs-lisp/assoc.el: Move to obsolete/.
153
e95a67dc
SM
1542012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
155
657c21e4 156 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
e95a67dc
SM
157
158 * term/ns-win.el (ns-define-service):
159 * progmodes/pascal.el (pascal-goto-defun):
160 * progmodes/js.el (js--read-tab):
161 * progmodes/etags.el (tags-lazy-completion-table):
162 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
163 * emacs-lisp/ewoc.el (ewoc--wrap):
164 * emacs-lisp/assoc.el (aput, adelete, amake):
165 * doc-view.el (doc-view-convert-current-doc):
166 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
167
cb3e7ae0
CY
1682012-04-26 Chong Yidong <cyd@gnu.org>
169
dce04f7f
CY
170 * image.el (image-type-from-buffer): Only return supported image
171 type (Bug#9045).
172
cb3e7ae0
CY
173 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
174 value, for symmetry with diff-end-of-hunk.
175 (diff-split-hunk, diff-find-source-location)
176 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
177 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
178 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
179 compute the relevant hunk or file properly (Bug#6005).
180 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
181
0d42eb3e
SM
1822012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
183
184 * vc/vc-mtn.el:
185 * vc/vc-hg.el:
186 * vc/vc-git.el:
187 * vc/vc-dir.el:
188 * vc/vc-cvs.el:
189 * vc/vc-bzr.el:
190 * vc/vc-arch.el:
191 * vc/vc.el: Replace lexical-let by lexical-binding.
192 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
193 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
194 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
195
f08ae1c9
CY
1962012-04-26 Chong Yidong <cyd@gnu.org>
197
8b71081d
CY
198 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
199 (diff-mode-shared-map): Bind it to / and [remap undo].
200
f08ae1c9
CY
201 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
202 (ediff-window-setup-function): Use it as the default, to set up
203 windows based on whether the current frame is graphical (Bug#2138).
204 (ediff-choose-window-setup-function-automatically): Make obsolete.
205
206 * vc/ediff-init.el: Always define ediff-pixel-width/height.
207
ef24141c
SM
2082012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
209
cc356a5d
SM
210 * ffap.el: Remove old code for obsolete package.
211 (ffap-complete-as-file-p): Remove.
212
b4ff4f1f
SM
213 Use completion-table-with-quoting for comint and pcomplete.
214 * comint.el (comint--unquote&requote-argument)
215 (comint--unquote-argument, comint--requote-argument): New functions.
216 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
217 (comint-quote-filename): Use regexp-opt-charset.
218 (comint--common-suffix, comint--common-quoted-suffix)
219 (comint--table-subvert): Remove.
220 (comint-unquote-function, comint-requote-function): New vars.
221 (comint--complete-file-name-data): Use them with
222 completion-table-with-quoting.
223 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
224 * pcomplete.el (pcomplete-arg-quote-list)
225 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
226 (pcomplete-unquote-argument-function): Default to non-nil.
227 (pcomplete-unquote-argument): Simplify.
228 (pcomplete--common-quoted-suffix): Remove.
229 (pcomplete-requote-argument-function): New var.
230 (pcomplete--common-suffix): New function.
231 (pcomplete-completions-at-point): Use completion-table-with-quoting
232 and completion-table-subvert.
233
79c4eeb4
SM
234 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
235 (minibuffer--double-dollars): Preserve properties.
236 (completion--sifn-requote): New function.
237 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
238
ef24141c
SM
239 * minibuffer.el: Add support for completion of quoted/escaped data.
240 (completion-table-with-quoting, completion-table-subvert): New funs.
241 (completion--twq-try, completion--twq-all): New functions.
242 (completion--nth-completion): New function.
243 (completion-try-completion, completion-all-completions): Use it.
244
784e7d6e
LL
2452012-04-25 Leo Liu <sdl.web@gmail.com>
246
dd2ac746
SM
247 * progmodes/python.el (python-pdbtrack-get-source-buffer):
248 Use compilation-message if available to find real filename.
784e7d6e 249
07875ee7
CY
2502012-04-25 Chong Yidong <cyd@gnu.org>
251
252 * vc/diff-mode.el (diff-setup-whitespace): New function.
253 (diff-mode): Use it.
254
255 * vc/diff.el (diff-sentinel):
256 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
257 Whitespace mode variables based on diff style (Bug#8612).
258
5055880d
LL
2592012-04-25 Leo Liu <sdl.web@gmail.com>
260
daf75653
LL
261 * progmodes/python.el (python-send-region): Add suffix .py to the
262 temp file.
263
5055880d
LL
264 * files.el (auto-mode-alist): Use javascript-mode instead.
265
db9b177b
AH
2662012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
267
ef24141c 268 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
db9b177b
AH
269
270 * soap-client.el (soap-resolve-references-for-sequence-type)
ef24141c 271 (soap-resolve-references-for-array-type): Hack to prevent self
db9b177b 272 references, see Bug#9.
ef24141c 273 (soap-parse-envelope): Report the contents of the 'detail' node
db9b177b 274 when receiving a fault reply.
ef24141c 275 (soap-parse-envelope): Report the contents of the entire 'detail' node.
db9b177b
AH
276
277 * soap-inspect.el (soap-sample-value-for-simple-type)
ef24141c 278 (soap-inspect-simple-type): New function.
db9b177b 279
ef24141c 280 * soap-client.el (soap-simple-type): New struct.
db9b177b 281 (soap-default-xsd-types, soap-default-soapenc-types)
ef24141c
SM
282 (soap-decode-basic-type, soap-encode-basic-type):
283 support unsignedInt and double basic types.
db9b177b 284 (soap-resolve-references-for-simple-type)
ef24141c
SM
285 (soap-parse-simple-type, soap-encode-simple-type): New function.
286 (soap-parse-schema): Parse xsd:simpleType declarations.
db9b177b
AH
287
288 * soap-client.el (soap-default-xsd-types)
ef24141c
SM
289 (soap-default-soapenc-types): Add integer, byte and anyURI types.
290 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
291 the local name of "soapenc:Array".
292 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
db9b177b
AH
293 decoding integer, byte and anyURI xsd types.
294
1fc6097b
CY
2952012-04-25 Chong Yidong <cyd@gnu.org>
296
297 * cus-edit.el (custom-buffer-create-internal): Update header text.
298
afc6df87
EZ
2992012-04-25 Eli Zaretskii <eliz@gnu.org>
300
301 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
302 settings on 'system-type', not on 'window-system'. On MS-Windows,
303 set interactive-mode on in GDB.
304
dfbd787f
SM
3052012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
306
307 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
308 (ruby-syntax-propertize-regexp): Remove.
309 (ruby-syntax-propertize-function): Split regexp into chunks.
310 Match following code directly.
311
85222d44
DG
3122012-04-24 Dmitry Gutov <dgutov@yandex.ru>
313
51a8ea2a
DG
314 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
315 (ruby-syntax-propertize-regexp): New function.
316 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
317 by a special keyword.
318
85222d44
DG
319 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
320 (ruby-syntax-general-delimiters-goto-beg)
321 (ruby-syntax-propertize-general-delimiters): New functions.
322 (ruby-syntax-propertize-function): Use them to handle GDL.
323 (ruby-font-lock-keywords): Move old handling of GDL...
324 (ruby-font-lock-syntactic-keywords): .. to here.
325 (ruby-calculate-indent): Adjust indentation for GDL.
326
b613912b
MA
3272012-04-24 Michael Albinus <michael.albinus@gmx.de>
328
b5380639
MA
329 * notifications.el (top): Remove unneeded declarations.
330 (notifications-specification-version): Change to "1.2".
e43042fe 331 (notifications-interface, notifications-notify-method)
b613912b
MA
332 (notifications-close-notification-method): Fix docstring.
333 (notifications-get-capabilities-method): New defconst.
e43042fe
MA
334 (notifications-notify): Add :action-items, :resident and
335 :transient hints. Change "image_data" to "image-data" and
336 "image_path" to "image-path".
b613912b
MA
337 (notifications-get-capabilities): New defun.
338
257440aa
LL
3392012-04-24 Leo Liu <sdl.web@gmail.com>
340
341 * progmodes/python.el: Move hideshow setup to the end.
342
b1bac16e
MR
3432012-04-24 Martin Rudalics <rudalics@gmx.at>
344
345 * window.el (handle-select-window): Clear echo area since this is
346 no more done by read_char (Bug#11304).
347
d81bd059
SM
3482012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
349
350 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
351 and `/ M' to filter-derived-mode.
352 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
353 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
354 (ibuffer-mark-by-mode): Use default rather than initial-input.
355 (ibuffer-filter-by-derived-mode): Autoload and require-match.
356
c4cf6d91
IA
3572012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
358
359 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
360 (ibuffer-filter-by-derived-mode): New filter.
361 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
362
7511ded8
CY
3632012-04-23 Andreas Politz <politza@fh-trier.de>
364
365 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
366
775c916b
CY
3672012-04-23 Chong Yidong <cyd@gnu.org>
368
369 * cus-edit.el (customize-apropos, customize-apropos-options):
370 Disable matching of non-option variables (Bug#11176).
371 (customize-option, customize-option-other-window)
372 (customize-changed-options): Doc fix.
373 (customize-apropos-options, customize-apropos-faces)
374 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
375
376 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
922d37d3 377 Fix word list splitting (Bug#11132).
46c71e23
CY
378 (apropos-symbol, apropos-keybinding, apropos-label)
379 (apropos-property, apropos-function-button)
380 (apropos-variable-button, apropos-misc-button): New faces.
381 (apropos-symbol-face, apropos-keybinding-face)
382 (apropos-label-face, apropos-property-face, apropos-match-face):
383 Variables removed (Bug#8396).
384 (apropos-library-button, apropos-format-plist, apropos-print)
385 (apropos-print-doc, apropos-describe-plist): Callers changed.
775c916b 386
2df41f9c
MA
3872012-04-23 Michael Albinus <michael.albinus@gmx.de>
388
389 * net/xesam.el (xesam-mode-map): Use let-bound map in
390 initialization. (Bug#11292)
391
da00640a
AM
3922012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
393
394 Preserve ispell session localwords when switching back to
395 original buffer.
396
397 * ispell.el (ispell-buffer-session-localwords): New buffer-local
398 variable to hold buffer session localwords.
399 (ispell-kill-ispell): add option 'clear to delete session
400 localwords.
401 (ispell-command-loop, ispell-change-dictionary)
402 (ispell-buffer-local-words): Preserve session localwords when
403 needed.
404
405 * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
406 Preserve session localwords when needed.
407
f621ccf5
AM
4082012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
409
410 * ispell.el (ispell-insert-word) Remove unneeded function using
411 obsolete `translation-table-for-input'.
ef24141c
SM
412 (ispell-word, ispell-process-line, ispell-complete-word):
413 Use plain `insert' instead of removed `ispell-insert-word'.
f621ccf5 414
c2d1019e
CY
4152012-04-22 Chong Yidong <cyd@gnu.org>
416
417 * cus-edit.el (custom-variable-menu)
418 (custom-variable-reset-saved, custom-face-menu)
419 (custom-face-reset-saved): If there is no saved value, make the
420 "reset-saved" operation bring back the default (Bug#9509).
421 (custom-face-state): Properly detect themed faces.
422
eeddc531
CY
423 * faces.el (face-spec-set): Stop supporting deprecated form of
424 third arg.
425
dcbf5805
MA
4262012-04-22 Michael Albinus <michael.albinus@gmx.de>
427
428 Move functions from C to Lisp. Make non-blocking method calls
429 the default. Implement further D-Bus standard interfaces.
430
ef24141c
SM
431 * net/dbus.el (dbus-message-internal): Declare function.
432 Remove unneeded function declarations.
dcbf5805
MA
433 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
434 (dbus-message-type-method-return, dbus-message-type-error)
435 (dbus-message-type-signal): Declare variables. Remove local
436 definitions.
437 (dbus-interface-dbus, dbus-interface-peer)
438 (dbus-interface-introspectable, dbus-interface-properties)
439 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
440 Adapt docstring.
441 (dbus-interface-objectmanager): New defconst.
442 (dbus-call-method, dbus-call-method-asynchronously)
443 (dbus-send-signal, dbus-method-return-internal)
444 (dbus-method-error-internal, dbus-register-service)
445 (dbus-register-signal, dbus-register-method): New defuns, moved
446 from dbusbind.c
447 (dbus-call-method-handler, dbus-setenv)
ef24141c
SM
448 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
449 New defuns.
dcbf5805
MA
450 (dbus-call-method-non-blocking): Make it an obsolete function.
451 (dbus-unregister-object, dbus-unregister-service)
452 (dbus-handle-event, dbus-register-property)
453 (dbus-property-handler): Obey the new structure of
454 `bus-registered-objects'.
455 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
456 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
457 Use `dbus-call-method'.
458
cf20dee0
CY
4592012-04-22 Chong Yidong <cyd@gnu.org>
460
461 * cus-edit.el (custom-commands, custom-reset-menu)
462 (Custom-reset-standard): Tweak labels.
463 (custom-reset-button-menu): Change default to t.
464 (custom-buffer-create-internal): For the custom-reset-button-menu
465 case, put the revert button first.
466 (custom-group-subtitle): New face.
467 (custom-group-value-create): Align docstring to a specific column.
468
469 * wid-edit.el (widget-documentation-link-add): Don't handle
470 indentation in this function.
471 (widget-documentation-string-indent-to): New function.
472 (widget-documentation-string-value-create): Use it.
473
474 * autorevert.el (auto-revert):
475 * epg-config.el (epg):
476 * ibuffer.el (ibuffer):
477 * mpc.el (mpc):
478 * ses.el (ses):
479 * eshell/eshell.el (eshell):
480 * net/ange-ftp.el (ange-ftp):
481 * progmodes/ebnf2ps.el (postscript):
482 * progmodes/flymake.el (flymake):
483 * progmodes/prolog.el (prolog):
484 * progmodes/verilog-mode.el (verilog-mode):
485 * progmodes/which-func.el (which-func):
486 * term/xterm.el (xterm):
487 * textmodes/picture.el (picture):
488 * textmodes/tildify.el (tildify):
489 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
490 customization buffers.
491
583e23bd
AM
4922012-04-22 Alan Mackenzie <acm@muc.de>
493
494 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
495 Adding a ) can hide the resulting (..) from searches. Fix it.
496 Bound the backward search to the position of the existing (.
497
7dd51bf1
JB
4982012-04-21 Juanma Barranquero <lekktu@gmail.com>
499
500 * progmodes/verilog-mode.el (verilog-mode): Check whether
501 which-func-modes is t before adding verilog-mode.
502 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
503
d64a438f
LL
5042012-04-21 Leo Liu <sdl.web@gmail.com>
505
7dd51bf1 506 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
d64a438f 507
081e8d65
MV
5082012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
509
510 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
511 filling of the last column of a table (Bug#5635).
512 (woman-find-next-control-line): New arg, specifying an additional
513 regexp component for the control line.
514 (woman2-roff-buffer): Use it.
515 (woman-break-table): New function.
516 (woman2-TS): Use it.
517
5182012-04-21 Chong Yidong <cyd@gnu.org>
519
520 * woman.el (woman-set-buffer-display-table, woman-decode-region)
521 (woman-horizontal-escapes, woman-negative-vertical-space)
522 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
523 (WoMan-warn-ignored): Use ?\s instead of ?\ .
524
ed571ccb
SM
5252012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
526
527 * minibuffer.el (completion-file-name-table): Complete user names.
528
39773899
LL
5292012-04-20 Leo Liu <sdl.web@gmail.com>
530
531 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
532 and pcase-let*.
533
de6ff46d
CY
5342012-04-20 Chong Yidong <cyd@gnu.org>
535
536 * server.el (server-execute): Respect initial-buffer-choice if it
537 is a string and there are no files to open (Bug#2825).
538 (server-create-window-system-frame, server-create-tty-frame):
539 Don't switch buffers here.
2d0e8e61
CY
540 (server-process-filter): Only try to open a window system frame if
541 compiled with graphical support (Bug#8314).
de6ff46d 542
54071013
DN
5432012-04-20 Dan Nicolaescu <dann@gnu.org>
544
545 * battery.el (battery-echo-area-format): Display remaining time
546 for sysfs backend too (Bug#11269).
547 (battery-linux-sysfs): Fix conditional for the charge.
548
f30d612a
CY
5492012-04-20 Chong Yidong <cyd@gnu.org>
550
c07a4c0b 551 * progmodes/gdb-mi.el (gdb): Revert previous change.
f30d612a
CY
552 (gdb-inferior-io--init-proc): New function.
553 (gdb-init-1): Use it.
554 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
555 responsible for allocating a new pty and hooking it to gdb when
556 the old pty gets an EIO due to process exit.
557 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
558 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
559 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
560
2116e93c
EZ
5612012-04-20 Eli Zaretskii <eliz@gnu.org>
562
563 * window.el (window-min-size, window-sizable, window-min-delta)
564 (window-max-delta, window--resizable, window-resizable)
565 (window-total-size, window-full-height-p, window-full-width-p)
566 (window-in-direction, window--resize-mini-window, window-resize)
567 (window--resize-child-windows-normal)
568 (window--resize-child-windows, window--resize-siblings)
569 (window--resize-this-window, adjust-window-trailing-edge)
cd0f830c 570 (enlarge-window, shrink-window): Doc fixes.
2116e93c 571
c07a4c0b 5722012-04-20 Chong Yidong <cyd@gnu.org>
b668fa6e 573
ef24141c
SM
574 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
575 New function to call delete-process on the gdb-inferior buffer's pty.
b668fa6e
CY
576 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
577 pty process (Bug#11273).
578 (gdb-update): New arg to suppress talking to the gdb process.
579 (gdb-done-or-error): Use it.
580 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
581 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
582 sentinel not being called.
583
584 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
585
d02766ab
CY
586 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
587
c07a4c0b 5882012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
589
590 * net/network-stream.el (open-network-stream): Doc fix.
591
c07a4c0b 5922012-04-20 Chong Yidong <cyd@gnu.org>
2c070447
CY
593
594 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
595
c07a4c0b 5962012-04-20 Alan Mackenzie <acm@muc.de>
f0f6bc35
AM
597
598 Ensure searching for keywords is case sensitive.
599
600 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
601 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
602 (c-defun-name, c-mark-function, c-cpp-define-name)
603 (c-comment-indent, c-scan-conditionals, c-indent-defun)
c07a4c0b 604 (c-context-line-break): Bind case-fold-search to nil.
f0f6bc35 605
ef24141c
SM
606 * progmodes/cc-mode.el (c-font-lock-fontify-region):
607 Bind case-fold-search to nil.
f0f6bc35 608
c07a4c0b 6092012-04-20 Chong Yidong <cyd@gnu.org>
4fc2c72a
CY
610
611 * mail/sendmail.el (mail-bury): Call return action with the right
612 Rmail buffer (Bug#11242).
613
9a864fa2
CY
614 * server.el (server-process-filter): Handle corner case where both
615 tty and nowait options are present (Bug#11102).
616
539aa513
EZ
6172012-04-20 Eli Zaretskii <eliz@gnu.org>
618
619 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
6cf2a23e
EZ
620 (top level): Put into the executable the ident-style '$Id:' tag on
621 windows-nt as well.
539aa513 622
cfc7d5da
SM
6232012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
624
625 * electric.el (electric-indent-post-self-insert-function): Check that
626 electric-indent-mode is enabled in current buffer.
627
5b01685c
JB
6282012-04-19 Juanma Barranquero <lekktu@gmail.com>
629
630 * imenu.el (imenu-progress-message): Restore; it is "used" in
631 erc/erc-imenu.el and net/snmp-mode.el.
632
4d6769e1
JB
6332012-04-19 Juanma Barranquero <lekktu@gmail.com>
634
635 * avoid.el (mouse-avoidance-mode): Mark unused arg.
636 (mouse-avoidance-nudge-mouse): Remove unused binding.
637
638 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
639
640 * descr-text.el (describe-char):
641 * progmodes/python.el (python-describe-symbol):
642 Don't call `toggle-read-only', set `buffer-read-only'.
643
644 * imenu.el (imenu-default-goto-function): Mark unused args.
645 (imenu-progress-message): Remove obsolete macro; all callers changed.
646
647 * subr.el (keymap-canonicalize): Remove unused binding.
648 (read-passwd): Mark unused arg.
649
650 * tutorial.el (tutorial--display-changes): Remove unused binding.
651 (tutorial--save-tutorial-to): Remove unused variable.
652
653 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
654 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
655 (package-generate-autoloads, package-menu--generate)
656 (package-menu--find-upgrades): Remove unused bindings.
657
658 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
659 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
660 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
661 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
662 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
663 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
664 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
665 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
666 (cua-delete-char-rectangle): Mark unused args.
667 (cua-align-rectangle): Remove unused binding.
668
669 * mail/rmail.el (compilation--message->loc)
670 (epa--find-coding-system-for-mime-charset): Declare.
671
672 * net/dbus.el (dbus-register-service): Declare.
673 (dbus-name-owner-changed-handler): Remove unused binding.
674
675 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
676 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
677 (nxml-scan-backward-within): Mark unused arg.
678 (nxml-dynamic-markup-word): Remove unused binding.
679
680 * mouse.el (mouse-menu-major-mode-map):
681 * emacs-lisp/authors.el (authors-scan-change-log)
682 (authors-add-to-author-list):
683 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
684 * emacs-lisp/smie.el (smie-auto-fill):
685 * mail/sendmail.el (mail-bury):
686 * mail/unrmail.el (unrmail):
687 * net/tls.el (open-tls-stream):
688 * textmodes/picture.el (picture-mouse-set-point):
689 Remove unused bindings.
690
8c8fc5df
MA
6912012-04-19 Michael Albinus <michael.albinus@gmx.de>
692
693 * net/tramp.el (tramp-action-password): Let-bind
694 `enable-recursive-minibuffers' to t.
695
a77b0ac9
SS
6962012-04-18 Sam Steingold <sds@gnu.org>
697
698 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
699 instead of 'string to accommodate values like [f11].
700 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
701 * progmodes/gdb-mi.el: Likewise.
702
12a106a9
LL
7032012-04-18 Leo Liu <sdl.web@gmail.com>
704
705 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
706 current buffer.
707 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
708 LOCAL is nil.
709
bc6494ef
CY
7102012-04-18 Chong Yidong <cyd@gnu.org>
711
712 * simple.el (line-move): Use forward-line if in batch mode
713 (Bug#11053).
714
c09c46b2
CS
7152012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
716
717 * files.el (after-find-file): Do not try to add a final newline if
718 the buffer is read-only (Bug#11156).
719
5f6530ea
RS
7202012-04-17 Richard Stallman <rms@gnu.org>
721
722 * mail/rmail.el (rmail-start-mail):
723 Pass (rmail-mail-return...) for the return-action.
724 Pass (rmail-yank-current-message...) for the yank-action.
725 (rmail-yank-current-message): New function.
726 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
727 (rmail-reply): Likewise.
728 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
729
730 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
c09c46b2 731 buffer, not the last. Reject temp buffers. Use the rmail-mode
5f6530ea
RS
732 buffer, not newbuf.
733
197b6f3c
JB
7342012-04-17 Juanma Barranquero <lekktu@gmail.com>
735
736 * server.el (server-ensure-safe-dir): Simplify.
737
2311d8e5 7382012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
98fb480e 739
2311d8e5
GM
740 * emacs-lisp/smie.el: Provide smarter auto-filling.
741 (smie-auto-fill): New function.
742 (smie-setup): Use it.
98fb480e 743
2311d8e5
GM
744 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
745
7462012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8eb5d48f
PH
747
748 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
749 (comment-indent): Use it.
750
2311d8e5 7512012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4bdf2ad2
VB
752
753 * ses.el: The overall change is to add cell renaming, that is
754 setting fancy names for cell symbols other than name matching
755 "\\`[A-Z]+[0-9]+\\'" regexp .
2311d8e5 756 (ses-localvars): Add ses--renamed-cell-symb-list.
4bdf2ad2 757 (ses-create-cell-variable): New defun.
2311d8e5 758 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4bdf2ad2
VB
759 (ses-relocate-formula): Relocate formulas only for cells the
760 symbols of which are not renamed, i.e. symbols whose names do not
761 match regexp "\\`[A-Z]+[0-9]+\\'".
762 (ses-relocate-all): Relocate values only for cells the symbols of
763 which are not renamed.
764 (ses-load): Create cells variables as the (ses-cell ...) are read,
765 in order to check row col consistency with cell symbol name only
766 for cells that are not renamed.
767 (ses-replace-name-in-formula): New defun.
768 (ses-rename-cell): New defun.
4bdf2ad2 769
fc72b15c
PO
7702012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
771
772 * progmodes/perl-mode.el (perl-indent-parens-as-block):
773 New option (bug#11118).
774 (perl-calculate-indent): Respect it.
775
12e10e61
GM
7762012-04-17 Glenn Morris <rgm@gnu.org>
777
778 * dired-aux.el (dired-mark-read-string): Doc fix.
779
30009afd
DA
7802012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
781
782 * dired-aux.el (dired-mark-read-string): Offer optional completion.
783 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
784
41f03f4d
GM
7852012-04-17 Glenn Morris <rgm@gnu.org>
786
787 * mouse.el (mouse-drag-track):
788 * speedbar.el (speedbar-frame-mode):
789 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
790
f45f90f3
LL
7912012-04-16 Leo Liu <sdl.web@gmail.com>
792
793 * progmodes/python.el: Trivial cleanup.
794
94ee8db5
GM
7952012-04-16 Glenn Morris <rgm@gnu.org>
796
121b8917
GM
797 * vc/vc.el (vc-string-prefix-p):
798 * vc/pcvs-util.el (cvs-string-prefix-p):
799 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
800 * mpc.el (mpc-string-prefix-p):
801 Make all of these into obsolete aliases for string-prefix-p.
802 Update callers.
803 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
804
1197ecfa
GM
805 * textmodes/two-column.el: Move custom options to the start.
806 (frame-width): Remove compat definition.
807 (2C-associate-buffer, 2C-dissociate):
808 Use with-current-buffer rather than save-excursion.
809 (2C-dissociate): Force a mode-line update.
810 (2C-autoscroll): Use ignore-errors.
811
099e7202
GM
812 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
813 Autoload trivia.
814
bf350d6a
GM
815 * emacs-lisp/cl-extra.el (*random-state*):
816 Remove unnecessary declaration.
817
0e829eab
GM
818 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
819
e3ad7552
GM
820 * play/cookie1.el (cookie-snarf):
821 Give an explicit error if input file cannot be read.
822
68892d27
GM
823 * play/yow.el (yow-file): Use expand-file-name rather than concat.
824
20f0c46d
GM
825 * progmodes/perl-mode.el (c-macro-expand):
826 Remove unnecessary autoload (it is in loaddefs.el).
827
5a0978ce
GM
828 * textmodes/picture.el (picture-desired-column)
829 (picture-update-desired-column): Convert comments to doc-strings.
830 (picture-substitute): Remove function.
831 (picture-mode-map): Initialize in the defvar.
832
6b955486
GM
833 * woman.el: Remove eval-after-load for tar-mode.
834 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
835 (woman-tar-extract-file): Autoload it.
836
94ee8db5
GM
837 * frame.el (automatic-hscrolling): Make this alias obsolete.
838
177eca34
AM
8392012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
840
841 * ispell.el (ispell-set-spellchecker-params): Post-process
4be3075e 842 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3851314b
AM
843 (ispell-dictionary-base-alist): Revert to original XEmacs
844 friendly version for default. [:alpha:] will be added in
845 `ispell-set-spellchecker-params' if needed
177eca34 846
c505aaeb
CY
8472012-04-16 Chong Yidong <cyd@gnu.org>
848
849 * image.el (imagemagick--extension-regexp): New variable.
850 (imagemagick-register-types): Use it.
851 (imagemagick-types-inhibit): Add :set function. Allow new value
852 of t to inhibit all types.
853
854 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
855 so we can preload it.
856
857 * loadup.el (fboundp): Preload regexp-opt, needed by
858 imagemagick-register-types.
859
60efac0f
CY
8602012-04-15 Chong Yidong <cyd@gnu.org>
861
862 * frame.el (scrolling): Remove nearly unused customization group.
863
864 * scroll-all.el (scroll-all-mode): Move to windows group.
865
5dd1713e
CY
8662012-04-15 Chong Yidong <cyd@gnu.org>
867
868 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
869
e6fd457e
CY
8702012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
871
872 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4d6769e1 873 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
e6fd457e 874
e153c136
GM
8752012-04-15 Glenn Morris <rgm@gnu.org>
876
877 * simple.el (process-file-side-effects): Doc fix.
878
e6fd457e 8792012-04-15 Glenn Morris <rgm@gnu.org>
ca7d96c8
GM
880
881 * international/mule-cmds.el (set-language-environment): Doc fix.
882
3603c3b1
JB
8832012-04-14 Juanma Barranquero <lekktu@gmail.com>
884
885 * server.el (server-auth-key, server-generate-key): Doc fixes.
886 (server-get-auth-key): Doc fix. Use `string-match-p'.
887 (server-start): Reflow docstring.
888
e6de100c
LI
8892012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
890
891 * server.el (server-generate-key): `called-interactively-p'
892 requires a parameter.
893
29734c21
MN
8942012-04-14 Michal Nazarewicz <mina86@mina86.com>
895
896 * server.el (server-auth-key): New variable.
75f1671a 897 (server-generate-key, server-get-auth-key): New function.
29734c21
MN
898 (server-start): Use the new variable and functions to allow
899 setting a permanent server key (bug#9423).
900
d65c9521
LL
9012012-04-14 Leo Liu <sdl.web@gmail.com>
902
903 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
904
5ae255c7
PE
9052012-04-14 Paul Eggert <eggert@cs.ucla.edu>
906
907 Spelling fixes.
908 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
909 Emacs uses American spelling.
910
d5e6342e
JB
9112012-04-14 Juanma Barranquero <lekktu@gmail.com>
912
913 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
914 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
915 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
916 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
917
ab036cd7
SM
9182012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
919
920 * progmodes/which-func.el (which-func-modes): Change default.
921
35dc09a1 9222012-04-14 Kim F. Storm <storm@cua.dk>
9557e2be
CY
923
924 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
925 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
926
35dc09a1 9272012-04-14 Chong Yidong <cyd@gnu.org>
81927dd2
CY
928
929 * custom.el (custom-theme-set-variables): Doc fix.
930
35dc09a1 9312012-04-14 Glenn Morris <rgm@gnu.org>
8edb942b
GM
932
933 * international/mule.el (set-auto-coding-for-load): Doc fix.
934
35dc09a1 9352012-04-14 Alan Mackenzie <acm@muc.de>
0de3da9f 936
35dc09a1
GM
937 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
938 imenu work again for Objective C Mode. Correct the *-index values,
939 these having been disturbed by a previous change in 2011-08.
57f845ee 940
0de3da9f
AM
941 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
942 Correct two search limits.
943
35dc09a1 9442012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
ede141ac
SM
945
946 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
947
35dc09a1 9482012-04-14 Andreas Schwab <schwab@linux-m68k.org>
d0203d61
AS
949
950 * international/characters.el: Fix sorting.
951
35dc09a1 9522012-04-14 Eli Zaretskii <eliz@gnu.org>
cb80bcd1
EZ
953
954 * international/characters.el: Add more missing Latin case pairs.
955
35dc09a1 9562012-04-14 Glenn Morris <rgm@gnu.org>
4a427f58
GM
957
958 * files.el (dir-locals-set-class-variables): Doc fix.
959
35dc09a1 9602012-04-14 Eli Zaretskii <eliz@gnu.org>
9f847f41 961
3f1b5bf8
EZ
962 * international/characters.el: Add set-case-syntax-pair call for
963 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
964 counterpart. (Bug#11209)
965
9f847f41
EZ
966 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
967
35dc09a1 9682012-04-14 Glenn Morris <rgm@gnu.org>
0c2014a3
GM
969
970 * calendar/holidays.el (calendar-check-holidays): Doc fix.
971
35dc09a1 9722012-04-14 Eli Zaretskii <eliz@gnu.org>
e2627d21 973
35dc09a1
GM
974 * textmodes/ispell.el (ispell-dictionary-base-alist):
975 Add data for Hebrew.
e2627d21 976
35dc09a1 9772012-04-14 Chong Yidong <cyd@gnu.org>
5c14e333 978
35dc09a1
GM
979 * net/rcirc.el (rcirc-cmd-quit):
980 Revert 2012-03-18 change (Bug#11192).
5c14e333 981
35dc09a1 9822012-04-14 Glenn Morris <rgm@gnu.org>
bf6fa423
GM
983
984 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
985
35dc09a1 9862012-04-14 Eli Zaretskii <eliz@gnu.org>
82b24fb2 987
4517fe3a
SM
988 * minibuffer.el (completion-in-region-mode-map):
989 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
82b24fb2 990
b472a594
VD
9912012-04-13 Vivek Dasmohapatra <vivek@etla.org>
992
993 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
994
09b95ce3
MY
9952012-04-13 Masatake YAMATO <yamato@redhat.com>
996
997 * minibuffer.el (minibuffer-local-filename-syntax): New variable
998 to allow `C-M-f' and `C-M-b' to move to the nearest path
999 separator (bug#9511).
1000
4b63a9ca
LI
10012012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
1002
1003 * avoid.el: Require cl when compiling. And also move the
1004 `provide' to the end.
1005
7b55b8bf
TV
10062012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1007
1008 * avoid.el (mouse-avoidance-banish-position): New variable.
1009 (mouse-avoidance-banish-destination): Use it (bug#10165).
1010
adedaa1f
LL
10112012-04-13 Leo Liu <sdl.web@gmail.com>
1012
1013 * progmodes/which-func.el (which-func-modes): Add objc-mode.
1014
70e74021
KB
10152012-04-13 Ken Brown <kbrown@cornell.edu>
1016
1017 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
ab036cd7 1018 this is no longer needed now that cygstart understands file:// URLs.
70e74021
KB
1019 (browse-url-filename-alist): For the same reason, don't modify
1020 file:// URLs on Cygwin.
1021
e75e89ba
SM
10222012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
1023
1024 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
1025 the region on shift if the binding is already shifted (bug#11221).
1026
82f289a4
GM
10272012-04-12 Glenn Morris <rgm@gnu.org>
1028
1029 * mail/mailpost.el: Move to obsolete/.
1030
d333dc4c
DA
10312012-04-12 Drew Adams <drew.adams@oracle.com>
1032
1033 * imenu.el (imenu--generic-function): Ignore invisible definitions
1034 (bug#10123).
1035
0d15b5ba
VD
10362012-04-12 Vivek Dasmohapatra <vivek@etla.org>
1037
1038 * hexl.el (hexl-bits): New variable.
1039 (hexl-options): Mention the variable in the doc string.
75f1671a 1040 (hexl-rulerise, hexl-line-displen): New functions.
0d15b5ba 1041 (hexl-mode): Mention the new variable.
75f1671a
JB
1042 (hexl-mode, hexl-current-address, hexl-current-address):
1043 Use the displen.
0d15b5ba
VD
1044 (hexl-ascii-start-column): New function.
1045 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
1046 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
1047
64a440db
AM
10482012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1049
1050 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
1051 '("-i" ENCODING), in 2 separate command-line arguments, to specify
1052 the encoding, as expected by hunspell.
1053
6decb6c2
SM
10542012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1055
1056 * battery.el (battery--linux-sysfs-regexp): New const.
1057 (battery-status-function): Use it. Remove yeeloong special case.
1058 (battery-yeeloong-sysfs): Remove.
1059 (battery-echo-area-format): Remove yeeloong special case.
1060
088be6fb
SM
10612012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1062
6622e416
SM
1063 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
1064 Reported by Noah Friedman.
1065
088be6fb
SM
1066 * subr.el (read-passwd): Use read-string.
1067
b49f886e
LMI
10682012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
1069
1070 * vcursor.el (vcursor-move): Increase the priority of the overlay
1071 (bug#9663).
1072
a63067fc
DD
10732012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1074
1075 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
1076 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
1077
ac3cf14a
WS
10782012-04-11 William Stevenson <yhvh2000@gmail.com>
1079
1080 * textmodes/artist.el (artist-mode): Convert artist-mode to use
1081 define-minor-mode (bug#10760).
1082
c4fc691b 10832012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
49a2697c 1084
4d6769e1 1085 * progmodes/grep.el (rgrep): Tweak the find command line so
49a2697c
WJ
1086 that directories matching `grep-find-ignored-files' won't be
1087 pruned (bug#10351).
1088
af23e2e5
CY
10892012-04-11 Chong Yidong <cyd@gnu.org>
1090
1091 * startup.el (command-line): Remove support for long-obsolete
1092 variable font-lock-face-attributes.
1093
ab7ce8c1
GM
10942012-04-11 Glenn Morris <rgm@gnu.org>
1095
1096 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
1097
de8c03dc
SM
10982012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1099
1100 * window.el (window--state-get-1): Obey window-point-insertion-type.
1101
050cc68b
LB
11022012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
1103
1104 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
1105 to previous function when point is on the first character of a
75f1671a 1106 function. Take care of that in `narrow-to-defun' (bug#6157).
050cc68b 1107
a38c310c
GM
11082012-04-11 Glenn Morris <rgm@gnu.org>
1109
effed0c2
GM
1110 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
1111 not just file-errors.
1112
a38c310c
GM
1113 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
1114 (vc-bzr-sha1): Use internal sha1.
1115
0221e323
SM
11162012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1117
1118 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
1119
43956923
SG
11202012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
1121
1122 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
1123 that start in the middle of the line (bug#10496).
1124
6a8c9eaf
DN
11252012-04-10 Dan Nicolaescu <dann@gnu.org>
1126
1127 * battery.el (battery-linux-proc-acpi): Only one battery is
1128 discharged at a time, but that seems to confuse battery.el when
1129 computing `rate-type' for the battery not being discharged
1130 (bug#10332).
1131
1930bf5d
SM
11322012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
1133
2a718f6f
SM
1134 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
1135
599430d0
SM
1136 * international/quail.el: Use dolist and simplify.
1137 (quail-define-package, quail-update-keyboard-layout)
1138 (quail-define-rules): Use dolist.
1139 (quail-insert-kbd-layout, quail-get-translation): CSE.
1140
a2754b6c
SM
1141 * tmm.el: Use dolist, remove left over hook.
1142 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
1143 Use dolist.
1144 (calendar-load-hook): Don't mess with it.
1145
1930bf5d
SM
1146 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
1147 Use derived-mode-p. Run the diff asynchronously.
1148
9f67961c
LMI
11492012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
1150
1151 * obsolete/mouse-sel.el: Add an Obsolete-since header.
1152
2a8ce227
JB
11532012-04-10 Juanma Barranquero <lekktu@gmail.com>
1154
1155 * misc.el: Display absolute path of loaded DLLs (bug#10424).
1156 (list-dynamic-libraries--loaded): New function.
1157 (list-dynamic-libraries--refresh): Use it.
1158
8f33b5f8
NW
11592012-04-10 Nathan Weizenbaum <nweiz@google.com>
1160
1930bf5d
SM
1161 * progmodes/python.el (python-fill-paragraph):
1162 Make python-fill-region in a multiline string work when font-lock is
8f33b5f8
NW
1163 disabled (bug#7018).
1164
b12f0439
L
11652012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
1166
1930bf5d 1167 * language/european.el (cp775): Add oem/legacy (en)coding on
75f1671a
JB
1168 DOS/MS Windows for the Baltic languages. There are still plenty
1169 of texts written in this encoding/codepage (bug#6519).
b12f0439 1170
57c3bd01
GM
11712012-04-10 Glenn Morris <rgm@gnu.org>
1172
1173 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
1174 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
1175
6c3eab30
FA
11762012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
1177
1930bf5d 1178 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6c3eab30
FA
1179 next-line "n" and previous-line "p" in order to make recentf more
1180 consistent with ibuffer, dired or org-mode (bug#9387).
1181
24d78a88
LMI
11822012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
1183
bc72b5d9
LMI
1184 * image.el (put-image): Return the overlay created instead of the
1185 optional input string (bug#7834). Note that this may break code
1186 that is (for some reason or other) depending on `put-image'
1187 returning the string.
1188
bd2dba5a
LMI
1189 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
1190
74beb59f
LMI
1191 * simple.el (zap-to-char): Allow zapping using input methods
1192 (bug#1580).
1193
24d78a88
LMI
1194 * textmodes/fill.el (fill-region): Leave point and mark where they
1195 were before filling (bug#5399).
1196
263f20cd
GM
11972012-04-09 Glenn Morris <rgm@gnu.org>
1198
1199 * version.el (emacs-bzr-get-version):
1200 Handle lightweight checkouts of local branches.
1201
58d1f797
AS
12022012-04-09 Andreas Schwab <schwab@linux-m68k.org>
1203
263f20cd 1204 * international/characters.el: Recover lost case pairs. (Bug#11209)
58d1f797 1205
b4d3bc10
CY
12062012-04-09 Chong Yidong <cyd@gnu.org>
1207
1208 * custom.el (custom-variable-p): Return nil for non-symbol
1209 arguments instead of signaling an error.
1210 (user-variable-p): Obsolete alias for custom-variable-p.
1211
1212 * apropos.el (apropos-variable):
1213 * files-x.el (read-file-local-variable):
1214 * simple.el (set-variable):
1215 * woman.el (woman-mini-help):
1216 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
1217
fd06db5d
GM
12182012-04-09 Glenn Morris <rgm@gnu.org>
1219
e5fcdb5e
GM
1220 * startup.el (normal-top-level): Don't look for leim-list.el
1221 in places where it will not be found. (Bug#910)
1222
fd06db5d
GM
1223 * international/mule-cmds.el (set-default-coding-systems):
1224 * files.el (normal-mode):
1225 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
1226 This function was removed with ucs-tables.el in 2008.
1227
b39bb7e1
EZ
12282012-04-08 Eli Zaretskii <eliz@gnu.org>
1229
1230 * textmodes/ispell.el (ispell-check-version): For hunspell, set
1231 ispell-encoding8-command to "-i", without a trailing space.
1232 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
1233 separate command-line arguments, to specify the encoding, since
1234 that's how hunspell expects it.
1235
5c5b8e23
GM
12362012-04-08 Glenn Morris <rgm@gnu.org>
1237
1238 * loadup.el: Load bindings before cus-start.
1239 This reduces somewhat the number of "rogue" settings in emacs -Q.
1240
a1ed8b05
GM
12412012-04-07 Glenn Morris <rgm@gnu.org>
1242
1243 * version.el (emacs-bzr-get-version): New function.
dfae128a 1244 (emacs-bzr-version): New variable.
a1ed8b05
GM
1245 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
1246 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
1247
b142f158
EZ
12482012-04-07 Eli Zaretskii <eliz@gnu.org>
1249
dfae128a
GM
1250 * international/uni-bidi.el, international/uni-category.el:
1251 * international/uni-combining.el, international/uni-decimal.el:
1252 * international/uni-decomposition.el, international/uni-digit.el:
1253 * international/uni-lowercase.el, international/uni-mirrored.el:
1254 * international/uni-name.el, international/uni-numeric.el:
1255 * international/uni-titlecase.el, international/uni-uppercase.el:
1256 Update for Unicode 6.1.
b142f158 1257
9078ead6
EZ
12582012-04-07 Eli Zaretskii <eliz@gnu.org>
1259
1260 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
1261
f23d2c7d
LMI
12622012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
1263
1264 * window.el (shrink-window): Mention the `window-min-height'
1265 variable in the doc string.
1266
0a0a3573
BG
12672012-04-05 Bastien Guerry <bzg@altern.org>
1268
1269 * color.el (color-lighten-name): Fix typo.
1270
e5248ac9
SM
12712012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
1272
1273 * server.el (server--on-display-p): New function.
1274 (server--on-display-p): Use it.
1275
b4243e22
GV
12762012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
1277
1278 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
1279 (bug#11145).
1280
305d9f44
SM
12812012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
1282
1283 * comint.el (comint--common-quoted-suffix): Check string boundary
1284 before comparing (bug#11158).
1285 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
1286
3d439cd1
CY
12872012-04-04 Chong Yidong <cyd@gnu.org>
1288
321cc491
CY
1289 * minibuffer.el (completion-extra-properties): Doc fix.
1290
3d439cd1
CY
1291 * subr.el (delayed-warnings-hook): Doc fix.
1292
2d562c0f
DU
12932012-04-04 Daiki Ueno <ueno@unixuser.org>
1294
1295 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
1296 selection (Bug#11159).
1297 (epa-insert-keys): Inform that the default public key will be
1298 exported if no key is selected.
1299
4443f204
RS
13002012-04-04 Richard Stallman <rms@gnu.org>
1301
1302 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
1303
529c06b6
CY
13042012-04-03 Chong Yidong <cyd@gnu.org>
1305
1306 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
1307 mail-insert-file, not its obsolete alias mail-attach-file.
1308
66b907dc
MA
13092012-04-03 Michael Albinus <michael.albinus@gmx.de>
1310
1311 * notifications.el (notifications-notify): Fix docstring.
1312
c0ea195d
GM
13132012-04-02 Glenn Morris <rgm@gnu.org>
1314
1315 * emacs-lisp/authors.el (authors-aliases): Another addition.
1316
5ca64e00
MA
13172012-04-02 Michael Albinus <michael.albinus@gmx.de>
1318
1319 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
1320 `tramp-compat-call-process' instead of `tramp-local-call-process'.
1321 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
1322
42ee526b
CY
13232012-04-01 Chong Yidong <cyd@gnu.org>
1324
1325 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
1326 Handle root directory properly.
1327 (copy-directory): Caller changed.
1328
1329 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
1330 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
1331
0b021094
GM
13322012-03-31 Glenn Morris <rgm@gnu.org>
1333
40f86458
GM
1334 * term/xterm.el (xterm-extra-capabilities): Doc fix.
1335
7019c177
GM
1336 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
1337
a1daddd6
GM
1338 * calendar/calendar.el (calendar-window-list)
1339 (calendar-hide-window): Restore. (Bug#11140)
1340 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
1341
0b021094
GM
1342 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
1343
40311efc
TV
13442012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1345
1346 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
1347 Check if file is a symlink (Bug#10489).
1348
1349 * files.el (copy-directory): Likewise.
1350
5319014e
CY
13512012-03-30 Chong Yidong <cyd@gnu.org>
1352
1353 * image.el (imagemagick-types-inhibit)
1354 (imagemagick-register-types): Doc fix.
1355
935d1290
AM
13562012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1357
ef24141c
SM
1358 * ispell.el (ispell-get-extended-character-mode):
1359 Disable extended-char-mode for hunspell. hunspell does not support it
75f1671a 1360 and treats ~word as ordinary words in pipe mode.
935d1290 1361
61c6e8fd
GM
13622012-03-30 Glenn Morris <rgm@gnu.org>
1363
1364 * tutorial.el (help-with-tutorial): Ensure local variables don't
1365 happen to make the buffer read-only. (Bug#11127)
1366
81fdff00
SM
13672012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
1368
1369 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
1370 (perl-calculate-indent): Return `noindent' in strings.
1371
6e7a6ec0
SS
13722012-03-28 Sam Steingold <sds@gnu.org>
1373
1374 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
1375 instead of the broken adhockery which does not prevent calendar
1376 buffers from being displayed at random after exit.
1377 (calendar-window-list, calendar-hide-window): Remove the broken
1378 adhockery.
1379
fee88ca0
GM
13802012-03-28 Glenn Morris <rgm@gnu.org>
1381
1382 * replace.el (query-replace-map): Doc fix.
1383
38de3354
AS
13842012-03-28 Andreas Schwab <schwab@linux-m68k.org>
1385
1386 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
1387 contents. (Bug#11109)
1388
b973155e
SM
13892012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
1390
1391 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
1392 (bug#11077).
1393 (avl-tree--check, avl-tree--check-node): New funs.
1394
dcb6e7b3
MR
13952012-03-27 Martin Rudalics <rudalics@gmx.at>
1396
1397 * window.el (switch-to-visible-buffer): New option.
b973155e
SM
1398 (switch-to-prev-buffer, switch-to-next-buffer):
1399 Observe switch-to-visible-buffer. Make sure that checking for a window
dcb6e7b3
MR
1400 showing a buffer already is done on the same frame.
1401
b4fa35fa
GM
14022012-03-27 Glenn Morris <rgm@gnu.org>
1403
1404 * startup.el (mail-host-address): Doc fix.
1405
f9210e18
SM
14062012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
1407
1408 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
1409 than 197 variables.
1410
c0bf7753
AF
14112012-03-26 Ami Fischman <ami@fischman.org>
1412
1413 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
1414
33da7b16
GM
14152012-03-26 Glenn Morris <rgm@gnu.org>
1416
02243d9d
GM
1417 * files.el (save-buffers-kill-emacs): Doc fix.
1418
33da7b16
GM
1419 * startup.el (normal-top-level, command-line, command-line-1):
1420 Give them doc strings.
1421
e5a69fd0
EZ
14222012-03-25 Eli Zaretskii <eliz@gnu.org>
1423
1424 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
b973155e 1425 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
e5a69fd0 1426
9a69676a
CY
14272012-03-25 Chong Yidong <cyd@gnu.org>
1428
4125cb8b
CY
1429 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
1430 theme if it was previously enabled before (Bug#11031).
1431
dd470960
CY
1432 * cus-theme.el (custom-theme-write-faces): Retrieve current face
1433 spec with custom-face-get-current-spec if its :shown-value is not
1434 determined yet (Bug#9337).
4125cb8b 1435 (customize-create-theme, custom-theme-revert): Doc fixes.
dd470960 1436
9a69676a
CY
1437 * button.el (button-at): Minor addition to docstring.
1438
6e7e90fa
SL
14392012-03-24 Simon Leinen <simon.leinen@gmail.com>
1440
1441 * vc/vc.el (vc-merge): Fix a prompt.
1442
f06e2758
CY
14432012-03-24 Chong Yidong <cyd@gnu.org>
1444
1445 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
1446 point (Bug#9623).
1447
6e7e90fa
SL
1448 * button.el (button-at): Minor addition to docstring.
1449
b9d0879b
SM
14502012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
1451
1452 * newcomment.el (comment-choose-indent): No space after BOL.
1453
e71cebb3
SS
14542012-03-22 Sam Steingold <sds@gnu.org>
1455
1456 * window.el (switch-to-prev-buffer): Revert last patch because the
1457 bug turned out to be an advertised feature (Elisp manual 28.14).
1458
335aff35
GM
14592012-03-22 Glenn Morris <rgm@gnu.org>
1460
1461 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
1462 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
1463
c676576a
LMI
14642012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
1465
1466 * net/network-stream.el (network-stream-open-starttls): Make error
1467 message under Windows be less misleading.
1468
126f3d39
LW
14692012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
1470
1471 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
1472 understands (bug#9942).
1473
64fee311
CY
14742012-03-22 Chong Yidong <cyd@gnu.org>
1475
1476 * simple.el (end-of-visible-line): Handle return value of
1477 next-single-property-change properly (Bug#9371).
1478
a640d29a
KH
14792012-03-22 Kenichi Handa <handa@m17n.org>
1480
1481 * international/quail.el (quail-insert-kbd-layout): Fix previous
1482 change. To avoid unwanted bidi reordering, use
1483 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
1484
39675016
DG
14852012-03-21 Dmitry Gutov <dgutov@yandex.ru>
1486
1487 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
1488 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
1489 (ruby-beginning-of-indent): Be more careful with the difference
1490 between word-boundary and symbol boundary.
1491 (ruby-mode-syntax-table): Make : a symbol constituent.
1492
0a6934fc 14932012-03-21 Andreas Politz <politza@fh-trier.de>
1acad97c 1494
3d008e4f
SM
1495 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
1496
0a6934fc
SM
14972012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
1498
af67c9d7
SM
1499 * progmodes/etags.el (tags-completion-at-point-function):
1500 Improve last fix.
1501
1acad97c
SM
1502 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
1503
e298b5da
SS
15042012-03-21 Sam Steingold <sds@gnu.org>
1505
1506 * progmodes/etags.el (tags-completion-at-point-function):
1507 Avoid the error when point is inside the pattern.
1508
91d82a70
JY
15092012-03-21 John Yates <john@yates-sheets.org> (tiny change)
1510
1511 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
1512 line (Bug#10855).
1513
69188b79
CY
15142012-03-21 Drew Adams <drew.adams@oracle.com>
1515
1516 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
1517
99fc91fe
AK
15182012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
1519
1520 * ido.el (ido-set-current-directory, ido-read-internal)
1521 (ido-choose-completion-string, ido-completion-help): Handle nil
1522 value of ido-completion-buffer (Bug#11008).
1523
087bbb4c
SS
15242012-03-21 Sam Steingold <sds@gnu.org>
1525
1526 * window.el (switch-to-prev-buffer): Do not switch to a visible
1527 window previous buffer, just like with the frame previous buffers.
1528
fb5b8aca
CY
15292012-03-21 Chong Yidong <cyd@gnu.org>
1530
1531 * faces.el (make-face, make-empty-face, copy-face):
1532 * face-remap.el (face-remap-add-relative, face-remap-set-base):
1533 Doc fixes.
1534
dc9924b8
SM
15352012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
1536
1537 * wid-edit.el (widget-complete-field): Remove (bug#11051).
1538 (widget-complete): Remove broken use of it.
1539
f0bcceb9
CY
15402012-03-20 Chong Yidong <cyd@gnu.org>
1541
dc9924b8
SM
1542 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
1543 Use string-width and truncate-string-width to handle arbitrary
f0bcceb9
CY
1544 characters.
1545
ee52ebf3
TH
15462012-03-20 Tassilo Horn <tassilo@member.fsf.org>
1547
1548 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
1549 to draw rectangles, not squares. (Regression introduced by revno
1550 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
1551
4c5779ab
CY
15522012-03-18 Chong Yidong <cyd@gnu.org>
1553
1554 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
1555 it is not yet defined (for temacs).
1556
15360934
LL
15572012-03-18 Leo Liu <sdl.web@gmail.com>
1558
dc9924b8 1559 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
15360934 1560
d9a8eb66
EZ
15612012-03-17 Eli Zaretskii <eliz@gnu.org>
1562
1563 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
1564 (ispell-choices-win-default-height, ispell-silently-savep)
1565 (ispell-dictionary-alist, ispell-encoding8-command)
1566 (ispell-check-version, ispell-aspell-find-dictionary)
1567 (ispell-valid-dictionary-list, ispell-words-keyword)
1568 (ispell-get-word, ispell-internal-change-dictionary)
1569 (ispell-region, ispell-skip-region-list)
1570 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
1571 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
1572 (ispell-message-text-end, ispell-message)
1573 (ispell-buffer-local-parsing): Doc fix.
1574
f02ff80d
J
15752012-03-13 Jambunathan K <kjambunathan@gmail.com>
1576
1577 * htmlfontify.el: Add support for code block fontification for ODT
1578 export (Bug #9914).
1579 (hfy-optimisations): Define new option
1580 `body-text-only'
1581 (hfy-fontify-buffer): Honor above setting.
1582 (hfy-begin-span, hfy-end-span): New routines factored out form
1583 `hfy-fontify-buffer'.
1584 (hfy-begin-span-handler, hfy-end-span-handler): New variables
1585 that permit insertion of custom tags.
1586 (hfy-fontify-buffer): Use above handlers.
1587 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
1588 (hfy-face-to-css): Re-defined to be a variable.
dc9924b8 1589 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
75f1671a 1590 over multiple runs. This is made possible by having the caller let
f02ff80d
J
1591 bind a special variable `hfy-user-sheet-assoc'.
1592 (htmlfontify-string): New defun.
1593 (hfy-compile-face-map): Make sure that the last char in the
1594 buffer is correctly fontified.
1595 (hfy-face-resolve-face): Whitespace only change.
1596
9ac7a13f
EZ
15972012-03-17 Eli Zaretskii <eliz@gnu.org>
1598
1599 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
1600 message more clear.
1601
e2b5bdd7
LL
16022012-03-16 Leo Liu <sdl.web@gmail.com>
1603
1604 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
1605
2e492df3
AM
16062012-03-16 Alan Mackenzie <acm@muc.de>
1607
1608 Further optimise the handling of large macros.
1609
1610 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
1611 limit to a call of `c-literal-limits'.
1612 (c-determine-+ve-limit): New function.
dc9924b8
SM
1613 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
1614 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
2e492df3
AM
1615 In CASE 5B, restrict a search limit to 500.
1616 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
1617
1618 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
1619 Restrict macro bounds to +-500 from after-change's BEG END.
1620
50e94f0c
LL
16212012-03-16 Leo Liu <sdl.web@gmail.com>
1622
1623 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
1624
6f09f6ed
AH
16252012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
1626
1627 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
dc9924b8 1628 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6f09f6ed 1629
c7e73d51
GM
16302012-03-16 Glenn Morris <rgm@gnu.org>
1631
da986230
GM
1632 * view.el (view-buffer, view-buffer-other-window)
1633 (view-buffer-other-frame): Doc fixes re special mode-class.
1634
0835f01e
GM
1635 * subr.el (eval-after-load): If named feature is provided not from
1636 a file, run after-load forms. (Bug#10946)
1637
c7e73d51
GM
1638 * calendar/calendar.el (calendar-insert-at-column):
1639 Handle non-unit-width characters a bit better. (Bug#10978)
1640
3f2eafd1
CY
16412012-03-15 Chong Yidong <cyd@gnu.org>
1642
1643 * emacs-lisp/ring.el (ring-extend): New function.
1644 (ring-insert+extend): Extend the ring correctly (Bug#11019).
1645
1646 * comint.el (comint-read-input-ring)
1647 (comint-add-to-input-history): Grow comint-input-ring lazily.
1648
103af3fe
SM
16492012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
1650
663b1677
SM
1651 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
1652 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
1653
103af3fe
SM
1654 * imenu.el: Fix multiple inheritance breakage (bug#9199).
1655 (imenu-add-to-menubar): Don't add a redundant index.
1656 (imenu-update-menubar): Handle a dynamically composed keymap.
1657
899cb7cb
KY
16582012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
1659
1660 * mail/sendmail.el (mail-encode-header):
1661 Bind rfc2047-encode-encoded-words to nil.
1662
3809f91d
GM
16632012-03-13 Glenn Morris <rgm@gnu.org>
1664
1665 * calendar/calendar.el (calendar-string-spread):
1666 Handle non-unit-width characters a bit better. (Bug#10978)
1667
9e345a01
LL
16682012-03-13 Leo Liu <sdl.web@gmail.com>
1669
1670 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
1671 directory and file as argument (Bug#10822).
1672
4a07df36
KS
16732012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
1674
1675 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
1676 For dynamically generated code, follow $PC.
1677 (gdb-disassembly-handler-custom): Handle no function name case.
1678
4aaa9356
TL
16792012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
1680
1681 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
1682 * emulation/ws-mode.el (ws-query-replace):
1683 * sort.el (sort-regexp-fields):
1684 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
1685
225979da
SM
16862012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
1687
1688 * dabbrev.el: Fix cycle completion order (bug#10963).
1689 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
1690 (dabbrev-completion): Don't use an obarray; provide
1691 a cycle-sort-function.
1692
e2f1fdab
LL
16932012-03-12 Leo Liu <sdl.web@gmail.com>
1694
dc9924b8 1695 * simple.el (kill-new): Use equal-including-properties for comparison.
e2f1fdab
LL
1696 (kill-do-not-save-duplicates): Doc fix.
1697
b19490ed
SM
16982012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
1699
1700 * dabbrev.el: Fix cycle completion (bug#10963).
1701 Use lexical binding and wrap to 80 columns.
1702 (dabbrev-completion): Delay computing the list of completions.
1703
4b05d722
KH
17042012-03-12 Kenichi Handa <handa@m17n.org>
1705
1706 * international/quail.el (quail-insert-kbd-layout): Surround each
1707 row by LRO and PDF instead of inserting many LRMs. Pad the left
1708 and right of each non-spacing marks. Insert invisible space
1709 between lower and upper characters to prevent composition.
1710
dbbc2e69
SM
17112012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
1712
1713 * minibuffer.el (minibuffer-complete): Don't get confused when the
1714 function is run twice via different commands (bug#10958).
1715 (complete-with-action): Fix docstring.
1716
292112ed
CY
17172012-03-12 Chong Yidong <cyd@gnu.org>
1718
5d1ac394
CY
1719 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
1720 (nxml-completion-at-point-function): New function.
1721 (nxml-mode): Use it.
1722 (nxml-bind-meta-tab-to-complete-flag): Default to t.
1723
292112ed
CY
1724 * emacs-lisp/package.el (package-unpack, package-unpack-single):
1725 Load generated autoloads file before byte compiling (Bug#10970).
1726 (package--make-autoloads-and-compile): New helper fun.
1727
4098f8f7
CS
17282012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
1729
1730 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
1731
8f754691
MA
17322012-03-11 Michael Albinus <michael.albinus@gmx.de>
1733
1734 * autorevert.el (auto-revert-handler): Ensure, that
1735 file-readable-p is applied only for local files or in
1736 auto-revert-tail-mode.
1737
e29ab36b
AS
17382012-03-11 Andreas Schwab <schwab@linux-m68k.org>
1739
dbbc2e69
SM
1740 * server.el (server-eval-at): Handle non-tcp connections.
1741 Decode result string.
ad0bf5b6 1742
e29ab36b
AS
1743 * server.el (server-msg-size): New constant.
1744 (server-reply-print): New function.
1745 (server-eval-and-print): Use it.
1746 (server-eval-at): Use server-quote-arg and server-unquote-arg.
1747 Handle -print-nonl.
1748
de5939ba
CS
17492012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
1750
1751 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
1752 (Bug#10987).
1753
0c93eabf
CY
17542012-03-11 Chong Yidong <cyd@gnu.org>
1755
397a688f
CY
1756 * simple.el (goto-line): Doc fix (Bug#9938).
1757
2cc775f9
CY
1758 * subr.el (save-window-excursion): Doc fix (Bug#9979).
1759
0c93eabf
CY
1760 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
1761 when finished (Bug#10963).
1762
c491fa41
MR
17632012-03-11 Martin Rudalics <rudalics@gmx.at>
1764
1765 * window.el (split-window-below): Fix bug in case where
1766 split-window-keep-point is nil (Bug#10971).
1767
300e8fa5
JL
17682012-03-11 Juri Linkov <juri@jurta.org>
1769
1770 * replace.el (replace-highlight): Set isearch-word to nil
1771 unconditionally. (Bug#10887)
1772
dbf6c5a1
EZ
17732012-03-10 Eli Zaretskii <eliz@gnu.org>
1774
1775 * net/mairix.el (mairix-replace-invalid-chars): Rename from
1776 mairix-replace-illegal-chars; all callers changed. Don't remove
dc9924b8 1777 ^, ~, and = characters: they are meaningful in mairix search specs.
dbf6c5a1
EZ
1778 (mairix-widget-create-query): Add usage information about mairix
1779 search forms: negating words, searching for substrings, etc.
1780
b9e501de
JP
17812012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
1782
1783 * international/fontset.el (font-encoding-alist): Add an entry for
1784 ksx1001 (Bug#5667).
1785
92795c91
RS
17862012-03-10 Richard Stallman <rms@gnu.org>
1787
1694e6c1
RS
1788 * mail/sendmail.el (mail-encode-header):
1789 Set rfc2047-encode-encoded-words.
1790
607e8555
RS
1791 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
1792
de3bc99a
RS
1793 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
1794 view buffer means not swapped.
1795 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
1796 (rmail-write-region-annotate): Error if real text has disappeared.
1797
92795c91
RS
1798 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
1799
699bd04e
CY
18002012-03-10 Chong Yidong <cyd@gnu.org>
1801
1802 * emulation/cua-rect.el (cua--init-rectangles):
dbbc2e69
SM
1803 * emulation/cua-base.el (cua--init-keymaps):
1804 Add delete-forward-char to remappings (Bug#9666).
699bd04e 1805
570a1714
MR
18062012-03-10 Martin Rudalics <rudalics@gmx.at>
1807
dbbc2e69
SM
1808 * speedbar.el (speedbar-unhighlight-one-tag-line):
1809 Avoid unhighlighting due to frame switching (Bug#10275).
570a1714 1810
82dcf4e4
CY
18112012-03-10 Chong Yidong <cyd@gnu.org>
1812
7a2c7ca7
CY
1813 * minibuffer.el (completion-in-region, completion-help-at-point):
1814 Give the completion field overlay a high priority (Bug#6830).
1815
82dcf4e4
CY
1816 * dired.el (dired-goto-file): Recognize absolute file name
1817 listings (Bug#7126).
1818 (dired-goto-file-1): New helper function.
1819 (dired-toggle-read-only): Inhibit warnings.
1820
052e28ac
MA
18212012-03-09 Michael Albinus <michael.albinus@gmx.de>
1822
75f1671a 1823 * net/dbus.el (dbus-property-handler): Return empty array if
052e28ac
MA
1824 there are no properties.
1825
95d5e396
LL
18262012-03-09 Leo Liu <sdl.web@gmail.com>
1827
1828 * savehist.el (savehist-printable): Stricter check for string
1829 value (Bug#10937).
1830
3f018d6d
EZ
18312012-03-09 Eli Zaretskii <eliz@gnu.org>
1832
dbbc2e69
SM
1833 * mail/smtpmail.el (smtpmail-send-it):
1834 Bind coding-system-for-write to *-unix, so that FCC files are kept in
3f018d6d
EZ
1835 valid mbox format.
1836
f7fd3d79
GM
18372012-03-09 Glenn Morris <rgm@gnu.org>
1838
1839 * files.el (dir-locals-find-file):
1840 Don't check result is regular, readable.
1841 (dir-locals-read-from-file): Demote errors.
1842
6ff6e72f
EZ
18432012-03-08 Eli Zaretskii <eliz@gnu.org>
1844
dbbc2e69
SM
1845 * international/quail.el (quail-insert-kbd-layout):
1846 Insert invisible LRM characters before each character in a keyboard
6ff6e72f
EZ
1847 layout cell, to prevent their reordering by bidi display engine.
1848 For details, see the discussion in
1849 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
1850
9cec7834
AM
18512012-03-08 Alan Mackenzie <acm@muc.de>
1852
1853 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
1854 the starting position; make it extend the marked region when
1855 invoked repeatedly - all under appropriate circumstances.
1856 Fixes bugs #5525, #10906.
1857
9a40b8d4
GM
18582012-03-08 Glenn Morris <rgm@gnu.org>
1859
1860 * files.el (locate-dominating-file, dir-locals-find-file):
1861 Undo 2012-03-06 change.
1862
7a08ed35
EZ
18632012-03-07 Eli Zaretskii <eliz@gnu.org>
1864
dbbc2e69
SM
1865 * international/quail.el (quail-help):
1866 Force bidi-paragraph-direction be left-to-right. See discussion in
7a08ed35
EZ
1867 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
1868 for the reason.
1869
5aca4f71 18702012-03-07 Michael Albinus <michael.albinus@gmx.de>
6612a284
MA
1871
1872 Avoid superfluous registering of signals. (Bug#10807)
1873
1874 * notifications.el (notifications-on-action-object)
1875 (notifications-on-close-object): New defvars.
1876 (notifications-on-action-signal, notifications-on-closed-signal):
1877 Unregister the signal if not needed any longer.
1878 (notifications-notify): Register `notifications-action-signal' or
1879 `notifications-closed-signal', if :on-action or :on-close has been
1880 passed as argument.
1881
78e8b10a
CY
18822012-03-07 Chong Yidong <cyd@gnu.org>
1883
1884 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
1885 non-X platforms.
1886
69481eb8
GM
18872012-03-06 Glenn Morris <rgm@gnu.org>
1888
1889 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
1890 (x-disown-selection-internal, x-get-selection-internal):
1891 Doc fix (add arglist signatures). (Bug#10783)
1892
133b8e11
KS
18932012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
1894
1895 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
1896 Handle breakpoints with no "type".
1897
99a83064
GM
18982012-03-06 Glenn Morris <rgm@gnu.org>
1899
1900 * files.el (locate-dominating-file): Add optional predicate argument.
1901 (dir-locals-find-file): Make use of above change.
1902
17798e78
TTN
19032012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
1904
1905 * info.el (Info-insert-dir): Also try "dir.gz".
1906
eb182446
GM
19072012-03-06 Glenn Morris <rgm@gnu.org>
1908
8f2114ee
GM
1909 * files.el (dir-locals-find-file):
1910 Ignore non-readable or non-regular files. (Bug#10928)
1911
eb182446
GM
1912 * files.el (locate-dominating-file): Doc fix.
1913
24679323
AS
19142012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
1915
1916 * calendar/calendar.el (calendar-set-mode-line):
1917 `getenv' returns a string. (Bug#10951)
1918
01d972a9
LL
19192012-03-05 Leo Liu <sdl.web@gmail.com>
1920
109aa8a9
LL
1921 * simple.el (backward-delete-char-untabify): Constrain point to
1922 field (Bug#10939).
1923
01d972a9
LL
1924 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
1925
10607bea
CY
19262012-03-05 Chong Yidong <cyd@gnu.org>
1927
1928 * simple.el (count-words): If called from Lisp, return the word
1929 count, for symmetry with `count-lines'. Arglist changed.
1930 (count-words--message): Args changed. Consolidate counting code
1931 from count-words and count-words-region.
1932 (count-words-region): Caller changed.
1933 (count-lines-region): Make it an obsolete alias.
1934
5dd11cfe
TH
19352012-03-04 Tassilo Horn <tassilo@member.fsf.org>
1936
1937 * saveplace.el (save-place-to-alist)
1938 (save-place-ignore-files-regexp): Allow value nil to disable this
1939 feature.
1940
c349f4e6
CY
19412012-03-04 Chong Yidong <cyd@gnu.org>
1942
1943 * faces.el (face-spec-reset-face): For the default face, reset the
1944 attributes to default values (Bug#10748).
1945
e627be4c
LMI
19462012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
1947
1948 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
1949 previous patch: Check `message-send-mail-function', and not the
1950 default function (bug#10897).
1951
ebeabff4
MA
19522012-03-04 Michael Albinus <michael.albinus@gmx.de>
1953
a41a6cf4
MA
1954 * notifications.el (notifications-on-action-signal)
1955 (notifications-on-closed-signal): Check for unique service name of
1956 incoming event. Fix error in removing entry.
ebeabff4 1957 (top): Register for signals with wildcard service name.
a41a6cf4 1958 (notifications-notify): Use daemon unique service name for map entries.
ebeabff4 1959
c1ca42b4
CY
19602012-03-04 Chong Yidong <cyd@gnu.org>
1961
dc9924b8 1962 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
c1ca42b4 1963
ea16568d
GM
19642012-03-04 Glenn Morris <rgm@gnu.org>
1965
1966 * abbrev.el (copy-abbrev-table, abbrev-table-p)
1967 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
1968 (expand-abbrev, define-abbrev-table): Doc fixes.
1969
fbae4637
LMI
19702012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
1971
1972 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
1973 `message-default-send-mail-function' and not `send-mail-function'
1974 when doing the prompting for `sendmail-query-once' before sending
1975 in Message buffers (bug#10897).
1976
a1e7225c
LMI
1977 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
1978 This is inconsistent with all the other stream functions, which leave
1979 the setting up to the higher levels (if so wanted) (bug#10931).
1980
56d093a9
AM
19812012-03-02 Alan Mackenzie <acm@muc.de>
1982
1983 Depessimize the handling of very large macros.
1984
1985 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
1986 (c-macro-cache-syntactic): New variables to implement a one
1987 element macro cache.
1988 (c-invalidate-macro-cache): New function.
1989 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
1990 Adapt to use the new cache.
1991 (c-state-safe-place): Use better the cache of safe positions.
1992 (c-state-semi-nonlit-pos-cache)
1993 (c-state-semi-nonlit-pos-cache-limit):
1994 New variables for...
1995 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
1996 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
dbbc2e69
SM
1997 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
1998 Use c-state-semi-safe-place.
56d093a9 1999
dbbc2e69
SM
2000 * progmodes/cc-langs.el (c-get-state-before-change-functions):
2001 Add c-invalidate-macro-cache to the C, C++, Obj entries.
56d093a9 2002
817e5c3d
MA
20032012-03-02 Michael Albinus <michael.albinus@gmx.de>
2004
dbbc2e69
SM
2005 * jka-compr.el (jka-compr-call-process):
2006 Apply `file-accessible-directory-p' only when the default directory is
817e5c3d
MA
2007 not remote.
2008
a032a702
MA
20092012-03-01 Michael Albinus <michael.albinus@gmx.de>
2010
2011 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
2012 access of FILE2, if FILE1 does not exist.
2013
99a54f21
MA
2014 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
2015 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
2016
2017 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
2018 Add "PAGER=" to `process-environment'.
2019
f6561e1f
MM
20202012-03-01 Michael R. Mauger <mmaug@yahoo.com>
2021
2022 * progmodes/sql.el: Bug fix
2023 (sql-get-login-ext): Save login values in globals.
2024 (sql-get-login): Use new version of `sql-get-login-ext'.
2025 (sql-interactive-mode): Set global `sql-connection' to nil.
2026 (sql-connect): Set global values for connection.
2027 (sql-product-interactive): Save global values as buffer local.
2028
2d44d9cc
LL
20292012-02-29 Leo Liu <sdl.web@gmail.com>
2030
2031 * abbrev.el (define-abbrevs): Reset sys to nil.
2032
96b49301 20332012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2034
bf7f9bc5
JB
2035 * files.el (file-equal-p): Rename from `files-equal-p'.
2036 Return nil when one or both files don't exist.
96b49301 2037 (file-subdir-of-p): Now only top directory must exists,
2038 return nil if it doesn't.
bf7f9bc5
JB
2039 (copy-directory): No need to test with `file-subdir-of-p' after
2040 creating dir.
2041 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
2042 to `file-equal-p'.
96b49301 2043
44e97401
GM
20442012-02-28 Glenn Morris <rgm@gnu.org>
2045
2046 * shell.el (shell-mode):
2047 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
2048 * play/landmark.el (landmark-font-lock-face-O):
2049 * play/handwrite.el (handwrite):
2050 * play/gomoku.el (gomoku-O):
2051 * net/browse-url.el (browse-url-browser-display):
2052 * international/mule.el (define-charset):
2053 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
2054 * filesets.el (filesets-find-file-delay):
2055 * eshell/em-xtra.el (eshell-xtra):
2056 * eshell/em-unix.el (eshell-grep):
2057 * emulation/viper.el (viper-mode):
2058 * emacs-lisp/regexp-opt.el (regexp-opt-group):
2059 * emacs-lisp/easymenu.el (easy-menu-define):
2060 * calendar/timeclock.el (timeclock-use-display-time):
2061 * bs.el (bs-mode):
2062 * bookmark.el (bookmark-save-flag):
2063 Doc fix (standardize possessive apostrophe usage).
2064
c98c6276
CY
20652012-02-27 Chong Yidong <cyd@gnu.org>
2066
bf7f9bc5
JB
2067 * emulation/viper-cmd.el (viper-intercept-ESC-key):
2068 Fix key-binding lookup for ESC key (Bug#9146).
ecf5f74e 2069
c98c6276
CY
2070 * font-lock.el (font-lock-specified-p): Rename from
2071 font-lock-spec-present. Callers changed.
2072
9c62cd04 20732012-02-27 Daniel Hackney <dan@haxney.org>
8ac9e529 2074
bf7f9bc5
JB
2075 * emacs-lisp/package.el (package-compute-transaction):
2076 Handle holding a package version to t in package-load-list.
8ac9e529 2077
530739c9
MA
20782012-02-26 Michael Albinus <michael.albinus@gmx.de>
2079
2080 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
2081 (tramp-get-inode, tramp-get-device): Use cached values.
2082
487915d7
AM
20832012-02-26 Alan Mackenzie <acm@muc.de>
2084
2085 Check there is a font-lock specification before doing initial
2086 fontification.
2087
2088 * font-core.el (font-lock-mode): Move the conditional from
2089 :after-hook to font-lock-initial-fontify.
2090 (font-lock-default-function): Move the check for a specification
2091 to font-lock-spec-present.
2092
dc9924b8 2093 * font-lock.el (font-lock-initial-fontify): Call ...
487915d7
AM
2094 (font-lock-spec-present): New function.
2095
4fd96557
JB
20962012-02-26 Jim Blandy <jimb@red-bean.com>
2097
2098 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
2099 (gdb-send): Apply it to the operand of the '-interpreter-exec
2100 console' command, so that we can pass arguments with (say) quotes
2101 in them. Store exact string sent in gdb-debug-log (Bug#10765).
2102
9a4888c0
CY
21032012-02-26 Chong Yidong <cyd@gnu.org>
2104
07498861
CY
2105 * help-fns.el (describe-function-1): Clarify description of
2106 remapping (Bug#10844).
2107
9a4888c0
CY
2108 * files.el (files-equal-p): Doc fix.
2109 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
2110 and quit the loop once a mismatch is found.
2111
ea8fb88d
JB
21122012-02-25 Juanma Barranquero <lekktu@gmail.com>
2113
2114 * bs.el (bs--show-with-configuration): Don't throw an error
2115 if the window cannot be split; otherwise, subsequent calls to
2116 bs-show fail, restoring a stale window config. (Bug#10882)
2117
525795c1
JD
21182012-02-25 Jan Djärv <jan.h.d@swipnet.se>
2119
2120 * term/ns-win.el (global-map): Bind ns-drag-file to
2121 ns-find-file (Bug#5855, Bug#10050).
2122
f008086f
AS
21232012-02-25 Andreas Schwab <schwab@linux-m68k.org>
2124
2125 * calendar/parse-time.el (parse-time-string): Allow extractor to
2126 return nil.
2127
a3fcfa99
MA
21282012-02-25 Michael Albinus <michael.albinus@gmx.de>
2129
91027d08
JB
2130 * net/tramp.el (tramp-file-name-for-operation):
2131 Add `files-equal-p' and `file-subdir-of-p'.
a3fcfa99
MA
2132
2133 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
91027d08
JB
2134 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
2135 Add COPY-CONTENTS argument.
a3fcfa99 2136
67b0de11
CY
21372012-02-25 Chong Yidong <cyd@gnu.org>
2138
2139 Add custom groups for VC backends, for consistency with vc-bzr.
2140
2141 * vc/vc-arch.el (vc-arch):
2142 * vc/vc-cvs.el (vc-cvs):
2143 * vc/vc-git.el (vc-git):
2144 * vc/vc-hg.el (vc-hg):
2145 * vc/vc-mtn.el (vc-mtn):
2146 * vc/vc-rcs.el (vc-rcs):
2147 * vc/vc-sccs.el (vc-sccs):
2148 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
2149 All relevant defcustoms reassigned.
2150
3c9dfce6
CY
21512012-02-25 Chong Yidong <cyd@gnu.org>
2152
1339bf43
CY
2153 * newcomment.el (comment-styles): Add autoload (Bug#10868).
2154
3c9dfce6
CY
2155 * term/x-win.el (x-initialize-window-system): Reduce default for
2156 x-selection-timeout to 5 seconds (Bug#8869).
2157
25b2e303 21582012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2159
ec70a47d
GM
2160 * files.el (files-equal-p, file-subdir-of-p): New functions.
2161 (copy-directory): Error when trying to copy a directory on itself.
25b2e303 2162 Add missing copy-contents arg to tramp handler.
ec70a47d
GM
2163 * dired-aux.el (dired-copy-file-recursive): Same.
2164 (dired-create-files): Modify destination when source is equal to
2165 dest when copying files.
53a46cd0 2166 Return also when dest is a subdir of source. (Bug#10489)
25b2e303 2167
914260cd
MA
21682012-02-24 Michael Albinus <michael.albinus@gmx.de>
2169
2170 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
2171 (Bug#10874)
2172
2cb228f7
AM
21732012-02-23 Alan Mackenzie <acm@muc.de>
2174
2175 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
2176 parameter "after-hook:" to allow the expansion to run code after
2177 the execution of the mode hooks.
2178
2179 * font-lock.el (font-lock-initial-fontify): New function extracted
91027d08 2180 from font-lock-mode-internal.
2cb228f7 2181
91027d08 2182 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
2cb228f7
AM
2183 :after-hook.
2184
8f0fde21
SM
21852012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
2186
3e88618b
SM
2187 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
2188 (completion--cache-all-sorted-completions): New function.
2189 (completion-all-sorted-completions): Use it.
2190 (completion--do-completion, minibuffer-force-complete):
2191 Use it to re-instate the flush hook.
2192
8f0fde21
SM
2193 * icomplete.el (icomplete-completions): Replace last fix with a better
2194 one (bug#10850).
2195
8e911f6f
DG
21962012-02-23 Dmitry Gutov <dgutov@yandex.ru>
2197
2198 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
2199 when it might call us back infinitely (bug#10797).
2200
49fe4321
GM
22012012-02-23 Glenn Morris <rgm@gnu.org>
2202
2203 * minibuffer.el (completion-category-overrides): Doc fix.
2204
b291b572
SM
22052012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
2206
2207 * minibuffer.el (completion-table-with-context): Fix inf-loop.
2208 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
2209
31a9ef2e
GM
22102012-02-23 Glenn Morris <rgm@gnu.org>
2211
5e6e6794 2212 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
31a9ef2e
GM
2213 (authors-obsolete-files-regexps, authors-ignored-files)
2214 (authors-ambiguous-files, authors-renamed-files-alist):
2215 Add more entries.
2216
0bd1e074
JL
22172012-02-23 Juri Linkov <juri@jurta.org>
2218
2219 * isearch.el (isearch-occur): Sync interactive spec with occur's
2220 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
2221
b617673c
JL
2222 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
2223
19e9789e
JL
22242012-02-22 Juri Linkov <juri@jurta.org>
2225
2226 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
2227 (ucs-insert): Doc fix. Check for hex digits in the string.
2228 Don't display `nil' in the error message. (Bug#10857)
2229
f41ce09d
AM
22302012-02-22 Alan Mackenzie <acm@muc.de>
2231
7a71b18d 2232 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
f41ce09d 2233
ac2eceee
GM
22342012-02-22 Glenn Morris <rgm@gnu.org>
2235
2236 * ffap.el (ffap-c-path):
2237 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
2238
abd1f678
CY
22392012-02-22 Chong Yidong <cyd@gnu.org>
2240
2241 * custom.el (load-theme): Doc fix.
2242
f25aef2e
GM
22432012-02-22 Glenn Morris <rgm@gnu.org>
2244
2245 * dired-x.el (dired-guess-shell-alist-default):
2246 Remove escape sequences from nroff output. (Bug#172)
2247
5f8dc2ca
GM
22482012-02-21 Glenn Morris <rgm@gnu.org>
2249
6ff86ec4
GM
2250 * vc/emerge.el (emerge-defvar-local):
2251 Set `permanent-local' property rather than unused `preserved'.
2252
be3223a3 2253 * textmodes/picture.el (picture-delete-char): New alias.
5f8dc2ca
GM
2254 (picture-mode-map): Use it. (Bug#10860)
2255 (picture-mode): Doc fix.
2256
3fe58f4f
JB
22572012-02-21 Juanma Barranquero <lekktu@gmail.com>
2258
2259 * newcomment.el (uncomment-region-default): Remove unused binding.
2260
f9a998c3
GM
22612012-02-21 Glenn Morris <rgm@gnu.org>
2262
2263 * textmodes/picture.el (picture-motion, picture-motion-reverse)
2264 (picture-self-insert, picture-tab-chars): Doc fix.
2265 (picture-mode-map): Fix C-a, C-e.
2266
c6029348
GM
22672012-02-20 Glenn Morris <rgm@gnu.org>
2268
2269 * emacs-lisp/authors.el (authors-aliases): Add another entry.
2270
ab1ce9d7
LL
22712012-02-20 Leo Liu <sdl.web@gmail.com>
2272
2273 * icomplete.el (icomplete-completions): Check FROM arg before
2274 passing to substring (Bug#10850).
2275
0fd40f89
CY
22762012-02-19 Chong Yidong <cyd@gnu.org>
2277
2278 * comint.el: Require ansi-color.
2279 (comint-output-filter-functions): Add ansi-color-process-output.
2280
2281 * ansi-color.el: Don't set comint-output-filter-functions; it is
2282 now in the initial value defined in comint.el.
2283 (ansi-color-apply-face-function): New variable.
2284 (ansi-color-apply-on-region): Use it.
2285 (ansi-color-apply-overlay-face): New function.
2286
2287 * shell.el (shell): No need to require ansi-color.
2288 (shell-mode): Use ansi-color-apply-face-function to highlight
2289 color escapes using font-lock-face property (Bug#10835).
2290
20af2394
CY
22912012-02-19 Chong Yidong <cyd@gnu.org>
2292
2293 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
2294 mode-line formats (Bug#10839).
2295
e23a3fbe
GM
22962012-02-18 Glenn Morris <rgm@gnu.org>
2297
b474519e
GM
2298 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
2299
2300 * mail/undigest.el (unforward-rmail-message): Doc fix.
2301
e23a3fbe
GM
2302 * saveplace.el (save-place-ignore-files-regexp): Add :version.
2303
57939ff4
EZ
23042012-02-18 Eli Zaretskii <eliz@gnu.org>
2305
2306 * international/characters.el (script-list): Sync with the latest
2307 Unicode Character Database.
2308
0c23686e
AS
23092012-02-18 Andreas Schwab <schwab@linux-m68k.org>
2310
2311 * international/titdic-cnv.el: Remove duplicate coding tag.
2312 * language/cham.el: Likewise.
2313 * language/tai-viet.el: Likewise.
2314
6818b449
GM
23152012-02-18 Glenn Morris <rgm@gnu.org>
2316
2317 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
2318 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
2319 (calendar-bahai-all-holidays-flag, calendar-other-dates):
2320 * calendar/diary-lib.el (diary-abbreviated-year-flag):
2321 * calendar/holidays.el (holiday-bahai-holidays)
2322 (calendar-holidays, list-holidays):
2323 Use utf-8 Bahá'í in doc-strings, menus, etc.
2324
0311a3fc
TH
23252012-02-17 Tassilo Horn <tassilo@member.fsf.org>
2326
2327 * saveplace.el (save-place-ignore-files-regexp): New variable
2328 allowing for excluding files from saving their location of point.
2329 The default value matches the temporary commit message editing
2330 files from Git, SVN, Bazaar, and Mercurial.
2331 (save-place-to-alist): Use it.
2332
eb864a71
LM
23332012-02-17 Lawrence Mitchell <wence@gmx.li>
2334 Stefan Monnier <monnier@iro.umontreal.ca>
2335
2336 * newcomment.el (uncomment-region-default): Don't leave extra space
2337 when an arg is provided (bug#8150).
2338
ee0ce425
TZ
23392012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
2340
eb864a71 2341 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
ee0ce425 2342
95ddf442
GM
23432012-02-17 Glenn Morris <rgm@gnu.org>
2344
2345 * net/socks.el: Require network-stream. (Bug#10599)
2346
48dd1e39 23472012-02-17 Kenichi Handa <handa@m17n.org>
c406be43
KH
2348
2349 * international/charprop.el:
2350 * international/uni-name.el:
2351 * international/uni-old-name.el:
2352 * international/uni-comment.el: Regenerate.
2353
d68cd087
GM
23542012-02-16 Glenn Morris <rgm@gnu.org>
2355
2356 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
2357 Interactively in calendar buffer, give an error if not on a date.
2358
13932042
GM
23592012-02-15 Glenn Morris <rgm@gnu.org>
2360
2361 * shell.el (shell-delimiter-argument-list):
2362 Revert 2011-02-17 change. (Bug#8027)
2363
c3a70e2b
CY
23642012-02-15 Chong Yidong <cyd@gnu.org>
2365
60236b0d
CY
2366 * minibuffer.el (completion-at-point-functions): Doc fix.
2367
c3a70e2b
CY
2368 * custom.el (defcustom): Doc fix; note use of defvar.
2369
9f26dc24
GM
23702012-02-15 Glenn Morris <rgm@gnu.org>
2371
2372 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
2373 Doc fixes.
2374
6546b134
GM
23752012-02-14 Glenn Morris <rgm@gnu.org>
2376
2377 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
2378
d29b2b4c
LI
23792012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
2380
2381 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
2382 way the ports list is computed.
835bdcba
LI
2383 (smtpmail-query-smtp-server): Prompt the user for a port number if
2384 we can't connect to any of the standard ports (bug#10810).
d29b2b4c 2385
08dcdbc9
TZ
23862012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
2387
2388 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
2389
2605051a
GM
23902012-02-13 Glenn Morris <rgm@gnu.org>
2391
2392 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
2393
7ee99f32
TZ
23942012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
2395
2396 * net/gnutls.el (gnutls-trustfiles): New variable.
2397 (gnutls-negotiate): Use it.
2398
5f0af64f
LI
23992012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
2400
2401 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
2402 does its stuff if Gnus is running.
2403
c14fcc95
AM
24042012-02-13 Alan Mackenzie <acm@muc.de>
2405
2406 Fix a loop in c-set-fl-decl-start.
2407
7a71b18d 2408 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
c14fcc95
AM
2409 c-backward-syntactic-ws actually moves backwards.
2410
142b4d90
LL
24112012-02-13 Leo Liu <sdl.web@gmail.com>
2412
2413 * net/rcirc.el (rcirc-markup-attributes): Move point to the
2414 beginning so that all \C-o chars are removed.
2415
fa9958a6
TZ
24162012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
2417
dc9924b8 2418 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
fa9958a6 2419
0bc5886a
AM
24202012-02-12 Alan Mackenzie <acm@muc.de>
2421
2422 Fix infinite loop with long macros.
4d6769e1 2423 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
0bc5886a 2424
d4bd55e7
CY
24252012-02-12 Chong Yidong <cyd@gnu.org>
2426
2427 * window.el (display-buffer): Doc fix (Bug#10785).
2428
66f3fe22
GM
24292012-02-12 Glenn Morris <rgm@gnu.org>
2430
bd7da63e
GM
2431 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
2432 (x-disown-selection-internal, x-get-selection-internal):
2433 Sync docs with the xselect.c versions.
2434
66f3fe22
GM
2435 * allout-widgets.el: Add missing license notice.
2436
3e0d2fa7
GM
24372012-02-11 Glenn Morris <rgm@gnu.org>
2438
cfecdf09
GM
2439 * select.el (x-get-selection-internal, x-own-selection-internal)
2440 (x-disown-selection-internal):
2441 * x-dnd.el (x-get-selection-internal): Update declarations.
2442
6d216d7f
GM
2443 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
2444
2bed3f04
GM
2445 * window.el (window-sides-slots):
2446 * tool-bar.el (tool-bar-position):
2447 * term/xterm.el (xterm-extra-capabilities):
2448 * ses.el (ses-self-reference-early-detection):
2449 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
2450 (verilog-auto-wire-type)
2451 (verilog-auto-delete-trailing-whitespace)
2452 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
2453 (verilog-auto-tieoff-declaration):
2454 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
2455 (sql-oracle-statement-starters, sql-oracle-scan-on):
2456 * progmodes/prolog.el (prolog-align-comments-flag)
2457 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
2458 (prolog-left-indent-regexp, prolog-paren-indent-p)
2459 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
2460 (prolog-types, prolog-mode-specificators)
2461 (prolog-determinism-specificators, prolog-directives)
2462 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
2463 (prolog-electric-dot-flag)
2464 (prolog-electric-dot-full-predicate-template)
2465 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
2466 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
2467 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
2468 (prolog-program-switches, prolog-prompt-regexp)
2469 (prolog-debug-on-string, prolog-debug-off-string)
2470 (prolog-trace-on-string, prolog-trace-off-string)
2471 (prolog-zip-on-string, prolog-zip-off-string)
2472 (prolog-use-standard-consult-compile-method-flag)
2473 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
2474 (prolog-imenu-max-lines, prolog-info-predicate-index)
2475 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
2476 (prolog-char-quote-workaround):
2477 * progmodes/cc-vars.el (c-defun-tactic):
2478 * net/tramp.el (tramp-encoding-command-interactive)
2479 (tramp-local-end-of-line):
2480 * net/soap-client.el (soap-client):
2481 * net/netrc.el (netrc-file):
2482 * net/gnutls.el (gnutls):
2483 * minibuffer.el (completion-category-overrides)
2484 (completion-cycle-threshold)
2485 (completion-pcm-complete-word-inserts-delimiters):
2486 * man.el (Man-name-local-regexp):
2487 * mail/feedmail.el (feedmail-display-full-frame):
2488 * international/characters.el (glyphless-char-display-control):
2489 * eshell/em-ls.el (eshell-ls-date-format):
2490 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
2491 (lisp-lambda-list-keyword-parameter-indentation)
2492 (lisp-lambda-list-keyword-parameter-alignment):
2493 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
2494 * dired-x.el (dired-omit-verbose):
2495 * cus-theme.el (custom-theme-allow-multiple-selections):
2496 * calc/calc.el (calc-highlight-selections-with-faces)
2497 (calc-lu-field-reference, calc-lu-power-reference)
2498 (calc-note-threshold):
2499 * battery.el (battery-mode-line-limit):
2500 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
2501 (archive-7z-update):
2502 * allout.el (allout-prefixed-keybindings)
2503 (allout-unprefixed-keybindings)
2504 (allout-inhibit-auto-fill-on-headline)
2505 (allout-flattened-numbering-abbreviation):
2506 * allout-widgets.el (allout-widgets-auto-activation)
2507 (allout-widgets-icons-dark-subdir)
2508 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
2509 (allout-widgets-theme-dark-background)
2510 (allout-widgets-theme-light-background)
2511 (allout-widgets-item-image-properties-emacs)
2512 (allout-widgets-item-image-properties-xemacs)
2513 (allout-widgets-run-unit-tests-on-load)
2514 (allout-widgets-time-decoration-activity)
2515 (allout-widgets-hook-error-post-time)
2516 (allout-widgets-track-decoration):
2517 Add missing :version tags to new defcustoms and defgroups.
2518
5fec1b8e
GM
2519 * progmodes/sql.el (sql-ansi-statement-starters)
2520 (sql-oracle-statement-starters): Add custom type.
2521
3e0d2fa7
GM
2522 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
2523 (prolog-system-version): Give it a type.
2524
90b671e2
EZ
25252012-02-11 Eli Zaretskii <eliz@gnu.org>
2526
2527 * term/pc-win.el (x-select-text, x-selection-owner-p)
2528 (x-own-selection-internal, x-disown-selection-internal)
2529 (x-get-selection-internal): Sync doc strings and argument lists
2530 with xselect.c, common-win.el and x-win.el. (Bug#10783)
2531
5eac0c02
LL
25322012-02-11 Leo Liu <sdl.web@gmail.com>
2533
2534 * progmodes/python.el (python-end-of-statement): Fix infinite
2535 loop. (Bug#10788)
2536
f82cb659
GM
25372012-02-10 Glenn Morris <rgm@gnu.org>
2538
2539 * international/mule-cmds.el (unify-8859-on-encoding-mode)
2540 (unify-8859-on-decoding-mode): Properly mark as obsolete.
2541
cc26d239
LI
25422012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
2543
2544 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
2545 about SMTP before checking the From header.
2546
91027d08 2547 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
cc26d239
LI
2548 into own function for reuse by emacsbug.el.
2549
1be3ca5a
LL
25502012-02-10 Leo Liu <sdl.web@gmail.com>
2551
2552 * subr.el (condition-case-unless-debug): Rename from
2553 condition-case-no-debug. All callers changed.
2554 (with-demoted-errors): Fix caller.
2555
2556 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
2557 * nxml/rng-valid.el (rng-do-some-validation):
2558 * emacs-lisp/package.el (package-refresh-contents)
2559 (package-menu-execute):
2560 * desktop.el (desktop-create-buffer):
91027d08 2561 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
1be3ca5a 2562
b011fbfe
GM
25632012-02-10 Glenn Morris <rgm@gnu.org>
2564
b2096d72
GM
2565 * textmodes/bibtex.el:
2566 Add missing :version tags for new/changed defcustoms.
2567
b011fbfe
GM
2568 * files.el (remote-file-name-inhibit-cache): Doc fixes.
2569
4c7e65bf
LI
25702012-02-09 Lars Ingebrigtsen <larsi@rusty>
2571
2572 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
2573 (smtpmail-via-smtp): Use it, or fall back on the From address.
2574 (smtpmail-send-it): Ditto.
2575
f3934f6f
SM
25762012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
2577
2578 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
2579 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
2580 (byte-compile-tmp-var): New const.
2581 (byte-compile-defvar): Use it to minimize .elc size.
2582 Just use `defvar' rather than simulate it (bug#10761).
2583
a075a2c5
GM
25842012-02-09 Glenn Morris <rgm@gnu.org>
2585
cf3aa21b
GM
2586 * files.el (rename-uniquely): Doc fix. (Bug#3806)
2587
354998cd
GM
2588 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
2589 Add :version tags.
2590
dc9924b8
SM
2591 * progmodes/compile.el (compilation-error-screen-columns)
2592 (compilation-first-column, compilation-filter-start): Doc fixes.
83274125 2593
dab3703d
GM
2594 * vc/log-view.el (log-view-toggle-entry-display):
2595 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
2596
3f88cd72
GM
2597 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
2598 (report-emacs-bug-can-use-xdg-email):
2599 (report-emacs-bug-insert-to-mailer): Doc fixes.
2600 (report-emacs-bug): Message fix.
2601
d95b247d
GM
2602 * net/browse-url.el (browse-url-can-use-xdg-open)
2603 (browse-url-xdg-open): Doc fixes.
2604
a075a2c5
GM
2605 * electric.el (electric-indent-mode, electric-pair-mode)
2606 (electric-layout-rules, electric-layout-mode): Doc fixes.
2607 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
2608
ffb6157e
MR
26092012-02-08 Martin Rudalics <rudalics@gmx.at>
2610
2611 * server.el (server-unselect-display): Don't inadvertently kill
2612 the current buffer. (Bug#10729)
2613
e1ac4066
GM
26142012-02-08 Glenn Morris <rgm@gnu.org>
2615
34e8a2da
GM
2616 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
2617 (sql-list-table): Doc fixes.
2618
b4ac6e8c
GM
2619 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
2620 Comment out (does nothing).
2621
e1ac4066
GM
2622 * completion.el (dynamic-completion-mode):
2623 * dirtrack.el (dirtrack-debug-mode):
2624 * electric.el (electric-layout-mode):
2625 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
2626 * face-remap.el (text-scale-mode, buffer-face-mode):
2627 * iimage.el (iimage-mode):
2628 * image-mode.el (image-transform-mode):
2629 * minibuffer.el (completion-in-region-mode):
2630 * scroll-lock.el (scroll-lock-mode):
2631 * simple.el (next-error-follow-minor-mode):
2632 * tar-mode.el (tar-subfile-mode):
2633 * tooltip.el (tooltip-mode):
2634 * vcursor.el (vcursor-use-vcursor-map):
2635 * wid-browse.el (widget-minor-mode):
2636 * emulation/tpu-edt.el (tpu-edt-mode):
2637 * emulation/tpu-extras.el (tpu-cursor-free-mode):
2638 * international/iso-ascii.el (iso-ascii-mode):
2639 * language/thai-util.el (thai-word-mode):
2640 * mail/supercite.el (sc-minor-mode):
2641 * net/goto-addr.el (goto-address-mode):
2642 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
2643 * progmodes/cwarn.el (cwarn-mode):
2644 * progmodes/flymake.el (flymake-mode):
2645 * progmodes/glasses.el (glasses-mode):
2646 * progmodes/hideshow.el (hs-minor-mode):
2647 * progmodes/pascal.el (pascal-outline-mode):
2648 * textmodes/enriched.el (enriched-mode):
2649 * vc/smerge-mode.el (smerge-mode):
2650 Doc fixes (minor mode argument).
2651
5e0d957f
EZ
26522012-02-07 Eli Zaretskii <eliz@gnu.org>
2653
2654 * ls-lisp.el (ls-lisp-sanitize): New function.
2655 (ls-lisp-insert-directory): Use it to fix or remove any elements
2656 in file-alist with missing attributes. (Bug#4673)
2657
98d7371e
AM
26582012-02-07 Alan Mackenzie <acm@muc.de>
2659
2660 Fix spurious recognition of c-in-knr-argdecl.
2661
2662 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
2663 putative K&R region.
2664
667ced3a
AM
26652012-02-07 Alan Mackenzie <acm@muc.de>
2666
eb864a71
LM
2667 * progmodes/cc-engine.el (c-forward-objc-directive):
2668 Prevent looping in "#pragma mark @implementation".
667ced3a 2669
5b77774d
MA
26702012-02-07 Michael Albinus <michael.albinus@gmx.de>
2671
2672 * notifications.el (notifications-on-closed-signal): Make `reason'
2673 optional. (Bug#10744)
2674
af008560
GM
26752012-02-07 Glenn Morris <rgm@gnu.org>
2676
60d47423
GM
2677 * emacs-lisp/easy-mmode.el (define-minor-mode):
2678 Doc fixes for the macro and the mode it defines.
2679
dd605cc4
GM
2680 * image.el (imagemagick-types-inhibit): Doc fix.
2681
af008560
GM
2682 * cus-start.el (imagemagick-render-type): Add it.
2683
5cc59a37
LI
26842012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
2685
4d6769e1
JB
2686 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
2687 Set the default at load time, too, so that `font-lock-fontify-buffer'
2688 can be called without setting up the entire mode first. This fixes
2689 a bug in `mm-inline-text' with C MIME parts.
5cc59a37 2690
9a6dd747
CY
26912012-02-06 Chong Yidong <cyd@gnu.org>
2692
2d16b285
CY
2693 * simple.el (list-processes--refresh): Delete exited processes
2694 (Bug#8094).
2695
171e9b6e
CY
2696 * comint.el (comint-next-prompt): next-single-char-property-change
2697 and prev-single-char-property-change never return nil (Bug#8657).
2698
9a6dd747
CY
2699 * custom.el (defcustom): Doc fix (Bug#9711).
2700
aa4589a7
CY
27012012-02-05 Chong Yidong <cyd@gnu.org>
2702
5c2a252f
CY
2703 * cus-edit.el (custom-variable-reset-backup): Quote the value
2704 before storing it in the customized-value property (Bug#6712).
4aab9006 2705 (custom-display): Add a customization type tag.
983b9602 2706 (custom-buffer-create-internal): Improve tooltip message.
5c2a252f 2707
aa4589a7
CY
2708 * wid-edit.el (widget-field-value-get): New optional arg to
2709 suppress trailing whitespace truncation.
2710 (character): Use it (Bug#2689).
2711
1ff980ae
AS
27122012-02-05 Andreas Schwab <schwab@linux-m68k.org>
2713
2714 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
2715 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
2716
03988c98
CY
27172012-02-05 Chong Yidong <cyd@gnu.org>
2718
eeb6cc88
CY
2719 * cus-edit.el (custom-variable-value-create): For mismatched
2720 types, show the current value (Bug#7600).
2721
03988c98
CY
2722 * custom.el (defcustom): Doc fix.
2723
f8cdeef0
GM
27242012-02-05 Glenn Morris <rgm@gnu.org>
2725
2726 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
2727
0696d255
JB
27282012-02-05 Juanma Barranquero <lekktu@gmail.com>
2729
2730 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
2731 (pp-buffer): Use `ignore-errors', `looking-at-p'.
2732 (pp-last-sexp): Use `looking-at-p'.
2733
34c99998
GM
27342012-02-04 Glenn Morris <rgm@gnu.org>
2735
8f05da42
GM
2736 * files.el (revert-buffer):
2737 Doc fix (mention revert-buffer-in-progress-p).
2738
f160676e
GM
2739 * emacs-lisp/ert-x.el (ert-simulate-command):
2740 Check deferred-action-list (which is obsolete) is bound.
2741
c7291ad9
GM
2742 * subr.el (with-wrapper-hook): Doc fixes.
2743
34c99998
GM
2744 * simple.el (filter-buffer-substring-functions)
2745 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
2746
6283a7d3
LL
27472012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
2748
2749 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
2750 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
2751
e96e3013
LL
27522012-02-04 Leo Liu <sdl.web@gmail.com>
2753
2754 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
2755
8ded50f2
GM
27562012-02-04 Glenn Morris <rgm@gnu.org>
2757
82ff1d13
GM
2758 * image.el (image-extension-data): Add obsolete alias.
2759
987a0a16
GM
2760 * isearch.el (isearch-update): Doc fix.
2761
ea32ef46
GM
2762 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
2763
8ded50f2
GM
2764 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
2765
eea14f31
GM
27662012-02-03 Glenn Morris <rgm@gnu.org>
2767
2768 * image.el (image-animated-p): Doc fix. Use image-animated-types.
2769 (image-animate-timeout): Doc fix.
2770
2771 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
2772
12f381b7
GM
27732012-02-02 Glenn Morris <rgm@gnu.org>
2774
953cebf5
GM
2775 * server.el (server-auth-dir): Doc fix.
2776 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
2777
12f381b7
GM
2778 * subr.el (run-mode-hooks): Doc fix.
2779
953a8c3b
JL
27802012-02-02 Juri Linkov <juri@jurta.org>
2781
2782 * image-mode.el (image-toggle-display-image): Remove tautological
2783 `major-mode' from the `derived-mode-p' test.
2784
c5d3843c
KH
27852012-02-02 Kenichi Handa <handa@m17n.org>
2786
9f6e692e 2787 * composite.el (compose-region): Cancel previous change.
c5d3843c 2788
159462d4 27892012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
2790
2791 * composite.el (compose-region, compose-string): Signal error for
2792 a null string component (Bug#6988).
2793
9f562668
CY
27942012-02-01 Chong Yidong <cyd@gnu.org>
2795
e2cef717
CY
2796 * view.el (view-buffer-other-window, view-buffer-other-frame):
2797 Handle special modes like view-buffer (Bug#10650).
2798 (view-buffer): Simplify.
2799
9f562668
CY
2800 * frame.el (set-frame-font): Tweak meaning of third argument.
2801
9f6e692e
JB
2802 * dynamic-setting.el (font-setting-change-default-font):
2803 Use set-frame-font (Bug#9982).
9f562668 2804
781acb9f
GM
28052012-02-01 Glenn Morris <rgm@gnu.org>
2806
6035be52
GM
2807 * progmodes/compile.el (compilation-internal-error-properties):
2808 Respect compilation-first-column in the "*compilation*" buffer.
2809
781acb9f
GM
2810 * emacs-lisp/easy-mmode.el (define-minor-mode):
2811 Relax :variable's test for a named function.
2812
abbceb00
AM
28132012-01-31 Alan Mackenzie <acm@muc.de>
2814
2815 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
2816 off by one error.
2817
fce3fdeb
CY
28182012-01-31 Chong Yidong <cyd@gnu.org>
2819
2820 * frame.el (set-frame-font): New arg ALL-FRAMES.
2821
2822 * menu-bar.el (menu-set-font): Use set-frame-font.
2823
2824 * faces.el (face-spec-reset-face): Don't apply unspecified
2825 attribute values to the default face.
2826
47893581
JB
28272012-01-31 Juanma Barranquero <lekktu@gmail.com>
2828
2829 * progmodes/cwarn.el (cwarn): Remove dead link.
2830 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
2831 Remove * from defcustom docstrings.
2832 (turn-on-cwarn-mode): Make obsolete.
2833 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
2834 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
2835
e58e988a
GM
28362012-01-31 Glenn Morris <rgm@gnu.org>
2837
60dc2671 2838 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6c9b47ae 2839 Fix :variable handling of mode a symbol not equal to modefun.
60dc2671 2840 Allow named functions to be used as the cdr of :variable.
e58e988a 2841
7a3f511d
GM
28422012-01-30 Glenn Morris <rgm@gnu.org>
2843
2844 * emacs-lisp/authors.el (authors-fixed-entries):
2845 Remove reference to deleted file rnewspost.el.
2846
cb882333
JB
28472012-01-29 Juanma Barranquero <lekktu@gmail.com>
2848
2849 * window.el (window-with-parameter): Remove unused variable `windows'.
2850 (window--side-check): Remove unused variable `code'.
2851 (window--resize-siblings): Remove unused variable `first'.
2852 (adjust-window-trailing-edge): Remove unused variable `failed'.
2853 (window-deletable-p, window--delete): Remove unused variable `buffer'.
2854 Use `let', not `let*'.
2855 (balance-windows-2): Remove unused variable `found'.
2856 (window--state-put-2): Remove unused variable `splits'.
2857 (window-state-put): Remove unused variable `selected'.
2858 (same-window-p): Use `string-match-p'.
2859 (display-buffer-assq-regexp): Remove unused variable `value'.
2860 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
2861 Mark argument ALIST as ignored.
2862 (pop-to-buffer): Remove unused variable `old-window'.
2863
907201af
EZ
28642012-01-29 Eli Zaretskii <eliz@gnu.org>
2865
2866 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
2867 and .lzma compressed files.
2868
ea162670
CY
28692012-01-29 Chong Yidong <cyd@gnu.org>
2870
5b95ee8a
CY
2871 * frame.el (window-system-default-frame-alist): Doc fix.
2872
ea162670
CY
2873 * dynamic-setting.el (font-setting-change-default-font): Don't
2874 change the default face if SET-FONT argument is non-nil (Bug#9982).
2875
d6e6f4b1
SB
28762012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
2877
2878 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
2879
0f29fa41 28802012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6b25e4e2
SE
2881
2882 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
2883 breakpoints in files outside current directory (Bug#6098).
2884
db174434
CY
28852012-01-29 Chong Yidong <cyd@gnu.org>
2886
6b25e4e2
SE
2887 * progmodes/python.el: Require ansi-color at top-level.
2888
6df6ae42
JB
2889 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
2890 Define and use in Emacs Lisp mode (Bug#9360).
db174434
CY
2891 (lisp-mode-abbrev-table): Add doc.
2892 (lisp-mode-variables): Don't set local-abbrev-table.
2893 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
2894
e70ee681
RW
28952012-01-28 Roland Winkler <winkler@gnu.org>
2896
2897 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
2898
ace88aa2
RW
28992012-01-28 Roland Winkler <winkler@gnu.org>
2900
2901 * textmodes/bibtex.el (bibtex-entry-alist): New function.
2902 (bibtex-set-dialect): Use it. Either set global values of
2903 dialect-dependent variables or bind these variables buffer-locally
2904 (Bug#10254).
2905 (bibtex-mode): Call bibtex-set-dialect via
2906 hack-local-variables-hook.
eb864a71
LM
2907 (bibtex-dialect): Update docstring.
2908 Add safe-local-variable predicate.
ace88aa2
RW
2909 (bibtex-entry-alist, bibtex-field-alist): Initialize via
2910 bibtex-set-dialect.
2911 (bibtex-mode-map): Define menu for each dialect.
2912 (bibtex-entry): Fix docstring.
2913
93376c5b
CY
29142012-01-28 Chong Yidong <cyd@gnu.org>
2915
2916 * eshell/esh-arg.el (eshell-quote-argument): New function.
2917
2918 * eshell/esh-ext.el (eshell-invoke-batch-file):
2919 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
2920 first arg to eshell-parse-command (Bug#10523).
2921
4372494f
DA
29222012-01-28 Drew Adams <drew.adams@oracle.com>
2923
2924 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
2925 `default-directory' is non-nil.
2926
4d4ec1f8
EZ
29272012-01-28 Eli Zaretskii <eliz@gnu.org>
2928
2929 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
2930 line that displays system-configuration-options. (Bug#9924)
2931
7c188927
DA
29322012-01-28 Drew Adams <drew.adams@oracle.com>
2933
2934 * descr-text.el (describe-char): Show information about POS, in
2935 addition to information about the character at POS. Improve and
2936 update the doc string. Change "code point" to "code point in
2937 charset", to avoid confusion with the character's Unicode code
2938 point shown above that. (Bug#10129)
2939
e0da685a
EZ
29402012-01-28 Eli Zaretskii <eliz@gnu.org>
2941
2942 * descr-text.el (describe-char): Show the raw character, not only
2943 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
2944 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
2945 for the reasons.
2946
70550acf
PH
29472012-01-28 Phil Hagelberg <phil@hagelb.org>
2948
eb864a71
LM
2949 * emacs-lisp/package.el (package-install):
2950 Run package-refresh-contents if there is no archive yet (Bug#9798).
70550acf 2951
0ce8e868
CY
29522012-01-28 Chong Yidong <cyd@gnu.org>
2953
cb882333
JB
2954 * emacs-lisp/package.el (package-maybe-load-descriptor):
2955 New function, split from package-maybe-load-descriptor.
0ce8e868
CY
2956 (package-maybe-load-descriptor): Use it.
2957 (package-download-transaction): Fully load required packages
2958 inside the loop, so that `require' calls work (Bug#10593).
2959 (package-install): No need to call package-initialize now.
2960
2e7f3bea
CY
29612012-01-28 Chong Yidong <cyd@gnu.org>
2962
6e9bad14
CY
2963 * simple.el (deactivate-mark): Doc fix (Bug#8614).
2964
f823b8ca
CY
2965 * tooltip.el (tooltip-mode): Doc fix.
2966 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
2967
2680c309
CY
2968 * frame.el (set-cursor-color): Doc fix (Bug#352).
2969
d7a9e63b
CY
2970 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
2971 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
2972
2e7f3bea
CY
2973 * cus-edit.el (custom-buffer-create-internal): Fix search button
2974 action (Bug#10542).
2ae01800 2975 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
2e7f3bea 2976
fc4f7a23
EW
29772012-01-27 Eduard Wiebe <usenet@pusto.de>
2978
2979 * dired.el (dired-mark-files-regexp):
2980 Include any subdirectory components. (Bug#10445)
2981
7dd37071
ML
29822012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
2983
2984 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
2985 Handle [host]:port syntax. (Bug#10533)
2986
a268160b
AH
29872012-01-27 Alex Harsanyi <harsanyi@mac.com>
2988
2989 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
2990
e43273ef
GM
29912012-01-26 Glenn Morris <rgm@gnu.org>
2992
2993 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
2994 * term.el (term-raw-escape-map): Use Control-X-prefix.
2995 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
2996
1edf595d
MR
29972012-01-25 Martin Rudalics <rudalics@gmx.at>
2998
2999 * window.el (window-state-get, window--state-get-1): Don't deal
3000 with fixed-sizeness of windows. Simplify code.
3001
fa8eafef
JC
30022012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
3003
6df6ae42
JB
3004 * window.el (window--state-get-1, window--state-put-2):
3005 Don't save and restore the mark.
fa8eafef 3006
0b21c100
CY
30072012-01-25 Chong Yidong <cyd@gnu.org>
3008
3009 * custom.el (custom-variable-p): Doc fix.
3010
5ae1a6c8
GM
30112012-01-25 Glenn Morris <rgm@gnu.org>
3012
40047858
GM
3013 * dired.el (dired-goto-file): Handle some of the more common
3014 characters that `ls -b' escapes. (Bug#10596)
3015
5ddce96c
GM
3016 * progmodes/compile.el (compilation-next-error-function):
3017 Respect compilation-first-column in the "*compilation*" buffer.
3018 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
3019
5ae1a6c8
GM
3020 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
3021
b559f1a9
GM
30222012-01-24 Glenn Morris <rgm@gnu.org>
3023
3024 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
3025
6725d21a
JD
30262012-01-24 Julien Danjou <julien@danjou.info>
3027
3028 * color.el (color-rgb-to-hsl): Fix value computing.
3029 (color-hue-to-rgb): New function.
3030 (color-hsl-to-rgb): New function.
3031 (color-clamp, color-saturate-hsl, color-saturate-name)
3032 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
3033 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
3034
70df4bbe
GM
30352012-01-24 Glenn Morris <rgm@gnu.org>
3036
3037 * vc/vc-rcs.el (vc-rcs-create-tag):
3038 * vc/vc-sccs.el (vc-sccs-create-tag):
3039 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
3040
802a2ae2
ML
30412012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
3042
3043 * eshell/esh-util.el (eshell-read-hosts-file):
3044 Skip comment lines. (Bug#10549)
3045
d7128bb1
ML
3046 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
3047
d1a5c3b4
JB
30482012-01-23 Juanma Barranquero <lekktu@gmail.com>
3049
2724d9c7
JB
3050 * subr.el (display-delayed-warnings): Doc fix.
3051 (collapse-delayed-warnings): New function to collapse identical
3052 adjacent warnings.
3053 (delayed-warnings-hook): Add it.
d1a5c3b4 3054
a5509865
MA
30552012-01-22 Michael Albinus <michael.albinus@gmx.de>
3056
3057 * net/tramp.el (tramp-action-login): Set connection property "login-as".
3058
3059 * net/tramp-cache.el (tramp-dump-connection-properties): Do not dump
3060 properties, when "login-as" is set.
3061
3062 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
3063 (tramp-default-user-alist): Don't add "pscp".
3064 (tramp-do-copy-or-rename-file-out-of-band): Use connection
3065 property "login-as", if set. (Bug#10530)
3066
cc6d5805
MA
30672012-01-21 Michael Albinus <michael.albinus@gmx.de>
3068
3069 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
3070 "plink1" and "psftp". (Bug#10530)
3071
30722012-01-21 Kenichi Handa <handa@m17n.org>
71784361
KH
3073
3074 * international/mule-cmds.el (prefer-coding-system): Show a
3075 warning message if the default value of file-name-coding-system
3076 was not changed.
3077
f0960428
JC
30782012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
3079
cb882333
JB
3080 * windmove.el (windmove-reference-loc):
3081 Fix windmove-reference-loc miscalculation.
f0960428 3082
dd6f2a63
JB
30832012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
3084
3085 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
3086 default unit.
3087
7b447e9b
GM
30882012-01-21 Glenn Morris <rgm@gnu.org>
3089
117a9ea1
GM
3090 * international/mule.el (auto-coding-alist): Add .tbz.
3091
7b447e9b
GM
3092 * files.el (local-enable-local-variables): Doc fix.
3093 (inhibit-local-variables-regexps): Rename from
3094 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
3095 Doc fix. Add some extensions from auto-coding-alist.
3096 (inhibit-local-variables-suffixes):
3097 Rename from inhibit-first-line-modes-suffixes. Doc fix.
3098 (inhibit-local-variables-p):
3099 New function, extracted from set-auto-mode-1.
3100 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
3101 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
3102 (hack-local-variables): Doc fix. Make the mode-only case
3103 respect enable-local-variables and friends.
3104 Respect inhibit-local-variables-regexps for file-locals, but
3105 not for directory-locals.
3106 (set-visited-file-name):
3107 Take account of inhibit-local-variables-regexps.
3108 Whether it applies may change as the file name is changed.
3109 * jka-cmpr-hook.el (jka-compr-install):
3110 * jka-compr.el (jka-compr-uninstall):
3111 Update for inhibit-first-line-modes-suffixes name change.
3112
dd6e3cdd
MR
31132012-01-20 Martin Rudalics <rudalics@gmx.at>
3114
3115 * help-macro.el (make-help-screen): Temporarily restore original
3116 binding for minor-mode-map-alist (Bug#10454).
3117
0d0deb38
JD
31182012-01-19 Julien Danjou <julien@danjou.info>
3119
3120 * color.el (color-name-to-rgb): Use the white color to find the max
3121 color component value and return correctly computed values.
3122 (color-name-to-rgb): Add missing float conversion for max value.
3123
34a02f46
MR
31242012-01-19 Martin Rudalics <rudalics@gmx.at>
3125
3126 * window.el (window--state-get-1, window-state-get): Do not use
eb864a71
LM
3127 special state value for window-persistent-parameters.
3128 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
34a02f46
MR
3129 (window--state-put-2): Reset all window parameters to nil before
3130 assigning values of persistent parameters.
3131
606c44c4
AM
31322012-01-18 Alan Mackenzie <acm@muc.de>
3133
3134 Eliminate sluggishness and hangs in fontification of "semicolon
3135 deserts".
3136
cb882333
JB
3137 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
3138 Change value 10000 -> 3000.
606c44c4
AM
3139 (c-state-safe-place): Reformulate so it doesn't stack up an
3140 infinite number of wrong entries in c-state-nonlit-pos-cache.
3141 (c-determine-limit-get-base, c-determine-limit): New functions to
3142 determine backward search limits disregarding literals.
3143 (c-find-decl-spots): Amend commenting.
3144 (c-cheap-inside-bracelist-p): New function which detects "={".
3145
3146 * progmodes/cc-fonts.el
3147 (c-make-font-lock-BO-decl-search-function): Give a limit to a
3148 backward search.
3149 (c-font-lock-declarations): Fix an occurrence of point being
3150 undefined. Check additionally for point being in a bracelist or
3151 near a macro invocation without a semicolon so as to avoid a
3152 fruitless time consuming search for a declarator. Give a more
3153 precise search limit for declarators using the new
3154 c-determine-limit.
3155
f3860cea
GM
31562012-01-18 Glenn Morris <rgm@gnu.org>
3157
3158 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
3159 (set-auto-mode): Doc fixes.
3160
1db03b16
GM
31612012-01-17 Glenn Morris <rgm@gnu.org>
3162
0e6038be
GM
3163 * isearch.el (search-nonincremental-instead): Fix doc typo.
3164
1db03b16
GM
3165 * dired.el (dired-insert-directory): Handle newlines in directory name.
3166 (dired-build-subdir-alist): Unescape newlines in directory name.
3167
4cb0aa75
MA
31682012-01-17 Michael Albinus <michael.albinus@gmx.de>
3169
3170 * net/tramp.el (tramp-local-end-of-line): New defcustom.
3171 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
3172 (tramp-action-terminal): Use it. (Bug#10530)
3173
1d00653d
SM
31742012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
3175
3176 * minibuffer.el (completion--replace): Strip properties (bug#10062).
3177
6a6ee00d
MR
31782012-01-16 Martin Rudalics <rudalics@gmx.at>
3179
3180 * window.el (window-state-ignored-parameters): Remove variable.
3181 (window--state-get-1): Rename argument MARKERS to IGNORE.
3182 Handle persistent window parameters. Make copy of clone-of
3183 parameter only if requested. (Bug#10348)
3184 (window--state-put-2): Install a window parameter only if it has
3185 a non-nil value or an existing parameter shall be overwritten.
3186
97912def
MA
31872012-01-15 Michael Albinus <michael.albinus@gmx.de>
3188
3189 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
3190
688070a5
EZ
31912012-01-14 Eli Zaretskii <eliz@gnu.org>
3192
3193 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
3194 don't pass the (nil) value of `upnode' to string-match.
3195
301afadc
CY
31962012-01-14 Chong Yidong <cyd@gnu.org>
3197
3198 * startup.el (command-line): Fix X resource class for cursorColor.
04877ddb 3199 Fix values recognized by the cursorBlink resource.
301afadc 3200
9e5788aa
PE
32012012-01-14 Paul Eggert <eggert@cs.ucla.edu>
3202
3203 * epg.el (epg--make-temp-file): Avoid permission race condition
3204 when running on old Emacs versions (bug#10403).
3205
3cdb7f5a
GM
32062012-01-14 Glenn Morris <rgm@gnu.org>
3207
3208 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
3209
8c82b1b4
AM
32102012-01-13 Alan Mackenzie <acm@muc.de>
3211
3212 Fix filling for when filladapt mode is enabled.
3213
3214 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
3215 c-mask-paragraph, pass in `fill-paragraph' rather than
3216 `fill-region-as-paragraph'. (This is a reversion of a previous
3217 change.)
eb864a71
LM
3218 * progmodes/cc-mode.el (c-basic-common-init):
3219 Make fill-paragraph-handle-comment buffer local and set it to nil.
8c82b1b4 3220
e517eda4
GM
32212012-01-13 Glenn Morris <rgm@gnu.org>
3222
1498536e
GM
3223 * dired.el (dired-switches-escape-p): New function.
3224 (dired-insert-directory): Use dired-switches-escape-p.
3225 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
3226
e517eda4
GM
3227 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
3228
328f984d
GM
32292012-01-12 Glenn Morris <rgm@gnu.org>
3230
3231 * mail/sendmail.el (mail-mode): Update paragraph-separate for
3232 changes in adaptive-fill-regexp. (Bug#10276)
3233
2cc769a8
AM
32342012-01-11 Alan Mackenzie <acm@muc.de>
3235
3236 Fix Emacs bug #10463 - put `widen's around the critical spots.
3237
1d00653d 3238 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
2cc769a8
AM
3239 widen around each invocation of c-state-pp-to-literal. Remove an
3240 unused let variable.
3241
e52c37fa
GM
32422012-01-11 Glenn Morris <rgm@gnu.org>
3243
3244 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
09044622 3245 Doc fix.
e52c37fa 3246
96f8741e
CY
32472012-01-10 Chong Yidong <cyd@gnu.org>
3248
1d00653d
SM
3249 * net/network-stream.el (network-stream-open-starttls):
3250 Avoid emitting a confusing error message when the server gives a bad
96f8741e
CY
3251 response to the capability command.
3252
b09a806e
GM
32532012-01-10 Glenn Morris <rgm@gnu.org>
3254
3255 * mail/unrmail.el (unrmail): Tweak previous change.
3256
7655cb66
CY
32572012-01-09 Chong Yidong <cyd@gnu.org>
3258
3259 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
3260
9d5a8f0b
AM
32612012-01-08 Alan Mackenzie <acm@muc.de>
3262
3263 Optimise font locking in long enum definitions.
3264
3265 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
3266 arm to a cond form to handle enums.
3267 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
3268 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
3269
9a0115ab 32702012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6bb72cbd
PE
3271
3272 * files.el (move-file-to-trash): Preserve default file modes on error.
a0562b3d 3273 (Bug#10401)
6bb72cbd 3274
f186bb95
LMI
32752012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
3276
29232a68
LMI
3277 * faces.el (set-face-attribute): Clarify the meaning of the nil
3278 frame (bug#10294).
3279
4e5d086d
LMI
3280 * subr.el (with-selected-frame): Mention that the selected frame
3281 is restored (bug#9980).
3282
8e66aebe
LMI
3283 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
3284 (bug#9759).
3285
cd394be1 3286 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
f186bb95
LMI
3287 (password-read): Don't autoload unused function.
3288
adf4e762
JB
32892012-01-07 Juanma Barranquero <lekktu@gmail.com>
3290
3291 * progmodes/which-func.el (which-func-mode): Turn into a
3292 non-interactive function and mark as obsolete (bug#10428).
3293
89bd9ccd
CY
32942012-01-06 Chong Yidong <cyd@gnu.org>
3295
3296 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
3297 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
3298 functions, along with 1 and -1.
3299
4afee9d5
EZ
33002012-01-06 Eli Zaretskii <eliz@gnu.org>
3301
3302 * time.el (display-time-load-average)
3303 (display-time-default-load-average): Doc fixes. See the thread
3304 starting at
3305 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
3306 for the details.
3307
536aea70
GM
33082012-01-06 Glenn Morris <rgm@gnu.org>
3309
665ae865
GM
3310 * mail/unrmail.el (unrmail): Give an explicit error if the input file
3311 has no messages. (Bug#10377)
3312
c869783d
GM
3313 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
3314 than Info-edit. (Bug#10385)
3315
2bb4227e
GM
3316 * time.el (display-time-load-average, display-time-next-load-average):
3317 Doc fixes.
3318
7d5944b9
GM
3319 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
3320 local setting of buffer-read-only to the input buffer. (Bug#10419)
3321
536aea70
GM
3322 * calendar/calendar.el (calendar-mode):
3323 Locally set scroll-margin to 0. (Bug#10379)
3324
7dccca16
UM
33252012-01-06 Ulrich Mueller <ulm@gentoo.org>
3326
3327 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
3328
afbb7930
GM
33292012-01-05 Glenn Morris <rgm@gnu.org>
3330
3331 * eshell/em-unix.el (diff-no-select): Autoload it.
3332 (eshell/diff): Use diff-no-select. (Bug#10420)
3333
04482335
CY
33342012-01-05 Chong Yidong <cyd@gnu.org>
3335
7baca3bc
CY
3336 * shell.el (shell-dynamic-complete-functions): Revert last change.
3337 (shell-command-completion-function): New function.
3338 (shell-completion-vars): Use it to implement
3339 shell-completion-execonly (Bug#10417).
3340
04482335
CY
3341 * custom.el (enable-theme): Don't set custom-safe-themes.
3342
1d00653d
SM
3343 * cus-theme.el (custom-theme-merge-theme):
3344 Ignore custom-enabled-themes and custom-safe-themes.
04482335 3345
bb5aa5d6
MM
33462012-01-05 Michael R. Mauger <mmaug@yahoo.com>
3347
3348 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
3349 first prompt in `sql-interacive-mode'.
3350 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
04482335 3351 keywords.
6df6ae42 3352 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
bb5aa5d6
MM
3353 (sql-product-interactive): Bug fix: Set `sql-buffer' in
3354 context of original buffer. Invoke `sql-login-hook'.
3355
a7183d7c
EZ
33562012-01-04 Eli Zaretskii <eliz@gnu.org>
3357
3358 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
3359 letters in cite-prefix.
3360
a1eacd1e
LMI
33612012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3362
3363 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
3364
787cdb34
CY
33652012-01-03 Chong Yidong <cyd@gnu.org>
3366
1d00653d
SM
3367 * shell.el (shell-dynamic-complete-functions):
3368 Put pcomplete-completions-at-point, so as to try
787cdb34
CY
3369 comint-filename-completion first (Bug#10417).
3370
30710442
RS
33712012-01-02 Richard Stallman <rms@gnu.org>
3372
3373 * battery.el (battery-status-function):
3374 Detect when to use battery-yeeloong-sysfs.
3375 (battery-echo-area-format): Add string for Yeeloong.
3376 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
3377 (battery-yeeloong-sysfs): New function.
3378
f75bfc33
CY
33792012-01-02 Chong Yidong <cyd@gnu.org>
3380
3381 * dirtrack.el (dirtrack-list): Eliminate unused third element.
3382 (dirtrack): Merge code for handling relative filenames in prompt
3383 from shell-dir-cookie-watcher.
3384 (dirtrack-debug-message): New arg to avoid excess format calls.
3385
3386 * shell.el (shell-dir-cookie-re): Variable deleted.
3387 (shell-dir-cookie-watcher): Function deleted.
3388 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
3389 with dirtrack-mode.
3390
651e947e
EZ
33912012-01-01 Eli Zaretskii <eliz@gnu.org>
3392
1d00653d
SM
3393 * term/w32-win.el (dynamic-library-alist) <gnutls>:
3394 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
651e947e
EZ
3395 libgnutls-26.dll.
3396
94d4c7dc
AS
33972011-12-31 Andreas Schwab <schwab@linux-m68k.org>
3398
3399 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
3400
8d43f3cd
EZ
34012011-12-31 Eli Zaretskii <eliz@gnu.org>
3402
3403 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
3404 headers of non-MIME messages, when rmail-enable-mime is non-nil.
3405
98c8795a
MA
34062011-12-29 Michael Albinus <michael.albinus@gmx.de>
3407
3408 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
3409 also for alternative shells.
3410 (tramp-open-connection-setup-interactive-shell): Check, whether
3411 the shell is a busybox.
3412 (tramp-send-command): Don't suppress multiple prompts for
3413 busyboxes, it hurts.
3414
51281b32
CY
34152011-12-28 Chong Yidong <cyd@gnu.org>
3416
3417 * progmodes/gdb-mi.el (gdb-get-source-file-list)
3418 (gdb-get-source-file): Move mode line update to
3419 gdb-get-source-file (Bug#10087).
3420
2170cb53
CY
34212011-12-25 Chong Yidong <cyd@gnu.org>
3422
3423 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
3424 gud-gdb-marker-filter without taking it as an argument.
3425 (gud-gdb-run-command-fetch-lines): Caller changed.
3426 (gud-gdb-completion-function): New variable.
3427 (gud-gdb-completion-at-point): Use it.
3428 (gud-gdb-completions-1): Split from gud-gdb-completions.
3429
3430 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
3431 function as separate arguments.
3432 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
3433 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
3434 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
3435 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
3436 (gdb-stopped, def-gdb-auto-update-trigger)
3437 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
b81d40f0
JB
3438 (gdb-get-changed-registers, gdb-get-main-selected-frame):
3439 Callers changed.
2170cb53
CY
3440 (gud-gdbmi-completions): New function.
3441 (gdb): Use it for generating the completion table.
3442
be8b11bb
AM
34432011-12-24 Alan Mackenzie <acm@muc.de>
3444
3445 Introduce a mechanism to widen the region used in context font
1d00653d 3446 locking. Use this to protect declarations from losing their contexts.
be8b11bb 3447
1d00653d
SM
3448 * progmodes/cc-langs.el (c-before-font-lock-functions):
3449 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
b81d40f0 3450 (c-before-context-fontification-functions): New defvar, a list of
be8b11bb
AM
3451 functions to be run just before context (etc.) font locking.
3452
3453 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
b81d40f0 3454 New, functionality extracted from
be8b11bb 3455 c-neutralize-syntax-in-and-mark-CPP.
b81d40f0 3456 (c-in-after-change-fontification): New variable.
be8b11bb
AM
3457 (c-after-change): Set c-in-after-change-fontification.
3458 (c-set-fl-decl-start): Rejig its interface, so it can be called
3459 from both after-change and context fontifying.
b81d40f0
JB
3460 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
3461 New functions.
3462 (c-standard-font-lock-fontify-region-function): New variable.
3463 (c-font-lock-fontify-region): New function.
be8b11bb 3464
341cf6ac
JL
34652011-12-24 Juri Linkov <juri@jurta.org>
3466
3467 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
3468 (Bug#10348)
3469
bffcee0a
MA
34702011-12-23 Michael Albinus <michael.albinus@gmx.de>
3471
3472 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
3473 existence of source file. (Bug#10325)
3474
cb5e207c
AM
34752011-12-23 Alan Mackenzie <acm@muc.de>
3476
3477 Fix unstable fontification inside templates.
3478
b81d40f0
JB
3479 * progmodes/cc-langs.el (c-before-font-lock-functions):
3480 Newly created from the singular version. The (c c++ objc) entry now
cb5e207c
AM
3481 additionally has c-set-fl-decl-start. The other languages (apart
3482 from AWK) have that as a single entry.
3483
b81d40f0
JB
3484 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
3485 The functionality for "local" declarations has been extracted to
cb5e207c
AM
3486 c-set-fl-decl-start.
3487
b81d40f0
JB
3488 * progmodes/cc-mode.el (c-common-init, c-after-change):
3489 Changes due to pluralisation of c-before-font-lock-functions.
cb5e207c
AM
3490 (c-set-fl-decl-start): New function, extracted from
3491 c-font-lock-enclosing-decls and enhanced.
3492
60ff536c
JB
34932011-12-23 Juanma Barranquero <lekktu@gmail.com>
3494
3495 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
3496
1c4757d6
JL
34972011-12-22 Juri Linkov <juri@jurta.org>
3498
3499 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
3500
d031f2c7
CY
35012011-12-22 Chong Yidong <cyd@gnu.org>
3502
3503 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
3504
bace743a
DA
35052011-12-21 Drew Adams <drew.adams@oracle.com>
3506
3507 * files.el (file-remote-p): Fix docstring. (Bug#10319)
3508
728a1f2b
JC
35092011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
3510
3511 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
3512
0d373f73
TZ
35132011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
3514
fec0aaa4
TZ
3515 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
3516 highlighting and support. Fix up comments for capitalization.
3517 (cfengine-mode-debug): New var.
3518 (cfengine3-mode): Change the modeline indicator to "CFE3".
3519 (cfengine3-font-lock-keywords): Improve defun highlighting.
3520 (cfengine2-actions): Rename from `cfengine-actions'.
3521 (cfengine2-font-lock-keywords): Rename from
3522 `cfengine-font-lock-keywords'.
3523 (cfengine2-imenu-expression): Rename from
3524 `cfengine-imenu-expression'.
3525 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
3526 (cfengine2-beginning-of-defun): Rename from
3527 `cfengine-beginning-of-defun'.
3528 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
3529 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
3530 (cfengine2-mode): Rename from `cfengine-mode'. Change the
3531 modeline indicator to "CFE2".
3532 (cfengine-mode): Defalias to `cfengine-auto-mode'.
3533 (cfengine-mode-abbrevs): Mark obsolete.
0d373f73 3534
bc86f573
CY
35352011-12-21 Chong Yidong <cyd@gnu.org>
3536
3537 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
3538 filename argument.
3539
d45ba96b
MR
35402011-12-20 Martin Rudalics <rudalics@gmx.at>
3541
3542 * window.el (window-normalize-buffer-to-display): Remove.
3543 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
3544
a6198c90
CY
35452011-12-19 Chong Yidong <cyd@gnu.org>
3546
3547 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
3548 Don't signal an error in a predicate function; return non-nil.
3549 (vc-dir-mark-file): Move the error here.
3550 (vc-dir-mark-unmark): If acting on the region, keep going if one
3551 of the entries cannot be marked/unmarked.
3552 (vc-dir-mark-all-files): If current entry is a directory, mark
3553 only child files, as documented.
3554
34c5fb55
VB
35552011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
3556
3557 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
3558 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
3559 addition.
3560
c803b2b7
JD
35612011-12-18 Jan Djärv <jan.h.d@swipnet.se>
3562
3563 * term/ns-win.el (ns-get-selection-internal)
3564 (ns-store-selection-internal): Declare.
1154d12e
JB
3565 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
3566 Declare as obsolete.
3567 (ns-get-pasteboard, ns-paste-secondary):
3568 Use ns-get-selection-internal.
3569 (ns-set-pasteboard, ns-copy-including-secondary):
3570 Use ns-store-selection-internal.
c803b2b7 3571
9cff91f8 35722011-12-17 Chong Yidong <cyd@gnu.org>
99a289d9
CY
3573
3574 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9cff91f8 3575 (vc-deduce-fileset): Doc fix.
99a289d9 3576
f16c898a
AS
35772011-12-16 Andreas Schwab <schwab@linux-m68k.org>
3578
3579 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
3580
763237c4
SS
35812011-12-13 Sam Steingold <sds@gnu.org>
3582
3583 * man.el (Man-getpage-in-background): When running under a
3584 window-system, ignore $MANWIDTH and $COLUMNS.
3585
5fc1c122
KH
35862011-12-15 Kenichi Handa <handa@m17n.org>
3587
3588 * language/ethio-util.el: Change coding tag to utf-8-emacs.
3589 (setup-ethiopic-environment-internal): Comment out key-binding for
3590 ethio-toggle-punctuation.
3591
13d49cbb
AM
35922011-12-13 Alan Mackenzie <acm@muc.de>
3593
898169a2
AM
3594 Add the switch statement to AWK Mode.
3595
7a71b18d 3596 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
898169a2
AM
3597 "default" to the keywords regexp.
3598
7a71b18d 3599 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
898169a2 3600 expression as the rest.
1d00653d
SM
3601 (c-nonlabel-token-key): Allow string literals for AWK.
3602 Refactor for the other modes.
898169a2 3603
13d49cbb 3604 Large brace-block initialisation makes CC Mode slow: Fix.
1d00653d 3605 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
13d49cbb
AM
3606 routines. Limit backward searching in c-font-lock-enclosing.decl.
3607
3608 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
3609 pp-state and literal type in addition to the limits.
1d00653d 3610 (c-state-safe-place): New defun, extracted from c-state-literal-at.
13d49cbb 3611 (c-state-literal-at): Use the above new defun.
1d00653d
SM
3612 (c-slow-in-literal, c-fast-in-literal): Remove.
3613 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
13d49cbb
AM
3614
3615 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
3616 being in a literal. Add a limit for backward searching.
3617
3618 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
3619 c-slow-in-literal.
3620
15e0efc7
SM
36212011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
3622
3623 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
3624
454592a6
MR
36252011-12-13 Martin Rudalics <rudalics@gmx.at>
3626
3627 * window.el (delete-other-windows): Use correct frame in call to
3628 window-with-parameter.
3629
87393f26
DP
36302011-12-12 Daniel Pfeiffer <occitan@t-online.de>
3631
3632 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
3633 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
3634 (makefile-gmake-statements, makefile-makepp-statements):
3635 Use it and add new makepp keywords.
3636 (makefile-makepp-font-lock-keywords): Add new patterns.
3637 (makefile-match-function-end): Match new [...] and [[...]].
3638
11636b22
JB
36392011-12-11 Juanma Barranquero <lekktu@gmail.com>
3640
3641 * ses.el (ses-call-printer-return, ses-cell-property-get)
3642 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
3643 (ses-create-cell-variable, ses-reset-header-string)
3644 (ses-cell-set-formula, ses-repair-cell-reference-all)
3645 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
3646 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
3647 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
3648 (ses-aset-with-undo, ses-load, ses-truncate-cell)
3649 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
3650 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
3651 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
3652 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
3653 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
3654 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
3655 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
3656 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
3657
cf018193
VB
36582011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
3659
3660 * ses.el: The overall change is to add cell renaming, that is
3661 setting fancy names for cell symbols other than name matching
3662 "\\`[A-Z]+[0-9]+\\'" regexp .
3663 (ses-create-cell-variable): New defun.
3664 (ses-relocate-formula): Relocate formulas only for cells the
3665 symbols of which are not renamed, i.e. symbols whose names do not
3666 match regexp "\\`[A-Z]+[0-9]+\\'".
3667 (ses-relocate-all): Relocate values only for cells the symbols of
3668 which are not renamed.
3669 (ses-load): Create cells variables as the (ses-cell ...) are read,
3670 in order to check row col consistency with cell symbol name only
3671 for cells that are not renamed.
3672 (ses-replace-name-in-formula): New defun.
3673 (ses-rename-cell): New defun.
3674
ee957461
CY
36752011-12-11 Chong Yidong <cyd@gnu.org>
3676
3677 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
3678 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
3679
9a9e9ef0
MR
36802011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
3681
3682 * window.el (other-window): Fix docstring.
3683
92a8eba5
EZ
36842011-12-10 Eli Zaretskii <eliz@gnu.org>
3685
3686 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
1d00653d
SM
3687 `from' or `to' address before taking its substring.
3688 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
92a8eba5
EZ
3689 encoded name is chopped in the middle of the encoded string, and
3690 thus displayed encoded.
3691
e152e577
JB
36922011-12-10 Juanma Barranquero <lekktu@gmail.com>
3693
3694 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
3695
e5d84bfe
EZ
36962011-12-10 Eli Zaretskii <eliz@gnu.org>
3697
3698 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
3699 to use texinfo-update-node and commands that call it if the
3700 Texinfo file uses @node lines without next/prev/up pointers.
b8830d28 3701 Correct outdated description about texinfo-master-menu.
e5d84bfe
EZ
3702 (texinfo-all-menus-update, texinfo-master-menu)
3703 (texinfo-update-node, texinfo-every-node-update)
3704 (texinfo-multiple-files-update): Doc fix. Warn against updating
3705 all the @node lines.
3706 (texinfo-master-menu): Only call texinfo-update-node if the prefix
b8830d28
EZ
3707 argument is numeric. Explain better in the doc string what the
3708 function really does.
3709 (texinfo-insert-master-menu-list): Improve the error message
3710 displayed if there's no menu in the Top node.
3711 (Bug#2975) See also this thread:
e5d84bfe
EZ
3712 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
3713
1d84e9bb
MG
37142011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
3715
3716 * speedbar.el (speedbar-supported-extension-expressions):
3717 Add .adb and .ads, commonly used for Ada source code (bug#10256).
3718
382c953b
JB
37192011-12-09 Juanma Barranquero <lekktu@gmail.com>
3720
3721 * printing.el (pr-mode-alist):
3722 * simple.el (filter-buffer-substring-functions)
3723 (completion-list-insert-choice-function):
3724 * window.el (window-with-parameter, window-atom-root)
3725 (window-sides-slots, window-size-fixed, window-min-delta)
3726 (window-max-delta, window--resize-mini-window)
3727 (window--resize-child-windows-normal, window-tree)
3728 (delete-other-windows, quit-window, split-window)
3729 (display-buffer-record-window, special-display-buffer-names)
3730 (special-display-regexps, special-display-popup-frame)
3731 (same-window-p, split-window-sensibly)
3732 (display-buffer-overriding-action, display-buffer-alist)
3733 (display-buffer-base-action, display-buffer, switch-to-buffer)
3734 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
3735 (fit-window-to-buffer, recenter-positions)
3736 (mouse-autoselect-window-state, mouse-autoselect-window-select):
3737 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
3738 and remove unneeded backslashes in docstrings.
3739
39c9faef
SM
37402011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
3741
98449af8
SM
3742 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
3743
39c9faef
SM
3744 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
3745 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
3746 end in ".mk".
3747 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
3748 when reading the makefile (bug#10116).
3749
86ed9fdc
SM
37502011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3751
3752 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
3753 (bug#10116).
3754
5580f89d
GM
37552011-12-06 Glenn Morris <rgm@gnu.org>
3756
3757 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
3758
28d3917c
CY
37592011-12-06 Chong Yidong <cyd@gnu.org>
3760
3761 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
3762
a98edce9
JB
37632011-12-06 Juanma Barranquero <lekktu@gmail.com>
3764
3765 * textmodes/table.el (table-shorten-cell): Fix typo.
3766
e65adfac
CG
37672011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
3768
3769 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
3770
71cc0b74
EZ
37712011-12-05 Eli Zaretskii <eliz@gnu.org>
3772
3773 * descr-text.el (describe-char): Fix display of strong
3774 right-to-left characters and directional embeddings and overrides.
3775
3776 * simple.el (what-cursor-position): Fix display of codepoints of
3777 strong right-to-left characters.
3778
315bc30d
CY
37792011-12-05 Chong Yidong <cyd@gnu.org>
3780
3781 * faces.el (read-color): Doc fix.
3782
58a70b94
GM
37832011-12-05 Glenn Morris <rgm@gnu.org>
3784
3785 * align.el (align--set-marker): Add doc-string.
3786 Don't try to move something that is not a marker. (Bug#10216)
3787
5158face
GM
37882011-12-04 Glenn Morris <rgm@gnu.org>
3789
3790 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
3791 overly zealous deletion of trailing whitespace.
3792
520fca41
JB
37932011-12-04 Juanma Barranquero <lekktu@gmail.com>
3794
3795 * server.el (server-delete-client): On Windows, do not try to delete
3796 the only terminal.
3797 (server-process-filter): On Windows, treat requests for a tty frame as
3798 if they were for a GUI frame if the running server is in GUI mode.
3799
5e605a2e
GM
38002011-12-03 Glenn Morris <rgm@gnu.org>
3801
3802 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
3803
5c3fe83f
SM
38042011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3805
6f5e57e7
SM
3806 * electric.el: Streamline electric-indent's hook.
3807 (electric-indent-chars): Revert to simple list.
3808 (electric-indent-functions): New var.
3809 (electric-indent-post-self-insert-function): Use it.
3810
5c3fe83f
SM
3811 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
3812 there's no inferior buffer (bug#10196).
3813 (prolog-consult-compile): Don't use toggle-read-only.
3814
6bdac736
MA
38152011-12-02 Michael Albinus <michael.albinus@gmx.de>
3816
3817 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
3818 interrupt. (Bug#10187)
3819
6131ba7f
SM
38202011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
3821
99c79fee
SM
3822 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
3823 (bug#9160).
3824
6131ba7f
SM
3825 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
3826 (bug#10191).
3827
cb0a02ea
JL
38282011-12-02 Juri Linkov <juri@jurta.org>
3829
3830 * info.el (Info-search): Display "end of manual" when Isearch
3831 reaches the end of single-file Info manual. (Bug#9918)
3832
66e0570c
EZ
38332011-12-02 Eli Zaretskii <eliz@gnu.org>
3834
3835 * isearch.el (isearch-message-prefix): Run the input method part
3836 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
3837
02b16839
JL
38382011-12-02 Juri Linkov <juri@jurta.org>
3839
3840 * isearch.el (isearch-occur): Use `word-search-regexp' for
3841 `isearch-word'.
3842 (isearch-search-and-update): Add condition for `isearch-word' and
3843 call `word-search-regexp'. (Bug#10145)
3844
0b950688
GM
38452011-12-01 Glenn Morris <rgm@gnu.org>
3846
3847 * eshell/em-hist.el (eshell-hist-initialize):
3848 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 3849 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 3850
9505c3c7
SM
38512011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
3852
3853 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
3854
1bbe96b2 38552011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 3856
a1beca85
SM
3857 * progmodes/verilog-mode.el (verilog-pretty-expr):
3858 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
3859 verilog, such as += *= and the like.
3860 (verilog-assignment-operator-re): Regular expression to find the
3861 assigment operator in a verilog assignment.
3862 (verilog-assignment-operation-re): Regular expression to find an
3863 assignment statement for pretty-expr.
3864 (verilog-in-attribute-p): Query returns true if point is in an
3865 attribute context; used to skip these for expression line up from
3866 pretty-expr.
3867 (verilog-in-parameter-p): Query returns true if point is in an
3868 parameter definition context; used to skip these for expression
3869 line up from pretty-expr.
3870 (verilog-in-parenthesis-p): Query returns true if point is in a
3871 parenthetical expression, specifically ( ) but not [ ] or { };
3872 used by pretty-expr.
3873 (verilog-just-one-space): If there is no space, don't add one.
3874 (verilog-get-lineup-indent-2): Specifically skip just attribute
3875 contexts for expression lineup, rather than skipping all
3876 parenthetical expressions.
3877 (verilog-calculate-indent): Fix comment, and fix indent.
3878 (verilog-do-indent): Indent declarations in lists (suggested by
3879 Joachim Lechner).
3880 (verilog-mode-abbrev-table): Populate abbrev mode with the various
3881 skeleton items.
3882 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
3883 by Alain Mellan).
3884
1bbe96b2 38852011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
3886
3887 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
3888 parameters with embedded comments. Reported by Ray Stevens.
3889 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
3890 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
3891 Reported by Tim Holt.
3892 (verilog-auto): Fix AUTOing a upper module then AUTOing module
3893 instantiated by upper module causing wrong expansion until AUTOed a
3894 second time. Reported by K C Buckenmaier.
3895 (verilog-diff-auto): Fix showing .* as a difference when
3896 `verilog-auto-star-save' off. Reported by Dan Dever.
3897 (verilog-auto-reset, verilog-read-always-signals)
3898 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
3899 temporary signals in reset list if
3900 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
3901 style to each signal's assignment type, bug381.
3902 Reported by Thomas Esposito.
6288f0ca
WS
3903 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
3904 (verilog-uvm-statement-re): Support UVM indentation and
3905 highlighting, with old OVM keywords only.
a1beca85 3906 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
1d00653d
SM
3907 Support AUTOTIEOFF creating non-wire data types.
3908 Suggested by Jonathan Greenlaw.
6288f0ca
WS
3909 (verilog-auto-insert-lisp, verilog-delete-to-paren)
3910 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
3911 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
3912 (verilog-read-sub-decls, verilog-read-sub-decls-line):
3913 Fix mismatching parenthesis inside commented out code when deleting
382c953b 3914 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6288f0ca
WS
3915 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
3916 non-numeric vector width. Reported by Alex Reed.
3917 (verilog-auto-ascii-enum): Add "onehot" option to work around not
382c953b 3918 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
3919 (verilog-auto-delete-trailing-whitespace):
3920 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
3921 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
3922 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
3923 Fix verilog-scan-cache corruption when running user AUTO expansion
3924 hooks that call indentation routines.
3925 (verilog-simplify-range-expression): Fix typo ignoring lower case
3926 identifiers.
3927 (verilog-delete-auto): Fix delete-autos to also remove user created
3928 automatics, as long as they start with AUTO.
3929 (verilog-batch-diff-auto, verilog-diff-auto)
3930 (verilog-diff-function): Add `verilog-diff-auto' and bind to
3931 "C-c?" to report differences in AUTO expansion, ignoring spaces.
3932 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
3933 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
3934 (verilog-re-search-forward-quick, verilog-syntax-ppss):
3935 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
3936 is disabled and its cache will get corrupt, causing AUTOS not to
3937 expand. Instead use only -quick functions.
3938 (verilog-scan-region): Fix scanning over escaped quotes.
3939 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
3940 (verilog-re-search-backward-quick)
3941 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
3942 related functions now ignore strings, to fix misparsing of strings
3943 with magic comments embedded in them.
a1beca85
SM
3944 (verilog-read-auto-template):
3945 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
3946 Reported by Brad Dobbie.
3947 (verilog-read-auto-template):
3948 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 3949 Reported by Brad Dobbie.
6288f0ca
WS
3950 (verilog-auto-inst, verilog-auto-inst-param)
3951 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
3952 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
3953 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
3954 debugging templates without merge conflicts, bug357.
3955 Reported by Brad Dobbie.
3956 (verilog-read-auto-template):
3957 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
3958 Reported by Brad Dobbie.
3959 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
3960 abbrevs so user won't be asked to save.
3961 (verilog-read-auto-lisp-present): Fix to start at beginning of
3962 buffer in case called outside of verilog-auto.
3963 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
3964 to "X-2". Reported by Matthew Myers.
3965 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
3966 all inputs from module templates. Reported by Leith Johnson.
3967 (verilog-module-inside-filename-p): Fix locating programs as with
3968 modules.
3969 (verilog-auto-inst-port): Fix vl-width expressions when using
3970 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
3971 (verilog-decls-get-regs, verilog-decls-get-signals,
3972 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
3973 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
3974 verilog-read-decls): Combine reg and wire structures into one var
3975 structure to represent SystemVerilog concepts.
3976 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
3977 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
3978 (verilog-auto-wire-type, verilog-insert-definition):
3979 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
3980 SystemVerilog "logic" keyword instead of "wire"/"reg".
3981 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
3982 to declares outputs that also have assignments (presumably in an
a1beca85
SM
3983 ifdef or generate if so there's not a driver conflict).
3984 Reported by Matthew Myers.
3985 (verilog-auto-declare-nettype, verilog-insert-definition):
3986 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
3987 `default_nettype none. Reported by Julian Gorfajn.
3988 (verilog-read-always-signals-recurse, verilog-read-decls)
3989 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
3990 malformed end statement, bug325. Reported by Joshua Wise and
3991 Andrew Drake.
3992 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
3993 (verilog-inst-comment-re): Fix not deleting Interfaced comment
1d00653d
SM
3994 when expanding .* in interfaces, bug320.
3995 Reported by Pierre-David Pfister.
6288f0ca 3996 (verilog-read-module-name): Fix import statements between module
1d00653d
SM
3997 name and open parenthesis, bug317.
3998 Reported by Pierre-David Pfister.
6288f0ca
WS
3999 (verilog-simplify-range-expression): Fix simplification of
4000 multiplications inside AUTOWIRE connections, bug303.
4001 (verilog-auto-inst-port): Support parameter expansion in
4002 multidimensional arrays.
4003 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
4004 after "assert property". Reported by Julian Gorfajn.
4005 (verilog-simplify-range-expression): Fix "couldn't merge" errors
4006 with multiplication, bug303.
4007 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
4008 Reported by Jan Frode Lonnum.
4009
1bbe96b2
GM
40102011-11-30 Juanma Barranquero <lekktu@gmail.com>
4011
4012 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
4013 (hfy-shell-file-name, hfy-shell):
4014 * international/fontset.el (x-decompose-font-name): Fix typos.
4015
40162011-11-29 Ken Brown <kbrown@cornell.edu>
4017
4018 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
4019 (gdb-version): Remove defvar.
4020 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
4021 (gdb-gud-context-command, gdb-non-stop-handler)
4022 (gdb-current-context-command, gdb-stopped): Use it.
4023 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
4024 (gdb-non-stop-handler): Don't enable pretty-printing here.
4025 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
4026 non-stop mode. Use the following.
4027 (gdb-check-target-async): New defun.
4028 (gud-watch, gdb-stopped): Fix whitespace.
4029 (gdb-get-source-file): Don't try to display the source file if
4030 `gdb-main-file' is nil.
4031
40322011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
4033
4034 * align.el: Try to generate fewer markers (bug#10047).
4035 (align--set-marker): New macro.
4036 (align-region): Use it.
4037
c935221f
SM
40382011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
4039
4040 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
4041
e70b5064
CY
40422011-11-29 Chong Yidong <cyd@gnu.org>
4043
4044 * indent.el (indent-for-tab-command, indent-according-to-mode):
4045 Doc fix.
4046 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
4047
f3af92b7
MA
40482011-11-29 Michael Albinus <michael.albinus@gmx.de>
4049
4050 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
4051 aware of remote file names. (Bug#10124)
4052
ed472be9
CY
40532011-11-29 Chong Yidong <cyd@gnu.org>
4054
4055 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
4056
24510c22
SM
40572011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
4058
4059 * files.el (find-file): Don't use force-same-window (bug#10144).
4060 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
4061 use pop-to-buffer if the selected window can't be used.
4062 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
4063
c60c3703
EZ
40642011-11-28 Eli Zaretskii <eliz@gnu.org>
4065
4066 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
4067 special-mode-map.
4068
e95def75
CY
40692011-11-28 Chong Yidong <cyd@gnu.org>
4070
4071 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
4072
c3f1c606
NR
40732011-11-27 Nick Roberts <nickrob@snap.net.nz>
4074
4075 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
4076 gdb-get-source-file-list on gdb-create-source-file-list.
4077
00db469c
EZ
40782011-11-26 Eli Zaretskii <eliz@gnu.org>
4079
4080 * whitespace.el (whitespace-newline): Use a different foreground
4081 color for 16-color light-background displays.
4082
4ad3bc2a
CY
40832011-11-24 Chong Yidong <cyd@gnu.org>
4084
4085 * window.el (display-buffer--special-action): Doc fix.
4086
e9fce1ac
JB
40872011-11-25 Juanma Barranquero <lekktu@gmail.com>
4088
4089 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
4090 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
4091 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
4092 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
4093 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
4094 (avl-tree-stack-first):
4095 * emacs-lisp/cconv.el (cconv--analyse-use):
4096 * net/gnutls.el (gnutls-negotiate): Fix typos.
4097
cb825e5d
GM
40982011-11-24 Glenn Morris <rgm@gnu.org>
4099
3adbe224
GM
4100 * lpr.el (lpr-windows-system, lpr-lp-system):
4101 * mail/binhex.el (binhex-begin-line):
4102 * progmodes/grep.el (grep-history, grep-find-history):
4103 * textmodes/flyspell.el:
4104 * vc/pcvs-defs.el (cvs-global-menu):
4105 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
4106 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
4107 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
4108
321decc8
GM
4109 * net/tls.el: Fix case of "GnuTLS".
4110
420b63ad
GM
4111 * paths.el (rmail-file-name): Format doc-string for make-docfile.
4112
cb825e5d
GM
4113 * version.el (emacs-build-system): Give it a doc-string.
4114
a0649f08
JL
41152011-11-24 Juri Linkov <juri@jurta.org>
4116
4117 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
4118
c0bc0fd4
GM
41192011-11-24 Glenn Morris <rgm@gnu.org>
4120
4121 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
4122 if called on a non-mime message just toggle the headers. (Bug#8006)
4123
20db1522
JB
41242011-11-24 Juanma Barranquero <lekktu@gmail.com>
4125
4126 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
4127 (allout-lead-with-comment-string, allout-structure-deleted-hook)
4128 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
4129 (allout-rebullet-heading, allout-open-sibtopic)
4130 (allout-toggle-current-subtree-encryption)
4131 (allout-toggle-subtree-encryption, allout-encrypt-string)
4132 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
4133 (allout-distinctive-bullets-string, allout-auto-activation):
4134 * window.el (window-normalize-buffer-to-display):
4135 * progmodes/verilog-mode.el (verilog-batch-indent):
4136 * textmodes/bibtex.el (bibtex-field-braces-opt)
4137 (bibtex-field-strings-opt):
4138 * vc/cvs-status.el (cvs-tree-merge):
4139 Fix typos.
4140
7262a87c
MA
41412011-11-23 Michael Albinus <michael.albinus@gmx.de>
4142
4143 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
4144 `non-essential' to t, in order to avoid remote connections.
4145
283430a1
EZ
41462011-11-23 Eli Zaretskii <eliz@gnu.org>
4147
a1beca85
SM
4148 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
4149 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
4150 case-insensitively.
4151
d2992a38
ML
41522011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
4153
4154 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
4155
50419064
GM
41562011-11-23 Glenn Morris <rgm@gnu.org>
4157
da94eca1
GM
4158 * paths.el (rmail-file-name): Reformat the doc-string so that it
4159 is picked up.
4160
9aac4de2
GM
4161 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
4162 (rmail-auto-file): Ignore case in the "special" field names,
4163 as mail-fetch-field does for all others.
4164
8038d2d2
GM
4165 * mail/rmail.el (rmail-forward):
4166 * mail/rmailkwd.el (rmail-set-label):
4167 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
4168 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
4169
f3fe222a
GM
4170 * mail/rmail.el (rmail-current-message): Doc fix.
4171
50419064
GM
4172 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
4173
28109f49
SM
41742011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
4175
4176 * server.el (server-eval-and-print): Allow C-g (bug#6585).
4177
394c65f1
GM
41782011-11-22 Glenn Morris <rgm@gnu.org>
4179
4180 * mail/rmailmm.el (test-rmail-mime-handler)
4181 (test-rmail-mime-bulk-handler)
4182 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
4183
f2a0aa3a
JL
41842011-11-21 Juri Linkov <juri@jurta.org>
4185
1154d12e
JB
4186 * calc/calc.el (calc-read-key-sequence):
4187 Let-bind `input-method-function' to nil. (Bug#10018)
f2a0aa3a 4188
9c34a344
LMI
41892011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
4190
4191 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
4192 Tell the caller that the next line needs recomputation, even
4193 though it doesn't start a sexp (bug#10094).
4194
f04a3be9
SM
41952011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4196
4197 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
4198
7978747f
SM
41992011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
4200
f04a3be9
SM
4201 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
4202 Use force-same-window.
7978747f 4203
fe7a3057
JB
42042011-11-20 Juanma Barranquero <lekktu@gmail.com>
4205
4206 * descr-text.el (describe-char-unicode-data):
4207 * json.el (json-string-escape):
4208 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
4209 (Footnote-unicode, Footnote-style-p):
4210 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
4211
24901d61
CY
42122011-11-20 Chong Yidong <cyd@gnu.org>
4213
4214 * window.el (replace-buffer-in-windows): Restore interactive spec.
4215
bac7ff22
SM
42162011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
4217
24f3d7b9
SM
4218 * electric.el (electric-indent-mode): Fix last change (too optimistic).
4219
bac7ff22
SM
4220 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
4221 (byte-compile-global-not-obsolete-vars): New var.
4222 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
4223 Use it.
4224 (byte-compile-warn-obsolete): Align text with the one in *Help*.
4225
cd1181db
JB
42262011-11-20 Juanma Barranquero <lekktu@gmail.com>
4227
4228 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
4229 * progmodes/pascal.el (electric-pascal-equal):
4230 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
4231 * xml.el (xml-substitute-special): Fix typos.
4232
7fb18e9e
GM
42332011-11-20 Glenn Morris <rgm@gnu.org>
4234
4235 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
4236 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
4237 Doc fixes.
4238 (rmail-decode-mime-charset): Mark as obsolete.
4239
4240 * mail/rmailsum.el (rmail-message-regexp-p-1):
4241 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
4242 Before using mime functions, check they are set. (Bug#10077)
4243
d5a6b3ba
JL
42442011-11-19 Juri Linkov <juri@jurta.org>
4245
4246 * info.el (Info-finder-find-node): Use `package--builtins' instead
4247 of `package-alist'. Use node names formed by the pattern "Keyword "
4248 and the keyword name.
4249
e981b61f
AS
42502011-11-19 Andreas Schwab <schwab@linux-m68k.org>
4251
1d00653d 4252 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
e981b61f 4253
3ffbc301
JL
42542011-11-19 Juri Linkov <juri@jurta.org>
4255
4256 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
4257 that calls `revert-buffer' on all Info buffers. (Bug#9915)
4258 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
4259 `old-history', `old-history-forward'. Add let-binding
4260 `window-selected'. Remove calls to `kill-buffer',
4261 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
4262 before calling `Info-find-node', so `Info-find-node-2' will reread
4263 the Info file. Restore window positions only when `window-selected'
4264 is non-nil.
4265
30c62133
JL
42662011-11-19 Juri Linkov <juri@jurta.org>
4267
4268 * isearch.el (isearch-lazy-highlight-new-loop):
4269 Remove condition `(not isearch-error)'. (Bug#9918)
4270
4271 * misearch.el (multi-isearch-search-fun): Add condition
4272 `(not bound)' to ignore lazy-highlighting search.
4273 Add the search-failed message "end of multi" when the end of
4274 multi-sequence is reached. Uncapitalize the search-failed
4275 message "Repeat for next buffer".
4276
4277 * info.el (Info-search): Add the search-failed message
4278 "end of the manual" when the end of the manual is reached
4279 in Isearch mode.
4280
645ca9cf
JL
42812011-11-19 Juri Linkov <juri@jurta.org>
4282
4283 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
4284 Use non-destructive `remove' instead of `delete' because
4285 `Info-history-list' stored to `Info-isearch-initial-history-list' in
4286 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
4287
df754f66
JL
42882011-11-19 Juri Linkov <juri@jurta.org>
4289
4290 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
4291 to nil instead of binding `search-ring' and `regexp-search-ring'.
4292 (Bug#9185)
4293
0e23d96a
EZ
42942011-11-19 Eli Zaretskii <eliz@gnu.org>
4295
4296 * simple.el (line-move): Force movement by logical lines for any
4297 hscrolled window, not only when auto-hscroll-mode is on.
4298 (line-move-visual): Update doc string to that effect. (Bug#10076)
4299
8a6ccb66
AS
43002011-11-19 Andreas Schwab <schwab@linux-m68k.org>
4301
4302 * language/european.el (macintosh): Define as alias for mac-roman.
4303
49ae5b39
EZ
43042011-11-19 Eli Zaretskii <eliz@gnu.org>
4305
4306 * mail/rmailmm.el (rmail-mime-display-header)
4307 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
4308 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
4309 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
4310 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
4311 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
4312 of a raw aref.
4313 (rmail-mime-entity-segment): To get past the tagline, move forward
4314 2 more lines, to account for the 2 empty lines that precede and
4315 follow the line with the buttons.
4316 (rmail-mime-update-tagline): Move one more line, to get past the
4317 empty line that follows the buttons in the tagline. (Bug#9520)
4318
c56cad4a
MR
43192011-11-19 Martin Rudalics <rudalics@gmx.at>
4320
4321 * window.el (window-max-delta-1, window-min-delta-1)
4322 (window-min-size-1, window-state-get-1, window-state-put-1)
4323 (window-state-put-2): Use "window--" prefix.
4324
cbe71af3
SM
43252011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4326
2ad52c60
SM
4327 * emacs-lisp/smie.el: Improve warnings and conflict detection.
4328 (smie-warning-count): New var.
4329 (smie-set-prec2tab): Use it.
4330 (smie-bnf->prec2): Improve warnings. Add docstring.
4331 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
4332 (smie-bnf--set-class): New function.
4333 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
4334 corner case.
4335
6944dbc1
SM
4336 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
4337 (compilation-error-properties, compilation-move-to-column):
4338 Handle compilation-first-column while in the target buffer.
4339
c400c4d7
SM
4340 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
4341 Don't hardcode point-min==1.
4342
6dbe3e96
SM
4343 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
4344 (eshell-rewrite-for-command): Remove workaround.
4345 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
4346 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
4347 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
4348
cbe71af3
SM
4349 * files-x.el (modify-file-local-variable): Obey commenting conventions.
4350
a8e1496d
GM
43512011-11-17 Glenn Morris <rgm@gnu.org>
4352
4353 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
4354 Ignore buffer-local generated-autoload-file if it is the same
4355 as the global value. (Bug#10049)
4356
df85d315
JB
43572011-11-17 Juanma Barranquero <lekktu@gmail.com>
4358
4359 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
4360 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
4361 (reftex-toc-previous-heading, reftex-toc-max-level)
4362 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
4363 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
4364 (reftex-toc-do-promote, reftex-toc-promote-prepare)
4365 (reftex-toc-promote-action, reftex-toc-extract-section-number)
4366 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
4367 (reftex-toc-rename-label, reftex-toc-visit-location)
4368 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
4369 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
4370 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
4371 leaving "*toc*" only for references to the buffer.
4372
a0c2d0ae
MR
43732011-11-17 Martin Rudalics <rudalics@gmx.at>
4374
4375 * window.el (window-resize, delete-window, split-window):
4376 Replace window-splits by window-combination-resize.
1d00653d 4377 * cus-start.el (window-splits): Replace by window-combination-resize.
a0c2d0ae 4378
35c0bac8
GM
43792011-11-17 Glenn Morris <rgm@gnu.org>
4380
4381 * progmodes/sh-script.el (sh-font-lock-keywords-var):
4382 Make bash entry derive from sh entry, not shell entry.
4383
d0c8fc8a
MA
43842011-11-16 Michael Albinus <michael.albinus@gmx.de>
4385
d0c8fc8a
MA
4386 * net/tramp-cache.el (tramp-flush-file-property): Flush also
4387 properties of linked files. (Bug#9879)
4388
7262a87c
MA
4389 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
4390 local file name.
4391
7877f373
JB
43922011-11-16 Juanma Barranquero <lekktu@gmail.com>
4393
4394 * menu-bar.el (menu-bar-file-menu):
4395 * printing.el (pr-ps-utility):
4396 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
4397 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
4398 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
4399 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
4400 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
4401 (icalendar--convert-cyclic-to-ical)
4402 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
4403 (icalendar--convert-ical-to-diary)
4404 (icalendar--convert-recurring-to-diary)
4405 (icalendar--convert-non-recurring-all-day-to-diary)
4406 (icalendar-import-format-sample):
4407 * progmodes/idlw-shell.el (idlwave-shell-mode):
4408 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
4409 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
4410 (vhdl-ps-print-init): Fix typos.
4411
10649b82
KM
44122011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
4413
9d0cfcd6
GM
4414 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
4415 FSF and collapse date sequence, obscure author/maintainer email address
4416 better, remove extra version line, track relocation of author's webpage.
10649b82 4417
9d0cfcd6
GM
4418 * progmodes/python.el (python-pdbtrack-input-prompt)
4419 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
4420 regular python pdb prompts. Adjustments shamelessly taken exactly as
4421 suggested in EmacsWiki page (tiny change):
4422 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 4423
58179cce
JB
44242011-11-16 Juanma Barranquero <lekktu@gmail.com>
4425
4426 * expand.el (expand-pos, expand-index, expand-point):
4427 Remove redundant info from docstring.
4428 (expand-add-abbrevs): Doc fix.
4429 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
4430 (expand-sample-perl-mode-expand-list): Fix typos.
4431
4432 * net/dbus.el (dbus-event-member-name):
4433 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
4434 * term/pc-win.el (msdos-create-frame-with-faces):
4435 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
4436
b6f67890
MR
44372011-11-16 Martin Rudalics <rudalics@gmx.at>
4438
4439 * window.el (split-window, window-state-get-1)
4440 (window-state-put-1, window-state-put-2): Rename occurrences of
4441 window-nest to window-combination-limit.
1d00653d 4442 * cus-start.el (window-nest): Rename to window-combination-limit.
b6f67890 4443
ce7ddba0
CY
44442011-11-16 Chong Yidong <cyd@gnu.org>
4445
4446 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
4447 regexp (Bug#10033).
4448
3ae704f4
SM
44492011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4450
4451 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
4452 `completing-read' will remove *Completions* and will preserve
4453 current-buffer for us.
4454 (tmm-add-prompt): Users of *Completions* will always (re)set its
4455 major mode.
4456 (tmm-old-comp-map): Remove.
4457
6ad1cdde
GM
44582011-11-16 Glenn Morris <rgm@gnu.org>
4459
4460 * mail/rmailedit.el: Require rmailmm when compiling.
4461 (rmail-old-mime-state): New declaration.
4462 (rmail-edit-current-message): If editing a mime message,
4463 edit the "raw" message from the mbox buffer.
4464 (rmail-cease-edit): Handle mime messages. (Bug#9840)
4465
d20faa20
GM
44662011-11-15 Glenn Morris <rgm@gnu.org>
4467
4468 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
4469 which wasn't being used. Add optional arg to force given state.
4470 (rmail-mime): Add optional arg to force given state.
4471
c7015153
JB
44722011-11-15 Juanma Barranquero <lekktu@gmail.com>
4473
4474 * allout.el (allout-encryption-plaintext-sanitization-regexps):
4475 * frame.el (display-mm-dimensions-alist):
4476 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
4477 (outline-move-subtree-down):
4478 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
4479 (newsticker--treeview-do-get-node):
4480 * net/quickurl.el (quickurl-list-buffer-name):
4481 * progmodes/dcl-mode.el (dcl-mode):
4482 * progmodes/gdb-mi.el (gdb-mapcar*):
4483 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
4484
45261b50
GM
44852011-11-15 Glenn Morris <rgm@gnu.org>
4486
4487 * mail/rmail.el (rmail-file-coding-system): It's only ever used
4488 in a boolean sense, so just make it a boolean, and fix the doc.
4489 (rmail-show-mime-function, rmail-mime-feature)
4490 (rmail-require-mime-maybe): Doc fixes.
4491 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
4492
4493 * mail/rmailmm.el (rmail-show-mime): Doc fix.
4494
0d26e0b6
JB
44952011-11-15 Juanma Barranquero <lekktu@gmail.com>
4496
4497 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
4498 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
4499 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
4500 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
4501
447f30f6
GM
45022011-11-15 Glenn Morris <rgm@gnu.org>
4503
672b871d
GM
4504 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
4505 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
4506 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
4507 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
4508 (rmail-mime, rmail-show-mime): Doc fixes.
4509
f6aa5bb1
GM
4510 * term/ns-win.el (mode-line-frame-identification):
4511 Leave it alone. (Bug#10051)
4512
947cd66b
GM
4513 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
4514
447f30f6
GM
4515 * mail/rmailout.el (rmail-output-to-rmail-buffer):
4516 Handle empty buffers. (Bug#9978)
4517
0b381c7e
JB
45182011-11-14 Juanma Barranquero <lekktu@gmail.com>
4519
4520 * international/mule.el (define-charset):
4521 * mail/rmailmm.el (rmail-mime-find-header-encoding):
4522 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
4523 * progmodes/verilog-mode.el (verilog-backward-token):
4524 * textmodes/ispell.el (lookup-words):
4525 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
4526
71e027ac
GM
45272011-11-14 Glenn Morris <rgm@gnu.org>
4528
56632ce4
GM
4529 * progmodes/executable.el
4530 (executable-make-buffer-file-executable-if-script-p):
4531 Handle file-modes returning nil.
4532
40500957
GM
4533 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
4534 message - not necessary, and causes problems. (Bug#9831)
4535
071c2340
GM
4536 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
4537
d3cfca60
GM
4538 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
4539
71e027ac
GM
4540 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
4541 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
4542 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
4543
89d61221
MR
45442011-11-12 Martin Rudalics <rudalics@gmx.at>
4545
4546 * window.el (window-resize, delete-window): Use window-splits
4547 variable instead of function.
4548 (window-state-get-1, window-state-put-2, window-state-put):
4549 Don't deal with windows' splits status.
4550
98282f6f
GM
45512011-11-12 Glenn Morris <rgm@gnu.org>
4552
4553 * apropos.el (apropos-do-all, apropos-library, apropos-value)
4554 (apropos-documentation): Doc fixes.
4555
40a8bdf6
JB
45562011-11-11 Juanma Barranquero <lekktu@gmail.com>
4557
4558 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
4559 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
4560
65bd19ff
SM
45612011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4562
4563 * electric.el (electric-indent-post-self-insert-function): Make it
4564 possible for a char to only indent in some circumstances.
4565 (electric-indent-mode): Simplify.
4566
54f9154c
MR
45672011-11-11 Martin Rudalics <rudalics@gmx.at>
4568
4569 * window.el (windows-with-parameter): Remove unused function.
4570 (windows-at-side): Rename to window-at-side-list.
4571 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
4572 (window-side-check, window-size-ignore, window-size-fixed-1)
4573 (window-in-direction-2): Prefix with "window--".
4574 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 4575
68cbc58b
GM
45762011-11-11 Glenn Morris <rgm@gnu.org>
4577
4578 * subr.el (eval-after-load): If FILE is already loaded,
4579 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
4580
b2621720
GM
45812011-11-10 Glenn Morris <rgm@gnu.org>
4582
9a4de110
GM
4583 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
4584 Call svn via vc-svn-command rather than vc-do-command.
4585 (vc-svn-command): Add --non-interactive. (Bug#9993)
4586 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
4587
b2621720
GM
4588 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4589 Add toggle-read-only. (Bug#7292)
4590 * files.el (toggle-read-only): Mention that it should only
4591 be used interactively. (Bug#10006)
4592
1dce7193
SM
45932011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4594
d9ac1a1e
SM
4595 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4596 Adjust regexp for OCaml warnings.
4597
0c325082
SM
4598 * electric.el (electric-pair-post-self-insert-function): Let user
4599 turn it off buffer-locally (bug#9932).
4600
90132c14
SM
4601 * progmodes/python.el (python-beginning-of-statement):
4602 Rewrite (bug#2703).
4603
1dce7193
SM
4604 * progmodes/compile.el: Better handle TABs (bug#9749).
4605 (compilation-internal-error-properties)
4606 (compilation-next-error-function): Obey the target buffer's
4607 compilation-error-screen-columns.
4608
c4e7c63a
JB
46092011-11-09 Juanma Barranquero <lekktu@gmail.com>
4610
4611 * progmodes/meta-mode.el: Remove obsolete comments.
4612 (meta-right-comment-regexp, meta-ignore-comment-regexp):
4613 Fix typos in docstrings.
4614
2cffd681
MR
46152011-11-09 Martin Rudalics <rudalics@gmx.at>
4616
4617 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 4618 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
4619 (window--resizable): New function. Make all callers of
4620 window-resizable call window--resizable instead.
4621 (window-resizable): Rewrite in terms of window--resizable.
4622
0edcba87
GM
46232011-11-08 Glenn Morris <rgm@gnu.org>
4624
4625 * progmodes/delphi.el (delphi-mode-syntax-table):
4626 Let define-derived-mode define a proper syntax table. (Bug#9994)
4627
4b0d61e3
SM
46282011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4629
4630 * window.el: Stay away from defsubst.
4631 (window-list-no-nils): Remove.
4632 (window-state-get-1, window-state-get): Use backquote instead.
4633
cd394be1 46342011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
fcbcac2e 4635
4b0d61e3 4636 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 4637 Fix incorrect use of default argument in `completing-read'.
4638
e1c2c6f2
MR
46392011-11-08 Martin Rudalics <rudalics@gmx.at>
4640
4641 * window.el (display-buffer-function, special-display-function):
4642 Mention display-buffer-record-window but do not mention
4643 help-setup parameter in doc-strings.
b3f4a882 4644 (window-min-delta): Fix doc-string typo.
e1c2c6f2 4645
105216ed
CY
46462011-11-08 Chong Yidong <cyd@gnu.org>
4647
4648 * window.el (window-total-height, window-total-width): Doc fix.
4649 (window-body-size): Move from C.
4650 (window-body-height, window-body-width): Move to C.
4651
0a9f9ab5
SM
46522011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4653
4654 * window.el: Make special-display like display-buffer-alist (bug#9532).
4655 (display-buffer--special-action): New function, morphed
4656 from display-buffer--special.
4657 (display-buffer): Use it to handle special-display-buffers at higher
4658 priority (just after display-buffer-alist).
4659 (display-buffer-fallback-action, display-buffer--other-frame-action)
4660 (pop-to-buffer-same-window): Remove display-buffer--special.
4661
a769dd15
GM
46622011-11-07 Glenn Morris <rgm@gnu.org>
4663
4664 * calendar/cal-menu.el (cal-menu-set-date-title):
4665 Do nothing if not in a calendar. (Bug#9976)
4666
05a61ee3
SM
46672011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
4668
4669 * files.el (find-file): Always use selected-window.
4670
be7f5545
MR
46712011-11-07 Martin Rudalics <rudalics@gmx.at>
4672
4673 * window.el (window-combinations): Make WINDOW argument
4674 mandatory. Rewrite doc-string.
4675 (walk-window-subtree, window-atom-check, window-min-delta)
4676 (window-max-delta, window--resize-this-window)
4677 (window--resize-root-window-vertically, window-tree)
4678 (balance-windows, window-state-put): Rewrite doc-strings as to
4679 not mention the term "subwindow".
4680 (window--resize-subwindows-skip-p): Rename to
4681 window--resize-child-windows-skip-p.
4682 (window--resize-subwindows-normal): Rename to
4683 window--resize-child-windows-normal.
4684 (window--resize-subwindows): Rename to
4685 window--resize-child-windows.
4686 (window-or-subwindow-p): Rename to window--in-subtree-p.
4687
3c6702ef
ML
46882011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
4689
4690 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
4691 Ensure that mbox format messages end in two newlines (Bug#9974).
4692
49745b39
CY
46932011-11-06 Chong Yidong <cyd@gnu.org>
4694
4695 * window.el (window-combination-p): Function deleted; its
4696 side-effect is not used in any existing code.
4697 (window-combinations, window-combined-p): Call window-*-child
4698 directly.
4699
24300f5f
CY
47002011-11-05 Chong Yidong <cyd@gnu.org>
4701
4702 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
4703 (window-size-ignore, window-state-get): Callers changed.
4704 (window-normalize-window): Rename from window-normalize-any-window.
4705 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 4706 (window-normalize-live-window): Delete.
447f16b8
CY
4707 (window-combination-p, window-combined-p, window-combinations)
4708 (walk-window-subtree, window-atom-root, window-min-size)
4709 (window-sizable, window-sizable-p, window-size-fixed-p)
4710 (window-min-delta, window-max-delta, window-resizable)
4711 (window-resizable-p, window-full-height-p, window-full-width-p)
4712 (window-current-scroll-bars, window-point-1, set-window-point-1)
4713 (window-at-side-p, window-in-direction, window-resize)
4714 (adjust-window-trailing-edge, maximize-window, minimize-window)
4715 (window-deletable-p, delete-window, delete-other-windows)
4716 (record-window-buffer, unrecord-window-buffer)
4717 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
4718 (quit-window, split-window, window-state-put)
4719 (set-window-text-height, fit-window-to-buffer)
4720 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 4721
89bd5ee1
EZ
47222011-11-04 Eli Zaretskii <eliz@gnu.org>
4723
53479029
EZ
4724 * mail/rmail.el (rmail-simplified-subject): Decode subject with
4725 rfc2047-decode-string.
4726 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
4727 warnings.
4728
89bd5ee1
EZ
4729 * window.el (window-body-height, window-body-width): Mention in
4730 the doc string that the return values are in frame's canonical
4731 units. (Bug#9949)
4732
bd17fdee
AM
47332011-11-03 Alan Mackenzie <acm@muc.de>
4734
4735 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
4736 change in cc-engine.el.
4737
acc825c5
SM
47382011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
4739
4740 * window.el (switch-to-buffer): Use `force-same-window' interactively.
4741
1885e5b8
MR
47422011-11-02 Martin Rudalics <rudalics@gmx.at>
4743
4744 * window.el (quit-window): Call unrecord-window-buffer after
4745 showing another buffer in the window. (Bug#9937)
acc825c5 4746 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 4747
ebe06da9
JB
47482011-11-02 Juanma Barranquero <lekktu@gmail.com>
4749
4750 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
4751 Accept status with more than 9 shelves. (Bug#9935)
4752 Reported by Colin D Bennett <colin@gibibit.com>.
4753
4ee88440
MR
47542011-11-01 Martin Rudalics <rudalics@gmx.at>
4755
4756 * help.el (with-help-window): Don't reference
4757 temp-buffer-show-specifiers in doc-string.
4758
08e1d82c
AS
47592011-10-31 Andreas Schwab <schwab@linux-m68k.org>
4760
4761 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
4762 menu-item.
4763
84bd6e9e
VJL
47642011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4765
4766 * whitespace.el: New version 13.2.2.
4767 (whitespace-newline-mode): Disable properly. Reported by Sarah
4768 <EmacsWiki>.
4769
dba0634a
UJ
47702011-10-30 Ulf Jasper <ulf.jasper@web.de>
4771
4772 * net/newst-treeview.el: Remove "Time-stamp".
4773 (newsticker--group-manage-orphan-feeds): Do not call
4774 newsticker--treeview-tree-update.
db22a3c2
JB
4775 (newsticker-treeview-update, newsticker-treeview):
4776 Call newsticker--treeview-tree-update if necessary.
dba0634a 4777
3d8daefe
MR
47782011-10-30 Martin Rudalics <rudalics@gmx.at>
4779
4780 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
4781 (window-iso-combinations): Remove "iso-" infix.
4782 Suggested by Chong Yidong.
3d8daefe
MR
4783 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
4784 (window-max-delta-1, window-resize, window--resize-siblings)
4785 (window--resize-this-window, adjust-window-trailing-edge)
4786 (split-window, balance-windows-1)
4787 (shrink-window-if-larger-than-buffer):
4788 * calendar/calendar.el (calendar-generate-window):
db22a3c2 4789 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 4790
1bc4c3ae
SM
47912011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
4792
4793 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
4794 in place (bug#9907).
4795 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
4796 (eshell-rewrite-if-command, eshell-rewrite-for-command)
4797 (eshell-structure-basic-command, eshell-rewrite-while-command)
4798 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
4799 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
4800 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
4801 (eshell-do-pipelines-synchronously, eshell-eval-command):
4802 Use backquotes and prefer setq to set.
4803 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
4804 (eshell-macrop): Use functionp.
c1e2f5fa 4805 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 4806
30b65d9c
CY
48072011-10-30 Chong Yidong <cyd@gnu.org>
4808
4809 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
4810 instead of set-mark (Bug#9810).
4811
2d197ffb
CY
48122011-10-30 Chong Yidong <cyd@gnu.org>
4813
4814 * window.el (split-window-below, split-window-right): Rename from
4815 split-window-above-each-other and split-window-side-by-side
4816 respectively. All callers changed.
4817 (split-window-sensibly, split-window-sensibly): Use them.
4818 (split-window-keep-point): Doc fix.
4819
4820 * isearch.el: Add isearch-scroll property to split-window-below
4821 and split-window-right.
4822
4823 * follow.el (follow-mode):
4824 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
4825 * progmodes/ada-xref.el (ada-gdb-application):
4826 * emulation/vip.el (vip-buffer-in-two-windows):
4827 * image-dired.el (image-dired-dired-with-window-configuration):
4828 * dired-x.el (dired-do-find-marked-files):
4829 * dired.el (dired-pop-to-buffer):
4830 * bs.el (bs--show-with-configuration):
4831 * vc/emerge.el (emerge-setup-windows):
4832 * textmodes/two-column.el (2C-two-columns):
4833 * textmodes/reftex-toc.el (reftex-toc):
4834 * progmodes/gdb-mi.el (gdb-setup-windows):
4835 * progmodes/fortran.el (fortran-window-create):
4836 * net/newst-treeview.el (newsticker--treeview-window-init):
4837 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
4838 * emulation/tpu-edt.el (tpu-gold-map):
4839 * emulation/crisp.el (crisp-mode-map):
4840 * calendar/calendar.el (calendar-basic-setup): Callers changed.
4841
38bb2ca8
CY
48422011-10-29 Chong Yidong <cyd@gnu.org>
4843
aa4de341
CY
4844 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
4845
e1eb5385
CY
4846 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
4847
5d2ece3c
CY
4848 * textmodes/flyspell.el (flyspell-word): Fix char offset for
4849 forged Ispell output (Bug#7904).
4850
38bb2ca8
CY
4851 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
4852
d0af9f77
SM
48532011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
4854
4855 * doc-view.el: Avoid ugly errors about not finding nil.
4856 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
4857 (doc-view-dvipdf-program, doc-view-unoconv-program)
4858 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
4859 Avoid nil or absolute file name as default value.
4860 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
4861
52bedd34
AM
48622011-10-28 Alan Mackenzie <acm@muc.de>
4863
db22a3c2 4864 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 4865
7e43cfa5
AM
48662011-10-28 Alan Mackenzie <acm@muc.de>
4867
4868 Amend the handling of c-beginning/end-of-defun in nested declaration
4869 scopes.
4870
52bedd34
AM
4871 * progmodes/cc-vars.el (c-defun-tactic): Move here from
4872 cc-langs.el. Change it to a defcustom.
7e43cfa5 4873
52bedd34
AM
4874 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
4875 cc-vars.el.
7e43cfa5 4876
d0af9f77
SM
4877 * progmodes/cc-engine.el (c-beginning-of-statement-1):
4878 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 4879
52bedd34 4880 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 4881 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
4882 (c-widen-to-enclosing-decl-scope): New function.
4883 (c-while-widening-to-decl-block): New macro.
4884 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
4885 outward for defun boundaries, and correspondingly change symbol
4886 `respect-enclosure' to `go-outward'.
4887 (c-declaration-limits): Change algorithm to report only the "innermost"
4888 defun's boundaries.
4889
1a2ce9ee
DD
48902011-10-28 Deniz Dogan <deniz@dogan.se>
4891
4892 * net/rcirc.el (rcirc-mode): Use hard newlines.
4893
bc97a826
AM
48942011-10-28 Alan Mackenzie <acm@muc.de>
4895
4896 Amend to indent and fontify macros "which include their own semicolon"
4897 correctly, using the "virtual semicolon" mechanism.
4898
52bedd34 4899 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 4900
d0af9f77 4901 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 4902 Recode to scan one line at a time rather than having \n and \r
58179cce 4903 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 4904 (c-forward-label): Amend for virtual semicolons.
58179cce 4905 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 4906
52bedd34
AM
4907 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
4908 of the new C macros.
bc97a826 4909
52bedd34 4910 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
4911 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
4912 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
4913 (c-opt-cpp-macro-define): Make into a full language variable.
4914 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
4915 AWK Mode (including \n, \r) removed, no longer needed.
4916
d0af9f77
SM
4917 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
4918 Invoke c-make-macro-with-semi-re.
bc97a826 4919
52bedd34
AM
4920 * progmodes/cc-vars.el (c-macro-with-semi-re):
4921 (c-macro-names-with-semicolon): New variables.
58179cce 4922 (c-make-macro-with-semi-re): New function.
bc97a826 4923
7a6c0941
SM
49242011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
4925
4926 * vc/log-edit.el: Fill empty field rather than adding new one.
4927 (log-edit-add-field): New function.
4928 (log-edit-insert-changelog): Use it.
4929
b0c4cdcf
ML
49302011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
4931
4932 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
4933
ee1f1da9
SM
49342011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
4935
4936 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
4937 (gdb--check-interpreter): New function.
4938 (gdb): Use it.
4939
51bc5f8b
GM
49402011-10-27 Glenn Morris <rgm@gnu.org>
4941
416a2c45
GM
4942 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
4943 (least-positive-float, least-negative-float)
4944 (least-positive-normalized-float, least-negative-normalized-float)
4945 (float-epsilon, float-negative-epsilon):
4946 Remove unnecessary declarations.
4947
4948 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
4949 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
4950 (least-positive-float, least-negative-float)
4951 (least-positive-normalized-float, least-negative-normalized-float)
4952 (float-epsilon, float-negative-epsilon): Add doc-strings,
4953 based on those in cl.texi.
4954
51bc5f8b
GM
4955 * files.el (set-visited-file-name): If the major-mode changed,
4956 reload the local variables. (Bug#9796)
4957
15de15c6
CY
49582011-10-27 Chong Yidong <cyd@gnu.org>
4959
4960 * subr.el (change-major-mode-after-body-hook): New hook.
4961 (run-mode-hooks): Run it.
4962
ee1f1da9
SM
4963 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
4964 Use change-major-mode-before-body-hook.
15de15c6
CY
4965
4966 * simple.el (fundamental-mode):
4967 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
4968 change introducing fundamental-mode-hook.
4969
5430d399
JB
49702011-10-26 Juanma Barranquero <lekktu@gmail.com>
4971
acc825c5 4972 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 4973
ad74a69e
MA
49742011-10-26 Michael Albinus <michael.albinus@gmx.de>
4975
4976 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 4977 tramp.el explicitly. (Bug#7583)
ad74a69e 4978
71d4c2a5
SM
49792011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
4980
4981 * progmodes/octave-mod.el:
4982 * progmodes/octave-inf.el: Update maintainer.
4983
b1f6fa26
CY
49842011-10-26 Chong Yidong <cyd@gnu.org>
4985
4986 * subr.el (with-wrapper-hook): Rewrite doc.
4987
3f04efd6
MA
49882011-10-25 Michael Albinus <michael.albinus@gmx.de>
4989
4990 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 4991 filenames "/method:foo:". (Bug#9793)
3f04efd6 4992
410488d3
SM
49932011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
4994
4995 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
4996 (bug#9865).
4997
c1ebb47e
GM
49982011-10-24 Glenn Morris <rgm@gnu.org>
4999
5000 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
5001
7f5c46c7
MA
50022011-10-24 Michael Albinus <michael.albinus@gmx.de>
5003
5004 * notifications.el: Add the requirement of a running D-Bus session
5005 bus to the Commentary.
5006
db2440b6
JL
50072011-10-24 Juri Linkov <juri@jurta.org>
5008
5009 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
5010 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
5011 (Bug#9364)
5012
feecf435
JL
50132011-10-24 Juri Linkov <juri@jurta.org>
5014
5015 * info.el (Info-following-node-name-re): Add newline to the list
5016 of allowed characters for leading space. (Bug#9824)
5017
a3839de2
SM
50182011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5019
acc825c5
SM
5020 * progmodes/octave-inf.el (inferior-octave-mode-map):
5021 Fix C-c C-h binding.
a3839de2
SM
5022 * progmodes/octave-mod.el (octave-help): Remove.
5023
09388e76
MA
50242011-10-23 Michael Albinus <michael.albinus@gmx.de>
5025
5026 Sync with Tramp 2.2.3.
5027
5028 * net/tramp-cache.el (top): Pacify byte-compiler using
5029 `init-file-user' and `site-run-file'.
5030
5031 * net/trampver.el: Update release number.
5032
86c60681
CY
50332011-10-23 Chong Yidong <cyd@gnu.org>
5034
5035 * files.el (toggle-read-only): Remove obsolete comment about
5036 version control.
5037
5038 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
5039 for toggle-read-only. Note that this hasn't called vc-next-action
5040 since 2008-05-02, though it wasn't documented at the time.
5041
a3839de2
SM
5042 * vc/ediff-init.el (ediff-toggle-read-only-function):
5043 Use toggle-read-only.
86c60681 5044
cd5495ff
AM
50452011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
5046
5047 Fix bug #9560, sporadic wrong indentation; improve instrumentation
5048 of c-parse-state.
5049
00b77525 5050 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 5051 correct faulty logical expression.
cd5495ff
AM
5052 (c-parse-state-state, c-record-parse-state-state):
5053 (c-replay-parse-state-state): New defvar/defuns.
5054 (c-debug-parse-state): Use new functions.
5055
42ee24ed
MR
50562011-10-22 Martin Rudalics <rudalics@gmx.at>
5057
5058 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 5059 last fix. Use window-in-direction correctly.
42ee24ed 5060
a7dee7e7
CY
50612011-10-21 Chong Yidong <cyd@gnu.org>
5062
5063 * progmodes/idlwave.el (idlwave-mode):
5064 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
5065 require-final-newline; that's done in prog-mode.
5066 Suggested by Stefan Monnier.
a7dee7e7 5067
e07b9a6d
MR
50682011-10-21 Martin Rudalics <rudalics@gmx.at>
5069
5070 * mouse.el (mouse-drag-window-above)
5071 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
5072 (mouse-drag-mode-line-1, mouse-drag-header-line)
5073 (mouse-drag-vertical-line-rightward-window): Remove.
5074 (mouse-drag-line): New function.
5075 (mouse-drag-mode-line, mouse-drag-header-line)
5076 (mouse-drag-vertical-line): Call mouse-drag-line.
5077 * window.el (window-at-side-p, windows-at-side): New functions.
5078
7e1361d9
UM
50792011-10-21 Ulrich Mueller <ulm@gentoo.org>
5080
5081 * tar-mode.el (tar-grind-file-mode):
5082 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
5083
30fcaf3a
CY
50842011-10-21 Chong Yidong <cyd@gnu.org>
5085
5086 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
5087 * progmodes/vera-mode.el (vera-mode):
5088 Use mode-require-final-newline.
30fcaf3a 5089
516eddb0
GM
50902011-10-20 Glenn Morris <rgm@gnu.org>
5091
db22a3c2 5092 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 5093
10d5f513
CS
50942011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
5095
5096 * emulation/cua-base.el (cua-set-mark): Fix case of string.
5097
ac6c8639
CY
50982011-10-20 Chong Yidong <cyd@gnu.org>
5099
5100 * emulation/cua-base.el (cua-mode):
5101 * mail/footnote.el (footnote-mode):
5102 * mail/mailabbrev.el (mail-abbrevs-mode):
5103 * net/xesam.el (xesam-minor-mode):
5104 * progmodes/bug-reference.el (bug-reference-mode):
5105 * progmodes/cap-words.el (capitalized-words-mode):
5106 * progmodes/compile.el (compilation-minor-mode)
5107 (compilation-shell-minor-mode):
5108 * progmodes/gud.el (gud-tooltip-mode):
5109 * progmodes/hideif.el (hide-ifdef-mode):
5110 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
5111 * progmodes/subword.el (subword-mode):
5112 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
5113 * progmodes/which-func.el (which-function-mode):
5114 * term/tvi970.el (tvi970-set-keypad-mode):
5115 * term/vt100.el (vt100-wide-mode):
5116 * textmodes/flyspell.el (flyspell-mode):
5117 * textmodes/ispell.el (ispell-minor-mode):
5118 * textmodes/nroff-mode.el (nroff-electric-mode):
5119 * textmodes/paragraphs.el (use-hard-newlines):
5120 * textmodes/refill.el (refill-mode):
5121 * textmodes/reftex.el (reftex-mode):
5122 * textmodes/rst.el (rst-minor-mode):
5123 * textmodes/sgml-mode.el (html-autoview-mode)
5124 (sgml-electric-tag-pair-mode):
5125 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
5126 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
5127 * emulation/crisp.el (crisp-mode):
5128 * emacs-lisp/eldoc.el (eldoc-mode):
5129 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
5130 minor mode behavior.
5131
aa42ab43
JL
51322011-10-19 Juri Linkov <juri@jurta.org>
5133
5134 * descr-text.el (describe-char): Add #x2010 and #x2011 to
5135 the list of hard-coded chars with escape-glyph face.
5136
89400f1d
SM
51372011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5138
5139 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
5140
305c07f6
MA
51412011-10-19 Michael Albinus <michael.albinus@gmx.de>
5142
5143 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
5144 running process.
5145
13754b54
GM
51462011-10-19 Glenn Morris <rgm@gnu.org>
5147
5148 * vc/vc-bzr.el (vc-bzr-after-dir-status):
5149 Ignore ignored files. (Bug#9726)
5150
06e21633
CY
51512011-10-19 Chong Yidong <cyd@gnu.org>
5152
5153 Doc fix for minor modes, stating that an omitted argument enables
5154 the mode unconditionally when called from Lisp.
5155
5156 * abbrev.el (abbrev-mode):
5157 * allout.el (allout-mode):
5158 * autoinsert.el (auto-insert-mode):
5159 * autoarg.el (autoarg-mode, autoarg-kp-mode):
5160 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
5161 (global-auto-revert-mode):
5162 * battery.el (display-battery-mode):
5163 * composite.el (global-auto-composition-mode)
5164 (auto-composition-mode):
5165 * delsel.el (delete-selection-mode):
5166 * desktop.el (desktop-save-mode):
5167 * dired-x.el (dired-omit-mode):
5168 * dirtrack.el (dirtrack-mode):
5169 * doc-view.el (doc-view-minor-mode):
5170 * double.el (double-mode):
5171 * electric.el (electric-indent-mode, electric-pair-mode):
5172 * emacs-lock.el (emacs-lock-mode):
5173 * epa-hook.el (auto-encryption-mode):
5174 * follow.el (follow-mode):
5175 * font-core.el (font-lock-mode):
5176 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
5177 * help.el (temp-buffer-resize-mode):
5178 * hilit-chg.el (highlight-changes-mode)
5179 (highlight-changes-visible-mode):
5180 * hi-lock.el (hi-lock-mode):
5181 * hl-line.el (hl-line-mode, global-hl-line-mode):
5182 * icomplete.el (icomplete-mode):
5183 * ido.el (ido-everywhere):
5184 * image-file.el (auto-image-file-mode):
5185 * image-mode.el (image-minor-mode):
5186 * iswitchb.el (iswitchb-mode):
5187 * jka-cmpr-hook.el (auto-compression-mode):
5188 * linum.el (linum-mode):
5189 * longlines.el (longlines-mode):
5190 * master.el (master-mode):
5191 * mb-depth.el (minibuffer-depth-indicate-mode):
5192 * menu-bar.el (menu-bar-mode):
5193 * minibuf-eldef.el (minibuffer-electric-default-mode):
5194 * mouse-sel.el (mouse-sel-mode):
5195 * msb.el (msb-mode):
5196 * mwheel.el (mouse-wheel-mode):
5197 * outline.el (outline-minor-mode):
5198 * paren.el (show-paren-mode):
5199 * recentf.el (recentf-mode):
5200 * reveal.el (reveal-mode, global-reveal-mode):
5201 * rfn-eshadow.el (file-name-shadow-mode):
5202 * ruler-mode.el (ruler-mode):
5203 * savehist.el (savehist-mode):
5204 * scroll-all.el (scroll-all-mode):
5205 * scroll-bar.el (scroll-bar-mode):
5206 * server.el (server-mode):
5207 * shell.el (shell-dirtrack-mode):
5208 * simple.el (auto-fill-mode, transient-mark-mode)
5209 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
5210 (line-number-mode, column-number-mode, size-indication-mode)
5211 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
5212 * strokes.el (strokes-mode):
5213 * time.el (display-time-mode):
5214 * t-mouse.el (gpm-mouse-mode):
5215 * tool-bar.el (tool-bar-mode):
5216 * tooltip.el (tooltip-mode):
5217 * type-break.el (type-break-mode-line-message-mode)
5218 (type-break-query-mode):
5219 * view.el (view-mode):
5220 * whitespace.el (whitespace-mode, whitespace-newline-mode)
5221 (global-whitespace-mode, global-whitespace-newline-mode):
5222 * xt-mouse.el (xterm-mouse-mode): Doc fix.
5223
a3839de2
SM
5224 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
5225 Fix autogenerated docstring.
06e21633 5226
5214e501
JL
52272011-10-19 Juri Linkov <juri@jurta.org>
5228
5229 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
5230 by checking environment variables "DESKTOP_SESSION" and
5231 "XDG_CURRENT_DESKTOP". (Bug#9779)
5232
195f8db9
JL
52332011-10-19 Juri Linkov <juri@jurta.org>
5234
5235 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
5236 (browse-url-chromium-program, browse-url-chromium-arguments):
5237 New defcustoms.
5238 (browse-url-default-browser): Check for `browse-url-chromium' and
5239 call `browse-url-chromium-program'.
5240 (browse-url-chromium): New command. (Bug#9779)
5241
343a34ff
JB
52422011-10-18 Juanma Barranquero <lekktu@gmail.com>
5243
5244 * facemenu.el (list-colors-duplicates): On Windows, detect more
5245 duplicates by assuming that only colors matching "^System" are
5246 special "system colors". (Bug#9722)
5247
6978a151
SM
52482011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
5249
5250 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
5251 to distinguish the author from the committer.
5252
6a80b297
MA
52532011-10-18 Michael Albinus <michael.albinus@gmx.de>
5254
5255 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
5256
b31a5677
JK
52572011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
5258
5259 * international/mule.el (sgml-html-meta-auto-coding-function):
5260 Add support for detecting encoding in HTML5 specified only as
5261 <meta charset="UTF-8">. Implementation just makes http-equiv and
5262 content-type parts from HTML4 encoding string optional. (Bug#9716)
5263
80c6d77f
GM
52642011-10-18 Glenn Morris <rgm@gnu.org>
5265
5266 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
5267
08b0fee8
CY
52682011-10-18 Chong Yidong <cyd@gnu.org>
5269
5270 * faces.el (cursor): Doc fix.
5271
67e729a5
CY
52722011-10-17 Chong Yidong <cyd@gnu.org>
5273
5274 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
5275
343a34ff 52762011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
5277
5278 * dirtrack.el (dirtrack): Support shell buffers with path
5279 prefixes, e.g. tramp-based remote shells. (Bug#9647)
5280
0bc06380
TZ
52812011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
5282
5283 * json.el: Bump version to 1.3 and note change in History.
5284 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
5285
8b79f3e0
SM
52862011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
5287
5a7c536b
SM
5288 * comint.el (comint-insert-input, comint-send-input)
5289 (comint-get-old-input-default, comint-backward-matching-input)
5290 (comint-next-prompt): Use nil instead of `input' for field property of
5291 past user input (bug#114).
5292
96a8a0df
SM
5293 * minibuffer.el (completion--replace): Inherit surrounding properties
5294 (bug#114).
5295 (minibuffer-complete-and-exit): Use it.
5296
8b79f3e0
SM
5297 * comint.el (comint--table-subvert): Quote the all-completions output
5298 (bug#9160).
5299
b8f7ff0d
MR
53002011-10-17 Martin Rudalics <rudalics@gmx.at>
5301
8b79f3e0 5302 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 5303
b8f7ff0d 5304 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 5305 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
5306 entries and separate them from frame entries.
5307
c235b555
GM
53082011-10-15 Glenn Morris <rgm@gnu.org>
5309
5310 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
5311 Doc fixes.
5312
6bbfa6e1
CY
53132011-10-15 Chong Yidong <cyd@stupidchicken.com>
5314
8b79f3e0
SM
5315 * net/network-stream.el (network-stream-open-starttls):
5316 Improve detection of failure due to lack of TLS support.
ec5c990d 5317
6bbfa6e1
CY
5318 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
5319 putting the input text in front and in bold.
5320
98488977
SM
53212011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
5322
3d1337be
SM
5323 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
5324
ee0b45e4
SM
5325 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
5326 empty buffer.
5327
98488977
SM
5328 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
5329 unread-command-events rather than pushing yet-another event.
5330
186f4720
EZ
53312011-10-14 Eli Zaretskii <eliz@gnu.org>
5332
5333 * mail/sendmail.el (sendmail-query-once): Improve the wording of
5334 the explanation of the possible choices. Make the options passed
5335 to completing-read shorter.
5336
8b7a997c
AM
53372011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5338
5339 * textmodes/flyspell.el (flyspell-large-region): Make sure
5340 extended character mode is used if defined (Bug#1339).
5341
12587bbb
EZ
53422011-10-13 Eli Zaretskii <eliz@gnu.org>
5343
5344 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
5345 character info for LRE, LRO, RLE, and RLO characters by appending
5346 an invisible PDF.
12587bbb 5347
bad41229
SM
53482011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
5349
5350 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
5351 even in case of error; add debug spec; simplify data flow.
5352 (with-timeout-handler): Remove.
5353
28dbc92f
MA
53542011-10-12 Michael Albinus <michael.albinus@gmx.de>
5355
5356 Fix Bug#6019, Bug#9315.
5357
5358 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
5359 complete `buffer-file-name', the local file name part could look
5360 remotely (for example on VMS).
5361
5362 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
5363 `tramp-run-real-handler'.
5364 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
5365 already quoted by '"'.
5366
5367 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
5368 Let `file-name-handler-alist' be nil, the local file name part
5369 could look remotely (for example on VMS).
5370
e1b0b23a
SM
53712011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
5372
5373 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
5374 from here...
5375 (flyspell-post-command-hook): ...to here.
5376
a120bde9
SM
53772011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5378
5379 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
5380 if not needed.
5381 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
5382 using completion. Protect against "slow" callers.
5383 Remove the "message hack".
5384
7ce7717b
JL
53852011-10-11 Juri Linkov <juri@jurta.org>
5386
5387 * isearch.el (isearch-lazy-highlight-word): New variable.
5388 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
5389 Use it. (Bug#9727)
5390
c02ee9d6
GM
53912011-10-11 Glenn Morris <rgm@gnu.org>
5392
5393 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
5394 like f90-previous-statement does.
5395
93e616fd 53962011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5397
1f190e73 5398 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
5399 only in interactive use, to avoid error.
5400
af7b6078
SM
54012011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5402
5403 * minibuffer.el (completion-file-name-table): Fix last change,
5404 i.e. ignore normal errors but not the other ones.
5405
0563dae9
MR
54062011-10-10 Martin Rudalics <rudalics@gmx.at>
5407
5408 * window.el (special-display-buffer-names)
5409 (special-display-regexps): Remove some remnants of earlier
5410 changes from doc-strings.
366ca7f3
MR
5411 (quit-windows-on): New function.
5412
5413 * vc/vc.el (vc-revert, vc-rollback):
5414 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
5415 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 5416 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 5417
49677495
MR
54182011-10-09 Martin Rudalics <rudalics@gmx.at>
5419
5420 * window.el (frame-auto-hide-function): Add version tag.
5421 (Bug#9699)
5422
56f2d1e1
MA
54232011-10-09 Michael Albinus <michael.albinus@gmx.de>
5424
5425 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
5426 condition.
5427
112a6592
LL
54282011-10-09 Leo Liu <sdl.web@gmail.com>
5429
5430 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
5431 (Bug#9701)
5432
0812589b
GM
54332011-10-08 Glenn Morris <rgm@gnu.org>
5434
5435 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
5436 before the first code statement zero indent. (Bug#9690)
5437
b2b0776e
CY
54382011-10-08 Chong Yidong <cyd@stupidchicken.com>
5439
5440 * simple.el (count-words-region): Always count in the region.
5441 Report the number of lines and characters too.
5442 (count-words): New command, which counts in the buffer if the
5443 region is inactive, as count-words-region used to.
5444 (count-words--message): New function. Handle plurals.
5445 (count-lines-region): Make it an alias for count-words-region.
5446
5447 * bindings.el (esc-map): Replace count-lines-region with
5448 count-words-region.
5449
c557cd6b
MR
54502011-10-08 Martin Rudalics <rudalics@gmx.at>
5451
5452 * window.el (window--delete): Delete dedicated frame
5453 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 5454 (switch-to-buffer): Fix doc-string typo.
c557cd6b 5455
61a57ef4 54562011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5457
3a7d293b 5458 * eshell/eshell.el (eshell-command): Avoid using hooks.
61a57ef4 5459
c3833279
CY
54602011-10-07 Chong Yidong <cyd@stupidchicken.com>
5461
5462 * bindings.el ([M-left],[M-right]): Bind to left-word and
5463 right-word respectively.
5464
21ce8245
GM
54652011-10-07 Glenn Morris <rgm@gnu.org>
5466
5467 * cus-start.el (debug-on-quit): Fix custom type.
5468
6d823bb2
LMI
54692011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
5470
0181e193
LMI
5471 * subr.el (define-key-after): Clarify that the function is not
5472 useful for non-menu keymaps.
5473
6d823bb2
LMI
5474 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
5475
8e3459ce 54762011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5477
21ce8245 5478 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 5479 in current minibuffer (Fix bug with recursive minibuffers).
5480
a1c2d21e
CY
54812011-10-06 Chong Yidong <cyd@stupidchicken.com>
5482
5483 * progmodes/gdb-mi.el (gdb): Doc fix.
5484
5a4cf282
MR
54852011-10-05 Martin Rudalics <rudalics@gmx.at>
5486
5487 * window.el (frame-auto-hide-function): New option replacing
5488 frame-auto-delete. Suggested by Stefan Monnier.
5489 (window--delete): Call frame-auto-hide-function instead of
5490 investigating frame-auto-delete.
c96111ea
MR
5491 (window-point-1, set-window-point-1): New functions.
5492 (window-in-direction, record-window-buffer, window-state-get-1)
5493 (display-buffer-record-window): Use window-point-1 instead of
5494 window-point.
5495 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 5496
9854542e
SM
54972011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
5498
5499 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
5500
8943cfb0
GM
55012011-10-05 Glenn Morris <rgm@gnu.org>
5502
5503 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
5504 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
5505
647ab967
LL
55062011-10-05 Leo Liu <sdl.web@gmail.com>
5507
5508 * subr.el (read-char-choice): Fix argument to buffer-live-p which
5509 works with buffer object.
5510
3ddfbced
SM
55112011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
5512
5513 * mpc.el (mpc-tool-bar-map): Add labels.
5514
bdfa5dd2
GM
55152011-10-04 Glenn Morris <rgm@gnu.org>
5516
5517 * calendar/holidays.el (calendar-check-holidays): Doc fix.
5518
0e2070b5
MR
55192011-10-04 Martin Rudalics <rudalics@gmx.at>
5520
5521 * window.el (window--delete): New function.
5522 (frame-auto-delete): Resuscitate option.
5523 (bury-buffer, replace-buffer-in-windows)
5524 (quit-window): Rewrite using window--delete.
5525 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
5526 Pass display-buffer-mark-dedicated to window--display-buffer-2
5527 (Bug#9639).
5528
3dc61a09
SM
55292011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
5530
915a9b64
SM
5531 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
5532 returns a list (bug#9554). Add remote file name completion.
5533 * comint.el (comint--table-subvert): Curry and get quote&unquote
5534 functions as arguments.
5535 (comint--complete-file-name-data): Adjust call accordingly.
5536 * pcomplete.el (pcomplete--table-subvert): Remove.
5537 (pcomplete-completions-at-point): Use comint--table-subvert instead.
5538
3dc61a09
SM
5539 * minibuffer.el (completion-table-case-fold): Use currying.
5540 (completion--styles-type, completion--cycling-threshold-type):
5541 New constants.
5542 (completion-styles, completion-category-overrides)
5543 (completion-cycle-threshold): Use them.
5544 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
5545 completion-table-case-fold.
5546
8ea0a993
SB
55472011-10-03 Stephen Berman <stephen.berman@gmx.net>
5548
5549 * minibuffer.el (completion-category-overrides): Fix type of styles
5550 and add more user friendly tags (bug#9660).
5551
8c24b7f6
SM
55522011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
5553
5554 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
5555 (mule-input-method-string): New widget.
5556 (default-input-method, language-info-custom-alist): Use it.
5557
428fe61a
SM
55582011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
5559
32c1fffd
SM
5560 * pcomplete.el: Require comint.
5561 (pcomplete--common-suffix): Remove.
5562 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
5563 (pcomplete--table-subvert): Sync with comint--table-subvert.
5564 (pcomplete--entries): Use comint-completion-file-name-table.
5565 * comint.el (comint-unquote-filename): Simplify.
5566 (comint-completion-file-name-table): New function (bug#9616).
5567 (comint--complete-file-name-data): Use it.
5568
428fe61a
SM
5569 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
5570 (pcmpl-gnu-tar-buffer): Remove.
5571 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
5572 around. Make sure pcomplete-suffix-list is only changed temporarily.
5573 Don't look inside the tar's file if it's too large.
428fe61a 5574
04c52e2f
CY
55752011-10-01 Chong Yidong <cyd@stupidchicken.com>
5576
ce3cefcc
CY
5577 * cus-edit.el (custom-mode-map):
5578 * epa.el (epa-key-list-mode-map):
5579 * man.el (Man-mode-map):
5580 * startup.el (splash-screen-keymap):
5581 * simple.el (special-mode-map): Use scroll-up-command and
5582 scroll-down-command.
5583
5584 * progmodes/idlw-help.el (idlwave-help-mode-map):
5585 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
5586 * net/newst-plainview.el (newsticker-mode-map):
5587 * emulation/ws-mode.el (wordstar-mode-map):
5588 * emulation/vi.el (vi-com-map):
5589 * calc/calc-graph.el (calc-graph-show-dumb):
5590 * term/sun.el (terminal-init-sun):
5591 * term/ns-win.el (global-map):
5592 * progmodes/grep.el (grep-mode-map):
5593 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
5594 * mail/rmail.el (rmail-mode-map):
5595 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
5596
04c52e2f
CY
5597 * custom.el (custom-safe-themes, load-theme): Treat value of t for
5598 custom-safe-themes as special.
5599
79adf8c8
JD
56002011-10-01 Julien Danjou <julien@danjou.info>
5601
5602 * notifications.el (notifications-notify): Fix docstring.
5603
63bd50d3
PS
56042011-10-01 Per Starbäck <per@starback.se>
5605
5606 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
5607
199e4c7e
MR
56082011-09-30 Martin Rudalics <rudalics@gmx.at>
5609
5610 * startup.el (command-line-1): Fix last fix by inserting
5611 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 5612 (Bug#9605) and (Bug#9636)
199e4c7e 5613
fe5f08dd
EZ
56142011-09-29 Eli Zaretskii <eliz@gnu.org>
5615
5616 * simple.el (line-move): If auto-hscroll-mode is disabled and the
5617 window is hscrolled, move by logical lines. (Bug#9607)
5618 (line-move-visual): Update the doc string to the above effect.
5619
b5516bbd
MR
56202011-09-29 Martin Rudalics <rudalics@gmx.at>
5621
ccee00c0
MR
5622 * window.el (display-buffer-record-window): When WINDOW is the
5623 selected window use `point' instead of `window-point'. (Bug#9626)
5624
b5516bbd
MR
5625 * startup.el (command-line-1): Use insert-before-markers when
5626 inserting initial-scratch-message. (Bug#9605)
ccee00c0 5627
b5516bbd
MR
5628 * help.el (help-window): Remove variable.
5629
52aa0014
GM
56302011-09-29 Glenn Morris <rgm@gnu.org>
5631
5632 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
5633
df9a7357
JB
56342011-09-29 Juanma Barranquero <lekktu@gmail.com>
5635
5636 * descr-text.el (describe-char-categories): Accept category
5637 descriptions more than one line long.
5638
a8406c20
SM
56392011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
5640
88d9610c
SM
5641 * simple.el (delete-trailing-whitespace): Fix last change.
5642
a5daf810
SM
5643 * progmodes/perl-mode.el (perl-syntax-propertize-function):
5644 Don't confuse "y => 3" as the beginning of a `y' operation.
5645
a8406c20
SM
5646 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
5647 object has more than 4 slots (bug#9613).
5648
a239d4e9
JB
56492011-09-28 Juanma Barranquero <lekktu@gmail.com>
5650
5651 * subr.el (with-output-to-temp-buffer):
5652 * net/quickurl.el (quickurl, quickurl-browse-url):
5653 Fix typos in docstrings.
5654
693fbdb6
EZ
56552011-09-27 Eli Zaretskii <eliz@gnu.org>
5656
5657 * minibuffer.el (completion-styles)
5658 (completion-category-overrides): Cross reference each other in doc
5659 strings.
5660
8b457e28
GM
56612011-09-27 Glenn Morris <rgm@gnu.org>
5662
5663 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
5664 to split-string. (Bug#9606)
5665
85a16208
LMI
56662011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
5667
5668 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
5669 (bug#9615).
5670
502f9ebd
CY
56712011-09-27 Chong Yidong <cyd@stupidchicken.com>
5672
5673 * emacs-lisp/package.el (list-packages): Fix echo area message.
5674
7690bdea
LL
56752011-09-27 Leo Liu <sdl.web@gmail.com>
5676
5677 * ido.el (ido-read-internal): Accept cons cell HIST arg.
5678
e2ee6f30
MA
56792011-09-25 Michael Albinus <michael.albinus@gmx.de>
5680
5681 * net/dbus.el (dbus-unregister-object): Don't release services for
5682 registered signals. (Bug#9581)
5683
f3f98342
TZ
56842011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
5685
5686 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
5687 function that picks between cfengine 2 and 3 support
5688 automatically. Update docs accordingly.
5689
dd7aa8dd
KH
56902011-09-22 Kenichi Handa <handa@m17n.org>
5691
5692 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
5693 ZERO.
5694 (indian-itrans-v5-table-for-tamil): New variable.
5695 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
5696
3f2b07f8
KM
56972011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
5698
5699 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
5700 that's true if the current command involved collapsing of text.
5701 It's reset to false at the beginning of the next command.
5702 (allout-post-command-business): Move the cursor to the beginning
5703 of entry if the cursor is hidden and collapsing activity just
5704 happened.
5705
371d6a61
CY
57062011-09-24 Chong Yidong <cyd@stupidchicken.com>
5707
5708 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
5709 tracking (Bug#9541).
5710
2ac2721a
UJ
57112011-09-24 Ulf Jasper <ulf.jasper@web.de>
5712
5713 * net/newst-reader.el (newsticker-html-renderer)
1154d12e
JB
5714 (newsticker-show-news): Automatically load html rendering package
5715 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
5716 because w3m-fill-column is let-bound" and the error "Symbol's value
5717 as variable is void: w3m-fill-column".
2ac2721a 5718
fac7ae53
MA
57192011-09-24 Michael Albinus <michael.albinus@gmx.de>
5720
5721 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
5722 Release services only if they are defined. (Bug#9581)
5723
e08b633b
RS
57242011-09-23 Richard Stallman <rms@gnu.org>
5725
e488d29c
RS
5726 * textmodes/paragraphs.el (forward-sentence): For backwards case,
5727 distinguish start of paragraph from start of its text.
5728
19c38752
RS
5729 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
5730
e08b633b
RS
5731 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
5732 (rmail-generate-viewer-buffer): Put that hook on view buffer.
5733 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
5734
0a39f27e
AS
57352011-09-23 Andreas Schwab <schwab@linux-m68k.org>
5736
5737 * international/mule-diag.el (mule-diag): Insert a newline after
5738 each fontset description.
5739
db4e950d
SM
57402011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
5741
5742 * simple.el (delete-trailing-whitespace):
5743 Document last change; simplify.
5744
eca3f3ea
PW
57452011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
5746
d68e189a
PW
5747 * simple.el (delete-trailing-whitespace): Also delete
5748 extra newlines at the end of the buffer.
5749
eca3f3ea
PW
5750 * textmodes/picture.el: Make motion commands obey shift-select-mode.
5751 (picture-newline): Use forward-line so as to ignore fields.
5752
01c157cc
SM
57532011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
5754
5755 * subr.el (with-wrapper-hook): Fix edebug spec.
5756
022de23e
LMI
57572011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
5758
5759 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
5760 (bug#4538).
5761
91683089
MA
57622011-09-23 Michael Albinus <michael.albinus@gmx.de>
5763
eca3f3ea
PW
5764 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
5765 Fix nasty bug using wrong cached values.
91683089 5766
5bdd6fa4
AM
57672011-09-23 Alan Mackenzie <acm@muc.de>
5768
5769 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
5770
97adfb97
CY
57712011-09-23 Chong Yidong <cyd@stupidchicken.com>
5772
5773 * window.el (pop-to-buffer): Ensure right window is selected if we
5774 chose another frame.
5775
d4ef2b50
EZ
57762011-09-22 Eli Zaretskii <eliz@gnu.org>
5777
5778 * simple.el (what-cursor-position): Use get-char-property-change
5779 and next-single-char-property-change, to be able to show display
5780 properties that come from overlays as well as text properties.
5781
72258fe5
CY
57822011-09-22 Chong Yidong <cyd@stupidchicken.com>
5783
5784 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
5785
5786 * cmuscheme.el (run-scheme, switch-to-scheme):
5787 * cus-edit.el (customize-group, custom-buffer-create)
5788 (customize-browse):
5789 * info.el (info):
5790 * shell.el (shell):
5791 * mail/sendmail.el (mail):
5792 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
5793
8f098516
RS
57942011-09-22 Richard Stallman <rms@gnu.org>
5795
5796 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
5797 move back only to line beg, don't move back over blank lines.
5798
e74f1bb6
MA
57992011-09-22 Michael Albinus <michael.albinus@gmx.de>
5800
5801 * files.el (copy-directory): Set directory attributes only in case
5802 they could be retrieved from the source directory. (Bug#9565)
5803
bfeef8b6
DK
58042011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
5805
5806 * progmodes/hideshow.el (hs-looking-at-block-start-p)
5807 (hs-find-block-beginning, hs-hide-level-recursive):
5808 Ignore strings as well as comments. (Bug#9502)
5809
7e423bb8
AS
58102011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
5811
5812 * progmodes/sql.el (sql-comint-postgres):
5813 Convert port number to a string. (Bug#9566)
5814
b4d72fcf
MR
58152011-09-22 Martin Rudalics <rudalics@gmx.at>
5816
5817 * window.el (quit-window): Undedicate window when switching to
5818 previous buffer. Reported by Thierry Volpiatto
5819 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
5820 (special-display-popup-frame): When popping up a new frame reset
5821 its previous buffers to nil. Simplify code.
b4d72fcf 5822
a7b88dc6
MA
58232011-09-21 Michael Albinus <michael.albinus@gmx.de>
5824
5825 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
5826 and process filter, as done also in `shell-command'.
5827
cf4eacfd
MR
58282011-09-21 Martin Rudalics <rudalics@gmx.at>
5829
eca3f3ea 5830 * window.el (set-window-buffer-start-and-point):
1154d12e
JB
5831 Call set-window-start with NOFORCE argument t.
5832 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
cf4eacfd
MR
5833 (quit-window): Reword doc-string. Handle new format of
5834 quit-restore parameter. Don't delete window if it has a
5835 previous buffer we can show instead of the present one.
5836 (display-buffer-record-window): Rewrite using a new format for
5837 the quit-restore window parameter
5838 (special-display-popup-frame, display-buffer-same-window)
5839 (display-buffer-reuse-window, display-buffer-pop-up-frame)
5840 (display-buffer-pop-up-window, display-buffer-use-some-window):
5841 Adapt symbol passed to display-buffer-record-window.
5842 * help.el (help-window-setup): Handle new format of quit-restore
5843 parameter.
5844
8d28cb95
SM
58452011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
5846
94ab793f
SM
5847 * faces.el (face-list): Fix docstring (bug#9564).
5848
8d28cb95
SM
5849 * window.el (display-buffer--action-function-custom-type):
5850 Don't include internal functions in the Custom interface.
5851
3820edeb
JL
58522011-09-20 Juri Linkov <juri@jurta.org>
5853
5854 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
5855 (Info-forward-node, Info-backward-node, Info-next-preorder)
5856 (Info-last-preorder): Use it. (Bug#9528)
5857
5147931d
JL
58582011-09-20 Juri Linkov <juri@jurta.org>
5859
5860 * info.el (Info-last-preorder): Visit last menu item only when
5861 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
5862
cf499a1a
JD
58632011-09-20 Julien Danjou <julien@danjou.info>
5864
5865 * password-cache.el (password-cache-remove): Remove entries even if the
5866 value is nil, so that password with a nil value (negative caching) is
5867 possible to invalidate.
5868
f84e2fe2
LM
58692011-09-20 Lawrence Mitchell <wence@gmx.li>
5870
5871 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
5872 all whitespace around breakpoint. (Bug#9553)
5873 (f90-find-breakpoint): Only break at whitespace inside a comment.
5874
78054a46
SM
58752011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5876
5877 * minibuffer.el (completion-file-name-table): Keep track of errors.
5878 (completion-table-with-predicate): Handle the case where pred1 is nil.
5879 * pcomplete.el (pcomplete-completions-at-point): Simplify.
5880
345083b2
SM
58812011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5882
e24e27be
SM
5883 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
5884 (debugger-return-value): Signal an error if the debugging context does
5885 not await any return value.
5886
345083b2
SM
5887 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
5888 * image-mode.el (image-toggle-display-text)
5889 (image-toggle-display-image): Stay away from evil `intangible'.
5890
08d355e3
LL
58912011-09-19 Leo Liu <sdl.web@gmail.com>
5892
5893 * replace.el (occur-revert-arguments): Make it permanent-local.
5894 (occur-mode): Don't call font-lock-defontify.
5895
f01da43f
CY
58962011-09-19 Chong Yidong <cyd@stupidchicken.com>
5897
5898 * net/ldap.el (ldap-search-internal): Don't push empty search
5899 result (Bug#9508).
5900
b6072fa6
SM
59012011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5902
5903 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
5904
443d6696
MA
59052011-09-19 Michael Albinus <michael.albinus@gmx.de>
5906
5907 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
5908 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
5909
7cc6e154
JL
59102011-09-18 Juri Linkov <juri@jurta.org>
5911
5912 * buff-menu.el (Buffer-menu-mode-map):
5913 * dired.el (dired-mode-map):
5914 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
5915 (lisp-interaction-mode-map):
5916 * emacs-lisp/package.el (package-menu-mode-map):
5917 * epa.el (epa-key-list-mode-map):
5918 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
5919 (menu-bar-options-menu):
5920 * outline.el (outline-mode-menu-bar-map):
5921 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
5922 * vc/vc-dir.el (vc-dir-menu-map):
5923 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
5924 Capitalize non-function content words in menu item strings.
5925
5926 * dired.el (dired-mode-map): Add menu item for
5927 `image-dired-dired-toggle-marked-thumbs'.
5928
80302a81
JL
59292011-09-18 Juri Linkov <juri@jurta.org>
5930
5931 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
5932 to `isearch-case-fold-search' and restore its original value
5933 after the `isearch-mode' call.
5934
46c5cf66
JL
59352011-09-18 Juri Linkov <juri@jurta.org>
5936
5937 * progmodes/grep.el (grep-process-setup): Don't check code for 1
5938 because `zgrep' returns 1 for successful matches (bug#9226).
5939
d18b513b
JL
59402011-09-18 Juri Linkov <juri@jurta.org>
5941
5942 * info.el (Info-extract-menu-node-name): Check the second match
5943 for empty string (second test-case of bug#9528).
5944 (Info-last-preorder): Let-bind `Info-history' to nil to not add
5945 intermediate nodes to the history (first test-case of bug#9528).
5946
72753f87
JL
59472011-09-18 Juri Linkov <juri@jurta.org>
5948
5949 * info.el (Info-mode-syntax-table): New variable.
1154d12e 5950 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
72753f87 5951
c9384295
JL
59522011-09-18 Juri Linkov <juri@jurta.org>
5953
1154d12e
JB
5954 * info.el (Info-file-supports-index-cookies):
5955 Increment line-beginning-position's arg from 3 to 4 because makeinfo
5956 outputs one more line for long file names (bug#4142).
c9384295 5957
d473dce8
CY
59582011-09-18 Chong Yidong <cyd@stupidchicken.com>
5959
5960 * newcomment.el (comment-normalize-vars): If prompting for
5961 comment-start, set comment-start-skip too (Bug#8424).
5962
2176854d
JB
59632011-09-18 Johan Bockgård <bojohan@gnu.org>
5964
5965 * icomplete.el: Fix previous fix of Bug#5849.
5966 (icomplete-mode): Don't set completion-show-inline-help.
5967 (icomplete-minibuffer-setup): Set completion-show-inline-help
5968 locally during icompletion.
5969
3aace4e4
CY
59702011-09-18 Chong Yidong <cyd@stupidchicken.com>
5971
c940224f
CY
5972 * woman.el (woman2-process-escapes): Don't delete unrecognized
5973 escapes (Bug#7843).
5974
3aace4e4
CY
5975 * files.el (inhibit-first-line-modes-regexps): Add image files.
5976 (hack-local-variables-prop-line): Return nil for malformed
5977 prop-lines (Bug#9044).
5978
710dec63
MA
59792011-09-18 Michael Albinus <michael.albinus@gmx.de>
5980
5981 * net/tramp.el (top): Don't require 'shell.
5982 (tramp-methods): Fix docstring.
5983 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
5984 Return complete remote file name. Handle "smb" case.
5985 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
5986 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
5987
5988 * net/tramp-compat.el (top): Require 'shell.
5989
5990 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
5991 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
5992 `tramp-current-host'.
5993 (tramp-get-remote-tmpdir): Remove.
5994
5995 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
5996 `tramp-tmpdir' entries.
5997 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
5998 (tramp-smb-handle-file-attributes): Ignore errors.
5999 (tramp-smb-wait-for-output): Check also for process end.
6000
5d5ac8ec
LMI
60012011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
6002
6003 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
6004 when sending QUIT (bug#9312).
6005
8c0f49f0
CY
60062011-09-17 Chong Yidong <cyd@stupidchicken.com>
6007
6008 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
6009 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
6010 occur-mode-display-occurrence.
6011 (occur-edit-mode): Add usage message.
6012 (occur-cease-edit): New command.
6013 (occur-after-change-function): Use text properties to find the
6014 position of the prefix text.
6015 (occur-engine): Set stickiness of prefix text properties.
6016
8f1383f7
GM
60172011-09-17 Glenn Morris <rgm@gnu.org>
6018
6019 * progmodes/etags.el (complete-tag):
6020 Fix call to completion-in-region. (Bug#9526)
6021
744ba0e3
JL
60222011-09-17 Juri Linkov <juri@jurta.org>
6023
6024 * textmodes/ispell.el (ispell-word): Add to the error message
6025 the word, ispell program name and current dictionary (bug#9121).
6026 (ispell-tex-arg-end): Capitalize "error" in the error message.
6027
d9bbf400
AS
60282011-09-17 Andreas Schwab <schwab@linux-m68k.org>
6029
6030 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
6031 check. (Bug#4251)
6032
8da11505
JL
60332011-09-17 Juri Linkov <juri@jurta.org>
6034
6035 * window.el (window-safe-min-height, window-safe-min-width):
6036 Fix typos (followup to bug#9522).
6037
a91adc7e
SJ
60382011-09-17 Sven Joachim <svenjoac@gmx.de>
6039
6040 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
6041
064f328a
EZ
60422011-09-16 Eli Zaretskii <eliz@gnu.org>
6043
6044 * simple.el (line-move): If goal-column is set, move by logical
6045 lines, not by display lines. (Bug#971)
6046 (next-line, previous-line, goal-column, line-move-visual): Doc fix
6047 to reflect the above change.
6048
e69df516
SM
60492011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
6050
6051 * image.el (imagemagick-register-types): Use regexp-opt.
6052
cbb0f9ab
CY
60532011-09-15 Chong Yidong <cyd@stupidchicken.com>
6054
6055 * window.el (display-buffer-base-action): Rename from
6056 display-buffer-default-action. Make default value empty.
6057 (display-buffer-overriding-action): Convert to defvar.
6058 (display-buffer-fallback-action): New var.
6059
25322144
CY
60602011-09-15 Chong Yidong <cyd@stupidchicken.com>
6061
6062 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
6063 declaration.
6064 (package--add-to-archive-contents): If there is a duplicate entry
6065 with an older version, remove it.
6066 (package-menu-mark-delete, package-menu-mark-install)
6067 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
6068 (package-menu-mark-obsolete-for-deletion):
6069 Use package-menu-get-status instead of a regexp search.
25322144
CY
6070 (package-menu-get-status): Use tabulated-list-entry.
6071 (package-menu-mark-upgrades): New command.
d770725a 6072 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
6073 (package-menu-execute): Do installation before deletion.
6074 (package-menu-refresh, package-menu-execute): Use derived-mode-p
6075 instead of checking major-mode.
6076 (package-menu--find-upgrades): New function.
6077
7520339c
LMI
60782011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
6079
6080 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
6081 passwords in the log buffer.
65a046c4
LMI
6082 (smtpmail-process-filter): Update the process marker so that the
6083 "broken by peer" status message is inserted in the right place.
7520339c 6084
d3c30954
SM
60852011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
6086
3fe48822
SM
6087 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
6088 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
6089 bibtex-completion-at-point-function.
6090 (bibtex-completion-at-point-function): Use them.
6091
1b8b3954
SM
6092 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
6093
d3c30954
SM
6094 * mpc.el (mpc-constraints-tag-lookup): New function.
6095 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
6096 also to browser "album|playlist".
6097
72779976
JL
60982011-09-14 Juri Linkov <juri@jurta.org>
6099
6100 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
6101 (isearch-edit-string): Use length of `isearch-string' when
6102 `isearch-fail-pos' returns nil.
6103 (isearch-message): Remove duplicate code and call
6104 `isearch-fail-pos' with arg `t'.
6105
a0bf2bcd
CY
61062011-09-14 Chong Yidong <cyd@stupidchicken.com>
6107
17bb0a2d
CY
6108 * replace.el (occur-mode-goto-occurrence): Don't force using other
6109 window (Bug#9499).
6110
a0bf2bcd
CY
6111 * dired-aux.el (dired-do-chmod): Don't provide initial input.
6112
f678e0b6
MR
61132011-09-14 Martin Rudalics <rudalics@gmx.at>
6114
6115 * window.el (display-buffer-window): Remove.
6116 (display-buffer-record-window): Use help-setup window parameter
6117 instead of variable display-buffer-window.
6118 (display-buffer-function, special-display-buffer-names)
6119 (special-display-function): Mention help-setup parameter instead
6120 of display-buffer-window in doc-string.
d3c30954
SM
6121 * help.el (help-window-setup): New argument help-window.
6122 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
6123 Reword some messages.
6124 (with-help-window): Pass window used for displaying the buffer
6125 to help-window-setup. Don't set display-buffer-window.
6126
8e39b2e8
GM
61272011-09-13 Glenn Morris <rgm@gnu.org>
6128
6129 * emacs-lisp/debug.el (debugger-make-xrefs):
6130 Preserve point. (Bug#9462)
6131
85e9c04b
CY
61322011-09-13 Chong Yidong <cyd@stupidchicken.com>
6133
6134 * window.el (window-deletable-p): Use next-frame.
6135
1b36ed6a
MR
61362011-09-13 Martin Rudalics <rudalics@gmx.at>
6137
6138 * window.el (window-auto-delete): Remove.
6139 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 6140 dedication and previous buffers.
1b36ed6a
MR
6141 (switch-to-prev-buffer): Don't delete window.
6142 (delete-windows-on): Delete a window's frame if and only if the
6143 window is dedicated.
6144 (replace-buffer-in-windows): Delete buffer's window or frame if
6145 and only if window is dedicated.
6146 (quit-window): Handle quit-restore as before last change.
4d61f28d 6147 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 6148
ef8ef9fb
CY
61492011-09-13 Chong Yidong <cyd@stupidchicken.com>
6150
6151 * window.el (window-deletable-p): Never delete the last frame on a
6152 given terminal.
6153
b2cba41e
GM
61542011-09-13 Glenn Morris <rgm@gnu.org>
6155
6156 * help.el (describe-key-briefly): Copy previous standard-output change.
6157
51553db6 61582011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
6159
6160 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
6161
b7556719
GM
61622011-09-13 Glenn Morris <rgm@gnu.org>
6163
6164 * emacs-lisp/lisp-mode.el (lisp-indent-function):
6165 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
6166
64b51947
CY
61672011-09-12 Chong Yidong <cyd@stupidchicken.com>
6168
6169 * dired-aux.el (dired-mark-read-string): Don't return default
6170 value on empty input (Bug#9361).
6171 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
6172 Omit initial minibuffer contents.
6173 (dired-do-chmod): Signal an error on empty input.
6174 (dired-mark-read-string): Don't return default on empty input.
6175
6176 * files.el (file-modes-symbolic-to-number): Doc fix.
6177
393a301e
SM
61782011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6179
6180 * international/mule-cmds.el (ucs-completions): Remove.
6181 (read-char-by-name): Use complete-with-action instead; add metadata.
6182
fa5660f9
CY
61832011-09-11 Chong Yidong <cyd@stupidchicken.com>
6184
6185 * window.el (display-buffer--action-function-custom-type)
6186 (display-buffer--action-custom-type): New vars.
6187 (display-buffer-alist, display-buffer-default-action)
6188 (display-buffer-overriding-action): Add defcustom types.
6189
4a592f66
CY
6190 * frame.el (delete-other-frames): Doc fix (Bug#276).
6191
73d56dbd
LMI
61922011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
6193
6194 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
6195
37ac18a3
CY
61962011-09-11 Chong Yidong <cyd@stupidchicken.com>
6197
6198 Change modes that used same-window-* vars to use switch-to-buffer.
6199
6200 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
6201 Use switch-to-buffer.
6202
6203 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
6204 (customize-browse, custom-buffer-create-other-window):
6205 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
6206
6207 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
6208 (Info-prev, Info-up, Info-speedbar-goto-node)
6209 (info-display-manual): Use switch-to-buffer.
6210 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
6211
6212 * mail/sendmail.el (mail): Use switch-to-buffer.
6213 (mail-recover): Use switch-to-buffer-other-window.
6214
6215 * cmuscheme.el (run-scheme, switch-to-scheme):
6216 * ielm.el (ielm):
6217 * shell.el (shell):
6218 * net/rlogin.el (rlogin):
6219 * net/telnet.el (telnet, rsh):
6220 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
6221
10195bd6
AS
62222011-09-11 Andreas Schwab <schwab@linux-m68k.org>
6223
6224 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
6225
b322f63a
LMI
62262011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
6227
39d7fed6
LMI
6228 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
6229 so don't mention it (bug#9301).
ba5a81f1 6230 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 6231
ee0e9f11
LMI
6232 * faces.el (face-spec-set-match-display): Make `(type graphic)'
6233 match `x', `w32' and `ns', like the manual says (bug#9029).
6234
0b1c89c1 6235 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
6236 (process-kill-buffer-query-function): Mention the buffer name in
6237 the query.
0b1c89c1 6238
77549ea8
LMI
6239 * image-mode.el (image-next-line): The line parameter is mandatory
6240 (bug#9258).
6241
803ef892
LMI
6242 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
6243 which can be useful (bug#9301).
6244
12980837
LMI
6245 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
6246
91054f8f
LMI
6247 * subr.el (match-string): Mention that the current buffer should
6248 be the same as the search was done in (bug#9282).
6249
b322f63a
LMI
6250 * facemenu.el: Disable the remove-* commands if the mark isn't
6251 active (bug#9162).
6252
3199b96f
CY
62532011-09-10 Chong Yidong <cyd@stupidchicken.com>
6254
6255 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
6256 of display-buffer.
6257 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
6258
6259 * replace.el (occur-mode-goto-occurrence)
6260 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
6261 and display-buffer.
6262
6263 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
6264 display-buffer.
6265
6266 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
6267 special-display and same-window variables.
6268 (mail-other-window): Use switch-to-buffer-other-window.
6269 (mail-other-frame): USe switch-to-buffer-other-frame.
6270
393a301e
SM
6271 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
6272 Use display-buffer-other-frame.
3199b96f
CY
6273 (gdb-display-gdb-buffer): Use pop-to-buffer.
6274
6275 * progmodes/gud.el (gud-goto-info): Use info-other-window.
6276
6277 * progmodes/python.el: Don't set same-window-buffer-names.
6278
6279 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
6280
6281 * window.el (display-buffer-alist): Add *Python*.
6282
8319e0bf
CY
62832011-09-10 Chong Yidong <cyd@stupidchicken.com>
6284
6285 * window.el (display-buffer-alist): Add entry for buffers
6286 previously handled same-window-*.
6287 (display-buffer-alist, display-buffer-default-action)
6288 (display-buffer-overriding-action): Mark as risky.
6289 (display-buffer-alist): Document action function changes.
6290 (display-buffer--same-window-action)
6291 (display-buffer--other-frame-action): New variables.
6292 (switch-to-buffer, display-buffer-other-frame): Use them.
6293 (display-buffer): Rename reuse-frame entry to reusable-frames.
6294 (display-buffer-reuse-selected-window): Function deleted.
6295 (display-buffer-reuse-window): Handle reusable-frames alist entry.
6296 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
6297 (display-buffer-special): New function.
6298 (display-buffer--maybe-pop-up-frame-or-window): Rename from
6299 display-buffer-reuse-or-pop-window. Split off special-display
6300 part into display-buffer-special.
6301 (display-buffer-use-some-window): Don't perform any special
6302 pop-up-frames handling.
6303 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 6304 (display-buffer--maybe-same-window): Rename from
0d3ff375 6305 display-buffer-maybe-same-window.
8319e0bf 6306
919a69aa
CY
6307 * info.el: Don't set same-window-regexps.
6308 (info-setup): New function.
6309 (info-other-window, info): Call it.
6310
6311 * cus-edit.el: Don't set same-window-regexps.
6312 (customize-group): New argument.
6313 (customize-group-other-window): Use it.
6314 (customize-face, customize-face-other-window): Likewise.
6315 (custom-buffer-create-other-window): Use pop-to-buffer directly.
6316
8319e0bf
CY
6317 * net/rlogin.el:
6318 * net/telnet.el:
6319 * progmodes/gud.el: Don't set same-window-regexps.
6320
6321 * cmuscheme.el:
6322 * ielm.el:
6323 * shell.el:
6324 * mail/sendmail.el:
6325 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
6326
25173000
JL
63272011-09-10 Juri Linkov <juri@jurta.org>
6328
6329 * isearch.el (isearch-edit-string): Remove obsolete mention of
6330 `C-w' (`isearch-yank-word-or-char') from docstring.
6331 (isearch-query-replace): Fix typo in docstring (bug#9466).
6332
056e44ef
JL
63332011-09-10 Juri Linkov <juri@jurta.org>
6334
6335 * paren.el (show-paren-function): Don't show escaped parens.
6336 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
6337
c3760c17
EZ
63382011-09-10 Eli Zaretskii <eliz@gnu.org>
6339
6340 * mail/sendmail.el (mml-to-mime, mml-attach-file)
6341 (mm-default-file-encoding): Remove autoload forms, they are
6342 replaced with autoload cookies in mml.el and mm-encode.el.
6343 (mail-add-attachment): New command.
6344 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
6345 (mail-mode): Mention mail-insert-file and mail-add-attachment in
6346 the doc string.
6347 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
6348
fece895e
RT
63492011-09-10 Reuben Thomas <rrt@sc3d.org>
6350
e69df516
SM
6351 * simple.el (count-words-region): Use buffer if there's no region
6352 (bug#9429).
fece895e 6353
5e68ce4a
JL
63542011-09-09 Juri Linkov <juri@jurta.org>
6355
6356 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
6357 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
6358 (wdired-isearch-filter-read-only): New function. (Bug#6362)
6359
0a6b9622
AM
63602011-09-09 Alan Mackenzie <acm@muc.de>
6361
6362 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
6363 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
6364
14a29deb
EZ
63652011-09-09 Eli Zaretskii <eliz@gnu.org>
6366
6367 Fix for Savannah bug#9392.
6368 * simple.el (mail-encode-mml): New defvar.
6369
6370 * mail/rmail.el (mail-encode-mml): Add a defvar.
6371 (rmail-enable-mime-composing): Default to t.
6372 (rmail-forward): Use MIME method of forwarding only if both
6373 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
6374 Set mail-encode-mml non-nil if the MIME method was used.
6375
6376 * mail/sendmail.el (mml-to-mime): Add autoload form.
6377 (mail-encode-mml): Add a defvar.
6378 (mail-mode): Make mail-encode-mml buffer-local and initialize it
6379 to nil.
6380 (mail-send): If mail-encode-mml is non-nil, run the outgoing
6381 message through mml-to-mime, and reset mail-encode-mml to nil.
6382
28c45130
GM
63832011-09-09 Glenn Morris <rgm@gnu.org>
6384
6385 * woman.el (woman-if-body): When processing an .el block,
6386 do not delete the next .el block as well. (Bug#9447)
69f4b618 6387 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 6388
9b1c252e
MR
63892011-09-08 Martin Rudalics <rudalics@gmx.at>
6390
6391 * window.el (window-deletable-p): Make sure window is live before
6392 invoking window-prev-buffers.
6393
567457e3
LL
63942011-09-08 Leo Liu <sdl.web@gmail.com>
6395
6396 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
6397
97f05794
JL
63982011-09-08 Juri Linkov <juri@jurta.org>
6399
6400 * progmodes/compile.el (compilation-environment): Make it
6401 a defcustom (bug#8340).
6402
8b0874b5
MR
64032011-09-08 Martin Rudalics <rudalics@gmx.at>
6404
6405 * window.el (frame-auto-delete): Rename to window-auto-delete.
6406 Make it control auto-deletion of windows and/or frames.
6407 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 6408 for deleting window/frame. (Bug#9419)
8b0874b5
MR
6409 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
6410 Rewrite handling of case when window/frame can be deleted.
6411 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 6412 argument t. (Bug#9456)
8b0874b5 6413
4feb6e73
CY
64142011-09-07 Chong Yidong <cyd@stupidchicken.com>
6415
6416 * help-mode.el (help-mode): Restore autoload.
6417
91ab9c13
JL
64182011-09-07 Juri Linkov <juri@jurta.org>
6419
6420 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
6421 `compilation-environment'. Set buffer-local
6422 `compilation-environment' to `thisenv' later after (funcall mode).
6423 (Bug#8340)
6424
6425 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
6426 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
6427 instead of replacing its value. (Bug#8340)
6428
0527e251
JL
64292011-09-07 Juri Linkov <juri@jurta.org>
6430
6431 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
6432 based on text properties put by `grep-filter' instead of matching
6433 escape sequences.
6434 (grep-mode): Set buffer-local `compilation-error-screen-columns'
6435 to the value of `grep-error-screen-columns' (bug#9438).
6436
249f792c
JL
64372011-09-07 Juri Linkov <juri@jurta.org>
6438
6439 * simple.el (next-error-highlight, next-error-highlight-no-select):
6440 Doc fix (bug#9432).
6441
ff7271b9
OT
64422011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
6443
6444 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
6445 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
6446
183fc730
LL
64472011-09-07 Leo Liu <sdl.web@gmail.com>
6448
6449 * net/rcirc.el (rcirc-mode): Conditionally initialize
6450 rcirc-input-ring.
6451
77694924
SM
64522011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
6453
6454 * emacs-lisp/find-func.el (find-function-C-source): Only set
6455 find-function-C-source-directory after checking that we found a source
6456 file there (bug#9440).
6457
d809b8eb
AM
64582011-09-06 Alan Mackenzie <acm@muc.de>
6459
6460 * isearch.el (isearch-other-meta-char): Wherever a key list is
6461 unread, "unread" the prefix arg, too. This fixes bug #8901.
6462
453de99f
OG
64632011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
6464
6465 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
6466
90439906
JL
64672011-09-05 Juri Linkov <juri@jurta.org>
6468
6469 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
6470
f62bd846
JL
64712011-09-05 Juri Linkov <juri@jurta.org>
6472
6473 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
6474 keeping point where processing of grep matches begins, and
6475 continue to delete remaining escape sequences from the same point.
6476 (grep-filter): Make leading zero optional in "0?1;31m" because
6477 git-grep emits "\033[1;31m" escape sequences unlike expected
6478 "\033[01;31m" as GNU Grep does (bug#9408).
6479 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
6480
045820ec
JL
64812011-09-05 Juri Linkov <juri@jurta.org>
6482
6483 * subr.el (y-or-n-p): Capitalize "yes".
6484
f5e29b9b
MA
64852011-09-04 Michael Albinus <michael.albinus@gmx.de>
6486
6487 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
6488 `tramp-cache-unload-hook' where appropriate.
6489 (tramp-methods): Rename `tramp-remote-sh' to
6490 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
6491 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
6492
6493 * net/tramp-sh.el (top): Don't require 'shell.
6494 (tramp-methods): Add `tramp-remote-shell' and
6495 `tramp-remote-shell-args' entries.
6496 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
6497 (tramp-sh-handle-shell-command): Remove.
6498 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
6499 Use `tramp-remote-shell'.
6500
2784c434
CY
65012011-09-03 Chong Yidong <cyd@stupidchicken.com>
6502
393a301e 6503 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
6504 (sendmail-query-once): Save directly to send-mail-function.
6505 Update message-send-mail-function too.
6506
6507 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
6508
464cdf56
CS
65092011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
6510
6511 * progmodes/python.el (python-mode-map): Use correct function to
6512 start python interpreter from menu-bar (as reported by Geert
6513 Kloosterman).
6514 (inferior-python-mode-map): Fix typo.
393a301e 6515 (python-shell-map): Remove.
464cdf56 6516
d37e5c87
DD
65172011-09-03 Deniz Dogan <deniz@dogan.se>
6518
6519 * net/rcirc.el (rcirc-print): Simplify code for
6520 rcirc-scroll-show-maximum-output. There is no need to walk
6521 through all windows to find the right one.
6522
f3ada0ee
CS
65232011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
6524
6525 * help.el (help-return-method): Doc fix.
6526
1f3c99ca
MR
65272011-09-03 Martin Rudalics <rudalics@gmx.at>
6528
6529 * window.el (window-deletable-p): Don't return a non-nil value
6530 when there's a buffer that was shown in the window before.
6531 (Bug#9419)
393a301e
SM
6532 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
6533 Set window's previous buffers to nil.
1f3c99ca 6534
a3cf097f
EZ
65352011-09-03 Eli Zaretskii <eliz@gnu.org>
6536
6537 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
6538 newline before and after the tag line, so it doesn't interfere
6539 with determining the paragraph direction of bidirectional text.
6540
3d03de90
LL
65412011-09-03 Leo Liu <sdl.web@gmail.com>
6542
6543 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
6544
c3313451
CY
65452011-09-02 Chong Yidong <cyd@stupidchicken.com>
6546
393a301e 6547 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
6548 (pop-to-buffer): Change interactive spec. Pass second argument
6549 directly to display-buffer.
6550 (display-buffer): Fix interactive spec. Use functionp to
6551 distinguish between a function and a list of functions.
6552
6553 * abbrev.el (edit-abbrevs):
6554 * arc-mode.el (archive-extract):
6555 * autoinsert.el (auto-insert):
6556 * bookmark.el (bookmark-bmenu-list):
6557 * files.el (find-file):
6558 * view.el (view-buffer):
6559 * progmodes/compile.el (compilation-goto-locus):
6560 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
6561
89894cd8
CY
65622011-09-02 Chong Yidong <cyd@stupidchicken.com>
6563
6564 * window.el (display-buffer-alist): Doc fix.
6565 (display-buffer): Add docstring. Don't treat
6566 display-buffer-default specially.
6567 (display-buffer-reuse-selected-window)
6568 (display-buffer-same-window, display-buffer-maybe-same-window)
6569 (display-buffer-reuse-window, display-buffer-pop-up-frame)
6570 (display-buffer-pop-up-window)
6571 (display-buffer-reuse-or-pop-window)
6572 (display-buffer-use-some-window): New functions.
6573 (display-buffer-default-action): Use them.
393a301e 6574 (display-buffer-default): Delete.
89894cd8
CY
6575 (pop-to-buffer-1): Fix choice of actions.
6576
ae0bc9fb
SM
65772011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
6578
6579 * minibuffer.el (completion--insert-strings): Don't get confused by
6580 completion entries that end with an LF char.
6581
e9d90883
EZ
65822011-09-01 Eli Zaretskii <eliz@gnu.org>
6583
6584 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
6585
437014c8
CY
65862011-09-01 Chong Yidong <cyd@stupidchicken.com>
6587
6588 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
6589 (display-buffer-same-window, display-buffer-other-window):
6590 New functions.
437014c8
CY
6591 (pop-to-buffer-1): New function. Use the above.
6592 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 6593 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
6594
6595 * view.el (view-buffer-other-window, view-buffer-other-frame):
6596 Just use pop-to-buffer.
6597
a5e063d5
TV
65982011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6599
6600 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
6601
793d32bb
WH
66022011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
6603
6604 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
6605
d65e4c15
RS
66062011-08-31 Richard Stallman <rms@gnu.org>
6607
6608 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
6609 of the separation of rmail-view-buffer from rmail-buffer.
6610 If you say no to "replace original", the decrypt is in the
6611 view buffer. If you say yes, the decrypt goes into the
6612 rmail buffer also.
6613
f818cd2a
MR
66142011-08-31 Martin Rudalics <rudalics@gmx.at>
6615
6616 * window.el (display-buffer-window): Rewrite doc-string.
6617 (display-buffer-record-window): New function.
6618 (display-buffer-macro-specifiers)
6619 (display-buffer-even-window-sizes, display-buffer-set-height)
6620 (display-buffer-set-width, display-buffer-in-window)
6621 (display-buffer-reuse-window, display-buffer-split-specifiers)
6622 (display-buffer-side-specifiers, display-buffer-split-window-1)
6623 (display-buffer-split-window, display-buffer-split-atom-window)
6624 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
6625 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
6626 (display-buffer-other-window-means-other-frame)
6627 (display-buffer-normalize-special)
6628 (display-buffer-normalize-default)
6629 (display-buffer-normalize-argument)
6630 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
6631 (display-buffer-normalize-specifiers, display-buffer-frame)
6632 (display-buffer-same-window, display-buffer-same-frame)
6633 (display-buffer-other-window)
6634 (display-buffer-same-frame-other-window)
6635 (display-buffer-other-frame, pop-to-buffer-same-window)
6636 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
6637 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
6638 (switch-to-buffer-same-frame)
6639 (switch-to-buffer-other-window-same-frame)
6640 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
6641 (display-buffer-alist-set-1, display-buffer-alist-set-2)
6642 (display-buffer-alist-set): Remove.
6643 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
6644 (special-display-regexps, special-display-function):
6645 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
6646 parameter.
6647 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
6648 (special-display-frame-alist, special-display-popup-frame)
6649 (same-window-buffer-names, same-window-regexps, same-window-p)
6650 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
6651 (split-window-preferred-function, split-height-threshold)
6652 (split-width-threshold, window-splittable-p)
6653 (split-window-sensibly, window--try-to-split-window)
6654 (window--frame-usable-p, even-window-heights)
6655 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
6656 (window--display-buffer-2, display-buffer-other-frame):
6657 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
6658 (display-buffer-default, display-buffer-assq-regexp): New functions.
6659 (display-buffer-alist): Rewrite doc-string.
6660 (display-buffer-default-action)
6661 (display-buffer-overriding-action): New variables.
6662 (display-buffer, switch-to-buffer): Rewrite.
6663 (pop-to-buffer): Restore Emacs 23 behavior but use
6664 window-normalize-buffer-to-display.
6665 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
6666 Restore Emacs 23 behavior but use
6667 window-normalize-buffer-to-switch-to.
6668 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
6669 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
6670 Rewrite using Emacs 23 options.
f818cd2a 6671
5bc3b51d
MA
66722011-08-31 Michael Albinus <michael.albinus@gmx.de>
6673
6674 * net/tramp.el (tramp-root-regexp): Remove.
6675 (tramp-completion-file-name-regexp-unified)
6676 (tramp-completion-file-name-regexp-separate)
6677 (tramp-completion-file-name-regexp-url): Don't use leading volume
6678 letter on win32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
6679 (tramp-drop-volume-letter): Simplify definition.
6680 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 6681
b1a4f8e1
SM
66822011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
6683
6684 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
6685 (bug#9356).
6686
5664fa7b
RT
66872011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
6688
b1a4f8e1 6689 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 6690
9a45d6c3
JL
66912011-08-29 Juri Linkov <juri@jurta.org>
6692
6693 * isearch.el (isearch-done): Don't display message "Mark saved"
6694 when arg `edit' is non-nil to prevent its flicker in the echo area.
6695
fb87e0fb
CY
66962011-08-28 Chong Yidong <cyd@stupidchicken.com>
6697
6698 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
6699 obsolete packages for deletion.
6700
09ac1c2a
CS
67012011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
6702
6703 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 6704 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
6705 view-mode from help-mode.
6706 (help-xref-override-view-map): Remove.
6707 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
6708 view-mode is not used anymore.
6709
7a1ff57f
CY
67102011-08-28 Chong Yidong <cyd@stupidchicken.com>
6711
6712 * server.el (server-port): Doc fix.
6713
b9696605
CY
6714 * cus-theme.el (custom-theme-choose-mode): Inherit from
6715 special-mode (Bug#9124).
6716 (custom-theme-choose-mode-map): Add special-mode to parent.
6717
ef8cdf8c
AM
67182011-08-28 Alan Mackenzie <acm@muc.de>
6719
6720 * progmodes/cc-fonts.el
6721 (c-make-font-lock-BO-decl-search-function): New function.
6722 (c-basic-matchers-after - "Fontify the clauses after various
6723 keywords"): Extract the three keyword lists for the 3 erroneous
6724 constructs from the list of four, and use the new function above
6725 in place of an old one.
6726
27de4e20
DD
67272011-08-28 Deniz Dogan <deniz@dogan.se>
6728
6729 * net/rcirc.el (rcirc-insert-prev-input)
6730 (rcirc-insert-next-input): Remove unused argument.
6731
356a3681
SM
67322011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6733
6734 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
6735
3fc9b218
AM
67362011-08-27 Alan Mackenzie <acm@muc.de>
6737
6738 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
6739 handle function pointer parameters properly.
6740
538a061c
MR
67412011-08-27 Martin Rudalics <rudalics@gmx.at>
6742
6743 * window.el (display-buffer-reuse-window): Fix case where
6744 selected window was reused with non-nil OTHER-WINDOW argument.
6745 (Bug#9381)
6746
35b1c40c
DD
67472011-08-27 Deniz Dogan <deniz@dogan.se>
6748
6749 * net/rcirc.el (rcirc-check-auth-status): Adding support for
6750 oftc's NickServ messages.
6751
2f6a3e79
GM
67522011-08-27 Glenn Morris <rgm@gnu.org>
6753
6754 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
6755
7254299e
CY
67562011-08-26 Chong Yidong <cyd@stupidchicken.com>
6757
6758 * emacs-lisp/package.el (package-install): Call package-initialize
6759 if called interactively.
6760
f8ccf167
LL
67612011-08-26 Leo Liu <sdl.web@gmail.com>
6762
6763 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
6764
3e8cd5ce
JL
67652011-08-25 Juri Linkov <juri@jurta.org>
6766
6767 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
6768 `search-whitespace-regexp' (bug#9364).
6769
93eb7113
JL
67702011-08-25 Juri Linkov <juri@jurta.org>
6771
6772 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
6773 `regexp-search-ring' to their global values to protect from
6774 updating by `read-from-minibuffer' (bug#9185).
6775
f65d1611
JL
67762011-08-25 Juri Linkov <juri@jurta.org>
6777
6778 * textmodes/ispell.el (ispell-command-loop): Add newline
6779 at the end of the "Use option `i'..." line.
6780
f1cf7a31
JL
67812011-08-25 Juri Linkov <juri@jurta.org>
6782
6783 * battery.el (display-battery-mode): If `battery-status-function'
6784 or `battery-mode-line-format' is nil, display the message and set
6785 `display-battery-mode' to nil (bug#9363).
6786
0c95fcf7
EZ
67872011-08-25 Eli Zaretskii <eliz@gnu.org>
6788
6789 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
6790 bidi-string-mark-left-to-right; they are unnecessary now.
6791
a2ebe600
DD
67922011-08-25 Deniz Dogan <deniz@dogan.se>
6793
6794 * net/quickurl.el: Documentation typo fixes.
6795
e4ed06f1
CY
67962011-08-25 Chong Yidong <cyd@stupidchicken.com>
6797
6798 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
6799
e5f1c99e
GM
68002011-08-25 Glenn Morris <rgm@gnu.org>
6801
b2948976
GM
6802 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
6803
e5f1c99e
GM
6804 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
6805 (smtpmail-via-smtp): Handle nil response from smtp.
6806
f22f4808
JL
68072011-08-24 Juri Linkov <juri@jurta.org>
6808
6809 * proced.el (proced-marked): Inherit from `error' instead of
6810 `font-lock-warning-face'.
6811
6812 * ibuffer.el (ibuffer-marked-face): Change default face from
6813 `font-lock-warning-face' to `warning'.
6814 (ibuffer-deletion-face): Change default face from
6815 `font-lock-type-face' to `error'.
6816
6817 * battery.el (battery-update): Use the face `error' instead of
6818 `font-lock-warning-face' (bug#6117).
6819
6a93965e
JL
68202011-08-24 Juri Linkov <juri@jurta.org>
6821
6822 * faces.el (success): Change face color from "Green3" to
6823 "ForestGreen" on light background (bug#9353).
6824
1ed43b09
CY
68252011-08-24 Chong Yidong <cyd@stupidchicken.com>
6826
5664fa7b
RT
6827 * window.el (quit-window): Rename from quit-restore-window.
6828 Use same arglist as old quit-window.
1ed43b09
CY
6829 (frame-auto-delete): Doc fix.
6830
6831 * view.el (view-mode-exit): Use quit-window.
6832
11dcdbb2
JL
68332011-08-24 Juri Linkov <juri@jurta.org>
6834
6835 * isearch.el (isearch-ring-adjust1): Start visiting previous
6836 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
6837 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
6838 for empty search string (when the last search string is reused
6839 automatically) to adjust the isearch ring to the last element and
6840 prepare the correct index for further M-p commands (bug#9185).
6841
de62b4df
KH
68422011-08-24 Kenichi Handa <handa@m17n.org>
6843
6844 * international/ucs-normalize.el: If decomposition property of
6845 CHAR is the default one (i.e. a list of CHAR itself), treat it as
6846 nil.
6847 (nfd, nfkd): Likewise.
6848
963b492b
SM
68492011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
6850
6851 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
6852 from process filters aren't reliably transmitted to the surrounding
6853 accept-process-output.
6854 (mpc-proc-check): New function.
6855 (mpc-proc-sync): Use it (bug#8293)
6856
93b6b5e1
SM
68572011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
6858
6859 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
6860 Add compatibility functions (bug#9313).
6861
bca633fb
EZ
68622011-08-23 Eli Zaretskii <eliz@gnu.org>
6863
b177498a
EZ
6864 * cus-start.el (all): Add entry for bidi-paragraph-direction.
6865
6df6ae42 6866 * international/uni-bidi.el: Regenerate.
bca633fb 6867
0902a04e
KH
68682011-08-23 Kenichi Handa <handa@m17n.org>
6869
6870 * international/charprop.el:
6871 * international/uni-bidi.el:
6872 * international/uni-category.el:
6873 * international/uni-combining.el:
6874 * international/uni-comment.el:
6875 * international/uni-decimal.el:
6876 * international/uni-decomposition.el:
6877 * international/uni-digit.el:
6878 * international/uni-lowercase.el:
6879 * international/uni-mirrored.el:
6880 * international/uni-name.el:
6881 * international/uni-numeric.el:
6882 * international/uni-old-name.el:
6883 * international/uni-titlecase.el:
6884 * international/uni-uppercase.el: Regenerate.
6885
3bbf23bc
MR
68862011-08-23 Martin Rudalics <rudalics@gmx.at>
6887
6888 * help.el (help-window-setup): Fix message displayed when other
6889 window is reused. (Bug#9341)
6890
b3fd59bd
SM
68912011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
6892
1802e444
SM
6893 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
6894 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
6895
b3fd59bd
SM
6896 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
6897 Mark obsolete.
6898 * shell.el (shell-parse-pcomplete-arguments): New function.
6899 (shell-completion-vars): Use it instead (bug#9160).
6900
4eb61348
SM
69012011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
6902
867cab74
SM
6903 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
6904 strings and comments (bug#9333).
6905
4eb61348
SM
6906 * emacs-lisp/debug.el (debug-arglist): New function.
6907 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
6908 (debug-on-entry-1): Handle interpreted closures (bug#9120).
6909
262a1439
JL
69102011-08-22 Juri Linkov <juri@jurta.org>
6911
56ee679c
JL
6912 * progmodes/compile.el (compilation-mode-font-lock-keywords):
6913 Revert regexp that highlights output switches to its old
6914 pre-2010-10-28 value and remove one `?' from it (bug#9319).
6915
262a1439
JL
6916 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
6917 to check for empty output (bug#9226).
6918
f13f86fb
CY
69192011-08-22 Chong Yidong <cyd@stupidchicken.com>
6920
6921 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
6922 symbol-constituent as the default, as that stops font-lock from
6923 working properly (Bug#8843).
6924
c65c9622
LMI
69252011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
6926
6927 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
6928 `coding-system-for-*' around the process open call to avoid
6929 auth-source side effects.
e7f2c178 6930 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
6931 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
6932 probe hangs.
c65c9622 6933
23a8a5ab
CY
69342011-08-21 Chong Yidong <cyd@stupidchicken.com>
6935
ff98b2dd
CY
6936 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
6937
23a8a5ab
CY
6938 * emacs-lisp/find-func.el (find-function-noselect): New arg
6939 lisp-only.
6940
6941 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
6942 signal an error for built-in functions (Bug#6664).
6943
f5e3c598
LMI
69442011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
6945
6946 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
6947 (smtpmail-try-auth-methods): Use it.
6948
a3f2468a
CY
69492011-08-21 Chong Yidong <cyd@stupidchicken.com>
6950
2c34e8da
CY
6951 * font-lock.el (font-lock-fontify-region)
6952 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
6953 (font-lock-default-unfontify-buffer)
6954 (font-lock-default-fontify-region)
6955 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
6956
b3fd59bd
SM
6957 * progmodes/compile.el (compilation-error-properties):
6958 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
6959 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
6960 `ant' regexp.
ee31aabc 6961
a3f2468a
CY
6962 * net/browse-url.el (browse-url-firefox): Don't call
6963 browse-url-firefox-sentinel unless using -remote (Bug#9328).
6964
8e999f70
GM
69652011-08-20 Glenn Morris <rgm@gnu.org>
6966
c21a496a
GM
6967 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
6968
59ee0542
GM
6969 * tutorial.el (tutorial--default-keys): Update some default bindings.
6970
8e999f70
GM
6971 * files.el (hack-local-variables): Fully ignore case for "mode:".
6972
e3715033
AM
69732011-08-20 Alan Mackenzie <acm@muc.de>
6974
6975 Resolve invalid use of a regexp in regexp-opt.
6976
4d61f28d
JB
6977 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
6978 detection for a java annotation.
e3715033 6979
4d61f28d 6980 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
6981 detection for a java annotation.
6982
4d61f28d
JB
6983 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
6984 handling for java.
e3715033
AM
6985 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
6986
04ed2e9c
CY
69872011-08-20 Chong Yidong <cyd@stupidchicken.com>
6988
6989 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
6990 (Bug#9274).
6991
826cee64
AM
69922011-08-20 Alan Mackenzie <acm@muc.de>
6993
58179cce 6994 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
6995 such a construct. Mainly for when jit-lock etc. starts a chunk
6996 here.
6997
58179cce 6998 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 6999 variable.
58179cce 7000 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
7001 c-make-font-lock-search-function.
7002 (c-make-font-lock-search-function): Use the above function.
7003 (c-make-font-lock-context-search-function): New function.
7004 (c-cpp-matchers): Enhance the preprocessor expression case with
7005 the above function
7006 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
7007 which takes an expression.
7008
7009 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
7010
13009bd8
MR
70112011-08-20 Martin Rudalics <rudalics@gmx.at>
7012
7013 * window.el (display-buffer-reuse-window)
7014 (display-buffer-pop-up-window): Don't reuse or split a side
7015 window.
7016
9234ff7f
GM
70172011-08-19 Glenn Morris <rgm@gnu.org>
7018
7019 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 7020 Downcase "Mode:". (Bug#9331)
9234ff7f 7021
f635daa1
CY
70222011-08-18 Chong Yidong <cyd@stupidchicken.com>
7023
7024 * international/characters.el: Add L and R categories.
7025
7026 * subr.el (bidi-string-mark-left-to-right): Rename from
7027 string-mark-left-to-right. Use category search.
7028
7029 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
7030
bc987f8b
JL
70312011-08-18 Juri Linkov <juri@jurta.org>
7032
7033 * faces.el (error, warning, success): New faces with definitions
7034 copied from old default values of `font-lock-warning-face',
7035 `compilation-warning', `compilation-info' (bug#6117).
7036
7037 * font-lock.el (font-lock-warning-face): Inherit from `error'.
7038
7039 * progmodes/compile.el (compilation-error): Inherit from `error'.
7040 (compilation-warning): Inherit from `warning'.
7041 (compilation-info): Inherit from `success'.
7042
7043 * dired.el (dired-marked): Inherit from `warning'.
7044 (dired-flagged): Inherit from `error'.
7045
57173b96
LMI
70462011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
7047
3e79eb87
LMI
7048 * mail/smtpmail.el (auth-source): Require to avoid problems with
7049 binding variables (bug#9298). Also clean up some unused
7050 autoloads.
7051
b3fd59bd
SM
7052 * net/network-stream.el (network-stream-open-starttls):
7053 Support using starttls.el without using gnutls-cli.
57173b96 7054
02b404de
JL
70552011-08-17 Juri Linkov <juri@jurta.org>
7056
7057 * progmodes/grep.el (rgrep): Handle the case when
7058 `grep-find-command' is a cons cell (bug#9278).
7059
8c9177f2
MR
70602011-08-17 Martin Rudalics <rudalics@gmx.at>
7061
7062 * window.el (display-buffer-pop-up-frame): Run frame creation
7063 function with BUFFER current (as special-display-popup-frame
7064 does). Reported by Drew Adams.
7065
3644a0ab
DU
70662011-08-17 Daiki Ueno <ueno@unixuser.org>
7067
7068 * epa-mail.el: Simplify GnuPG group expansion using
7069 epg-expand-group.
7070 (epa-mail-group-alist, epa-mail-group-modtime)
7071 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
7072 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
7073 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
7074 Remove.
7075
5e617bc2 70762011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
7077
7078 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
7079
9c4aeabf
AM
70802011-08-16 Alan Mackenzie <acm@muc.de>
7081
7082 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
7083 Correct, to avoid the inside of macros.
7084
3a99bf64
RS
70852011-08-16 Richard Stallman <rms@gnu.org>
7086
04963aa8
RS
7087 * epa-mail.el: Handle GnuPG group definitions.
7088 (epa-mail-group-alist, epa-mail-group-modtime)
7089 (epa-mail-gnupg-conf-file): New variables.
7090 (epa-mail-parse-groups, epa-mail-sync-groups)
7091 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
7092 (epa-mail-expand-recipients): New functions.
7093 (epa-mail-encrypt): Call epa-mail-expand-recipients.
7094
177549d0
RS
7095 * mail/rmail.el (rmail-epa-decrypt): New command.
7096
fe38beef
RS
7097 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
7098 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
7099 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
7100 (epa-decrypt-armor-in-region): Make error message clearer.
7101
934eacb9
SM
71022011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7103
7104 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
7105 and "a2b" to "ab" for `prefix'.
7106
d024fb4e
CY
71072011-08-14 Chong Yidong <cyd@stupidchicken.com>
7108
7109 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
7110 filter groups.
de148fee
CY
7111 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
7112 Fourquet (Bug#8804).
d024fb4e 7113
62f1ca49
JB
71142011-08-12 Juanma Barranquero <lekktu@gmail.com>
7115
7116 * startup.el (argi): Declare as global variable (bug#9275).
7117
9ccaaa4b
CY
71182011-08-12 Chong Yidong <cyd@stupidchicken.com>
7119
7120 * subr.el (string-mark-left-to-right): Search the entire string
7121 for RTL script, not just the terminating character. Doc fix.
7122
a3dae87a
SM
71232011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
7124
6cd18349
SM
7125 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
7126 New function.
7127 (js--regexp-literal, js-syntax-propertize-function): Remove.
7128 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
7129 (js-mode-map): Don't rebind electric keys.
7130 (js-insert-and-indent): Remove.
7131 (js-mode): Setup electric-layout and electric-indent instead.
7132
a3dae87a
SM
7133 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
7134
9d5cb631
DU
71352011-08-12 Daiki Ueno <ueno@unixuser.org>
7136
7137 * epa.el (epa-progress-callback-function): Fix the logic of
7138 displaying progress.
7139 * epa-file.el (epa-file-insert-file-contents): Make progress
7140 display more user-friendly.
7141 (epa-file-write-region): Ditto.
7142
3e26a4a2
CY
71432011-08-10 Chong Yidong <cyd@stupidchicken.com>
7144
7145 * subr.el (string-mark-left-to-right): New function.
7146
7147 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
7148 Use string-mark-left-to-right.
7149 (list-buffers-noselect): Caller changed.
7150
a3dae87a
SM
7151 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
7152 Use string-mark-left-to-right.
3e26a4a2
CY
7153 (tabulated-list-print): Recenter after moving point.
7154
ac8cf6e6
JL
71552011-08-10 Juri Linkov <juri@jurta.org>
7156
7157 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
7158 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
7159 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
7160
8d96c9a4
CY
71612011-08-09 Chong Yidong <cyd@stupidchicken.com>
7162
7163 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
7164 (Bug#7554).
7165
7be1c708 71662011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
7167
7168 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
7169 character. (Bug#6594)
7170
37e11a63
CY
71712011-08-08 Chong Yidong <cyd@stupidchicken.com>
7172
839dde57
CY
7173 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
7174 (image-dired--with-db-file): New macro.
7175 (image-dired-write-tags, image-dired-remove-tag)
7176 (image-dired-create-gallery-lists, image-dired-write-comments)
7177 (image-dired-get-comment, image-dired-mark-tagged-files)
7178 (image-dired-list-tags, image-dired-gallery-generate): Use it.
7179 (image-dired-gallery-generate): Use insert-file-contents.
7180
37e11a63
CY
7181 * time.el (display-time-world-list, display-time-world-display):
7182 * time-stamp.el (time-stamp-string):
7183 * vc/add-log.el (add-change-log-entry): Use setenv instead of
7184 set-time-zone-rule (Bug#7337).
7185
0b4946c4
DU
71862011-08-08 Daiki Ueno <ueno@unixuser.org>
7187
7188 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
7189 (epg-error-to-string, epg-errors-to-string): New function.
7190 (epg-wait-for-completion): Reverse errors list.
7191 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
7192 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
7193 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
7194 (epg-sign-keys, epg-generate-key-from-file)
7195 (epg-generate-key-from-string): Format errors by using
7196 epg-errors-to-string (bug#9255).
7197 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
7198
75bfc667
JL
71992011-08-07 Juri Linkov <juri@jurta.org>
7200
7201 * faces.el (list-faces-display): Remove extra angle bracket
7202 from `help-mode-map'.
7203
7204 * info.el (Info-history-toc-nodes): Doc fix.
7205
7206 * longlines.el (longlines-mode): Doc fix.
7207
673e08bb
SM
72082011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
7209
4640dd88
SM
7210 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
7211 of statements and in a few more cases (bug#9183).
7212
673e08bb
SM
7213 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
7214 New functions.
7215 (cl-transform-lambda): Use them (bug#9239).
7216
89b3f019
MR
72172011-08-05 Martin Rudalics <rudalics@gmx.at>
7218
7219 * window.el (display-buffer-same-window)
7220 (display-buffer-same-frame, display-buffer-other-window)
7221 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
7222 (pop-to-buffer-other-window)
7223 (pop-to-buffer-same-frame-other-window)
7224 (pop-to-buffer-other-frame): Make them defuns.
7225 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
7226
640c8776
SM
72272011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
7228
7229 * subr.el (make-composed-keymap): Move from C. Change calling
7230 convention, and improve docstring to bring attention to a subtle point.
7231 * minibuffer.el (completing-read-default): Adjust accordingly.
7232
63648a95
MA
72332011-08-03 Michael Albinus <michael.albinus@gmx.de>
7234
7235 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
7236 (tramp-open-shell): Use `tramp-shell-quote-argument'.
7237
7238 * net/trampver.el: Update release number.
7239
b796c9b7
SM
72402011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
7241
7242 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
7243 "in" (bug#9190).
7244
2239d7d5
LMI
72452011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
7246
e07dd7c3
LMI
7247 * mail/sendmail.el (sendmail-query-once): Restore the current
7248 buffer after querying (bug#9074).
7249
0e6a2bd7
LMI
7250 * dired.el (dired-flagged): Use different faces for marked and
7251 flagged files (bug#6117).
7252
ce887515
LMI
7253 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
7254 (bug#4433).
7255
92f2affc
LMI
7256 * ido.el (ido-mode): Switch off the message if called
7257 non-interactively.
7258
57d5aff0
LMI
7259 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
7260 before 587, since it appears that that's more likely to work for
7261 more people.
7262
98cd6c18 7263 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 7264 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
7265 exist.
7266
b96dec83
LMI
7267 * info.el: Remove the `Info-beginning-of-buffer' function
7268 (bug#8325).
7269
b796c9b7
SM
7270 * net/network-stream.el (network-stream-open-starttls):
7271 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 7272
d90e2ea0
MR
72732011-08-01 Martin Rudalics <rudalics@gmx.at>
7274
7275 * window.el (display-buffer-in-window): Don't set dedicated status
7276 of window here (Bug#9215).
7277 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
7278 (display-buffer-pop-up-side-window)
b796c9b7 7279 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 7280
cca09170
SM
72812011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
7282
7283 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
7284 before binding generated-autoload-file.
7285
027b979c
DD
72862011-08-01 Deniz Dogan <deniz@dogan.se>
7287
7288 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
7289
3c7ee4f3
MA
72902011-07-30 Michael Albinus <michael.albinus@gmx.de>
7291
7292 Sync with Tramp 2.2.2.
7293
7294 * net/trampver.el: Update release number.
7295
2cc8e51a
JL
72962011-07-30 Juri Linkov <juri@jurta.org>
7297
7298 * dired-aux.el (dired-touch-initial): Remove function.
7299 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
7300 current time, and `default' to the last modification time of the
7301 current marked file (bug#6887).
7302
a514d856
JM
73032011-07-28 Jose E. Marchesi <jemarch@gnu.org>
7304
7305 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 7306 numeric argument to read-number (bug#9163).
a514d856 7307
8a7eddd7
MA
73082011-07-27 Michael Albinus <michael.albinus@gmx.de>
7309
7310 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
7311 connection process, it could be nil.
7312
1ddd96f5
LL
73132011-07-27 Leo Liu <sdl.web@gmail.com>
7314
7315 Simplify url handling in rcirc-mode.
7316
7317 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
7318 (rcirc-browse-url-at-mouse): Remove.
7319 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
7320
b248a85d
AM
73212011-07-26 Alan Mackenzie <acm@muc.de>
7322
7323 Fontify bitfield declarations properly.
7324
7325 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
7326 (c-symbol-chars): Now exported as a lang variable.
7327 (c-not-primitive-type-keywords): New lang variable.
7328
7329 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
7330 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 7331 parsed as a bitfield declaration.
b248a85d 7332
b796c9b7
SM
7333 * progmodes/cc-engine.el (c-beginning-of-statement-1):
7334 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
7335 (c-punctuation-in): New function.
7336 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
7337 declarations properly.
7338
68575ab0
UJ
73392011-07-26 Ulf Jasper <ulf.jasper@web.de>
7340
7341 * calendar/icalendar.el (icalendar--all-events): Take care of
7342 multiple vcalendars in a single file.
b796c9b7 7343 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 7344
0f0a88b9
DD
73452011-07-25 Deniz Dogan <deniz@dogan.se>
7346
7347 * image.el (insert-image): Clarifying docstring.
7348
0b3f36df
MA
73492011-07-24 Michael Albinus <michael.albinus@gmx.de>
7350
7351 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
7352 `tramp-send-command-and-check' if there is no error.
7353 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
7354
a9901f61
AM
73552011-07-22 Alan Mackenzie <acm@muc.de>
7356
7357 Prevent cc-langs.elc being loaded at run time.
7358
7359 * progmodes/cc-mode.el: Remove two autoload forms which loaded
7360 cc-langs.
7361
4d61f28d 7362 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
7363 "(require 'cc-langs)". Quote a form so it will evaluate at
7364 (cc-mode's) compilation time.
7365
11d074b2
MA
73662011-07-22 Michael Albinus <michael.albinus@gmx.de>
7367
7368 * net/tramp.el (tramp-file-name-handler): Avoid recursive
7369 loading. (Bug#9114)
7370
938b94c8
MR
73712011-07-21 Martin Rudalics <rudalics@gmx.at>
7372
7373 * window.el (display-buffer-pop-up-window)
7374 (display-buffer-pop-up-side-window)
7375 (display-buffer-in-side-window): Call display-buffer-set-height
7376 and display-buffer-set-width after setting the new window's
b796c9b7 7377 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 7378
bfa4f190
SS
73792011-07-20 Sam Steingold <sds@gnu.org>
7380
7381 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
7382 (etags-tags-included-tables): Call `convert-standard-filename' on
7383 the file names contained in TAGS so that windows Emacs can handle
7384 TAGS files created by cygwin ctags.
7385
8ca42262
LMI
73862011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
7387
7388 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
7389 which apparently didn't work.
7390
5db2afd2 73912011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 7392
5db2afd2
RW
7393 * proced.el (proced-send-signal): For *Marked Processes* buffer
7394 put point at beginning of buffer.
7395
92e15d10
SB
73962011-07-19 Stephen Berman <stephen.berman@gmx.net>
7397
7398 * proced.el (proced-format): Make header lines align with the text
7399 (bug#1779).
7400
1bfd59e5
LMI
74012011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
7402
7403 * view.el (view-buffer): Allow running in `special' modes if we're
7404 visiting a file (bug#8615).
7405
f5aae37c
MR
74062011-07-19 Martin Rudalics <rudalics@gmx.at>
7407
7408 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
7409 (display-buffer-alist-set-1, display-buffer-alist-set-2):
7410 New functions.
f5aae37c
MR
7411 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
7412 more accurately.
7413
bf2c1571
AM
74142011-07-18 Alan Mackenzie <acm@muc.de>
7415
7416 Fontify declarators properly when, e.g., a jit-lock chunk begins
7417 inside a declaration.
7418
7419 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
7420
b796c9b7
SM
7421 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
7422 New function.
bf2c1571
AM
7423 (c-complex-decl-matchers): Insert reference to
7424 c-font-lock-enclosing-decls.
7425
7426 * progmodes/cc-engine.el (c-backward-single-comment):
7427 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
7428 to nil around calls to (forward-comment -1).
7429
4e190b80
LMI
74302011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
7431
12dc863d
LMI
7432 * image.el (put-image): Doc typo fix.
7433
a762e966
LMI
7434 * progmodes/etags.el (tags-search): Doc typo fix.
7435
4e190b80
LMI
7436 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
7437 password if we get errors 550 to 554.
7438
f019fb21
LMI
74392011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
7440
b796c9b7 7441 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 7442
81746738
LMI
7443 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
7444 indentation character (bug#6380).
7445
3ee3a1b5
LMI
7446 * files.el (buffer-offer-save): Made permanently local (bug#6241).
7447
c82f64de
LMI
7448 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
7449 to clarify what the problem is (bug#4291).
7450
f019fb21
LMI
7451 * simple.el (current-kill): Clarify what
7452 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
7453 (auto-fill-mode): Document `auto-fill-function' in relation to
7454 `auto-fill-mode' (bug#2470).
f019fb21 7455
0794775d
LM
74562011-07-16 Lawrence Mitchell <wence@gmx.li>
7457
7458 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
7459 method if slot is read-only (bug#9035).
7460
be39b8cc
MR
74612011-07-16 Martin Rudalics <rudalics@gmx.at>
7462
b796c9b7 7463 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 7464 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
7465 selected before, see discussion of (Bug#8615), (Bug#6954).
7466 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 7467
6ccf7859
GM
74682011-07-15 Glenn Morris <rgm@gnu.org>
7469
7470 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 7471 Respect help-form.
6ccf7859 7472
87e86684
LM
74732011-07-09 Lawrence Mitchell <wence@gmx.li>
7474
7475 * net/gnutls.el (gnutls-min-prime-bits): New variable.
7476 (gnutls-negotiate): Use it.
7477
d6066239
LMI
74782011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
7479
b796c9b7
SM
7480 * net/gnutls.el (gnutls-negotiate):
7481 Upcase `gnutls-algorithm-priority'.
d6066239 7482
bd23ebc0
GM
74832011-07-15 Glenn Morris <rgm@gnu.org>
7484
c65bca65
GM
7485 * jka-compr.el (jka-compr-verbose): Move from here...
7486 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
7487 Add missing :version tag.
7488 * info.el: No need to require jka-compr when compiling.
bd23ebc0 7489
478615cc
LMI
74902011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
7491
7b41decb
LMI
7492 * net/gnutls.el (gnutls-algorithm-priority): New variable.
7493 (gnutls-negotiate): Use it.
7494
dbc44fcd
LMI
7495 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
7496
06789f97
LMI
7497 * info.el (Info-beginning-of-buffer): New command.
7498 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
7499 announcing `b' as the key (bug#8325).
ab896c37 7500 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 7501
c39da690
LMI
7502 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
7503
3aa5f34b
LMI
7504 * international/mule-cmds.el
7505 (describe-specified-language-support): Make the error message
7506 clearer (bug#8905).
7507
4bf0979f
LMI
7508 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
7509
478615cc
LMI
7510 * isearch.el (isearch-barrier): Add a doc string, since it's
7511 mentioned in a function doc string (bug#8678).
7512
75c68aa1
MR
75132011-07-15 Martin Rudalics <rudalics@gmx.at>
7514
7515 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
7516 buffer argument (Bug#9083) and self-identifying label argument.
7517
a7c33da2
GM
75182011-07-15 Glenn Morris <rgm@gnu.org>
7519
7520 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
7521
2f5c6024
LMI
75222011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
7523
7524 * man.el (Man-fontify-manpage): Fix message when formatting the
7525 man page (bug#7929).
7526
0bb23927 75272011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
7528
7529 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
7530 argument LRM; if non-nil, append an invisible LRM character to the
7531 buffer name.
7532 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
7533 last argument non-nil, when formatting buffer names.
0bb23927
EZ
7534 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
7535 paragraph direction.
cce4b0a7 7536
621ef9ab
LMI
75372011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
7538
d1583c48
LMI
7539 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
7540 the man page name (bug#7929).
7541
6a57fb5f
LMI
7542 * image.el (put-image): Mention the `put-image' overlay property
7543 (bug#7834).
7544
d7956b14
LMI
7545 * scroll-bar.el (set-scroll-bar-mode): Mention that
7546 `scroll-bar-mode' lists the values (bug#7772).
7547
5b2d4a66
LMI
7548 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
7549 command (bug#7729).
7550
7509a874
LMI
7551 * rect.el (apply-on-rectangle): Return the point after the last
7552 operation.
7553 (string-rectangle): Go to the point after the last operation
7554 (bug#7522).
7555
4fe74b19
LMI
7556 * printing.el (pr-toggle-region): Clarify the documentation
7557 slightly (bug#7493).
7558
b796c9b7
SM
7559 * time.el (display-time-update):
7560 Allow `display-time-mail-function' to return nil (bug#7158).
7561 Fix suggested by Detlev Zundel.
ab283561 7562
fc233c9d
LMI
7563 * vc/diff.el (diff): Clarify the order the file names are read
7564 (bug#7111).
7565
43f5740b
LMI
7566 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
7567 the doc string (bug#7015).
7568
f2182a76
LMI
7569 * font-lock.el (font-lock-maximum-decoration): Mention what
7570 numeric levels mean (bug#6935).
7571
621ef9ab
LMI
7572 * startup.el (initial-buffer-choice): Don't mention the `none'
7573 selection, which is against policy.
7574
adc47434
MR
75752011-07-14 Martin Rudalics <rudalics@gmx.at>
7576
b796c9b7
SM
7577 * window.el (display-buffer-normalize-special):
7578 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 7579
7e5bfb8f
EZ
75802011-07-14 Eli Zaretskii <eliz@gnu.org>
7581
7582 * subr.el (version<, version<=, version=): Mention "-CVS" and
7583 "-12345" alpha version numbers.
7584
27fa387a
CY
75852011-07-14 Chong Yidong <cyd@stupidchicken.com>
7586
7587 * bindings.el: Add advertised binding for set-mark-command
7588 (Bug#5772).
7589
8bdfa064
CY
75902011-07-14 Chong Yidong <cyd@stupidchicken.com>
7591
7592 * bindings.el (mode-line-other-buffer):
7593 * bookmark.el (bookmark-bmenu-2-window):
7594 * bs.el (bs-cycle-next, bs-cycle-previous):
7595 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
7596 switch-to-buffer.
7597
7598 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 7599 Delete.
8bdfa064 7600
5eba16a3
JB
76012011-07-14 Juanma Barranquero <lekktu@gmail.com>
7602
7603 * follow.el (follow-debug-message, follow-redisplay):
7604 * jka-cmpr-hook.el (with-auto-compression-mode):
7605 Fix typos in docstrings.
7606
15853710
LMI
76072011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
7608
a28e4607
LMI
7609 * subr.el (with-silent-modifications): Clarify somewhat what the
7610 macro inhibits (bug#6525).
7611
15853710
LMI
7612 * simple.el (eval-expression): Note what it does if called
7613 interactively (bug#6495).
7614
bee0fcef
CY
76152011-07-13 Chong Yidong <cyd@stupidchicken.com>
7616
b796c9b7
SM
7617 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
7618 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
7619
7620 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7621 Remove switch-to-buffer.
7622
58274504
LMI
76232011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
7624
bd2fcc8d
LMI
7625 * files.el (make-directory): Clarify that an error will be raised
7626 if there's an error (bug#6397).
7627
0f04b32c
LMI
7628 * startup.el (initial-buffer-choice): Add `none' as a choice
7629 (bug#6234).
7630
465c5fc8
LMI
7631 * subr.el (add-hook): Clarify section about buffer-local hooks
7632 (bug#6218).
7633
58274504
LMI
7634 * dired.el (dired-flagged): Clarify doc string (bug#6117).
7635
bead9a43
JB
76362011-07-13 Juanma Barranquero <lekktu@gmail.com>
7637
7638 * tabify.el (untabify): Preserve the current column so that point
7639 doesn't move (bug#6032).
7640
3af98a7b
LMI
76412011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
7642
b796c9b7
SM
7643 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
7644 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 7645
6240145a
GM
76462011-07-13 Glenn Morris <rgm@gnu.org>
7647
7648 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
7649 (dired-insert-directory): Give a message the first time
7650 if ls is found not to support --dired.
7651
1d8c2ccc
LMI
76522011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
7653
7654 * simple.el (toggle-truncate-lines): Clarify what is toggled
7655 (bug#5580). Text by Drew Adams.
7656
5fc4038e
CY
76572011-07-13 Chong Yidong <cyd@stupidchicken.com>
7658
7659 * simple.el (blink-matching-open): Make the error message from the
7660 last change less verbose.
7661
bf6012e5
DN
76622011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
7663
7664 * font-lock.el (font-lock-comment-face): Use the high contrast
7665 "yellow" color for font-lock-comment-face on low color terminals
7666 using a dark background color (bug#4221).
7667
343c3b5a
LMI
76682011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
7669
7e9505c5
LMI
7670 * dired.el (dired-insert-set-properties): Make the doc string
7671 reflect what it does now (bug#5325).
7672
c26fdcf5
LMI
7673 * simple.el (blink-matching-open): Say that we were unable to find
7674 the match within the limit, if we're limited (bug#5122).
7675
bb388cc5
LMI
7676 * international/mule-cmds.el (prefer-coding-system): Add an
7677 example (bug#4869).
7678
343c3b5a
LMI
7679 * progmodes/etags.el (tags-search): Document `file-list-form'
7680 (bug#4731).
7681
2a517d45
LM
76822011-07-13 Lawrence Mitchell <wence@gmx.li>
7683
7684 * net/browse-url.el (browse-url-default-browser)
7685 (browse-url-browser-function): Make the default browser choice a
7686 bit more logical (bug#4300). Also clean up the doc string.
7687
b6c78ef2
JB
76882011-07-13 Juanma Barranquero <lekktu@gmail.com>
7689
7690 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
7691 binary endings (bug#4440).
7692
1c4dd947
LMI
76932011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
7694
a2014063
LMI
7695 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
7696 which can be pretty annoying (bug#8971).
7697
9c9c2d88
LMI
7698 * jka-compr.el (jka-compr-verbose): New variable, and use
7699 throughout (bug#8971).
7700
1c4dd947
LMI
7701 * info.el (Info-find-file): Fall back on the installation
7702 directory if we can't find the info node anywhere else.
7703
a1c9f41b
SO
77042011-07-13 Sergei Organov <osv@javad.com> (tiny change)
7705
7706 * vc/vc.el (vc-revert-file):
7707 Don't set file time-stamp in the past. (Bug#5181)
7708
536f3d36
LMI
77092011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
7710
7152b011
LMI
7711 * files.el (after-find-file): Give a better error message when
7712 trying to find a symlink that points to a file that doesn't exist
7713 (bug#4398).
7714
536f3d36
LMI
7715 * progmodes/cc-vars.el: Remove (probably) misleading comment
7716 (bug#4396).
7717
460c0fba
JB
77182011-07-12 Johan Bockgård <bojohan@gnu.org>
7719
7720 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
7721
7a6bda45
CY
77222011-07-12 Chong Yidong <cyd@stupidchicken.com>
7723
7724 * mouse-sel.el: Hack restoring functionality, while keeping
7725 compatibility with 2010-07-03 changes to mouse selection.
7726 (mouse-sel-primary-overlay): New var.
7727 (mouse-sel-selection-alist): Use it.
7728 (mouse-sel-mode): Doc fix; remove points that are default features
7729 of mouse.el.
7730
c79598ef
JB
77312011-07-12 Johan Bockgård <bojohan@gnu.org>
7732
7733 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7734 Fix previous fix (bug#2490).
7735
ff8be6ef
RW
77362011-07-12 Roland Winkler <winkler@gnu.org>
7737
b796c9b7
SM
7738 * textmodes/bibtex.el (bibtex-initialize):
7739 Use pop-to-buffer-same-window.
ff8be6ef
RW
7740 (bibtex-search-entries): Fix interactive call.
7741
296ba3ee
LMI
77422011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
7743
f5242a02 7744 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
7745 Fontise bytecomp Error lines more correctly (bug#2490).
7746 Fix suggested by Johan Bockgård.
f5242a02 7747
296ba3ee
LMI
7748 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
7749
7750 * dired-x.el (dired-guess-default): Use `delete-dups'.
7751
f69fd0d2
CY
77522011-07-12 Chong Yidong <cyd@stupidchicken.com>
7753
7754 * dired.el (dired-mark-prompt):
7755 * dired-aux.el (dired-read-shell-command): Doc fix.
7756
eab5dc07
LMI
77572011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
7758
b796c9b7
SM
7759 * mail/sendmail.el (sendmail-query-once):
7760 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
7761 emacs -Q.
7762
7763 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
7764
eab5dc07
LMI
7765 * cus-edit.el (custom-file): Take an optional no-error variable.
7766 (customize-save-variable): Set the variable, and give a warning if
7767 running under "emacs -q".
7768
a1e65d42
JB
77692011-07-11 Juanma Barranquero <lekktu@gmail.com>
7770
7771 * loadhist.el (unload-feature-special-hooks):
7772 Add `auto-coding-functions', `fill-nobreak-predicate' and
7773 `find-directory-functions' (bug#5327).
7774
1d52da10
LMI
77752011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
7776
be958f1d
LMI
7777 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
7778
5bedb26c
LMI
7779 * cus-edit.el (custom-guess-name-alist): -alist variables should
7780 use the `alist' type (bug#3120). Suggested by Drew Adams.
7781
1d52da10
LMI
7782 * printing.el: Add documentation to all the `pr-toggle-' commands.
7783
cd394be1 77842011-07-11 Leo Liu <sdl.web@gmail.com>
481a51b6
LL
7785
7786 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
7787 backends where it makes sense (bug#2623).
7788
dcc88d8a
LMI
77892011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
7790
c3de9feb
LMI
7791 * dired-x.el (dired-guess-default): Remove duplicate shell command
7792 entries (bug#2028).
8a93078b 7793 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 7794 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 7795
dcc88d8a
LMI
7796 * subr.el (remove-duplicates): New conveniency function.
7797
505e3645
LMI
77982011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
7799
7800 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
7801 (bug#1526).
7802
78032011-07-10 Martin Rudalics <rudalics@gmx.at>
7804
7805 * window.el (display-buffer-normalize-default): Don't invert
7806 meaning of even-window-heights. Reported by Eli Zaretskii
7807 <eliz@gnu.org>.
7808
455e4fa1
BR
78092011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
7810
7811 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
7812
8e0bc3e9
CY
78132011-07-10 Chong Yidong <cyd@stupidchicken.com>
7814
7815 * window.el (display-buffer): Fix arguments to
7816 display-buffer-reuse-window in last change.
7817
fa7c3228
CY
7818 * faces.el (link): Use a less saturated blue on light backgrounds.
7819
7820 * startup.el (fancy-startup-text, fancy-about-text)
7821 (fancy-startup-tail): Use font-lock faces, for background safety.
7822
c0a7f300
BN
78232011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
7824
b796c9b7
SM
7825 * emulation/viper-cmd.el (viper-change-state-to-vi):
7826 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 7827
4dc2a129
MR
78282011-07-09 Martin Rudalics <rudalics@gmx.at>
7829
7830 * window.el (display-buffer-default-specifiers): Remove.
7831 (display-buffer-macro-specifiers): Remove default specifiers.
7832 (display-buffer-alist): Default to nil.
b796c9b7 7833 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
7834 (display-buffer-pop-up-window): Allow splitting internal
7835 windows. Check whether a live window was created.
7836 (display-buffer-other-window-means-other-frame)
7837 (display-buffer-normalize-arguments): Rename to
7838 display-buffer-normalize-argument and rewrite. Set the
7839 other-window specifier.
7840 (display-buffer-normalize-special): New function.
7841 (display-buffer-normalize-options): Rename to
7842 display-buffer-normalize-default and rewrite.
7843 (display-buffer-normalize-options-inhibit): Remove.
7844 (display-buffer-normalize-specifiers): Rewrite.
7845 (display-buffer): Process other-window specifier and call
7846 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
7847 more faithfully.
b796c9b7 7848 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 7849 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
7850 (display-buffer-in-window, display-buffer-alist-set):
7851 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
7852 <tassilo@member.fsf.org>.
7853
2d43b8c9
LL
78542011-07-09 Leo Liu <sdl.web@gmail.com>
7855
7856 * register.el (insert-register): Restore accidental change on
7857 2011-06-26. (Bug#9028)
7858
7f9b7c53
GM
78592011-07-09 Glenn Morris <rgm@gnu.org>
7860
7861 * subr.el (remq): Handle the empty list. (Bug#9024)
7862
f042cfd8
AS
78632011-07-08 Andreas Schwab <schwab@linux-m68k.org>
7864
7865 * mail/sendmail.el (send-mail-function): No longer delay custom
7866 initialization.
7867 * custom.el (custom-initialize-delay): Doc fix.
7868
856b2f11
SM
78692011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
7870
7871 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
7872
afae1d68
MA
78732011-07-08 Michael Albinus <michael.albinus@gmx.de>
7874
7875 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
7876 human-friendly prompt.
7877
0757af94
SM
78782011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
7879
7880 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
7881 provided by a particular plugin.
7882
d760b731
LMI
78832011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
7884
7885 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
7886 save customizations (with "emacs -Q"), just set the variable
7887 instead of erroring out.
7888
7889 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
7890
cd79ce90
JL
78912011-07-08 Juri Linkov <juri@jurta.org>
7892
7893 * arc-mode.el (archive-zip-expunge, archive-zip-update)
7894 (archive-zip-update-case): Use 7z if found by `executable-find'.
7895 The order of searching the available programs is the same as in
7896 `archive-zip-extract' (bug#8968).
7897
14cc04aa
CY
78982011-07-07 Chong Yidong <cyd@stupidchicken.com>
7899
7900 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
7901 (menu-bar-options-menu): Tweak descriptions.
7902
0a1848ec
LMI
79032011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
7904
7905 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
7906 menu items into verb phrases (bug#1421). Also refill to fit under
7907 80 columns.
7908
f5bd0689
CY
79092011-07-07 Chong Yidong <cyd@stupidchicken.com>
7910
538e85c6
CY
7911 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
7912 (Info-read-node-name): Doc fix (Bug#1084).
7913
f5bd0689
CY
7914 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
7915 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
7916 (end-of-sexp, beginning-of-sexp)
7917 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
7918 (forward-symbol, forward-same-syntax, word-at-point)
7919 (sentence-at-point): Doc fix (Bug#1144).
7920
56ec5115
LMI
79212011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
7922
f3f8e37f
LMI
7923 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
7924 should cover it (bug#1281).
7925
0757af94 7926 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 7927
e9fce1ac 7928 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
7929 negotiation fails, then possibly try again with a non-encrypted
7930 connection (bug#9017).
7931
56ec5115
LMI
7932 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
7933 be used.
7934
c2f9aec8
RS
79352011-07-07 Richard Stallman <rms@gnu.org>
7936
7937 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
7938 property, and handle its changed format.
7939 Look for the correct line number.
7940 Use file's line contents (but not past first =) to find
7941 correct line in message.
7942
ef7b981d 79432011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
7944
7945 * international/characters.el (build-unicode-category-table):
7946 Delete it.
0757af94 7947 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 7948
0757af94 7949 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
7950 to src/chartab.c.
7951 (get-char-code-property): Call unicode-property-table-internal to
7952 load a file. Call get-unicode-property-internal where necessary.
7953 (put-char-code-property): Call unicode-property-table-internal to
7954 load a file. Call put-unicode-property-internal where necessary.
7955 put-unicode-property-internal where necessary.
0757af94
SM
7956 (char-code-property-description):
7957 Call unicode-property-table-internal to load a file.
c805dec0
KH
7958
7959 * international/charprop.el:
7960 * international/uni-bidi.el:
7961 * international/uni-category.el:
7962 * international/uni-combining.el:
7963 * international/uni-comment.el:
7964 * international/uni-decimal.el:
7965 * international/uni-decomposition.el:
7966 * international/uni-digit.el:
7967 * international/uni-lowercase.el:
7968 * international/uni-mirrored.el:
7969 * international/uni-name.el:
7970 * international/uni-numeric.el:
7971 * international/uni-old-name.el:
7972 * international/uni-titlecase.el:
7973 * international/uni-uppercase.el: Regenerate.
7974
7975 * loadup.el: Load international/charprop.el before
7976 international/characters.
7977
e14b388a
CY
79782011-07-07 Chong Yidong <cyd@stupidchicken.com>
7979
7980 * window.el (next-buffer, previous-buffer): Signal an error if
7981 called from a minibuffer window.
7982
7983 * bindings.el: Revert 2011-07-04 change.
7984
354cf0ba
RS
79852011-07-06 Richard Stallman <rms@gnu.org>
7986
7987 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
7988 (rmail-mime-insert-bulk, rmail-mime-insert-text):
7989 Treat markers like ints.
7990 (rmail-mime-entity): Doc fix.
7991
a48868a7
LMI
79922011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
7993
4906cd3d
LMI
7994 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
7995 defcustom again for backwards compatibility.
7996
e0457abe
LMI
7997 * simple.el (shell-command-on-region): Fill.
7998
d67f7e1f
LMI
7999 * dired-aux.el (dired-kill-line): Add a doc string.
8000
fe204702
LMI
8001 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
8002 to "\\sw\\|\\s_" (bug#358).
8003
a48868a7
LMI
8004 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
8005 (dired-unmark-backward): Ditto.
8006 (dired-flag-backup-files): Ditto.
8007
8008 * dired-x.el (dired-mark-sexp): Ditto.
8009
aa8a705c
RS
80102011-07-06 Richard Stallman <rms@gnu.org>
8011
8012 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
8013 (rmail-mime-entity): New arg TRUNCATED.
8014 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
8015 New functions.
8016 (rmail-mime-save): Warn if entity is truncated.
8017 (rmail-mime-toggle-hidden): Likewise, for showing.
8018 (rmail-mime-process-multipart): Record when an entity is truncated.
8019
a9a936b9
RS
8020 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
8021 if ENTITY is a string.
8022
1f2b92cb
LMI
80232011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8024
f4f73198 8025 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
8026 of faces when `M-C-x'-ing their definitions (bug#8378).
8027 Also clean up the code slightly.
f4f73198 8028
12b16734 8029 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 8030 because that makes the colors go away.
12b16734 8031
f0691d22
LMI
8032 * mail/sendmail.el (send-mail-function): Change the default to
8033 `sendmail-query-once'.
9e87df06 8034 (sendmail-query-once): Add an autoload cookie.
f0691d22 8035
1f2b92cb
LMI
8036 * net/network-stream.el (network-stream-open-starttls): Try using
8037 a plain connection even if the server offered STARTTLS, and we
8038 kinda wanted to use it, if Emacs doesn't have any STARTTLS
8039 capability. This should make smtpmail.el work in slightly more
8040 configurations.
8041
1cdd2a1b
MA
80422011-07-06 Michael Albinus <michael.albinus@gmx.de>
8043
8044 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
8045 New defun.
8046 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
8047
fbcc67e2
MM
80482011-07-06 Michael R. Mauger <mmaug@yahoo.com>
8049
8050 * progmodes/sql.el: Version 3.0
0757af94 8051 (sql-product-alist): Add product :completion-object,
fbcc67e2 8052 :completion-column, and :statement attributes.
0757af94 8053 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 8054 (sql-mode-syntax-table): Mark all punctuation.
0757af94 8055 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
8056 ansi keywords.
8057 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 8058 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
8059 (sql-oracle-show-reserved-words): New function for development.
8060 (sql-product-font-lock): Simplify for source code buffers.
8061 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
8062 New functions.
8063 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
8064 (sql-mode-map): Add statement movement functions.
8065 (sql-ansi-statement-starters, sql-oracle-statement-starters):
8066 New variable.
fbcc67e2
MM
8067 (sql-statement-regexp, sql-beginning-of-statement)
8068 (sql-end-of-statement, sql-signum): New functions.
0757af94 8069 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
8070 (sql-show-sqli-buffer): Bug fix.
8071 (sql-interactive-mode): Store connection data as buffer local.
0757af94 8072 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
8073 with sql-interactive-mode.
8074 (sql-save-connection): Save buffer local settings.
0757af94 8075 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
8076 (sql-product-interactive): Bug fix.
8077 (sql-preoutput-hold): New variable.
8078 (sql-interactive-remove-continuation-prompt): Bug fixes.
8079 (sql-debug-redirect): New variable.
8080 (sql-str-literal): New function.
8081 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 8082 Redesign.
fbcc67e2
MM
8083 (sql-oracle-save-settings, sql-oracle-restore-settings)
8084 (sql-oracle-list-all, sql-oracle-list-table): New functions.
8085 (sql-completion-object, sql-completion-column)
8086 (sql-completion-sqlbuf): New variables.
8087 (sql-build-completions-1, sql-build-completions)
8088 (sql-try-completion): New functions.
8089 (sql-read-table-name): Use them.
8090 (sql-contains-names): New buffer local variable.
8091 (sql-list-all, sql-list-table): Use it.
8092 (sql-oracle-completion-types): New variable.
8093 (sql-oracle-completion-object, sql-sqlite-completion-object)
8094 (sql-postgres-completion-object): New functions.
8095
d4eaeab1
GM
80962011-07-06 Glenn Morris <rgm@gnu.org>
8097
8098 * window.el (pop-to-buffer): Doc fix.
8099
322b7dab 81002011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
8101
8102 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
8103
322b7dab 81042011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 8105
322b7dab 8106 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 8107
322b7dab 8108 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 8109
605dd5bf
CY
81102011-07-05 Chong Yidong <cyd@stupidchicken.com>
8111
8112 * button.el (button): Inherit from link face. Suggested by Dan
8113 Nicolaescu.
8114
7dbfa719
SM
81152011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
8116
3db614b0
SM
8117 * progmodes/gdb-mi.el: Fit in 80 columns.
8118 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
8119 switch-to-buffer.
8120
7dbfa719
SM
8121 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
8122 if imenu is simply not configured (bug#8941).
8123
919d884a
KM
81242011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
8125
8126 * allout.el (allout-post-undo-hook): New allout outline-change
8127 event hook to signal undo activity.
8128 (allout-post-command-business): Run allout-post-undo-hook if an
8129 undo just occurred.
7dbfa719
SM
8130 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
8131 * allout-widgets.el (allout-widgets-after-undo-function):
8132 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
8133 in the vicinity of an undo.
8134 (allout-widgets-mode): Include allout-widgets-after-undo-function
8135 on the new allout-post-undo-hook.
8136
450a0f09
SM
81372011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
8138
8139 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
8140 Let define-derived-mode define it.
8141 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
8142 cycles of abbrev-table inheritance (bug#8998).
8143
2de69e00
RW
81442011-07-05 Roland Winkler <winkler@gnu.org>
8145
8146 * textmodes/bibtex.el: Add support for biblatex.
8147 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
8148 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
8149 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
8150 (bibtex-entry-alist, bibtex-field-alist): New variables.
8151 (bibtex-entry-field-alist): Obsolete alias for
8152 bibtex-BibTeX-entry-alist.
8153 (bibtex-entry-alist, bibtex-field-alist): New widgets.
8154 (bibtex-set-dialect): New command.
8155 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
8156 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
8157 Bind via bibtex-set-dialect.
2de69e00
RW
8158 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
8159 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
8160 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
8161 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
8162 Define via bibtex-set-dialect.
450a0f09
SM
8163 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
8164 Obey bibtex-no-opt-remove-re.
2de69e00
RW
8165 (bibtex-vec-push, bibtex-vec-incr): New functions.
8166 (bibtex-format-entry, bibtex-field-list)
8167 (bibtex-print-help-message, bibtex-validate)
8168 (bibtex-search-entries): Use new format of bibtex-entry-alist.
8169
2dcdbdd9
SM
81702011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
8171
8172 * progmodes/compile.el (compilation-goto-locus):
8173 * net/tramp-cmds.el (tramp-append-tramp-buffers):
8174 * bs.el (bs-cycle-next, bs-cycle-previous):
8175 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
8176 * bindings.el (mode-line-other-buffer):
8177 * autoinsert.el (auto-insert):
8178 * arc-mode.el (archive-extract):
8179 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
8180
b27640fe
JB
81812011-07-05 Juanma Barranquero <lekktu@gmail.com>
8182
8183 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
8184 Fix check of `emacs-lock-unlockable-modes'.
8185 Coerce true values of `emacs-lock--try-unlocking' to t.
8186
53bbe3ad
JB
81872011-07-05 Juanma Barranquero <lekktu@gmail.com>
8188
8189 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
8190 * emacs-lock.el: New file.
8191
1d3cdbc7
JD
81922011-07-05 Julien Danjou <julien@danjou.info>
8193
8194 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
8195 than `boundp' to check if face is set.
8196
9173deec
JB
81972011-07-05 Juanma Barranquero <lekktu@gmail.com>
8198
8199 * register.el (registerv-make):
8200 * window.el (window-min-height): Fix typos in docstrings.
8201
869795d6
JD
82022011-07-05 Jan Djärv <jan.h.d@swipnet.se>
8203
9173deec 8204 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
8205 Update doc string.
8206
b768cdcd
JB
82072011-07-04 Juanma Barranquero <lekktu@gmail.com>
8208
8209 * server.el (server-execute): Catch quit and call
8210 `server-return-error' to pass the error back to emacsclient and
8211 close the connection (bug#8942).
8212
13aa217b
KM
82132011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
8214
8215 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
8216 insecure exception for current topic. Also note that auto-saves
8217 are handled differently.
8218
8219 (allout-auto-save-temporarily-disabled), (allout-just-did-undo):
8220 State variables for tracking auto-save inhibition situation.
8221
8222 (allout-write-contents-hook-handler): Rename from
8223 'allout-write-file-hook-handler', and describe how it depends on
8224 write-contents-functions sensitivity to non-nil value to prevent
8225 file write.
8226
8227 (allout-auto-save-hook-handler): Remove. auto-save does not check
8228 this in individual buffers, only in the starting buffer, so this
8229 is not the right way for us to inhibit auto-save in a buffer
8230 according to its condition.
8231
8232 (allout-mode): Use new allout-write-contents-hook-handler, and
8233 only with write-contents-functions. Remove auto-save provisions -
8234 they're implemented elsewhere.
8235
8236 (allout-before-change-handler): If undo is in progress, note that
8237 for attention of allout-post-command-business.
8238
8239 (allout-post-command-business): If the command we're following was
8240 an undo, check for change in the status of encrypted items and
8241 adjust auto-save inhibitions accordingly.
8242
8243 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
8244 according to whether there are or aren't any plain-text topics
8245 pending encryption.
8246
2dcdbdd9 8247 (allout-inhibit-auto-save-info-for-decryption):
1154d12e
JB
8248 Adjust buffer-saved-size and some allout state to inhibit auto-saves
8249 if there are plain-text topics pending encryption.
13aa217b
KM
8250
8251 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
8252 buffer-saved-size and some allout state to not inhibit auto-saves
8253 if there are no longer any plain-text topics pending encryption.
8254
0757af94
SM
8255 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
8256 No longer provide for exemption of the current topic.
13aa217b 8257
ac89b32c
JL
82582011-07-04 Juri Linkov <juri@jurta.org>
8259
8260 Add 7z operations to delete and save changed members (bug#8968).
8261 * arc-mode.el (archive-7z-expunge, archive-7z-update):
8262 New defcustoms.
8263 (archive-7z-write-file-member): New function.
8264 (archive-7z-summarize): Fix the number of dashes in the
8265 listing output.
8266
8fa39615
SM
82672011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8268
8269 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
8270 (bug#8958).
8271
2f11b3f1
CY
82722011-07-04 Chong Yidong <cyd@stupidchicken.com>
8273
d66fef2b
CY
8274 * bindings.el: Ignore next-buffer and previous-buffer in
8275 minibuffer-local-map.
8276
2f11b3f1
CY
8277 * font-lock.el (font-lock-builtin-face): Change light background
8278 color to dark slate blue (Bug#6693).
8279
f932a347
WD
82802011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
8281
8282 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
8283
c8af70e1
SM
82842011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8285
8286 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
8287 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8288 Add switch-to-buffer.
8289
f158badc
LMI
82902011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
8291
8292 * isearch.el (isearch-search-fun-function): Clarify further the
8293 meaning of the function returned.
8294
6d95bd46
MA
82952011-07-04 Michael Albinus <michael.albinus@gmx.de>
8296
8297 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
8298
8299 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
8300 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
8301 Use it.
8302 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
8303 `tramp-default-remote-path' does not exist.
8304 (tramp-send-command-and-read): New optional argument NOERROR.
8305 (tramp-open-connection-setup-interactive-shell)
8306 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
8307 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
8308 (tramp-process-sentinel): Flush also process' connection property.
8309 (tramp-sh-handle-start-file-process): Do not set process
8310 sentinel. It is done now ...
8311 (tramp-maybe-open-connection): ... here. (Bug#8929)
8312
909e6b67
MK
83132011-07-04 MON KEY <monkey@sandpframing.com>
8314
8315 * play/animate.el (animate-string): Doc fixes and allow changing
8316 the buffer name (bug#5417).
8317
83182011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
8319
c8af70e1 8320 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 8321
f34755dc
PE
83222011-07-04 Paul Eggert <eggert@cs.ucla.edu>
8323
396cec72
PE
8324 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
8325 This is simpler and helps future-proof the code.
8326 (timer-until): Use time-subtract and float-time.
08235028 8327 (timer--time-less-p): Use time-less-p.
f34755dc 8328
56e6cc31
JB
83292011-07-04 Juanma Barranquero <lekktu@gmail.com>
8330
3abb79e5
JB
8331 * type-break.el (timep): Use the value of `float-time' to avoid a
8332 byte-compiler warning.
8333
56e6cc31
JB
8334 * server.el (server-eval-and-print): Return any result, even nil.
8335
7b9430b4
PE
83362011-07-03 Paul Eggert <eggert@cs.ucla.edu>
8337
8338 * type-break.el: Accept time formats that the builtins accept.
8339 (timep, type-break-time-difference): Accept any format that
8340 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
8341 This is simpler and helps future-proof the code.
8342 (type-break-time-difference): Round rather than ignoring
8343 subseconds components.
8344
3034e9e7
LMI
83452011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8346
8347 * info.el (Info-apropos-matches): Make non-interactive, since it
8348 doesn't seem to do anything useful as a command (bug#8829).
8349
1485f4c0
CY
83502011-07-03 Chong Yidong <cyd@stupidchicken.com>
8351
8352 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 8353 Move from faces.el.
1485f4c0
CY
8354 (frame-default-terminal-background): New function.
8355
8356 * custom.el (custom-push-theme): Don't record faces in `changed'
8357 theme; this doesn't work correctly for per-frame face settings.
8358 (disable-theme): Use face-set-after-frame-default to reset faces.
8359 (custom--frame-color-default): New function.
8360
9fa3dd45
LMI
83612011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8362
c8af70e1 8363 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
8364 (bug#8769).
8365
6cbbc20c
KR
83662011-03-29 Kevin Ryde <user42@zip.com.au>
8367
8368 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8369 `perl-Test2' extend to match possible "fail #N" rep count
8370 (bug#8377).
8371
c7f98048
LMI
83722011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8373
65676592
LMI
8374 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
8375 `smtpmail-via-smtp' now returns the error instead of nil.
8376
c7f98048
LMI
8377 * isearch.el (isearch-search-fun-function): Clarify the doc string
8378 (bug#8101).
8379
56e6cc31 83802011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
8381
8382 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
8383 unnecessary spaces (bug#8987).
8384
2b216704
LMI
83852011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8386
8387 * net/network-stream.el (open-network-stream): Use the
8388 :end-of-capability command thoughout.
8389
83902011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
8391
8392 * net/network-stream.el (open-network-stream): Add the
8393 :end-of-capability command parameter, used by pop3.el.
8394
36adf6ce
LMI
83952011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8396
1ca0da0e
LMI
8397 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
8398
fc00f69c
LMI
8399 * fringe.el (fringe-query-style): Remove redundant text " (type ?
8400 for list)" (bug#6475).
8401
28fd8759 8402 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 8403 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
8404 an error (bug#6297).
8405
0dd8b6da
LMI
8406 * man.el (Man-reference-regexp): Allow matching possible
8407 word-wrapped references (bug#6289).
8408
ce1438d6
LMI
8409 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
8410 for consistency with the other vc buffers (bug#6197).
8411 (vc-checkin): Ditto.
8412
8413 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
8414
36adf6ce
LMI
8415 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
8416
e83cc1f7
LMI
84172011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
8418
8a20ca4c
LMI
8419 * custom.el (defcustom): Clarify that :set is only used in the
8420 Customize user interface (bug#6089).
8421
83319045
LMI
8422 * progmodes/flymake.el (flymake-mode): If the buffer isn't
8423 associated with a file, refuse to run instead of erroring out
8424 (bug#6084).
8425
a8392169
LMI
8426 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
8427 the doc string, since it appears that using `fill-column' always
8428 controls the width (bug#7845).
8429
e83cc1f7
LMI
8430 * simple.el (shell-command-on-region): Say where the error output
8431 went if `shell-command-default-error-buffer' is set (bug#6857).
8432
e47ca23b
KM
84332011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
8434
8435 * allout.el (allout-yank-processing): Adjust cursor position for
8436 backwards-deleted space.
8437
8438 (allout-rebullet-heading): Register changes with
8439 allout-exposure-changed-hook, so the modified topic is properly
8440 decorated.
8441
5cf56143
LMI
84422011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
8443
08549772
LMI
8444 * minibuffer.el (completion-in-region): Document PREDICATE
8445 (bug#7136).
8446
48e96771
LMI
8447 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
8448 of keyword/argument pairs (bug#6904).
8449
c8af70e1
SM
8450 * replace.el (multi-occur):
8451 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 8452
e17d05e2
LMI
84532011-07-02 Drew Adams <drew.adams@oracle.com>
8454
8455 * dired.el (dired-mark-if): Make the message about whether it's
8456 marking or unmarking clearer (bug#8523).
8457
063b0e45
LMI
84582011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
8459
8460 * disp-table.el (display-table-print-array): New function.
8461 (describe-display-table): Use it to print the vectors more pretty
8462 (Bug#8859).
8463
28545e04
MR
84642011-07-02 Martin Rudalics <rudalics@gmx.at>
8465
8466 * window.el (window-state-get-1): Don't assign clone numbers.
8467 Add clone-of item to list of window parameters.
8468 (window-state-put-2): Don't process clone numbers.
8469 (display-buffer-alist): Fix doc-string.
8470
3349e122
SM
84712011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
8472
8473 * subr.el (remq): Don't allocate if it's not needed.
8474 (keymap--menu-item-binding, keymap--menu-item-with-binding)
8475 (keymap--merge-bindings): New functions.
8476 (keymap-canonicalize): Use them to refine the canonicalization.
8477 * minibuffer.el (minibuffer-local-completion-map)
8478 (minibuffer-local-must-match-map): Move initialization from C.
8479 (minibuffer-local-filename-completion-map): Move initialization from C;
8480 don't inherit from anything here.
8481 (minibuffer-local-filename-must-match-map): Make obsolete.
8482 (completing-read-default): Use make-composed-keymap to combine
8483 minibuffer-local-filename-completion-map with either
8484 minibuffer-local-must-match-map or
8485 minibuffer-local-filename-completion-map.
8486
d224ac83
GM
84872011-07-01 Glenn Morris <rgm@gnu.org>
8488
3de63bf8
GM
8489 * type-break.el (type-break-time-sum): Use dolist.
8490
d224ac83
GM
8491 * textmodes/flyspell.el (flyspell-word-search-backward):
8492 Replace CL function.
8493
1a1e3f32
SM
84942011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
8495
fe3f64d5
SM
8496 * mouse.el (mouse--strip-first-event): New function.
8497 (function-key-map): Use it to map fringe clicks to normal clicks
8498 by default.
8499
eb604e34
SM
8500 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
8501 (vc-bzr-revision-completion-table): Add support for annotate and date.
8502
1a1e3f32
SM
8503 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
8504 inherit from parent.
8505
5bd35902
LMI
85062011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
8507
ace6c69c 8508 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 8509 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 8510
191e2bed
LMI
8511 * dired.el (dired-mode): Fix up the doc string as suggested by
8512 Drew Adams (bug#8817).
8513
5bd35902
LMI
8514 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
8515 cookie, since the manual says that it should be possible to add
8516 this function to `find-file-hook' (bug#8709).
8517
eee8207a
TZ
85182011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
8519
8520 * progmodes/cfengine.el: Moved all cfengine3.el functionality
8521 here. Noted Ted Zlatanov as the maintainer.
8522 (cfengine-common-settings, cfengine-common-syntax): New functions
8523 to set up common things between `cfengine-mode' and
8524 `cfengine3-mode'.
8525 (cfengine3-mode): New mode.
8526 (cfengine3-defuns cfengine3-defuns-regex
8527 (cfengine3-class-selector-regex cfengine3-category-regex)
8528 (cfengine3-vartypes cfengine3-font-lock-keywords)
8529 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 8530 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 8531
36b148cf
MA
85322011-07-01 Michael Albinus <michael.albinus@gmx.de>
8533
8534 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
8535
8536 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
8537
0bf4ba9a
MR
85382011-07-01 Martin Rudalics <rudalics@gmx.at>
8539
8540 * window.el (same-window-buffer-names, same-window-regexps)
8541 (same-window-p, special-display-frame-alist)
8542 (special-display-popup-frame, special-display-function)
8543 (special-display-buffer-names, special-display-regexps)
8544 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
8545 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
8546 (split-window-preferred-function, split-height-threshold)
8547 (split-width-threshold, even-window-heights)
8548 (display-buffer-mark-dedicated, window-splittable-p)
8549 (split-window-sensibly, window-safely-shrinkable-p):
8550 Un-obsolete.
8551 (display-buffer): Don't spread args with function specifier
8552 because special-display-popup-frame won't like it.
8553
35837f51
PE
85542011-07-01 Paul Eggert <eggert@cs.ucla.edu>
8555
d0672f86
PE
8556 Time-stamp simplifications and fixes.
8557 These improve accuracy slightly, and future-proof the code
8558 against some potential changes to current-time format.
8559
b9444d97
PE
8560 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
8561 by using time-since and float-time.
8562
0ef923dc
PE
8563 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
8564 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
8565 + NNN microseconds".
8566
2f81380d
PE
8567 * type-break.el (type-break-time-sum): Rewrite using time-add.
8568
845b5c3e
PE
8569 * play/hanoi.el (hanoi-current-time-float): Remove.
8570 All uses replaced by float-time.
8571
ee6f1be0
PE
8572 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
8573 This yields a more-accurate answer.
8574 (rng-time-to-float): Remove; no longer needed.
8575
fe955043
PE
8576 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
8577
5777162a
PE
8578 * calendar/timeclock.el (timeclock-seconds-to-time):
8579 Defalias to seconds-to-time, since they're the same thing.
8580
3103f8b6 8581 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 8582 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
8583 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
8584
0e61a35f
SM
85852011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
8586
8587 * window.el (bury-buffer): Don't iconify the only frame.
8588 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
8589 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
8590
ddd63a1e
CY
85912011-07-01 Chong Yidong <cyd@stupidchicken.com>
8592
0e61a35f
SM
8593 * eshell/em-smart.el (eshell-smart-display-navigate-list):
8594 Add mouse-yank-primary.
ddd63a1e 8595
055f4923
TZ
85962011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
8597
8598 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
8599
6a2fb145
SM
86002011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
8601
8602 * emacs-lisp/find-func.el (find-library--load-name): New fun.
8603 (find-library-name): Use it to find relative load names when provided
8604 absolute file name (bug#8803).
8605
fd4983f2
LMI
86062011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
8607
887d14ad
LMI
8608 * textmodes/flyspell.el (flyspell-word): Consider words that
8609 differ only in case as potential doublons (bug#5687).
8610
c53dc7fc
LMI
8611 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
8612 Remove two rather uninteresting debugging-like messages to make
8613 debbugs.el more silent.
8614
fd4983f2
LMI
8615 * comint.el (comint-password-prompt-regexp): Accept "Response" as
8616 a password-like phrase.
8617
7a71b18d 86182011-06-30 Masatake YAMATO <yamato@redhat.com>
b14c0c55
AM
8619
8620 * progmodes/cc-guess.el: New file.
8621
6a2fb145 8622 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
8623
8624 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
8625 derived from `c-basic-common-init'.
8626
8627 * progmodes/cc-mode.el (top-level): Require cc-guess.
8628 (c-basic-common-init): Use `cc-choose-style-for-mode'.
8629
1fa280a3
LM
86302011-06-30 Lawrence Mitchell <wence@gmx.li>
8631
8632 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
8633
e6597158
AM
86342011-06-30 Alan Mackenzie <acm@muc.de>
8635
1fa280a3
LM
8636 * progmodes/cc-engine.el (c-guess-continued-construct):
8637 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
8638 lock is disabled. Name this case as "CASE G".
8639
68ba37fb
KM
86402011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
8641
8642 * allout.el (allout-yank-processing): Fix injection of extra space
8643 between bullet and non-whitespace character in first topic when
8644 pasting, ensuring that the actual spacing in the pasted topic
8645 following the bullet char is preserved. This extra space was
8646 causing pasted encrypted topics to get a decrypted status even
8647 when the content was actually still encrypted. Now the decryption
8648 status from before the paste is preserved.
8649
8650 (allout-flag-region): Set all allout overlays so they evaporate
8651 when reduced to zero length (evanescent), to prevent overlay
8652 leakage.
8653
887a0b34
GM
86542011-06-30 Glenn Morris <rgm@gnu.org>
8655
94b9acce
GM
8656 * w32-fns.el (w32-charset-info-alist): Declare.
8657
1d9b46d4
GM
8658 * find-dired.el (find-grep-options): Simplify.
8659
cc232200
GM
8660 * term/ns-win.el (ns-set-resource): Declare.
8661
28e77c46
GM
8662 * ses.el (row, col): Declare dynamic variables honestly.
8663
887a0b34
GM
8664 * textmodes/reftex-parse.el (index-tags): Declare.
8665
658d8eb8
CY
86662011-06-30 Chong Yidong <cyd@stupidchicken.com>
8667
8668 * cus-edit.el (customize-push-and-save): New function.
8669
8670 * files.el (hack-local-variables-confirm): Use it.
8671
1fa280a3
LM
8672 * custom.el (load-theme): New arg NO-CONFIRM.
8673 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
8674 (custom-enabled-themes): Doc fix.
8675
8676 * cus-theme.el (customize-create-theme)
8677 (custom-theme-merge-theme): Callers to load-theme changed.
8678
bb617717
LMI
86792011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
8680
d61bdd5d
LMI
8681 * thingatpt.el (thing-at-point-short-url-regexp): Require that
8682 short URLs have at least one dot in them (bug #7614).
8683
bb617717
LMI
8684 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
8685 nil, because using a pty is apparently too slow (bug #895).
8686
2f31f37a
LMI
86872011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
8688
8689 * mail/sendmail.el (sendmail-query-once): New function.
8690 (sendmail-query-once-function): New variable.
8691
3076b24e
GM
86922011-06-29 Glenn Morris <rgm@gnu.org>
8693
faf2a174
GM
8694 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
8695
3076b24e
GM
8696 * ses.el (top-level): Require cl when compiling.
8697 (ses-set-localvars): Fix error statement.
8698 Call it at compile time to silence a storm of warnings.
8699
5386012d
MR
87002011-06-29 Martin Rudalics <rudalics@gmx.at>
8701
8702 * window.el (normalize-live-buffer): Rename to
8703 window-normalize-buffer.
8704 (normalize-live-frame): Rename to window-normalize-frame.
8705 (normalize-any-window): Rename to window-normalize-any-window.
8706 (normalize-live-window): Rename to window-normalize-live-window.
8707 (make-window-atom): Rename to window-make-atom.
8708 (window-resize-reset): Rename to window--resize-reset.
8709 (window-resize-reset-1): Rename to window--resize-reset-1.
8710 (resize-mini-window): Rename to window--resize-mini-window.
8711 (resize-subwindows-skip-p): Rename to
8712 window--resize-subwindows-skip-p.
8713 (resize-subwindows-normal): Rename to
8714 window--resize-subwindows-normal.
8715 (resize-subwindows): Rename to window--resize-subwindows.
8716 (resize-other-windows): Rename to window--resize-siblings.
8717 (resize-this-window): Rename to window--resize-this-window.
8718 (resize-root-window): Rename to window--resize-root-window.
8719 (resize-root-window-vertically): Rename to
8720 window--resize-root-window-vertically.
8721 (normalize-buffer-to-display): Rename to
8722 window-normalize-buffer-to-display.
8723 (normalize-buffer-to-switch-to): Rename to
8724 window-normalize-buffer-to-switch-to.
8725 Correspondingly update all callers of the functions listed
8726 above.
8727 (display-buffer-alist, display-buffer-normalize-arguments)
8728 (display-buffer-normalize-options, display-buffer)
8729 (display-buffer-alist-set): Use "function" instead of
8730 "fun-with-args".
8731
1176868d
CY
87322011-06-28 Chong Yidong <cyd@stupidchicken.com>
8733
8734 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
8735 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
8736 debbugs.gnu.org. Mention acknowledgment email.
8737
20a7a65f
LMI
87382011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
8739
8740 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
8741 buffer multibyteness, since it shouldn't matter.
8742
5f45cca5
MR
87432011-06-28 Martin Rudalics <rudalics@gmx.at>
8744
8745 * window.el (display-buffer-in-side-window): Handle dedicated
8746 windows as in display-buffer-reuse-window.
8747 (display-buffer-normalize-alist): Use value of override
8748 specifier.
8749 (display-buffer-normalize-specifiers): Use value of
8750 other-window-means-other-frame specifier.
8751 (display-buffer-alist): Rewrite some texts in widgets.
8752 (display-buffer): Spread arguments when calling function
8753 specified by fun-with-args.
8754
ad85fe1f
DD
87552011-06-28 Deniz Dogan <deniz@dogan.se>
8756
1fa280a3
LM
8757 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
8758 Unnest `let'.
da68c4c8 8759
ad85fe1f
DD
8760 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
8761 selectors (Bug#5732).
ec49bd31 8762 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 8763
a08cc025
JA
87642011-06-27 Jari Aalto <jari.aalto@cante.net>
8765
8766 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
8767 (eshell-ls-date-format): New defcustom.
8768 (eshell-ls-file): Use it.
8769
e2b551c5
SM
87702011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
8771
8772 * help-fns.el (describe-variable): Fix message for terminal-local vars.
8773
8982b231
KY
87742011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
8775
8776 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
8777 (ange-ftp-make-tmp-name): New arg.
8778 (ange-ftp-file-local-copy): Use it.
8779
36c9fa27
J
87802011-06-27 Jambunathan K <kjambunathan@gmail.com>
8781
8782 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
8783 no-conversion (Bug#8870).
8784
d68443dc
MR
87852011-06-27 Martin Rudalics <rudalics@gmx.at>
8786
8787 * window.el (window-right, window-left, window-child)
8788 (window-child-count, window-last-child)
8789 (window-iso-combination-p, walk-window-tree-1)
8790 (window-atom-check-1, window-tree-1, delete-window)
8791 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
8792 new naming conventions - window-vchild, window-hchild,
8793 window-next and window-prev are now called window-top-child,
8794 window-left-child, window-next-sibling and window-prev-sibling
8795 respectively.
d615d6d2
MR
8796 (resize-window-reset): Rename to window-resize-reset.
8797 (resize-window-reset-1): Rename to window-resize-reset-1.
8798 (resize-window): Rename to window-resize.
8799 (window-min-height, window-min-width)
8800 (resize-mini-window, resize-this-window, resize-root-window)
8801 (resize-root-window-vertically, adjust-window-trailing-edge)
8802 (enlarge-window, shrink-window, maximize-window)
8803 (minimize-window, delete-window, quit-restore-window)
8804 (split-window, balance-windows, balance-windows-area-adjust)
8805 (balance-windows-area, window-state-put-2)
8806 (display-buffer-even-window-sizes, display-buffer-set-height)
8807 (display-buffer-set-width, set-window-text-height)
8808 (fit-window-to-buffer): Rename all "resize-window" prefixed
8809 calls to use the "window-resize" prefix convention.
8810 (display-buffer-alist): Fix symbol for label specifier.
8811 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
8812 corresponding specifier.
8813 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 8814
b6458526
VB
88152011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
8816
8817 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
8818 convention.
8819 (ses-call-printer): Does not pass an empty string to formatter when the
8820 cell is empty to keep from barking printer Calc math-format-value.
8821
d31fd9ac
RS
88222011-06-27 Richard Stallman <rms@gnu.org>
8823
43d5bf84
RS
8824 * battery.el (battery-mode-line-limit): New variable.
8825 (battery-update): Handle it.
8826
d31fd9ac
RS
8827 * mail/rmailmm.el (rmail-mime-process-multipart):
8828 Handle truncated messages.
8829
819a6054
GM
88302011-06-27 Glenn Morris <rgm@gnu.org>
8831
8832 * progmodes/flymake.el (flymake-err-line-patterns):
8833 Allow for column numbers in the ant/javac pattern. (Bug#8866)
8834
cedc73f2
VB
88352011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
8836
819a6054 8837 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
8838 (ses--clean-!, ses--clean-_): New functions.
8839 (ses-range): Add configurability of readout order, and conversion
8840 to Calc vector.
8841
5e5d49b6
VB
8842 * ses.el (ses-repair-cell-reference-all): New function.
8843 (ses-cell-symbol): Set macro as safe, so that it can be used in
8844 formulas.
8845
56e6cc31 8846 * ses.el: Update cycle detection algorithm.
90ca8b49 8847 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 8848 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
8849 (ses-set-localvars): New function.
8850 (ses-make-cell): Add property-list as a cell element.
8851 (ses-cell-property-get-fun, ses-cell-property-get)
8852 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
8853 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
8854 New functions.
90ca8b49
VB
8855 (ses-cell-property-set, ses-cell-property-pop)
8856 (ses-cell-property-get-handle): New macro.
8857 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
8858 New aliases, used for code readability.
8859 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
8860 cycle detection.
8861 (ses-self-reference-early-detection): New defcustom.
fac916bf 8862 (ses-formula-references): Robustify against self-referring cells.
90ca8b49
VB
8863 (ses-mode): Use ses-set-localvars.
8864 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
8865 before lauching the update processing.
8866 (ses-initialize-Dijkstra-attempt): New function.
8867 (ses-recalculate-cell): Update for cycle detection based on
8868 Dijkstra algorithm.
8869
2bb63e81
VB
8870 * ses.el: Fix commenting and indenting convention.
8871
c9d29fb8
SM
88722011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
8873
8874 * bs.el (bs-cycle-next): Complete last change.
8875
d8e4b68b
JB
88762011-06-27 Drew Adams <drew.adams@oracle.com>
8877
8878 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
8879
40098786
LMI
88802011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
8881
c9d29fb8
SM
8882 * net/network-stream.el (network-stream-open-starttls):
8883 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
8884 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
8885
40098786
LMI
8886 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
8887 to binary to possibly avoid line encoding issues on Windows (among
8888 other things).
8889
468d09d4
LMI
88902011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
8891
8892 * net/network-stream.el (open-network-stream): Return an :error
8893 saying what the problem was, if possible.
8894
8895 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
8896 server.
8897
8898 * net/network-stream.el (network-stream-open-starttls): If we
8899 wanted to use STARTTLS, and the server offered it, but we weren't
8900 able to because we had no STARTTLS support, then close the connection.
8901 (open-network-stream): Return an :error element, if present.
8902
16f07dd7
CY
89032011-06-26 Chong Yidong <cyd@stupidchicken.com>
8904
88821ca0
CY
8905 * hl-line.el (hl-line-sticky-flag): Doc fix.
8906 (global-hl-line-sticky-flag): New option (Bug#8323).
8907 (global-hl-line-highlight): Obey it.
8908
16f07dd7
CY
8909 * vc/vc.el (vc-revert-show-diff): Default to t.
8910
6b5ccddf
KM
89112011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
8912
c9d29fb8
SM
8913 * allout-widgets.el (allout-widgets-post-command-business):
8914 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
8915 undecorated when an isearch is continued past, and isearch
8916 automatically collapses them. This leads to "widget leaks", where
8917 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
8918 hidden widgets can slow down cursor travel, substantially.
8919 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
8920 so we're doing without this nicety.
8921
8922 (allout-widgets-tally-string): Don't try to do a hash-table-count
8923 of allout-widgets-tally when it's nil. This eliminates spurious "Error
8924 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
8925 *Messages* when allout-widgets-maintain-tally is t.
8926
355f2e07
MR
89272011-06-26 Martin Rudalics <rudalics@gmx.at>
8928
8929 * window.el (display-buffer-normalize-argument): Rename to
8930 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
8931 LABEL argument. Respect special-display-function when popping up
8932 a new frame. Fix code searching for a window showing the buffer
8933 on another frame.
c9d29fb8
SM
8934 (display-buffer-normalize-specifiers):
8935 Call display-buffer-normalize-arguments.
355f2e07
MR
8936 (display-buffer-in-window): Don't undedicate the window if its
8937 buffer remains the same.
8938 Reported by Drew Adams <drew.adams@oracle.com>.
8939 (display-buffer-alist): Add choice for same-window macro
8940 specfier.
8941 (display-buffer): Mention special meaning of LABEL argument in
8942 doc-string. Fix quoting. Don't pop up a new frame even as
8943 fallback.
8944
7ca8fc42
JB
89452011-06-26 Juanma Barranquero <lekktu@gmail.com>
8946
8947 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
8948 avoid deleting the current window in some cases (bug#8911).
8949
bc312254
AS
89502011-06-26 Andreas Schwab <schwab@linux-m68k.org>
8951
8952 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
8953 (Bug#8934)
8954
2db18f3f
LMI
89552011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
8956
c9d29fb8
SM
8957 * net/network-stream.el (network-stream-open-starttls):
8958 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
8959 (network-stream-open-tls): Ditto.
8960
6302e0d3
LL
89612011-06-26 Leo Liu <sdl.web@gmail.com>
8962
8963 * register.el (registerv): New struct.
8964 (registerv-make): New function.
c9d29fb8
SM
8965 (jump-to-register, describe-register-1, insert-register):
8966 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
8967 struct. (Bug#8415)
8968
5fdd4046
CY
89692011-06-26 Chong Yidong <cyd@stupidchicken.com>
8970
2afef60a
CY
8971 * vc/vc.el (vc-revert-show-diff): New defcustom.
8972 (vc-diff-internal): New arg specifying diff buffer.
8973 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
8974 reuse an existing *vc-diff* buffer (Bug#8927).
8975
5fdd4046
CY
8976 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
8977
e93db24a
GM
89782011-06-26 Glenn Morris <rgm@gnu.org>
8979
8980 * progmodes/f90.el (f90-critical-indent): New option.
8981 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
8982 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
8983 (f90-mode): Doc fix.
8984 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
8985 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
8986 (f90-beginning-of-block, f90-next-block, f90-indent-region)
8987 (f90-match-end): Handle block, critical.
8988
eefff499
GM
89892011-06-25 Glenn Morris <rgm@gnu.org>
8990
f6ba4cc9
GM
8991 * calendar/diary-lib.el (diary-included-files): Doc fix.
8992 (diary-include-files): New function, extracted from
8993 diary-include-other-diary-files and diary-mark-included-diary-files.
8994 (diary-include-other-diary-files, diary-mark-included-diary-files):
8995 Just call diary-include-files.
8996 (diary-mark-entries): Reset diary-included-files on first call.
8997
16712304
GM
8998 * calendar/diary-lib.el (diary-mark-entries)
8999 (diary-mark-included-diary-files):
9000 Visit included diary-files in temp buffers.
9001
5d8e0d43
GM
9002 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
9003 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
9004 (f90-start-block-re, f90-imenu-generic-expression)
9005 (f90-looking-at-program-block-start, f90-no-block-limit):
9006 Add support for submodules.
9007
ccf7a5d5
GM
9008 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
9009 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 9010
11fdef7d 90112011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
9012
9013 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
9014 buffer-file-type before setting its value, to avoid disastrous
eefff499 9015 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 9016
74f53697
JB
90172011-06-25 Juanma Barranquero <lekktu@gmail.com>
9018
9019 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
9020
9021 * ses.el (ses-unload-function):
9022 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
9023
9024 * proced.el (proced-unload-function):
9025 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
9026
18a4ce5e
AR
90272011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
9028
9029 * server.el (server-create-window-system-frame): Add parameters arg.
9030 (server-process-filter): Doc fix. Handle frame-parameters.
9031
519d22cc
JB
90322011-06-25 Juanma Barranquero <lekktu@gmail.com>
9033
9034 Fix bug#8730, bug#8781.
9035
9036 * loadhist.el (unload--set-major-mode): New function.
9037 (unload-feature): Use it.
9038
9039 * progmodes/python.el (python-after-info-look): Add autoload cookie.
9040 (python-unload-function): New function.
9041
c206f5b0
SM
90422011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
9043
9044 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
9045
f9ad64f3
GS
90462011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
9047
9048 * net/browse-url.el (browse-url-firefox-program): Add icecat to
9049 the candidates list.
9050
7d0da90e
JB
90512011-06-24 Juanma Barranquero <lekktu@gmail.com>
9052
9053 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
9054
14b4e83d
RS
90552011-06-23 Richard Stallman <rms@gnu.org>
9056
9057 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
9058 (rmail-variables): Set next-error-move-function.
9059 (rmail-what-message): Take argument POS.
9060 (rmail-next-error-move): New function.
9061
273d2baf
SM
90622011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
9063
9064 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
9065 messages for adjacent non-terminals.
9066
56c2cc9a
RS
90672011-06-23 Richard Stallman <rms@gnu.org>
9068
9069 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 9070 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
9071 (rmail-start-mail): Don't specify use of rmail-mail-return;
9072 that's done by mail-bury now.
9073 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 9074
d59eb518
MA
90752011-06-23 Michael Albinus <michael.albinus@gmx.de>
9076
9077 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
9078 SIZE is a number.
9079
02cfc6d6
MR
90802011-06-23 Martin Rudalics <rudalics@gmx.at>
9081
9082 * window.el (get-lru-window, get-mru-window)
9083 (get-largest-window): Never return a minibuffer window.
9084 (display-buffer-pop-up-window): Fix a bug that could lead to
9085 reusing the minibuffer window.
9086 (display-buffer): Pass original specifier argument to
9087 display-buffer-function instead of the normalized one.
9088 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
9089
4e323265
LL
90902011-06-22 Leo Liu <sdl.web@gmail.com>
9091
9092 * minibuffer.el (completing-read-function)
9093 (completing-read-default): Move from minibuf.c
9094
7a70468f
RS
90952011-06-22 Richard Stallman <rms@gnu.org>
9096
50718fc2
RS
9097 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
9098 to Rmail even if not started by a special Rmail command.
9099
7a70468f
RS
9100 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
9101 Copy the buffer currently showing just one message.
9102
297dde5a
RW
91032011-06-22 Roland Winkler <winkler@gnu.org>
9104
9105 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
9106 (bibtex-clean-entry): First delete the old key so that a
9107 customized algorithm for generating the new key does not get
9108 confused by the old key.
9109 (bibtex-url): Obey regexp of first step.
9110 (bibtex-search-entries): Do not use add-to-list with local
9111 list-var.
9112
97bb1093
LMI
91132011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
9114
9115 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
9116 stored a user name, then query for the password first, instead of
9117 waiting for SMTP to give an error message and the trying again.
9118
1c0f1a19
JD
91192011-06-22 Lawrence Mitchell <wence@gmx.li>
9120
9121 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
9122 BUFFER in call-process.
9123
396f7c9d
LMI
91242011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
9125
9126 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
9127 QUIT twice.
ddb7ffee
LMI
9128 (smtpmail-try-auth-methods): Require user name and password from
9129 auth-source.
396f7c9d 9130
8998d1b3
MR
91312011-06-22 Martin Rudalics <rudalics@gmx.at>
9132
9133 * window.el (display-buffer-default-specifiers)
9134 (display-buffer-alist): Remove entries for pop-up-frame-alist.
9135 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 9136 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
9137
9138 * frame.el (pop-up-frame-alist, pop-up-frame-function)
9139 (special-display-frame-alist, special-display-popup-frame):
9140 Remove duplicate declarations. These are now in window.el.
9141
4ea31e07
LMI
91422011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9143
c9d29fb8
SM
9144 * mail/smtpmail.el (smtpmail-via-smtp):
9145 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
9146 server supports it. SMTP servers that support STARTTLS commonly
9147 require it.
9148
9149 * net/network-stream.el (network-stream-open-starttls): Support
9150 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 9151 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 9152
95f41d9a
LMI
9153 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
9154 upgrades with `open-network-stream', and rely solely on
9155 auth-source for all credentials. Big changes throughout the file,
9156 but in particular:
c9d29fb8
SM
9157 (smtpmail-auth-credentials): Remove.
9158 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
9159 (smtpmail-via-smtp): Check for servers saying they want AUTH after
9160 MAIL FROM, too.
95f41d9a 9161
c9d29fb8
SM
9162 * net/network-stream.el (network-stream-open-starttls):
9163 Provide support for client certificates both for external and built-in
4ea31e07
LMI
9164 STARTTLS.
9165 (auth-source): Require.
9166 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
9167 (network-stream-certificate): Change cert-cert to cert and
9168 cert-key to key.
4ea31e07 9169
065ec2c7
MA
91702011-06-21 Michael Albinus <michael.albinus@gmx.de>
9171
9172 * net/tramp-cache.el (top): Don't load the persistency file when
9173 "emacs -Q" has been called.
9174
cd93b359
DR
91752011-06-21 Tim Harper <timcharper@gmail.com>
9176
d8e4b68b
JB
9177 * term/ns-win.el (ns-initialize-window-system):
9178 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
9179 resource to NO as it is not yet supported by the NS port.
9180
ae9c0411
JB
91812011-06-21 Juanma Barranquero <lekktu@gmail.com>
9182
9183 * misc.el (list-dynamic-libraries--refresh): Compute header here...
9184 (list-dynamic-libraries): ...not here.
9185
7f3f739f
LL
91862011-06-21 Leo Liu <sdl.web@gmail.com>
9187
9188 * subr.el (sha1): Implement sha1 using secure-hash.
9189
327c8fb1
MR
91902011-06-21 Martin Rudalics <rudalics@gmx.at>
9191
9192 * window.el (display-buffer-alist): In default value do not
9193 enforce searching a window on any but the selected frame.
9194 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
9195 (display-buffer-select-window): Remove function.
9196 (display-buffer-in-window): When a window on another frame gets
9197 reused, do not select it any more but just raise its frame if
9198 necessary (Bug#8851) and (Bug#8856).
9199 (display-buffer-normalize-options): Handle pop-up-frames related
9200 options more faithfully.
9201 (pop-to-buffer): Don't rely on `display-buffer' selecting the
9202 window if it is on another frame.
c9d29fb8
SM
9203 (display-buffer-alist, display-buffer-default-specifiers):
9204 Don't make new frame unsplittable by default.
9e9de014
MR
9205 (display-buffer-normalize-argument): Fix doc-string typo and use
9206 'same-frame-other-window instead of 'other-window when associating
9207 with display-buffer-macro-specifiers.
327c8fb1 9208
7cf3f556
VB
92092011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
9210
9211 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
9212 New functions.
9213 (5x5-mode-map, 5x5-mode-menu): Bind them.
9214 (5x5-draw-grid): Tweak the solver's rendering.
9215
60a406cf
SM
92162011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9217
9218 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
9219 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
9220
d8e4b68b 92212011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
9222
9223 * menu-bar.el: Use function variable instead of switch-to-buffer.
9224 (menu-bar-select-buffer-function): New variable.
60a406cf 9225 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 9226
478d6f95
SM
92272011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9228
9229 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
9230 variable's status.
9231
ca530739
JD
92322011-06-20 Jan Djärv <jan.h.d@swipnet.se>
9233
9234 * x-dnd.el (x-dnd-version-from-flags)
9235 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
9236 and long as number (Bug#8899).
9237 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
9238
bcd70d97
SM
92392011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
9240
60a406cf 9241 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
9242 (completion-try-completion, completion-all-completions): Compute the
9243 metadata argument if it's missing; make it optional (bug#8795).
9244
60a406cf 9245 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
9246 (widget-complete): Use new :completion-function property.
9247 (widget-completions-at-point): New function.
9248 (default): Use :completion-function instead of :complete.
60a406cf
SM
9249 (widget-default-completions): Rename from widget-default-complete;
9250 Rewrite.
bcd70d97
SM
9251 (widget-string-complete, widget-file-complete, widget-color-complete):
9252 Remove functions.
9253 (file, symbol, function, variable, coding-system, color):
9254 * international/mule-cmds.el (default-input-method, charset)
9255 (language-info-custom-alist):
9256 * cus-edit.el (face): Use new property :completions.
9257
9258 * progmodes/pascal.el (pascal-completions-at-point): New function.
9259 (pascal-mode): Use it.
9260 (pascal-mode-map): Use completion-at-point.
9261 (pascal-toggle-completions): Make obsolete.
9262 (pascal-complete-word, pascal-show-completions):
9263 * progmodes/octave-mod.el (octave-complete-symbol):
9264 Redefine as obsolete alias.
9265 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
9266 Signal absence of completion info for old Octave,
9267 (inferior-octave-complete): Redefine as obsolete alias.
9268 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
9269 (meta-completions-at-point): Rename from meta-complete-symbol and
9270 adapt it for use on completion-at-point-functions.
9271 (meta-common-mode): Use it.
9272 (meta-looking-at-backward, meta-match-buffer): Remove.
9273 (meta-complete-symbol): Redefine as obsolete alias.
9274 (meta-common-mode-map): Use completion-at-point.
9275 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
9276 (makefile-mode-map): Use completion-at-point.
9277 (makefile-completions-at-point): Rename from makefile-complete and
9278 adapt it for use on completion-at-point-functions.
9279 (makefile-mode): Use it.
9280 (makefile-complete): Redefine as obsolete alias.
9281
aebf69c8
DD
92822011-06-20 Deniz Dogan <deniz@dogan.se>
9283
9284 * net/rcirc.el: Delete trailing whitespaces once and for all.
9285
bfbbb27d
DC
92862011-06-20 Daniel Colascione <dan.colascione@gmail.com>
9287
9288 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
9289
d264a46b
CY
92902011-06-19 Chong Yidong <cyd@stupidchicken.com>
9291
4ca009e5
CY
9292 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
9293
d264a46b
CY
9294 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
9295
fbf5b3ce
MR
92962011-06-19 Martin Rudalics <rudalics@gmx.at>
9297
9298 * window.el (display-buffer-other-window-means-other-frame):
9299 Call display-buffer-normalize-alist.
9300 (display-buffer-normalize-specifiers-1): Rename to
9301 display-buffer-normalize-argument. New argument other-frame.
9302 Rewrite.
9303 (display-buffer-normalize-specifiers-2): Rename to
9304 display-buffer-normalize-options.
9305 (display-buffer-normalize-alist-1): New function.
9306 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
9307 display-buffer-normalize-alist.
9308 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
9309 (display-buffer-normalize-options-inhibit): New variable.
9310 (display-buffer-normalize-specifiers): Rewrite calling
9311 display-buffer-normalize-alist,
9312 display-buffer-normalize-argument, and
9313 display-buffer-normalize-options. Don't call the latter if
9314 display-buffer-normalize-options-inhibit is non-nil.
9315 (frame-auto-delete): New option.
9316 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
9317 (window-list-no-nils, window-state-ignored-parameters)
9318 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
9319 (window-state-put-1, window-state-put-2, window-state-put):
9320 New functions.
9a028c23
MR
9321 (display-buffer-normalize-options): Move special-display-p group
9322 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 9323
6d10d800
CY
93242011-06-18 Chong Yidong <cyd@stupidchicken.com>
9325
6420d28b
CY
9326 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
9327 groups (Bug#8776).
9328 (rx-submatch-n): New function.
9329 (rx): Document it.
9330
ddb8b596
CY
9331 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
9332 (Bug#8768).
9333
9334 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
9335
77080289
CY
9336 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
9337
61dfb316
CY
9338 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
9339 anytime existing face settings are present (Bug#8889).
9340
6d10d800
CY
9341 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
9342 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
9343 Remove unused argument.
9344
be3fb2b8
MR
93452011-06-18 Martin Rudalics <rudalics@gmx.at>
9346
bcd70d97
SM
9347 * window.el (display-buffer-default-specifiers):
9348 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
9349 pop-up-window-min-width, and another reuse-window specifier
9350 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
9351 (display-buffer-normalize-specifiers-2):
9352 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
9353 pop-up-windows is unset. Add a reuse-window specifier for the
9354 case popping up a new window fails.
9355 (special-display-popup-frame): Remove double quoting.
28dec25a 9356 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 9357
1c6d8c76
SM
93582011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
9359
9360 * shell.el (shell-completion-vars): Set pcomplete-termination-string
9361 according to comint-completion-addsuffix.
9362
9363 * pcomplete.el: Convert to lexical binding and fix bug#8819.
9364 (pcomplete-suffix-list): Mark as obsolete.
9365 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
9366 pcomplete-seen in the closure.
9367 (pcomplete-comint-setup): Setup completion-at-point as well.
9368 (pcomplete--entries): New function.
9369 (pcomplete--env-regexp): New var.
9370 (pcomplete-entries): Rewrite to work with partial-completion and
9371 without relying on pcomplete-suffix-list.
9372 (pcomplete-pare-list): Remove, unused.
9373
25aef8b8
MR
93742011-06-17 Martin Rudalics <rudalics@gmx.at>
9375
9376 * window.el (display-buffer-alist): Set pop-up-window-min-height
9377 and pop-up-window-min-width in default value. Reported by
9378 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
9379 other-window-means-other-frame.
9380 (display-buffer-macro-specifiers): Comment out entry for
9381 other-window specifier.
9382 (display-buffer-other-window-means-other-frame): New function.
9383 (display-buffer-normalize-specifiers-1): New arguments
9384 buffer-name and label. Treat other-window case specially.
9385 (display-buffer-normalize-specifiers-2): Treat other-window case
9386 specially.
9387 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
9388 (display-buffer-normalize-specifiers):
9389 Call display-buffer-normalize-specifiers-3.
25aef8b8 9390
dbad4f69
MR
93912011-06-17 Martin Rudalics <rudalics@gmx.at>
9392
9393 * window.el (same-window-p): Fix two typos introduced when
9394 adding with-no-warnings.
d1067961
MR
9395 (display-buffer-normalize-specifiers-1): Don't check
9396 pop-up-frames for 'unset initialization.
9397 (display-buffer-normalize-specifiers-2): Major rewrite using
9398 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
9399 (pop-up-frames, display-buffer-reuse-frames)
9400 (display-buffer-mark-dedicated): Don't initialize to 'unset.
9401 Suggested by David Engster <deng@randomsample.de>.
9402 (even-window-heights): Initialize to 'unset.
9403 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
9404 (display-buffer-macro-specifiers): Don't pop up a new frame in the
9405 other window case.
dbad4f69 9406
9b9c9e3a
MR
94072011-06-16 Martin Rudalics <rudalics@gmx.at>
9408
bcd70d97
SM
9409 * window.el (display-buffer-normalize-specifiers-1):
9410 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 9411 second argument of display-buffer (Bug#8865).
981d5c09
MR
9412 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
9413 (switch-to-buffer-other-window-same-frame)
9414 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
9415 Adams (Bug#8875).
9c2755e9
MR
9416 (display-buffer): Don't check noninteractive when calling
9417 display-buffer-pop-up-frame.
9418 (display-buffer-pop-up-frame): Never pop up a frame in
9419 noninteractive mode (Bug#8857).
67222e1d
MR
9420 (enlarge-window, shrink-window): Don't report an error when the
9421 window can't be resized as requested (Bug#8862).
9b9c9e3a 9422
2b75be67
SM
94232011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9424
9ffdd3ba
SM
9425 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
9426
cb581a67
SM
9427 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
9428
2b75be67
SM
9429 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
9430
8c0e3589
AM
94312011-06-15 Alan Mackenzie <acm@muc.de>
9432
cb581a67
SM
9433 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
9434 for declarators, disable knr checking to speed up for normal files.
9435 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 9436
b96e6cde
LMI
94372011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
9438
4bba86e6
LMI
9439 * net/network-stream.el (open-network-stream): Add the keyword
9440 :always-query-capabilities for the case where you want to force a
9441 `plain' network connection, but the protocol still requires the
9442 capabilitiy command (i.e., SMTP and EHLO).
9443
2b75be67 9444 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
9445 consistency with other `-live-p' functions.
9446
efdcdbf8
SM
94472011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9448
9449 * window.el (same-window-buffer-names, same-window-regexps)
9450 (special-display-frame-alist, special-display-popup-frame)
9451 (special-display-function, special-display-buffer-names)
9452 (special-display-regexps, pop-up-frame-alist)
9453 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
9454 (pop-up-windows, split-window-preferred-function)
9455 (split-height-threshold, split-width-threshold, even-window-heights)
9456 (display-buffer-mark-dedicated): Don't encourage the use of
9457 display-buffer-alist from Elisp code.
9458
c5cde042
DN
94592011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
9460
9461 * progmodes/python.el (python-mode): Derive from prog-mode.
9462 * progmodes/ps-mode.el (ps-mode):
9463 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 9464 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
9465 * progmodes/ld-script.el (ld-script-mode): Likewise.
9466
baa1c9ab
MR
94672011-06-15 Martin Rudalics <rudalics@gmx.at>
9468
9469 * window.el (display-buffer-alist): Trim default value to avoid
9470 popping up a new frame (Bug#8857) or reusing an arbitrary window
9471 on another frame.
9472 (display-buffer): Do not fall back on popping up a new frame in
9473 batch mode (Bug#8857).
9474
c5dd5a51
CY
94752011-06-14 Chong Yidong <cyd@stupidchicken.com>
9476
9477 * cus-theme.el (describe-theme-1): Use custom-theme-p.
9478 (custom-theme-summary): New function.
9479 (customize-themes): Use it.
9480
d647b7c4
GM
94812011-06-13 Glenn Morris <rgm@gnu.org>
9482
9483 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
9484
9481c002
MR
94852011-06-13 Martin Rudalics <rudalics@gmx.at>
9486
357f93d2
MR
9487 * help.el (help-window): Remove variable.
9488 (help-window-point-marker, temp-buffer-max-height)
9489 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
9490 (help-print-return-message): Don't set help-window.
9491 (resize-temp-buffer-window): Rewrite cod eand doc-string.
9492 (help-window-setup-finish): Remove.
9493 (help-window-display-message, help-window-setup)
9494 (with-help-window): Major rewrite based on new
9495 display-buffer-window variable.
9496
9497 * help-mode.el (help-mode-finish): Remove help-window related
9498 code.
9499
9500 * view.el (view-exits-all-viewing-windows): Remove reference to
9501 view-return-to-alist in doc-string.
9502 (view-return-to-alist): Make obsolete.
9503 (view-buffer): Call pop-to-buffer-same-window and remove
9504 undo-window code.
9505 (view-buffer-other-window): Call pop-to-buffer-other-window and
9506 simplify code. Ignore second argument.
9507 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
9508 simplify code. Ignore second argument.
9509 (view-return-to-alist-update): Make obsolete.
9510 (view-mode-enter): Rename second argument to QUIT-RESTORE.
9511 Rewrite using quit-restore window parameters.
2b75be67
SM
9512 (view-mode-exit): Rename second argument to EXIT-ONLY.
9513 Rewrite using quit-restore-window.
357f93d2
MR
9514 (View-exit, View-exit-and-edit, View-leave, View-quit)
9515 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
9516 appropriate arguments.
9517 (view-end-message): Use quit-restore window parameter.
9518
9481c002
MR
9519 * window.el (display-buffer-function): Rewrite doc-string.
9520 (display-buffer-window, display-buffer-alist): New variables.
9521 (display-buffer-split-specifiers)
9522 (display-buffer-side-specifiers)
9523 (display-buffer-macro-specifiers): New constants.
9524 (display-buffer-even-window-sizes, display-buffer-set-height)
9525 (display-buffer-set-width, display-buffer-select-window)
9526 (display-buffer-in-window, display-buffer-reuse-window)
9527 (display-buffer-split-window-1, display-buffer-split-window)
9528 (display-buffer-split-atom-window, display-buffer-pop-up-window)
9529 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
9530 (display-buffer-in-side-window, normalize-buffer-to-display)
9531 (display-buffer-normalize-specifiers-1)
9532 (display-buffer-normalize-specifiers-2)
2b75be67
SM
9533 (display-buffer-normalize-specifiers, display-buffer-frame):
9534 New functions.
9481c002
MR
9535 (display-buffer): Major rewrite.
9536 (display-buffer-other-window, display-buffer-other-frame)
9537 (pop-to-buffer, switch-to-buffer-other-window)
9538 (switch-to-buffer-other-frame): Rewrite.
9539 (display-buffer-same-window, display-buffer-same-frame)
9540 (display-buffer-same-frame-other-window)
9541 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
9542 (pop-to-buffer-other-window)
9543 (pop-to-buffer-same-frame-other-window)
9544 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
9545 (switch-to-buffer-other-window-same-frame): New functions.
9546 (same-window-p, special-display-p): Rewrite disabling warnings.
9547 Make obsolete.
9548 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
9549 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
9550 Make obsolete
9551 (same-window-buffer-names, same-window-regexps)
9552 (special-display-frame-alist, special-display-popup-frame)
9553 (special-display-function, special-display-buffer-names)
9554 (special-display-regexps, pop-up-frame-alist)
9555 (pop-up-frame-function, split-window-preferred-function)
9556 (split-height-threshold, split-width-threshold)
9557 (even-window-heights): Make obsolete.
9558
9db51aca
GM
95592011-06-12 Glenn Morris <rgm@gnu.org>
9560
9561 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 9562 Misc simplifications.
9db51aca 9563
39cffb44
MR
95642011-06-12 Martin Rudalics <rudalics@gmx.at>
9565
9566 * window.el (window-safely-shrinkable-p): Restore function which
9567 was inadvertently removed in change from 2011-06-11. Declare as
9568 obsolete.
9569
2b75be67
SM
9570 * calendar/calendar.el (calendar-generate-window):
9571 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
9572 window-safely-shrinkable-p.
9573
a8955be7
GM
95742011-06-12 Glenn Morris <rgm@gnu.org>
9575
9576 * progmodes/fortran.el (fortran-mode-syntax-table):
9577 * progmodes/f90.el (f90-mode-syntax-table):
9578 Set % to punctuation. (Bug#8820)
9579 (f90-find-tag-default): Remove, no longer needed.
9580
f0d4059d
DC
95812011-06-12 Daniel Colascione <dan.colascione@gmail.com>
9582
9583 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
9584
1100a63c
CY
95852011-06-11 Chong Yidong <cyd@stupidchicken.com>
9586
9587 * image.el (image-animated-p): Return animation delay in seconds.
9588 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
9589 (image-animate-timeout): Remove DELAY argument. Don't assume
9590 every subimage has the same delay; get it from image-animated-p.
9591 (image-animate): Caller changed.
9592
def722bf
MA
95932011-06-11 Michael Albinus <michael.albinus@gmx.de>
9594
9595 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
9596 to ignored backtrace functions.
9597
0a2bb1a9
GM
95982011-06-11 Glenn Morris <rgm@gnu.org>
9599
9600 * calendar/appt.el (appt-disp-window-function): Doc fix.
9601 (appt-check): Handle overlapping appointments. (Bug#8337)
9602
6198ccd0
MR
96032011-06-11 Martin Rudalics <rudalics@gmx.at>
9604
9605 * window.el (window-tree-1, window-tree): New functions, moving
9606 the latter to window.el.
9607 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
9608 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
9609 (bw-refresh-edges): Remove.
9610 (balance-windows-1, balance-windows-2): New functions.
9611 (balance-windows): Rewrite in terms of window tree functions,
9612 balance-windows-1 and balance-windows-2.
9613 (bw-adjust-window): Remove.
9614 (balance-windows-area-adjust): New function with functionality of
9615 bw-adjust-window but using resize-window.
2b75be67
SM
9616 (set-window-text-height): Rewrite doc-string.
9617 Use normalize-live-window and resize-window.
9618 (enlarge-window-horizontally, shrink-window-horizontally):
9619 Rename argument to DELTA.
6198ccd0
MR
9620 (window-buffer-height): New function.
9621 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
9622 Rewrite using new window resize routines.
2b75be67
SM
9623 (kill-buffer-and-window, mouse-autoselect-window-select):
9624 Use ignore-errors instead of condition-case.
6198ccd0
MR
9625 (quit-window): Call delete-frame instead of delete-windows-on
9626 for the only buffer on frame.
9627
9397e56f
MR
96282011-06-10 Martin Rudalics <rudalics@gmx.at>
9629
9630 * loadup.el (top-level): Load window before files for the sake
9631 of replace-buffer-in-windows.
9632
9633 * files.el (read-buffer-to-switch)
9634 (switch-to-buffer-other-window)
2b75be67
SM
9635 (switch-to-buffer-other-frame, display-buffer-other-frame):
9636 Move to window.el.
9397e56f
MR
9637
9638 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
9639 (previous-buffer): Move to window.el.
9640
9641 * bindings.el (unbury-buffer): Move to window.el.
9642
9643 * window.el (delete-other-windows-vertically): Move after
9644 definition of delete-other-windows.
9645 (other-window, delete-windows-on, replace-buffer-in-windows):
9646 Move here from window.c.
9647 (record-window-buffer, unrecord-window-buffer)
9648 (set-window-buffer-start-and-point, switch-to-prev-buffer)
9649 (switch-to-next-buffer): New functions.
9650 (get-next-valid-buffer, last-buffer, next-buffer): Move here
9651 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
9652 (previous-buffer): Move here from simple.el.
9653 Call switch-to-prev-buffer.
9397e56f
MR
9654 (bury-buffer): Move here from buffer.c. Switch to previous
9655 buffer when window cannot be deleted.
9656 (unbury-buffer): Move here from bindings.el.
9657 (ctl-x-map): Move binding for other-window from window.c to
9658 here.
9659 (read-buffer-to-switch, switch-to-buffer-other-window)
9660 (switch-to-buffer-other-frame): Move here from files.el.
9661 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
9662 (switch-to-buffer): Move here from buffer.c.
9663 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 9664
562dd5e9
MR
96652011-06-10 Martin Rudalics <rudalics@gmx.at>
9666
9667 * window.el (window-min-height, window-min-width): Move here
9668 from window.c. Add defcustoms and rewrite doc-strings.
9669 (resize-mini-window, resize-window): New functions.
9670 (adjust-window-trailing-edge, enlarge-window, shrink-window):
9671 Move here from window.c.
9672 (maximize-window, minimize-window): New functions.
9673 (delete-window, delete-other-windows, split-window): Move here
9674 from window.c.
9675 (window-split-min-size): New function.
9676 (split-window-keep-point): Mention split-window-above-each-other
9677 instead of split-window-vertically.
2b75be67 9678 (split-window-above-each-other, split-window-vertically):
1154d12e
JB
9679 Rename split-window-vertically to split-window-above-each-other
9680 and provide defalias for old definition.
9681 (split-window-side-by-side, split-window-horizontally):
9682 Rename split-window-horizontally to split-window-side-by-side
9683 and provide defalias for the old definition.
562dd5e9
MR
9684 (ctl-x-map): Move bindings for delete-window,
9685 delete-other-windows and enlarge-window here from window.c.
9686 Replace bindings for split-window-vertically and
9687 split-window-horizontally by bindings for
9688 split-window-above-each-other and split-window-side-by-side.
9689
9690 * cus-start.el (all): Remove entries for window-min-height and
9691 window-min-width. Add entries for window-splits and
9692 window-nest.
9693
f0da764a
GM
96942011-06-09 Glenn Morris <rgm@gnu.org>
9695
80675c21
GM
9696 * calendar/appt.el (appt-mode-line): New function.
9697 (appt-check, appt-disp-window): Use it.
9698
f0da764a
GM
9699 * files.el (hack-one-local-variable-eval-safep):
9700 Allow minor-modes with explicit +/-1 arguments.
9701
59f623b7
TZ
97022011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
9703
9704 * term/xterm.el (xterm): Add defgroup.
9705 (xterm-extra-capabilities): Add defcustom to supply known xterm
9706 capabilities, skip querying them, or query them (default).
9707 (terminal-init-xterm): Use it.
9708 (terminal-init-xterm-modify-other-keys): New function to set up
9709 modifyOtherKeys support to simplify `terminal-init-xterm'.
9710
9aab8e0d
MR
97112011-06-09 Martin Rudalics <rudalics@gmx.at>
9712
9713 * window.el (resize-window-reset, resize-window-reset-1)
9714 (resize-subwindows-skip-p, resize-subwindows-normal)
9715 (resize-subwindows, resize-other-windows, resize-this-window)
9716 (resize-root-window, resize-root-window-vertically)
9717 (window-deletable-p, window-or-subwindow-p)
9718 (frame-root-window-p): New functions.
9719
e8b08aee
GM
97202011-06-09 Glenn Morris <rgm@gnu.org>
9721
9722 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
9723 (ange-ftp-get-files): Use it.
9724
254c37a5
AK
97252011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
9726
9727 * mail/sendmail.el (mail-recover-1, mail-recover):
9728 * files.el (recover-file, recover-session):
9729 Handle dired-listing-switches not being just a single short option.
9730
35d7dbd3
GM
97312011-06-09 Glenn Morris <rgm@gnu.org>
9732
9733 * calendar/appt.el (appt-display-message, appt-disp-window):
9734 Handle lists of appointments.
9735
387522b2
MR
97362011-06-08 Martin Rudalics <rudalics@gmx.at>
9737
2b75be67
SM
9738 * window.el (one-window-p): Move down in code.
9739 Rewrite doc-string.
9740 (window-current-scroll-bars): Rewrite doc-string.
9741 Normalize live window argument.
387522b2
MR
9742 (walk-windows, get-window-with-predicate, count-windows):
9743 Rewrite doc-string. Use window-list-1.
9744 (window-in-direction-2, window-in-direction, get-mru-window):
9745 New functions.
9746
d8e4b68b 97472011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
9748
9749 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
9750 Doc fix (Bug#8713).
9751
97522011-06-08 Chong Yidong <cyd@stupidchicken.com>
9753
9754 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
9755
97562011-06-08 Juanma Barranquero <lekktu@gmail.com>
9757
9758 * loadhist.el (unload-feature-special-hooks):
9759 Add `comint-output-filter-functions'.
9760
0de12c52
IK
97612011-06-08 Ivan Kanis <gnu@kanis.fr>
9762
9763 * calendar/appt.el (appt-check): Move some initializations into the let.
9764
f3d1777e
MR
97652011-06-08 Martin Rudalics <rudalics@gmx.at>
9766
9767 * window.el (window-height): Defalias to window-total-height.
9768 (window-width): Defalias to window-body-width.
9769
18af70d0
CY
97702011-06-07 Chong Yidong <cyd@stupidchicken.com>
9771
9772 * image-mode.el (image-toggle-animation): New command.
9773 (image-mode-map): Bind it to RET.
9774 (image-mode): Update message.
9775 (image-toggle-display-image): Avoid a spurious cache flush.
9776 (image-transform-rotation): Doc fix.
9777 (image-transform-properties): Return quickly in the normal case.
9778 (image-animate-loop): Rename from image-animate-max-time.
9779
2b75be67 9780 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
9781 (create-animated-image): Remove unnecessary function.
9782 (image-animate): Rename from image-animate-start. New arg.
2b75be67 9783 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
9784 (image-animate-timer): Use car-safe.
9785 (image-animate-timeout): Rename argument.
9786
190b47e6
MR
97872011-06-07 Martin Rudalics <rudalics@gmx.at>
9788
9789 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
9790 window.c. Rename first argument to ALL-FRAMES.
9791 Rephrase doc-strings.
9792 (get-buffer-window-list): Rewrite using window-list-1.
9793 Rephrase doc-string.
a1511caf
MR
9794 (window-safe-min-height, window-safe-min-width): New constants.
9795 (window-size-ignore, window-min-size, window-min-size-1)
9796 (window-sizable, window-sizable-p, window-size-fixed-1)
9797 (window-size-fixed-p, window-min-delta-1, window-min-delta)
9798 (window-max-delta-1, window-max-delta, window-resizable)
9799 (window-resizable-p, window-total-height, window-total-width)
9800 (window-body-width): New functions.
9801 (window-full-height-p, window-full-width-p): Rewrite using
9802 window-total-size.
9803 (window-body-height): Rewrite using window-body-size.
190b47e6 9804
85cc1f11
MR
98052011-06-06 Martin Rudalics <rudalics@gmx.at>
9806
9807 * window.el (window-right, window-left, window-child)
9808 (window-child-count, window-last-child, window-any-p)
9809 (normalize-live-buffer, normalize-live-frame)
9810 (normalize-any-window, normalize-live-window)
9811 (window-iso-combination-p, window-iso-combined-p)
9812 (window-iso-combinations)
9813 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
9814 (windows-with-parameter, window-with-parameter)
9815 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
9816 (window-atom-check, window-side-check, window-check):
9817 New functions.
85cc1f11
MR
9818 (ignore-window-parameters, window-sides, window-sides-vertical)
9819 (window-sides-slots): New variables.
9820 (window-size-fixed): Move down in code. Minor doc-string fix.
9821
e7156492
AS
98222011-06-05 Andreas Schwab <schwab@linux-m68k.org>
9823
9824 * comint.el (comint-dynamic-complete-as-filename)
9825 (comint-dynamic-complete-filename): Correctly call
9826 completion-in-region.
9827
7e821d0d
DD
98282011-06-05 Deniz Dogan <deniz@dogan.se>
9829
9830 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
9831 in last change.
9832
ac09b8a1
DD
98332011-06-05 Deniz Dogan <deniz@dogan.se>
9834
9835 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
9836 (rcirc): Use it to prompt for encryption.
9837
34699b85
RW
98382011-06-05 Roland Winkler <winkler@gnu.org>
9839
9840 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
9841 (bibtex-search-entries): New command bound to C-c C-a.
9842 (bibtex-display-entries): New function.
9843
004dedd3
RW
98442011-06-05 Roland Winkler <winkler@gnu.org>
9845
9846 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
9847 (bibtex-insert-kill): After yanking insert newline if necessary.
9848 (bibtex-initialize): Call bibtex-string-files-init only once.
9849 (bibtex-mode): Do not call easy-menu-add.
9850 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
9851 (bibtex-yank): Set arg properly if nil.
9852
022fe7ce
RW
98532011-06-05 Roland Winkler <winkler@gnu.org>
9854
2b75be67
SM
9855 * textmodes/bibtex.el (bibtex-search-entry-globally):
9856 New variable.
022fe7ce
RW
9857 (bibtex-search-entry): Use it.
9858
b7c3692a
RW
98592011-06-05 Roland Winkler <winkler@gnu.org>
9860
9861 * textmodes/bibtex.el (bibtex-entry-format): New option
9862 sort-fields.
9863 (bibtex-format-entry, bibtex-reformat): Honor this option.
9864 (bibtex-parse-entry): Return fields in proper order.
9865
8eda563d
JB
98662011-06-05 Juanma Barranquero <lekktu@gmail.com>
9867
9868 * doc-view.el (doc-view-remove-if): Move computation of result out
9869 of `dolist' to silence misleading lexical-binding warning.
9870
7dbe3dbc
CY
98712011-06-04 Chong Yidong <cyd@stupidchicken.com>
9872
9873 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
9874 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
9875
0c33dd17
MA
98762011-06-04 Michael Albinus <michael.albinus@gmx.de>
9877
9878 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
9879 "SunOS 5.10".
9880
f8f91c2b
MA
98812011-06-04 Michael Albinus <michael.albinus@gmx.de>
9882
9883 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
9884 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
9885 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
9886 (tramp-parse-putty):
9887 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
9888 (tramp-completion-function-alist-ssh)
9889 (tramp-completion-function-alist-telnet)
9890 (tramp-completion-function-alist-su)
9891 (tramp-completion-function-alist-putty): Set `tramp-autoload'
9892 cookie.
9893
9894 * net/tramp-ftp.el:
9895 * net/tramp-sh.el:
9896 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
9897 load "tramp.el" `tramp-set-completion-function'.
9898
e17d9003
SM
98992011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
9900
9901 * shell.el: Require and use pcomplete.
9902 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
9903 (shell-completion-vars): Set pcomplete-default-completion-function.
9904
6c4cab03
DD
99052011-06-04 Deniz Dogan <deniz@dogan.se>
9906
9907 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
9908 `memq' (Bug#8799).
9909
ea9fafe0
SM
99102011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9911
9912 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
9913
b3e945d3
JB
99142011-06-02 Juanma Barranquero <lekktu@gmail.com>
9915
9916 * bs.el (bs--mark-unmark, bs--nth-wrapper):
9917 * mpc.el (mpc-select-extend, mpc-songpointer-context):
9918 * vc/log-view.el (log-view-beginning-of-defun):
9919 * vc/smerge-mode.el (smerge-apply-resolution-patch)
9920 (smerge-refine-forward, smerge-refine-chopup-region):
9921 Silence warning for unused `dotimes' counter variables.
9922
7d520089
SM
99232011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9924
9925 * net/tramp.el (tramp-with-progress-reporter): Rename from
9926 with-progress-reporter. Use `declare'.
9927 * net/tramp-smb.el:
9928 * net/tramp-sh.el:
9929 * net/tramp-gvfs.el: Update all uses.
9930
a1c2400f
JB
99312011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
9932
9933 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
9934 buffer isn't killed before making it current.
9935
2403c841
SM
99362011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
9937
9938 Silence various byte-compiler warnings.
9939 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
9940 `access-type' and new obsolescence format.
9941 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
9942 new format.
9943 (byte-compile-check-variable): New `access-type' argument.
9944 Only warn if the access-type is obsolete.
9945 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
9946 (byte-compile-variable-set): Adjust callers.
9947 * help-fns.el (describe-variable): Adjust to new obsolescence format.
9948 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
9949 setting it as obsolete.
9950 * simple.el (minibuffer-completing-symbol):
9951 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
9952 access as obsolete.
9953 * minibuffer.el (minibuffer-completing-file-name): Don't make it
9954 obsolete yet.
9955 * international/quail.el (quail-mouse-choose-completion): Remove unused
9956 code referring to obsolete var.
9957 (quail-choose-completion-string): Remove.
9958 * server.el (server-clients-with, server-kill-buffer-query-function)
9959 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
9960 * proced.el (proced-send-signal):
9961 * emacs-lisp/lisp.el (lisp-complete-symbol):
9962 Replace completion-annotate-function with completion-extra-properties.
9963
2462470b
SM
99642011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
9965
fb5b2591
SM
9966 * simple.el (goto-line): Use read-number.
9967 (overriding-map-is-bound): Remove.
9968 (saved-overriding-map): Change default.
9969 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
9970 Take the map as argument.
9971 (universal-argument, negative-argument, digit-argument): Use it.
9972 (restore-overriding-map): Adjust.
9973 (do-auto-fill): Use fill-forward-paragraph.
9974 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
9975
fd6fa53f
SM
9976 * minibuffer.el (minibuffer-inactive-mode-map): New var.
9977 (minibuffer-inactive-mode): New major mode.
9978 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
9979 the *Messages* buffer" hack.
9980 (mouse-popup-menubar): Don't burp if the event is a normal key.
9981
2462470b
SM
9982 Miscellaneous tweaks.
9983 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
9984 lexical scoping as in subr.el's dolist and dotimes.
9985 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
9986 Silence compiler warning.
9987 * thingatpt.el (forward-whitespace): Trivial coding style fix.
9988 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
9989 * international/ccl.el (ccl-compile): Trivial simplification.
9990 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
9991 * emacs-lisp/testcover.el (testcover-end): Remove spurious
9992 `printflag' argument.
9993 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
9994 Purecopy the whole obsolescence data.
9995
108bf785
LL
99962011-06-01 Leo Liu <sdl.web@gmail.com>
9997
9998 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
9999 improve doc-string as suggested by Marco Pessotto
10000 <melmothx@gmail.com>.
10001 (rcirc-print): Fix last change.
10002
30a23501
SM
100032011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10004
10005 * minibuffer.el (complete-with-action): Return nil for the metadata and
10006 boundaries of non-functional tables.
10007 (completion-table-dynamic): Return nil for the metadata.
10008 (completion-table-with-terminator): Add default case, using
10009 complete-with-action.
10010 (completion--metadata): New function.
10011 (completion-all-sorted-completions, minibuffer-completion-help): Use it
10012 to try and avoid pathological performance problems.
10013 (completion--embedded-envvar-table): Return `category' metadata.
10014
bcd54f83
LMI
100152011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
10016
10017 * subr.el (process-alive-p): New tiny convenience function.
10018
e227544d
SM
100192011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10020
10021 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
10022 content but also its previous major mode.
10023
e8296fdc
HE
100242011-05-31 Helmut Eller <eller.helmut@gmail.com>
10025
4d61f28d 10026 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
10027 *Backtrace* buffer when we exit with C-M-c.
10028
620c53a6
SM
100292011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10030
10031 * minibuffer.el: Add metadata method to completion tables.
10032 (completion-category-overrides): New defcustom.
10033 (completion-metadata, completion--field-metadata)
10034 (completion-metadata-get, completion--styles)
10035 (completion--cycle-threshold): New functions.
10036 (completion-try-completion, completion-all-completions):
10037 Add `metadata' argument to choose completion-styles.
10038 (completion--do-completion): Use metadata to choose cycling.
10039 (completion-all-sorted-completions): Use metadata for sorting.
10040 Remove :completion-cycle-penalty which is not needed any more.
10041 (completion--try-word-completion): Add `metadata' argument.
10042 (minibuffer-completion-help): Check metadata for annotation function
10043 and sorting.
10044 (completion-file-name-table): Return `category' metadata.
10045 (minibuffer-completing-file-name): Make obsolete.
10046 * simple.el (minibuffer-completing-symbol): Make obsolete.
10047 * icomplete.el (icomplete-completions): Pass new `metadata' param to
10048 completion-try-completion.
10049
1257e755
SM
100502011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10051
10052 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
10053
3767e706
LL
100542011-05-30 Leo Liu <sdl.web@gmail.com>
10055
10056 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
10057 (rcirc-print): Decode all incoming messages (bug#8744).
10058 (rcirc-decode-coding-system): Allow value nil for automatic coding
10059 system detection.
3767e706 10060
d1a5d56a
GM
100612011-06-01 Glenn Morris <rgm@gnu.org>
10062
10063 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
10064
e8cbec34
CY
100652011-05-29 Chong Yidong <cyd@stupidchicken.com>
10066
10067 * image.el (image-animate-max-time): Allow nil and t values.
10068 Default to nil.
10069 (create-animated-image): Doc fix.
10070 (image-animate-start): Remove second arg; just use
10071 image-animate-max-time.
10072 (image-animate-timeout): Doc fix. Args changed.
10073
10074 * image-mode.el (image-toggle-display-image): Ensure that the
10075 image spec passed to the animate timer is the same object as in
58179cce 10076 the buffer's display property (Bug#6981).
e8cbec34
CY
10077 (image-transform-properties): Doc fix.
10078
10079 * image.el (image-animate-max-time): Default to nil.
10080
159daf87
MR
100812011-05-29 Martin Rudalics <rudalics@gmx.at>
10082
10083 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
10084 entire buffer list (Bug#8184).
10085
d66c4c7c
CY
100862011-05-29 Chong Yidong <cyd@stupidchicken.com>
10087
10088 * image.el (imagemagick-types-inhibit)
10089 (imagemagick-register-types): Doc fix.
10090
80aec780
DD
100912011-05-29 Deniz Dogan <deniz@dogan.se>
10092
10093 * net/rcirc.el (rcirc): Use the user's stored encryption method by
10094 default.
10095
1dd3c2d9
CY
100962011-05-29 Chong Yidong <cyd@stupidchicken.com>
10097
10098 * select.el: Don't perform clipboard-manager saving in hooks;
10099 leave the hooks empty.
10100
60e56523
LL
101012011-05-28 Leo Liu <sdl.web@gmail.com>
10102
10103 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
10104 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
10105 (occur-edit-mode): New major mode (Bug#8463).
10106 (occur-after-change-function): New function.
10107 (occur-engine): Give Occur tags a read-only property.
10108
2b1e1a22
KR
101092011-05-28 Kevin Ryde <user42@zip.com.au>
10110
10111 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
10112
5d344e88
CY
101132011-05-28 Chong Yidong <cyd@stupidchicken.com>
10114
8e6ca83d
CY
10115 * bindings.el (help-echo): Make the initial non-indicator dash
10116 empty on graphical terminals (Bug#7295).
10117
5d344e88
CY
10118 * files.el (auto-mode-alist): Move config rule after the
10119 in-stripping one (Bug#8547).
10120
bfbbace7
CY
10121 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
10122
fbeba6e2
CY
10123 * startup.el (normal-splash-screen): Remove gratuitous mode-line
10124 setting (Bug#8740).
10125
60ed8c72
AA
101262011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
10127
4ac619f0
AA
10128 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
10129 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
10130 (Bug#8539).
60ed8c72 10131
23db196e
CY
101322011-05-28 Chong Yidong <cyd@stupidchicken.com>
10133
10134 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
10135
5012f24c
DK
101362011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
10137
10138 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
10139 (hs-hide-block-at-point, hs-find-block-beginning)
10140 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
10141 (Bug#8279).
10142
6a639b16
GM
101432011-05-28 Glenn Morris <rgm@gnu.org>
10144
10145 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
10146
d43eaf2c
CY
101472011-05-28 Chong Yidong <cyd@stupidchicken.com>
10148
5199bde1
CY
10149 * help-fns.el (describe-function-1): If the function is a derived
10150 major mode, print the parent mode.
10151
d43eaf2c
CY
10152 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
10153 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
10154
423428a8
SM
101552011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10156
0ff8e1ba 10157 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 10158 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
10159 * progmodes/etags.el (tags-completion-at-point-function):
10160 * info-look.el (info-lookup-completions-at-point): Mark as
10161 non-exclusive.
10162 (info-complete): Adjust accordingly.
10163
423428a8
SM
10164 * info-look.el: Convert to lexical-binding and completion-at-point.
10165 (info-lookup-completions-at-point): New function.
10166 (info-complete): Use it and completion-in-region.
10167
b74aa22b
DA
101682011-05-28 Drew Adams <drew.adams@oracle.com>
10169
10170 * isearch.el: Let M-e start with point at the first mismatched char.
10171 (isearch-fail-pos): New function.
10172 (isearch-edit-string): Use it.
10173
66e2e71d
DK
101742011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
10175
10176 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
10177
b1890b0f 101782011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
eb95d01d
TC
10179
10180 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
10181 traversal functions for avl-trees.
10182 (avl-tree--stack): New struct.
10183 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
10184 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
10185 (avl-tree--do-enter): Add optional `updatefun' arg.
10186 Change return value.
eb95d01d 10187 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
10188 (avl-tree--do-delete): Add `test' and `nilflag' args.
10189 Change return value.
eb95d01d
TC
10190 (avl-tree-member): Add optional `nilflag'
10191 (avl-tree-member-p): New function.
10192 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
10193 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
10194 (avl-tree-stack-empty-p): New functions.
10195
3769ddcf
TC
10196 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
10197 avl-tree--del-balance1 and make it work both ways.
10198 (avl-tree--del-balance2): Remove.
10199 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
10200 make it work both ways.
10201 (avl-tree--enter-balance2): Remove.
10202 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
10203 New macros.
10204 (avl-tree--mapc, avl-tree-map): Add direction argument.
10205
eb95d01d 102062011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
10207
10208 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
10209
a9f737ee
CY
102102011-05-27 Chong Yidong <cyd@stupidchicken.com>
10211
10212 * select.el: Support clipboard managers with built-in function
10213 x-clipboard-manager-save, via delete-frame-functions and
10214 kill-emacs-hook.
10215 (xselect-convert-to-targets): Add MULTIPLE target to list.
10216 (xselect-convert-to-save-targets): New function.
10217
c92a1e54
KH
102182011-05-27 Kenichi Handa <handa@m17n.org>
10219
10220 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
10221 let-binding rfc2047-encode-encoded-words to nil.
10222
e145f188
GM
102232011-05-27 Glenn Morris <rgm@gnu.org>
10224
5ec8a862
GM
10225 * mail/emacsbug.el: Don't require url-util.
10226
4b29d9fb
GM
10227 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
10228
e145f188
GM
10229 * files.el (set-auto-mode):
10230 Also respect mode: entries at the end of the file. (Bug#8586)
10231
7d15102b
GM
102322011-05-26 Glenn Morris <rgm@gnu.org>
10233
98f593b8
GM
10234 * files.el (hack-local-variables-prop-line, hack-local-variables):
10235 Downcase mode names, as seems to be traditional.
27b48e63 10236 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 10237
7d15102b
GM
10238 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
10239 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
10240
51d5b4ec
JD
102412011-05-25 Julien Danjou <julien@danjou.info>
10242
10243 * textmodes/rst.el (rst-define-level-faces): Do not define face
10244 symbol if it is already defined.
10245
91513f63
VB
102462011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
10247
10248 * play/5x5.el (5x5-new-game, 5x5-randomize):
10249 Reset 5x5-solver-output to nil when a new grid is cast.
10250 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
10251 these debugging traces, as defmacro breaks the compiled code.
10252
4d90d6d0
DK
102532011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
10254
10255 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
10256
e1b90ef6
LL
102572011-05-24 Leo Liu <sdl.web@gmail.com>
10258
10259 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
10260 (vc-bzr-sha1): Adapt.
10261
d8e4b68b 10262 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
10263
10264 * bindings.el: Provide sha1 feature.
10265
db0406bb 102662011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
10267
10268 * mail/sendmail.el: Require `rfc2047'.
10269 (mail-insert-from-field): Do not perform RFC2047 encoding.
10270 (mail-encode-header): New function.
10271 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
10272 buffer to the return value of select-message-coding-system.
10273 Call mail-encode-header.
b8d747b9
KH
10274
10275 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
10276
db0406bb 102772011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 10278
4d90d6d0
DK
10279 * mail/supercite.el (sc-default-cite-frame):
10280 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 10281
eb8a5e9b
GM
102822011-05-24 Glenn Morris <rgm@gnu.org>
10283
f8630703
GM
10284 * progmodes/python.el (brm-menu): Declare.
10285
8831bbed
GM
10286 * emulation/viper.el (viper-set-hooks): Declare.
10287
eb8a5e9b
GM
10288 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
10289 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
10290 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
10291 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
10292 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
10293 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
10294
a2a25d24
SM
102952011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
10296
10297 Add an :exit-function for completion-at-point.
10298
10299 * minibuffer.el (completion--done): New fun.
10300 (completion--do-completion): Use it. New arg `expect-exact'.
10301 (minibuffer-complete, minibuffer-complete-word): Don't output message,
10302 since completion--do-completion does it for us now.
10303 (minibuffer-force-complete): Use completion--done and
10304 completion--replace. Handle sole-completion case with more care.
10305 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
10306 (completion-extra-properties): New var.
10307 (completion-annotate-function): Make obsolete.
10308 (minibuffer-completion-help): Adjust accordingly.
10309 Use completion-list-insert-choice-function.
10310 (completion-at-point, completion-help-at-point):
10311 Bind completion-extra-properties.
10312 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
10313 * simple.el (completion-list-insert-choice-function): New var.
10314 (completion-setup-function): Preserve it.
10315 (choose-completion): Pay attention to it, shuffle the code a bit.
10316 (choose-completion-string): New arg `insert-function'.
10317
10318 * textmodes/bibtex.el: Convert to lexical binding.
10319 (bibtex-mode-map): Use completion-at-point.
10320 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
10321 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
10322 (bibtex-complete): Define as obsolete alias.
10323 (bibtex-complete-internal): Remove.
10324 (bibtex-format-entry): Remove unused sub-group in regexp.
10325 * shell.el (shell--command-completion-data)
10326 (shell-environment-variable-completion):
10327 * pcomplete.el (pcomplete-completions-at-point):
10328 * comint.el (comint--complete-file-name-data): Use :exit-function
10329 instead of completion-table-with-terminator so it also works for
10330 choose-completion.
10331
e44e373d
SM
103322011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
10333
4f91a816
SM
10334 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
10335
782fc819
SM
10336 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
10337 (bug#8710).
10338
e44e373d
SM
10339 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
10340
381987c3
KM
103412011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
10342
10343 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
10344 customization variable and implement: If non-nil, auto-fill will
10345 be inhibited while on topic's header line.
10346
b776bc70
VB
103472011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
10348
10349 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 10350 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
10351 always have a solution in grid size = 5 cases.
10352 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
10353 (5x5-solver-output, 5x5-log-buffer): New vars.
10354 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
10355 Make these variables buffer local to achieve 5x5 multi-session-ness.
10356 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
10357 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
10358 (5x5-solve-suggest): New funs.
10359 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
10360 randomize a grid so that we ensure that there is always a solution.
10361 (5x5-make-random-grid): Allow other movement than flipping.
10362
7de88b6e
KR
103632011-05-23 Kevin Ryde <user42@zip.com.au>
10364
10365 * emacs-lisp/advice.el (ad-read-advised-function):
5a5fa834 10366 Use `function-called-at-point' as the default, if it has
7de88b6e
KR
10367 advice and passes PREDICATE.
10368
b1ef1257
SM
103692011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
10370
bbca48fe
SM
10371 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
10372 byte-compile-lambda if it's actually a lambda.
10373
b1ef1257
SM
10374 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
10375 Fix function quoting. Use backquote better.
10376
92a9cc65
YS
103772011-05-22 Yuanle Song <sylecn@gmail.com>
10378
10379 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
10380 matching (Bug#8516).
10381
f0fb8059
JA
103822011-01-22 Jari Aalto <jari.aalto@cante.net>
10383
10384 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
10385 different face (Bug#8178).
10386
d5b44c93
CY
103872011-05-22 Chong Yidong <cyd@stupidchicken.com>
10388
10389 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
10390 defface (Bug#8144).
10391
79106a44
SM
103922011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
10393
9c848d8a
SM
10394 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
10395 funcall as well (bug#8712). Warn when performing those conversions.
10396 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
10397
79106a44
SM
10398 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
10399
88dfa756
GM
104002011-05-22 Glenn Morris <rgm@gnu.org>
10401
10402 * files.el (hack-local-variables-prop-line): Small simplifications.
10403 (hack-local-variables, hack-local-variables-prop-line):
10404 If MODE-ONLY, return the mode, rather than just `t'.
10405
b7cf2c79
SM
104062011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
10407
10408 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
10409
3f1a8558
GM
104102011-05-21 Glenn Morris <rgm@gnu.org>
10411
7e4ccca3
GM
10412 * files.el (hack-local-variables-prop-line, hack-local-variables):
10413 If only interested in the mode, don't bother doing the other stuff.
10414
637d46ca
GM
10415 * image-mode.el (image-after-revert-hook):
10416 Redraw all frames on which the image is visible. (Bug#8567)
10417
973d955b
GM
10418 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
10419
3f1a8558
GM
10420 * wid-edit.el (widget-checklist-match-inline):
10421 Fix 2011-04-19 change. (Bug#8649)
10422
96479927
SM
104232011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
10424
1dcf791f
SM
10425 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
10426 Also allow singlespace after single-letter capitals followed by a dot.
10427
96479927
SM
10428 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
10429 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
10430
35fd0881
N
104312011-05-20 Nix <nix@esperi.org.uk>
10432
10433 * files.el (basic-save-buffer-2):
10434 Fix handling of break-hardlink-on-save with non-existent files.
10435
82745640
DD
104362011-05-19 Deniz Dogan <deniz@dogan.se>
10437
10438 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 10439 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 10440
4a720484
GM
104412011-05-19 Glenn Morris <rgm@gnu.org>
10442
d1f21341
GM
10443 * progmodes/f90.el (f90-type-def-re):
10444 Handle "type, bind(c)". (Bug#8691)
10445
4a720484
GM
10446 * emacs-lisp/autoload.el (batch-update-autoloads):
10447 Set autoload-excludes by parsing loadup.el rather than Makefiles.
10448
2fb0a219
MA
104492011-05-18 Michael Albinus <michael.albinus@gmx.de>
10450
10451 * net/tramp.el (tramp-process-actions): Set "first-password-request"
10452 property for the correct connection in case of multihops.
10453
e565dd37
GM
104542011-05-18 Glenn Morris <rgm@gnu.org>
10455
c2571358 10456 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
10457 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
10458
e565dd37
GM
10459 Rationalize calendar handling of day and month abbrev-arrays.
10460 * calendar/calendar.el (calendar-customized-p): New function.
10461 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
10462 (calendar-day-name-array, calendar-month-name-array): Doc fix.
10463 Add :set function.
10464 (calendar-abbrev-length, calendar-day-abbrev-array)
10465 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
10466 (calendar-day-abbrev-array, calendar-month-abbrev-array):
10467 Elements may no longer be nil.
10468 (calendar-day-name, calendar-month-name):
10469 Update for changed nature of abbrev arrays.
10470 * calendar/diary-lib.el (diary-name-pattern):
10471 Update for changed nature of abbrev arrays.
10472 (diary-mark-entries-1): Update calendar-make-alist calls.
10473 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
10474 * calendar/cal-html.el (cal-html-day-abbrev-array):
10475 Simply inherit from calendar-day-abbrev-array.
10476
1d99a745
SM
104772011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10478
10479 * progmodes/grep.el (grep-mode): Disable default
10480 compilation-directory-matcher setting (bug#8684).
10481
7c1d9aa0
MA
104822011-05-17 Michael Albinus <michael.albinus@gmx.de>
10483
10484 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
10485 instead of "head" and "tail". There were problems with SunOS 5.9,
10486 and it performs better.
10487
3952e9d8
GM
104882011-05-17 Glenn Morris <rgm@gnu.org>
10489
2dd12e7f
GM
10490 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
10491
e4157b9c
GM
10492 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
10493 Replace obsolete function.
10494
8e249bbd
GM
10495 * shell.el (pcomplete-parse-arguments-function): Declare.
10496
3952e9d8
GM
10497 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
10498 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
10499 (appt-check): Doc fixes.
10500 (appt-disp-window-function, appt-delete-window-function):
10501 Remove needless special case in custom :type.
10502 (appt-display-count): Default to 0, not nil.
10503 (appt-check): Reset appt-display-count to 0, not nil.
10504
c71a0d48 105052011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 10506
c71a0d48
GM
10507 * progmodes/python.el (python-font-lock-keywords):
10508 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 10509
31d55be9
SM
105102011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
10511
10512 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
10513
3bfacb2f
KR
105142011-05-16 Kevin Ryde <user42@zip.com.au>
10515
10516 * info-look.el (makefile-automake-mode): New setups, looking in
10517 automake manual, then makefile-mode.
10518 (makefile-mode): Remove automake manual, have it just in
10519 makefile-automake-mode since there's various things different or
10520 not relevant to plain make.
10521 (makefile-mode): Remove "other-modes" non-existent automake-mode,
10522 believe a hypothetical automake-mode would go to makefile-mode,
10523 not the other way around.
10524
c8e83751
CY
105252011-05-15 Chong Yidong <cyd@stupidchicken.com>
10526
5e9e35cd
CY
10527 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
10528 hunk-end tags (Bug#8672).
10529
c8e83751
CY
10530 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
10531 vc-annotate-show-diff-revision-at-line (Bug#8671).
10532
50b23e5a
GM
105332011-05-14 Glenn Morris <rgm@gnu.org>
10534
7210a739
GM
10535 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
10536 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
10537 (change-log-font-lock-keywords): Also handle multiple author lines
10538 with leading tabs. (Bug#8644)
7210a739 10539
4691905a
GM
10540 * calendar/appt.el (appt-check): Rename some local variables.
10541 Some simplification/reordering.
10542
50b23e5a
GM
10543 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
10544 (feedmail-sendmail-f-doesnt-sell-me-out)
10545 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
10546 (feedmail-debug-sit-for, feedmail-queue-express-hook)
10547 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
10548 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
10549 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
10550 (feedmail-binmail-gnulinuxish-template):
10551 Rename from feedmail-binmail-linuxish-template.
10552 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
10553 Use insert-buffer-substring.
10554
215cda7c
BC
105552011-05-14 Bill Carpenter <bill@carpenter.org>
10556
10557 * mail/feedmail.el (feedmail-patch-level): Increase.
10558 (feedmail-debug): New custom group.
10559 (feedmail-confirm-outgoing-timeout)
10560 (feedmail-sendmail-f-doesnt-sell-me-out)
10561 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
10562 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
10563 (feedmail-sender-line, feedmail-from-line)
10564 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 10565 (feedmail-spray-this-address)
215cda7c
BC
10566 (feedmail-spray-address-fiddle-plex-list)
10567 (feedmail-queue-use-send-time-for-date)
10568 (feedmail-queue-use-send-time-for-message-id)
10569 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
10570 (feedmail-buffer-eating-function):
10571 Doc fixes.
10572 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
10573 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
10574 (feedmail-message-action-scroll-down): New functions.
10575 (feedmail-queue-directory, feedmail-queue-draft-directory):
10576 Use expand-file-name.
10577 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
10578 Remove C-v help entry.
10579 (feedmail-queue-buffer-file-name): New variable.
10580 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
10581 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
10582 (feedmail-message-action-send-strong, feedmail-message-action-edit)
10583 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
10584 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
10585 (feedmail-message-action-toggle-spray)
10586 (feedmail-run-the-queue-no-prompts)
10587 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
10588 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
10589 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
10590 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
10591 (feedmail-envelope-deducer, feedmail-fiddle-from)
10592 (feedmail-fiddle-sender, feedmail-default-date-generator)
10593 (feedmail-fiddle-date, feedmail-fiddle-message-id)
10594 (feedmail-fiddle-spray-address)
10595 (feedmail-fiddle-list-of-spray-fiddle-plexes)
10596 (feedmail-fiddle-list-of-fiddle-plexes)
10597 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
10598 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
10599 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
10600 Change default. Doc fix.
10601 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
10602 (feedmail-binmail-linuxish-template): New constant.
10603 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
10604 Respect feedmail-sendmail-f-doesnt-sell-me-out.
10605 (feedmail-send-it): Add debug call.
10606 Use feedmail-queue-buffer-file-name, and
10607 feedmail-send-it-immediately-wrapper.
10608 (feedmail-message-action-send): Add debug call.
10609 Use feedmail-send-it-immediately-wrapper.
10610 (feedmail-queue-express-to-queue): Add debug call.
10611 Run feedmail-queue-express-hook.
10612 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
10613 (feedmail-message-action-help-blat):
10614 Rename from feedmail-queue-send-edit-prompt-help-first.
10615 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
10616 Check line-endings. Handle errors better.
10617 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
10618 Doc fix. Add debug call.
10619 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
10620 Use feedmail-queue-send-edit-prompt-inner.
10621 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
10622 (feedmail-queue-send-edit-prompt-inner): New function, extracted
10623 from feedmail-queue-send-edit-prompt.
10624 (feedmail-queue-send-edit-prompt-help)
10625 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
10626 (feedmail-tidy-up-slug): Add debug call.
10627 Respect feedmail-queue-slug-suspect-regexp.
10628 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
10629 (feedmail-dump-message-to-queue): Add debug call.
10630 Expand queue-directory.
10631 (feedmail-dump-message-to-queue): Change message slightly.
10632 Use feedmail-say-chatter.
10633 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
10634 (feedmail-send-it-immediately-wrapper): New function.
10635 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
10636 Insert empty string rather than newline. Handle full-frame case.
10637 Use catch/throw. Use feedmail-say-chatter.
10638 (feedmail-fiddle-from): Try mail-host-address.
10639 (feedmail-default-message-id-generator): Doc fix.
10640 Bind system-time-locale. Handle missing end.
10641 (feedmail-fiddle-x-mailer): Add debug call.
10642 Handle feedmail-x-mailer-line being nil.
10643 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
10644 Add debug call. Use buffer-substring-no-properties.
10645 (feedmail-say-debug, feedmail-say-chatter): New functions.
10646 (feedmail-find-eoh): Give an explicit error.
10647
42c7e61e
UJ
106482011-05-13 Ulf Jasper <ulf.jasper@web.de>
10649
c2571358 10650 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 10651 family from helvetica to sans.
c2571358 10652 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
10653 etc/images/newsticker.
10654
c2571358 10655 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
10656 family from helvetica to sans.
10657
10658 * net/newst-plainview.el (newsticker-new-item-face)
10659 (newsticker-old-item-face, newsticker-immortal-item-face)
10660 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 10661 (newsticker-statistics-face): Change default family from
42c7e61e 10662 helvetica to sans.
c2571358 10663 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
10664 etc/images/newsticker.
10665
10666 * net/newst-backend.el (newsticker--do-run-auto-mark-filter),
10667 (newsticker--process-auto-mark-filter-match): : Tell user about
10668 auto-marking.
10669
8497a297
DV
106702011-05-13 Didier Verna <didier@xemacs.org>
10671
10672 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
10673 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
10674 TODO entries.
8497a297
DV
10675 (lisp-lambda-list-keyword-parameter-indentation)
10676 (lisp-lambda-list-keyword-parameter-alignment)
10677 (lisp-lambda-list-keyword-alignment): New customizable user options.
10678 (lisp-indent-defun-method): Improve docstring.
10679 (extended-loop-p): Fix comment.
10680 (lisp-indent-lambda-list-keywords-regexp): New variable.
10681 (lisp-indent-lambda-list): New function.
10682 (lisp-indent-259): Use it.
10683 (lisp-indent-defmethod): Support for more than one
10684 method qualifier and properly indent methods lambda-lists.
10685 (defgeneric): Provide a missing common-lisp-indent-function property.
10686
f278f87f
SM
106872011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
10688
10689 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
10690 bounds for the empty string (bug#8667).
10691
5233edd7
GM
106922011-05-13 Glenn Morris <rgm@gnu.org>
10693
5237a44f
GM
10694 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
10695
8340026c 10696 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 10697 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 10698
5233edd7 10699 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 10700 (appt-time-msg-list): Doc fix.
a5464014 10701 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 10702
92d10796
AS
107032011-05-12 Andreas Schwab <schwab@linux-m68k.org>
10704
10705 * progmodes/ld-script.el (ld-script-keywords)
10706 (ld-script-builtins): Update keywords list.
10707
914a0ae1
SM
107082011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
10709
c89be45f
SM
10710 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
10711
914a0ae1
SM
10712 * shell.el (shell-completion-vars): New function.
10713 (shell-mode):
10714 * simple.el (read-shell-command): Use it.
10715 (blink-matching-open): No need for " [...]" in minibuffer-message.
10716
98dc3df3
GM
107172011-05-12 Glenn Morris <rgm@gnu.org>
10718
10719 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
10720 (appt-check): Simplify.
10721
d2fc7e3d 107222011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 10723
4d61f28d 10724 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
10725 literal "/dev/null".
10726
d2fc7e3d 107272011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
10728
10729 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
10730 Fix typo.
10731
d2fc7e3d 107322011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 10733
3f254caa
SM
10734 * progmodes/which-func.el (which-function):
10735 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
10736 which might not be defined (Bug#8260).
10737
d45885f7
GM
107382011-05-12 Glenn Morris <rgm@gnu.org>
10739
10740 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
10741 Let byte-compile-initial-macro-environment always take precedence.
10742
488086f4
SM
107432011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
10744
10745 * net/rcirc.el: Add support for SSL/TLS connections.
10746 (rcirc-server-alist): New field `encryption'.
10747 (rcirc): Check `encryption' settings.
10748 (rcirc-connect): New arg `encryption'. Use open-network-stream.
10749 Merge make-local-variable into `set'.
10750 (rcirc--connection-open-p): New function.
10751 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
10752 the process is not a network process (e.g. running gnutls-cli).
10753 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
10754 Make rcirc-(en|de)code-coding-system local here.
10755 (rcirc-mode): Merge make-local-variable into `set'.
10756 (rcirc-parent-buffer): Make permanent buffer-local.
10757 (rcirc-multiline-minor-mode): Don't do it here.
10758 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
10759 there's no server buffer.
10760
7d3b9d44
GM
107612011-05-11 Glenn Morris <rgm@gnu.org>
10762
f64049c6
GM
10763 * newcomment.el (comment-kill): Prefix "unused" local.
10764
93c9df73
GM
10765 * term/w32console.el (get-screen-color): Declare.
10766
7d3b9d44
GM
10767 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
10768 Handle symbol elements of byte-compile-initial-macro-environment.
10769
9e2dd53f
LL
107702011-05-10 Leo Liu <sdl.web@gmail.com>
10771
488086f4
SM
10772 * bookmark.el (bookmark-bmenu-mode-map):
10773 Bind bookmark-bmenu-search to `/'.
8b340240 10774
9e2dd53f 10775 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
10776 (footnote-unicode-string, footnote-unicode-regexp): New variable.
10777 (Footnote-unicode): New function.
10778 (footnote-style-alist): Add unicode style to the list.
10779 (footnote-style): Doc fix.
9e2dd53f 10780
79b70037
GM
107812011-05-10 Jim Meyering <meyering@redhat.com>
10782
10783 Fix doubled-word typos.
10784 * international/quail.el (quail-insert-kbd-layout): and and -> and
10785 * kermit.el: and and -> and
10786 * net/ldap.el (ldap-search-internal): to to -> to
10787 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
10788 * progmodes/js.el (js-mode): and and -> and
10789 * textmodes/artist.el (artist-move-to-xy): at at -> at
10790 (artist-draw-region-trim-line-endings): if if -> if
10791 And Safetyc -> Safety.
10792 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
10793
b8f82dc1 107942011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 10795 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
10796
10797 * files.el (hack-one-local-variable-eval-safep):
10798 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
10799
4f99f44b
GM
108002011-05-10 Glenn Morris <rgm@gnu.org>
10801
10802 * calendar/diary-lib.el (diary-list-entries-hook)
10803 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
10804 (diary-nongregorian-marking-hook, diary-list-entries)
10805 (diary-include-other-diary-files, diary-mark-entries)
10806 (diary-mark-included-diary-files): Doc fixes.
10807
84f29e6b
JB
108082011-05-09 Juanma Barranquero <lekktu@gmail.com>
10809
10810 * misc.el: Require tabulated-list.el during compilation.
10811
9bedd73a
CY
108122011-05-09 Chong Yidong <cyd@stupidchicken.com>
10813
488086f4
SM
10814 * progmodes/compile.el (compilation-start):
10815 Run compilation-filter-hook for the async case too.
9bedd73a
CY
10816 (compilation-filter-hook): Doc fix.
10817
797c735c
DD
108182011-05-09 Deniz Dogan <deniz@dogan.se>
10819
10820 * wdired.el: Remove outdated installation comment. Fix usage
10821 comment.
10822
5f4b1dfe
JB
108232011-05-09 Juanma Barranquero <lekktu@gmail.com>
10824
10825 * misc.el: Implement new command `list-dynamic-libraries'.
10826 (list-dynamic-libraries--loaded-only-p): New variable.
10827 (list-dynamic-libraries--refresh): New function.
10828 (list-dynamic-libraries): New command.
10829
4c44026c
CY
108302011-05-09 Chong Yidong <cyd@stupidchicken.com>
10831
488086f4
SM
10832 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10833 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
10834 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
10835 higher priority to avoid clobbering by gnu.
10836
027f966d
CY
108372011-05-08 Chong Yidong <cyd@stupidchicken.com>
10838
10839 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
10840 if the face has existing theme settings (Bug#8454).
10841
085f5d7d
CY
108422011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
10843
488086f4
SM
10844 * progmodes/perl-mode.el (perl-imenu-generic-expression):
10845 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 10846
2a86a00c
RS
10847 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
10848 special file names `.' and `..' (Bug#8259).
10849
d9c54a06
CY
108502011-05-08 Chong Yidong <cyd@stupidchicken.com>
10851
488086f4
SM
10852 * progmodes/grep.el (grep-mode-font-lock-keywords):
10853 Remove buffer-changing entries.
d9c54a06
CY
10854 (grep-filter): New function.
10855 (grep-mode): Add it to compilation-filter-hook.
10856
10857 * progmodes/compile.el (compilation-filter-hook)
10858 (compilation-filter-start): New defvars.
10859 (compilation-filter): Call compilation-filter-hook prior to
10860 updating the process mark.
10861
c4662635
SM
108622011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10863
10864 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
10865
b0512a1d
EZ
108662011-05-07 Eli Zaretskii <eliz@gnu.org>
10867
605c9376
EZ
10868 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
10869 mailclient-send-it even if window-system is nil. (Bug#8595)
10870
c4662635
SM
10871 * term/w32console.el (terminal-init-w32console):
10872 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
10873 background-mode. (Bug#8597)
10874
d1dc2cc2
SM
108752011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
10876
10877 Make bytecomp.el understand that defmethod defines funs (bug#8631).
10878 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
10879 New functions.
10880 (defgeneric, eieio--defmethod): Use them.
10881 (eieio-defgeneric): Remove.
10882 (defmethod): Call defgeneric in a way visible to the byte-compiler.
10883
915d1300
GM
108842011-05-07 Glenn Morris <rgm@gnu.org>
10885
a3961c3e
GM
10886 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
10887 Use let rather than let*.
10888 (timeclock-find-discrep): Remove unused local.
10889
314347b9
GM
10890 * calendar/diary-lib.el (diary-comment-start): Doc fix.
10891
915d1300
GM
10892 * calendar/appt.el (appt-time-msg-list): Doc fix.
10893
275b59b0
NF
108942011-05-06 Noah Friedman <friedman@splode.com>
10895
10896 * apropos.el (apropos-print-doc): Only use
10897 emacs-lisp-docstring-fill-column when it is bound to an integer,
10898 per that variable's documentation.
10899
6c19f744
SM
109002011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
10901
10902 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 10903 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 10904
60f884b2
GM
109052011-05-06 Glenn Morris <rgm@gnu.org>
10906
5006e634
GM
10907 * calendar/appt.el (appt-message-warning-time): Doc fix.
10908 (appt-warning-time-regexp): New option.
10909 (appt-make-list): Respect appt-message-warning-time.
10910
548d0a63
GM
10911 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
10912 New options.
10913 (diary-add-to-list): Strip comments from the displayed string.
10914 (diary-mode): Set comment-start and comment-end.
10915
60f884b2
GM
10916 * vc/diff-mode.el (smerge-refine-subst): Declare.
10917 (diff-refine-hunk): Don't require smerge-mode when compiling.
10918
989681bb
JB
109192011-05-06 Juanma Barranquero <lekktu@gmail.com>
10920
10921 * simple.el (list-processes): Return nil as the docstring says.
10922
a6bc05e1
MA
109232011-05-05 Michael Albinus <michael.albinus@gmx.de>
10924
10925 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
10926 to "".
10927 (ange-ftp-write-region, ange-ftp-insert-file-contents)
10928 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
10929 determining of binary transfer. (Bug#7383)
10930
23c22e9a
MA
109312011-05-05 Michael Albinus <michael.albinus@gmx.de>
10932
c4662635
SM
10933 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
10934 Fix port computation bug. (Bug#8618)
23c22e9a 10935
0bff894f
GM
109362011-05-05 Glenn Morris <rgm@gnu.org>
10937
b8296902
GM
10938 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
10939
1f522ce8
GM
10940 * simple.el (shell-dynamic-complete-functions)
10941 (comint-dynamic-complete-functions): Declare.
10942
cf5bee67
GM
10943 * net/network-stream.el (gnutls-negotiate):
10944 * simple.el (tabulated-list-print): Fix declarations.
10945
10946 * progmodes/gud.el (syntax-symbol, syntax-point):
10947 Remove unnecessary and incorrect declarations.
10948
0bff894f
GM
10949 * emacs-lisp/check-declare.el (check-declare-scan):
10950 Handle byte-compile-initial-macro-environment in bytecomp.el
10951
9869b3ae
SM
109522011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
10953
10954 Fix earlier half-done eieio-defmethod change (bug#8338).
10955 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
10956 Streamline and change calling convention.
10957 (defmethod): Adjust accordingly and simplify.
10958 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
10959 new eieio--defmethod.
10960 (slot-boundp): Minor CSE simplification.
10961
9c1d5ac5
MZ
109622011-05-05 Milan Zamazal <pdm@zamazal.org>
10963
10964 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
10965 (glasses-make-readable): Use glasses-separate-capital-groups.
10966
455c834e
JB
109672011-05-05 Juanma Barranquero <lekktu@gmail.com>
10968
10969 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
10970 (warning-series): Doc fix.
10971 (display-warning): Don't try to create the buffer if we just found it.
10972
9ed7c8cb
CY
109732011-05-04 Chong Yidong <cyd@stupidchicken.com>
10974
10975 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
10976 (autoload-find-generated-file): New function.
10977 (generate-file-autoloads): Bind generated-autoload-file to
10978 buffer-file-name.
9869b3ae
SM
10979 (update-file-autoloads, update-directory-autoloads):
10980 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
10981 output file (Bug#7989).
10982 (batch-update-autoloads): Doc fix.
10983
0898ca10
JB
109842011-05-04 Juanma Barranquero <lekktu@gmail.com>
10985
10986 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
10987
31dfb76c
GM
109882011-05-04 Glenn Morris <rgm@gnu.org>
10989
f330b642
GM
10990 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
10991 function, so it follows changes in calendar-date-style.
10992 (diary-fancy-date-matcher): New function.
10993 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
10994 (diary-fancy-font-lock-fontify-region-function):
10995 Use diary-fancy-date-pattern as a function.
10996
31dfb76c
GM
10997 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
10998 non-numbers for `year' etc pseudo-variables. (Bug#8583)
10999
48e79d6a
TZ
110002011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
11001
11002 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
11003 instead of positional arguments. Allow :keylist and :crlfiles
11004 arguments.
11005 (open-gnutls-stream): Call it.
11006
11007 * net/network-stream.el (network-stream-open-starttls): Adjust to
11008 call `gnutls-negotiate' with :process and :hostname arguments.
11009
dd5a5ee0
SM
110102011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11011
ef80fc09
SM
11012 * minibuffer.el (completion--message): New function.
11013 (completion--do-completion, minibuffer-complete)
11014 (minibuffer-force-complete, minibuffer-complete-word): Use it.
11015 (completion--do-completion): Don't ignore completion-auto-help when in
11016 icomplete-mode.
11017
dd5a5ee0
SM
11018 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
11019 internal encoding (e.g. tibetan zero is not whitespace).
11020 (global-whitespace-mode): Prefer save-current-buffer.
11021 (whitespace-trailing-regexp): Remove useless save-match-data.
11022 (whitespace-empty-at-bob-regexp): Minor simplification.
11023
b7d22a83
CY
110242011-05-03 Chong Yidong <cyd@stupidchicken.com>
11025
11026 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
11027
5192af46
AM
110282011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11029
11030 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 11031 Use `concat' to create string for insertion.
5192af46 11032
5767d190
SM
110332011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11034
11035 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
11036 Avoid open-line which runs post-self-insert-hook.
11037 (bibtex-fill-entry): Remove unused `end' var.
11038
bf242939
AM
110392011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
11040
5767d190
SM
11041 * textmodes/ispell.el (ispell-add-per-file-word-list):
11042 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 11043
25666126
LL
110442011-05-03 Leo Liu <sdl.web@gmail.com>
11045
11046 * isearch.el (isearch-yank-pop): New command.
5767d190 11047 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
11048 (isearch-forward): Mention it.
11049
52d3c2d0
SM
110502011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11051
1bcace58
SM
11052 * simple.el (minibuffer-complete-shell-command): Remove.
11053 (minibuffer-local-shell-command-map): Use completion-at-point.
11054 (read-shell-command): Setup completion vars here instead.
11055 (read-expression-map): Bind TAB to symbol completion.
11056
52d3c2d0
SM
11057 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
11058 error directly rather via storing it into `results'.
11059
35813471
LL
110602011-05-02 Leo Liu <sdl.web@gmail.com>
11061
11062 * vc/diff.el: Fix description.
11063
e793a940
LMI
110642011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11065
11066 * server.el (server-eval-at): New function.
11067
8de66e05
LMI
110682011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
11069
11070 * net/network-stream.el (open-network-stream): Take a :nowait
11071 parameter and pass it on to `make-network-process'.
11072 (network-stream-open-plain): Ditto.
11073
dcb79f20
AS
110742011-04-30 Andreas Schwab <schwab@linux-m68k.org>
11075
11076 * faces.el (face-spec-set-match-display): Don't match toolkit
11077 options on terminal frames.
11078
14a7fbd8
SM
110792011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
11080
7eabc1be
SM
11081 * progmodes/pascal.el: Use lexical binding.
11082 (pascal-mode-map): Remove author preferences.
11083
14a7fbd8
SM
11084 * pcomplete.el (pcomplete-std-complete): Don't abuse
11085 completion-at-point.
11086
50f84510
JB
110872011-04-28 Juanma Barranquero <lekktu@gmail.com>
11088
6e087a44
JB
11089 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
11090 removing code that has been dead since 1991 or so.
11091
50f84510
JB
11092 * startup.el (command-line): When warning about "_emacs", use a
11093 delayed warning to allow the user to filter it out.
11094
0ba690bd
DD
110952011-04-28 Deniz Dogan <deniz@dogan.se>
11096
11097 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
11098 user has not joined.
11099
08abfaad
SM
111002011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11101
11102 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
11103 aren't any completions at point.
11104
638f053a
JB
111052011-04-28 Juanma Barranquero <lekktu@gmail.com>
11106
11107 * subr.el (display-delayed-warnings): New function.
11108 (delayed-warnings-hook): New variable.
11109
8fff8daa
SM
111102011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11111
08abfaad
SM
11112 * minibuffer.el (completion-at-point, completion-help-at-point):
11113 Don't presume that a given completion-at-point-function will always
11114 use the same calling convention.
11115
8fff8daa
SM
11116 * pcomplete.el (pcomplete-completions-at-point):
11117 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
11118 pcomplete-seen is non-nil.
11119 (pcomplete-comint-setup): Also recognize the new comint/shell
11120 completion functions.
11121 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
11122 pcomplete-seen is non-nil.
11123
841a1577 111242011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 11125
841a1577 11126 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 11127 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 11128 the first character in the entry. This allows for code to add its
211ec907
UJ
11129 own uid to the entry.
11130 (icalendar--convert-float-to-ical): Add export of
11131 `diary-float'-entries save for those with the optional DAY
11132 argument.
11133
2a782793
DC
111342011-04-27 Daniel Colascione <dan.colascione@gmail.com>
11135
11136 * subr.el (shell-quote-argument): Use alternate escaping strategy
11137 when we spot a variable reference in a string.
11138
0438ce91
DC
111392011-04-26 Daniel Colascione <dan.colascione@gmail.com>
11140
11141 * cus-start.el (all): Define customization for debug-on-event.
11142
841a1577 111432011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
11144
11145 * subr.el (shell-quote-argument): Escape correctly under Windows.
11146
d090ed6c
SM
111472011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
11148
11149 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
11150
bfd31217
MA
111512011-04-25 Michael Albinus <michael.albinus@gmx.de>
11152
d090ed6c
SM
11153 * net/tramp.el (tramp-process-actions): Add POS argument.
11154 Delete region between POS and (pos).
bfd31217 11155
d090ed6c
SM
11156 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
11157 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
11158 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
11159
11160 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
11161 position in `tramp-process-actions' call.
11162
11163 * net/trampver.el: Update release number.
11164
e92f3bd3
SM
111652011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
11166
850256b5
SM
11167 * custom.el (defcustom): Obey lexical-binding.
11168
e92f3bd3
SM
11169 Fix octave-inf completion problems reported by Alexander Klimov.
11170 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
11171 Inherit from octave-mode-syntax-table.
11172 (inferior-octave-mode): Set info-lookup-mode.
11173 (inferior-octave-completion-at-point): New function.
11174 (inferior-octave-complete): Use it and completion-in-region.
11175 (inferior-octave-dynamic-complete-functions): Use it as well, and use
11176 comint-filename-completion.
11177 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
11178 symbol elements which shouldn't be word elements.
11179 (octave-font-lock-keywords, octave-beginning-of-defun)
11180 (octave-function-header-regexp): Adjust regexps accordingly.
11181 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
11182
cd22b309
JB
111832011-04-25 Juanma Barranquero <lekktu@gmail.com>
11184
11185 * net/gnutls.el (gnutls-errorp): Declare before first use.
11186
8b492194
TZ
111872011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
11188
11189 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
11190 verify-error, and verify-hostname-error parameters. Check whether
cd22b309 11191 default trustfile exists before going to use it. Add missing
5a5fa834 11192 argument to gnutls-message-maybe call. Return value.
8b492194
TZ
11193 Reported by Claudio Bley <claudio.bley@gmail.com>.
11194 (open-gnutls-stream): Add usage example.
11195
11196 * net/network-stream.el (network-stream-open-starttls): Give host
11197 parameter to `gnutls-negotiate'.
11198 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 11199 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 11200
841a1577 112012011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 11202
cd22b309
JB
11203 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
11204 Use correct match group (bug#8438).
05842630 11205
3ba7869c
CY
112062011-04-24 Chong Yidong <cyd@stupidchicken.com>
11207
512e3ae1
CY
11208 * emacs-lisp/package.el (package-built-in-p): Fix typo.
11209 (package-menu--generate): New arg specifying packages to show.
11210 (package-menu-refresh, package-menu-execute, list-packages):
11211 Callers changed.
11212 (package-show-package-list): New function, replacing deleted
11213 package--list-packages (renamed because it is non-internal).
11214
11215 * finder.el (finder-list-matches): Use package-show-package-list
11216 instead of deleted package--list-packages.
11217
e92f3bd3
SM
11218 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
11219 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
11220 (vc-annotate-mode-map): Bind it to RET.
11221
7031be6d
UR
112222011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
11223
11224 * progmodes/etags.el (next-file): Don't use set-buffer to change
11225 buffers (Bug#8478).
11226
4ef177aa
CY
112272011-04-24 Chong Yidong <cyd@stupidchicken.com>
11228
c8d173eb
CY
11229 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
11230
4ef177aa
CY
11231 * apropos.el (apropos-label-face): Avoid variable-pitch face.
11232 (apropos-accumulator): Doc fix.
11233 (apropos-function, apropos-macro, apropos-command)
11234 (apropos-variable, apropos-face, apropos-group, apropos-widget)
11235 (apropos-plist): Add face property.
11236 (apropos-symbols-internal): Fix indentation.
11237 (apropos-print): Simplify help, and recognize apropos-multi-type.
11238 (apropos-print-doc): Use button-type-get to extract the button's
11239 face property. Fill docstring (Bug#8352).
11240
4ffd0d6b 112412011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
11242
11243 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
11244
c6c32125 11245 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 11246 (mpuz-mode-map): Use mapc.
c6c32125
JB
11247 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
11248 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
11249 Fix typos in docstrings.
11250
58d468b4
JB
11251 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
11252 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
11253
6470c3c6
JB
11254 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
11255
4ffd0d6b 112562011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
11257
11258 * minibuffer.el (completion--do-completion): Avoid the "Next char
11259 not unique" prompt if icomplete-mode is enabled (Bug#5849).
11260
3ad8bad0
CY
11261 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
11262 mouse-2 into unread-command-events, it is interpreted correctly.
11263
71d73c9c 11264 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 11265 (image-toggle-display): Doc fix.
71d73c9c 11266
841a1577 112672011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 11268
4ffd0d6b
GM
11269 * textmodes/page.el (what-page): Use line-number-at-pos to
11270 calculate line number (Bug#6825).
6e1dbaa9 11271
c2fb1b60
JB
112722011-04-22 Juanma Barranquero <lekktu@gmail.com>
11273
11274 * eshell/esh-mode.el (find-tag-interactive): Declare function.
11275 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
11276 Pass argument NO-DEFAULT to `find-tag-interactive'.
11277
e02f48d7
JB
112782011-04-22 Juanma Barranquero <lekktu@gmail.com>
11279
11280 Lexical-binding cleanup.
11281
11282 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
11283 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
11284 * progmodes/ada-prj.el (ada-prj-initialize-values)
11285 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
11286 (ada-prj-show-value):
11287 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
11288 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
11289 (antlr-invalidate-context-cache, antlr-options-menu-filter)
11290 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
11291 * progmodes/bug-reference.el (bug-reference-push-button):
11292 * progmodes/fortran.el (fortran-line-length):
11293 * progmodes/glasses.el (glasses-change):
11294 * progmodes/octave-mod.el (octave-fill-paragraph):
11295 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
11296 (python-pdbtrack-grub-for-buffer, python-sentinel):
11297 * progmodes/sql.el (sql-save-connection):
11298 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
11299 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
11300 Mark unused parameters.
11301
11302 * progmodes/compile.el (compilation--flush-directory-cache)
11303 (compilation--flush-parse, compile-internal): Mark unused parameters.
11304 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
11305 (compilation-next-error-function): Remove unused variable `timestamp'.
11306
11307 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
11308 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
11309
11310 * progmodes/dcl-mode.el (dcl-end-of-command):
11311 Remove unused variable `start'.
11312 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
11313 (dcl-option-value-basic, dcl-option-value-offset)
11314 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
11315 Mark unused parameters.
11316 (dcl-save-local-variable): Remove unused variable `val'.
11317 (mode): Declare.
11318
11319 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
11320 Mark unused parameters.
11321 (delphi-ignore-changes): Move before first use.
11322 (delphi-charset-token-at): Remove unused variable `start'.
11323 (delphi-else-start): Remove unused variable `if-count'.
11324 (delphi-comment-block-start, delphi-comment-block-end):
11325 Remove unused variable `kind'.
11326 (delphi-indent-line): Remove unused variable `new-point'.
11327
11328 * progmodes/ebrowse.el (ebrowse-files-list)
11329 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
11330 Mark unused parameters. Don't quote `lambda'.
11331 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
11332 Don't quote `lambda'.
11333 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
11334 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
11335 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
11336 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
11337 Use `ignore-errors'.
11338 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
11339 (ebrowse-view/find-file-and-search-pattern)
11340 (ebrowse-view/find-member-declaration/definition):
11341 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
11342 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
11343 Rename parameter PREFIX-ARG to PREFIX.
11344 (ebrowse-tags-read-name): Remove unused variables `start' and
11345 `member-info'.
11346 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
11347 to `tags-file'.
11348
11349 * progmodes/etags.el (local-find-tag-hook): Declare.
11350 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
11351 Mark unused parameters.
11352
11353 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
11354 (executable-interpret): Mark unused parameter.
11355
11356 * progmodes/flymake.el (flymake-process-sentinel)
11357 (flymake-after-change-function)
11358 (flymake-create-temp-with-folder-structure)
11359 (flymake-get-include-dirs-dot): Mark unused parameters.
11360 (flymake-safe-delete-directory): Remove unused variable `err'.
11361
11362 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
11363 (speedbar-timer-fn, speedbar-line-text)
11364 (speedbar-change-expand-button-char, speedbar-delete-subblock)
11365 (speedbar-center-buffer-smartly): Declare functions.
11366 (gdb-find-watch-expression): Remove unused variable `array'.
11367 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
11368 (gdb-starting): Mark unused parameters.
11369 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
11370 (gdb-table-string): Remove unused variable `res'.
11371 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
11372 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
11373 (gdb-display-buffer): Remove unused variable `cur-size'.
11374
11375 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
11376 allow lexical-binding compilation.
11377 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
11378 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
11379 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
11380 Mark unused parameters.
11381 (gud-gdb-marker-filter): Remove unused variable `match'.
11382 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
11383 lambda expressions and funcall them, instead of using `fset'.
11384
11385 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
11386 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
11387
11388 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
11389 variable `header-beg'; use `let'.
11390
11391 * progmodes/icon.el (indent-icon-exp): Remove unused variables
11392 `restart', `last-sexp' and `at-do'.
11393
11394 * progmodes/js.el (js--debug): Mark unused parameter.
11395 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
11396 (js--splice-into-items): Remove unused variable `item'.
11397 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
11398
11399 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
11400 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
11401 (makefile-complete): Remove unused variable `try'.
11402 (makefile-fill-paragraph, makefile-match-function-end):
11403 Mark unused parameters.
11404
11405 * progmodes/octave-inf.el (inferior-octave-complete):
11406 Remove unused variable `proc'.
11407 (inferior-octave-output-digest): Mark unused parameter.
11408
11409 * progmodes/perl-mode.el (perl-calculate-indent):
11410 Remove unused variable `err'.
11411
11412 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
11413 (prolog-indent-line): Mark unused parameters.
11414 (prolog-indent-line): Remove unused variable `beg'.
11415
11416 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
11417 (reporter-dont-compact-list): Declare.
11418
11419 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
11420 Remove unused variable `char'.
11421 (sh-debug): Mark unused parameter.
11422 (sh-get-indent-info): Remove unused variable `start'.
11423 (sh-calculate-indent): Remove unused variable `var'.
11424
11425 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
11426 (simula-electric-keyword): Remove unused variable `null'.
11427 (simula-search-backward, simula-search-forward): Remove unused
11428 variables `begin' and `end'.
11429
11430 * progmodes/vera-mode.el (vera-guess-basic-syntax):
11431 Remove unused variable `pos'.
11432 (vera-electric-tab, vera-comment-uncomment-region):
11433 Mark unused parameters.
11434 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
11435
7ede3b65
CY
114362011-04-22 Chong Yidong <cyd@stupidchicken.com>
11437
11438 * emacs-lisp/package.el (package--builtins, package-alist)
11439 (package-load-descriptor, package-built-in-p, package-activate)
11440 (define-package, package-installed-p)
11441 (package-compute-transaction, package-buffer-info)
11442 (package--push): Doc fix. Distinguish more clearly between
11443 version strings and version lists.
11444
121656e9
JB
114452011-04-21 Juanma Barranquero <lekktu@gmail.com>
11446
11447 Lexical-binding cleanup.
11448
11449 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
11450 (5x5-make-mutate-best):
11451 * play/fortune.el (fortune-in-buffer):
11452 * play/gomoku.el (gomoku-init-display):
11453 * play/solitaire.el (solitaire, solitaire-do-check):
11454 * play/tetris.el (tetris-default-update-speed-function):
11455 Mark unused parameters.
11456
11457 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
11458 (bubbles--shift): Remove unused variable `char-org'.
11459 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
11460 (bubbles--show-images): Remove unused variable `char'.
11461
11462 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
11463 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
11464 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
11465 (decipher-analyze-buffer): Use ?\s.
11466 (decipher-make-checkpoint): Remove unused variable `mapping'.
11467
11468 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
11469
11470 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
11471 Remove unused variable `result'; use `let'.
11472
11473 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
11474 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
11475 (gametree-children-shown-p, gametree-compute-reduced-score):
11476 Use `ignore-errors'.
11477
11478 * play/handwrite.el (ps-lpr-switches): Declare.
11479 (handwrite): Remove unused variables `pmin' and `lastp'.
11480
11481 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
11482
11483 * play/landmark.el (landmark-init-display)
11484 (landmark-update-naught-weights): Mark unused parameters.
11485 (landmark-y): Remove unused variable `noise'. Simplify.
11486 (landmark-human-plays): Remove unused variable `score'.
11487
11488 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
11489 (mpuz-try-proposal): Remove unused variable `game'.
11490
11491 * play/zone.el (life-patterns): Declare.
11492
80f499c7
JB
114932011-04-20 Juanma Barranquero <lekktu@gmail.com>
11494
11495 * vc/vc.el (ediff-vc-internal): Declare function.
11496
024ff170
SM
114972011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11498
c0a193ea
SM
11499 * shell.el: Use lexical-binding and std completion UI.
11500 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
11501 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
11502 comint-preoutput-filter-functions rather than on
11503 comint-output-filter-functions.
11504 (shell-command-completion, shell--command-completion-data)
11505 (shell-filename-completion, shell-environment-variable-completion)
11506 (shell-c-a-p-replace-by-expanded-directory): New functions.
11507 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
11508 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
11509 (shell-dynamic-complete-environment-variable): Use them.
11510 (shell-dynamic-complete-as-environment-variable)
11511 (shell-dynamic-complete-as-command): Remove.
11512 (shell-match-partial-variable): Match past point.
11513 * comint.el: Clean up use of completion-at-point-functions.
11514 (comint-completion-at-point): New function.
11515 (comint-mode): Use it completion-at-point-functions.
11516 (comint-dynamic-complete): Make it obsolete.
11517 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
11518 (comint-c-a-p-replace-by-expanded-history): New function.
11519 (comint-dynamic-complete-functions)
11520 (comint-replace-by-expanded-history): Use it.
11521 * minibuffer.el (completion-table-with-terminator): Allow dynamic
11522 termination strings. Try harder to avoid second try-completion.
11523 (completion-in-region-mode-map): Disable bindings that don't work yet.
11524
2dbaa080
SM
11525 * comint.el: Use lexical-binding. Require CL.
11526 (comint-dynamic-complete-functions): Use comint-filename-completion.
11527 (comint-completion-addsuffix): Tweak custom type.
11528 (comint-filename-completion, comint--common-suffix)
11529 (comint--common-quoted-suffix, comint--table-subvert)
11530 (comint--complete-file-name-data): New functions.
11531 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
11532 (comint-dynamic-list-filename-completions): Use them.
11533 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 11534
2dbaa080
SM
11535 * minibuffer.el (completion-in-region-mode):
11536 Keep completion-in-region-mode--predicate global.
11537 (completion-in-region--postch):
11538 Assume completion-in-region-mode--predicate is not null.
11539
c79a6f38
SM
11540 * progmodes/flymake.el (flymake-start-syntax-check-process):
11541 Obey `dir'. Simplify.
11542
024ff170
SM
11543 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
11544 we're in VC after all.
11545
1c6c854e
CS
115462011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
11547
11548 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 11549 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
11550 (vc-version-diff): Use vc-diff-build-argument-list-internal.
11551
bed7f140
SM
115522011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11553
332e62ab
SM
11554 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
11555 add sanity check.
11556
bed7f140
SM
11557 * obsolete/erc-hecomplete.el: Make obsolete.
11558 * obsolete/: Standardize obsolescence info in the header.
11559
f195c582
GM
115602011-04-20 Glenn Morris <rgm@gnu.org>
11561
11562 * calendar/solar.el (solar-horizontal-coordinates):
11563 Use the longitude argument rather than `calendar-longitude'.
11564 (solar-date-next-longitude): Remove unused locals.
11565
cb79b8c0
VJL
115662011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11567
11568 * whitespace.el: New version 13.2.1.
11569
115702011-04-20 felix <EmacsWiki> (tiny change)
11571
d8e4b68b 11572 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
11573 switching between major modes on a file.
11574
602ea69d
SM
115752011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
11576
11577 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
11578 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
11579 multi-line comments as well.
11580
06b60517
JB
115812011-04-19 Juanma Barranquero <lekktu@gmail.com>
11582
11583 Lexical-binding cleanup.
11584
11585 * arc-mode.el (archive-mode-revert):
11586 * cmuscheme.el (scheme-interactively-start-process):
11587 * custom.el (custom-initialize-delay):
11588 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
11589 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
11590 * emacs-lock.el (emacs-lock-clear-sentinel):
11591 * ezimage.el (defezimage):
11592 * follow.el (follow-avoid-tail-recenter):
11593 * fringe.el (set-fringe-mode-1):
11594 * generic-x.el (bat-generic-mode-compile):
11595 * help-mode.el (help-info-variable, help-do-xref)
11596 (help-mode-revert-buffer):
11597 * help.el (view-emacs-todo):
11598 * iswitchb.el (iswitchb-completion-help):
11599 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
11600 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
11601 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
11602 * locate.el (locate-update):
11603 * longlines.el (longlines-encode-region)
11604 (longlines-after-change-function):
11605 * outline.el (outline-isearch-open-invisible):
11606 * ps-def.el (declare-function, charset-dimension, char-width)
11607 (encode-char):
11608 * ps-mule.el (ps-mule-plot-string):
11609 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
11610 (recentf-edit-list-select, recentf-edit-list-validate)
11611 (recentf-open-files-action):
11612 * rect.el (delete-whitespace-rectangle-line)
11613 (rectangle-number-line-callback):
11614 * register.el (window-configuration-to-register)
11615 (frame-configuration-to-register):
11616 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
11617 * select.el (xselect-convert-to-string, xselect-convert-to-length)
11618 (xselect-convert-to-targets, xselect-convert-to-delete)
11619 (xselect-convert-to-filename, xselect-convert-to-charpos)
11620 (xselect-convert-to-lineno, xselect-convert-to-colno)
11621 (xselect-convert-to-os, xselect-convert-to-host)
11622 (xselect-convert-to-user, xselect-convert-to-class)
11623 (xselect-convert-to-name, xselect-convert-to-integer)
11624 (xselect-convert-to-atom, xselect-convert-to-identity):
11625 * subr.el (declare, ignore, process-kill-without-query)
11626 (text-clone-maintain):
11627 * terminal.el (te-get-char, te-tic-sentinel):
11628 * tool-bar.el (tool-bar-make-keymap):
11629 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
11630 * type-break.el (type-break-mode, type-break-noninteractive-query):
11631 * view.el (View-back-to-mark):
11632 * wid-browse.el (widget-browse-action, widget-browse-widget)
11633 (widget-browse-widgets, widget-browse-sexp):
11634 * widget.el (define-widget-keywords):
11635 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
11636 Mark unused parameters.
11637
11638 * align.el (align-adjust-col-for-rule): Mark unused parameter.
11639 (align-areas): Remove unused variable `look'.
11640 (align-region): Remove unused variables `real-end' and `pos-list'.
11641
11642 * apropos.el (apropos-score-doc): Remove unused variable `i'.
11643
11644 * bindings.el (mode-line-modified, mode-line-remote):
11645 Mark unused parameters.
11646 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
11647
11648 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
11649 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
11650
11651 * comint.el (comint-history-isearch-pop-state)
11652 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
11653 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
11654 (comint-substitute-in-file-name): Doc fix.
11655
11656 * completion.el (cmpl-statistics-block): Mark unused parameter.
11657 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
11658 (save-completions-to-file, load-completions-from-file):
11659 Remove unused local variable `e'.
11660
11661 * composite.el (compose-chars): Remove unused variable `len'.
11662 (lgstring-insert-glyph): Remove unused variable `g'.
11663 (compose-glyph-string): Remove unused variables `ascent',
11664 `descent', `lbearing' and `rbearing'.
11665 (compose-glyph-string-relative): Remove unused variables
11666 `lbearing', `rbearing' and `wadjust'.
11667 (compose-gstring-for-graphic): Remove unused variables `header',
11668 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
11669 (compose-gstring-for-terminal): Remove unused variables `header'
11670 and `nchars'. Use `let', not `let*'.
11671
11672 * cus-edit.el (Custom-set, Custom-save, custom-reset)
11673 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
11674 (Custom-buffer-done, custom-buffer-create-internal)
11675 (custom-browse-visibility-action, custom-browse-group-tag-action)
11676 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
11677 (widget-magic-mouse-down-action, custom-toggle-parent)
11678 (custom-add-parent-links, custom-toggle-hide-variable)
11679 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
11680 (custom-toggle-hide-face, face, hook, custom-group-link-action)
11681 (custom-face-menu-create, custom-variable-menu-create, get)
11682 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
11683 (custom-reset-standard-save-and-update): Remove unused variable `value'.
11684 (customize-apropos): Remove unused variable `tests'.
11685 (custom-group-value-create): Remove unused variable `hidden-p'.
11686 (sort-fold-case): Declare.
11687
11688 * cus-theme.el (custom-reset-standard-faces-list)
11689 (custom-reset-standard-variables-list): Declare.
11690 (customize-create-theme, custom-theme-revert, custom-theme-write)
11691 (custom-theme-choose-mode, customize-themes, custom-theme-save):
11692 Mark unused parameters.
11693
11694 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
11695
11696 * delim-col.el (delimit-columns-max): Move defvar before first use.
11697
11698 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 11699 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
11700
11701 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
11702 (auto-insert): Declare.
11703 (desktop-restore-file-buffer): Rename desktop-* parameters;
11704 mark unused ones.
11705 (desktop-create-buffer): Rename desktop-* parameters and bind them.
11706 (desktop-buffer): Rename desktop-* parameters.
11707
11708 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
11709 (dframe-reposition-frame-xemacs, dframe-help-echo)
11710 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
11711 Mark unused parameters.
11712
11713 * dired-aux.el (backup-extract-version-start, overwrite-query)
11714 (overwrite-backup-query, rename-regexp-query)
11715 (rename-non-directory-query): Declare.
11716 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
11717 (dired-add-entry): Remove unused variable `orig-file-name'.
11718 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
11719 Use parameter PRESERVE-TIME instead of accessing dynamic variable
11720 `dired-copy-preserve-time' directly.
11721 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
11722 (dired-insert-subdir-newpos): Rename unused variable `pos'.
11723
11724 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
11725 (dired-virtual-revert, dired-make-relative-symlink):
11726 Mark unused parameters.
11727 (manual-program): Declare.
11728 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
11729 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
11730 wrapped in `with-no-warnings' to avoid replacing one warning by another.
11731
11732 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
11733
11734 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
11735
11736 * echistory.el (electric-history-in-progress, Helper-return-blurb):
11737 Declare.
11738
11739 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
11740
11741 * electric.el (Electric-command-loop): Rename parameter
11742 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
11743
11744 * expand.el (expand-in-literal): Remove unused variable `here'.
11745
11746 * facemenu.el (facemenu-add-new-color):
11747 Remove unused variable `docstring'.
11748
11749 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
11750 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
11751 (face-attr-construct): Mark unused parameter. Doc fix.
11752 (read-color): Remove unused variable `hex-string'.
11753
11754 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
11755 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
11756 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
11757 (display-buffer-other-frame): Remove unused variable `old-window'.
11758 (kill-buffer-hook): Declare.
11759 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
11760 Mark unused parameters.
11761 (after-find-file): Pass 1 to `auto-save-mode', not t.
11762
11763 * files-x.el (auto-insert): Declare.
11764 (modify-file-local-variable-prop-line): Remove unused variable `val'.
11765
11766 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 11767 variable `buf'. Mark unused parameter.
06b60517
JB
11768 (find-lisp-insert-directory): Mark unused parameter.
11769
11770 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
11771 (format-encode-region): Remove unused variables `cur-buf' and `result'.
11772 (format-common-tail): Remove, unused.
11773 (format-deannotate-region): Remove unused variable `loc'.
11774 (format-annotate-region): Remove unused variable `p'.
11775 (format-annotate-single-property-change): Remove unused variables
11776 `default' and `tail'.
11777
11778 * forms.el (read-file-filter): Declare.
11779 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
11780
11781 * frame.el (frame-creation-function-alist): Mark unused parameter.
11782 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
11783
11784 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
11785 Remove unused parameters.
11786 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
11787 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
11788
11789 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
11790 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
11791 (hfy-prepare-tag-map): Mark unused parameters.
11792 (htmlfontify-buffer): Use `called-interactively-p'.
11793
11794 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
11795 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
11796 (ibuffer-do-occur): Mark unused parameters.
11797 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
11798 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
11799
11800 * ibuffer.el: Don't quote `lambda'.
11801 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
11802 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
11803 Mark unused parameters.
11804
11805 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
11806 (ido-completing-read): Mark unused parameters.
11807 (ido-copy-current-word): Mark unused parameters;
11808 remove unused variable `name'.
11809 (ido-sort-merged-list): Remove unused parameter `dirs'.
11810
11811 * ielm.el (ielm-input-sender): Mark unused parameter.
11812 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
11813 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
11814 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
11815 `ielm-string' as a dynamic variable accessible from the IELM prompt.
11816 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
11817
11818 * image-dired.el (image-dired-display-thumbs): Remove unused
11819 variables `curr-file' and `count'.
11820 (image-dired-remove-tag): Remove unused variable `start'.
11821 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
11822 variable `curr-file'
11823 (image-dired-rotate-original): Remove unused variable `temp-file'.
11824 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
11825 Remove unused variable `file'.
11826 (image-dired-gallery-generate): Remove unused variable `curr'.
11827 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
11828
11829 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
11830
11831 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
11832
11833 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
11834
11835 * isearch.el (minibuffer-history-symbol): Declare.
11836 (isearch-edit-string): Remove unused variable `err'.
11837 (isearch-message-prefix, isearch-message-suffix):
11838 Mark unused parameters.
11839
11840 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
11841
11842 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
11843
11844 * makesum.el (double-column): Remove unused variable `cnt'.
11845
11846 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
11847 (ido-ignore-item-temp-list): Declare.
11848
11849 * mouse-drag.el (mouse-drag-throw): Remove unused variables
11850 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
11851 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
11852 (mouse-drag-drag): Remove unused variables `mouse-delta' and
11853 `mouse-col-delta'.
11854
11855 * mouse-sel.el (mouse-extend-internal):
11856 Remove unused variable `orig-window-frame'.
11857
11858 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
11859 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
11860 Move declarations before first use.
11861 (pcomplete-opt): Mark unused parameters; doc fix.
11862
11863 * proced.el (proced-revert): Mark unused parameter.
11864 (proced-send-signal): Remove unused variable `err'.
11865
11866 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
11867 Rename parameter PREFIX-ARG to ARG.
11868 (ps-basic-plot-string, ps-basic-plot-whitespace):
11869 Mark unused parameters.
11870
11871 * replace.el (replace-count): Define.
11872 (occur-revert-function): Mark unused parameters.
11873 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
11874 (isearch-case-fold-search, isearch-string): Declare.
11875 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
11876 bind `case-fold-search'. Remove unused variables `beg' and `end',
11877 and simplify.
11878 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
11879 COUNT and bind `replace-count'.
11880 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
11881 to COUNT.
11882
11883 * savehist.el (print-readably, print-string-length): Declare.
11884
11885 * shadowfile.el (shadow-expand-cluster-in-file-name):
11886 Remove unused variable `cluster'.
11887 (shadow-copy-file): Remove unused variable `i'.
11888 (shadow-noquery, shadow-clusters, shadow-site-cluster)
11889 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
11890 (shadow-define-literal-group, shadow-define-regexp-group)
11891 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
11892
11893 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
11894 (shell): Use `called-interactively-p'.
11895 (shell-directory-tracker): Remove unused variable `chdir-failure'.
11896
11897 * simple.el (compilation-context-lines, comint-file-name-quote-list)
11898 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
11899 (delete-backward-char): Remove unused variable `ocol'.
11900 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
11901 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
11902 (event-apply-hyper-modifier, event-apply-shift-modifier)
11903 (event-apply-control-modifier, event-apply-meta-modifier):
11904 Mark unused parameters.
11905 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
11906 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
11907
11908 * speedbar.el (speedbar-ignored-directory-expressions)
11909 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
11910 (speedbar-find-file, speedbar-dir-follow)
11911 (speedbar-directory-buttons-follow, speedbar-tag-find)
11912 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
11913 (speedbar-buffers-line-directory, speedbar-buffer-click):
11914 Mark unused parameters.
11915 (speedbar-tag-file): Remove unused variable `mode'.
11916 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
11917
11918 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
11919
11920 * talk.el (talk): Remove unused variable `display'.
11921
11922 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
11923 (tar-write-region-annotate): Mark unused parameter.
11924
11925 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
11926 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
11927 Declare them, wrapped in `with-no-warnings' to avoid replacing one
11928 warning by another.
11929
11930 * time-stamp.el (time-stamp-string-preprocess):
11931 Remove unused variable `require-padding'.
11932
11933 * tree-widget.el (widget-glyph-enable): Declare.
11934 (tree-widget-action): Mark unused parameter.
11935
11936 * w32-fns.el (x-get-selection): Mark unused parameter.
11937 (autoload-make-program, generated-autoload-file): Declare.
11938
11939 * wdired.el (wdired-revert): Mark unused parameters.
11940 (wdired-xcase-word): Remove unused variable `err'.
11941
11942 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
11943 (whitespace-help-scroll): Remove unused variable `data-help'.
11944
11945 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
11946 (widget-image-insert, widget-after-change, default)
11947 (widget-default-format-handler, widget-default-notify)
11948 (widget-default-prompt-value, widget-info-link-action)
11949 (widget-url-link-action, widget-function-link-action)
11950 (widget-variable-link-action, widget-file-link-action)
11951 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
11952 (widget-field-prompt-internal, widget-field-action, widget-field-match)
11953 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
11954 (widget-insert-button-action, widget-delete-button-action, visibility)
11955 (widget-documentation-link-action, widget-documentation-string-action)
11956 (widget-const-prompt-value, widget-regexp-match, symbol)
11957 (widget-coding-system-prompt-value)
11958 (widget-key-sequence-value-to-external, sexp)
11959 (widget-sexp-value-to-internal, character, vector, cons)
11960 (widget-choice-prompt-value, widget-boolean-prompt-value)
11961 (widget-color--choose-action): Mark unused parameters.
11962 (widget-item-match-inline, widget-choice-match-inline)
11963 (widget-checklist-match, widget-checklist-match-inline)
11964 (widget-group-match): Rename parameter VALUES to VALS.
11965 (widget-field-value-set): Remove unused variable `size'.
11966 (widget-color-action): Remove unused variables `value' and `start'.
11967
11968 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 11969 variable `dir'. Doc fix.
06b60517
JB
11970 (windmove-find-other-window): Don't pass it.
11971
11972 * window.el (count-windows): Mark unused parameter.
11973 (bw-adjust-window): Remove unused variable `err'.
11974
11975 * woman.el (woman-file-name): Remove unused variable `default'.
11976 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
11977 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
11978 (global-font-lock-mode): Declare.
11979 (woman-decode-region): Mark unused parameter.
11980 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
11981
11982 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
11983 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
11984 (x-dnd-handle-moz-url): Remove unused variable `title'.
11985 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
11986
11987 * xml.el (xml-parse-tag, xml-parse-attlist):
11988 Remove unused variable `pos'.
11989
bc4f7f3d
GM
119902011-04-19 Glenn Morris <rgm@gnu.org>
11991
11992 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
11993 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
11994 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
11995 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
11996 * calendar/cal-html.el (cal-html-insert-minical):
11997 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
11998 (calendar-mark-date-pattern):
11999 Prefix "unused" locals.
12000
12001 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
12002 optional argument `style'.
12003
12004 * calendar/appt.el (appt-make-list):
12005 * calendar/cal-china.el (calendar-chinese-date-string):
12006 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
12007 (diary-hebrew-yahrzeit):
12008 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
12009 * calendar/calendar.el (calendar-generate-window):
12010 * calendar/time-date.el (time-to-days):
12011 Remove unused local variables.
12012
16a43933
CY
120132011-04-18 Chong Yidong <cyd@stupidchicken.com>
12014
12015 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
12016 glyphless-char-display table.
12017 (tabulated-list-glyphless-char-display): New var.
12018
7eed1860
SS
120192011-04-18 Sam Steingold <sds@gnu.org>
12020
12021 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
12022 to acknowledgments.
12023
4d2d1ccd
GM
120242011-04-17 Glenn Morris <rgm@gnu.org>
12025
12026 * calendar/diary-lib.el (diary-sexp-entry):
12027 * calendar/holidays.el (holiday-sexp):
12028 Set debug-on-error rather than the removed stack-trace-on-error.
12029
239da61d
GM
120302011-04-16 Glenn Morris <rgm@gnu.org>
12031
12032 * progmodes/f90.el: Use lexical-binding.
12033 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
12034
8b05752a
SM
120352011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
12036
daca8ba5
SM
12037 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
12038 (mail-mode): Setup mailalias completion here instead.
12039 * mail/mailalias.el: Use lexical-binding.
12040 (pattern, mailalias-done): Declare dynamic.
12041 (mail-completion-at-point-function): New function, from mail-complete.
12042 (mail-complete): Use it.
12043 (mail-completion-expand): New function.
12044 (mail-get-names): Use it.
12045 (mail-directory, mail-directory-process, mail-directory-stream):
12046 Don't use `pattern' for lexically bound arg.
12047
6f542485
SM
12048 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
12049
037e7c3f
SM
12050 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
12051 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
12052 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
12053
8b05752a
SM
12054 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
12055 (byte-save-window-excursion, byte-temp-output-buffer-setup)
12056 (byte-interactive-p): Define them again, for use when inlining
12057 old code.
12058
49093f60
JB
120592011-04-15 Juanma Barranquero <lekktu@gmail.com>
12060
12061 * loadup.el: Use `string-to-number', not `string-to-int'.
12062
b5b8e7de
SM
120632011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
12064
12065 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
12066 gud-gdb-complete-command.
12067 (gud-gdb-completions): New function, from gud-gdb-complete-command.
12068 (gud-gdb-completion-at-point): New function.
12069 (gud-gdb-completions): Remove.
12070
f42efeb5
MA
120712011-04-14 Michael Albinus <michael.albinus@gmx.de>
12072
49093f60
JB
12073 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
12074 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
12075 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
12076 whether `executable-find' is bound.
f42efeb5
MA
12077
12078 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
12079
e240cc21
SM
120802011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12081
12082 * minibuffer.el (completion-in-region-mode-predicate)
12083 (completion-in-region-mode--predicate): New vars.
12084 (completion-in-region, completion-in-region--postch)
12085 (completion-in-region-mode): Use them.
12086 (completion--capf-wrapper): Also return the hook function.
12087 (completion-at-point, completion-help-at-point):
12088 Adjust and provide a predicate.
c2bd2ab0
SM
12089
12090 Preserve arg names for advice of subr and lexical functions (bug#8457).
12091 * help-fns.el (help-function-arglist): Consolidate the subr and
12092 new-byte-code cases. Add argument `preserve-names' to extract names
12093 from the docstring when needed.
12094 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
12095 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
12096 (ad-arglist): Use help-function-arglist's new arg.
12097 (ad-definition-type): Use cond.
12098
c183f693
JB
120992011-04-13 Juanma Barranquero <lekktu@gmail.com>
12100
06641a47
JB
12101 * autorevert.el (auto-revert-handler):
12102 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
12103 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
12104 Don't quote lambda.
12105
c183f693
JB
12106 * image-mode.el (image-transform-set-scale):
12107 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
12108
1e3b6001
G
121092011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
12110
12111 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 12112 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
12113 Upgrades via gnutls-cli are too slow to be done opportunistically.
12114
2d6af8dd
JB
121152011-04-12 Juanma Barranquero <lekktu@gmail.com>
12116
12117 * dframe.el (dframe-current-frame): Remove spurious quote.
12118
c0749a51
GM
121192011-04-12 Glenn Morris <rgm@gnu.org>
12120
088d0d61
GM
12121 * calendar/cal-tex.el (cal-tex-end-document):
12122 Try to automatically use latin1 input if needed.
12123
c0749a51
GM
12124 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
12125 Don't try to cons a mark onto an empty element.
12126
5c90fde0
LL
121272011-04-11 Leo Liu <sdl.web@gmail.com>
12128
12129 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
12130 buffers.
12131 (ido-kill-buffer-at-head): Support killing virtual buffers.
12132
369e974d
CY
121332011-04-10 Chong Yidong <cyd@stupidchicken.com>
12134
12135 * minibuffer.el (completion-show-inline-help): New var.
12136 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
12137 (minibuffer-force-complete, minibuffer-complete-word):
12138 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
12139
12140 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
12141 to avoid interference from inline help (Bug#5849).
12142
37f1c930
LL
121432011-04-10 Leo Liu <sdl.web@gmail.com>
12144
099c39a4
JB
12145 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
12146 Fix typo.
37f1c930 12147
a32d4040
CY
121482011-04-09 Chong Yidong <cyd@stupidchicken.com>
12149
12150 * image-mode.el (image-toggle-display-image): Signal an error if
12151 not in Image mode.
12152 (image-transform-mode, image-transform-resize)
12153 (image-transform-set-rotation): Doc fix.
daca8ba5 12154 (image-transform-set-resize): Delete.
a32d4040
CY
12155 (image-transform-set-scale, image-transform-fit-to-height)
12156 (image-transform-fit-to-width): Handle image-toggle-display-image
12157 and image-transform-resize directly.
12158
099c39a4 121592011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
12160
12161 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
12162 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
12163 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
12164 (doc-view-mode-map): Add bindings for the new functions.
12165
099c39a4 121662011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 12167
4d61f28d 12168 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
12169 Fix typo in docstring.
12170
3726838a
EZ
121712011-04-08 Eli Zaretskii <eliz@gnu.org>
12172
04f33f1e
EZ
12173 * files.el (file-size-human-readable): Produce one digit after
12174 decimal, like "ls -lh" does.
12175
12176 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
12177 the file size representation.
12178
3726838a
EZ
12179 * simple.el (list-processes): If async subprocesses are not
12180 available, error out with a clear error message.
12181
cbb59342
CY
121822011-04-08 Chong Yidong <cyd@stupidchicken.com>
12183
12184 * help.el (help-form-show): New function, to be called from C.
12185 Put help-form output in a buffer named differently than *Help*.
12186
e3971c44
EZ
121872011-04-08 Eli Zaretskii <eliz@gnu.org>
12188
12189 * files.el (file-size-human-readable): New function.
12190
12191 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
12192 computing the representation inline. Don't require `cl'.
12193
12544bbe
GM
121942011-04-08 Glenn Morris <rgm@gnu.org>
12195
a1de6c6a
GM
12196 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
12197
3c4671f4
GM
12198 * net/browse-url.el (browse-url-firefox):
12199 Test system-type, not system-configuration.
12200
b605679c
GM
12201 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
12202 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
12203 Use log-edit-empty-buffer-p. (Bug#7598)
12204
56442f0c
GM
12205 * net/rlogin.el (rlogin-process-connection-type): Simplify.
12206 (rlogin-mode-map): Initialize in the defvar.
12207 (rlogin): Use ignore-errors.
12208
12544bbe
GM
12209 * replace.el (occur-mode-map): Some fixes for menu items.
12210
eb237b0f
AH
122112011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12212
12213 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
12214
7d668f2c
CY
122152011-04-06 Chong Yidong <cyd@stupidchicken.com>
12216
e67a13ab
CY
12217 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
12218 issuing unused warnings.
12219
12220 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
12221 macro directly.
12222
7d668f2c
CY
12223 * simple.el: Lisp reimplement of list-processes. Based on an
12224 earlier reimplementation by Leo Liu, but using tabulated-list.el.
12225 (process-menu-mode): New major mode.
12226 (list-processes--refresh, list-processes):
12227 (process-menu-visit-buffer): New functions.
12228
12229 * files.el (save-buffers-kill-emacs): Don't assume any return
12230 value of list-processes, which is undocumented anyway.
12231
a83ec3c9
CY
122322011-04-06 Chong Yidong <cyd@stupidchicken.com>
12233
12234 * emacs-lisp/tabulated-list.el: New file.
12235
e91a96fe
CY
12236 * emacs-lisp/package.el: Use Tabulated List mode.
12237 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
12238 (package-menu-mode): Derive from tabulated-list-mode. Set up the
12239 table format using Tabulated List mode variables.
12240 (package--push): New macro, replacing package-list-maybe-add.
12241 (package-menu--generate): Use package--push. Renamed from
12242 package--generate-package-list.
12243 (package-menu-refresh, list-packages): Use it.
daca8ba5 12244 (package-menu--print-info): Rename from package-print-package.
e91a96fe 12245 Return insertion data instead of inserting it directly.
099c39a4
JB
12246 (package-menu-describe-package, package-menu-execute):
12247 Use tabulated-list-get-id.
e91a96fe
CY
12248 (package-menu-mark-delete, package-menu-mark-install)
12249 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
12250 (package-menu-mark-obsolete-for-deletion):
12251 Use tabulated-list-put-tag.
e91a96fe
CY
12252 (package--list-packages, package-menu-revert)
12253 (package-menu-get-package, package-menu-get-version)
12254 (package-menu-sort-by-column): Functions deleted.
12255 (package-menu-package-list, package-menu-sort-key): Vars deleted.
12256 (package-menu--status-predicate, package-menu--version-predicate)
12257 (package-menu--name-predicate)
12258 (package-menu--description-predicate): Handle arguments in the
12259 Tabulated List format.
12260 (package-list-packages-no-fetch): Call list-packages.
12261
3e214b50
JB
122622011-04-06 Juanma Barranquero <lekktu@gmail.com>
12263
12264 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 12265 (after-find-file): Don't bind it.
3e214b50
JB
12266 (revert-buffer-in-progress-p): New variable.
12267 (revert-buffer): Bind it.
12268 Pass nil for `after-find-file-from-revert-buffer'.
12269
12270 * saveplace.el (save-place-find-file-hook): Use new variable
12271 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
12272
3f0f1700
GM
122732011-04-06 Glenn Morris <rgm@gnu.org>
12274
c0274801
GM
12275 * Makefile.in (AUTOGEN_VCS): New variable.
12276 (autoloads): Use $AUTOGEN_VCS.
12277
3f0f1700
GM
12278 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
12279 * calendar/calendar.el (calendar-mode-map):
12280 Check for toolkit scroll bars. (Bug#8305)
12281
41ea9e48
CY
122822011-04-05 Chong Yidong <cyd@stupidchicken.com>
12283
12284 * minibuffer.el (completion-in-region--postch)
12285 (completion-in-region-mode): Remove unnecessary messages.
12286
6194c800
JB
122872011-04-05 Juanma Barranquero <lekktu@gmail.com>
12288
33256f14
JB
12289 * font-lock.el (font-lock-refresh-defaults):
12290 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
12291 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
12292
6194c800
JB
12293 * info.el (Info-directory-list, Info-read-node-name-2)
12294 (Info-split-parameter-string): Doc fixes.
12295 (Info-virtual-nodes): Reflow docstring.
12296 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
12297 (Info-apropos-toc-nodes, info-finder, Info-get-token)
12298 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
12299 Fix typos in docstrings.
12300 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
12301 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
12302 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
12303 (Info-restore-desktop-buffer): Mark unused parameters.
12304 (Info-directory-find-file, Info-directory-find-node)
12305 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
12306 (Info-virtual-index-find-node, Info-apropos-find-file)
12307 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 12308 Mark unused parameters; fix typos in docstrings.
6194c800
JB
12309 (Info-virtual-index): Remove unused local variable `nodename'.
12310
b87a8200 123112011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 12312
b87a8200
DD
12313 * net/rcirc.el: Update my e-mail address.
12314 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 12315
3b2ff876
CY
123162011-04-05 Chong Yidong <cyd@stupidchicken.com>
12317
12318 * startup.el (command-line): Save the cursor's theme-face
12319 directly, instead of using face-override-spec.
12320
12321 * custom.el (load-theme): Minor optimization in assigning faces.
12322
8d17e7ca
JB
123232011-04-04 Juanma Barranquero <lekktu@gmail.com>
12324
12325 * help-fns.el (describe-variable): Complete all variables having
12326 documentation, including keywords.
12327 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
12328
2fbc1934
JB
123292011-04-04 Juanma Barranquero <lekktu@gmail.com>
12330
12331 Convert to lexical-binding.
12332
12333 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
12334 (bs--get-marked-string, bs--get-modified-string)
12335 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
12336 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
12337 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
12338
12339 * ehelp.el (electric-help-execute-extended)
12340 (electric-help-ctrl-x-prefix):
12341 * hexl.el (hexl-revert-buffer-function):
12342 * linum.el (linum-after-change, linum-after-scroll):
12343 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
12344
12345 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
12346
74f50695
DU
123472011-04-04 Daiki Ueno <ueno@unixuser.org>
12348
12349 * epa-dired.el:
12350 * epa-mail.el:
12351 * epa-hook.el:
12352 * epa-file.el:
12353 * epa.el:
12354 * epg.el: Use lexical binding.
12355
c11325f7
CY
123562011-04-03 Chong Yidong <cyd@stupidchicken.com>
12357
0d9e9a12
CY
12358 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
12359
c11325f7 12360 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
12361 dictionary case for flyspell-mark-duplications-exceptions.
12362 Use regexp matching for languages.
c11325f7
CY
12363 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
12364 default dictionary (Bug#7926).
12365
da91b5f2
CY
123662011-04-02 Chong Yidong <cyd@stupidchicken.com>
12367
099c39a4
JB
12368 * emacs-lisp/package.el (package--with-work-buffer):
12369 Recognize https URLs.
da91b5f2 12370
099c39a4
JB
12371 * net/network-stream.el: Move from gnus/proto-stream.el.
12372 Change prefix to network-stream throughout.
da91b5f2
CY
12373 (open-protocol-stream): Merge into open-network-stream, leaving
12374 open-protocol-stream as an alias. Handle nil BUFFER args.
12375
12376 * subr.el (open-network-stream): Move to net/network-stream.el.
12377
afa8e9f6
GM
123782011-04-02 Glenn Morris <rgm@gnu.org>
12379
1d2e369d
GM
12380 * find-dired.el (find-exec-terminator): New option.
12381 (find-ls-option): Test for -ls support.
12382 (find-ls-subdir-switches): Test for -b in find-ls-option.
12383 (find-dired, find-grep-dired): Doc fixes.
12384 (find-dired): Use find-exec-terminator.
12385
8abb7da8 12386 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
12387 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
12388 (find-name-arg): Remove purecopy.
8abb7da8 12389
f3ca7378
GM
12390 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
12391 (grep-compute-defaults): Check for `-exec COMMAND +' support.
12392 Set grep-find-use-xargs, grep-find-command, and grep-find-template
12393 accordingly. Don't add the null-device if not needed.
12394
afa8e9f6
GM
12395 * files.el (save-some-buffers): Doc fix.
12396
35eae264
EZ
123972011-04-02 Eli Zaretskii <eliz@gnu.org>
12398
12399 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
12400
26b51db5
JB
124012011-04-01 Juanma Barranquero <lekktu@gmail.com>
12402
12403 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
12404 Use `dolist' rather than `mapcar'.
12405
7200d79c
SM
124062011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
12407
03408648 12408 Add lexical binding.
7200d79c 12409
03408648
SM
12410 * subr.el (apply-partially): Use new closures rather than CL.
12411 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
12412 (dolist, dotimes): Use slightly different expansion for lexical code.
12413 (functionp): Move to C.
12414 (letrec): New macro.
12415 (with-wrapper-hook): Use it and apply-partially instead of CL.
12416 (eval-after-load): Preserve lexical-binding.
12417 (save-window-excursion, with-output-to-temp-buffer): Turn them
12418 into macros.
7200d79c 12419
03408648
SM
12420 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
12421
12422 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
12423 than the arglist.
12424 (help-add-fundoc-usage): Don't add `Not documented'.
12425 (help-function-arglist): Handle closures, subroutines, and new
12426 byte-code-functions.
12427 (help-make-usage): Remove leading underscores.
12428 (describe-function-1): Handle closures.
12429 (describe-variable): Use special-variable-p for completion.
12430
12431 * files.el (lexical-binding): Declare safe.
f488fb65 12432
03408648
SM
12433 * emacs-lisp/pcase.el: Don't use destructuring-bind.
12434 (pcase--memoize): Rename from pcase-memoize. Change weakness.
12435 (pcase): Add `let' pattern.
12436 Change memoization so it actually works.
12437 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
12438 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
12439 <let>: New case.
f488fb65 12440
03408648
SM
12441 * emacs-lisp/macroexp.el: Use lexical binding.
12442 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
12443 Don't convert ' to #' without checking that it's indeed quoting
12444 a lambda.
12445
12446 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 12447 Use eval-sexp-add-defvars.
03408648
SM
12448 (eval-sexp-add-defvars): New fun.
12449
12450 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
12451
12452 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
12453 Don't autoload.
12454 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
12455 than the internal `byte-compile-lambda'.
12456 (defmethod): Don't hide code under quotes.
12457 (eieio-defmethod): New `code' argument.
12458
12459 * emacs-lisp/eieio-comp.el: Remove.
12460
12461 * emacs-lisp/edebug.el (edebug-eval-defun)
12462 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
12463 (edebug-toggle): Avoid `eval'.
12464
12465 * emacs-lisp/disass.el (disassemble-internal): Handle new
12466 `closure' objects.
12467 (disassemble-1): Handle new byte codes.
12468
12469 * emacs-lisp/cl.el (pushnew): Silence warning.
12470
12471 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
12472 (cl-byte-compile-throw): Remove.
12473 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
12474
12475 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
12476 closures.
12477
12478 * emacs-lisp/cconv.el: New file.
12479
12480 * emacs-lisp/bytecomp.el: Use lexical binding instead of
12481 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
12482 (byte-compile-initial-macro-environment):
12483 Handle declare-function here.
12484 (byte-compile--lexical-environment): New var.
12485 (byte-stack-ref, byte-stack-set, byte-discardN)
12486 (byte-discardN-preserve-tos): New lap codes.
12487 (byte-interactive-p): Don't use any more.
12488 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
12489 New macros.
12490 (byte-compile-lapcode): Use them and handle new lap codes.
12491 (byte-compile-obsolete): Remove.
12492 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
12493 (byte-compile-arglist-warn): Check late def of inlinable funs.
12494 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
12495 since they should have been expanded by now.
12496 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
12497 (byte-compile-from-buffer): Remove unused second arg.
12498 (byte-compile-preprocess): New function.
12499 (byte-compile-toplevel-file-form): New function to distinguish
12500 file-form calls from outside from file-form calls from hunk-handlers.
12501 (byte-compile-file-form): Simplify.
12502 (byte-compile-file-form-defsubst): Remove.
12503 (byte-compile-file-form-defmumble): Simplify now that
12504 byte-compile-lambda always returns a byte-code-function.
12505 (byte-compile): Preprocess.
12506 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
12507 Remove, not used any more.
12508 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
12509 (byte-compile-make-args-desc): New funs.
12510 (byte-compile-lambda): Handle lexical functions. Always return
12511 a byte-code-function.
12512 (byte-compile-reserved-constants): New var, to make up room for
12513 closed-over variables.
12514 (byte-compile-constants-vector): Obey it.
12515 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
12516 (byte-compile-macroexpand-declare-function): New function.
12517 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
12518 byte-code-functions.
12519 (byte-compile-form): Check obsolescence here.
12520 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
12521 (byte-compile-variable-ref): Remove.
12522 (byte-compile-dynamic-variable-op): New fun.
12523 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
12524 (byte-compile-variable-set): New funs.
12525 (byte-compile-discard): Add 2 args.
12526 (byte-compile-stack-ref, byte-compile-stack-set)
12527 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
12528 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
12529 macroexpand-all instead.
12530 (byte-compile-quote-form): Remove.
12531 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
12532 (byte-compile-bind, byte-compile-unbind): New funs.
12533 (byte-compile-let): Handle let* and lexical binding.
12534 (byte-compile-let*): Remove.
12535 (byte-compile-catch, byte-compile-unwind-protect)
12536 (byte-compile-track-mouse, byte-compile-condition-case):
12537 Handle a new :fun-body form, used for lexical scoping.
12538 (byte-compile-save-window-excursion)
12539 (byte-compile-with-output-to-temp-buffer): Remove.
12540 (byte-compile-defun): Simplify.
12541 (byte-compile-stack-adjustment): New fun.
12542 (byte-compile-out): Use it.
12543 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
12544
12545 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
12546 handler any more.
12547
12548 * emacs-lisp/byte-opt.el: Use lexical binding.
12549 (byte-inline-lapcode): Remove (to bytecomp).
12550 (byte-compile-inline-expand): Pay attention to inlining to/from
12551 lexically bound code.
12552 (byte-compile-unfold-lambda): Don't handle byte-code-functions
12553 any more.
12554 (byte-optimize-form-code-walker): Don't handle save-window-excursion
12555 any more and don't call compiler-macros.
12556 (byte-compile-splice-in-already-compiled-code): Remove.
12557 (byte-code): Don't inline any more.
12558 (disassemble-offset): Receive `bytes' as argument rather than via
12559 dynamic scoping.
12560 (byte-compile-tag-number): Declare before first use.
12561 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
12562 `return' even if make-spliceable.
12563 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
12564 obsolete interactive-p.
12565 (byte-optimize-lapcode): Optimize new lap-codes.
12566 Don't trip up on new form of `byte-constant' lap code.
12567
12568 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
12569
12570 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
12571
12572 * custom.el (custom-initialize-default, custom-declare-variable):
12573 Use `defvar'.
12574
12575 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
12576 New variables.
12577 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
12578 (COMPILE_FIRST): Add macroexp and cconv.
12579 * makefile.w32-in: Mirror changes in Makefile.in.
12580
12581 * vc/cvs-status.el:
12582 * vc/diff-mode.el:
12583 * vc/log-edit.el:
12584 * vc/log-view.el:
12585 * vc/smerge-mode.el:
12586 * textmodes/bibtex-style.el:
12587 * textmodes/css.el:
12588 * startup.el:
12589 * uniquify.el:
da91b5f2
CY
12590 * minibuffer.el:
12591 * newcomment.el:
12592 * reveal.el:
12593 * server.el:
12594 * mpc.el:
12595 * emacs-lisp/smie.el:
12596 * doc-view.el:
12597 * dired.el:
03408648
SM
12598 * abbrev.el: Use lexical binding.
12599
0f0c1f27
EZ
126002011-04-01 Eli Zaretskii <eliz@gnu.org>
12601
12602 * info.el (info-display-manual): New function.
12603
c82b2579
SM
126042011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12605
12606 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
12607
221ddf68
TH
126082011-03-31 Tassilo Horn <tassilo@member.fsf.org>
12609
12610 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 12611 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 12612
cba6e77e
GM
126132011-03-31 Glenn Morris <rgm@gnu.org>
12614
e040639f
GM
12615 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
12616
cba6e77e
GM
12617 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
12618
6d0f1c9e
CS
126192011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
12620
12621 * progmodes/python.el (python-default-interpreter)
12622 (python-python-command-args, python-jython-command-args)
12623 (python-which-shell, python-which-args, python-which-bufname)
12624 (python-file-queue, python-comint-output-filter-function)
12625 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
12626 variables and functions.
12627
3e2d70fd
SM
126282011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
12629
12630 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
12631 (completion-in-region-mode): New minor mode.
12632 (completion-in-region): Use it.
12633 (completion-in-region--data, completion-in-region-mode-map): New vars.
12634 (completion-in-region--postch): New function.
12635 (completion--capf-misbehave-funs, completion--capf-safe-funs):
12636 New vars.
12637 (completion--capf-wrapper): New function.
12638 (completion-at-point): Use it to track well-behavedness of
12639 hook functions.
12640 (completion-help-at-point): New command.
12641
f3e4086c
JM
126422011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
12643
12644 * vc/add-log.el (add-change-log-entry): Don't use whitespace
12645 syntax class to search for whitespace on a single line
12646 (Message-ID: <4D938140.4030905@redhat.com>).
12647
eb7ffc14
LL
126482011-03-30 Leo Liu <sdl.web@gmail.com>
12649
12650 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
12651 New commands.
12652 (edit-abbrevs-map): Bind them here.
12653 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
12654
d806ab68
KM
126552011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
12656
12657 * allout.el (allout-hide-by-annotation, allout-flag-region):
12658 Reduce possibility of overlay leakage by making them volatile.
12659
12660 * allout-widgets.el (allout-widgets-tally): Define as nil so the
12661 hash is not shared between buffers. Mode initialization is
12662 responsible for giving it a useful starting value.
12663 (allout-item-span): Reduce possibility of overlay leakage by
12664 making them volatile.
12665 (allout-widgets-count-buttons-in-region): Add diagnostic function
12666 for tracking down button overlay leaks.
12667
ea622834
LL
126682011-03-29 Leo Liu <sdl.web@gmail.com>
12669
12670 * ido.el (ido-read-internal): Use the default history var
12671 minibuffer-history if no HISTORY is specified.
12672
b62f8267
G
126732011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
12674
03408648
SM
12675 * net/imap.el (imap-shell-open, imap-process-connection-type):
12676 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
12677 Kerberos, SSL, other subprocesses.
12678
947b6566
LL
126792011-03-28 Leo Liu <sdl.web@gmail.com>
12680
12681 * abbrev.el (abbrev-table-empty-p): New function.
12682 (prepare-abbrev-list-buffer): Place empty abbrev tables after
12683 nonempty ones. (Bug#5937)
12684
5ffb62aa
JD
126852011-03-27 Jan Djärv <jan.h.d@swipnet.se>
12686
12687 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
12688
7a097943
LL
126892011-03-27 Leo Liu <sdl.web@gmail.com>
12690
12691 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
12692 for foreground and background colors.
12693 (ansi-color-make-color-map): Adapt.
12694
c5b40130
LL
126952011-03-25 Leo Liu <sdl.web@gmail.com>
12696
1f48f7d2
LL
12697 * midnight.el (midnight-time-float): Remove. Note it calculates
12698 the microsecond component incorrectly and seconds-to-time does the
12699 same job.
625897ec 12700 Remove redundant (require 'timer).
1f48f7d2 12701
c5b40130
LL
12702 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
12703 (ido-completions): Remove unused arguments. (Bug#8329)
12704
d86d2721
SM
127052011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
12706
12707 * minibuffer.el (completion--flush-all-sorted-completions):
12708 Remove itself from hook.
12709 (completion-at-point): Let the functions perform the completion
12710 immediately and return nil or t.
12711 * comint.el (comint-dynamic-complete-functions): Now identical to
12712 completion-at-point-functions.
12713 (comint-dynamic-list-input-ring): Remove unused var `index'.
12714 (comint--match-partial-filename, comint--unquote&expand-filename):
12715 New funs, split from comint-match-partial-filename.
12716 (comint-dynamic-complete): Use completion-at-point.
12717 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
12718
e8974c48
DA
127192011-03-24 Drew Adams <drew.adams@oracle.com>
12720
12721 * thingatpt.el: Support `defun'.
12722
def71b5e
LL
127232011-03-23 Leo Liu <sdl.web@gmail.com>
12724
cb5af48e
LL
12725 * abbrevlist.el: Move to obsolete/abbrevlist.el.
12726
def71b5e
LL
12727 * help-mode.el (help-mode-finish): Tweak regexp.
12728
927c53e7
GM
127292011-03-23 Glenn Morris <rgm@gnu.org>
12730
18d05bed
GM
12731 * eshell/esh-opt.el (eshell-eval-using-options):
12732 Do not bind unused local variable `eshell-option-stub'.
12733
927c53e7
GM
12734 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
12735
9d0da923
JB
127362011-03-22 Juanma Barranquero <lekktu@gmail.com>
12737
12738 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
12739 keymap variable in `with-no-warnings' to avoid a warning when the
12740 keymap has been already `defconst'ed.
12741
4b978a67
LL
127422011-03-22 Leo Liu <sdl.web@gmail.com>
12743
12744 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
12745 encode all chars in abbrevs; otherwise use emacs-mule or
12746 utf-8-emacs. (Bug#8308)
12747
5fd62452
JB
127482011-03-22 Juanma Barranquero <lekktu@gmail.com>
12749
0b1596c6
JB
12750 * simple.el (backward-delete-char-untabify):
12751 Avoid warning about using `delete-backward-char'.
12752
5fd62452
JB
12753 * image.el (image-type-file-name-regexps): Make it variable.
12754 `imagemagick-register-types' modifies it, and the user may want
12755 to add new extensions for known image types.
12756 (imagemagick-register-types): Throw error if not using ImageMagick.
12757
0b4e93f1
LL
127582011-03-22 Leo Liu <sdl.web@gmail.com>
12759
12760 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
12761 located before rcirc-prompt-end-marker.
12762 (rcirc-complete): Error if point is not after rcirc prompt.
12763 Handle the case when table is nil.
9882e214 12764 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 12765
fccee4ab
CY
127662011-03-22 Chong Yidong <cyd@stupidchicken.com>
12767
12768 * custom.el (custom--inhibit-theme-enable): Make it affect only
12769 custom-theme-set-variables and custom-theme-set-faces.
12770 (provide-theme): Ignore custom--inhibit-theme-enable.
12771 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
12772 (custom-enabling-themes): Delete variable.
d86d2721
SM
12773 (enable-theme): Accept only loaded themes as arguments.
12774 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
12775 (custom-enabled-themes): Forbid themes from setting this.
12776 Eliminate use of custom-enabling-themes.
12777 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 12778
af896da6
LL
127792011-03-21 Leo Liu <sdl.web@gmail.com>
12780
12781 * ido.el (ido-read-internal): Add ido-selected to history instead
12782 of user input.
12783
78f64af0
SM
127842011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12785
12786 * subr.el (deferred-action-list, deferred-action-function):
12787 Mark obsolete.
12788
b16ac1ec
LL
127892011-03-21 Leo Liu <sdl.web@gmail.com>
12790
810f7698
LL
12791 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
12792 change on 2011-02-13 (bug#8309).
12793
b16ac1ec
LL
12794 * minibuffer.el (read-file-name-function): Change default value.
12795 (read-file-name--defaults): Rename from read-file-name-defaults.
12796 (read-file-name-default): Rename from read-file-name.
12797 (read-file-name): Call read-file-name-function.
12798
4e05e67e
GM
127992011-03-21 Glenn Morris <rgm@gnu.org>
12800
12801 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
12802 Doc fixes.
12803
4359915b
CY
128042011-03-21 Chong Yidong <cyd@stupidchicken.com>
12805
12806 * cus-theme.el: Add missing provide statement.
12807 (customize-create-theme): Extract theme value correctly.
12808 (custom-theme-visit-theme): Autoload.
12809 (customize-create-theme): Prompt before inserting default faces.
12810
1fe275ee
JB
128112011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
12812
12813 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
12814 units and musical notes.
12815
cd394be1 128162011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
12817
12818 * ido.el (ido-read-internal): Use completing-read-default.
12819 (ido-completing-read): Fix compatibility with completing-read.
12820
7d476bde
CO
128212011-03-20 Christian Ohler <ohler@gnu.org>
12822
12823 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
12824 (ert-delete-all-tests): Use `called-interactively-p' rather than
12825 `interactive-p'.
12826 (ert--make-xrefs-region): Respect END.
12827
fe0fb33e
CY
128282011-03-19 Chong Yidong <cyd@stupidchicken.com>
12829
ff854b0b
CY
12830 * dired-aux.el (dired-create-directory): Signal an error if the
12831 directory already exists (Bug#8246).
12832
fe0fb33e
CY
12833 * facemenu.el (list-colors-display): Call list-faces-display
12834 inside with-help-window.
12835 (list-colors-print): Use display property to align the final
12836 column, instead of checking window-width.
12837
576bce32
EZ
128382011-03-19 Eli Zaretskii <eliz@gnu.org>
12839
4d61f28d 12840 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
12841 windows-nt systems.
12842 (emerge-protect-metachars): Quote correctly for ms-dos and
12843 windows-nt systems.
12844
89c41d68 128452011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
12846
12847 * info.el (info-initialize): Replace all uses of `:' with
12848 path-separator for compatibility with non-Unix systems.
12849 Cache quoting of path-separator. (Bug#8258)
12850
b14e3e21 128512011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
12852
12853 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
12854 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
12855 (mouse-avoidance-mode): Fix typos in docstrings.
12856
4525ce3e
CY
128572011-03-19 Chong Yidong <cyd@stupidchicken.com>
12858
12859 * startup.el (package-subdirectory-regexp): Move from package.el.
12860 Omit \\` and \\', and let callers add them.
12861
12862 * emacs-lisp/package.el (package-strip-version)
12863 (package-load-all-descriptors): Add \\` and \\' to
12864 package-subdirectory-regexp before using it.
12865 (package-untar-buffer): New arg DIR; ensure that file untars only
12866 into this expected directory. Remove superfluous delete-region.
12867 (package-unpack): Caller changed.
12868 (package-tar-file-info): Use package-subdirectory-regexp.
12869
a904a09a 128702011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 12871
a904a09a
SM
12872 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
12873 diff-mode-shared-map (bug#8284).
12874 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
12875
128762011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
12877
12878 * calendar/time-date.el (format-seconds): Use assoc instead of
12879 assoc-string, since assoc-string doesn't exist in XEmacs.
12880
171fc304
JB
128812011-03-17 Juanma Barranquero <lekktu@gmail.com>
12882
12883 * custom.el (custom-known-themes): Reflow docstring.
12884 (custom-theme-load-path): Fix typo in docstring.
12885 (load-theme): Fix typo in error message.
12886 (custom-available-themes, custom-variable-theme-value):
12887 Use `let', not `let*'.
12888
d71990a1
JB
128892011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
12890
12891 * calc/README: Mention inclusion of musical notes.
12892
12893 * calc/calc-units.el (calc-lu-quant): Rename from
12894 `calc-logunits-quantity'.
12895 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
12896 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
12897 (calc-db): Rename from `calc-dblevel'.
12898 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
12899 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
12900 (calc-np): Rename from `calc-nplevel'.
12901 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
12902 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
12903 (calc-lu-plus): Rename from `calc-logunits-add'.
12904 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
12905 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
12906 (calc-lu-minus): Rename from `calc-logunits-sub'.
12907 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
12908 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
12909 (calc-lu-times): Rename from `calc-logunits-mul'.
12910 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
12911 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
12912 (calc-lu-divide): Rename from `calc-logunits-div'.
12913 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
12914 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
12915
12916 * calc/calc-ext.el (calc-init-extensions): Update the names of the
12917 functions being autoloaded.
12918
12919 * calc/calc.el (calc-lu-power-reference): Rename from
12920 `calc-logunits-power-reference'.
12921 (calc-lu-field-reference): Rename from
12922 `calc-logunits-field-reference'.
12923
7a71b18d
GM
12924 * calc/calc-help.el (calc-l-prefix-help):
12925 Mention musical note functions.
d71990a1 12926
40c2934b
SM
129272011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
12928
12929 * minibuffer.el (completion-all-sorted-completions):
12930 Use :completion-cycle-penalty text property if present.
12931
b0911414
KM
129322011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
12933
12934 * allout.el (allout-yank-processing): Adjust for new rebulleting
12935 regime so bullet being yanked is used without prompting the user
12936 for a choice.
12937
8a05b668
JB
129382011-03-16 Juanma Barranquero <lekktu@gmail.com>
12939
12940 * startup.el (command-line): Warn the user that _emacs is deprecated.
12941
5ba5fb81
JB
129422011-03-16 Juanma Barranquero <lekktu@gmail.com>
12943
12944 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
12945 (delphi-verbose, delphi-comment-face, delphi-string-face)
12946 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
12947 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
12948 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
12949 (delphi-new-comment-line, delphi-font-lock-defaults)
12950 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
12951 Fix typos in docstrings.
12952
2dab465b
KM
129532011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
12954
5ba5fb81 12955 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
12956 Invert the roles of character and string values for INSTEAD, so a
12957 string is used for the more common case of a defaulting prompt.
12958
0adf5618
SM
129592011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
12960
12961 * progmodes/ruby-mode.el (ruby-backward-sexp):
12962 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
12963 * play/gamegrid.el (gamegrid-make-face):
12964 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
12965 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
12966 * notifications.el (notifications-notify):
12967 * net/xesam.el (xesam-search-engines):
12968 * net/quickurl.el (quickurl-list-insert):
12969 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
12970
d72700e5
CY
129712011-03-15 Chong Yidong <cyd@stupidchicken.com>
12972
12973 * startup.el (command-line): Update package subdirectory regexp.
12974
49c5410a
SM
129752011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
12976
c6eee9aa
SM
12977 * allout.el (allout-abbreviate-flattened-numbering)
12978 (allout-mode-deactivate-hook): Fix up obsolescence "date".
12979
49c5410a
SM
12980 * subr.el (read-char-choice): Only show the cursor after the prompt,
12981 not after the answer.
12982
047b2bb9
KR
129832011-03-15 Kevin Ryde <user42@zip.com.au>
12984
12985 * help-fns.el (variable-at-point): Skip leading quotes, if any
12986 (bug#8253).
12987
0a57d256
SM
129882011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
12989
12990 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
12991 warning message.
12992
77c992bc
MA
129932011-03-14 Michael Albinus <michael.albinus@gmx.de>
12994
12995 * shell.el (shell): When called interactively, offer to change the
12996 shell file name on remote hosts.
12997
eebc475d
TZ
129982011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
12999
13000 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
13001 integration for LDAP parameters. The host, base, user or binddn,
13002 and secret tokens can be specified in a netrc file, for instance.
13003 This is optional because an `auth-source' parameter must be
13004 specified in the search attributes.
13005
9d05d1ba
JB
130062011-03-13 Juanma Barranquero <lekktu@gmail.com>
13007
13008 * help.el (describe-mode): Link to the mode's definition (bug#8185).
13009
09d9db2c
GM
130102011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13011
13012 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
13013 into declaration. Remove redundant and harmful binding.
13014
130152011-03-12 Eli Zaretskii <eliz@gnu.org>
13016
13017 * files.el (file-ownership-preserved-p): Pass `integer' as an
13018 explicit 2nd argument to `file-attributes'. If the file's owner
13019 is the Administrators group on Windows, and the current user is
13020 Administrator, consider that a match.
13021
13022 * server.el (server-ensure-safe-dir): Consider server directory
13023 safe on MS-Windows if its owner is the Administrators group while
13024 the current Emacs user is Administrator. Use `=' to compare
13025 numerical UIDs, since they could be integers or floats.
13026
219bd536
JB
130272011-03-12 Juanma Barranquero <lekktu@gmail.com>
13028
13029 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
13030
f3afd36b
MA
130312011-03-12 Michael Albinus <michael.albinus@gmx.de>
13032
13033 Sync with Tramp 2.2.1.
13034
13035 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
13036
13037 * net/trampver.el: Update release number.
13038
3aaaa6f1
SM
130392011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13040
94642599
SM
13041 * progmodes/compile.el (compilation--previous-directory): Fix up
13042 various nil/dead-marker mismatches (bug#8014).
13043 (compilation-directory-properties, compilation-error-properties):
13044 Don't call it at a position past the one we're about to change.
13045
3aaaa6f1
SM
13046 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
13047 Disable obsolescence warnings in the file that declares it.
13048
14239447
KM
130492011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
13050
099c39a4
JB
13051 * allout-widgets.el (allout-widgets-tally):
13052 Initialize allout-widgets-tally as a hash table rather than nil to
13053 prevent mode-line redisplay warnings. Also, clarify the module
13054 description and fix a comment typo.
14239447 13055
135e287c
JB
130562011-03-11 Juanma Barranquero <lekktu@gmail.com>
13057
13058 * help-fns.el (describe-variable): Don't complete keywords.
13059 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
13060
ffbf300e
CY
130612011-03-10 Chong Yidong <cyd@stupidchicken.com>
13062
ba08b241
CY
13063 * emacs-lisp/package.el (package-version-join): Impose a standard
13064 string representation for pre/alpha/beta version lists.
13065 (package-unpack-single): Standardize the directory name by passing
13066 it through package-version-join.
13067 (package-strip-rcs-id): Accept any version string that does not
13068 signal an error in version-to-list.
ffbf300e 13069
f346fd6b
MA
130702011-03-10 Michael Albinus <michael.albinus@gmx.de>
13071
13072 * simple.el (delete-trailing-whitespace): Return nil for the
13073 benefit of `write-file-functions'.
13074
ccb55d27
GM
130752011-03-10 Glenn Morris <rgm@gnu.org>
13076
5ceaac0c
GM
13077 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
13078
02da65ff
GM
13079 * vc/vc-git.el (vc-git-program): New option.
13080 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
13081 (vc-git--call): Use it.
13082
b2f603cc
GM
13083 * eshell/esh-util.el (eshell-condition-case): Doc fix.
13084
5772caab
GM
13085 * cus-edit.el (Custom-newline): If no button at point, look
13086 for a subgroup button at start-of-line. (Bug#2298)
13087
ccb55d27
GM
13088 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
13089
ec6ecaed
JD
130902011-03-10 Julien Danjou <julien@danjou.info>
13091
13092 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
13093 `cursor-type' is nil.
13094
9d5aa01d
JB
130952011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
13096
13097 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
13098
b6a5875b
KM
130992011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
13100
7a71b18d 13101 * allout.el: Change so yank of distinctive-bullet items
b6a5875b
KM
13102 preserves the existing header prefix, rebulleting it if necessary,
13103 rather than replacing it. This is necessary for proper operation
13104 of cooperative addons like allout-widgets.
1154d12e
JB
13105 (allout-make-topic-prefix, allout-rebullet-heading):
13106 Change SOLICIT arg to INSTEAD, and interpret additionally a string
13107 value as alternate bullet to be used, instead of prompting the user
13108 for a bullet character.
b6a5875b 13109
ee545c35
MA
131102011-03-09 Michael Albinus <michael.albinus@gmx.de>
13111
d86d2721
SM
13112 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13113 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
13114 `tramp-default-port'.
13115
c47971d7
DD
131162011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
13117
13118 * net/rcirc.el (rcirc-handler-001): Remove useless
13119 with-rcirc-process-buffer.
13120 (rcirc-check-auth-status): Swap arguments to string-match.
13121
13522cb4
GM
131222011-03-09 Glenn Morris <rgm@gnu.org>
13123
0be6f4f1
GM
13124 * shell.el (shell-mode):
13125 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
13126
13522cb4
GM
13127 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
13128 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
13129
515de2e3
CY
131302011-03-08 Chong Yidong <cyd@stupidchicken.com>
13131
13132 * emacs-lisp/package.el (package-refresh-contents)
13133 (package-menu-execute): Use condition-case-no-debug.
13134
b511b994
MA
131352011-03-08 Michael Albinus <michael.albinus@gmx.de>
13136
13137 * simple.el (shell-command-to-string): Use `process-file'.
13138
13139 * emacs-lisp/package.el (package-tar-file-info): Handle also
13140 remote files.
13141
d86d2721
SM
13142 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13143 Use `equal' for upload base check.
b511b994 13144
25bbfb31
AM
131452011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
13146
13147 * textmodes/texinfo.el (texinfo-environments):
13148 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
13149
be996521
GM
131502011-03-08 Glenn Morris <rgm@gnu.org>
13151
e9c8529f
GM
13152 * cus-start.el (cursor-in-non-selected-windows):
13153 Fix :set quoting oddness. (Bug#8192)
13154
be996521
GM
13155 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
13156 in some setf expressions. (Bug#2159)
13157
2bb5649e
CY
131582011-03-08 Chong Yidong <cyd@stupidchicken.com>
13159
13160 * custom.el (custom-available-themes): Return themes in
13161 alphabetical order.
13162
33383987 13163See ChangeLog.15 for earlier changes.
e3d51b27
MR
13164
13165;; Local Variables:
13166;; coding: utf-8
e3d51b27
MR
13167;; End:
13168
acaf905b 13169 Copyright (C) 2011-2012 Free Software Foundation, Inc.
e3d51b27
MR
13170
13171 This file is part of GNU Emacs.
13172
13173 GNU Emacs is free software: you can redistribute it and/or modify
13174 it under the terms of the GNU General Public License as published by
13175 the Free Software Foundation, either version 3 of the License, or
13176 (at your option) any later version.
13177
13178 GNU Emacs is distributed in the hope that it will be useful,
13179 but WITHOUT ANY WARRANTY; without even the implied warranty of
13180 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13181 GNU General Public License for more details.
13182
13183 You should have received a copy of the GNU General Public License
13184 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.